@charset "UTF-8";
/* CSS Document */

/* PC用設定 */
@media screen and (min-width:751px) {

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #000000;
	--sub-text-color:#606060;
	--text-link: #2689FD;
	--primary-color: #819CD4;
	--accent-color: #ff58a3;
	--red-color: #EE0000;
	--bg-color: #FFFFFF;
	--bg02-color: rgb(0 0 0 / 0.8);
	--border-color: #aaaaaa;
	--grad-color:linear-gradient(90deg,#E24D01 0%,#F57710 100% );
	--grad02-color:linear-gradient(90deg,#F57710 0%,#E24D01 100% );
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #CCC; /* アコーディオンボタンのベース色 */
	--btn-text-color: #000; /* アコーディオンボタンのテキスト色 */
}
/* 背景固定 */
/* body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png) no-repeat center center;
	background-size: cover;
} */

.main__wrap{
	padding-top: 66px;
	background-color: #fff;
	color: var(--text-color);
	line-height: 1.5;
	font-size: 14px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}
.main__wrap *{box-sizing: border-box;}
img{
	display: block;
	width: 100%;
	height: auto;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 800px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.fc-accent{color: var(--red-color);}
.fc-white{color: #FFF;}

.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight: bold;
}
.txt-note{font-size: 12px;}
.txt-note.fz-s {font-size: 11px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
}
.note__list li.fc-red{color: var(--red-color);}

.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}
.bold {font-weight: bold;}
.auto_center {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}
.credit{
	font-size: 10px;
	padding-top: 8px;
	text-align: center;
	background-color: #FFF;
}

.fz-smaller{font-size: 0.8em;}
.fz-larger{font-size: 1.2em;}

/* PC用設定 */
@media screen and (min-width:751px) {
	:root {
    --scale-factor: 1.15; /* 1.15倍に */
	}
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.pc_center {text-align: center;}
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.js__fadeIn{
	opacity: 0; /* 最初は非表示 */
	transition: opacity .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeIn.is-inview {
	opacity: 1;
}

/* フェードアップ */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(15px); /* 下にXXpxの位置から */
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
}

.js__popUp {
	opacity: 0;
	transform: scale(0);
	transition: transform .5s;
}
.js__popUp.is-inview {
	opacity: 1;
	transform: scale(1);
}

.js__popUp2 {
	opacity: 0;
	transform: scale(0);
	transition: transform cubic-bezier(0.7, 0.2, 0.5, 1.5) .5s;
}
.js__popUp2.is-inview {
	opacity: 1;
	transform: scale(1);
}

/* animationフェードダウン */
.js__fadeDown{
	opacity: 0; /* 最初は非表示 */
	transition: opacity 1s, transform 1s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeDown.is-inview {
	animation-name:fadeInDown;
	animation-duration: 1.3s;
	animation-fill-mode: both;
	opacity: 1;
}

@keyframes fadeInDown {
	from {
			opacity:0;
			transform:translate3d(0, -8%, 0);
	}
	to {
			opacity:1;
			transform:none;
	}
}

/* ブラー*/
.js__blurAnime{opacity: 0; /* 最初は非表示 */}
.js__blurAnime.is-inview{
	animation-name: blurAnime;
	animation-duration: 1.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes blurAnime{
	from {
		filter: blur(10px);
		opacity: 0;
	}

	to {
		filter: blur(0);
		opacity: 1;
	}
}

/* flipLeft */
.js__flipLeft{
	opacity: 0;
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__flipLeft.is-inview {
	animation-name: flipLeftAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	perspective-origin: left center;
	opacity: 0;
	transition-delay: 0.8s;
	animation-delay: 0.3s;
}
@keyframes flipLeftAnime{
	from {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
	opacity: 0;
	}

	to {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	opacity: 1;
	}
}

/* スライド（左から右） */
.js__slide{
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: all .8s;
}
.js__slide.is-inview{
	animation-name: anime_left_to_right;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes anime_left_to_right {
	0% {
			clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	100% {
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

/* スライド（左から右） */
.js__slideUp{
	clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
	transition: all .8s;
}
.js__slideUp.is-inview{
	animation-name: anime_bottom_to_top;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes anime_bottom_to_top {
	0% {
			clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
	}
	100% {
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

/* スライド（左上から右下） */
.js__diagonal {
  /* 初期状態：左上の1点に集約 */
	clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	transition: all .8s;
}

.js__diagonal.is-inview {
	animation-name: anime_diagonal_wipe;
	animation-fill-mode: forwards;
	animation-duration: 1.2s;
	animation-timing-function: ease;
}

@keyframes anime_diagonal_wipe {
	0% {
    /* 左上の外側に隠れている状態（三角形） */
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	}
/* 50% {
    clip-path: polygon(0% 0%, 60% 0%, 0% 100%, 0% 0%);
  } */
	100% {
    /* 右下の外側まで突き抜けることで、角が埋まる違和感を消す */
    /* 200%まで飛ばすのがポイントです */
    clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
	}
}

.js__listFadeUp li {
	opacity: 0;
	transform: translateY(5px);
}
.js__listFadeUp.is-inview li {
	animation-name: listFadeUp;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listFadeUp li:nth-child(1) {animation-delay: 0s;}
.js__listFadeUp li:nth-child(2) {animation-delay: .2s;}
.js__listFadeUp li:nth-child(3) {animation-delay: .4s;}
.js__listFadeUp li:nth-child(4) {animation-delay: .6s;}
.js__listFadeUp li:nth-child(5) {animation-delay: .8s;}
.js__listFadeUp li:nth-child(6) {animation-delay: 1s;}
.js__listFadeUp li:nth-child(7) {animation-delay: 1.2s;}
.js__listFadeUp li:nth-child(8) {animation-delay: 1.4s;}

@keyframes listFadeUp {
	from {
	opacity: 0;
	transform: translateY(5px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

.js__listFlip li {
	opacity: 0;
	transform: rotateY(360deg);
}
.js__listFlip.is-inview li {
	animation-name: listFlip;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listFlip li:nth-child(1) {animation-delay: 0s;}
.js__listFlip li:nth-child(2) {animation-delay: .2s;}
.js__listFlip li:nth-child(3) {animation-delay: .4s;}
.js__listFlip li:nth-child(4) {animation-delay: .6s;}
.js__listFlip li:nth-child(5) {animation-delay: .8s;}
.js__listFlip li:nth-child(6) {animation-delay: 1s;}
.js__listFlip li:nth-child(7) {animation-delay: 1.2s;}
.js__listFlip li:nth-child(8) {animation-delay: 1.4s;}

@keyframes listFlip {
	from {
	opacity: 0;
	transform: rotateY(360deg);
	}
	to {
	opacity: 1;
	transform: rotateY(0);
	}
}


.js__listPopUp li {
	opacity: 0;
	transform: scale(0);
}
.js__listPopUp.is-inview li {
	animation-name: listPopUp;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listPopUp li:nth-child(1) {animation-delay: 0s;}
.js__listPopUp li:nth-child(2) {animation-delay: .2s;}
.js__listPopUp li:nth-child(3) {animation-delay: .4s;}
.js__listPopUp li:nth-child(4) {animation-delay: .6s;}
.js__listPopUp li:nth-child(5) {animation-delay: .8s;}
.js__listPopUp li:nth-child(6) {animation-delay: 1s;}
.js__listPopUp li:nth-child(7) {animation-delay: 1.2s;}
.js__listPopUp li:nth-child(8) {animation-delay: 1.4s;}

@keyframes listPopUp {
	from {
	opacity: 0;
	transform: scale(0);
	}
	to {
	opacity: 1;
	transform: scale(1);
	}
}

.is-transition-delayed00 {transition-delay: .2s;}
.is-transition-delayed01 {transition-delay: .4s;}
.is-transition-delayed02 {transition-delay: .6s;}
.is-transition-delayed03 {transition-delay: .8s;}
.is-transition-delayed04 {transition-delay: 1s;}
.is-animation-delayed {animation-delay: .4s;}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
	display: none;
}
.acc__block01 .acc__body {
	margin-top: 16px;
	color: var(--text-color);
}
.acc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: var(--primary-color);
	padding: 6px 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__block01 .acc__btn {
	width: fit-content;
	margin: 0 auto;
	background-color: var(--btn-base-color);
	border-radius: 20px;
}
.acc__btn_text {
	font-weight: bold;
	color: var(--btn-text-color);
}
.acc__btn_plus {
	background-color: var(--btn-text-color);
	height: 16px;
	width: 16px;
	border-radius: 100%;
	position: relative;
}
.acc__btn_plus::before,
.acc__btn_plus::after {
	content: "";
	background-color: var(--btn-base-color);
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__btn_plus::after {	transform: translate(-50%,-50%);}
.acc__btn_plus::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open .acc__btn_plus::before {transform: translate(-50%,-50%);}

/* PC用設定 */
@media screen and (min-width:751px) {
}


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn{display: block;
	max-width: 400px;
	margin: 0 auto;
	}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__pc{
		background-color: var(--primary-color,#B3B3B3);
		border: 1px solid #000000;
		padding: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		padding-right: 16px;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 20px;
		margin-bottom: 8px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 120px;
		height: 120px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
}

/* サイズをかえる書き方 */
.SD01 {
	width: calc(81px * var(--scale-factor));
}

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */

.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.menu__list li{
	width: calc( ( 100% - 20px ) / 2 );
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__list{gap: 30px;}
	.menu__list li{
		width: calc( ( 100% - 90px ) / 4 );
		max-width: 130px;
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
step
------------------------------------------------------------ */
/* .step__wrap {
	padding: 16px;
	border: 1px solid var(--primary-color);
}
.step__list {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	justify-content: center;
}
.step__list + .step__list {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--border-color);
}
.step__list dt {
	background-color: var(--primary-color);
	color: #FFF;
	font-weight: bold;
	line-height: 1;
	width: 64px;
	border-radius: 40px;
	padding: 5px 0;
	text-align: center;
	font-size: 12px;
}
.step__list dd {
	width: calc(100% - 64px - 8px);
} */
/* PC用設定 */
@media screen and (min-width:751px) {
	
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) {
	
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) {
	
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) {
	
}

/* ------------------------------------------------------------
overview 応募要項ボタン
------------------------------------------------------------ */
.overview__btn {
display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    padding: 8px 0;
    max-width: 180px;
    margin: 16px auto 0;
    color: var(--primary-color);
    text-align: center;
    font-weight: bold;
    transition: all .3s;
    background-color: #FFF;
    box-shadow: 1px 3px 0px;
}
.overview__icon {
	width: 13px;
	height: 16px;
	transition: all .3s;
	mask: url(../img/icon_pdf.svg) no-repeat center / contain;
	background-color: var(--primary-color);
}


/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap{background-color: #fff;}
.oshitabi_btn--block{padding: 40px 30px;}
.oshitabi_btn{
	display: block;
	border: 3px solid #000000;
	color: #000000;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	position: relative;
}
.oshitabi_btn::after{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 16px;
	top: 50%;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.oshitabi_btn--block{
		max-width: 640px;
		margin: 0 auto;
	}
	.oshitabi_btn{
		transition: all .3s;
		width: 360px;
		margin: 32px auto;
	}
	.oshitabi_btn:hover{
		background-color: #000000;
		color: #fff;
	}
	.oshitabi_btn:hover:after{
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
	}
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn{
	position: fixed;
	bottom: 20px;
	right: 10px;
	transition: .3s;
	width: 56px;
	z-index: 99;
	opacity: 0;/*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active{opacity: 1;}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute{
	position: absolute;
	top: -70px;
	bottom: auto;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.pagetop-btn{
		right: 24px;
	}
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive{pointer-events: none;}
.cs{
	background-color: rgba(255, 255, 255, 0.7);
	color: var(--primary-color);
	font-weight: bold;
	text-align: center;
	padding: 6px;
}
.event-end{
	color: var(--red-color);
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid var(--red-color);
	padding: 6px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* .cs.event-end-block{
	width: 100%;
	height: 100%;
} */
/* PC用設定 */
@media screen and (min-width:751px){
	.cs.event-end-block{
	width: 100%;
	height: 100%;
	border-radius: 0;
}
	/* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}




/* ------------------------------------------------------------
アキ調整
------------------------------------------------------------ */


.mgbS{margin-bottom: 8px;}/* PC:8px */
.mgbM{margin-bottom: 16px;}/* PC:24px */
.mgbL{margin-bottom: 24px;}/* PC:32px */
.mgbLL{margin-bottom: 32px;}/* PC:40px */

.mgtSS{margin-top: 4px;}
.mgtS{margin-top: 8px;}
.mgtM{margin-top: 16px;}/* PC:24px */
.mgtL{margin-top: 24px;}/* PC:32px */
.mgtLL{margin-top: 32px;}/* PC:40px */

.pdtS{padding-top: 8px;}/* PC:8px */
.pdtM{padding-top: 16px;}/* PC:24px */
.pdtL{padding-top: 24px;}/* PC:32px */

.pdbS{padding-bottom: 8px;}/* PC:8px */
.pdbM{padding-bottom: 16px;}/* PC:24px */
.pdbL{padding-bottom: 24px;}/* PC:32px */

/* PC用設定 */
@media screen and (min-width:751px) {
	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.mgbLL{margin-bottom: 40px;}

	.mgtM{margin-top: 24px;}
	.mgtL{margin-top: 32px;}
	.mgtLL{margin-top: 40px;}

	.pdtM{padding-top: 24px;}
	.pdtL{padding-top: 32px;}

	.pdbM{padding-bottom: 24px;}
	.pdbL{padding-bottom: 32px;}
}

/*==============================
# toukenranbu-sanobi2026
==============================*/
@media screen and (min-width:751px) {
	.u-sp {
    display: none;
  }
}

.u-pc {
  display: none;
}
@media screen and (min-width:751px) {
  .u-pc {
    display: block;
  }
}


.first {
  background-color: #B9D3D4;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.first::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/tile01.png);
  background-size: 78.5px 39.5px;
  opacity: 0.5;
  z-index: -1;
}

.first__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(../img/pattern_check.png);
  background-size: 20px;
  background-repeat: repeat-x;
  opacity: 0.5;
}

.first__inner {
  width: 100%;
  padding-bottom: 52px;
}
@media screen and (min-width:751px) {
  .first__inner {
    max-width: 800px;
    margin: 0 auto;
  }
}

.mv {
  width: 100%;
}

.intro {
  margin-top: 32px;
  position: relative;
}
@media screen and (min-width:751px) {
  .intro {
    margin-top: 40px;
  }
}

.intro__deco01 {
  position: absolute;
  width: 144px;
  top: -22px;
  left: -56px;
}
@media screen and (min-width:751px) {
  .intro__deco01 {
    width: 193px;
    top: -29px;
    left: -10px;
  }
}

.intro__deco02 {
  position: absolute;
  width: 131px;
  top: 239px;
  right: -34px;
}
@media screen and (min-width:751px) {
  .intro__deco02 {
    width: 181px;
    top: 175px;
    right: -47px;
  }
}

.intro__text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width:751px) {
	.intro__text {
    font-size: 18px;
  }
}

.intro__list {
  margin-top: 48px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
@media screen and (min-width:751px) {
  .intro__list {
    margin-top: 64px;
    padding: 0 20px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 20px;
  }
}

.intro__list li {
  width: 100%;
}
@media screen and (min-width:751px) {
  .intro__list li {
    width: calc(33.33% - 20px * 2 / 3);
  }
}

.intro__btn {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width:751px) {
  .intro__btn {
    margin-top: 32px;
  }
}

.intro__btn a {
  display: inline-block;
  width: 100%;
  max-width: 329px;
}

.second {
  padding: 48px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width:751px) {
  .second {
    padding: 64px 0;
  }
}

.second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/second_bg.png);
  background-size: 142px;
  opacity: 0.4;
  z-index: -1;
}

.second__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(../img/pattern_check02.png);
  background-size: 20px;
  background-repeat: repeat-x;
  opacity: 0.5;
}

.l-inner {
  width: 100%;
  padding: 0 15px;
  max-width: 630px;
  margin: 0 auto;
}

.sec-heading-title {
  position: relative;
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (min-width:751px) {
	.sec-heading-title {
    max-width: 450px;
  }
}

.sec-heading-title__deco01 {
  position: absolute;
  width: 183px;
  top: -25px;
  right: -36px;
  z-index: -1;
}
@media screen and (min-width:751px) {
  .sec-heading-title__deco01 {
    width: 200px;
    top: 0;
    right: -75px;
  }
}

.sec-heading-title__deco02 {
  position: absolute;
  width: 149px;
  bottom: -22px;
  left: -43px;
  z-index: -1;
}
@media screen and (min-width:751px) {
  .sec-heading-title__deco02 {
    width: 180px;
    bottom: -40px;
    left: -75px;
  }
}

.sec-heading-schedule {
  margin-top: 8px;
}
@media screen and (min-width:751px) {
	
}

.sec-heading-schedule__top {
  width: 250px;
  margin: 0 auto;
}
@media screen and (min-width:751px) {
  .sec-heading-schedule__top {
    width: 333px;
  }
}

.sec-heading-schedule__text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 2px;
}
@media screen and (min-width:751px) {
  .sec-heading-schedule__text {
    font-size: 16px;
    margin-bottom: 6px;
    margin-top: 2px;
  }
}

.sec-heading-schedule__text span {
  font-size: 16px;
}
@media screen and (min-width:751px) {
  .sec-heading-schedule__text span {
    font-size: 18px;
  }
}

.sec-heading-schedule__bot {
  width: 250px;
  margin: 0 auto;
}
@media screen and (min-width:751px) {
  .sec-heading-schedule__bot {
    width: 333px;
  }
}

.sec-heading__note {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: 4px;
}

.voice {
  
}

.voice-btn__block {
  margin-top: 24px;
}
@media screen and (min-width:751px) {
  .voice-btn__block {
    margin-top: 32px;
  }
}

a.voice-btn {
  max-width: 317px;
}

.cs.add-sp {
  background-color: rgba(0, 0, 0, 0.75);
  width: 270px;
  height: 70px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #AE8C51;
}

@media screen and (min-width:751px) {
	.voice-btn__outer {
    max-width: 450px;
    margin: 0 auto;
    background-image: url(../img/qr_bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 8px;
  }
}

@media screen and (min-width:751px) {
	.voice-btn__pc {
    background-color: transparent;
    border: none;
    padding: 16px;
    border: 1px solid #E8DFAB;
    background: linear-gradient(to right, #000, #5C5C5C);
  }
}

@media screen and (min-width:751px) {
	.voice-btn__txt .txt01 {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media screen and (min-width:751px) {
	.voice-btn__txt .txt02 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }
}

@media screen and (min-width:751px) {
	.voice-btn__img {
    width: 100px;
    height: 100px;
  }
}

@media screen and (min-width:751px) {
	.cs.add-pc {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #AE8C51;
    line-height: 1.16;
  }
}

.voice-btn__block .txt-note {
  font-size: 10px;
  line-height: 1.4;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.voice-btn__block .txt-note.red {
  font-size: 12px;
  color: #C60000;
  font-weight: 700;
}

.note__list {
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.5);
}

.acc__block01 .acc__btn {
  background-color: var(--text-color);
}

.acc__btn_text {
  color: #fff;
}

.acc__btn_plus {
  background-color: #fff;
}

.acc__btn_plus::before,
.acc__btn_plus::after {
  background-color: var(--text-color);
}

.txt-link {
  color: #AE8C51;
}

.card {
  margin-top: 64px;
}
@media screen and (min-width:751px) {
  .card {
    margin-top: 80px;
  }
}

.card-lead {
  margin-top: 24px;
}
@media screen and (min-width:751px) {
  .card-lead {
    margin-top: 32px;
  }
}

.card-lead__text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width:751px) {
	.card-lead__text {
    font-size: 18px;
  }
}

.card-lead__note {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin-top: 4px;
}

.card-lead__note a {
  font-weight: 700;
  color: #AE8C51;
  text-decoration: underline;
}

.card-contents {
  margin-top: 24px;
}
@media screen and (min-width:751px) {
  .card-contents {
    margin-top: 32px;
  }
}

.card-contents__head {
  max-width: 212px;
  margin: 0 auto;
}
@media screen and (min-width:751px) {
  .card-contents__head {
    max-width: 256px;
  }
}

.card-contents__note {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: 4px;
}

.card-contents__schedule {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding: 2px;
  background-color: var(--primary-color);
  margin-top: 16px;
}
@media screen and (min-width:751px) {
  .card-contents__schedule {
    font-size: 16px;
    margin-top: 24px;
  }
}

.card-contents__img {
  width: 100%;
  max-width: 317px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width:751px) {
  .card-contents__img {
    max-width: 450px;
    margin-top: 24px;
  }
}

.card-contents .txt-note {
  text-align: center;
}

.exchange {
  margin-top: 24px;
}
@media screen and (min-width:751px) {
  .exchange {
    margin-top: 32px;
  }
}

.exchange-box {
  position: relative;
  padding: 8px;
  background-color: #fff;
  z-index: 1;
}
@media screen and (min-width:751px) {
  .exchange-box {
    padding: 16px;
  }
}

.exchange-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/step_bg.png);
  background-size: 100%;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

.exchange-box__inner {
  position: relative;
  border: 1px solid var(--primary-color);
  padding: 18px;
}
@media screen and (min-width:751px) {
  .exchange-box__inner {
    padding: 20px 24px;
  }
}

.exchange__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exchange-item {

}

.exchange-item__title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding: 2px;
  background-color: var(--primary-color);
}
@media screen and (min-width:751px) {
	.exchange-item__title {
    font-size: 16px;
  }
}

.exchange-item__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width:751px) {
	.exchange-item__text {
    font-size: 16px;
  }
}

.exchange-item__access {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width:751px) {
	.exchange-item__access {
    font-size: 16px;
  }
}

.exchange-item__access a {
  font-weight: 700;
  color: #AE8C51;
  text-decoration: underline;
}

.exchange-item .txt-note {
  text-align: center;
}

.exchange-item .txt-note.red {
  color: #C60000;
}

.exchange-box__deco {
  width: 16px;
  position: absolute;
}
@media screen and (min-width:751px) {
  .exchange-box__deco {
    width: 20px;
  }
}

.exchange-box__deco.tl {
  top: 0;
  left: 0;
}

.exchange-box__deco.tr {
  top: 0;
  right: 0;
}

.exchange-box__deco.bl {
  bottom: 0;
  left: 0;
}

.exchange-box__deco.br {
  bottom: 0;
  right: 0;
}


.step {
  position: relative;
  padding: 8px;
  background-color: #fff;
  z-index: 1;
  margin-top: 24px;
}
@media screen and (min-width:751px) {
  .step {
    padding: 16px;
    margin-top: 32px;
  }
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/step_bg.png);
  background-size: 100%;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

.step__box {
  border: 1px solid var(--primary-color);
}

.step__inner {
  padding: 16px;
}
@media screen and (min-width:751px) {
  .step__inner {
    padding: 20px 24px;
  }
}

.step__bot {
  width: 100%;
  height: 24px;
  background-image: url(../img/step_bot.png);
  background-size: 600px 30px;
  background-position: top center;
}

.step__title {
  text-align: center;
}

.step__title span {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary-color);
  position: relative;
  padding: 0 22px;
}

.step__title span::before,
.step__title span::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/step_title_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.step__title span::before {
  left: 0;
}

.step__title span::after {
  right: 0;
}

.step__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.step-item {
  width: 100%;
}

.step-item__title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding: 2px;
  background-color: var(--primary-color);
}
@media screen and (min-width:751px) {
	.step-item__title {
    font-size: 16px;
  }
}

.step-item__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width:751px) {
	.step-item__text {
    font-size: 16px;
  }
}

.step-item .txt-note {
  text-align: center;
}

.arriving {
  margin-top: 64px;
}
@media screen and (min-width:751px) {
  .arriving {
    margin-top: 80px;
  }
}

.info {
  background-color: #E8E5CF;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 32px 0;
}
@media screen and (min-width:751px) {
  .info {
    padding: 48px 0;
  }
}

.info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/third_bg.png);
  background-size: 180px;
  opacity: 0.3;
  z-index: -1;
}

.info-item {
  position: relative;
  border: 1px solid #000;
}

.info-item + .info-item {
  margin-top: 24px;
}
@media screen and (min-width:751px) {
  .info-item + .info-item {
    margin-top: 32px;
  }
}

.info-item__deco {
  width: 20px;
  position: absolute;
}
@media screen and (min-width:751px) {
  .info-item__deco {
    width: 30px;
  }
}

.info-item__deco.tl {
  top: 0;
  left: 0;
}

.info-item__deco.tr {
  top: 0;
  right: 0;
}

.info-item__deco.bl {
  bottom: 0;
  left: 0;
}

.info-item__deco.br {
  bottom: 0;
  right: 0;
}

.info-item__inner {
  padding: 16px;
}
@media screen and (min-width:751px) {
  .info-item__inner {
    padding: 24px;
  }
}

.info-item__lead {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4px;  
}
@media screen and (min-width:751px) {
	.info-item__lead {
    font-size: 15px;
  }
}

.info-item__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width:751px) {
	.info-item__title {
    font-size: 18px;
  }
}

.info-item__schedule {
  text-align: center;
  margin-top: 8px;
}

.info-item__schedule span {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding: 4px 16px;
  background-color: var(--text-color);
}
@media screen and (min-width:751px) {
	.info-item__schedule span {
    font-size: 15px;
    padding: 4px 32px;
  }
}

.info-item__img {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.2);
}

.item01 .info-item__img {
  max-width: 313px;
}
@media screen and (min-width:751px) {
  .item01 .info-item__img {
    max-width: 500px;
  }
}

.item02 .info-item__img {
  max-width: 187px;
}

.info-item .txt-note {
  text-align: center;
}