@charset "utf-8";

/*  ===============================
			ROOT
===============================*/

/* 1200px < window */
:root {
	--windowMinW: 1024px;
	--windowMaxW: none;
	--cntInrMaxW: 960px;
	--bigInrMaxW: 1200px;
	--secBodyWidth: 960px;

	--mainMaxW: 480px;

	/* js */
	--documentHeight: ;

	--commonSidePadding: 40px;
	--serif: "Noto Serif JP", serif;
	--sans-serif: "Noto Sans JP", sans-serif;
	--en: "EB Garamond", serif;

	--fzBody: 16px;
	--letterBody: 1px;
	--lh: 1.4;

	--documentTextAlign: left;
	--primaryColor: #000aff;
	--secondaryColor: #ff6c00;
	--blueColor: #004bb1;
	--redColor: #f00;
	--lightGreenColor: #52bf3f;
	--lightBlueColor: #00bcbf;
	--grayColor: #cdd6dd;
	--textColor: var(--lightTextColor);
	--lightTextColor: #fff;
	--darkTextColor: #000064;
	--bgColor: #fff;
	--baseBgColor: #f4f4f4;

	--sec_bgImage: url(../images/sec_inr--bg.png) repeat;
}

html {
	background-color: var(--baseBgColor);
}

body {
	margin: 0 auto;
	background-color: var(--bgColor);
	color: var(--textColor);
	font-family: var(--serif);
	font-size: var(--fzBody);
	line-height: var(--lh);
	letter-spacing: var(--letterBody);
	text-align: var(--documentTextAlign);
	overflow-x: hidden;

	/*  */
	display: flex;
	flex-wrap: wrap;
	min-height: 100svh;

	background: #0f0d0d;
}

img {
	width: auto;
}

.required {
	padding-left: 5px;
	color: var(--redColor);
	font-size: clamp(8px, 2.5vw, 12px);
}

.inr {
	width: 100%;
	max-width: var(--cntInrMaxW);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--commonSidePadding);
	padding-right: var(--commonSidePadding);
}

/* window = 1025px ~ 1199px */
@media screen and (min-width: 1025px) and (max-width: 1199px) {
	:root {
		--windowMinW: 1024px;
		--windowMaxW: 100%;
		--cntInrMaxW: 960px;
		--bigInrMaxW: 1200px;
	}
}

/* window = 769px ~ 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
	:root {
		--windowMinW: 1024px;
		--windowMaxW: 100%;
		--cntInrMaxW: 960px;
		--bigInrMaxW: 1200px;
	}
}

/* window < 768px */
@media screen and (max-width: 768px) {
	:root {
		--windowMinW: none;
		--windowMaxW: 100%;
		--cntInrMaxW: 480px;
		--bigInrMaxW: 100%;
	}

	.inr {
		padding-left: var(--commonSidePadding);
		padding-right: var(--commonSidePadding);
	}

	.inr--mid {
		padding-right: 0;
		padding-left: 0;
	}
}

/* init */

body {
	position: relative;
	overflow-x: hidden;
}

/* fade init */

.sec_body {
	opacity: var(--dvModeAlpha);
}

.fade.is-show,
.fade--show,
.sec.is-show .sec_body {
	--y: 20;
	animation: fadeInToTop 1.5s forwards 0s;
	will-change: opacity, transform, animation;
}

.fade {
	opacity: 0;
}

.fade--show {
	animation-duration: 0.6s;
}

/*  ===============================
	animation & transition
===============================*/

/*  ===============================
			global
===============================  */
.Gcontainer {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.Ghdr {
	position: absolute;
	transition: 0.7s ease-in-out;
	margin-left: auto;
	margin-right: 2rem;
	height: 100svh;
}

.Ghdr_ttl {
	z-index: 2;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	writing-mode: vertical-rl;
	top: 2em;
	right: 20px;
	margin: auto;
	font-family: var(--sans-serif);
	font-size: 13px;
}

/* bgFixed
===============================
*/

.fixedBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

.fixedBg_list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	filter: brightness(0.5);
}

.fixedBg_item {
	width: calc(100% / var(--fixedBg-pc-columns, 4));
	height: auto;
	position: relative;
	opacity: 0;
	transition: opacity var(--fixedBg-fade-duration, 0.8s) ease-in-out;
}

.fixedBg_item.is-visible {
	opacity: 1;
}

.fixedBg_item.is-glitching img {
	animation: glitchFlicker calc(var(--fixedBg-fade-duration, 1s) / 2) ease-in-out infinite;
}

.fixedBg_item img {
	width: 100%;
	height: auto;
	display: block;
}

/* ノイズ演出 */
@keyframes glitchFlicker {
	0%,
	100% {
		opacity: 1;
	}

	10% {
		opacity: 0.8;
	}

	20% {
		opacity: 1;
	}

	30% {
		opacity: 0.6;
	}

	40% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}

	60% {
		opacity: 0.8;
	}

	70% {
		opacity: 0.3;
	}

	80% {
		opacity: 0.6;
	}

	90% {
		opacity: 0.2;
	}
}

/* scrollGuide
===============================
*/
.scrollGuide {
	--h: 40vh;
	display: inline-block;
	position: absolute;
	right: 20px;
	bottom: 0;
	padding: 10px 10px calc(var(--h) + 5px);
	font-size: clamp(9px, 3.1vw, 11px);
	line-height: 1;
	letter-spacing: 0;
	writing-mode: vertical-lr;
	overflow: hidden;
	z-index: 2;
}

.scrollGuide::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: var(--h);
	background: rgba(87, 87, 87, 0.4);
}

.scrollGuide::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: var(--h);
	background: var(--textColor);
	animation: scrollGuide 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes scrollGuide {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

/* section header
===============================
*/

.sec_hdr {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transition: opacity 0.7s ease-in-out, clip-path 0.7s ease-in-out;
}

.sec_hdr.is-slide-in {
	opacity: 1;
	clip-path: inset(0 0 0 0);
}

/* infinite slider
===============================
*/

.infiniteSlider {
	width: 100vw;
	overflow: hidden;
}

/* 矢印を非表示 */
.infiniteSlider .splide__arrows,
.infiniteSlider .splide__arrow {
	display: none !important;
}

.infiniteSlider_slide {
	width: calc(100vw / 6) !important;
	flex-shrink: 0;
}

.infiniteSlider_img {
	width: 100%;
	height: auto;
	display: block;
}

/* floating
===============================
*/
.floating {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px 0;
	background: #fff;
	z-index: 80;
	transition: 0.8s;
}

.floating.is-hide {
	opacity: 0;
	pointer-events: none;
}

.floating_group {
	display: flex;
	justify-content: space-around;
	max-width: 480px;
	margin: 0 auto;
}

.floating_item {
	width: 100%;
	text-align: center;
}

/* btn
===============================
*/
.btn {
	display: block;
	width: 79%;
	margin: 0 auto;
	padding: 4% 0;
	/* border-radius: 50px; */
	color: var(--lightTextColor);
	font-weight: 700;
	font-size: clamp(10px, 4vw, 19px);
	text-align: center;
	cursor: pointer;

	width: 100%;
	max-width: 200px;
	font-weight: 500;
	background-color: var(--primaryColor);
	font-size: clamp(10px, 4vw, 16px);
	padding: 2% 0;
}

.btn_request {
	width: 88.8%;
	background-color: var(--secondaryColor);
}

.btn_submit {
	margin: 6% auto;
	background-color: var(--secondaryColor);
}

.btn_back {
	color: var(--secondaryColor);
	background: transparent;
	border: 1px solid var(--secondaryColor);
}

.btn_finish {
	margin: 50px auto;
	background: var(--secondaryColor);
	color: var(--lightTextColor);
}

/* footer
===============================
*/
.Gftr {
	padding: 134px 0 40px;
	background: url(../images/ftr_bg.jpg) no-repeat center / cover;
	text-align: center;
}

.sns_list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
}

.Gftr_anchor {
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
}

.Gftr_link {
	--verticalPadding: 4em;
	padding-top: var(--verticalPadding);
	padding-bottom: var(--verticalPadding);
	/* margin-top: 1rem; */
	text-align: center;
	font-size: clamp(14px, 4vw, 18px);
}

.Gftr_copy {
	font-size: clamp(15px, 4vw, 15px);
	font-weight: 500;
	font-family: var(--en);
}

/* Gmain
===============================
*/
.Gmain {
	width: 100%;
}

/* sec , subSec
===============================
*/

section.feature:not(.mv),
section.lesson:not(.mv),
section.grade:not(.mv),
section.achievement:not(.mv),
section.comparison:not(.mv),
section.about:not(.mv),
section.company:not(.mv),
section.contact:not(.mv) {
	opacity: 0;
	transition: 0.8s;
}

section.feature.is-show,
section.lesson.is-show,
section.grade.is-show,
section.achievement.is-show,
section.comparison.is-show,
section.about.is-show,
section.company.is-show,
section.contact.is-show {
	opacity: 1;
}

.feature,
.lesson,
.grade,
.achievement,
.comparison,
.about,
.company,
.contact {
	max-width: var(--mainMaxW);
	margin: 0 auto;
}

/*  ===============================
		  component
===============================*/

/* slider
===============================
*/
.slider_arrow--next,
.slider_arrow--prev {
	content: "";
	position: absolute;
	display: flex;
	width: 12%;
	height: 24%;
	top: clamp(10px, 18vw, 85px);
	background: url(../images/arrow.png) center / 35% no-repeat #fafafa;
	border: 2px solid #f0f3f5;
	border-radius: 10px;
	z-index: 1;
}

.slider_arrow--next {
	right: 0;
}
.slider_arrow--prev {
	left: 0;
	rotate: 180deg;
}

/* hamburger
===============================
*/
.Gnavi {
	position: fixed;
	width: 100%;
	height: 7%;
	z-index: 100;
}
.hamburger_checkbox,
.Gnavi_btn {
	position: absolute;
	top: 20%;
	right: 4%;
	width: 46px;
	height: 46px;
	cursor: pointer;
	transition: all 0.5s;
}

.hamburger_checkbox {
	opacity: 0;
	z-index: 120;
}
.Gnavi_btn {
	border-radius: 7px;
	background: var(--primaryColor);
	z-index: 110;
}
.hamburger {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 23px;
	height: 16px;
}

.hamburger span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2.4px;
	background: var(--lightTextColor);
	transition: all 0.5s;
}
.hamburger span:nth-of-type(1) {
}
.hamburger span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
.hamburger span:nth-of-type(3) {
	top: 100%;
	transform: translateY(-100%);
	width: 15px;
}

.hamburger_checkbox:checked ~ .Gnavi_btn .hamburger span:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(135deg);
}
.hamburger_checkbox:checked ~ .Gnavi_btn .hamburger span:nth-of-type(2) {
	transform: translate(50%, -50%);
	opacity: 0;
}
.hamburger_checkbox:checked ~ .Gnavi_btn .hamburger span:nth-of-type(3) {
	top: 50%;
	transform: translateY(-50%) rotate(-135deg);
	width: 23px;
}

.hamburger_checkbox:checked ~ .Gnavi_inr {
	transform: translateX(0%);
}

/*  ===============================
		  project
===============================*/

/* sec_basic
===============================
*/

.sec_inr {
	text-align: center;
}

/* hero
===============================
*/
.hero {
	text-align: center;
	width: 100vw;
	height: 100svh;
	position: relative;
}

.hero_picImg {
	width: 100vw;
	height: 100svh;
	object-fit: cover;
	object-position: center;
	/*	max-width: 480px;//他画像とサイズあわせる場合は付与してください*/
}

.pop {
	pointer-events: none;
	position: absolute;
	z-index: 10;
	inset: 0;
	display: flex;
	align-items: center;
	transition: 1s;
}

.pop_ttl {
	display: block;
}

.pop_ttl--01 {
	margin-bottom: 32px;
}
.pop_ttl--02 {
	margin-bottom: 126px;
}

@media (min-width: 769px) {
	.hero_body {
		width: 100%;
	}
	.hero_img {
		max-width: 1200px;
	}
}

/* intro
===============================
*/

.sec--intro {
	min-height: 100svh;
	background: #0f0d0d url(../images/intro.jpg) no-repeat center / cover;
	display: flex;
	align-items: center;
}

.sec_body--intro {
	color: #fff;
	font-size: 17px;
	line-height: 38px;
	font-weight: 500;
}

.intro_block:not(:last-child) {
	margin-bottom: 36px;
}

.intro_block p {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.intro_block p.is-fade-in {
	opacity: 1;
	transform: translateY(0);
}

/* release
===============================
*/

.sec--release {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sec_inr--release {
	background: var(--sec_bgImage);
	text-align: center;

	margin-top: 94px;
	margin-bottom: 137px;

	padding-top: 64px;
	padding-bottom: 48px;
}

.sec_hdr--release {
	padding-bottom: 64px;
}

.sec_body--release {
	text-align: center;
	color: #fff;
	font-size: 17px;
	font-size: clamp(16px, 4vw, 17px);
	line-height: 38px;
	font-weight: 500;
}

.product_list {
	display: grid;
	grid-template: auto / 1fr 1fr 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px 4%;
}

.product_item {
	text-align: center;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 0;
}

.product_names {
	font-size: 16px;
	font-weight: 700;
	line-height: 0.8lh;

	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-bottom: 20px;
}

.product_img {
	height: 187px;
}

.product_notes {
	font-size: 12px;
	font-weight: 400;
	font-family: var(--sans-serif);
	line-height: 0.7lh;
	padding-top: 12px;
	margin-bottom: 30px;
}

/*初回限定版のコンテンツ*/
.product_content {
	font-weight: 500;

	/*折り返さない*/
	white-space: nowrap;
}

@media (max-width: 768px) {
	.product_contents {
		white-space: normal;
	}
}

/* songs
===============================
*/

.sec--songs {
	display: flex;
	align-items: center;
}

.sec_inr--songs {
	background: var(--sec_bgImage);
	text-align: center;

	padding-left: 62px;
	padding-right: 62px;

	margin-bottom: 100px;

	padding-top: 52px;
	padding-bottom: 84px;
}

.sec_hdr--songs {
	padding-bottom: 50px;
}

.sec_body--songs {
	text-align: center;
}

.topic_ttl {
	font-size: 20px;
	font-size: clamp(15px, 4vw, 20px);
	font-weight: 900;
	padding: 5px 0;
	background-color: #fff;
	color: var(--darkTextColor);
	display: block;
}

.topic_ttl--songs {
	margin-bottom: 50px;
}

.songs_list {
	text-align: left;
}

.song_ttl {
	position: relative;
	display: flex;
	cursor: pointer;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-right: 8px;
	font-size: clamp(15px, 4vw, 18px);
	font-weight: 600;

	transition: 0.8s;
}

.song_ttl:hover {
	background-color: #fff3;
}

/* 横棒（−のベース） */
.song_ttl::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 2px;
	background: currentColor;
}

/* 縦棒（＋のときだけ見せる） */
.song_ttl::before {
	content: "";
	position: absolute;
	right: 11px;
	width: 2px;
	height: 24px;
	background: currentColor;
	transition: 0.3s;
}

.song_ttl.is-active::before {
	rotate: calc(90deg + 360deg * 2);
}

.song {
	border-bottom: 1px solid #fff;
}

.song:first-child {
	border-top: 1px solid #fff;
}

.song_subTtl {
	font-size: clamp(15px, 4vw, 18px);
	font-weight: 700;
	padding-top: 46px;
}

.song_list {
	font-size: clamp(12px, 4vw, 16px);
	font-weight: 600;
	line-height: 1.6lh;
}

/*animaition*/

.song_list {
	transition: 0.4s ease;
}

/* benefits
===============================
*/

.sec_inr--benefits {
	background: var(--sec_bgImage);

	margin-top: 100px;
	padding-top: 114px;
	padding-bottom: 98px;
}

.sec_hdr--benefits {
	padding-bottom: 100px;
}

/*早期特典*/
.eager {
	margin-bottom: 104px;
}

.topic_ttl--eager {
	display: inline-block;
	min-width: 305px;
	margin-bottom: 24px;
}

.eager_ttl {
	font-size: clamp(16px, 4vw, 18px);
	font-weight: 600;
	margin-bottom: 16px;
}

.eager_texts {
	font-size: clamp(12px, 4vw, 13px);
	font-weight: 300;
	font-family: var(--sans-serif);

	margin-bottom: 34px;
}

/*shop*/
.topic_ttl--shop {
	margin-bottom: 68px;
}

.shop_list {
	display: grid;
	grid-template: auto / 1fr 1fr 1fr;
	gap: 60px 63px;
}

.shop_item {
	--verticalSpacer: 15px;

	text-align: center;
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	gap: 0;
}

.shop_names {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: center;

	line-height: 1.8;
	/* width: 100%; */
	font-size: clamp(12px, 4vw, 15px);
	font-weight: 600;
}

/* 上記オリジナル特典対象店舗は対象外となります。　など*/
/* .shop_attention {
	display: block;
	margin-top: 27px;
	color: #fff;
	font-size: 13px;
	font-weight: 300;

    text-align: left;
	padding-left: 20px;
	position: relative;
	line-height: 1.8lh;
} */

/* .shop_attention p:before{
content : "※";
position: absolute;
left: 0;
} */

/* .shop_desc {
	width: 100%;
	margin-top: var(--verticalSpacer);
	font-size: 13px;
	font-weight: 500;
	line-height: 2;
	font-size: clamp(11px, 3.3vw, 13px);
} */

.shop_thumb {
	margin-top: 10px;
}

.shop_img {
	width: 100%;
}

.shop_btn {
	max-width: 317px;
	font-size: 16px;
	font-weight: 800;
}

.shop_ftr {
	margin-top: 60px;
}

.shop_notes {
	/* margin-top: calc(var(--verticalSpacer) - 5px); */
	font-size: clamp(10px, 2.6vw, 13px);
	font-weight: 300;
	margin-bottom: 90px;
	text-align: left;
}

/* .shop_notes--ftr {
	padding-left: 1em;
	text-indent: -1em;
	font-weight: 200;
} */

/* grade
===============================
*/
.grade_inr {
	padding-bottom: 30px;
}

.grade_img {
	position: relative;
}

.grade_overlay {
	position: absolute;
	top: 50%;
	left: 52.5%;
	width: 41.3%;
	transform: translateY(-50%);
}

.grade_btn {
	padding: 11% 0;
	border: 1px solid var(--lightTextColor);
	color: var(--lightTextColor);
	font-weight: 700;
	font-size: clamp(10px, 3.95vw, 18px);
	text-align: center;
}

.grade_btn span:before {
	content: "詳しく見る ▼";
}

.grade_unit .is-active .grade_btn span:before {
	content: "閉じる ▲";
}

.grade_unit .is-active {
	max-height: 1000vh;
}

.grade_text {
	padding: 4% 0;
}

/* about
===============================
*/
.about_body {
	padding: 0 20px;
}

.about_unit {
	margin-bottom: 3%;
}

.about_btn {
	padding: 4% 4% 4% 7%;
	background: var(--primaryColor);
	color: var(--lightTextColor);
	font-weight: 700;
}

.about_cat {
	position: relative;
	font-size: clamp(10px, 4.8vw, 23px);
}

.about_cat:after {
	content: "▼";
	position: absolute;
	top: 0;
	right: 0;
}

.about_unit .is-active .about_cat:after {
	content: "▲";
}

.about_contents {
	padding: 10% 0 2%;
}

.about_item img {
	padding: 0 11%;
}

.about_address {
	padding: 5% 11%;
	font-size: clamp(7px, 2.7vw, 13px);
	line-height: 200%;
}

/* contact
===============================
*/
.contact {
	padding-bottom: 50px;
}

.sec_ttl--contact {
	padding: 50px 0;
	font-weight: 700;
	font-size: clamp(12px, 4.5vw, 22px);
	text-align: center;
}

.form_item {
	margin: 15px 0;
	padding: 0 7%;
}

.form_text {
	padding: 10px 0;
	font-size: clamp(9px, 2.7vw, 13px);
	font-weight: 500;
}

.form_btns {
	margin-top: 10%;
	text-align: center;
}

.form_error {
	margin-top: 0.5em;
	color: red;
	font-size: 0.85em;
}

/* tab switch */

.tab_wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
}

.tab_label {
	position: relative;
	padding: 10px 0.5em 10px 0;
	outline-offset: 1px;
	color: var(--lightTextColor);
	font-weight: 700;
	font-size: clamp(10px, 4.6vw, 22px);
	white-space: nowrap;
	text-align: center;
	order: -1;
	z-index: 1;
	cursor: pointer;
	flex: 1;
	filter: grayscale(80%);
}

.tab_label--ess {
	outline: 2px solid var(--lightBlueColor);
	background: var(--lightBlueColor);
}

.tab_label--jhss {
	outline: 2px solid var(--lightGreenColor);
	background: var(--lightGreenColor);
}

.tab_label:not(:last-of-type) {
	margin-right: 7%;
}

.tab_label span:before {
	content: "▼";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.tab_content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}

.tab_switch:checked + .tab_label {
	filter: grayscale(0%);
}

.tab_switch:checked + .tab_label + .tab_content {
	height: auto;
	overflow: auto;
	padding: 15px;
	opacity: 1;
	transition: 0.5s opacity;
}

.tab_switch {
	display: none;
}

.form_content {
	transition: 1s;
}

.form_content:not(.is-active),
.form_content:not(.is-active) * {
	max-height: 0;
	opacity: 0;
	pointer-events: none;
}

/* form confirm */

.form_list--confirm {
	margin-top: 2rem;
}

.form_item--confirm {
	margin: 0;
}

.form_term {
	margin-top: 1em;
	font-weight: normal;
	text-align: left;
	background-color: #ececec;
}

.form_desc {
}

.form_term,
.form_desc {
	width: 100%;
	padding: 0.5em;
}

.form_btn:not(:first-child) {
	margin-top: 1em;
}

/* init */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="tel"],
input[type="url"],
select {
	width: 100%;
	padding: 4%;
	background-color: #fff;
	font-size: clamp(8px, 3.4vw, 16px);
	box-shadow: 0 0 0 1px var(--grayColor) inset;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus {
	outline: none;
	box-shadow: 0 0 0 2px var(--blueColor) inset;
}

::placeholder {
	color: var(--grayColor);
}

.radio-list {
	display: flex;
	flex-flow: row wrap;
	padding: 5px 0;
}
.radio-list li {
	padding: 5px 0;
}
.radio-list li:not(:last-child) {
	padding-right: 4.6%;
}

input[type="radio"] {
	display: none;
}

.square_checkbox {
	position: relative;
	padding-left: 25px;
	font-size: clamp(8px, 3.4vw, 16px);
	white-space: nowrap;
	cursor: pointer;
}

.square_checkbox:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	border: 1px solid var(--grayColor);
	border-radius: 5px;
	font-size: clamp(8px, 3.4vw, 16px);
}

.square_checkbox:before {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 4px;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-radius: 3px;
	background: var(--blueColor);
}

.square_checkbox:hover:after {
	border-color: var(--blueColor);
}

input[type="radio"]:checked + .square_checkbox:before,
input[type="checkbox"]:checked + .square_checkbox:before {
	opacity: 1;
}

/* validation */
.validation {
	padding: 3rem 7%;
	color: red;
}

.validation_texts {
	margin-top: 1rem;
}

/* confirm_text */
.confirm_text {
	padding: 0 7%;
	font-size: clamp(8px, 3.4vw, 16px);
	text-align: center;
}

.form_term,
.form_desc {
	font-size: clamp(8px, 3.4vw, 16px);
}

/* finish */
.finish_texts {
	margin-top: 2em;
	text-align: center;
}

/*br*/
.brPc {
	display: block;
}

@media screen and (max-width: 768px) {
	.brPc {
		display: inline;
	}
	.brSp {
		display: block;
	}
}

.dib {
	display: inline-block;
}

.noWrap {
	white-space: nowrap;
}

/* loading
===============================
*/

.loading_control {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 15;
}

.loading_btn {
	padding: 1rem;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	transition: 2s ease-in-out;
}

.loading_bgImg {
	width: 100vw;
	min-height: 100vh;
	object-fit: cover;
	object-position: center;
}

.pop:not(.is-active) {
	position: absolute;
	opacity: 0;
	transition: 1.5s ease-in-out;
	z-index: 10;
}
