html{
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body{
    background-color: #fff;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	font-style: normal;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	color: #333;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}
a {
	text-decoration: none;
	cursor: pointer;
	color: #333;
}
img {
	width: 100%;
}
ul {
	list-style: none;
	padding: 0;
}

/* ==================================
全体ｃｓｓ
================================== */
.wrapper {
	/* width: 100%;
	height: 100vh;
	background-image: url(../images/top_img.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed; */
}
.wrapper::before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background-repeat:no-repeat;
	background-image: url(../images/top_img.jpg);
	background-size:cover;
}
.wrap {
	display: flex;
	flex-direction: column;
}

/* 色 */
:root {
	--mainColor : #cf1126;
	--subColor : #fff8dc;
}

.sp_br {
	display: none;
}
@media screen and (max-width:465px) {
	.sp_br {
		display: block;
	}
	.sp_br2 {
		display: none;
	}
}

/* 波紋  位置調整は各コンテンツへ*/
.water {
	position: relative;
	width: 400px;
	height: 400px;
	border: 2px solid rgba(255, 255, 255, 0.37);
	border-radius: 50%;
	animation: ripple 3s infinite ease-in-out;
}
.water2 {
	position: relative;
	width: 250px;
	height: 250px;
	border: 2px solid rgba(255, 255, 255, 0.247);
	border-radius: 50%;
	animation: ripple2 3.5s infinite ease-in-out;
}
.water3 {
	position: relative;
	width: 100px;
	height: 100px;
	border: 2px solid rgba(255, 255, 255, 0.247);
	border-radius: 50%;
	animation: ripple3 4.5s infinite ease-in-out;
}
@keyframes ripple {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes ripple2 {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes ripple3 {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

/* メールアイコンつける */
.cta_btn04 p:last-child:before,
.footer h3::before,
.side_btn a::before {
	content: '\f0e0';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	padding: 0 7px 0 0;
}

/* =================================
ヘッダー
================================== */
/* ローディング */

body.loading {
  overflow: hidden;
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	color: #fff;
	font-size: clamp(20px, 1.5625vw, 30px);
	opacity: 1;
	transition: opacity 1s ease;
}

.loader.fade-out {
	opacity: 0;
  transition: opacity 1s ease;
}

.loader img {
	padding: 0 15px;
	max-width: 500px;
	width: 100%;
}

/* 波紋 */
.wa_1 {
	position: relative;
	left: 8%;
	top: 50%;
}
.wa_2 {
	position: relative;
	right: -63%;
	top: -41%;
}
.wa_3 {
	position: relative;
	right: -65%;
	top: -25%;
}
/* --- */

.header_inner {
	position: relative;
	text-align: center;
	overflow: hidden;
	height: 100vh;
}
figure.pro_logo {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);
	width: 45%;
	height: auto;
	object-fit: cover; /* 画像をコンテナに合わせる */
	opacity: 0; /* 初期状態は透明 */
	transition: opacity 1s ease-in-out; /* フェードインのアニメーション */
}
figure.pro_logo.show {
  opacity: 1; /* フェードイン */
}
@media screen and (max-width:675px) {
	.header_inner {
		position: relative;
		text-align: center;
		overflow: hidden;
		height: 65vh;
	}
	figure.pro_logo {
		width: 100%;
	}
}

/* gMenu */
.hamburger_wrap {
	background-color: #ffffffdc;
	height: 70px;
	width: 100%;
	position: fixed;
	padding: 5px 10px;
	z-index: 100;
	display: flex;
	top: 0;
	justify-content: space-between;
	align-items: center;
}
.hamburger_wrap a {
	display: flex;
	align-items: center;
	gap: 1em;
	font-size: clamp(14px, 1.25vw, 20px);
}
.header_logo {
	max-width: 60px;
}

.header_txt {
	max-width: 350px;
}

@media screen and (max-width:675px) {
 .header_txt {
	display: none;
 }
}

.hamburger {
	display: block;
	width: 55px;
	height: 55px;
	cursor: pointer;
	background-color: #fff;
	border-radius: 100vh;
	border: 2px solid var(--mainColor);
	position: relative;
}

.hamburger__line {
	position: absolute;
	left: 12px;
	width: 27px;
	height: 2px;
	background-color: var(--mainColor);
	transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
	top: 18px;
}
.hamburger__line:nth-of-type(2) {
	top: 25px;
}
.hamburger__line:nth-of-type(3) {
	top: 33px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
	transform: translateY(7px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
	opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}

.nav {
	position: fixed;
	top: 70px;
	right: 0;
	width: 450px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -2px 0 4px rgba(0,0,0,.1);
	transform: translateX(100%);
	transition: transform .4s;
	z-index: 999;
}

.nav.active {
	transform: translateX(0);
}

.nav__list {
	margin: 0;
	padding: 100px 0 0;
	list-style: none;
}

.nav__item {
	padding: 0 20px;
}

.nav__link {
	display: block;
	padding: 15px 0;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #eee;
}

@media screen and (max-width:675px) {
  .nav {
	position: fixed;
	top: 70px;
	right: 0;
	max-width: 300px;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	box-shadow: -2px 0 4px rgba(0,0,0,.1);
	transform: translateX(100%);
	transition: transform .4s;
	z-index: 999;
 }

}

/* サイドボタン */
.side_btn a {
	background-color: #ff6600;
	border: 2px solid #fff;
	border-right: 0;
	position: fixed;
	right: 0;
	writing-mode: vertical-lr;
	bottom: 5%;
	color: #fff;
	font-size: 18px;
	padding: 1em 1.5em 1em 15px;
	border-radius: 15px 0 0 15px;
	z-index: 100;
}
@media screen and (max-width:675px) {
	.side_btn a {
		bottom: 5px;
		left: 50%;
		transform: translateX(-50%);
		writing-mode: horizontal-tb;
		width: 80%;
		background: #ff6600;
		font-weight: bold;
		letter-spacing: 2px;
		border-radius: 15px;
		border: 2px solid #fff;
	}
}

/* =================================
フッター
================================== */
.footer {
    margin-top: auto;
	background-color: var(--mainColor);
	text-align: center;
	color: #fff;
	font-weight: lighter!important;
	padding: 10px 5px;
}
.footer h3 {
	background-color: #fff;
	color: var(--mainColor);
	padding: 1em 5px;
	max-width: 500px;
	height: auto;
	margin: 1em auto 0;
	border-radius: 100vh;
}
.footer_inner {
	padding: 20px 10px;
}
.footer_inner p {
	padding: 1em 0;
	line-height: 2em;
	border-bottom: 1px solid #fff;
	max-width: 900px;
	height: auto;
	margin: 0 auto;
}
.footer_inner p:last-child {
	border: none;
}
.footer_inner p span {
	font-size: clamp(14px, 1.25vw, 20px);
}
@media screen and (max-width:675px) {
	.footer_inner {
		padding: 30px 10px 80px;
	}
}


/* =================================
メイン
================================== */
main {
	position: relative;
	width: 100%;
	background-color: #ffffffa9;
}
.main_wrap {
	margin: 0 auto;
	text-align: center;
}

/* hero */
.hero {
	max-width: 1200px;
	margin: 0 auto;
	height: auto;
	padding : 50px 10px;
}
.hero_inner {
	background-color: var(--subColor);
	padding: 2em;
	border-radius: 20px;
}
.hero_inner div.hero_txt {
	display: inline-block;
	text-align: left;
	max-width: 1000px;
	height: auto;
	font-size: 18px;
	line-height: 2em;
}
.hero_inner div.hero_txt h2 {
	color: var(--mainColor);
	padding-bottom: 1em;
	text-align: center;
	font-size: 24px;
}

@media screen and (max-width:675px) {
	.hero {
		width: 95%;
		padding : 50px 0 20px;
	}
	.hero_inner h2 {
		border-radius: 30px 30px 0 0;
	}
	.hero_inner {
		border-radius: 0;
		padding: 2.5em 1.5em;
	}
	.hero_inner div.hero_txt {
		font-size: 16px;
	}
}

/* ポイント */
.point {
	max-width: 1200px;
	margin: 0 auto;
	height: auto;
}
.point_inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin: 50px 10px;
	position: relative;
}

.point_inner .point_ttl {
	position: absolute;
	top: -1.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	line-height: 1;
	padding: 1rem 2.5rem;
	margin: 0;
	border-radius: 20px;
	background-color: var(--mainColor);
	color: #fff;
	line-height: 1.5em;
}
.point_inner .point_cont {
	padding: 3rem 1rem 1rem;
	margin: 0;
	border: 3px solid var(--mainColor);
	border-radius: 1rem;
	background-color: #fef6e4;
}
.point_cont p {
	display: inline-block;
	text-align: left;
	font-size: clamp(16px, 1.125vw, 18px);
	line-height: 2em;
	padding: 0 1rem;
}
.point_cont p span {
	color: var(--mainColor);
	font-weight: bold;
}

.zu_wrap {
	max-width: 1000px;
	height: auto;
	margin: 20px auto 5px;
	display: flex;
	flex-direction: column;
	gap: .5em;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.zu_wrap figure {
	max-width: 100%;
	min-width: 600px;
}
.scroll-box::-webkit-scrollbar {
	height: 5px;
}
.scroll-box::-webkit-scrollbar-track {
	background: #eee;
}
.scroll-box::-webkit-scrollbar-thumb {
	background: #aaa;
	border: none;
}
.scroll-box::-webkit-scrollbar-thumb:hover {
	background: #999;
}
small.scroll_kakusi {
	display: none;
}

@media screen and (max-width:1000px) {
	.point_inner .point_ttl {
		position: static;
		transform: translateX(0);
	}
	small.scroll_kakusi {
		display: block;
		text-align: left;
	}
}

.Things {
	margin: 2em 0 1em;
}
.Things h2 {
	color: var(--mainColor);
}
.Things table {
	margin: 2em auto;
}
.Things table th {
	background-color: #fff;
	padding: 0 2em;
}
.Things table td {
	padding-left: 1em;
}
.Things li {
	text-align: left;
}
@media screen and (max-width: 640px) {
	.Things h2 {
		text-align: left;
	}
	.tbl-.Things table {
		width: 80%;
	}
	.Things table th {
		padding: 1em 0;
	}
	.Things table th,
	.Things table td {
		border-bottom: none;
		display: block;
		width: 100%;
	}
}
/* アコーディオン */
.accordion-point {
	width: 100%;
    margin: 10px auto;
}

.accordion-point summary {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: .8em 2em;
    font-weight: 600;
    cursor: pointer;
	gap: 1em;
}

.accordion-point summary::-webkit-details-marker {
    display: none;
}

.accordion-point summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 20px;
    height: 20px;
    /* margin-left: 10px; */
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
    content: '';
    transition: transform .3s;
}

.accordion-point[open] summary::after {
    transform: rotate(225deg);
}

.accordion-point p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-point[open] div {
    transform: none;
    opacity: 1;
}

/* インタビュー */
.interview {
	margin: 30px 10px;
	
}
.interview_inner {
	max-width: 1200px;
	height: auto;
	padding: 1em;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 1rem;
}
.interview_inner figure {
	max-width: 900px;
	margin: 1em auto;
}
.interview_inner h2 {
	color: var(--mainColor);
}

.kigyo_btn a.kigyo_btntxt{
	display: block;
	background-color: #ff6600;;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
	max-width: 1000px;
	height: auto;
	width: 95%;
	margin: 1em auto;
	padding: 10px;
	font-size: 25px;
}
@media screen and (max-width:700px) {
.kigyo_btn a.kigyo_btntxt{
	display: block;
	background-color: #ff6600;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
	max-width: 1000px;
	height: auto;
	width: 95%;
	margin: 1em auto;
	padding: 10px;
	font-size: 16px;
}
}

/* ---- */
.slide-items {
	width: 90%;
	margin: 1em auto;
	height: 100%;
}
.slide-items a {
	position: relative;
}
.slide-items a:hover {
	opacity: .5;
}
.slide-items li p {
	font-size: clamp(18px, 2vw, 20px);
	line-height: 1.5em;
	padding: 10px 2em 10px 10px;

	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	background-color: #ffffffa4;
}
.slide-items li p span {
	font-size: 16px;
}
.slide-items img {
	width: 100%;
	object-fit: cover;
}

@media screen and (max-width:700px) {
	.slide-items {
		width: 100%;
	}
}


/* メリット */
.merit {
	width: 100%;
	text-align: center;
	padding: 50px 0;
}
.merit_inner {
	position: relative;
}
.merit_inner h1 {
	font-size: clamp(16px, 1.125vw, 18px);
	background-color: #fff;
	color: var(--mainColor);
	border: 3px solid var(--mainColor);
	padding: .5em 1.5em;
	width: 50%;
	border-radius: 100vh;
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.merit_cont-flex {
	max-width: 1920px;
	height: auto;
	margin: 0 auto;
	display: flex;
}
.merit-sp {
	display: none;
}

@media screen and (max-width:850px) {
	.merit_cont-flex {
		flex-direction: column;
	}
	.merit-sp {
		display: block;
	}
	.merit-pc {
		display: none;
	}
	.merit_inner h1 {
		width: 90%;
	}

}

.merit_cont-inner {
	position: relative;
}
.merit_cont-txt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80%;
	background-color: #ffffffa4;
	padding: 1em;
	gap: 2em;
}
.merit_cont-txt h2 {
	color: var(--mainColor);
	letter-spacing: 5px;
}
.merit_cont-txt p {
	max-width: 500px;
	height: auto;
	display: inline-block;
	text-align: left;
	line-height: 1.5em;
	font-size: clamp(16px, 1.25vw, 20px);
}
.merit_cont-txt p span {
	color: var(--mainColor);
}
.merit_caption a.leaflet_link {
	display: block;
	background-color: #ff6600;;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
	max-width: 1000px;
	height: auto;
	width: 95%;
	margin: 1em auto;
	padding: 10px;
	font-size: 25px;
}
@media screen and (max-width:700px) {
.merit_caption a.leaflet_link {
	display: block;
	background-color: #ff6600;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
	max-width: 1000px;
	height: auto;
	width: 95%;
	margin: 1em auto;
	padding: 10px;
	font-size: 16px;
}
}
/* プロジェクトマップ */
.ProjectMap {
	margin: 30px 0 100px;
}
.map_cap {
	max-width: 1200px;
	height: auto;
	margin:  1em auto 0;
	display: flex;
	align-items: last baseline;
	justify-content: center;
	gap: 1em;
	padding: 0 10px;
}
.map_cap figure {
	max-width: 600px;
	height: auto;
	margin: 0 auto;
}
.map_cap p {
	font-size: clamp(16px, 1.125vw, 18px);
	display: inline-block;
	text-align: left;
	flex-basis: 80%;
}
@media screen and (max-width:1200px) {
	.map_cap {
		flex-direction: column;
	}	
	.map_cap p {
		max-width: 600px;
		height: auto;
		margin: 0 auto;
	}
}
@media screen and (max-width:765px) {
	.map_cap {
		margin:  1em auto 30px;
	}
	.Project_link {
		margin: 30px 10px;
	}
}

.ProjectMap-cont {
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.ProjectMap-cont article {
	max-width: 100%;
	min-width: 700px;
}

.ProjectMapBox-wrap {
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
}
.MapBox  {
	background-color: #fff;
	border: 3px solid var(--mainColor);
	border-radius: 20px;
	padding: 1em;
	margin: 30px 10px;
	position: relative; 
	overflow: visible;
}
.MapBox h2 {
	padding: 8px 0;
}
.MapBox p.tag {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 10px;
	justify-content: center;
	font-size: 14px;
}
.MapBox p.tag span {
	background-color: var(--mainColor);
	color: #fff;
	border-radius: 100vh;
	padding: 5px 1em;
}
.MapBox_cont {
	display: flex;
	padding: 1em 10px;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}
.MapBox_cont figure {
	flex-basis: 45%;
}
.MapBox_txt {
	flex-basis: 50%;
	text-align: left;
}
.MapBox_txt-inner h4 {
	color: var(--mainColor);
}
.MapBox_txt-inner h4::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background-size: contain;
	vertical-align: middle;
	margin: 0 5px 5px 0;
}
.map_logo {
  position: absolute;
  top: 10px;   
  right: 10px;  
  max-width: 140px;   
  height: auto;
}
@media screen and (max-width:1200px) {
.map_logo {
  position: absolute;
  top: 10px;   
  right: 10px;  
  max-width: 110px;   
  height: auto;
}
}
@media screen and (max-width:530px) {
.map_logo {
  position: static;
  max-width: 100px;   
  height: auto;
  margin: 0 auto;
  padding-bottom: 5px;
}
}

/* ============================= */
.MapBox_txt-inner h4.torikumi::before {
	background-image: url(../images/parts01.png);
}
.MapBox_txt-inner h4.kati::before {
	background-image: url(../images/parts02.png);
}
.MapBox_txt-inner h4.renkei::before {
	background-image: url(../images/parts03.png);
}
/* ============================= */
.MapBox_txt-inner p {
	padding: 0 10px 5px;
}
@media screen and (max-width:1190px) {
	.MapBox_cont {
		flex-direction: column;
	}
	.MapBox p.tag {
		justify-content: flex-start;
	}
}
/* -------------------------------------- */
.Project_link {
	margin: 0 10px 30px;
}
.cta_btn04 {
	font-weight: bold;
	height: auto;
	width: 100%;
	max-width: 700px;
	display: inline-block;
	padding: 2em;
	transition: 0.3s;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #fff;
	border-radius: 10px;
	background: #ff6600;
	text-align: center;
}

.cta_btn04 p {
	margin: 0;
	font-size: 25px;
}
@media screen and (max-width:500px) {
	.cta_btn04 {
	padding: 1em;
	}
	.cta_btn04 p {
	margin: 0;
	font-size: 18px;
	}

}
.cta_btn04 .cta_btn04_copy {
	display: block;
	padding: 0.3em 0;
	color: #ff6600;
	border-radius: 100vh;
	background: #fff;
	margin-bottom: 10px;
}
/* マウスオーバーした際のデザイン */
.cta_btn04:hover {
	transform: translate(0, 3px);
	color: #fff;
	background: #F38173;
}
@media screen and (max-width:765px) {
	.Project_link {
		margin: 30px 10px;
	}
}



/* ニュース */
.news_wrap {
	max-width: 1300px;
	width: 100%;
	margin: 30px auto;
	background-color: #fff;
	border-radius: 20px;
}
.news_inner {
	padding: 2em 10px;
}
.news_inner h2 {
	color: var(--mainColor);
}
.inner {
	width: 80%;
	background-color: #fff;
	margin: 0 auto;
	padding: 65px 0 100px;
}
.sub_ttl {
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;
}
.news_list {
	margin: 20px 5%;
}
.news_list_item {
	padding: 25px 0;
	border-bottom: 1px solid #bd7079;
}
.news_list_item:first-child {
	border-top: 1px solid #bd7079;
}
.news_list_item a {
	position: relative;
	display: flex;
	padding-right: 30px;
	color: #333;
	align-items: center;
}
.news_list_date {
	font-size: 15px;
	display: flex;
	margin-right: 15px;
	align-items: center;
}
.news_item {
	background: #8f8f8f;
	border-radius: 5px;
	width: 6em;
	/* 親要素の文字サイズを基準 */
	text-align: center;
	margin-left: 20px;
	color: #fff;
	padding: 5px;
}
.arrow {
	width: 25px;
	height: 1px;
	background: #707070;
	position: absolute;
	top: 50%;
	right: 0;
}
.arrow::after {
	content: "";
	display: block;
	width: 6px;
	height: 1px;
	background: #707070;
	transform: rotate(45deg);
	position: absolute;
	right: 0px;
	bottom: 2px;
}
@media screen and (max-width: 1024px) {
	.news_wrap {
		border-radius: 0;
	}
    .news_list_item a {
        display: block;
    }
	.news_list_item a p.news_txt {
		display: inline-block;
		text-align: left;
		padding: 10px 0 0;
	}
}
@media screen and (max-width: 769px) {
    .news_list_item a  {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .arrow {
        display: none;
    }
    .news_list_item a {
        padding-right: 0;
    }
}

/* 新着情報 */
.event_wrap {
	max-width: 1300px;
	width: 100%;
	margin: 30px auto;
	background-color: #fff;
	border-radius: 20px;
}
.event_inner {
	padding: 2em 10px;
}
.event_cont {
	max-width: 850px;
	width: 100%;
	margin: 30px auto;
}
.event_inner h2 {
	color: var(--mainColor);
}
a.event_link:hover {
	opacity: .5;
}
.event_card {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2em;
	border-bottom: 1px solid var(--mainColor);
	padding-bottom: 2em;
}
.event_card figure {
	flex-basis: 40%;
}
.event_card div.event_card-txt {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1em;
}
.event_card div.event_card-txt p {
	text-align: left;
}
.event_card div.event_card-txt p.link {
	margin-left: auto;
}

.event_archive {
	text-align: left;
}
.event_archive a {
	border-bottom: 1px solid var(--mainColor);
	padding: 2em 0;
}
.event_archive-cont {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.event_archive-cont p {
	padding: 0 10px;
}
.event_archive-cont p span {
	font-size: 18px;
	font-weight: bold;
}

@media screen and (max-width:1310px) {
	.event_wrap {
		width: 95%;
	}
}
@media screen and (max-width:860px) {
	.event_card {
		flex-direction: column;
		width: 50%;
		margin: 0 auto;
	}	
}
@media screen and (max-width:530px) {
	.event_card {
		width: 90%;
	}	
}

/* 250728追加　富山市情報ボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #cf1126;
  border-radius: 0.5rem;
}

a.btn-border {
  border: 2px solid #cf1126;
  border-radius: 0;
  background: #fff;
}

a.btn-border:hover {
  color: #fff;
  background: #cf1126;
}

@media screen and (max-width:530px) {
.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #cf1126;
  border-radius: 0.5rem;
}
}