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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--sub-text-color:#30558A;
	--text-link: #2689FD;
	--primary-color: #4B81BB;
	--accent-color: #F1425F;
	--red-color: #FF4A4A;
	--bg-color: #CEE8FA;
	--bg02-color: rgb(0 0 0 / 0.8);
	--border-color: #aaaaaa;
	--grad-color:linear-gradient(90deg,#42B5D8 0%,#3C6DB9 100% );
	--grad-color-r:linear-gradient(-90deg,#42B5D8 0%,#3C6DB9 100% );
	--grad02-color:linear-gradient(90deg,#F69199 0%,#F76C83 100% );
	--grad03-color:linear-gradient(90deg,#D54077 0%,#F677AD 100% );
	--grad03-color-r:linear-gradient(-90deg,#D54077 0%,#F677AD 100% );
	--grad04-color:linear-gradient(90deg,#FDBF14 0%,#E87F0E 100% );
;
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #30558A; /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */
	--font-cardo: "Cardo", serif;
}
/* 背景固定 */
/* 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;}

.bg {
	position: relative;
	z-index: 1;
}
.bg::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/bg.png) center top / 100vw repeat;
	mix-blend-mode: screen;
	z-index: -1;
}
.bg1 {background-color: var(--bg-color);}
.bg2 {background-color: #41A5F8;}
.bg3 {background-color: #FAF6B1;}
img{
	display: block;
	width: 100%;
	height: auto;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 680px;
}
.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;}

.fw-500 {font-weight: 500;}
.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;}

.bg::before {
	background: url(../img/bg.png) center top / 50% repeat;
}

}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.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);
}


/* 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__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%);
	}
}

.is-transition-delayed01{transition-delay: .4s;}
.is-transition-delayed02 {transition-delay: .6s;}
.is-transition-delayed03 {transition-delay: .8s;}
.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__block02 .acc__btn {
	background: var(--grad-color);
	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__block02 .acc__btn_plus {
	position: absolute;
	right: 12px;
	top: calc(50% - 8px);
}
.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) {
}


/* モーダル */
.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;
	pointer-events: none;

}
.modal_container img {
	max-height: calc(100vh - 80px);
    width: auto;
    margin: 0 auto;
	pointer-events: initial;
}

.modal_close_btn {
	width: fit-content;
	margin: 16px auto 0;
	padding: 28px 2px 2px;
	color: #fff;
	position: relative;
	cursor: pointer;
	pointer-events: initial;

}
.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-modal.png) no-repeat center / cover;
	bottom: 0;
	right: 0;
	width: 40px;
	height: 40px;
	filter: drop-shadow(0 0 3px rgba(0,0,0,0.2));
}
body.fixed {
	position: fixed;
	width: 100%;
	left: 0;
	overflow-y: scroll;
}
/* ------------------------------------------------------------
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: url(../img/head_bg1_1.png) -20px -20px / 140px no-repeat, var(--grad-color);
		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: 16px;
		margin-bottom: 8px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 100px;
		height: 100px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
}

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

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__date__wrap {
	background: var(--grad-color);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 10px 0;
	gap: 8px;
	margin-top: 8px;
}
.mv__date__wrap::before {
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	position: absolute;
	content: "";
	top: 4px;
	bottom: 4px;
	width: 100%;
	left: 0;
	pointer-events: none;
}
.mv__date {
	font-family: var(--font-cardo);
	color: #FFF;
	font-weight: 700;
	font-size: 23px;
	line-height: 1;
}
.mv__date span {
	font-size: 12px;
	padding-left: 0.5em;
}
.mv__date__arrow {
	width: 0;
	height: 0;
	border-left: 8px solid #FFF;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	h1 img {
		max-width: 600px;
		margin: 0 auto;
	}
}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap {
	padding: 20px 0;
}
.intro__text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}
.intro__text01 {
	font-size: 18px;
	color: var(--accent-color);
	font-weight: 700;
}
.intro__text02 {
	color: var(--accent-color);
	font-weight: 700;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

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

.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.menu__list li{
	width: calc( ( 100% - 12px ) / 2 );
}
.menu__list li{
	opacity: 0;
	transform: translateY(5px);
	transition: all .5s;
}
.menu__list li:nth-child(1){transition-delay: 0s;}
.menu__list li:nth-child(2){transition-delay: .2s;}
.menu__list li:nth-child(3){transition-delay: .4s;}
.menu__list.is-inview li {
	opacity: 1;
	transform: translateY(0);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__list{gap: 12px;}
	.menu__list li{
		width: calc( ( 100% - 24px ) / 3 );
		max-width: 180px;
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
step
------------------------------------------------------------ */
.step__wrap {
	padding: 16px;
	border: 2px solid var(--primary-color);
	background-color: #FFF;
}
.step__head {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 17px;
	line-height: 1;
	padding: 8px 10px;
}
.step__head::before,
.step__head::after {
	width: 12px;
	height: 12px;
	content: "";
	background: url(../img/deco_star.svg) center / contain no-repeat;
}
.step__list {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	justify-content: center;
	margin-top: 24px;
}
.step__list + .step__list {
	margin-top: 16px;
}
.step__list dt {
	background: var(--grad-color);
	color: #FFF;
	font-weight: 600;
	line-height: 1;
	width: 64px;
	border-radius: 40px;
	padding: 5px 0;
	text-align: center;
	font-size: 15px;
}
.step__list dd {
	width: calc(100% - 64px - 8px);
}
.step__text01 {
	font-size: 15px;
	
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.step__wrap {
	padding: 16px 80px 32px;
}
}

/* ------------------------------------------------------------
basic
------------------------------------------------------------ */
.sec__top {
	position: relative;
	max-width: 500px;
    margin: 0 auto;
}
.character {
	position: absolute;
	transition-delay: .2s;
}

.chara01 {
	position: relative;
	bottom: 0;
    left: -15px;
    width: 147px;
}
.chara02 {
	top: -53px;
    left: calc(50% + 86px);
    width: 76px;
    z-index: 3;
}
.chara04 {
	top: -90px;
    right: -10px;
    width: 91px;
}
.sec__wrap {
	padding: 50px 0;
	background-position: -5% 14px,105% 108px;
	background-size: 32vw, 32vw;
	background-repeat: no-repeat;
}
.sec__line {
	max-width: 400px;
	position: relative;
	z-index: 1;
	margin: 0 auto 4px;
}
.sec__head {
	position: relative;
	z-index: 5;
	max-width: 400px;
	margin: 0 auto;
}
.sec__line + .sec__head {
	animation-delay: .2s;
}
.clb__container .sec__head img {
	width: 84.05%;
	margin: 0 auto;
}
.sec__date__wrap {
	background: var(--grad-color);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 5px 20px;
	gap: 8px;
	border-radius: 40px;
	width: fit-content;
	margin: 10px auto 0;
	border: 1px solid #FFF;
}
.sec__date {
	font-family: var(--font-cardo);
	color: #FFF;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
}
.sec__date span {
	font-size: 12px;
	padding-left: 0.5em;
}
.sec__date__arrow {
	width: 0;
	height: 0;
	border-left: 7px solid #FFF;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.sec__lead {
	font-weight: 500;
	text-align: center;
	margin-top: 16px;
}
.box01 {
	position: relative;
}
.box01__head {
	background-color: var(--primary-color);
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	padding: 8px 0;
	text-align: center;
	position: relative;
}
.box01__head::before,
.box01__head::after {
	position: absolute;
	top: 3px;
	bottom: 3px;
	aspect-ratio: 1 / 1;
	content: "";
}
.box01__head::before {
	left: 3px;
	background: linear-gradient(135deg, #FFF, #FFF 25%, transparent 50%);
}
.box01__head::after {
	right: 3px;
	background: linear-gradient(315deg, #FFF, #FFF 25%, transparent 50%);
}
.box01__body {
	border-right: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
	border-left: 2px solid var(--primary-color);
	background-color: #FFF;
	padding: 8px 14px 32px;
}
.box01__body.bg_grid {
	background: url(../img/bg_grid1.png) center top / 40px repeat #FFF;
}
.box01__body.bd4 {
	border: 2px solid var(--primary-color);
	padding-top: 20px;
}
.box01__inner {
	padding: 12px;
}
.box01__head02 {
    padding: 0px 14px 4px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: fit-content;
}
.box01__head02::before {
	content: "";
    position: absolute;
    bottom: 0;
    left: 1%;
    width: 93%;
    transform: skewX(-20deg);
    height: 50%;
    background-color: var(--bg-color);
    z-index: -1;
}
.box01__head02 p {
	font-size: 18px;
	font-weight: 700;
	line-height: 21px;
}
.box01__head02 .box01__head02__text01 {
	font-size: 22px;
	color: var(--accent-color);
}
.box01__head02 .box01__head02__text02 {
	font-size: 18px;
	color: var(--accent-color);
}
.box01__border {
	height: 5px;
	width: 100%;
	background: url(../img/line_dot.svg) left center / 7px repeat-x;
}
.box01__head03 {
	border-radius: 40px;
	padding: 4px 12px;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: #FFF;
	background: var(--grad03-color);
	width: fit-content;
	margin: 0 auto;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__wrap {
		background-position: calc(50% - 200px) 14px, calc(50% + 200px) 108px;
		background-size: 140px, 140px;
		padding-bottom: 80px;
	}
	.box01__body {
	padding: 32px 80px;
}
.chara01 {
	position: absolute;
	left: 20px;
}
.chara02 {
	top: -48px;
	left: calc(50% + 108px);
}
}

/* ------------------------------------------------------------
#ex_contents
------------------------------------------------------------ */

#ex_contents.sec__wrap {
	background-image: url(../img/head_bg1_1.png),url(../img/head_bg1_2.png);
}
#ex_contents .sec__lead {
	height: 130px;
    position: relative;
    display: flex;
    align-items: center;
	flex-direction: row-reverse;
	justify-content: center;
}
#ex_contents .sec__lead__text {
	text-align: left;
}
#ex_contents .box01__head {
	padding: 3px 0;
	font-size: 15px;
}
.box02 {
	background: url(../img/bg_grid1.png) center top / 40px repeat;
	border: 1px solid var(--primary-color);
	padding: 34px 8px 24px 8px;
	position: relative;
	max-width: 400px;
	margin: 0 auto;
}
.box02__head {
	border-radius: 50px;
	background: var(--grad-color);
	width: fit-content;
	margin: -48px auto 16px;
	padding: 4px 12px;
	color: #FFF;
	font-weight: 700;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border: 1px solid #FFF;
}
.box02__date__text {
	font-size: 16px;
}
.box02__date {
	color: #FFF;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
}
.box02__date span {
	font-size: 12px;
	padding-left: 0.5em;
}
.box02__date__arrow {
	width: 0;
	height: 0;
	border-left: 7px solid #FFF;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.box02__head02 {
    padding: 0px 14px 4px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: fit-content;
}
.box02__head02::before {
	content: "";
    position: absolute;
    bottom: 0;
    left: 1%;
    width: 93%;
    transform: skewX(-20deg);
    height: 50%;
    background-color: var(--bg-color);
    z-index: -1;
}
.box02__head02 p {
	font-size: 16px;
	font-weight: 700;
	line-height: 21px;
}
.box02__head02 span {
	font-size: 20px;
	color: var(--accent-color);
}
.box02__flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 20px 16px 0;
}
.box02__cast__box {
	max-width: 104px;
}
.box02__cast__img {
	display: block;
	border-radius: 100%;
}
.box02__cast__character {
	margin-top: 4px;
	text-align: center;
}
.box02__cast__cv {
	text-align: center;
	font-size: 12px;
}
.box02__cross {
	width: 16px;
	height: 16px;
	position: relative;
}
.box02__cross::before,
.box02__cross::after {
	content: "";
	position: absolute;
	background-color: var(--sub-text-color);
	width: 16px;
	height: 2px;
	top: 50%;
	left: 50%;
}
.box02__cross::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.box02__cross::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.box02 .img__wrap {
	padding: 0 10px;
}
.box02__text01 {
	font-weight: 700;
	color: var(--primary-color);
	text-align: center;
}
.box02__text02 {
	font-weight: 500;
	text-align: center;
	margin-top: 4px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#ex_contents .sec__lead {
	padding-bottom: 32px;
	height: auto;
    align-items: center;
	justify-content: center;
}
#ex_contents .sec__lead__text {
	text-align: center;
}
.box02 {
	padding: 34px 32px 24px;
	max-width: none;
}

}

/* ------------------------------------------------------------
#ex_rewards
------------------------------------------------------------ */
#ex_rewards.sec__wrap {
	background-image: url(../img/head_bg1_1.png),url(../img/head_bg1_2.png);
}
.box03__head {
	display: flex;
	gap: 13px;
	background-color: var(--primary-color);
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-weight: 700;
	padding: 4px 0;
}
.box03__head::before,
.box03__head::after {
	content: "";
	width: 28px;
	height: 11px;
}
.box03__head::before {
	background: url(../img/deco_arrow_r.svg) center / contain no-repeat;
}
.box03__head::after {
	background: url(../img/deco_arrow_l.svg) center / contain no-repeat;
}
.box03__body {
	background-color: var(--bg-color);
	padding: 8px 10px;
}
.box03__text01 {
	font-weight: 500;
}
.box03__text02 {
	font-size: 10px;
	margin-top: 4px;
}
.img__wrap {
	margin: 0 auto;
	max-width: 480px;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.box03__body {
		text-align: center;
		padding: 8px 10px 16px;
}

}


/* ------------------------------------------------------------
#print
------------------------------------------------------------ */
#print.sec__wrap {
	padding-top: 8px;
}
.print__price {
	font-weight: 500;
	color: var(--sub-text-color);
	padding: 4px 12px;
	border: 1px solid var(--sub-text-color);
	background-color: #FFF;
	width: fit-content;
	margin: 0 auto;
}
.box01__head03.second {
	background: var(--grad03-color-r);
}
.box04__head {
	font-weight: 700;
	font-size: 16px;
	line-height: 21px;
	border-left: 4px solid #D54077;
	padding: 0 0 0 12px;
}

.printing__head {
	background-color: var(--primary-color);
	color: #FFF;
	text-align: center;
	font-weight: 700;
	padding: 4px 0;
}
.printing__body {
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	align-self: stretch;
	gap: 12px;
}
.printing__list {
	margin-top: 16px;
	gap: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.printing__box {
	border: 1px solid var(--primary-color);
	background-color: #FFF;
	width: 100%;
	position: relative;
}
.printing__box + .printing__box::before {
	content: "";
	position: absolute;
	top: -28px;
	height: 0;
	width: 0;
	border-top: 16px solid #F1425F;
	border-left: 32px solid transparent;
	border-right: 32px solid transparent;
	left: calc(50% - 32px);
}
.printing__step {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
}

.printing__text {
	font-weight: 700;
	text-align: center;
}
.printing__number {
	border: 1px solid var(--text-color, #333);
	padding: 8px 20px;
	margin: 0 auto;
	text-align: center;
	line-height: 1;
	width: fit-content;
}
.printing__img {
	width: 90%;
}
.printing__img.step6 {
	width: 92px;
}
.acc__close {
	display: flex;
	padding: 3px 12px;
	border: 1px solid var(--text-color, #333);
	gap: 6px;
	max-width: fit-content;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-top: 16px;
	background-color: #FFF;
}
.acc__close__cross {
	display: block;
	width: 10px;
	height: 10px;
	position: relative;
}
.acc__close__cross::before,
.acc__close__cross::after {
	content: "";
    background-color: var(--text-color);
    height: 1px;
    width: 12px;
    display: block;
    top: 50%;
    position: absolute;
}
.acc__close__cross::before {
	transform: rotate(45deg);
}
.acc__close__cross::after {
	transform: rotate(135deg);
}
.text__btn {
	display: block;
	border-radius: 49px;
	width: 100%;
	max-width: 290px;
	border: 2px solid #FFF;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	padding: 16px 13px 17px 0;
	margin: 16px auto 0;
	position: relative;
}
.text__btn.bl {
	background: var(--grad-color);
}
.text__btn.or {
	background: var(--grad04-color);
	border: 2px solid #E87F0E;
}
.text__btn.pk {
	background: var(--grad03-color-r);
	border: 2px solid #D54077;
}
.text__btn::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 9px solid #FFF;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	position: absolute;
	right: 20px;
	top: calc(50% - 7px);
}
.box05 {
	border: 2px solid var(--primary-color);
	background-color: #FFF;
	padding: 14px;
	gap: 3px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	margin-top: 10px;
}
.box05__contact {
	font-size: 12px;
}
.box05__contact a {
	color: var(--text-link);
	text-decoration: underline;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.printing__body {
	padding: 16px 64px;
}
.text__btn {
	margin-top: 24px;
	transition: all .5s;
}
.text__btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
}

/* ------------------------------------------------------------
#collaboration
------------------------------------------------------------ */
#collaboration.sec__wrap {
	background-image: url(../img/head_bg2_1.png),url(../img/head_bg2_2.png);
}
.clb__container + .clb__container {
	margin-top: 32px;
}
.box06 {
	border: 2px solid #FAAF2D;
	background: url(../img/bg_grid2.png) center top / 40px repeat #FFF;
}
.box06__head {
	padding: 14px 0;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	background-color: #FAAF2D;
	color: #FFF;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
}
.box06__head::before,
.box06__head::after {
	width: 12px;
	height: 12px;
	content: "";
	background: url(../img/deco_star2.svg) center / contain no-repeat;
}
.box06__body {
	padding: 24px 14px 32px;
}
.box06 dl + dl {
	margin-top: 24px;
}
.box06 dt {
	background: var(--grad04-color);
	padding: 3px 12px;
	border-radius: 20px;
	font-weight: 700;
	width: fit-content;
	color: #FFF;
}
.box06 dd {
	margin-top: 8px;
}
.box06__text01 {
	margin-top: 8px;
	font-weight: 500;
}
.box06__text02 {
	padding-left: 1em;
}
.img__goods {
	border: 2px solid #FAAF2D;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.clb__container + .clb__container {
	margin-top: 80px;
}

	.box06__body {
		padding: 24px 80px 32px;
	}
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
.banner__wrap {
	padding: 24px 0 0;
}
.banner__btn {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 345px;
}

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

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


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

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


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





/* ------------------------------------------------------------
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: 18px;
}
	/* .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 */

.mgt16 {margin-top: 16px;}

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