@charset "UTF-8";

/* :rootのCSS変数の宣言 */
:root {
	--maincolor: 125, 0, 0;
	--maincolor_rgb: 199, 41, 55;
	--subcolor: #FDEEF1;
	--subcolor_rgb: 253, 238, 241;
	--plaincolor: #707070;
	--box-margin: 20px;
}

.wrap p {
	font-size: 15px;
	margin-bottom: 0.2em;
}

.wrap img,
.wrap picture {
	width: min(400px, 90%);
	max-width: -moz-max-content;
	max-width: max-content;
	margin: 0 auto;
}

.wrap .contents-header {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrap .contents-header img {
	width: 100%;
	height: auto;
}

.wrap .contents-header .contensts-header_title {
	text-align: center;
	font-size: 2em;
}

.wrap .contents-wrap {
	max-width: 1216px;
	margin: 40px auto 20px;
}

.wrap .contents-wrap__inner {
	margin: 0 auto 80px;
	line-height: 1.5;
}

.wrap .contents-wrap__inner.-small {
	width: min(100%, 1000px);
}

.wrap .sec-title_sub {
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 0.8em;
	line-height: 1.5;
	background: #ededed;
	padding: 1em;
}

.wrap .sec-description {
	margin-bottom: 40px;
}

.wrap .imgc {
	text-align: center;
}

.wrap .imgc img {
	width: 100%;
	max-width: -moz-max-content;
	max-width: max-content;
}

.wrap .sec-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media screen and (max-width: 767px) {
	.wrap .sec-col {
		grid-template-columns: 1fr;
	}
}

.wrap .contents-flex {
	flex: 1;
	/* align-self: center; */
}

.wrap .contents-flex .flx_30 {
	width: 30%;
}

.wrap .contents-flex .flx_70 {
	width: 70%;
}

@media screen and (max-width: 767px) {

	.wrap .contents-flex .flx_30,
	.wrap .contents-flex .flx_70 {
		width: 100%;
	}
}

.wrap .tabs {
	margin: 50px;
}

@media screen and (max-width: 767px) {
	.wrap .tabs {
		margin: 0;
	}

	.tab-menu {
		height: 65px;
	}

	.tab-menu_item:not(.m-active) {
		height: 55px;
	}
	.tab-content_item:has(.-scrollable){	
		overflow: hidden;
	}
}

/* faq area */
.faq-details {
	--arrow-size: 18px;
	--anime-speed: 0.3s;
	margin-bottom: 20px;
	line-height: 1.8;
}

.faq-details .faq-summary {
	box-sizing: border-box;
	position: relative;
	display: block;
	padding: 1.5em calc(var(--arrow-size) + 3em) 1.5em 3.5em;
	background: var(--gca-co20);
	cursor: pointer;
	width: 100%;
	font-size: 15px;
}

.faq-details .faq-summary::-webkit-details-marker {
	display: none;
}

.faq-details .faq-summary::before {
	content: "Q.";
	position: absolute;
	top: 0.5em;
	left: 0.5em;
	font-weight: bold;
	font-size: 26px;
}

.faq-details .faq-summary .ico {
	position: absolute;
	top: 0;
	right: 1.5em;
	bottom: 0;
	display: block;
	width: var(--arrow-size);
	height: calc(var(--arrow-size) * 0.6);
	margin: auto;
	background: #333;
	clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
	transition: transform var(--anime-speed);
}

.faq-details[open] .faq-summary .ico {
	transform: rotate(180deg);
}

.faq-details .inner {
	position: relative;
	padding: 1.5em 1.5em 1.5em 3.5em;
	background: var(--gca-co22);
	border-top: 2px solid var(--gca-co20);
}

.faq-details .inner::before {
	content: "A.";
	position: absolute;
	top: 0.5em;
	left: 0.5em;
	font-weight: bold;
	font-size: 26px;
}

.faq-area_hint {
	background: #efefef;
	padding: 10px;
	margin: 10px 0;
}

.faq-area_mt10 {
	margin-top: 10px;
}

.wrap .contents-header_inner {
	position: relative;
	display: grid;
	place-content: center;
	width: 100%;
	height: 390px;
	padding: 0 20px;
	background-color: #fffaed;
	background-size: 7px 7px;
	background-image: linear-gradient(0deg, transparent 50%, rgba(236, 200, 116, 0.1) 50%, rgba(236, 200, 116, 0.1) calc(50% + 4px), transparent calc(50% + 4px)), linear-gradient(90deg, transparent 50%, rgba(236, 200, 116, 0.1) 50%, rgba(236, 200, 116, 0.1) calc(50% + 4px), transparent calc(50% + 4px));
}

.wrap .contents-header_inner h2 {
	position: relative;
	padding: 45px 100px;
	background: #fff;
	border: 1px solid #F8F8F8;
	text-align: center;
	font-size: calc(28 / 14 * 1em);
	line-height: 2;
	z-index: 1;
}

.wrap .contents-header_inner h2::before,
.wrap .contents-header_inner h2::after {
	content: "";
	position: absolute;
	height: calc(100% + 3px);
	aspect-ratio: 1/2;
	border: solid;
	z-index: 1;
}

.wrap .contents-header_inner h2::before {
	left: -3px;
	top: -3px;
	border-width: 6px 0 0 6px;
	border-color: #ecc874 transparent transparent var(--gca-co08);
}

.wrap .contents-header_inner h2::after {
	right: -3px;
	bottom: -3px;
	border-width: 0 6px 6px 0;
	border-color: transparent var(--gca-co08) #ecc874 transparent;
}

.wrap .contents-header_inner h2 .sp {
	display: none;
}

.wrap .contents-header_inner h2 span {
	position: relative;
	display: inline-block;
	padding: 0 5px;
	margin: 0 5px;
	color: var(--gca-co08);
	font-size: calc(32 / 28 * 1em);
	z-index: 1;
}

.wrap .contents-header_inner h2 span::before {
	content: "";
	position: absolute;
	display: inline-block;
	left: 0;
	right: 0;
	bottom: 12px;
	height: 12px;
	background: #ffe974;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.wrap .contents-header_inner {
		height: 250px;
		padding: 0 10px;
		background-color: #fffaed;
	}

	.wrap .contents-header_inner h2 {
		padding: 30px 35px;
		font-size: calc(18 / 14 * 1em);
		text-align: left;
	}

	.wrap .contents-header_inner h2::before,
	.wrap .contents-header_inner h2::after {
		height: calc(100% + 2px);
		aspect-ratio: 1/4;
	}

	.wrap .contents-header_inner h2::before {
		left: -2px;
		top: -2px;
		border-width: 4px 0 0 4px;
	}

	.wrap .contents-header_inner h2::after {
		right: -2px;
		bottom: -2px;
		border-width: 0 4px 4px 0;
	}

	.wrap .contents-header_inner h2 .sp {
		display: block;
	}

	.wrap .contents-header_inner h2 span {
		font-size: calc(18 / 18 * 1em);
	}

	.wrap .contents-header_inner h2 span::before {
		height: 8px;
	}
}

.wrap .content-anchor {
	margin-bottom: 60px;
	padding: 0;
}

@media screen and (max-width: 767px) {
	.wrap .contents-wrap__inner {
		padding: 0 20px;
	}
}

.wrap .contents-sec+.contents-sec {
	margin-top: 80px;
}

.wrap .imgc {
	margin-top: 40px;
}

.wrap .sec-title {
	position: relative;
	margin-bottom: 36px;
	padding: 1em 30px;
	color: #fff;
	text-align: center;
	font-size: calc(24 / 14 * 1em);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.5;
}

.wrap .sec-title::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -50vw;
	right: -50vw;
	background: var(--gca-co08);
	z-index: -1;
}

.wrap .sec-title_min {
	position: relative;
	margin-bottom: 0.75em;
	padding-left: 24px;
	color: var(--gca-co08);
	line-height: 1.5;
	font-size: calc(18 / 14 * 1em);
	font-weight: 700;
}

.wrap .sec-title_min::before {
	content: "";
	position: absolute;
	display: inline-block;
	left: 0;
	top: 10px;
	width: 12px;
	height: 2px;
	background: currentColor;
}

.wrap .sec-description {
	line-height: 1.8;
}

.wrap .sec-col_box {
	position: relative;
	border-radius: 8px;
	padding: 32px 40px;
	background: #fff;
	border: 1px solid var(--gca-co15);
	box-shadow: 2px 2px 3px rgba(233, 233, 233, 0.6);
}

.wrap .sec-col_box>*:nth-child(n+2) {
	margin-top: 0.75em;
}

.wrap p:has(a.button) {
	margin-top: 1em;
}
.wrap .hazimete-scroll-text{
	display: none;
	font-size: calc(12 / 14 * 1em);
	color: #707070;
	margin-top: 0.75em;
	padding-left: 1.25em;
	text-indent: -1.25em;
}

@media screen and (max-width: 767px) {
	.wrap .imgc {
		margin-top: 20px;
	}

	.wrap .imgc.-large img{
		width: max(600px,100%) !important;
	}
	.wrap .imgc.-scrollable{
		overflow-x: scroll;
	}

	.wrap .sec-title {
		font-size: calc(20 / 14 * 1em);
	}

	.wrap .sec-title_min {
		padding-left: 13px;
		font-size: calc(16 / 14 * 1em);
	}

	.wrap .sec-title_min::before {
		width: 8px;
	}

	.wrap .sec-col_box {
		padding: 24px 20px;
	}
	.wrap .hazimete-scroll-text{
		display: block;
	}
}

.wrap .content-anchor__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.wrap .content-anchor__item-link {
	position: relative;
	display: grid;
	align-items: center;
	height: 100%;
	padding: 20px 40px 20px 20px;
	border: 2px solid var(--gca-co08);
	background-color: #fff;
	border-radius: 5px;
	color: var(--gca-co08);
	text-align: center;
	font-weight: 700;
	transition: all 0.15s ease-out;
}

.wrap .content-anchor__item-link::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0, -50%);
	width: 12px;
	aspect-ratio: 3/2;
	background: currentColor;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.wrap .content-anchor__item-link:hover,
.wrap .content-anchor__item-link:focus-visible {
	background: var(--gca-co08);
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.wrap .content-anchor__list {
		margin: 0 10px;
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.wrap .content-anchor__item-link {
		padding: 18px 35px 18px 15px;
	}
}

.wrap .sec-title_step {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--gca-co15);
	font-size: calc(22 / 14 * 1em);
	font-weight: 700;
	letter-spacing: 0.03em;
}

.wrap .sec-title_step span {
	display: inline-block;
	padding: 8px 16px;
	background: var(--gca-co18);
	color: #fff;
	font-size: calc(14 / 22 * 1em);
}

.wrap .install-step03__contents {
	gap: 40px;
}
@media screen and (min-width: 768px) {
	.install-step03__contents-in{
		align-self: start;
	}
	.install-step03__contents-in .imgc{
		aspect-ratio: 3 / 2;
	}
	.install-step03__contents-in .imgc img{
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
	}
}
@media screen and (max-width: 767px) {
	.wrap .sec-title_step {
		flex-direction: column;
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 16px;
	}

	.wrap .sec-title_step span {
		padding: 6px 8px;
		font-size: calc(13 / 22 * 1em);
	}

	.wrap .install-step03__contents {
		flex-wrap: nowrap;
		flex-direction: column;
		gap: 80px;
	}

	.wrap .install-step03__contents>* {
		flex: 1;
	}
}

.wrap .sec-title__useful-head {
	position: relative;
	text-align: center;
	margin-bottom: 48px;
	line-height: 1.5;
	letter-spacing: 0.03em;
	font-size: calc(22 / 14 * 1em);
	font-weight: 700;
}

.wrap .sec-title__useful-head-main {
	display: block;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto 0.75em;
	padding: 5px 20px;
	background: var(--gca-co21);
	font-size: calc(16 / 22 * 1em);
}

.wrap .sec-title__useful-contents {
	flex-wrap: wrap;
	align-items: flex-start;
}

.wrap .sec-title__useful-contents.is-rev {
	flex-direction: row-reverse;
}

.wrap .sec-title__useful-contents .contents-flex {
	flex-basis: 50%;
	align-self: flex-start;
	margin: 0;
}

.wrap .sec-title__useful-contents .contents-flex .imgc {
	margin: 0;
}

.wrap .sec-title__useful-contents .contents-flex>*:nth-child(n+2) {
	margin-top: 1.6em;
}

.wrap .sec-title__useful-contents .contents-flex>.sec-title_min+p {
	margin-top: 0;
}

.wrap .sec-title__useful-contents-head {
	margin-bottom: 16px;
	line-height: 1.5;
	letter-spacing: 0.03em;
	font-size: calc(18 / 14 * 1em);
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	.wrap .sec-title__useful-contents .contents-flex .imgc {
		margin-top: 24px;
	}
}

.wrap .contents-step {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 40px;
}

.wrap .contents-step li {
	position: relative;
	padding: 54px 24px 32px;
	background: #f7f5f4;
	border: 1px solid #b9b6b6;
}

.wrap .contents-step li:nth-child(n+2)::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 14px;
	height: 20px;
	left: -27px;
	background: var(--gca-co08);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.wrap .contents-step li h4 {
	margin-bottom: 1em;
	text-align: center;
	font-size: calc(18 / 14 * 1em);
	letter-spacing: 0.03em;
	font-weight: 700;
}

.wrap .contents-step .contents-step__index {
	position: absolute;
	top: -1px;
	left: -1px;
	padding: 5px 12px;
	background: var(--gca-co08);
	color: #fff;
	text-transform: uppercase;
	font-size: calc(14 / 14 * 1em);
	font-weight: 700;
}

.wrap .box-min {
	margin-top: 24px;
	padding: 32px 40px 24px;
	border-width: 1px;
	border-style: solid;
}

.wrap .box-min__head {
	margin-bottom: 1em;
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	.wrap .contents-step {
		gap: 60px;
		grid-template-columns: repeat(1, 1fr);
	}

	.wrap .contents-step li {
		position: relative;
		padding: 40px 24px;
	}

	.wrap .contents-step li:nth-child(n+2)::before {
		top: -40px;
		translate: -50% 0;
		left: 50%;
		width: 30px;
		height: 20px;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
	}

	.wrap .contents-step li h4 {
		margin-bottom: 1em;
		text-align: center;
		font-size: calc(18 / 14 * 1em);
		letter-spacing: 0.03em;
	}

	.wrap .contents-step .contents-step__index {
		position: absolute;
		top: -1px;
		left: -1px;
		padding: 5px 12px;
		background: var(--gca-co08);
		color: #fff;
		text-transform: uppercase;
		font-size: calc(14 / 14 * 1em);
		font-weight: 700;
	}

	.wrap .box-min {
		margin-top: 24px;
		padding: 32px 40px 24px;
	}

	.wrap .box-min__head {
		margin-bottom: 1em;
		font-weight: 700;
	}
}

.wrap .hazimete-delivery {
	display: grid;
	grid-template-areas: "desc img" "attention img";
	gap: 20px 40px;
	grid-template-columns: 1fr 400px;
	align-items: center;
}

.wrap .hazimete-delivery__desc {
	grid-area: desc;
}

.wrap .hazimete-delivery__desc>*:nth-child(n+2) {
	margin-top: 1em;
}

.wrap .hazimete-delivery__img {
	grid-area: img;
}

.wrap .hazimete-delivery__img>* {
	margin: 0;
}

.wrap .hazimete-delivery__attention {
	grid-area: attention;
}

@media screen and (max-width: 767px) {
	.wrap .hazimete-delivery {
		grid-template-areas: "desc" "img" "attention";
		gap: 10px;
		grid-template-columns: 1fr;
		align-items: start;
	}

	.wrap .hazimete-delivery__img {
		grid-area: img;
	}

	.wrap .hazimete-delivery__attention {
		grid-area: attention;
	}
}

.wrap .faq-summary {
	transition: all 0.3s ease-out;
	font-size: calc(16 / 14 * 1em);
	font-weight: 700;
}

.wrap .faq-summary:hover,
.wrap .faq-summary:focus-visible {
	opacity: 0.6;
}

.wrap .faq-details .inner::before {
	color: var(--gca-co08);
}