@charset "UTF-8";

/* --------- FMT --------- */
:root {
	--text: #7B5B18;
	--font-kaisei: 'Kaisei Opti', serif;
	--pink: #FF758A;
	--primary-color: #F51D00;
}
.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,picture {
	display: block;
	width: 100%;
}
a:hover img {
	opacity: 1;
}
.content_wrap {
	color: var(--text);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	margin-top: 66px;
	width: 100%;
	background: url(../img/bg_common01.svg) repeat top left/375px;
	position: relative;
	z-index: 0;
	*,*::before,*::after {
		box-sizing: border-box;
	}
}
.content-inner {
	width: 92%;
	max-width: 620px;
	margin-inline: auto;
}
figure {
	margin: 0 auto;
    width: 100%;
}
.txt-link{
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 700;
	transition: .4s opacity ease-in-out;
	&:active {
		opacity: .5;
	}
}
.note-list {
	display: grid;
	gap: 3px;
	margin-top: 20px;
}
.note-list__items {
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: .03em;
	padding-left: 1em;
	text-indent: -1em;
	b {
		font-weight: 700;
	}
}

/* ------ 汎用 ------ */
/* --- common-box --- */
.common-box {
	background: #FCF4E3;
	padding: 0 13px 28px;
	border: 2px solid var(--text);
	position: relative;
	&::before,&::after {
		content: '';
		display: block;
		width: 262px;
		height: 55px;
		background: url(../img/bg_common04.png) no-repeat center/cover;
		position: absolute;
		left: 50%;
		translate: -50%;
	}
	&::before {
		top: -55px;
	}
	&::after {
		bottom: -55px;
		scale: 1 -1;
	}
	+& {
		margin-top: 130px;
	}
}
/* --- common-period --- */
.common-period {
	background: #fff;
	border-block: 1px solid var(--text);
	padding-block: 4px;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-kaisei);
	letter-spacing: .03em;
	text-align: center;
	margin-top: 15px;
	span {
		font-size: 22px;
	}
}
/* --- common-subttl --- */
.common-subttl {
	display: grid;
	place-content: center;
	width: min(88.772%,253px);
	height: auto;
	aspect-ratio: 253/60;
	margin-inline: auto;
	background: url(../img/bg_common05.png) no-repeat center/cover;
	color: #fff;
	font-size: 23px;
	font-weight: 700;
	font-family: var(--font-kaisei);
	line-height: 1.3;
}
/* --- common-txt --- */
.common-txt {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .03em;
	text-align: center;
	margin-top: 20px;
}
/* --- sec--store --- */
.sec--store {
	margin-top: 20px;
}
.sec--store__ttl {
	display: grid;
	place-content: center;
	width: 167px;
	height: 36px;
	background: url(../img/bg_common06.svg) no-repeat center/cover;
	color: #fff;
	font-weight: 700;
	font-family: var(--font-kaisei);
	letter-spacing: .03em;
	margin-inline: auto;
}
.sec--store__list {
	display: grid;
	gap: 10px;
	margin-top: 10px;
	p:not(:last-child) {
		width: fit-content;
		margin-inline: auto;
		padding-left: 5em;
		text-indent: -5em;
		font-size: 15px;
		font-weight: 700;
		letter-spacing: .03em;
	}
}
.sec--store__list__time {
	margin-top: 5px;
}
.sec--store__list__note {
	margin-top: 5px;
	font-size: 12px;
	letter-spacing: .03em;
	text-align: center;
}
/* --- sec--join --- */
.sec--join {
	margin-top: 30px;
	background: #fff;
	border: 2px solid var(--pink);
	padding: 23px 13px;
	position: relative;
	&::before,&::after {
		content: '';
		display: block;
		width: calc(100% - 11px);
		height: 35px;
		background: url(../img/bg_common07.svg) no-repeat left top/36px,
					url(../img/bg_common08.svg) no-repeat right top/36px,
					linear-gradient(to right,var(--pink) 0,var(--pink) 100%) no-repeat center top 2px/calc(100% - 77px) 1px;
		position: absolute;
		left: 50%;
		translate: -50%;
		pointer-events: none;
		user-select: none;
	}
	&::before {
		top: 5px;
	}
	&::after {
		bottom: 5px;
		scale: 1 -1;
	}
	+.note-list {
		margin-top: 30px;
	}
}
.sec--join__ttl {
	display: grid;
	place-content: center;
	width: 167px;
	height: 36px;
	margin-inline: auto;
	background: url(../img/bg_common09.svg) no-repeat center/cover;
	color: #fff;
	font-weight: 700;
	font-family: var(--font-kaisei);
	letter-spacing: .03em;
}
.sec--join__list__item {
	padding-block: 10px;
	&:not(:last-child) {
		border-bottom: 1px solid #FFDDE3;
	}
}
.sec--join__list__item__inner {
	display: flex;
	align-items: center;
	gap: 10px;
}
.sec--join__list__ttl {
	color: var(--pink);
	font-size: 19px;
	font-weight: 600;
	font-family: Imbue,serif;
	letter-spacing: .03em;
}
.sec--join__list__dtl {
	display: grid;
	align-items: center;
	min-height: 100%;
}
.sec--join__list__txt {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .03em;
	span {
		color: var(--pink);
	}
}

/* --- CTA --- */
.cta-wrapper {
	margin-top: 30px;
}
.cta-btn {
	display: block;
}
.cta-note {
	font-size: 10px;
	line-height: 1.4;
	letter-spacing: .03em;
	padding-left: 1em;
	text-indent: -1em;
	margin-top: 10px;
}
/* --- acc --- */
.acc {
	margin-top: 10px;
}
.acc__btn {
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding: 5px 30px 6px 15px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	list-style: none;
	border-radius: 10vh;
	background: var(--text);
	position: relative;
	cursor: pointer;
	&::-webkit-details-marker {
		display:none;
	}
}
.acc__ico {
	display: block;
	width: 17px;
	height: 17px;
	position: absolute;
	top: 8px;
	right: 8px;
	background: #fff;
	border-radius: 50%;
	&::before,
	&::after {
		content: "";
		display: block;
		width: 9px;
		height: 2px;
		background: var(--text);
		position: absolute;
		inset: 0;
		margin: auto;
	}
	&::after {
		rotate: 90deg;
		transition: rotate .3s;
	}
}
.acc[open] .acc__ico::after {
	rotate: 0deg;
}
.acc__content {
	margin-top: 10px;
    transition: .6s ease-in-out;
	height: 0;
	overflow: hidden;
}
/* --- animation --- */
[data-animate="fade"] {
	opacity: 0;
	transition: .8s ease-out;
	&.js-animate--active {
		opacity: 1;
	}
}
[data-animate="blur"] {
	filter: blur(8px);
	transition: .8s ease-out;
	&.js-animate--active {
		filter: none;
	}
}
/* --- comingsoon,finish --- */
.comingsoon,.finish {
	position: relative;
	pointer-events: none;
	&::after {
		content: "Coming Soon";
		display: grid;
		place-content: center;
		background: rgb(255 255 255/.9);
		color: #EA2157;
		font-size: 8vw;
		font-weight: 700;
		text-align: center;
		line-height: 1.2;
		position: absolute;
		inset: 0;
	}
}
.finish-txt {
	max-width: 740px;
	margin: 16px auto;
	border: 2px solid #f00;
	background: #fff;
	padding-block: 8px;
	color: #f00;
	font-weight: 700;
	text-align: center;
}
.finish::after {
	content: "終了しました";
	border: 2px solid #f00;
	color: #f00;
	font-size: 18px;
	width: 90%;
	height: 90%;
	margin: auto;
}

/* --------- MV --------- */
.mv__img {
	max-width: 620px;
	margin-inline: auto;
}

/* --------- sec--lead --------- */
.sec--lead {
	background: url(../img/bg_common03.png) repeat-x top left/375px 14px,
				url(../img/bg_common03.png) repeat-x bottom left/375px 14px,
				repeating-linear-gradient(to right,#FFDCE2 0,#FFDCE2 12px,#FFE3E8 12px,#FFE3E8 24px);
	padding-block: 44px 54px;
}
.sec--lead__txt {
	margin-top: 21px;
	line-height: 1.6;
	&::before,&::after {
		content: '';
		display: block;
		width: 269px;
		height: 42px;
		background: url(../img/bg_common02.svg) no-repeat center/cover;
		margin-inline: auto;
	}
	&::after {
		scale: 1 -1;
	}
}
.sec--toc {
	margin-top: 21px;
}
.sec--toc__ttl {
	width: fit-content;
	margin-inline: auto;
	color: #A38C5D;
	font-size: 22px;
	font-weight: 600;
	font-family: Imbue,serif;
	letter-spacing: .03em;
	&::before,&::after {
		content: '';
		display: inline-block;
		width: 26px;
		height: 1px;
		background: #A38C5D;
		margin-inline: 10px;
		translate: 0 -7px;
	}
}
.toc-list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 15px;
	margin-top: 10px;
}
.toc-btn {
	transition: .4s opacity ease-in-out;
	&:active {
		opacity: .5;
	}
}
/* --------- sec--contents --------- */
.sec--contents {
	margin-top: 81px;
}
.sec--contents__ttl {
	width: 201px;
	margin-inline: auto;
}
.sec--contents-quiz {
	margin-top: 30px;
}
.sec--contents-quiz__ttl {
	color: var(--pink);
	font-size: 24px;
	font-weight: 700;
	font-family: var(--font-kaisei);
	line-height: 1.3;
	text-align: center;
	position: relative;
	z-index: 0;
	&::before,&::after {
		content: '';
		display: block;
		width: 37px;
		height: 38px;
		background: url(../img/bg_contents01.svg) no-repeat center/cover;
		position: absolute;
		top: 50%;
		translate: 0 -50%;
		z-index: -1;
	}
	&::before {
		left: 2px;
	}
	&::after {
		right: 2px;
		scale: -1 -1;
	}
}
.sec--contents-quiz__txt span {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: .03em;
	text-align: center;
}
.sec--contents-quiz__box {
	background: #fff;
	border: 2px solid #86692B;
	padding: 28px 13px 48px;
	margin-top: 30px;
	position: relative;
	&::before,&::after {
		content: '';
		display: block;
		width: calc(100% - 11px);
		height: 35px;
		background: url(../img/bg_contents02.svg) no-repeat left top/36px,
					url(../img/bg_contents03.svg) no-repeat right top/36px,
					linear-gradient(to right,var(--text) 0,var(--text) 100%) no-repeat center top 2px/calc(100% - 77px) 1px;
		position: absolute;
		left: 50%;
		translate: -50%;
		pointer-events: none;
		user-select: none;
	}
	&::before {
		top: 5px;
	}
	&::after {
		bottom: 5px;
		scale: 1 -1;
	}
}
.sec--contents-quiz__box__item {
	+& {
		margin-top: 40px;
	}
}
.sec--contents-quiz__box__item__pass-txt span {
	font-size: 18px;
	letter-spacing: .03em;
}
.sec--contents-quiz__box__item__txt {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .03em;
	text-align: center;
	margin-top: 8px;
}
.sec--contents-quiz__box__item__img {
	margin: 25px auto 0;
	+.note-list {
		margin-top: 25px;
	}
}

/* --------- sec--benefit --------- */
.sec--benefit__ttl {
	width: 201px;
	margin-inline: auto;
}
.sec--benefit__txt {
	margin-top: 30px;
}
.sec--benefit__list {
	display: grid;
	gap: 40px;
	margin-top: 20px;
	.sec--benefit__txt {
		margin-top: 10px;
	}
}
.sec--benefit__list__dtl__img {
	margin: 10px auto 0;
}

/* --------- sec--ar --------- */
.sec-ar__ttl {
	width: 250px;
	margin-inline: auto;
}
.sec--ar__txt {
	margin-top: 30px;
}
.sec-ar__img {
	margin: 20px auto 0;
}

/* --------- bg-bottom --------- */
.bg-bottom {
	background: url(../img/bg_common03.png) repeat-x top left/375px 14px,
				url(../img/bg_common10.svg) repeat top left/375px;
	padding-block: 94px 60px;
	margin-top: 80px;
}

/* ------ sec--goods ------ */
.sec-goods {
	background: #FFF3F5;
	&::before,&::after {
		background: url(../img/bg_goods01.png) no-repeat center/cover;
	}
}
.sec--goods__ttl {
	width: 223px;
	margin-inline: auto;
}
.sec--goods__note {
	display: flex;
	width: fit-content;
	margin-inline: auto;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
	font-size: 14px;
	text-align: center;
}
.sec--goods__note__ico {
	width: 22px;
}
.sec--goods__img-wrapper {
	margin-top: 30px;
	+ .sec--store {
		margin-top: 30px;
	}
}
.sec--goods__img-note {
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: .03em;
	text-align: right;
	margin-top: 6px;
}
.sec--goods__img-btn {
	display: block;
	border: 0;
	padding: 0;
	background: 0;
	position: relative;
	cursor: pointer;
	transition: .4s opacity ease-in-out;
	+& {
		margin-top: 15px;
	}
	&::after {
		content: '';
		display: block;
		width: 40px;
		height: 40px;
		background: url(../img/ico_zoom.svg) no-repeat center/cover;
		position: absolute;
		bottom: 8px;
		right: 8px;
		filter: drop-shadow(0 0 4px rgb(0 0 0/.4));
	}
	&:active {
		opacity: .5;
	}
}
.sec--goods__img-dialog {
	width: 92%;
	max-width: 640px;
	border: 0;
	padding: 0;
	background: 0;
	opacity: 0;
	translate: 0 20px;
	transition: opacity .4s ease-in-out, overlay .4s ease-in-out allow-discrete, display .4s ease-in-out allow-discrete;
	&[open] {
		opacity: 1;
		@starting-style {
			opacity: 0;
		}
	}
	&::backdrop {
		background: rgb(255 255 255/.5);
		backdrop-filter: blur(10px);
		opacity: 0;
		transition: opacity .4s ease-in-out, overlay .4s ease-in-out allow-discrete, display .4s ease-in-out allow-discrete;
	}
	&[open]::backdrop {
		opacity: 1;
		@starting-style {
			opacity: 0;
		}
	}
}
.sec--goods__img-btn-close {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0 0 8px auto;
	border: 0;
	padding: 0;
	position: relative;
	background: 0;
	cursor: pointer;
	transition: .4s opacity ease-in-out;
	&::before,&::after {
		content: '';
		display: block;
		width: 30px;
		height: 1px;
		background: #333;
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
	}
	&::before {
		rotate: 45deg;
	}
	&::after {
		rotate: -45deg;
	}
	&:active {
		opacity: .5;
	}
}
.sec--goods__contact {
	color: var(--pink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .03em;
	text-align: center;
	margin-top: 10px;
	span {
		text-decoration: underline;
	}
}

/* ------ footer-bnr-wrapper ------ */
.footer-bnr-wrapper {
	margin-top: 80px;
	&::before,&::after {
		content: '';
		display: block;
		width: 269px;
		height: 42px;
		background: url(../img/bg_common02.svg) no-repeat center/cover;
		margin-inline: auto;
	}
	&::after {
		margin-top: 18px;
		scale: 1 -1;
	}
}
.footer-bnr {
	display: block;
	margin: 18px auto 0;
	transition: .4s opacity ease-in-out;
	&:hover {
		opacity: .5;
	}
}
.footer-bnr-note {
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: .03em;
	text-align: center;
	margin-top: 10px;
}

/* --------- loading-screen --------- */
.loading-screen {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100svh;
	perspective: 300vw;
	background: #fff;
	position: fixed;
	inset: 0;
	z-index: 1000;
	pointer-events: none;
	user-select: none;
}
.loading-screen__door {
	width: min(50%,375px);
	height: 100%;
	background: #FDF1F3;
	position: relative;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	&::before {
		content: "";
		display: block;
		width: 20px;
		height: 110%;
		position: absolute;
		top: -5%;
		background: #F2E2E5;
	}
}
.loading-screen__door--left {
	transform-origin: left center;
	transition: rotate 1s ease-in-out 1.5s;
	&::before {
		left: 0;
		transform-origin: left center;
		transform: rotateY(-90deg);
	}
}
.loading-screen__door--right {
	transform-origin: right center;
	transition: rotate 1s ease-in-out 1.5s;
	&::before {
		right: 0;
		transform-origin: right center;
		transform: rotateY(90deg);
	}
}
.loading-screen__door__frame {
	display: block;
	border: 4px solid #F2E2E5;
	width: 79.488%;
	position: absolute;
	left: 50%;
	translate: -50%;
	&::before {
		content: '';
		display: block;
		width: calc(100% - 28px);
		height: calc(100% - 32px);
		border: 2px solid #F2E2E5;
		position: absolute;
		inset: 0;
		margin: auto;
	}
}
.loading-screen__door__frame--top {
	height: 52.844%;
	top: 4.266%;
}
.loading-screen__door__frame--bottom {
	height: 31.399%;
	bottom: 5.214%;
}
.loading-screen__door__knob {
	display: block;
	width: 25px;
	height: 25px;
	background: #E2BC62;
	border: 3px solid #CAA653;
	border-radius: 50%;
	position: absolute;
	bottom: 38.389%;
	&::after {
		content: '';
		display: block;
		width: 6px;
		height: 6px;
		background: #fff;
		border-radius: 50%;
		opacity: .2;
		position: absolute;
		top: 3px;
	}
}
.loading-screen__door--left .loading-screen__door__knob {
	right: 9px;
	&::after {
		left: 3px;
	}
}
.loading-screen__door--right .loading-screen__door__knob {
	left: 9px;
	&::after {
		right: 3px;
	}
}
.loaded {
	.loading-screen__door--left {
		rotate: y 100deg;
	}
	.loading-screen__door--right {
		rotate: y -100deg;
	}
	.loading-screen {
		opacity: 0;
		scale: 1.5;
		transition: opacity 1.6s ease-in-out 2.7s,scale 1.6s ease-in-out 2.7s;
	}
}

/* --------- footer --------- */
/* ------ info_wrap ------ */
.info_wrap {
	margin: 0 auto;
	padding: 8px 40px 20px;
	position: relative;
	background-color: #fff;
}
.oshitabi_btn {
	display: block;
	border: 4px solid #000;
	background: #fff;
	max-width: 740px;
	margin: 32px auto 0;
	font-size: 18px;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	text-align: center;
	border-radius: 10px;
	padding: 10px 30px 10px 5px;
	position: relative;
	transition: all .3s;
	&::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 30px;
		height: 12px;
		width: 12px;
		border-top: 3px solid #000;
		border-right: 3px solid #000;
		translate: 0 -50%;
		rotate: 45deg;
		transition: all .3s;
	}
	&:active {
		background: var(--primary-color);
		color: #fff;
		border-color: var(--primary-color);
		&::after {
			border-color: #fff;
		}
	}
}
.credit {
	text-align: center;
	margin-top: 16px;
	font-size: 12px;
}
.footer_container {
	position: relative;
	z-index: 100;
	background-color: #fff;
	padding-top: 1px;
}

/* --------- mediaquery --------- */
@media(min-width:751px){
	.sp {
		display: none;
	}
	.pc {
		display: block;
	}
	/* --------- FMT --------- */
	.content_wrap {
		margin-top: 90px;
	}
	.txt-link:hover {
		opacity: .5;
	}

	/* ------ 汎用 ------ */
	/* --- common-box --- */
	.common-box {
		padding-inline: 58px;
		+& {
			margin-top: 150px;
		}
	}

	/* --- sec--join --- */
	.sec--join {
		padding: 24px 38px;
		&::before,&::after {
			width: calc(100% - 13px);
			height: 57px;
			background: url(../img/bg_common07.svg) no-repeat left top/58px,
						url(../img/bg_common08.svg) no-repeat right top/58px,
						linear-gradient(to right,var(--pink) 0,var(--pink) 100%) no-repeat center top 2px/calc(100% - 124px) 1px;
		}
	}
	.sec--join__list__item {
		padding-block: 13px;
	}
	/* --- CTA --- */
	.qr-wrapper {
		display: grid;
		grid-template-columns: 1fr 100px;
		align-items: center;
		gap: 20px;
		background: #EA2157;
		border-radius: 15px;
		padding: 15px;
	}
	.qr-ttl {
		background: #fff;
		border-radius: 10vh;
		color: #EA2157;
		font-weight: 700;
		line-height: 1.2;
		text-align: center;
		padding-block: 5px;
	}
	.qr-txt {
		color: #fff;
		font-size: 14px;
		margin-top: 10px;
	}
	.qr-img {
		border: 2px solid #fff;
		border-radius: 10px;
		overflow: hidden;
	}
	/* --- comingsoon,finish --- */
	.comingsoon::after {
		font-size: 18px;
	}
	.finish::after {
		white-space: pre;
		content: "終了\Aしました";
	}

	/* --------- sec--lead --------- */
	.sec--lead__period	{
		max-width: 400px;
		margin-inline: auto;
	}
	.toc-list {
		grid-template-columns: repeat(4,1fr);
		gap: 10px;
	}
	.toc-btn:hover {
		opacity: .5;
	}
	/* --------- sec--contents --------- */
	.sec--contents {
		margin-top: 90px;
	}
	.sec--contents__ttl {
		width: 240px;
	}
	.sec--contents-quiz__ttl {
		&::before {
			left: calc(50% - 155px);
		}
		&::after {
			right: auto;
			left: calc(50% + 118px);
		}
	}
	.sec--contents-quiz__box {
		padding-inline: 28px;
		&::before,&::after {
			width: calc(100% - 13px);
			height: 57px;
			background: url(../img/bg_contents02.svg) no-repeat left top/58px,
						url(../img/bg_contents03.svg) no-repeat right top/58px,
						linear-gradient(to right,var(--text) 0,var(--text) 100%) no-repeat center top 3px/calc(100% - 124px) 1px;
		}
	}
	.sec--contents-quiz__box__item__img {
		max-width: 286px;
	}

	/* --------- sec--benefit --------- */
	.sec--benefit__ttl {
		width: 240px;
	}
	.sec--benefit__list__dtl__img {
		max-width: 315px;
	}

	/* --------- sec--ar --------- */
	.sec-ar__ttl {
		width: 300px;
	}
	.sec-ar__img {
		max-width: 286px;
	}

	/* --------- bg-bottom --------- */
	.bg-bottom {
		margin-top: 100px;
	}

	/* ------ sec--goods ------ */
	.sec--goods__ttl {
		width: 280px;
	}
	.sec--goods__img-btn {
		max-width: 315px;
		margin-inline: auto;
		&:hover {
			opacity: .5;
		}
	}
	.sec--goods__img-btn-close:hover {
		opacity: .5;
	}

	/* ------ footer-bnr-wrapper ------ */
	.footer-bnr {
		max-width: 524px;
		&:hover {
			opacity: .5;
		}
	}

	/* --------- loading-screen --------- */
	.loading-screen{
		&::before,&::after {
			content: '';
			display: block;
			width: calc(50% - 375px);
			height: 100%;
			background: url(../img/bg_common10.svg) repeat top left/375px;
			position: absolute;
			top: 0;
			z-index: -1;
		}
		&::before {
			left: 0;
		}
		&::after {
			right: 0;
		}
	}

	/* --------- footer --------- */
	.info_wrap {
		margin: 0 auto;
		padding: 8px 20px 100px;
	}
	.oshitabi_btn {
		padding: 15px;
		font-size: 20px;
		&:hover {
			background: var(--primary-color);
			border-color: var(--primary-color);
			color: #fff;
			&::after {
				border-color: #fff;
			}
		}
	}
}

@media(max-width:750px){
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}