@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

/*************
FMT
*************/
.info_wrap,
.footer_container {
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	font-weight: 400;
}
img {
	display: block;
	width: 100%;
}
.content_wrap {
	-webkit-font-smoothing: antialiased;
	font-family: "〇〇〇〇〇〇〇〇〇〇〇〇",'Noto Sans JP', serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--text-color);
	margin-top: 66px;
	background-color: var(--bg-color);
	width: 100%;
	position: relative;
	z-index: 0;
}
a:hover img {opacity: 1;}

figure {
	margin: 0 auto;
    width: 100%;
    max-width: 500px;
}
figcaption .caption {
	margin-left: auto;
    margin-right: 0;
    width: fit-content;
	font-size: 12px;
}
@media(min-width:751px){
	.content_wrap {
		margin-top: 90px;
	}
}
:root {
	--text-color: #000000;
	--primary-color: #2ebcad;
	--bg-color: #FFFFFF;
	--red-color: #EE0000;
	--accent-color: #FFFF00;
}
/*アキ*/
.mgt48 {margin-top: 48px !important;}
.mgt32 {margin-top: 32px !important;}
.mgt24 {margin-top: 24px !important;}
.mgt16 {margin-top: 16px !important;}
.mgt8 {margin-top: 8px !important;}
.mgt4 {margin-top: 4px !important;}
.mgt0 {margin-top: 0 !important;}

/*テキストサイズ*/
.annotation {font-size: 14px;}
.smallest {font-size: 12px;}
.larger {font-size: 1.5em;}
.smaller {font-size: 0.75em;}

/* テキスト揃え */
.center {text-align: center;}
.auto_center {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}
.right {text-align: right;}
.left {text-align: left;}
.ib {display: inline-block;}

/* テキストカラー */
.fcPrimary {color: var(--primary-color);}
.fcRed {color: var(--red-color);}
.fcWhite {color: #FFF}
.fcYellow {color: #FF0;}

/* テキスト汎用 */
.bold {font-weight: bold;}
.text_link{
	/*color: var(--primary-color);]*/
	color: #E33A3B;
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
}
.marker {
	background: linear-gradient(transparent 50%, var(--accent-color) 50%);
}
.relative_wrap {position: relative;}

/* 箇条書き */
ul.text_list li,
p.text_list {
	text-indent: -1em;
	padding-left: 1em;
	text-align: left;
}
ul.text_list li + li{
	margin-top: 2px;
}
ul.text_list.annotation li {
	font-size: 14px;
}
@media(min-width:751px){
	.red_box {
		font-size: 22px;
	}
	.pc_center {text-align: center;}

}
/* js-fadeUp */
.js-fadeUp {
	transform: translateY(10px);
	opacity: 0;
	transition: all 1s;
}
.js-fadeUp.is-inview {
	transform: translateY(0);
	opacity: 1;
}
/*************
汎用
*************/
/* ボイストック枠 */
.VoiStock_btn {
	display: block;
	max-width: 400px;
	/*margin: 32px auto 16px;*/
}
.VoiStock_btn.comingSoon {
	pointer-events: none;
}
.qr_wrap {
	display: none;
}
@media(min-width:751px){
	.qr_wrap {
		padding: 16px;
		margin: 10px auto 16px;
		/*border: 2px solid var(--primary-color);*/
		border: 2px solid #000000;
		background-color: #E33A3B;
		display: flex;
		gap: 16px;
		border-radius: 16px;
		max-width: 480px;
		align-items: center;
	}
	.qr_text {
		flex: 1;
	}
	.qr_text_wrap {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.qr_text_hd {
		font-weight: bold;
		margin-bottom: 6px;
		font-size: 20px;
		/*color: #FFF;*/
		/*background-color: var(--primary-color);*/
		background-color: #ffffff;
		padding: 4px 12px;
		border-radius: 40px;
		text-align: center;
	}
	.qr_text p {
		text-align: left;
		color: #ffffff;
	}
	.qr_img {
		width: 100px;
		position: relative;
		padding: 4px;
		border: 2px solid var(--primary-color);
		border-radius: 8px;
		background-color: #FFF;
	}
	.qr_img .comingSoon {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: bold;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		color: var(--text-color);
		font-size: 20px;
		line-height: 1.2;
		text-align: center;
	}
}
/* アコーディオン */
.acc_body {
	display: none;
}
.acc_btn {
	font-weight: bold;
    width: fit-content;
    margin: 32px auto 0;
    color: var(--text-color);
    position: relative;
    padding-right: 28px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc_btn span {
	position: absolute;
	background-color: #FFF;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.acc_btn span::before,
.acc_btn span::after {
	content: "";
	/*background-color: var(--primary-color);*/
	background-color: #222222;
	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%);
}
/* ご注意事項アコーディオン */
.caution_acc .acc_btn {
    padding: 4px 40px 6px 20px;
    border-radius: 30px;
    /*background-color: var(--primary-color);*/
	background-color: #222222;
	color: #FFF;
}
.caution_acc .acc_btn span {
	right: 10px;
}
.caution_acc .acc_body {
	padding: 10px;
	border-radius: 8px;
	margin-top: 16px;
	/*border: 2px solid var(--primary-color);*/
	border: 2px solid #222222;
}
.caution_head {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 4px;
}
.text_list + .caution_head {
	margin-top: 8px;
}
@media(min-width:751px){
	.caution_acc .acc_body {
		padding: 20px;
		border-radius: 16px;
	}
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
終了処理
*************/

.red_box {
	font-weight: bold;
	border: 2px solid var(--red-color);
	color: var(--red-color);
	font-size: 18px;
	text-align: center;
	padding: 8px;
	margin: 16px auto 0;
	max-width: 800px;
	width: calc(100% - 40px);
	background-color: #FFF;
}
.VoiStock_btn.sign-off-btn {
	pointer-events: none;
	position: relative;
}
.sign-off {
    background-color: rgba(255, 255, 255, 0.8);
    color: #EE0000;
    border: #EE0000 2px solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 16px 0;
}
@media(min-width:751px){

	/* 終了処理 QR枠用 */
	.sign-off-pc {
        background-color: rgba(255, 255, 255, 0.9);
        color: #EE0000;
        border: #EE0000 2px solid;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        height: 85%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
        text-align: center;
    }
}








/*************
footer
*************/
/*その他の推し旅プラン*/
.info_wrap {
	margin: 0 auto;
	padding: 8px 40px 20px;
	position: relative;
	background-color: #FFF;
}
.oshitabi_btn {
	display: block;
	border: 4px solid #000;
	background-color: #FFF;
	max-width: 740px;
	margin: 32px auto 0;
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	border-radius: 10px;
	position: relative;
	padding: 10px 30px 10px 5px;
	font-size: 18px;
	transition: all 0.3s;
}
.oshitabi_btn:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	height: 12px;
	width: 12px;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s;
}
.oshitabi_btn:hover {
	background-color: var(--primary-color);
	color: #FFF;
	border: 4px solid var(--primary-color);
}
.oshitabi_btn:hover::after {
	border-top: 3px solid #FFF;
	border-right: 3px solid #FFF;

}
.credit {
	text-align: center;
	margin-top: 16px;
	font-size: 12px;
}

.footer_container {
	position: relative;
	z-index: 100;
	background-color: #FFF;
	padding-top: 1px;
}
@media(min-width:751px){
	.info_wrap {
		margin: 0 auto;
		padding: 8px 20px 100px;
	}
	.oshitabi_btn {
		padding: 15px;
		font-size: 20px;
	}
}


/*************
メディアクエリ
*************/
@media(min-width:751px){
	.sp {
		display: none;
	}
}
@media(max-width:750px){
	.pc {
		display: none;
	}
}


/*-----------------------------------
	2025/07/25
------------------------------------*/

.content_wrap {
	overflow: hidden;
}

.content_wrap {
	font-family: "Zen Maru Gothic", sans-serif;
}

.contBlockBg01 {
background: #FFEB76;
background: linear-gradient(180deg,rgba(255, 235, 118, 1) 30%, rgba(239, 133, 34, 1) 100%);
}

.contTextWrap01 {
	position: relative;
	margin: 10px 5px 17px;
}
.contText01 {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
	padding-bottom: 10px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 12px;
	left: 0px;
}
.contText01 .s01 {
	font-size: 28px;
}

.mainTextBox01 {
	background-image: url("../img/cont_text_bg01.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
	padding: 70px 30px 80px;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.6em;
	font-weight: bold;
	position: relative;
}
.mainTextBox01::before {
	content: "";
	background-image: url("../img/cont_text_bg01_02.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	mix-blend-mode: color-burn;
}

.mainBox02 {
	position: relative;
	padding-bottom: 66px;
}
.mainBox02In {
	position:relative;
	z-index: 1;
	margin-bottom: 20px;
	padding: 0px 15px;
}

.mainBox02 .boxIn01 {
	text-align: center;
	padding: 46px 0px 10px;
	position: relative;
}
.mainBox02 .boxIn01 .p01 {
	background-color: #FFF5BA;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 216px;
	height: 36px;
	border-radius: 50px;
	margin: auto;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 900;
}

.mainBox02 .boxIn02 {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 25px 15px 15px;
	font-size: 13px;
	line-height: 1.45em;
	font-weight: 500;
}
.boxInImg01 {
	width: 90px;
	position: absolute;
	right: 0px;
	bottom: -16px;
}
.boxInImg01 img {
	border-radius: 8px;
}

.boxInImg01.img02 {
	right: auto;
	left: 0px;
}

.contBgDeco01 {
	width: 141px;
	position: absolute;
	left: -20px;
	top: 22px;
}
.contBgDeco02 {
	width: 141px;
	position: absolute;
	right: -20px;
	top: 220px;
}
.contBgDeco03 {
	width: 141px;
	position: absolute;
	right: 71px;
	bottom: 0px;
}

.contBgDeco04 {
	width: 141px;
	position: absolute;
	left: -20px;
	top: -28px;
}
.contBgDeco05 {
	width: 141px;
	position: absolute;
	right: -45px;
	top: 15px;
}

.contBgDeco0402 {
	width: 141px;
	position: absolute;
	left: -20px;
	top: 0px;
}
.contBgDeco0502 {
	width: 141px;
	position: absolute;
	right: -45px;
	top: 96px;
}

.contBgDeco0403 {
	width: 141px;
	position: absolute;
	left: -20px;
	top: 178px;
}
.contBgDeco0503 {
	width: 141px;
	position: absolute;
	right: -45px;
	top: 80px;
}

.screen img {
	mix-blend-mode: screen;
}

.posiRe {
	position: relative;
}


/*------------------*/

.contAncWrap01 {
	padding: 0px 5px;
	margin: 10px auto 24px;
}
.contAncWrap01 li {
	padding-right: 36px;
}
.contAncWrap01 li:nth-child(2) {
	padding-right: 0px;
	padding-left: 36px;
}

/*--------------------*/

.contPd15 {
	padding: 0px 15px;
}

.contBlock01 {
	position: relative;
}
.contH201 {
	padding-left: 48px;
	margin-bottom: 26px;
}
.cont01Box01 {
	border: 3px solid #EF8522;
	background-color: #FFFFFF;
	border-radius: 20px;
	padding: 24px 15px 38px;
	text-align: center;
}
.contH301 {
	background-color: #FFEB76;
	border-radius: 15px;
	padding: 10px 10px 14px;
	text-align: center;
	position: relative;
}
.contH301::before {
	content: "";
	background-image: url("../img/cont01_deco01.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 39px auto;
	width: 39px;
	height: 37px;
	position: absolute;
	top: 0px;
	right: 8px;
}

.contH301 .s01 {
	display: block;
	color: #EF8522;
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 900;
}
.contH301 .s02 {
	display: block;
	font-size: 22px;
	line-height: 1.25em;
	font-weight: 900;
}
.cont01Box01 ul{
	font-size: 14px;
    font-weight: 400;
}

.contMailBox01 {
	position: relative;
	background-color: #ffffff;
	border: 2px solid #EF8522;
	border-radius: 10px;
	margin: 40px auto 20px;
	padding: 30px 15px 15px;
}
.contMailBox01::before {
	content: "";
	background-image: url("../img/cont01_icon_email.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 65px auto;
	width: 65px;
	height: 42px;
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
}
.contMailBox01P01 {
	color: #EF8522;
	font-size: 20px;
	line-height: 1.35em;
	font-weight: 900;
	margin-bottom: 10px;
}
.contMailBox01P02 {
	font-size: 15px;
	line-height: 1.7em;
	font-weight: bold;
	margin-bottom: 10px;
}
.contMailBox01P02_s{
	font-size: 13px;
    line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 10px;
}

.colOre01 {
	color: #EF8522;
}
.colOre02{
	color:#E33A3B;
}
.contMailDl01 {
	margin-top: 14px;
}
.contMailDl01 dt {
	background-color: #EF8522;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
	padding: 4px 10px;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.3em;
	font-weight: bold;
	margin-bottom: 6px;
}
.contMailDl01 dd {
	color: #EF8522;
}
.text14_16_900 {
	font-size: 14px;
	line-height: 1.6em;
	font-weight: 900;
}
.text14_16_900 .s01 {
	font-size: 21px;
}
.text20_13_900 {
	font-size: 20px;
	line-height: 1.3em;
	font-weight: 900;
	color: #EF8522;
}
.text20_13_900 a:link {	color: #EF8522;	text-decoration: none;}
.text20_13_900 a:visited {	color: #EF8522;	text-decoration: none;}
.text20_13_900 a:hover {	color:#EF8522;	text-decoration: none;}
.text20_13_900 a:active {	color:#EF8522;	text-decoration: none;}

.contH302 {
	font-size: 16px;
	line-height: 1.6em;
	font-weight: bold;
	margin-bottom: 5px;
}
.contText02 {
	font-size: 18px;
	line-height: 1.6em;
	font-weight: bold;
	margin-top: 20px;
}
.contText02 .s01 {
	display: inline-block;
	background-image: url("../img/cont01_text_line01.png");
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: auto 12px;
}
.cyusyakuBox01 {
	margin: 20px auto;
}

/*--------------------*/

.contBlock02 {
	position: relative;
	margin-top: 120px;
	background-color: #EFECEC;
	padding-top: 10px;
	padding-bottom: 35px;
}
.contBlock02::before {
	content: "";
	background-image: url("../img/cont02_bg01.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	width: 100%;
	height: 46px;
	position: absolute;
	left: 0px;
	top: -46px;
}

.contH202 {
	margin-top: -74px;
	margin-bottom: 24px;
}
.text16_15_b {
	font-size: 16px;
	line-height: 1.5em;
	font-weight: bold;
}

.cont02Box01 {
	text-align: center;
	margin: 30px auto 38px;
}
.contText03 {
	font-size: 12px;
	line-height: 1.6em;
	color: #646464;
	margin-top: 10px;
}

.cont02ImgWrap01 {
	margin: 15px auto 28px;
}
.cont02Img01 img {
	width: 278px;
	height: auto;
	margin: auto;
}
.contFuki01 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 82px;
	height: 82px;
	border-radius: 100px;
	background-color: #E33A3B;
	color: #ffffff;
	position: absolute;
	right: 0px;
	bottom: -20px;
}
.contFuki01 span {
	display: block;
}

.contFuki01 .s01 {
	display: block;
	font-size: 30px;
	line-height: 1.0em;
	font-weight: 900;
}
.contFuki01 .s02 {
	display: block;
	font-size: 15px;
	line-height: 1.0em;
	font-weight: 900;
	margin-top: 4px;
}
.text12_20_n {
	font-size: 12px;
	line-height: 2.0em;
}
.all {
	text-align: left;
}
.col666666 {
	color: #666666;
}

.cont02Dl01 {
	margin: 15px auto 20px;
}
.cont02Dl01 dt {
	background-color: #EF8522;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
	padding: 5px 10px;
	height: 32px;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.0em;
	font-weight: bold;
}
.cont02Dl01 dd {
	text-align: left;
	margin-top: 8px;
}

.text_link02 {
	font-weight: bold;
}
a.text_link02:link {	color: #EF8522;	text-decoration: underline;}
a.text_link02:visited {	color: #EF8522;	text-decoration: underline;}
a.text_link02:hover {	color:#EF8522;	text-decoration: none;}
a.text_link02:active {	color:#EF8522;	text-decoration: none;}

.cont02Dl02 {
	margin-top: 10px;
}
.cont02Dl02 dt {
	font-size: 18px;
	line-height: 1.3em;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 32px;
background: #FFEB76;
background: linear-gradient(270deg,rgba(255, 235, 118, 1) 0%, rgba(239, 133, 34, 1) 100%);
}
.cont02Dl02 dd {
	font-size: 15px;
	line-height: 1.5em;
	font-weight: bold;
	margin-top: 10px;
}

.caution_acc.acNew01 .acc_btn {
	background-color: #EF8522;
}
.acNew01 .acc_btn span::before,
.acNew01 .acc_btn span::after {
	background-color: #EF8522;
}
.caution_acc.acNew01 .acc_body {
	padding: 0px;
	border: none;
}

/*-----------------------*/

.contBlock03 {
	position: relative;
	padding: 25px 0px 50px;
	background-image: url("../img/cont02_bg02.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	background-color: #FFEB76;
}
.contH203 {
	margin-bottom: 24px;
}
.cont02ImgWrap02 {
	margin-bottom: 10px;
}
.cont02ImgWrap02 img {
	width: 278px;
	height: auto;
}
.contText04 {
	font-size: 15px;
	line-height: 1.6em;
	font-weight: bold;
	color: #E33A3B;
	margin: 15px auto;
}
.contText04 a {
	font-weight: 900;
}
.contText04 a:link {	color: #E33A3B;	text-decoration: underline;}
.contText04 a:visited {	color: #E33A3B;	text-decoration: underline;}
.contText04 a:hover {	color:#E33A3B;	text-decoration: none;}
.contText04 a:active {	color:#E33A3B;	text-decoration: none;}

/*-------------------------*/

.displayNone {
	display: none;
}
.cont03AcWrap01 {
	margin: 20px auto;
}
.cont03Ac01 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
	padding: 5px 20px;
	height: 58px;
	background-color: #222222;
	border-radius: 60px;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.5em;
	font-weight: bold;
}
.cont03Ac01::after {
	content: "";
	background-image: url("../img/ac_01.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 15px auto;
	width: 15px;
	height: 15px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.cont03Ac01.open::after {
	background-image: url("../img/ac_01_on.png");
}
.cont03AcCont01 {
	padding: 20px 0px 15px;
}
.acAr01 {
	padding: 16px 0px;
	text-align: center;
}
.acAr01 img {
	width: 96px;
	height: auto;
	margin: auto;
}
.acContBox01 {
	border: 2px solid #000000;
}
.acContBox01 dt {
	background-color: #FFDDBE;
	display: flex;
	align-items: center;
	text-align: left;
	box-sizing: border-box;
	padding: 5px 15px;
	height: 34px;
	color: #EF8522;
	font-size: 14px;
	line-height: 1.3em;
	font-weight: bold;
	font-family: "Zen Maru Gothic", 'Noto Sans JP', sans-serif;
}
.acContBox01 dd {
	background-color: #ffffff;
	padding: 10px 14px 24px;
	letter-spacing: -0.02em;
}

.acText01 {
	color: #EF8522;
	font-size: 22px;
	line-height: 1.1em;
	font-weight: 900;
	text-align: center;
	margin-bottom: 6px;
}
.acText02 {
	font-size: 16px;
	line-height: 1.3em;
	font-weight: bold;
	margin-bottom: 8px;
}
.acText03 {
	font-size: 13px;
	line-height: 1.3em;
	margin-bottom: 10px;
}
.acBtn01 {
	margin: 15px auto auto;
}
.acBtn01 img {
	width: 100%;
	height: auto;
}
.colRed01 {
	color: #E33A3B;
}
.text12_15_n {
	font-size: 12px;
	line-height: 1.5em;
}

.acContBox01.acContBox02 dt {
	background-color: #FFD8DB;
	color: #E33A3B;
}
.acContBox02 .acText01 {
	color: #E33A3B;
}
.acImgWrap01 {
	margin: 10px auto;
}
.acCloseBtn01 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
	height: 34px;
	padding: 5px 18px 5px 20px;
	background-color: #222222;
	border-radius: 50px;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.0em;
	font-weight: bold;
}





@media(min-width:751px){
	
	.pcBlock720 {
		width: 720px;
		margin-left: auto;
		margin-right: auto;
	}
	
	#mainVisual {
		width: 1000px;
		margin: auto;
		padding-top: 40px;
	}

	.content_wrap {
		overflow: hidden;
	}

	.content_wrap {
		font-family: "Zen Maru Gothic", sans-serif;
	}

	.contBlockBg01 {
	background: #FFEB76;
	background: linear-gradient(180deg,rgba(255, 235, 118, 1) 15%, rgba(239, 133, 34, 1) 100%);
	}

	.contTextWrap01 {
		position: relative;
		margin: 10px auto -40px;
		width: 430px;
		z-index: 1;
	}
	.contText01 {
		color: #ffffff;
		font-size: 20px;
		line-height: 1.2em;
		font-weight: 900;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		padding-bottom: 10px;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 12px;
		left: 0px;
	}
	.contText01 .s01 {
		font-size: 34px;
	}

	.mainTextBox01 {
		background-image: url("../img/cont_text_bg01_pc.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: auto 100%;
		padding: 70px 110px 80px;
		color: #ffffff;
		font-size: 18px;
		line-height: 1.6em;
		font-weight: bold;
		position: relative;
		z-index: 0;
		box-sizing: border-box;
		width: 742px;
		height: 720px;
		margin: auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.mainTextBox01::before {
		content: "";
		background-image: url("../img/cont_text_bg01_02_pc.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: auto 100%;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0px;
		left: 0px;
		mix-blend-mode: color-burn;
	}

	.mainBox02 {
		position: relative;
		padding-bottom: 66px;
		display: flex;
		gap: 0px 30px;
		margin-top: 30px;
	}
	.mainBox02In {
		margin-bottom: 20px;
		padding: 0px 0px;
		position: relative;
	}

	.mainBox02 .boxIn01 {
		text-align: center;
		padding: 46px 0px 10px;
		position: relative;
	}
	.mainBox02 .boxIn01 .p01 {
		background-color: #FFF5BA;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 216px;
		height: 36px;
		border-radius: 50px;
		margin: auto;
		font-size: 20px;
		line-height: 1.2em;
		font-weight: 900;
	}

	.mainBox02 .boxIn02 {
		background-color: #ffffff;
		border-radius: 20px;
		padding: 25px 15px 15px;
		font-size: 13px;
		line-height: 1.45em;
		font-weight: 500;
	}
	.boxInImg01 {
		width: 90px;
		position: absolute;
		right: 0px;
		bottom: -16px;
	}
	.boxInImg01 img {
		border-radius: 8px;
	}

	.boxInImg01.img02 {
		right: auto;
		left: 0px;
	}

	.contBgDeco01 {
		width: 141px;
		position: absolute;
		left: -20px;
		top: 22px;
		z-index: 0;
	}
	.contBgDeco02 {
		width: 141px;
		position: absolute;
		right: -20px;
		top: 58px;
		z-index: 0;
	}
	.contBgDeco03 {
		width: 141px;
		position: absolute;
		right: 296px;
		bottom: 54px;
	}

	.contBgDeco04 {
		width: 208px;
		position: absolute;
		left: 34px;
		top: -28px;
	}
	.contBgDeco05 {
		width: 200px;
		position: absolute;
		right: 20px;
		top: 15px;
	}

	.contBgDeco0402 {
		width: 200px;
		position: absolute;
		left: 50%;
		margin-left: -320px;
		top: 10px;
	}
	.contBgDeco0502 {
		width: 200px;
		position: absolute;
		right: 50%;
		margin-right: -320px;
		top: 96px;
	}

	.contBgDeco0403 {
		width: 200px;
		position: absolute;
		left: 50%;
		margin-left: -300px;
		top: 220px;
	}
	.contBgDeco0503 {
		width: 200px;
		position: absolute;
		right: 50%;
		margin-right: -300px;
		top: 140px;
	}

	.screen img {
		mix-blend-mode: screen;
	}

	.posiRe {
		position: relative;
	}


	/*------------------*/

	.contAncWrap01 {
		padding: 0px 5px;
		margin: 10px auto 24px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0px 3.8%;
	}
	.contAncWrap01 li {
		padding-right: 0px;
		width: 48%;
	}
	.contAncWrap01 li:nth-child(2) {
		padding-right: 0px;
		padding-left: 0px;
	}

	/*--------------------*/

	.contPd15 {
		padding: 0px 15px;
	}

	.contBlock01 {
		position: relative;
	}
	.contH201 {
		padding-left: 48px;
		margin: auto auto 26px;
		box-sizing: border-box;
		width: 560px;
	}
	.cont01Box01 {
		border: 3px solid #EF8522;
		background-color: #FFFFFF;
		border-radius: 20px;
		padding: 24px 15px 38px;
		text-align: center;
	}
	.contH301 {
		background-color: #FFEB76;
		border-radius: 15px;
		padding: 10px 10px 14px;
		text-align: center;
		position: relative;
	}
	.contH301::before {
		content: "";
		background-image: url("../img/cont01_deco01.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 39px auto;
		width: 39px;
		height: 37px;
		position: absolute;
		top: 10px;
		right: 18px;
	}

	.contH301 .s01 {
		display: block;
		color: #EF8522;
		font-size: 16px;
		line-height: 1.6em;
		font-weight: 900;
	}
	.contH301 .s02 {
		display: block;
		font-size: 22px;
		line-height: 1.25em;
		font-weight: 900;
	}

	.contMailBox01 {
		position: relative;
		background-color: #ffffff;
		border: 2px solid #EF8522;
		border-radius: 10px;
		margin: 40px auto 20px;
		padding: 30px 15px 15px;
	}
	.contMailBox01::before {
		content: "";
		background-image: url("../img/cont01_icon_email.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 65px auto;
		width: 65px;
		height: 42px;
		position: absolute;
		top: -25px;
		left: 50%;
		transform: translateX(-50%);
	}
	.contMailBox01P01 {
		color: #EF8522;
		font-size: 20px;
		line-height: 1.35em;
		font-weight: 900;
		margin-bottom: 10px;
	}
	.contMailBox01P02 {
		font-size: 15px;
		line-height: 1.7em;
		font-weight: bold;
		margin-bottom: 10px;
	}

	.colOre01 {
		color: #EF8522;
	}
	.contMailDl01 {
		margin-top: 14px;
	}
	.contMailDl01 dt {
		background-color: #EF8522;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		padding: 4px 10px;
		color: #ffffff;
		font-size: 16px;
		line-height: 1.3em;
		font-weight: bold;
		margin-bottom: 6px;
	}
	.contMailDl01 dd {
		color: #EF8522;
	}
	.text14_16_900 {
		font-size: 14px;
		line-height: 1.6em;
		font-weight: 900;
	}
	.text14_16_900 .s01 {
		font-size: 21px;
	}
	.text20_13_900 {
		font-size: 20px;
		line-height: 1.3em;
		font-weight: 900;
		color: #EF8522;
	}
	.text20_13_900 a:link {	color: #EF8522;	text-decoration: none;}
	.text20_13_900 a:visited {	color: #EF8522;	text-decoration: none;}
	.text20_13_900 a:hover {	color:#EF8522;	text-decoration: none;}
	.text20_13_900 a:active {	color:#EF8522;	text-decoration: none;}

	.contH302 {
		font-size: 16px;
		line-height: 1.6em;
		font-weight: bold;
		margin-bottom: 5px;
	}
	.contText02 {
		font-size: 18px;
		line-height: 1.6em;
		font-weight: bold;
		margin-top: 20px;
	}
	.contText02 .s01 {
		display: inline-block;
		background-image: url("../img/cont01_text_line01.png");
		background-repeat: repeat-x;
		background-position: center bottom;
		background-size: auto 12px;
	}
	.cyusyakuBox01 {
		margin: 20px auto;
	}

	/*--------------------*/

	.contBlock02 {
		position: relative;
		margin-top: 120px;
		background-color: #EFECEC;
		padding-top: 10px;
		padding-bottom: 35px;
	}
	.contBlock02::before {
		content: "";
		background-image: url("../img/cont02_bg01.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 100% 100%;
		width: 100%;
		height: 46px;
		position: absolute;
		left: 0px;
		top: -46px;
	}

	.contH202 {
		margin: -90px auto 70px auto;
		text-align: center;
	}
	
	.contH202 img {
		width: 512px;
		height: auto;
		margin: auto;
	}
	
	.text16_15_b {
		font-size: 16px;
		line-height: 1.5em;
		font-weight: bold;
	}

	.cont02Box01 {
		text-align: center;
		margin: 30px auto 38px;
	}
	.contText03 {
		font-size: 12px;
		line-height: 1.6em;
		color: #646464;
		margin-top: 10px;
	}

	.cont02ImgWrap01 {
		width: 340px;
		margin: 15px auto 28px;
	}
	
	.cont02Img01 {
		/*width: 340px;
		margin: auto;*/
	}
	.cont02Img01 img {
		width: 100%;
		height: auto;
		margin: auto;
	}
	.contFuki01 {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 100px;
		height: 100px;
		border-radius: 100px;
		background-color: #E33A3B;
		color: #ffffff;
		position: absolute;
		right: -36px;
		bottom: -20px;
	}
	.contFuki01 span {
		display: block;
	}

	.contFuki01 .s01 {
		display: block;
		font-size: 36px;
		line-height: 1.0em;
		font-weight: 900;
	}
	.contFuki01 .s02 {
		display: block;
		font-size: 17px;
		line-height: 1.0em;
		font-weight: 900;
		margin-top: 4px;
	}
	.text12_20_n {
		font-size: 12px;
		line-height: 2.0em;
	}
	.all {
		text-align: left;
	}
	.col666666 {
		color: #666666;
	}

	.cont02Dl01 {
		margin: 15px auto 20px;
	}
	.cont02Dl01 dt {
		background-color: #EF8522;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		padding: 5px 10px;
		height: 32px;
		color: #ffffff;
		font-size: 16px;
		line-height: 1.0em;
		font-weight: bold;
	}
	.cont02Dl01 dd {
		text-align: left;
		margin-top: 8px;
	}

	.text_link02 {
		font-weight: bold;
	}
	a.text_link02:link {	color: #EF8522;	text-decoration: underline;}
	a.text_link02:visited {	color: #EF8522;	text-decoration: underline;}
	a.text_link02:hover {	color:#EF8522;	text-decoration: none;}
	a.text_link02:active {	color:#EF8522;	text-decoration: none;}

	.cont02Dl02 {
		margin-top: 10px;
	}
	.cont02Dl02 dt {
		font-size: 18px;
		line-height: 1.3em;
		font-weight: 900;
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		height: 32px;
	background: #FFEB76;
	background: linear-gradient(270deg,rgba(255, 235, 118, 1) 0%, rgba(239, 133, 34, 1) 100%);
	}
	.cont02Dl02 dd {
		font-size: 15px;
		line-height: 1.5em;
		font-weight: bold;
		margin-top: 10px;
	}

	.caution_acc.acNew01 .acc_btn {
		background-color: #EF8522;
	}
	.acNew01 .acc_btn span::before,
	.acNew01 .acc_btn span::after {
		background-color: #EF8522;
	}
	.caution_acc.acNew01 .acc_body {
		padding: 0px;
		border: none;
	}

	/*-----------------------*/

	.contBlock03 {
		position: relative;
		padding: 25px 0px 50px;
		background-image: url("../img/cont02_bg02.png");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 100% 100px;
		background-color: #FFEB76;
	}
	.contH203 {
		margin: auto auto 24px;
		width: 504px;
	}
	.cont02ImgWrap02 {
		margin-bottom: 10px;
	}
	.cont02ImgWrap02 img {
		width: 278px;
		height: auto;
	}
	.contText04 {
		font-size: 15px;
		line-height: 1.6em;
		font-weight: bold;
		color: #E33A3B;
		margin: 15px auto;
	}
	.contText04 a {
		font-weight: 900;
	}
	.contText04 a:link {	color: #E33A3B;	text-decoration: underline;}
	.contText04 a:visited {	color: #E33A3B;	text-decoration: underline;}
	.contText04 a:hover {	color:#E33A3B;	text-decoration: none;}
	.contText04 a:active {	color:#E33A3B;	text-decoration: none;}

	/*-------------------------*/

	.displayNone {
		display: none;
	}
	.cont03AcWrap01 {
		width: 500px;
		margin: 20px auto;
	}
	.cont03Ac01 {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		padding: 5px 20px;
		height: 58px;
		width: 320px;
		margin-left: auto;
		margin-right: auto;
		background-color: #222222;
		border-radius: 60px;
		color: #ffffff;
		font-size: 16px;
		line-height: 1.5em;
		font-weight: bold;
		cursor: pointer;
	}
	.cont03Ac01::after {
		content: "";
		background-image: url("../img/ac_01.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 15px auto;
		width: 15px;
		height: 15px;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
	.cont03Ac01.open::after {
		background-image: url("../img/ac_01_on.png");
	}
	.cont03AcCont01 {
		padding: 20px 0px 15px;
	}
	.acAr01 {
		padding: 16px 0px;
		text-align: center;
	}
	.acAr01 img {
		width: 96px;
		height: auto;
		margin: auto;
	}
	.acContBox01 {
		border: 2px solid #000000;
	}
	.acContBox01 dt {
		background-color: #FFDDBE;
		display: flex;
		align-items: center;
		text-align: left;
		box-sizing: border-box;
		padding: 5px 15px;
		height: 34px;
		color: #EF8522;
		font-size: 14px;
		line-height: 1.3em;
		font-weight: bold;
	}
	.acContBox01 dd {
		background-color: #ffffff;
		padding: 10px 14px 24px;
		letter-spacing: -0.02em;
	}

	.acText01 {
		color: #EF8522;
		font-size: 22px;
		line-height: 1.1em;
		font-weight: 900;
		text-align: center;
		margin-bottom: 10px;
	}
	.acText02 {
		font-size: 18px;
		line-height: 1.3em;
		font-weight: bold;
		margin-bottom: 13px;
	}
	.acText03 {
		font-size: 13px;
		line-height: 1.3em;
		margin-bottom: 16px;
		text-align: center;
	}
	.acBtn01 {
		width: 280px;
		margin: 15px auto auto;
	}
	.acBtn01 img {
		width: 100%;
		height: auto;
	}
	.colRed01 {
		color: #E33A3B;
	}
	.text12_15_n {
		font-size: 12px;
		line-height: 1.5em;
	}

	.acContBox01.acContBox02 dt {
		background-color: #FFD8DB;
		color: #E33A3B;
	}
	.acContBox02 .acText01 {
		color: #E33A3B;
	}
	.acImgWrap01 {
		width: 380px;
		margin: 10px auto;
	}
	.acCloseBtn01 {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		height: 34px;
		padding: 5px 18px 5px 20px;
		background-color: #222222;
		border-radius: 50px;
		color: #ffffff;
		font-size: 15px;
		line-height: 1.0em;
		font-weight: bold;
		cursor: pointer;
	}



}

/* animation */
.js-animate[data-animate="fade-up"] {
	opacity: 0;
	translate: 0 40px;
	transition: 1s ease-out;
}
.js-animate--active[data-animate="fade-up"] {
	opacity: 1;
	translate: 0;
}

/* js-fadeUp */
.js-fadeUp {
	transform: translateY(10px);
	opacity: 0;
	transition: all 1s;
}
.js-fadeUp.is-inview {
	transform: translateY(0);
	opacity: 1;
}

