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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #000000;
	--sub-text-color:#606060;
	--text-link: var(--accent-color);
	--primary-color: #1A3275;
	--secondary-color: #A28551;
	--accent-color: #B43939;
	--red-color: #E40111;
	--bg-color: #EBE3D8;
	--bg02-color: rgb(255 255 255 / 0.6);
	--border-color: #D3D3D3;
	--grad-color:linear-gradient(180deg,#1A3275 0%,#262E43 100% );
	--grad02-color:linear-gradient(0deg,#1A3275 0%,#262E43 100% );
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #000; /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */
}
/* 背景固定 */
/* 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);
	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;
	line-height: 1.5;
}
img{
	display: block;
	width: 100%;
	height: auto;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 800px;
}

/*------------------ 文字色 ------------------*/
.fc-red{color: var(--red-color);}
.fc-accent{color: var(--accent-color);}
.fc-primary{color: var(--primary-color);}
.fc-white{color: #FFF;}
.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight: bold;
}

/*------------------ 文字サイズ・注意書き ------------------*/
.fz-smaller{font-size: 0.8em;}
.fz-larger{font-size: 1.2em;}
.txt-note{font-size: 12px;}
.txt-note.fz-s {font-size: 10px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
}
.indent li, .txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}

.ff-goblin {
	font-family: "Goblin One", serif;
}

/*------------------ 段落 ------------------*/
.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;
}

/* 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;
}
.js__fadeIn.is-inview {
	opacity: 1;
}

/*------------------ フェードアップ ------------------*/
.js__fadeUp{
	opacity: 0;
	transform: translateY(15px);
	transition: opacity .8s, transform .8s;
}
.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);
}

/*------------------ フェードダウン ------------------*/
.js__fadeDown{
	opacity: 0;
	transition: opacity 1s, transform 1s;
}
.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;
	}
}

/*------------------ フリップ ------------------*/
.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%);
	}
}

/*------------------ liを順番にフェードアップ ------------------*/
.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);
	}
}

/*------------------ liを順番にフリップ ------------------*/
.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);
	}
}

/*------------------ liを順番にポップアップ ------------------*/
.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);
	}
}

/*------------------ 左右に開く ------------------*/

.js__iris {
	clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100% );
}
.js__iris.is-inview {
	animation-name: iris;
	animation-duration: .8s;
	animation-fill-mode: forwards;
}
@keyframes iris {
	0% {
	clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100% );
}
	100% {
		transform: scaleY(1);
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

	}
}
/*------------------ 順番に開く ------------------*/

.js__listIris li a {
	display: block;
	clip-path: polygon(0% 50%, 100% 50%, 100% 50%, 0% 50%);
}
.js__listIris.is-inview li a {
	animation: listIris .5s ease forwards;
}
.js__listIris li:nth-child(1) a {animation-delay: .2s;}
.js__listIris li:nth-child(2) a {animation-delay: .4s;}
.js__listIris li:nth-child(3) a {animation-delay: .6s;}
.js__listIris li:nth-child(4) a {animation-delay: .8s;}

@keyframes listIris {
	0% {
	clip-path: polygon(0% 50%, 100% 50%, 100% 50%, 0% 50%);
}
	50% {
		transform: scaleY(1.2);
		clip-path: polygon(0% 0%, 100% 0%, 100% 120%, 0% 120%);

	}
	100% {
		transform: scaleY(1);
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

	}
}



/*------------------ 1文字ずつ ------------------*/
.js__textPop {opacity: 0;}
.is-inview.js__textPop {opacity: 1;}
.js__textPop span {
	opacity: 0;
	transform: translateY(0);
	display: inline-block;
}
.is-inview.js__textPop span {
	animation-name: textPop;
	animation-fill-mode: forwards;
	animation-timing-function: step-start;
}
@keyframes textPop {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}
/* ターゲットOPERATION */
.js__textPop.txt1 span:nth-child(1) {animation-delay: 0s;}
.js__textPop.txt1 span:nth-child(2) {animation-delay: .05s;}
.js__textPop.txt1 span:nth-child(3) {animation-delay: .1s;}
.js__textPop.txt1 span:nth-child(4) {animation-delay: .15s;}
.js__textPop.txt1 span:nth-child(5) {animation-delay: .2s;}

.js__textPop.txt1-2 span:nth-child(1) {animation-delay: .25s;}
.js__textPop.txt1-2 span:nth-child(2) {animation-delay: .3s;}
.js__textPop.txt1-2 span:nth-child(3) {animation-delay: .35s;}
.js__textPop.txt1-2 span:nth-child(4) {animation-delay: .4s;}
.js__textPop.txt1-2 span:nth-child(5) {animation-delay: .45s;}
.js__textPop.txt1-2 span:nth-child(6) {animation-delay: .5s;}
.js__textPop.txt1-2 span:nth-child(7) {animation-delay: .55s;}
.js__textPop.txt1-2 span:nth-child(8) {animation-delay: .6s;}
.js__textPop.txt1-2 span:nth-child(9) {animation-delay: .65s;}
/* TOKAIDO */
.js__textPop.txt2 span:nth-child(1) {animation-delay: .7s;}
.js__textPop.txt2 span:nth-child(2) {animation-delay: .75s;}
.js__textPop.txt2 span:nth-child(3) {animation-delay: .8s;}
.js__textPop.txt2 span:nth-child(4) {animation-delay: .85s;}
.js__textPop.txt2 span:nth-child(5) {animation-delay: .9s;}
.js__textPop.txt2 span:nth-child(6) {animation-delay: .95s;}
.js__textPop.txt2 span:nth-child(7) {animation-delay: 1s;}
/* 任務了解 */
.js__textPop.txt3 span:nth-child(1) {animation-delay: 1.2s;}
.js__textPop.txt3 span:nth-child(2) {animation-delay: 1.25s;}
.js__textPop.txt3-2 span:nth-child(1) {animation-delay: 1.3s;}
.js__textPop.txt3-2 span:nth-child(2) {animation-delay: 1.35s;}
/* 東海道新幹線に搭乗。 */
.js__textPop.txt4 span:nth-child(1) {animation-delay: 1.5s;}
.js__textPop.txt4 span:nth-child(2) {animation-delay: 1.55s;}
.js__textPop.txt4 span:nth-child(3) {animation-delay: 1.6s;}
.js__textPop.txt4 span:nth-child(4) {animation-delay: 1.65s;}
.js__textPop.txt4 span:nth-child(5) {animation-delay: 1.7s;}
.js__textPop.txt4 span:nth-child(6) {animation-delay: 1.75s;}
.js__textPop.txt4 span:nth-child(7) {animation-delay: 1.8s;}
.js__textPop.txt4 span:nth-child(8) {animation-delay: 1.85s;}
.js__textPop.txt4 span:nth-child(9) {animation-delay: 1.9s;}
.js__textPop.txt4 span:nth-child(10) {animation-delay: 1.95s;}
/* 目的地へ向かう。 */
.js__textPop.txt5 span:nth-child(1) {animation-delay: 2.2s;}
.js__textPop.txt5 span:nth-child(2) {animation-delay: 2.25s;}
.js__textPop.txt5 span:nth-child(3) {animation-delay: 2.3s;}
.js__textPop.txt5 span:nth-child(4) {animation-delay: 2.35s;}
.js__textPop.txt5 span:nth-child(5) {animation-delay: 2.4s;}
.js__textPop.txt5 span:nth-child(6) {animation-delay: 2.45s;}
.js__textPop.txt5 span:nth-child(7) {animation-delay: 2.5s;}
.js__textPop.txt5 span:nth-child(8) {animation-delay: 2.55s;}
.js__textPop.txt5 span:nth-child(9) {animation-delay: 2.6s;}
.js__textPop.txt5 span:nth-child(10) {animation-delay: 2.65s;}


/*------------------ delay用クラス ------------------*/

.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__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 24px;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}
.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%);}

/*--------------- 注意事項（.acc__block01） ---------------*/
.acc__block01 .acc__body {
	margin-top: 8px;
	color: var(--text-color);
}
.acc__block01 .acc__btn {
	width: fit-content;
	margin: 0 auto;
	background-color: var(--btn-base-color);
	border-radius: 20px;
}
/*--------------- 幅広ボタン（.acc__block02） ---------------*/
.acc__block02 .acc__btn {
	background-color: var(--btn-base-color);
}
.acc__block02 .acc__btn_plus {
	position: absolute;
	right: 8px;
}

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


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
.voice-btn__block {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
a.voice-btn{display: block;
	max-width: 320px;
	margin: 0 auto;
	}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__pc{
		background: url(../img/bg_VT.jpg) center top / cover no-repeat;
        border: 3px solid #cfad1e;
		padding: 16px;
        border-radius: 16px;
	}
	.voice-btn__flex{
		display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
	}
	.voice-btn__txt01{
		font-weight: bold;
		font-size: 16px;
		margin-bottom: 8px;
		color: #FFF;
	}
	.voice-btn__txt02 {
		font-size: 13px;
		color: #FFF;

	}
	.voice-btn__img {
		background-color: #fff;
		width: 100px;
		height: 100px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
}



/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
h1 {
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
	z-index: 2;
}
.mv__block {
	background:  linear-gradient(to bottom, #efd9b8, #efd9b81f 40%,#efd9b81f 60%, #efd9b8),url(../img/bg.webp) center top / 100% repeat-y;
	position: relative;
}
.mv__block::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	/* background: url(../img/bg.webp) center top / 100% repeat-y; */
	mix-blend-mode: multiply;
	z-index: 1;
}
h1 {
	clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
	transition: all .8s;
}
h1.is-inview {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
background
------------------------------------------------------------ */
.bg__intro {
	background: var(--grad-color);
}
.bg__contents {
	background:url(../img/bg.webp) center top / 100% repeat-y;
	padding: 24px 0;
	position: relative;
}
.bg__contents::before, .bg__contents::after {
	content: "";
	height: 17px;
    width: 58%;
    left: 21%;
	position: absolute;
}
.bg__contents::before {
	background-color: #262E44;
	top: -1px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 16px 100%);
}
.bg__contents::after {
	bottom: -1px;
	clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
	background-color: var(--primary-color);
}
.bg__goods {
	background: var(--grad-color);
	padding: 32px 0 0;
}
.bg__info {
	background: url(../img/bg_info.png) center top / 72px repeat #C6C3AF; 
	padding: 40px 0;
	position: relative;
}
.bg__info::before, .bg__info::after {
	content: "";
	height: 16px;
	width: 50%;
	left: 25%;
	position: absolute;
}
.bg__info::before {
	top: -1px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 16px 100%);
	background-color: #262E44;
}
.bg__info::after {
	bottom: -1px;
	clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
	background-color: #FFF;
}
/* PC用設定 */
@media screen and (min-width:751px) {
.bg__info {
	padding: 56px 0;
}
}
/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */

.intro__wrap {
	padding: 40px 0 48px;
}
.intro__lead__flex {
	display: flex;
	gap: 0 .5em;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.intro__lead {
	color: #FFF;
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__lead {
		font-size: 20px;
	}
	.intro__lead__flex2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
	padding-bottom: 32px;
}
.menu__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.menu__head p {
	color: #FFF;
	text-align: center;
	font-family: "Goblin One";
	font-weight: 400;
	line-height: 1.2;
}
.menu__head::before, .menu__head::after {
	content: "";
	width: 27px;
	height: 13px;
}
.menu__head::before {
	background: url(../img/deco_menu_l.svg) center / contain no-repeat;
}
.menu__head::after {
	background: url(../img/deco_menu_r.svg) center / contain no-repeat;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	max-width: 400px;
	margin: 10px auto 0;
}
.menu__list li{
	width: 80.87%;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__wrap {
	padding-bottom: 48px;
}
	.menu__list{
		gap: 20px;
		max-width: 600px;
		margin: 24px auto 0;
	}
	.menu__list li{
		width: calc( ( 100% - 20px ) / 2 );
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
step　※使わないなら消す
------------------------------------------------------------ */
.step__wrap {
	padding: 22px;
	background-color: #FFF;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: 500px;
}
.step__wrap::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	bottom: 6px;
	right: 6px;
	z-index: -1;
	border: 1px solid var(--secondary-color);
	background: 
		url(../img/deco_step_tl.svg) 1px 1px / 40px no-repeat,
		url(../img/deco_step_tr.svg) calc(100% - 1px) 1px / 40px no-repeat,
		url(../img/deco_step_bl.svg) 1px calc(100% - 1px) / 40px no-repeat,
		url(../img/deco_step_br.svg) calc(100% - 1px) calc(100% - 1px) / 40px no-repeat;
}
.step__head {
	color: var(--secondary-color, #A28551);
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 16px;
font-weight: 700;
line-height: 1.3;
}
.step__body {
	display: flex;
    flex-direction: column;
    width: fit-content;
    align-items: flex-start;
    margin: 10px auto 0;
    gap: 16px;
}
.step__list {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	align-self: stretch;
}
/* .step__list + .step__list {
	border-top: 1px solid var(--border-color);
	padding-top: 8px;
} */
.step__list dt {
	background-color: var(--secondary-color);
	color: #FFF;
	font-family: var(--font-serif);
	font-weight: bold;
	line-height: 1;
	border-radius: 2px;
	width: 60px;
	padding: 4px 0;
	text-align: center;
	font-size: 14px;
	align-self: flex-start;
}
.step__list dd {
	width: calc(100% - 60px - 8px);
}
.step__text01 {
	font-weight: 500;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.step__wrap {
	padding: 24px 32px 32px;
	}
}


/* ------------------------------------------------------------
section
------------------------------------------------------------ */
.sec__wrap {
	padding: 32px 0;
	overflow-x: clip;
}
.sec__top {
	position: relative;
	max-width: 420px;
	margin: 0 auto;
}
.sec__date {
	width: 66.5%;
	margin: 8px auto 0;
}
.sec__sd_l, .sec__sd_r {
	position: absolute;
	bottom: -30px;
}
.sec__sd_l {
	left: -15px;
}
.sec__sd_r {
	right: -15px;
}
.sd01 {
	width: 20.87%;
}
.sd02 {
	width: 22.19%;
}
.sd03 {
	width: 20.87%;
	left: -10px;
	bottom: -34px;
}
.sd04 {
	width: 23.19%;
    right: -24px;
    bottom: -36px;
}
.sd05 {
	width: 19.3%;
	left: -12px;
	bottom: -37px;
}
.sd06 {
	width: 19.13%;
    right: -8px;
    bottom: -32px;
}
.sec__lead {
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
}
.sec__lead .fz-s {
	font-size: 0.875em;
}
.sec__lead .fz-ss {
	font-size: 0.75em;
}
.note__box {
	background: var(--bg-white-color, rgba(255, 255, 255, 0.60));
	padding: 10px;
}
.sec__top .sec__sd_l {
	opacity: 0;
	transform: translateX(-30px);
	transition: all .3s ease .6s;
}
.sec__top .sec__sd_r {
	opacity: 0;
	transform: translateX(30px);
	transition: all .3s ease .6s;
}
.sec__top.is-inview .sec__sd_l, .sec__top.is-inview .sec__sd_r {
	opacity: 1;
	transform: translate(0);
}
.sec__head {
	clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100% );
}
.sec__top.is-inview .sec__head {
	animation-name: iris;
	animation-duration: .8s;
	animation-fill-mode: forwards;
	animation-delay: 0s;
}
.sec__date {
	clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100% );
}
.sec__top.is-inview .sec__date {
	animation-name: iris;
	animation-duration: .8s;
	animation-fill-mode: forwards;
	animation-delay: .2s;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__wrap {
	padding: 48px 0;
}
	.sec__lead {
		font-size: 18px;
	}
}

/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
.talk__wrap {
	background: var(--grad02-color);
	padding: 20px 16px 28px;
}
.talk__lead {
	background-color: #FFF;
	padding: 2px 0;
	color: var(--primary-color);
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
}
.talk__section {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	justify-content: center;
}
.talk__section li {
	position: relative;
	max-width: 215px;
	width: 100%;
}
.talk__section li::before, .talk__section li::after, .talk__section dl::before, .talk__section dl::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-style: solid;
	border-color: #FFF;
}
.talk__section li::before {
	border-width: 2px 0 0 2px;
	top: 0;
	left: 0;
}
.talk__section li::after {
	border-width: 2px 2px 0 0;
	top: 0;
	right: 0;
}
.talk__section dl::before {
	border-width: 0 2px 2px 0;
	bottom: 0;
	right: 0;
}
.talk__section dl::after {
	border-width: 0 0 2px 2px;
	bottom: 0;
	left: 0;
}
.talk__section dl {
	padding: 12px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
	
}
.talk__section li {
	clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50% );
}
.talk__section.is-inview li {
	animation-name: iris;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.talk__section.is-inview li:nth-child(2) {
	animation-delay: .4s;
}

.talk__section dt {
	background-color: #FFF;
	border-radius: 2px;
	padding: 0 16px;
	color: var(--primary-color);
	color: var(--primary-color, #1A3275);
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.15em;
}
.talk__section dd {
	color: #FFF;
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}
.talk__cast {
	background-color: #FFF;
	position: relative;
	padding: 8px 12px 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 350px;
	margin: 32px auto 0;
}
.talk__cast::before, .talk__cast::after {
	position: absolute;
	content: "";
	width: 52%;
	height: 13px;
	background-color: #fff;
}
.talk__cast::before {
	top: -12px;
	left: 0;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
}
.talk__cast::after {
	bottom: -12px;
	right: 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%);
}
.talk__cast li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-self: stretch;
}

.cast__cv {
	color: var(--primary-color, #1A3275);
	text-align: center;
	font-family: "Noto Serif JP";
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
}
.cast__character {
	color: #FFF;
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.05em;
	background-color: var(--primary-color);
	border-radius: 2px;
	padding: 2px 0;
	max-width: 205px;
	width: 100%;
}
.cast__img {
	width: 80px;
	border-radius: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	background-color: #FFF;
}
.cast__img::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	bottom: -1px;
	right: -1px;
	border: 4px solid var(--primary-color);
	border-radius: 100%;

}
.talk__cast li:nth-child(odd) .cast__img {
	left: 0;
}
.talk__cast li:nth-child(even) .cast__img {
	right: 0;
}
.talk__cast li {
	opacity: 0;
	transition: all .4s;
}
.talk__cast li:nth-child(1) {transition-delay: 0s;}
.talk__cast li:nth-child(2) {transition-delay: .2s;}
.talk__cast li:nth-child(3) {transition-delay: .4s;}
.talk__cast li:nth-child(4) {transition-delay: .6s;}
.talk__cast li:nth-child(5) {transition-delay: .8s;}
.talk__cast li:nth-child(6) {transition-delay: 1s;}
.talk__cast li:nth-child(odd) {
	transform: translateX(-30px);
}
.talk__cast li:nth-child(even) {
	transform: translateX(30px);
}
.talk__cast.is-inview li {
	opacity: 1;
	transform: translate(0);
}



/* PC用設定 */
@media screen and (min-width:751px) {
	.talk__wrap {
		padding: 24px 40px 32px;
	}
	.talk__lead {
		font-size: 17px;
	}
	.talk__section {
		flex-direction: row;
	}
	.talk__cast {
		padding: 16px 12px 32px;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-evenly;
		max-width: none;
		gap: 40px 16px;
	}
	.talk__cast li:nth-child(even) .cast__img {
	right: auto;
	left: 0;
	}

	.talk__cast li {
		width: calc(50% - 8px);
		max-width: 280px;
	}
	.cast__img {
	width: 100px;
	}
	.cast__cv {
		max-width: 205px;
		width: 100%;
		align-self: flex-end;
	}
	.cast__character {
		align-self: flex-end;
	}


}

/* ------------------------------------------------------------
#novelty
------------------------------------------------------------ */
.novelty__wrap {
	max-width: 500px;
	margin: 0 auto;
}
.place__wrap {
	padding: 22px 30px;
	background-color: #FFF;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: 500px;
}
.place__wrap::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	bottom: 6px;
	right: 6px;
	z-index: -1;
	border: 1px solid var(--primary-color);
	background: 
		url(../img/deco_place_tl.svg) 3px 3px / 40px no-repeat,
		url(../img/deco_place_tr.svg) calc(100% - 3px) 3px / 40px no-repeat,
		url(../img/deco_place_bl.svg) 3px calc(100% - 3px) / 40px no-repeat,
		url(../img/deco_place_br.svg) calc(100% - 3px) calc(100% - 3px) / 40px no-repeat #FFF;
}
.place__wrap dl {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-direction: column;
}
.place__wrap dl>div {
	align-self: stretch;
}
.place__wrap dt {
	color: #FFF;
	text-align: center;
	font-family: "Noto Serif JP";
	font-weight: 700;
	padding-bottom: 1px;
	background-color: var(--primary-color);
}
.place__wrap dd {
	margin-top: 4px;
}
.place__inner__flex {
	display: flex;
}
.place__inner__dt {
	width: 5em;
	font-size: 12px;
}
.place__inner__dd {
	width: calc(100% - 5em);
	font-size: 12px;
}
.place__head {
	background: rgba(26, 50, 117, 0.10);
	color: var(--text-color, #000);
	text-align: center;
	font-weight: 500;
}
.place__text01 {
	text-align: center;
	font-weight: 500;
}
.place__text02 {
	font-size: 12px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.place__wrap {
	padding: 32px 40px;
	}
}

/* ------------------------------------------------------------
#wallpaper
------------------------------------------------------------ */

/* ------------------------------------------------------------
wp_main_splide
wp_sub_splide
------------------------------------------------------------ */
.wp_main_splide .splide__item {
	max-width: 500px;
	margin: 0 auto;
}
.wp_main_splide .wp__place {
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	margin-top: 8px;
}
.wp_main_splide .wp__character {
	color: var(--primary-color);
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
}
.wp_main_splide .splide__item img {
	width: 35.65%;
	margin: 0 auto;
	box-shadow: 0 8px 8px -5px rgba(0, 0, 0, 0.25);
}
.wp_sub_splide {
	margin: 16px auto 0;
	max-width: 500px;
}
.wp_sub_splide .splide__arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.wp_sub_splide .splide__arrow {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: all .3s;
	width: 25px;
}
.wp_sub_splide .splide__track {
	width: calc(100% - 70px);
}
.wp_sub_splide .splide__slide {
	position: relative;
}
.wp_sub_splide .splide__slide::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.35);
	transition: all .3s;
	cursor: pointer;
}
.wp_sub_splide .splide__slide:hover::after {
	background-color: rgba(0, 0, 0, 0.15);
}
.wp_sub_splide .splide__slide.is-active::after {
	background-color: transparent;
	border: 2px solid var(--accent-color);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.wp_main_splide .wp__place {
	font-size: 14px;
}
.wp_main_splide .wp__character {
	font-size: 14px;
}

}

/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
.goods__box {
	background-color: #FFF;
	padding: 24px 14px;
}
#goods .place__wrap {
	background-color: #1A327533;
}
.goods__wrap {
	max-width: 500px;
	margin: 0 auto;
}

/* モーダル */
.modal__wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1000;
}
.modal__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 0;
}
.modal_flex {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 1;
	flex-direction: column;
	gap: 16px;
}
.modal_container {
	pointer-events: initial;
	max-width: 1024px;
	width: calc(100% - 20px);
	padding: 40px 24px 16px;
}
.modal_close_btn {
	width: fit-content;
	margin: 16px auto 0;
	padding: 28px 2px 2px;
	color: #fff;
	position: relative;
	cursor: pointer;
}
.modal_close_btn::before,
.modal_close_btn::after {
	content: "";
	background-color: #fff;
	width: 2px;
	height: 30px;
	position: absolute;
	top: 14px;
	right: 50%;
}
.modal_close_btn::before {
	transform: translateY(-50%) rotate(-45deg);
}
.modal_close_btn::after {
	transform: translateY(-50%) rotate(45deg);
}
.modal-btn__img {
	position: relative;
}
.modal-btn__img:hover {
	cursor: pointer;
}
.modal-btn__img::after {
	position: absolute;
	content: "";
	display: block;
	background: url(../img/icon_zoom.png) no-repeat center / cover;
	bottom: 5px;
	right: 5px;
	width: 32px;
	height: 32px;
	filter: drop-shadow(0 0 3px rgba(0,0,0,0.2));
}
body.fixed {
	position: fixed;
	width: 100%;
	left: 0;
	overflow-y: scroll;
}

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

/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
.info__btn {
	border-radius: 30px;
	background: var(--accent-color, #B43939);
	position: relative;
	z-index: 1;
	border-radius: 50px;
	padding: 8px 59px;
	border-radius: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
	transition: all .3s;
}
.info__btn::before {
	content: "";
	z-index: 2;
	border: 1px solid #FFF;
	border-radius: 50px;
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
}
.info_btn__text01 {
	color: #FFF;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}
.info_btn__text02 {
	color: #FFF;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 4px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.info__btn:hover {
		transform: scale(1.05);
	}
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* 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: 0 auto;
    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;
	font-size: 24px;
}
.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;
	font-size: 20px;
}
	/* .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 */
.mgt16 {margin-top: 16px;}

.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;}
}
