/*
html body
*/
html > body {
	background-image: url(../image/pc_background.webp);
	background-attachment: fixed;
	background-size: cover;
	background-position: 50% 50%;
	display: grid;
	grid-template-columns: 2fr 700px 1fr;
	overflow: hidden;
	@media (width < 1300px) {
		grid-template-columns: 1fr 700px;
	}
	@media (width < 1010px) {
		grid-template-columns: 1fr 700px 1fr;
	}
	@media (width < 700px) {
		grid-template-columns: 1fr;
	}
}
/*
pcArea
*/
section.pcArea {
	@media (width < 1010px) {
		display: none;
	}
	> div {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100vh;
		padding-inline: 20%;
		> img {
			max-width: 100%;
		}
	}
}
/*
main
*/
main {
	background-color: #fff;
	grid-column: 2/3;
	@media (width < 700px) {
		grid-column: 1/2;
	}
}

/*--- main > section ---*/
section.top {
	background-color: #3A1400;
	padding:10px 0 20px 0;
	> div {
		display: grid;
		grid-template-columns: 1fr 0.6fr;
		align-items: end;
		> figure {
			padding-left: 10%;
			width: 80%;
			> img {
				max-width: 100%;
			}
		}
		> div {
			padding-left: 10%;
			> p {
				line-height: 1.6;
				font-size: 1.0rem;
				font-weight: 500;
				color: #fff;
				@media (width < 640px) {
					font-size: 0.7rem;
					line-height: 1.0;
				}
				@media (width < 450px) {
					font-size: 0.5rem;
				}
			}
			> figure {
				width: 80%;
				@media (width < 450px) {
					margin-top: -5%;
					width: 90%;
				}
				> img {
					max-width: 100%;
				}
			}
		}
	}
}

section.top_image {
	> div {
		> figure {
			> img {
				max-width: 100%;
			}
		}
	}
}

section.button {
	padding-top: 20px;
	background-color: #F5F2E3;
	> div {
		padding-inline: 5%;
		text-align: center;
		> a {
			text-decoration: none;
			&:hover {
				opacity: 0.7;
			}
			> img {
				max-width: 100%;
			}
		}
	}
}

section.white {
	background-color: #FFF;
}

section.top_text {
	padding-top: 20px;
	background-color: #F5F2E3;
	> div {
		padding-inline: 5%;
		> div.block01 {
			> h2 {
				text-align: center;
				color: #3A1400;
				line-height: 1.5;
				font-weight: 700;
				font-size: min(2.2rem,7vw);
				> span.emphasis {
					font-size: min(3.0rem,12vw);
				}
			}
			> p {
				text-align: justify;
				color: #3A1400;
				line-height: 1.5;
				font-weight: 600;
				font-size: min(1.85rem,7vw);
				letter-spacing: 1.5px;
				> span.emphasis {
					color: #CF5E47;
				}
			}
		}
		> div.block02 {
			padding-top: 20px;
			position: relative;
			display: grid;
			grid-template-columns: 1fr 1fr;
			column-gap: 10%;
			align-items: end;
			> figure {
				> img {
					max-width: 100%;
				}
				&:nth-of-type(3) {
					position: absolute;
					top: 50%;
					left: 40%;
				}
			}
		}
		> div.block03 {
			padding-top: 30px;
			> h2 {
				text-align: center;
				color: #3A1400;
				line-height: 1.5;
				font-weight: 700;
				font-size: min(2.4rem,7vw);
				> i {
					font-style: normal;
					font-size: min(2.8rem,9vw);
					color: #CF5E47;
					position: relative;
					&::after {
						content: '•';
						position: absolute;
						top: max(-0.8em,-8vw);
						left: min(0.5em,3vw);
						font-size: 2.0rem;
						color: currentColor;
					}
				}
				> span.emphasis {
					font-size: min(2.8rem,9vw);
				}
			}
		}
	}
}

section.balloon_under {
	> div {
		> figure {
			> img {
				max-width: 100%;
			}
		}
	}
}

section.recommendation {
	background-color: #fff;
	> div {
		padding-inline: 5%;
		> figure {
			width: 60%;
			margin-inline: auto;
			> img {
				max-width: 100%;
			}
		}
		> article {
			padding-block: 15px;
			display: flex;
			align-items: start;
			justify-content: left;
			border-bottom: 2px dashed #3A1400;
			> img {
				padding-top: 10px;
				width: min(40px,7vw);
			}
			> p {
				padding-left: 10px;
				color: #3A1400;
				line-height: 1.5;
				font-weight: 700;
				font-size: min(2.2rem,6vw);
				> span.emphasis {
					background: linear-gradient(transparent 60%, #FFF07D 40%);
				}
			}
		}
	}
}
section.under01 {
	margin-top: -1px;
	background-color: #978475;
	> div {
		> figure {
			> img {
				max-width: 100%;
			}
		}
	}
}

section.presentation {
	background-color: #978475;
	> div {
		padding-inline: 5%;
		> figure {
			padding-top: 40px;
			> img {
				max-width: 100%;
			}
		}
		> article {
			padding: 15px 5%;
			display: flex;
			align-items: start;
			justify-content: left;
			> img {
				padding-top: 10px;
				width: min(40px,8vw);
			}
			> p {
				padding-left: 10px;
				color: #fff;
				line-height: 1.5;
				font-weight: 700;
				font-size: min(2.0rem,7vw);
				> span.emphasis {
					background: linear-gradient(transparent 60%, #FFF07D 40%);
				}
			}
		}
	}
}

section.under02 {
	background-color: #F5F2E3;
	> div {
		> figure {
			> img {
				margin-top: -1px;
				max-width: 100%;
			}
		}
	}
}

section.merit {
	background-color: #F5F2E3;
	> div {
		padding-top: 40px;
		position: relative;
		@media (width < 450px) {
			padding-top: 30px;
		}
		> div.text {
			> div.set {
				max-width: 500px;
				text-align: center;
				margin-inline: auto;
				> div {
					> img {
						position: absolute;
						top: -1.0%;
						left: min(6.0%,4vw);
						width: min(160px,23vw);
						@media (width < 580px) {
							top: 1.0%;
						}
					}
					> p {
						padding-right: 1%;
						padding-right: 5%;
						text-align: right;
						color: #cf5e47;
						line-height: 1.5;
						font-weight: 700;
						font-size: min(2.0rem,5.8vw);
					}
				}
				> h2 {
					color: #cf5e47;
					line-height: 1.0;
					font-weight: 700;
					font-size: min(5.2rem,16vw);
				}
			}
			> h4 {
				padding-top: 5px;
				text-align: center;
				color: #3a1400;
				line-height: 1.5;
				font-weight: 700;
				font-size: min(2.4rem,6vw);
			}
			> h3 {
				padding-top: 10px;
				text-align: center;
				color: #3a1400;
				line-height: 1.0;
				font-weight: 700;
				font-size: min(3.2rem,10vw);
				> span.emphasis {
					font-size: min(4.2rem,12vw);
				}
			}
		}
		> figure {
			padding-top: 30px;
			> img {
				max-width: 100%;
			}
		}
	}
}

section.merit01 {
	padding: 20px 5% 0 5%;
	background-color: #F5F2E3;
	> div {
		background-color: #fff;
		border-radius: 20px;
		padding-bottom: 40px;
		> div {
			padding-inline: 5%;
			> figure {
				&:nth-of-type(1) {
					margin-inline: auto;
					width: 250px;
					> img {
						max-width: 100%;
					}
				}
				&:nth-of-type(2) {
					padding: 20px 5% 0 5%;
					@media (width < 450px) {
						padding: 20px 0% 0 0%;
					}
					> img {
						max-width: 100%;
					}
				}
			}
			> div.text {
				padding-top: 20px;
				> h2 {
					padding-top: 5px;
					text-align: center;
					color: #cf5e47;
					line-height: 1.5;
					font-weight: 700;
					font-size: 2.4rem;
				}
				> h4 {
					text-align: justify;
					padding-top: 20px;
					color: #333;
					line-height: 1.6;
					font-weight: 700;
					font-size: 1.4rem;
					letter-spacing: 1.0px;
					> span.color {
						color: #cf5e47;
					}
				}
			}
			> div.text_bottom {
				padding-inline: 10%;
				@media (width < 600px) {
					padding-inline: 5%;
				}
				> p {
					padding-top: 40px;
					color: #643f33;
					line-height: 1.5;
					font-weight: 700;
					font-size: min(1.4rem,5vw);
				}
				> h3 {
					color: #643f33;
					line-height: 1.2;
					font-weight: 700;
					font-size: min(2.8rem,6.5vw);
					> span {
						background: linear-gradient(transparent 60%, #FFF07D 40%);
					}
				}
			}
		}
	}
}

section.merit02 {
	padding: 20px 5% 0 5%;
	background-color: #F5F2E3;
	> div {
		background-color: #fff;
		border-radius: 20px;
		padding-bottom: 40px;
		> div {
			padding-inline: 5%;
			> figure {
				&:nth-of-type(1) {
					margin-inline: auto;
					width: 250px;
					> img {
						max-width: 100%;
					}
				}
				&:nth-of-type(2) {
					padding-top: 20px;
					> img {
						max-width: 100%;
					}
				}
				&:nth-of-type(3) {
					margin-top: -30%;
					padding-inline: 5%;
					> img {
						max-width: 100%;
					}
				}
			}
			> div.text {
				padding-top: 20px;
				> h3 {
					padding-top: 5px;
					text-align: center;
					color: #cf5e47;
					line-height: 1.5;
					font-weight: 700;
					font-size: min(2.0rem,8vw);
				}
				> h2 {
					padding-top: 5px;
					text-align: center;
					color: #cf5e47;
					line-height: 1.5;
					font-weight: 700;
					font-size: min(2.4rem,9vw);
				}
				> h4 {
					text-align: justify;
					padding-top: 20px;
					color: #333;
					line-height: 1.6;
					font-weight: 700;
					font-size: 1.4rem;
					letter-spacing: 1.0px;
				}
			}
			> p {
				padding-top: 10px;
				text-align: center;
				color: #333;
				line-height: 1.2;
				font-weight: 500;
				font-size: min(1.4rem,5vw);
			}
		}
	}
}

section.merit03 {
	padding: 20px 5% 0 5%;
	background-color: #F5F2E3;
	> div {
		background-color: #fff;
		border-radius: 20px;
		padding-bottom: 40px;
		> div {
			padding-inline: 5%;
			> figure {
				margin-inline: auto;
				width: 250px;
				> img {
					max-width: 100%;
				}
			}
			> div.text {
				padding-top: 20px;
				> h3 {
					padding-top: 5px;
					text-align: center;
					color: #cf5e47;
					line-height: 1.2;
					font-weight: 700;
					font-size: min(2.0rem,7vw);
				}
				> h2 {
					padding-top: 5px;
					text-align: center;
					color: #cf5e47;
					line-height: 1.3;
					font-weight: 700;
					font-size: 2.4rem;
				}
				> h4 {
					text-align: justify;
					padding-top: 20px;
					color: #333;
					line-height: 1.6;
					font-weight: 700;
					font-size: 1.4rem;
					letter-spacing: 1.0px;
				}
			}
			> div.image {
				> article {
					padding-block: 15px;
					&:nth-of-type(1) {
						> div.block {
							> p {
								color: #cf5e47;
							}
						}
					}
					&:nth-of-type(2) {
						> div.block {
							> p {
								color: #809547;
							}
						}
					}
					&:nth-of-type(3) {
						> div.block {
							> p {
								color: #618093;
							}
						}
					}
					&:nth-of-type(4) {
						> div.block {
							> p {
								color: #ac588b;
							}
						}
					}
					&:nth-of-type(5) {
						> div.block {
							@media (width < 500px) {
								display: flex;
							}
							> p {
								color: #cb8a38;
								padding-left: 5px;
								padding-bottom: 0px;
								line-height: 1.2;
								font-weight: 700;
								font-size: min(1.8rem,4.5vw);
								> span.emphasis {
									font-size: min(2.4rem,15vw);
								}
							}
						}
					}
					> div.block {
						display: flex;
						align-items: end;
						justify-content: left;
						@media (width < 500px) {
							display: block;
						}
						> img {
							padding-top: 10px;
							width: 150px;
							@media (width < 500px) {
								width: 100px;
							}
						}
						> p {
							padding-left: 10px;
							padding-bottom: 10px;
							color: #333;
							line-height: 1.2;
							font-weight: 700;
							font-size: min(1.8rem,7vw);
							> span.emphasis {
								font-size: min(2.4rem,15vw);
							}
						}
					}
					> h3 {
						padding: 30px 0 10px 0;
						text-align: center;
						color: #333;
						line-height: 1.4;
						font-weight: 700;
						font-size: min(1.8rem,7vw);
					}
					> figure {
						> img {
							max-width: 100%;
						}
					}
					> p {
						text-align: justify;
						padding-top: 20px;
						color: #333;
						line-height: 1.4;
						font-weight: 700;
						font-size: min(1.4rem,7vw);
					}
				}
			}
		}
	}
}

section.merit_buttom {
	padding: 40px 5% 0 5%;
	background-color: #F5F2E3;
	> div {
		> div.text {
			text-align: center;
			> p {
				color: #3a1400;
				line-height: 1.4;
				font-weight: 700;
				font-size: min(2.0rem,7vw);
			}
			> h2 {
				color: #cf5e47;
				line-height: 1.4;
				font-weight: 700;
				font-size: min(3.0rem,20vw);
				> span.number {
					font-size: min(4.0rem,25vw);
				}
			}
		}
		> figure {
			padding-inline: 2%;
			> img {
				max-width: 100%;
			}
		}
	}
}

section.case_top {
	padding: 40px 5% 0 5%;
	background-color: #F5F2E3;
	> div {
		text-align: center;
		> h2 {
			color: #3a1400;
			line-height: 1.4;
			font-weight: 700;
			font-size: min(2.5rem,20vw);

		}
		> div.line {
			display: inline-block;
			background-color: #3a1400;
			height: 5px;
			width: 80px;
		}
	}
}

section.case {
	background-color: #F5F2E3;
	> div {
		padding-block: 30px;
		> figure {
			padding-right: 5%;
			> img {
				max-width: 100%;
			}
			&:nth-of-type(2) {
				padding-inline: 15%;
				@media (width < 500px) {
					padding-inline: 10%;
				}
			}
		}
		> h2 {
			padding-block: 10px;
			text-align: center;
			color: #3a1400;
			line-height: 1.4;
			font-weight: 700;
			font-size: min(2.5rem,9vw);
		}
		> p {
			text-align: justify;
			padding: 20px 5%;
			color: #333;
			line-height: 1.6;
			font-weight: 500;
			font-size: min(1.4rem,7vw);
		}
		> div.block {
			background-color: #fff;
			border-radius: 20px;
			padding-inline: 5%;
			margin-inline: 5%;
			> div.guest {
				display: flex;
				column-gap: 5px;
				@media (width < 630px) {
					display: block;
				}
				> h3 {
					padding: 5px;
					background-color: #3a1400;
					color: #fff;
					line-height: 1.4;
					font-weight: 700;
					font-size: min(1.9rem,7vw);
					@media (width < 630px) {
						display: inline-block;
					}
				}
				> h4 {
					padding: 5px;
					color: #3a1400;
					line-height: 1.4;
					font-weight: 700;
					font-size: min(1.8rem,6.5vw);
				}
			}
			> p {
				padding-block: 20px;
				text-align: justify;
				color: #333;
				line-height: 1.6;
				font-weight: 500;
				font-size: min(1.4rem,7vw);
				@media (width < 630px) {
					padding-block: 10px;
				}
			}
		}
	}
}

section.cost_top {
	padding: 40px 5% 0 5%;
	> div {
		text-align: center;
		> h2 {
			color: #3a1400;
			line-height: 1.4;
			font-weight: 700;
			font-size: min(2.5rem,20vw);
		}
		> div.line {
			display: inline-block;
			background-color: #3a1400;
			height: 5px;
			width: 80px;
		}
	}
}

section.table {
	padding-inline: 5%;
	> div {
		padding-top: 50px;
		> figure {
			> img {
				max-width: 100%;
			}
		}
		> p {
			padding-block: 10px;
			text-align: justify;
			color: #333;
			line-height: 1.2;
			font-weight: 500;
			font-size: min(1.2rem,7vw);
		}
	}
}

section.subsidy {
	padding: 20px 5% 0 5%;
	> div {
		> div {
			background-color: #3a1400;
			text-align: center;
			> h2 {
				padding-block: 5px;
				color: #fff;
				line-height: 1.4;
				font-weight: 700;
				font-size: min(2.2rem,10vw);
			}
		}
		> p {
			padding-block: 20px;
			text-align: justify;
			color: #333;
			line-height: 1.6;
			font-weight: 700;
			letter-spacing: 1px;
			font-size: min(1.4rem,7vw);
		}
	}
}

section.eco {
	padding: 20px 5% 0 5%;
	> div {
		> div.eco2024 {
			background-color: #8aa93f;
			text-align: center;
			border-radius: 5px;
			> h2 {
				padding-block: 5px;
				color: #fff;
				line-height: 1.4;
				font-weight: 600;
				letter-spacing: 1.5px;
				font-size: min(2.2rem,20vw);
			}
		}
		> p {
			text-align: center;
			padding-block: 10px;
			color: #333;
			line-height: 1.2;
			font-weight: 700;
			letter-spacing: 1px;
			font-size: min(1.2rem,5vw);
			text-indent: -1em;
			padding-left: 1em;
			&:nth-of-type(2) {
				font-size: min(1.6rem,6vw);
				text-indent: 0em;
				padding-left: 0em;
			}
		}
		> figure {
			> img {
				max-width: 100%;
			}
			&:nth-of-type(2) {
				padding-top: 30px;
			}
		}
		> div.reset {
			padding-top: 40px;
			> h3 {
				text-align: center;
				padding-block: 5px;
				color: #3A1400;
				line-height: 1.8;
				font-weight: 700;
				letter-spacing: 1.5px;
				font-size: min(2.2rem,8vw);
				> span.emphasis {
					color: #cf5e47;
				}
			}
			> figure {
				> img {
					max-width: 100%;
				}
			}
		}
	}
}

section.youtube_area {
	padding: 20px 5% 0 5%;
	> div {
		> h3 {
			text-align: center;
			color: #cf5e47;
			line-height: 1.4;
			font-weight: 700;
			letter-spacing: 1.5px;
			font-size: min(2.2rem,15vw);
		}
		> div.youtube {
			padding-top: 10px;
			width: 100%;
			aspect-ratio: 16 / 9;
			> iframe {
				width: 100%;
				height: 100%;
			}
		}
	}
}

section.inquiry_top {
	padding: 40px 5% 0 5%;
	> div {
		text-align: center;
		> h2 {
			color: #3a1400;
			line-height: 1.4;
			font-weight: 700;
			font-size: min(2.5rem,20vw);
		}
		> div.line {
			display: inline-block;
			background-color: #3a1400;
			height: 5px;
			width: 80px;
		}
	}
}

section.mailform {
	background-color: #fff;
	padding: 20px 3% 20px 3%;
	> div {
		div.submit {
			> figure {
				margin-inline: 5%;
				> img {
					max-width: 100%;
					cursor: pointer;
					transition: 0.2s;
					&:hover {
						opacity: 0.7;
					}
				}
			}
			> div {
				> button {
					display: inline-block;
					border-radius: 5px;
					width: 45%;
					height: 50px;
					font-size: 1.2rem;
					line-height: 1;
				}
			}
		}
		> #submitResult {
			max-width: 700px;
			margin-inline: auto;
			background-color: #0C35AD;
			font-size: 1rem;
			line-height: 1.6;
			color: #fff;
			padding: 10px 20px;
			border-radius: 3px;
			&:empty {
				display: none;
			}
			> b {
				font-size: 1rem;
				font-weight: 300;
			}
		}
	}
}
section.top {
	background-color: #3A1400;
	padding:10px 0 20px 0;
	> div {
		display: grid;
		grid-template-columns: 1fr 0.6fr;
		align-items: end;
		> figure {
			padding-left: 10%;
			width: 80%;
			> img {
				max-width: 100%;
			}
		}
		> div {
			padding-left: 10%;
			> p {
				line-height: 1.6;
				font-size: 1.0rem;
				font-weight: 500;
				color: #fff;
				@media (width < 640px) {
					font-size: 0.7rem;
					line-height: 1.0;
				}
				@media (width < 450px) {
					font-size: 0.5rem;
				}
			}
			> figure {
				width: 80%;
				@media (width < 450px) {
					margin-top: -5%;
					width: 90%;
				}
				> img {
					max-width: 100%;
				}
			}
		}
	}
}
/*
thanks
*/
section.thanks {
	background-color: #F5F2E3;
	> div {
		padding: 60px 10%;
		@media (width < 450px) {
			padding: 20px 5%;
		}
		> div.text01 {
			display: flex;
			flex-flow: column;
			> h2 {
				text-align: center;
				color: #CF5E47;
				line-height: 1.5;
				font-weight: 700;
				font-size: 3.2rem;
				letter-spacing: 1px;
				@media (width < 650px) {
					font-size: 2.0rem;
				}
				> span {
					background: linear-gradient(transparent 60%, #fff 40%);
				}
			}
			> p {
				padding-top: 20px;
				color: #3A1400;
				line-height: 1.8;
				font-weight: 700;
				font-size: 1.9rem;
				letter-spacing: 2px;
				text-align: justify;
				@media (width < 650px) {
					font-size: 1.4rem;
				}
			}
		}
		> figure {
			> img {
				max-width: 100%;
			}
		}
		> div.text02 {
			padding-top: 40px;
			display: flex;
			align-items: end;
			justify-content: center;
			> p {
				padding-inline: 5%;
				text-align: center;
				color: #3A1400;
				line-height: 1.2;
				font-weight: 500;
				font-size: 1.4rem;
				@media (width < 500px) {
					font-size: 1.0rem;
				}
			}
			> figure {
				width: 20px;
				@media (width < 500px) {
					width: 15px;
				}
				> img {
					max-width: 100%;
				}
			}
		}
		> div.links {
			padding-top: 20px;
			display: flex;
			justify-content: space-between;
			@media (width < 500px) {
				padding: 10px 0 0 0;
			}
			> a {
				> figure {
					width: 60px;
					margin-inline: auto;
					@media (width < 500px) {
						width: 45px;
					}
					> img {
						max-width: 100%;
					}
				}
				&:hover {
					opacity: 0.7;
				}
			}
		}
	}
}
/*
footer
*/
footer {
	background-color: #3A1400;
	text-align: center;
	margin: auto;
	padding: 40px 5% 20px 5%;
	> div.logo {
		text-align: center;
		margin: auto 0;
		> img {
			width: 300px;
			@media (width < 360px) {
				width: 260px;
			}
		}
	}
	> div.text {
		padding-top: 20px;
		> p {
			font-size: 1.2rem;
			font-weight: 500;
			line-height: 1.5;
			color: #fff;
		}
	}
	> div.links {
		padding: 10px 5% 0 5%;
		display: flex;
		justify-content: space-between;
		@media (width < 500px) {
			padding: 10px 0 0 0;
		}
		> a {
			> figure {
				width: 60px;
				margin-inline: auto;
				@media (width < 500px) {
					width: 45px;
				}
				> img {
					max-width: 100%;
				}
			}
			&:hover {
				opacity: 0.7;
			}
		}
	}
	> small {
		display: block;
		margin-top: 20px;
		text-align: center;
		font-weight: 400;
		font-size: 1rem;
		color: #aaa;
	}
}
