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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #FFFFFF;
	--text-link: #FF77EB;
	--main-color: #1E1D6E;
	--accent-color: #E321C6;
	--red-color: #EE0000;
	--bg-color: #1E1D6E;
	--bg02-color: rgb(0 0 0 / 0.8);
	--border-color: #aaaaaa;
	--grad01-color:linear-gradient(90deg,#B547B3 0%,#0BB5D3 100% );
	--grad02-color:linear-gradient(90deg,#FF7EFD 0%,#45E3FF 100% );
	--gold01-color:linear-gradient(90deg,#E4B34C 0%,#FFE8B7 50%, #E4B34C 100% );
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
}

/* 背景固定 */
/* 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;
	color: var(--text-color);
	line-height: 1.5;
	font-size: 15px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.05em;
}
.main_bg {
	background: url(../img/bg01.jpg) center / 100% auto repeat-y #000 fixed;
	background-position: center top;
}
.info_bg {
	background: url(../img/bg02.jpg) center / 100% auto repeat-y #000 fixed;
	background-position: center top;
}
.main__wrap *{box-sizing: border-box;}
img{
	display: block;
	width: 100%;
	height: auto;
}
figure {
	margin: 0 auto;
	width: 100%;
}
figcaption .caption {
	margin-left: auto;
	margin-right: 0;
	width: fit-content;
	font-size: 12px;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 800px;
	position: relative;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.fc-accent{color: var(--text-link);}
.fc-subtext{color: #B4AFC7;}
.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{font-size: 11px;}
.txt-note.fz-s {font-size: 10px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 5px;
	letter-spacing: 0.03em;
}
.note__list li{
	font-size: 11px;
}

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

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

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

.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 */

.credit{
	font-size: 12px;
	padding-top: 8px;
	text-align: center;
}

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

	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.mgbLL{margin-bottom: 40px;}

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

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

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

	.main_bg {
	background: url(../img/bg01_pc.jpg) center / 50% repeat #000 fixed;
	background-position: center top;

	}
	.info_bg {
		background: url(../img/bg02_pc.jpg) center / 50% repeat #000 fixed;
		background-position: center top;

	}
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.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__slideR{
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	transition: all .8s;
}
.js__slideR.is-inview{
	animation-name: anime_right_to_left;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes anime_right_to_left {
	0% {
			clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 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;}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {
	display: none;
	color: #fff;
	border: 1px solid var(--text-color, #FFF);
	padding: 12px;
	letter-spacing: 0.03em;
}
.acc__block.acc_privacy .acc__body {
	padding: 0;
	border: 0;
	margin-top: 16px;
}
.acc__btn {
	font-weight: bold;
	font-size: 13px;
	width: fit-content;
	margin: 0 auto;
	color: var(--accent-color, #E321C6);
	background-color: #fff;
	position: relative;
	padding: 4px 36px 5px 18px;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__schedule .acc__btn {
	color: #775000;
}
.acc__btn span {
	position: absolute;
	background-color: var(--accent-color);
	height: 16px;
	width: 16px;
	border-radius: 100%;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.acc__schedule .acc__btn span {
	background-color: #775000;
}
.acc__schedule .acc__body {
	background-color: #B57F0F;
	padding: 0 15px 15px;
	border: none;
}
.acc__btn span::before,
.acc__btn span::after {
	content: "";
	background-color: #fff;
	position: absolute;
	width: 12px;
	height: 2px;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__btn span::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open span::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;
	box-shadow: 0 0 20px 0 rgba(254, 230, 52, 0.80);
	border-radius: 100px;
	}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__pc{
		background: var(--gold01-color);
        border: 3px solid #ce9545;
        padding: 16px;
        box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.75);
        border-radius: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #523600;
		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
------------------------------------------------------------ */
.mv_title__wrap {
	position: relative;
	max-width: 480px;
	margin: 0 auto;
	overflow: hidden;
}
.mv_title__bg {
	position: inherit;
	z-index: 0;
	width: 100%;
}
.mv_title {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mv_title h1 {
	width: 90%;
}
.mv_img {
	border: 1px solid #FFF;
}
.mv_img__wrap {
	padding: 15px 15px 0;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__wrap {
		display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
	max-width: 1300px;
	margin: 0 auto; 
	padding-top: 30px;
	}
	.mv_img {
		height: fit-content;
	}
	.mv_img__wrap {
		width: 50%;
		padding: 0;
	}
	.mv_title__wrap {
		max-width: none;
		width: 50%;
		height: fit-content;
	}

}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.sec__text01 {
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__text {
		padding-top: 50px;
	}
	.sec__text01 {
		font-size: 18px;
	}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
	padding-top: 50px;
}
.menu__list{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 20px;
	justify-content: center;
}
.menu__list li{
	width: 85%;
    max-width: 500px;
}
.menu__list li:nth-child(even) {
	align-self: flex-end;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__list{
		gap: 30px;
		flex-direction: row;
		flex-wrap: wrap;
		max-width: 640px;
		margin: 0 auto;
	}
	.menu__list li{
		width: calc(50% - 15px);
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
date__wrap
------------------------------------------------------------ */
.date__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 40px;
	background: var(--grad01-color);
	text-align: center;
	position: relative;
	max-width: 315px;
	width: calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
	gap: 2px;
}
.date__wrap::before,
.date__wrap::after {
	position: absolute;
	content: "";
	height: 0;
	width: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	top: 0;
}
.date__wrap::before {
	border-right: 15px solid #B348B3;
	left: -15px;
}
.date__wrap::after {
	border-left: 15px solid #0BB4D2;
	right: -15px;
}
.date__inner {
	font-size: 16px;
	font-weight: 700;
}
.date__wrap.date__apply {
	height: 58px;
}
.date__wrap.date__apply::before,
.date__wrap.date__apply::after {
	border-top: 29px solid transparent;
	border-bottom: 29px solid transparent;
}
.date__apply_head {
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	line-height: 1;
	padding: 0 0.5em;
	font-size: 12px;
	font-weight: 700;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.date__inner {
	font-size: 17px;
}
}

/* ------------------------------------------------------------
#specialContents
------------------------------------------------------------ */
.head02__wrap {
	position: relative;
	max-width: 480px;
	margin: 0 auto;
}
.head02__bg {
	position: inherit;
	z-index: 0;
}
.head02__wrap h2 {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#specialContents .head02__wrap h2 img {
	width: 65%;
}
#specialContents .container {
	margin-top: -20px;
}
.wallpaper__wrap {
	position: relative;
	width: 61%;
	margin: 0 auto;
}
.wallpaper__img {
	width: 40%;
	transform: rotate(8deg);
	margin: 30px auto;
}
.wallpaper__star {
	position: absolute;
	height: auto;
}
.wallpaper__star.star01 {
	width: 18%;
	top: 0;
	left: 0;
}
.wallpaper__star.star02 {
	width: 22%;
	bottom: 0;
	right: 0;
}


.box01 {
	padding: 16px 15px;
	border: 2px solid #FFF;
	box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.75);
	background: url(../img/bg03.png) 0% 0% / cover repeat;
	max-width: 500px;
    margin: 30px auto 0;
}
.box01__head {
	padding: 4px 0;
	text-align: center;
	background-color: #FFF;
	border-radius: 40px;
	font-weight: 700;
	color: var(--accent-color, #E321C6);
}
.box01__step_box {
	margin-top: 5px;
}
.box01__step_box dl {
	display: flex;
	gap: 15px;
	align-items: center;
	padding-bottom: 10px;
	padding-top: 10px;
}
.box01__step_box dl + dl {
	border-top: 1px solid #EE90DA;
}
.box01__step_wpn {
	width: 50px;
	height: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background: var(--gold01-color);
	color: #523600;
	font-family: Philosopher;
	font-weight: 700;
}
.box01__step_step {
	font-size: 13px;
	letter-spacing: 0.26px;
	line-height: 1;
}
.box01__step_num {
	font-size: 22px;
	letter-spacing: 1.1px;
	line-height: 1;
}
.box01__step_text {
	font-weight: 700;
	width: calc(100% - 65px);
}
.voice-btn__block {
	margin-top: 40px;
}
.box01__text {
	font-weight: bold;
	text-align: center;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#specialContents.sec__wrap {
	padding-top: 32px;
}
	.wallpaper__wrap {
		max-width: 400px;
	}
}

/* ------------------------------------------------------------
#presentCampaign
------------------------------------------------------------ */
#presentCampaign .head02__wrap h2 img {
	width: 90%;
}
#presentCampaign.sec__wrap {
	padding-top: 30px;
}
#presentCampaign .sec__text01 {
	margin-top: -20px;
}
.box02 {
	padding: 35px 15px 20px 15px;
	border: 1px solid #F9D68C;
	margin-top: calc(16px + 24px);
	position: relative;
}
.box02__head_num {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
}
.box02__head_text01 {
	max-width: 300px;
    margin: 0 auto;
}
.box02__head_text02 {
	max-width: 266px;
    margin: 0 auto;
}
.box02__text01 {
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
	margin-top: 20px;
}
.present__wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	max-width: 500px;
}
.present__img {
	width: 57%;
	transform: rotate(-6deg);
	margin: 40px auto 20px;
}
.present__star {
	position: absolute;
	height: auto;
}
.present__star.star01 {
	width: 12%;
    top: -4%;
    left: 4%;
}
.present__star.star02 {
	width: 12%;
    bottom: -8%;
    right: 0;
}
.present__star.star03 {
	width: 12%;
	top: 0;
	left: 0;
	transform: rotate(90deg);
}
.present__wpn {
	position: absolute;
	height: 72px;
	width: 72px;
	background: url(../img/present_wpn.png) center / cover no-repeat;
	top: 2%;
	left: 75%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--bg-color);
	font-weight: 700;
}
.present__wpn_num {
	font-family: Philosopher;
	font-size: 28px;
	line-height: 1;
}

.present__wpn_text {
	font-size: 14px;
	line-height: 1;
}
.present__pic__wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}
.present__pic__box01 {
	display: flex;
	gap: 10px;
	width: 100%;
}
.present__pic__box02 {
	display: flex;
	gap: 10px;
	width: 100%;
}
.present__pic__01 {
	width: calc((100% / 7 * 4) - 5px);
	border: 1px solid #FFF;
}
.present__pic__02 {
	width: calc((100% / 7 * 3) - 5px);
	border: 1px solid #FFF;
}
.acc__schedule {
	max-width: 480px;
	margin: 32px auto 0;
}
.schedule__item {
	padding: 10px 0;
	display: flex;
	gap: 10px;
	align-self: stretch;
	border-bottom: 1px solid #CC9A33;
}
.border_none {
	border: none;
}
.schedule__lb {
	display: flex;
	width: 86px;
	padding: 10px 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2px;
	align-self: stretch;
	border-radius: 2px;
	background: #523700;
}
#information .schedule__lb {
	width: 60px;
}
.schedule__lb__text01 {
	text-align: center;
	font-size: 14px;
	font-weight: 700;
}
.schedule__lb__text02 {
	color: #C4A35F;
	text-align: center;
	font-size: 12px;
}
.schedule__rb {
	flex: 1;
}
.schedule__rb__text01 {
	font-size: 14px;
	font-weight: 700;
}
.schedule__rb__text02 {
	font-size: 12px;
}
.box03 {
	margin-top: 30px;
}
.box03__head {
	border-bottom: 1px solid #F9D68C;
	padding-bottom: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.box03__head::before,
.box03__head::after {
	content: "";
	display: block;
	background: url(../img/star03.svg) center / contain no-repeat;
	width: 30px;
	height: 30px;
}
.box03__head_wpn {
	background-color: #F9D68C;
    border-radius: 2px;
    padding: 3px 6px 5px;
    color: var(--main-color, #1E1D6E);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.box03__head_text01 {
	color: #F9D68C;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}
.button01 {
	background: linear-gradient(90deg, #BC8511 0%, #E0AD40 50%, #BC8511 100%);
	background-position: center;
	background-size: 100%;
	border-radius: 4px;
	display: block;
	padding: 12px 0;
	text-align: center;
	font-size: 16px;
	color: #FFF;
	font-weight: 700;
	position: relative;
	max-width: 315px;
	margin: 30px auto 0;
}
.button01::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	right: 15px;
	transition: all .5s;
}
.button02 {
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	max-width: 250px;
	margin: 40px auto 0;
	transition: all .5s;
	border: 2px solid var(--accent-color, #E321C6);
	background-color: #FFE6F9;
}
.button02 p {
	font-size: 16px;
	color: var(--accent-color, #E321C6);
	font-weight: 700;
	line-height: 1.6;
	width: fit-content;
	position: relative;
}
.button02 p::after {
	position: absolute;
	content: "";
	width: 19px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%);
	right:  -29px;
	background: url(../img/icon_pdf.svg) center / contain no-repeat;

}
/* PC用設定 */
@media screen and (min-width:751px) {
	#presentCampaign.sec__wrap {
		padding-top: 48px;
	}
	.button01 {
		transition: all .5s;
	}
	.button01:hover {
		transform: translateY(-3px);
		background-size: 150%;
	}
	.button01:hover:after {
		transform: translate(3px , -50%) rotate(45deg);
	}
	.box02 {
			margin-top: calc(16px + 32px);
	}
	.box02__head_text01 {
	max-width: 430px;
	}
	.box02__head_text02 {
		max-width: 399px;
	}
	.present__pic__wrap {
		flex-direction: row;
		margin-top: 30px;
	}
	.present__pic__box02 {
		flex-direction: row-reverse;
	}
	.present__pic__box01 {
		flex-direction: row-reverse;
	}
	.present__wpn {
		height: 92px;
		width: 92px;
		top: -10%;
		right: 6%;
	}
	.present__wpn_num {
    font-size: 36px;
	}
	.present__wpn_text {
    font-size: 16px;
	}
	.box03 {
		max-width: 480px;
		margin: 30px auto 0;
	}
	.button02:hover {
		transform: translateY(-3px);
		background-color: #ffb1f3;
	}
}

/* ------------------------------------------------------------
#specialPromotion
------------------------------------------------------------ */
#specialPromotion .head02__wrap h2 img {
	width: 65%;
}
#specialPromotion.sec__wrap {
	padding-top: 30px;
	padding-bottom: 50px;
}
.box04 {
	border: 1px solid;
	border-image: var(--grad01-color) 1;
	padding: 15px 15px 20px;
	margin-top: 30px;
}
.box04__head {
	background: var(--grad01-color, linear-gradient(90deg, #B547B3 0%, #0BB5D3 100%));
	display: flex;
	height: 40px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-weight: 700;
}
.box04__head::before,
.box04__head::after {
	content: "";
	background: url(../img/star04.svg) center / contain no-repeat;
	height: 30px;
	width: 30px;
}
.box04__item {
	padding-top: 15px;
	max-width: 400px;
	margin: 0 auto;
}
.box04__date {
	font-weight: 700;
	text-align: center;
	font-size: 14px;
	background: var(--grad02-color, linear-gradient(90deg, #FF7EFD 0%, #45E3FF 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 0.03em;
}
.box04__place {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.6;
	text-align: center;
	margin-top: 4px;
}
.box04__pic {
	margin-top: 10px;
}
.note_box {
	border: 1px solid #FFF;
	padding: 12px;
}
.note_box_head {
	font-size: 13px;
	font-weight: bold;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#specialPromotion.sec__wrap {
	padding-top: 48px;
	padding-bottom: 64px;
}
.box04__head {
	font-size: 17px;
}
	.box04_splide {
		margin-left: -15px;
	    margin-right: -15px;
	}
	.box04_splide .box04__item {
		opacity: .3;
		transform: scale(.9);
		transition: all .3s;
	}
	.box04_splide .is-active .box04__item {
		opacity: 1;
		transform: scale(1);
	}
}

/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
#information.sec__wrap {
	padding-top: 40px;
	padding-bottom: 60px;
}

.sec__head_info01 {
	width: 192px;
	margin: 0 auto;
}
.info__pic {
	margin: 30px auto 0;
	max-width: 480px;
	border: 1px solid #FFF;
}
.sec__head_info02 {
	width: 192px;
	margin: 30px auto 0;
}
.info__link {
	border-radius: 10px;
	background: var(--gold01-color);
	max-width: 315px;
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
	display: block;
	padding: 2px;
	margin: 10px auto 0;
}

.info__link_inner {
	background: #FFF;
	padding: 10px;
	border-radius: 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.info__link {
		transition: all .5s;
	}
	.info__link:hover {
	transform: scale(1.02);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
}
/* ------------------------------------------------------------
#
------------------------------------------------------------ */
.credit {
	width: 63px;
	padding-bottom: 15px;
	margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}



/* splide */
.splide {
  position: relative;  /* ここで基準にする */
}

.box04-arrows {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
}
.box04-arrow {
	height: 26px;
	width: 26px;
	border: 0;
	transition: all .3s;
	cursor: pointer;
}
.box04-arrow:disabled {
	opacity: .3;
	cursor: auto;
}
.box04-prev {
	background: url(../img/slide-arrow-left.svg) center / contain no-repeat;
}
.box04-next {
	background: url(../img/slide-arrow-right.svg) center / contain no-repeat;
}
.box04-pagination {
	gap: 15px;
}
.box04-page {
	border: none;
	background-color: #FFF;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	padding: 0;
	display: block;
	cursor: pointer;

}
.box04-page.is-active {
	background-color: var(--text-link);
}




/* 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(0,0,0, 0.5);
	color: #FFF;
	border-radius: 100px;
	font-weight: bold;
	text-align: center;
	padding: 6px;
	font-family: Philosopher;
	font-size: 30px;
	letter-spacing: 0.26px;
}
.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%;
	} */
}



