@charset "utf-8";

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

:root {
	--mainMaxW: 480px;

	/* js */
	--documentHeight: ;

	--commonSidePadding: 20px;
	/* --sans-serif: "Noto Sans JP", sans-serif; */
	--sans-serif: "Zen Kaku Gothic Antique", sans-serif;
	--en: "Manrope", sans-serif;

	--ff: "Manrope", "Zen Kaku Gothic Antique", sans-serif;

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

	--cntInrMaxW: 1270px;

	--documentTextAlign: left;
	--primaryColor: #5572d2;
	--secondaryColor: #595959;
	--blueColor: #004bb1;
	--redColor: #f00;
	/* --lightGreenColor: #52bf3f; */
	/* --lightBlueColor: #00bcbf; */
	--grayColor: #c7c7bb;
	--textColor: var(--lightTextColor);
	--lightTextColor: var(--grayColor);
	--darkTextColor: #000;
	--bgColor: #000;
	--baseBgColor: #f4f4f4;

	--borderColor: #000;
}

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

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

	text-align: center;
}

img {
	width: auto;
}

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

.jpn {
	font-family: var(--sans-serif);
}

/*  ===============================
	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: 500;
	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: 500;
	font-size: clamp(10px, 4vw, 19px);
	text-align: center;
	cursor: pointer;
}

.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: 84px 0;
	background-color: var(--bgColor);
	text-align: center;
}

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

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

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

.inrBox {
	width: 100%;
	max-width: var(--cntInrMaxW);
	margin-left: auto;
	margin-right: 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;
}

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

.sec--release {
	text-align: center;
	padding: 100px 0 348px;
}
.sec--track {
	padding-bottom: 348px;
	font-size: clamp(16px, 3.3vw, 32px);
	font-weight: 400;
	--trackColor: #c7c7bb;
	color: var(--trackColor);
}
.sec--eager {
	padding-bottom: 348px;
	border-bottom: 1px solid var(--secondaryColor);
}
.sec--benefits {
	padding-top: 348px;
	padding-bottom: 348px;
	border-bottom: 1px solid var(--secondaryColor);
}

.sec--goods {
	padding-top: 340px;
	padding-bottom: 348px;
	text-align: left;
}

.sec--live {
	padding-bottom: 348px;
	border-bottom: 1px solid var(--secondaryColor);
	text-align: left;
}

@media (max-width: 768px) {
	.sec {
		padding: 100px 0;
	}
}

.sec_ttl {
	font-size: clamp(20px, 3.2vw, 27px);
	font-weight: 500;
	text-align: left;
}

.sec_ttl--eager {
	margin-bottom: 80px;
}
.sec_ttl--benefits {
	margin-bottom: 80px;
}
.sec_ttl--goods {
	margin-bottom: 78px;
	font-family: var(--en);
}
.sec_ttl--live {
	margin-bottom: 86px;
	font-family: var(--en);
}
.sec_ttl--contact {
	padding: 50px 0;
	font-weight: 500;
	font-size: clamp(12px, 4.5vw, 22px);
	text-align: center;
}

@media (max-width: 768px) {
	.sec_ttl--eager,
	.sec_ttl--benefits,
	.sec_ttl--goods,
	.sec_ttl--live,
	.sec_ttl--contact {
		margin-bottom: 50px;
	}
}

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

/*plus*/

/*section secTop*/
.plusIcon--sec {
	position: relative;
	position: absolute;
	display: inline-block;
	width: 48px;
	height: 48px;
	left: 50%;
	transform: translateX(-50%);
	flex-shrink: 0;
}

.plusIcon--sec::before,
.plusIcon--sec::after {
	content: "";
	position: absolute;
	/* left: 50%; */
	/* transform: translateX(-50%); */
	background-color: var(--secondaryColor); /* 色は適宜変更してください */
}

/* 横棒 */
.plusIcon--sec::before {
	width: 48px;
	height: 1px;
	top: 50%;
	left: 0;
}

/* 縦棒 */
.plusIcon--sec::after {
	width: 1px;
	height: 100%;
	top: 0;
	/* left: 0; */
}

/*secTop*/
.plusIcon--secTop {
	top: -1px;
	transform: translateX(-50%) translateY(-50%); /* 上端から半分はみ出す */
}

/*secBottom*/
.plusIcon--secBottom {
	bottom: 1px;
	transform: translateX(-50%) translateY(50%); /* 下端から半分はみ出す */
}

/*小さめ*/
.plusIcon {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
	flex-shrink: 0; /* アイコンが潰れないようにする */
	margin-bottom: 16px;
}

.plusIcon::before,
.plusIcon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--secondaryColor); /* 色は適宜変更してください */
}

/* 横棒 */
.plusIcon::before {
	width: 16px;
	height: 1px;
	transform: translate(-50%, -50%); /* これで完璧に真ん中になります */
}

/* 縦棒 */
.plusIcon::after {
	width: 1px;
	height: 16px;
	transform: translate(-50%, -50%);
}

/* hero — see 55_hero.css */

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

.info {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5.5%;
	height: auto;
	padding-bottom: 348px;
}

@media (max-width: 768px) {
	.info {
		padding-bottom: 100px;
	}
}

.info-Outer_img {
	display: block;
	width: 100%;
	max-height: 114px; /* PC最大値 */
	height: auto;
}

/* PC（画面が広いとき）の設定 */
@media (min-width: 769px) {
	.info-outer {
		display: flex;
		align-items: center; /* 必要に応じて縦中央寄せ */
	}
}

.infoMain {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;

	font-size: clamp(20px, 3.1vw, 40px);
	font-weight: 400;
}

.infoMain_texts {
	font-family: var(--en);
	letter-spacing: 0.01em;
}

.infoMain_texts--detail {
	text-align: left;
}

.infoMain_texts--date {
	text-align: right;
}

@media screen and (max-width: 768px) {
	.infoMain {
		flex-direction: column;
	}

	.infoMain_texts {
		text-align: center;
	}
}

.infoMain_arrow {
	width: 10vw;
	min-width: 40px;
}

@media screen and (max-width: 768px) {
	.infoMain_arrow {
		rotate: 90deg;
		margin: 30px 0;
	}
}

/*wrapper*/
.discLists {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	position: relative;
	border-top: var(--secondaryColor) solid 1px;
}

.disc {
	display: flex;
	align-items: center;
	border-bottom: var(--secondaryColor) solid 1px;
}

.disc_item {
	width: 50%;
	text-align: left;
}

.disc_item--pic {
	background-color: var(--primaryColor);
}

@media screen and (max-width: 768px) {
	.disc {
		flex-direction: column;
	}

	.disc_item {
		width: 100%;
	}
}

/*/disc_item--texts/*/
.discDetail {
	text-align: left;
	padding-left: 44px;

	@media (max-width: 768px) {
		height: 100svw;
	}
}

.discDetails_item_hdr {
	padding-top: 24px;
	padding-bottom: 24px;
	font-family: var(--en);
}

.discDetails_item_hdr::before {
	content: "";
	display: inline-block;
	width: 15px; /* 画像の横幅に合わせて調整してください */
	height: 15px; /* 画像の高さに合わせて調整してください */
	background-image: url("../images/icon.svg");
	background-size: contain;
	background-repeat: no-repeat;
	padding-bottom: 24px;
}

.discDetails_item_ftr {
	position: relative;
}

.discDetail_item {
	font-weight: 400;
}

.discDetail_ttls {
	font-size: clamp(16px, 3vw, 24px);
}

.discDetail_ttls {
}

.discDetail_ttl {
	font-weight: 400;
}

.discDetail_ttl--en {
	font-weight: 400;
}

.discDetail_subTtl {
	font-size: clamp(12px, 2.8vw, 16px);

	letter-spacing: -0.8px;
}

/*//*/
.discDetail_notes {
	font-size: clamp(16px, 3vw, 24px);
}

/*//*/
.discDetail_price {
	font-size: clamp(22px, 3.5vw, 36px);
	display: flex;
	letter-spacing: 0.01em;
	align-items: baseline;
	gap: 20px;
}

.priceSmall {
	font-size: clamp(11px, 2.5vw, 20px);
}

.disc--limited .discDetail .discDetail_ttls {
	padding-bottom: 10px;
}

/*Pcのみ*/
@media (min-width: 769px) {
	.infoMain_texts--detail {
		padding-right: 50px;
	}
	.infoMain_texts--date {
		padding-left: 50px;
	}
}

/* track
===============================
*/

.track_hdr {
	margin-bottom: 10px;
	text-align: center;
	color: var(--trackColor);
}

.trackOuter {
}

.trackList_row {
	display: flex;
	border-top: 1px solid var(--trackColor);
	height: clamp(50px, 10vw, 70px);
}

.trackList_row:last-child {
	border-bottom: 1px solid var(--trackColor);
}

.trackOuter_item {
}

.trackOuter_item--left,
.trackOuter_item--right {
	width: calc((100% - var(--cntInrMaxW)) / 2);
}

.trackList {
	width: 100%;
	max-width: var(--cntInrMaxW);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.trackList_col {
}

.trackList_col--left,
.trackList_col--right {
	max-width: clamp(50px, 10vw, 300px);
	font-weight: 400;
	font-size: clamp(8px, 2vw, 14px);
	--pd: 20px;
}

.trackList_col--left {
	padding-left: var(--pd);
}

.trackList_col--right {
	padding-right: var(--pd);
}

/* eager
===============================
*/

.eager_texts {
	margin-bottom: 45px;
	text-align: left;
	font-size: clamp(13px, 2.4vw, 18px);
	font-weight: 500;
	line-height: 2.2;
}

.eager_text:not(:last-child) {
	margin-bottom: 38px;
}

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

.benefits_texts {
	margin-bottom: 45px;
	text-align: left;
	font-size: 15px;
	font-size: clamp(12px, 2.25vw, 15px);

	font-weight: 500;
	line-height: 2;
}

.benefits_lists {
	margin-top: clamp(50px, 30vw, 118px);
}

.benefits_thumbs {
	display: flex;
	gap: 30px;
}

.benefits_thumb {
	width: 30%;
	@media screen and (max-width: 768px) {
		width: 50%;
	}
}

.benefits_pic {
	margin-bottom: 0.3em;
	border: 1px solid var(--secondaryColor);
}

.benefits_detail {
	font-size: clamp(7px, 2.2vw, 11px);
	font-weight:;
}

/* special */

.special {
	display: flex;
	flex-direction: column;
	gap: 54px;
}

.special_item {
	margin-bottom: clamp(50px, 20vw, 120px);
	padding-bottom: 24px;
	text-align: left;
	font-weight: 500;
	border-bottom: 1px solid var(--secondaryColor);
}

.special_item:not(:first-child) {
	border-bottom: 1px solid var(--secondaryColor);
}
.special_item:not(:last-child) {
	margin-bottom: 0;
	border-bottom: 1px solid var(--secondaryColor);
}

.special_name {
	font-size: clamp(16px, 2.7vw, 23px);
	margin-bottom: 38px;
	@media (max-width: 768px) {
		margin-bottom: 20px;
	}
}

.special_desc {
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 24px;

	@media (max-width: 768px) {
		margin-bottom: 5px;
	}
}

.special_reserve {
	font-weight: 500;
	font-size: clamp(13px, 3vw, 15px);

	@media (max-width: 768px) {
		margin-bottom: 2rem;
	}
}

.special_link {
	display: flex;
	align-items: center;

	@media (min-width: 769px) {
		background: bottom right / 15px no-repeat url(../images/borderBg.png);
	}

	@media (max-width: 768px) {
		display: block;
	}
}

.special_reserve {
	padding-right: 60px;
}

.special_btns {
	display: flex;
	align-items: center;
	gap: 16px;
}

.special_btn {
	border-radius: 20px;
	padding: 12px;
	font-size: clamp(10px, 3.4vw, 15px);
	width: 100%;
	min-width: 140px;
	border-radius: 24px;
}

.special_btn--limited {
	color: var(--darkTextColor);
	background-color: var(--grayColor);
}
.special_btn--regular {
	color: var(--lightTextColor);
	border: 1px solid var(--grayColor);
}

/* grade
===============================
*/

.goods_texts {
	font-size: 15px;
	line-height: 1.5lh;
}

.shop {
	display: flex;
	flex-wrap: wrap;
	margin-top: clamp(50px, 20vw, 118px);

	border-top: 1px solid var(--borderColor);
	font-family: var(--en);
	color: var(--darkTextColor);
	text-align: left;
}

.shop_item {
	width: 33%;
	background-color: #808080;
	border-bottom: 1px solid var(--borderColor);
	border-right: 1px solid var(--borderColor);
}
.shop_item:not(:last-child) {
}

.shop_item_hdr {
	border-bottom: 1px solid var(--borderColor);
}

.shop_pic {
	position: relative;
}

@media (max-width: 768px) {
	.shop_item {
		width: 50%;
	}
}
@media (max-width: 480px) {
	.shop_item {
		width: 100%;
	}
	.shop_item:nth-child(6) {
		display: none;
	}
}

.link_point {
	--size: 30px;
	position: absolute;
	right: 0;
	bottom: 0;
	width: var(--size);
	height: var(--size);
	background: #000;
	z-index: 1;
}

.link_point::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 45%;
	width: calc(var(--size) / 4);
	height: calc(var(--size) / 4);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: translate(-50%, -50%) rotate(315deg);
}

@media (max-width: 768px) {
	.link_point {
		--size: 25px;
	}
}

.shop_nmb {
	font-size: 8px;
	font-weight: 800;
	padding: 5px 8px;
	border-bottom: 1px solid var(--borderColor);
}

.shop_item_ftr {
	display: flex;
	justify-content: space-between;
	padding: 10px 4px 10px 8px;
	letter-spacing: 0.01em;
}

.shop_ttl {
	margin-bottom: 0.7em;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.shop_desc {
	min-height: 1em;
	font-size: 7px;
	font-weight: 400;
	letter-spacing: -0.15px;
}

.shop_prices {
	display: flex;
	align-items: baseline;
	letter-spacing: -0.15px;
	font-weight: 500;
}

.shop_price {
	align-self: self-end;
	font-size: clamp(15px, 3vw, 20px);
	line-height: 0.8;
	text-align: right;
}

.shop_price--tax {
	display: inline-block;
	font-size: clamp(7px, 2.2vw, 11px);
}

/*hop_item 地球儀*/
.shop_item--bg {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* live
===============================
*/

.live_pic {
	position: relative;
}

.live_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 10vw;
	position: absolute;
	width: 10vw;
	height: 10vw;
	min-width: 60px;
	min-height: 60px;
	bottom: 5%;
	right: 10%;
	font-size: clamp(5px, 2.7vw, 30px);
	font-weight: 400;
	color: #000;
	border-radius: 500px;
	background-color: #5572d2;
	z-index: 10;
}

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

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

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