@charset "utf-8";

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

:root {
	--mainMaxW: 960px;

	/* js */
	/* --documentHeight: ; */

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

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

	--documentTextAlign: left;
	--primaryColor: #ff9417;
	/* --secondaryColor: #ff6c00; */
	--blueColor: #004bb1;
	--redColor: #f00;
	--lightGreenColor: #52bf3f;
	--lightBlueColor: #00bcbf;
	--grayColor: #cdd6dd;
	--textColor: var(--lightTextColor);

	--lightTextColor: #fff;
	--darkTextColor: #0f2364;
	--bgColor: #000;
	--baseBgColor: #000;
	/* --LightBgColor: #135980; */
}

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

body {
	margin: 0 auto;
	background-color: var(--baseBgColor);
	color: var(--textColor);
	font-family: var(--sans-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;
}

img {
	width: auto;
}

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

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

/*  ===============================
			global
===============================  */
.Gcontainer {
	overflow: hidden;
}

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

/* navigation
===============================
*/
.Gnavi_inr {
	position: fixed;
	top: 0;
	right: 0;
	transform: translateX(100%);
	width: 100%;
	height: 100vh;
	transition: all 0.5s;
	z-index: 80;
}
.Gnavi_list {
	display: flex;
	flex-flow: column wrap;
	align-items: center;
	gap: 2.4rem;
	height: 100vh;
	padding-top: 60px;
	background: rgba(2, 121, 57, 0.95);
	font-weight: 700;
	font-size: clamp(12px, 4.5vw, 22px);
}
.Gnavi_item {
	color: var(--lightTextColor);
}

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

.btn {
	display: inline-block;
	padding: 1em 2rem;
	width: 100%;
	/* max-width: 230px; */
	line-height: 1;
	border-radius: 0;
	text-align: center;
	background-color: var(--primaryColor);

	font-size: 14px;
	font-weight: 600;
	color: var(--darkTextColor);

	cursor: pointer;
	transition: 0.3s ease;
}

.btn:hover {
	opacity: 0.7;
}

.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: 64px 0 36px;
	background-color: #000;
	text-align: center;
}

.Gftr_copy {
	color: var(--primaryColor);
	font-size: clamp(10px, 4vw, 12px);
	font-family: var(--en);
}

/* sns_list
===============================
*/

.sns_list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6.7rem;

	margin-bottom: 54px;
}
.sns_item {
	width: 3rem;
	height: 3rem;
}

.sns_img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (min-width: 769px) {
	.sns_anchor:hover {
		opacity: 0.8;
	}
}

.sns_img {
	position: relative;
	z-index: 1;
	fill: #0f0f0f;
	width: auto;
}

.official-link {
	text-align: center;
	margin-bottom: 5.6rem;
}

.official-link_anchor {
	color: var(--primaryColor);
	font-size: 16px;
	font-weight: 600;
	font-family: var(--sans-serif);
	text-decoration: none;
	transition: 0.3s ease;
}

.official-link_anchor:hover {
	opacity: 0.7;
}

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

.sec {
	width: 100%;
}

.inr {
	max-width: var(--mainMaxW);
	margin: 0 auto;
}

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

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

.sec_hdr {
	position: relative;
	text-align: center;
	display: inline-block;
}

.sec_inr {
	position: relative;
	z-index: 2;
}

.sec_subTtl {
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -35%;
}

.topic_ttl {
	width: 100%;
	text-align: left;
	background-color: var(--primaryColor);
	color: var(--darkTextColor);
	font-size: 20px;
	font-weight: 800;
	padding-left: 8px;
	padding-top: 2px;
	padding-bottom: 2px;
}

/* hero
===============================
*/

.hero_body {
	text-align: center;
	overflow: hidden;
}

.hero_img {
	/*	max-width: 480px;//他画像とサイズあわせる場合は付与してください*/
}

@media (min-width: 769px) {
	.hero_body {
		width: 100vw;
		height: 112svh;
		/* position: relative; */
	}
	.hero_img {
		object-fit: cover;
		max-width: none;
		width: 100%;
		height: 112svh;
	}
}

.pop_ttls {
	display: flex;
	/* flex-direction: column; */
	/* gap: 8px; */
	position: absolute;
	bottom: 4em;
	left: 4.2em;
	z-index: 1;
	gap: 1.8em;
}

/* .pop_ttl--detail{
	padding-left: ;
 } */

/* .hero_label{
	background-color: var(--primaryColor);
} */

.hero_texts {
	height: 100svh;
	display: flex;
	justify-content: space-between;
	writing-mode: vertical-rl;
	/* font-family: var(--en); */
	/* color: var(--darkTextColor); */
	/* font-weight: 600; */
	align-items: flex-start;
	/* font-size: 12px;
	font-weight: 500; */

	position: absolute;
	top: 0;
	right: 1.5em;
}

/*SPECIAL SITE*/
.hero_texts--specials {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

@media (min-width: 769px) {
	.hero_texts--specials {
		padding-top: 3.4em;
	}
}

/*SCLOLL*/
.hero_texts--scroll {
	padding-top: 7px;
	display: flex;
	gap: 6px;
	align-items: center;
	position: relative;
}

.hero_texts--scroll:after {
	content: "";
	background-color: #fff;
	height: 78px;
	width: 1px;
}

/*EVE Under Blue Special Site*/
/* .hero_texts--eve{
    position: fixed;
    right: 5px;
    top: 50%;
	transform: translateY(-50%);
	z-index: 999;
} */

/* infor
===============================
*/
/*info--全体*/
.sec--information {
	position: relative;
	padding-top: 80px;
	padding-bottom: 170px;
	text-align: center;
	background-color: var(--bgColor);
}

@media screen and (min-width: 769px) {
	.sec--information:after {
		content: "";
		position: absolute;
		width: 100%;
		height: 100px;
		z-index: 0;

		left: 0;
		top: -100px;
		background-image: linear-gradient(0deg, var(--bgColor), transparent 70%);
	}
}

.sec_ttl--information {
	color: var(--primaryColor);
	font-size: 39px;
	font-weight: 500;
	/* letter-spacing: 0.2em; */
	margin-bottom: 4.6rem;
}

.ttl_sub--information {
	font-size: 32px;
	padding-bottom: 1.7rem;
	display: block;
}

.theme {
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
}

.theme_texts {
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.2em;
	margin-bottom: 3.8rem;
	line-height: 2.4lh;
}

.theme_pic {
	margin-bottom: 6.3rem;
}

.theme_img {
	width: 100%;
}

.pic_anchor {
	transition: opacity 0.3s ease;
}

.pic_anchor:hover {
	opacity: 0.7;
}

.theme_video {
	margin-bottom: 5.8rem;
}

.theme_copy {
	font-size: 13px;
	font-weight: 500;
}
/* .sec--info:after{
	left: 0;
	right: 0;
bottom: 0;
z-index: 10;
background-image: linear-gradient(0deg, var(--baseBgColor), transparent 70%);
} */

/* .sec_hdr--info.sec--info{
	margin-bottom:84px;
} */

.

/*disc*/

.topic_ttl--disc {
	margin-bottom: 34px;
}

.disc--info_list {
	display: flex;
	flex-direction: column;
	text-align: left;
	margin-bottom: 80px;
}

.disc--info_item:not(:last-child) {
	margin-bottom: 40px;
}

.disc--info_ttl {
	font-family: var(--en);
	font-size: 18px;
	color: var(--primaryColor);
	font-weight: bold;
	margin-bottom: 4px;
}

.disc--info_texts {
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	color: var(--textColor);
	line-height: 2.2lh;
}

.disc--info_notes {
	color: #fff;
	font-size: 15px;
	font-weight: 100;
	color: var(--textColor);
}

.disc--info_texts--mv {
	display: flex;
	margin-top: 16px;
}
.disc--info_text--mv {
	margin-right: 16px;
}
.disc--info_note--mv {
	font-size: 13px;
}

/*`disc---imgのリスト*/
.disc_list {
	display: flex;
	justify-content: center;
	gap: 110px;
	text-align: center;
	margin-bottom: 150px;
}

.disc_ttl {
	color: var(--primaryColor);
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.2em;

	margin-top: 25px;
}

.disc_texts {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 8px;
}

.disc_notes {
	font-size: 12px;
	font-weight: 300;
}

.solid {
	width: 50px;
	margin: 0 auto;
	margin-top: 16px;
	margin-bottom: 16px;
}

/*cd--パッケージ概要*/
.cd_heading {
	color: var(--primaryColor);
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 0.2em;
	margin-bottom: 70px;
}

.cd_heading hr {
	color: #fff;
}

.cd_list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: repeat(1, 1fr);
	gap: 46px;
	margin-bottom: 60px;
}

.cd_list_item {
	display: flex;
	gap: 70px;
}

.cd_pic img {
	max-width: 378px;
}

.cd_detail {
	text-align: left;
}
.cd_detail--special {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cd_ttl {
	font-size: 16px;
	letter-spacing: 0.2em;
	font-weight: 700;
	color: var(--primaryColor);
	margin-bottom: 8px;
}

.cd_texts {
	font-size: 14px;
	font-weight: 300;
	line-height: 2lh;
}

.cd_texts--limited {
	margin-top: 16px;
}

.cd_btn {
	margin-bottom: 16px;
	max-width: 260px;
}

.bottom_texts {
	border: 1px solid #fff;
	display: inline-block;
	padding: 1.5em 2em;
	font-size: 13px;
	line-height: 1.6lh;
}

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

.sec--benefits {
	padding-top: 140px;
	padding-bottom: 180px;
}

.sec_hdr--benefits {
	margin-bottom: 62px;
}

.benefits_texts {
	font-size: 15px;
	font-weight: 600;
	line-height: 2.4lh;
	margin-bottom: 90px;
}

.brPc {
	display: block;
}

/*`早期予約特典*/
.topic_ttl--eager {
	margin-bottom: 64px;
}

.eager_list {
	margin-bottom: 120px;
	display: flex;
	gap: 60px;
	justify-content: center;
}

.eager_ttl {
	color: var(--primaryColor);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.2em;
	margin-bottom: 54px;
	line-height: 2.4lh;
}
.eager_ttl p:not(:first-child) {
	font-weight: 400;
	font-size: 15px;
}

.eager_pic img {
	max-width: 378px;
}

.eager_texts {
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 30px;
	display: flex;
}

.label--eager {
	color: var(--darkTextColor);
	font-weight: bold;
	background-color: var(--primaryColor);
	padding: 1px 8px;
	margin-right: 12px;
	display: inline-block;
}

.eager_notes {
	font-size: 13px;
	font-weight: 300;
	line-height: 2lh;
}

.indent {
	margin-left: 14px;
	display: block;
}

/*shop--店舗特典*/

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

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

.shop_item {
	--verticalSpacer: 15px;

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

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

	line-height: 1.4;
}

.shop_name {
	width: 100%;
	font-size: 15px;
	font-weight: 800;
	color: var(--primaryColor);
}

/* 上記オリジナル特典対象店舗は対象外となります。　など*/
.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: 20px;
}

.shop_img {
	width: 100%;
}

.shop_btns {
	margin-top: 30px;
}

.shop_ftr {
	margin-top: 60px;
}

.shop_notes {
	/* margin-top: calc(var(--verticalSpacer) - 5px); */
	font-size: clamp(9px, 2.6vw, 13px);
	font-weight: 300;
}

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

.ouen_ttl {
	margin-bottom: 1em;
	font-size: 20px;
	font-weight: 700;
	color: var(--primaryColor);
}

.ouen_listTtl {
	margin-bottom: 0.5em;
	font-size: 15px;
	font-weight: 500;
}
.ouen_row {
	margin-top: 2em;
}

.ouen_item {
	font-size: clamp(10px, 2.9vw, 12px);
}

.ouen_item:not(:first-child) {
	margin-top: 0.3em;
}

/* mv
===============================
*/

.sec--mv {
	padding-top: 160px;
	padding-bottom: 240px;
	position: relative;
	background-color: var(--LightBgColor);
}

.sec--mv:before,
.sec--mv:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 80px;
	z-index: 10;
}

.sec--mv:before {
	inset: 0;
	top: -80px;
	background-image: linear-gradient(0deg, var(--LightBgColor), transparent 70%);
}
.sec--mv:after {
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(0deg, #000000, transparent 70%);
}

.mv_video {
}

.sec_hdr--mv {
	margin-bottom: 100px;
}

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

/* achievement
===============================
*/
.achievement_inr {
	padding-bottom: 20px;
}

.achievement_list {
	padding: 2% 0 4%;
}

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

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