/* #region theme =================================== */
:root {
	--font-color: #1b2d0f;
	--primary-color: #526F36;
	--secondary-color: #809F1F;
}
/* #endregion theme -------------------------------- */

/* #region Reset and Setup =================================== */
html, body, div,
p, a, img, figure,
dl, dt, dd,
ul, ol, li,
button,
h1, h2, h3, h4, h5, h6,
hr, header, footer, section, article {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

html {
	box-sizing: border-box;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
	box-sizing: inherit;
}

body {
	font-family: 'Noto Serif JP', serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	background: #f1f4ea;
	color: var(--font-color);
	background-image: url('../images/common/bg01.jpg');
	background-size: 283px 227px;
	background-position: center top;
	background-repeat: repeat;
}

a, button {
	color: inherit;
	text-decoration: none;
}

@media (min-width: 1025px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

img {
	border: none;
	max-width: 100%;
	vertical-align: middle;
}

svg {
	display: block;
	max-width: 100%;
	height: auto;
	fill: currentcolor;
}

.inner {
	display: block;
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}


@media only screen and (min-width: 1025px) {
	br.mb {
		display: none;
	}
}
@media only screen and (max-width: 1024px) {
	br.pc {
		display: none;
	}
}

.img-box {
	position: relative;
	overflow: hidden;
}
.img-box img, .img-box video {
	position: absolute;
	height: 100%;
	width: 100%;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: cover;
}

.u-visually-hidden {
	position: absolute!important;
	width: 1px!important;
	height: 1px!important;
	margin: -1px!important;
	padding: 0!important;
	border: 0!important;
	white-space: nowrap!important;
	clip: rect(0,0,0,0)!important;
	overflow: hidden!important;
}
/* #endregion Reset and Setup -------------------------------- */

/* #region layout =================================== */
/* .l-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/common/bg01.jpg');
	background-size: 283px 227px;
	background-position: center top;
	background-repeat: repeat;
	z-index: -1;
} */

.l-header {
	position: fixed;
	width: 100%;
	height: 100px;
	top: 0;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(5px);
	z-index: 50;
}
.l-header-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1280px;
	height: 100%;
	padding: 20px min(60px, 6vw);
	margin: 0 auto;
}
.l-header-main .logo {
	margin-right: 20px;
}
.l-header-main .logo a {
	display: block;
}
.l-header-main .logo img {
	display: block;
	width: min(263px, 50vw);
	aspect-ratio: 4.782 / 1;
}
.l-menu-btn {
	display: none
}
.l-header-main .main-menu {
	margin-top: 5px;
}
.l-header-main .main-menu ul {
	display: flex;
	font-size: 15px;
	letter-spacing: 0.05em;
	gap: 2em;
}
.l-header-main .main-menu li.mb {
	display: none;
}
.l-header-main .main-menu a {
	display: block;
	white-space: nowrap;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-header-main .main-menu a:hover {
	opacity: 0.6;
}
.l-header-main .main-menu .lang-btn {
	display: block;
	padding: 3px 15px 5px;
	border: 1px solid var(--font-color);
	line-height: 1;
	font-size: 14px;
}
@media only screen and (max-width: 1024px) {
	.l-menu-btn {
		display: block;
	}
	.l-menu-btn button {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		background: transparent;
		cursor: pointer;
		width: 42px;
		height: 42px;
		padding-top: 5px;
		margin-top: 5px;
		border-radius: 50%;
		color: var(--primary-color);
		text-align: center;
		z-index: 99;
	}
	.l-menu-btn button .text {
		display: block;
		position: relative;
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
		font-size: 10px;
		line-height: 20px;
		letter-spacing: 0.075em;
	}
	.l-menu-btn button .text::before {
		display: block;
		content: 'MENU';
	}
	.l-menu-btn button .text::after {
		display: none;
		content: 'CLOSE';
	}
	.l-menu-btn button .border1, .l-menu-btn button .border2 {
		display: block;
		width: 28px;
		height: 0;
		border-top: 2px solid var(--primary-color);
		transform-origin: left;
		transition: transform 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
	}
	.l-header.is-open  .l-menu-btn button .border1 {
		transform: rotate(14deg);
	}
	.l-header.is-open .l-menu-btn button .border2 {
		transform: rotate(-14deg);
	}
	.l-header.is-open .l-menu-btn button .text::before {
		display: none;
	}
	.l-header.is-open .l-menu-btn button .text::after {
		display: block;
	}
	.l-header .main-menu {
		display: none;
		margin-top: 0;
	}
	.l-header .main-menu li.mb {
		display: block;
	}
	.l-header.is-open .main-menu {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: #fff;
		padding-top: 100px;
		padding-bottom: 100px;
		z-index: -1;
	}
	.l-header.is-open .main-menu ul {
		align-items: center;
		align-content: center;
		justify-content: center;
		flex-wrap: wrap;
		height: 100%;
		padding: 40px;
		text-align: center;
	}
	.l-header.is-open .main-menu li {
		flex: 0 0 100%;
	}
	.l-header.is-open .main-menu li a {
		display: inline-block;
	}
}


.l-main {
	min-height: 500px;
	overflow: hidden;
}

.l-footer {
	padding: 50px min(40px, 6vw) 30px;
	/* background-image: url( '../images/common/bg02.jpg' );
	background-size: 283px 227px;
	background-position: center top; */
	/* color: #fff; */
}
.l-footer-head {
	margin: 0 auto 80px;
}
.l-footer-head .menu ul {
	display: flex;
	justify-content: center;
	font-size: 15px;
	letter-spacing: 0.05em;
	gap: 2em;
}
.l-footer-head .menu a {
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-footer-head .menu a:hover {
	opacity: 0.6;
}
.l-footer-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-bottom: 90px;
}
.l-footer-main .logo {
}
.l-footer-main .logo a {
	display: block;
}
.l-footer-main .logo img {
	display: block;
	width: 176px;
	height: 54px;
}
.l-footer-main .address {
	font-size: 12px;
	line-height: 1.4167;
	letter-spacing: 0.075em;
}
.l-footer-foot {
}
.l-footer-foot .copyright {
	font-size: 13px;
	letter-spacing: 0.075em;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.l-footer-head {
		display: none;
	}
}

.l-contact {
	display: block;
	padding: 90px min(40px, 6vw) 70px;
	background-image: url( '../images/common/bg03.jpg' );
	background-position: center top;
}
.l-contact-head {
	margin-bottom: 35px;
	text-align: center;
}
.l-contact-head .title {
	margin-bottom: 10px;
	font-size: 30px;
	letter-spacing: 0.2em;
	line-height: 1.3;
}
.l-contact-head .sub-title {
	font-size: 13px;
	letter-spacing: 0.2em;
	line-height: 1.3;
}
.l-contact-main	{
	display: flex;
	justify-content: space-between;
	gap: 0;
	max-width: 1130px;
	margin: 0 auto;
	border-left: 1px solid rgba(0, 0, 0, 0.5);
}
.l-contact-main .item {
	flex: 0 0 50%;
	height: 126px;
	border-right: 1px solid rgba(0, 0, 0, 0.5);
	text-align: center;
}
.l-contact-main .item .title {
	margin-bottom: 10px;
	font-size: 20px;
	letter-spacing: 0.025em;
	line-height: 1.3;
}
.l-contact-main .item .tel-link {
	display: block;
	margin-bottom: 15px;
	font-size: 44px;
	letter-spacing: 0.075em;
	line-height: 1;
}
.l-contact-main .item .hour {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1;
}
.l-contact-main .item .mail-link {
	display: block;
	max-width: 400px;
	height: 65px;
	line-height: 65px;
	margin: 20px auto 0;
	border-radius: 9999px;
	background: var(--primary-color);
	color: #fff;
	font-size: 19px;
	letter-spacing: 0.05em;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-contact-main .item .mail-link::before {
	content: '';
	display: inline-block;
    width: 21px;
    height: 100%;
    margin-right: 13px;
	background: url('../images/common/icon-mail.svg') no-repeat center center / contain;
    vertical-align: top;
}
.l-contact-main .item .mail-link:hover {
	opacity: 0.8;
}
@media only screen and (min-width: 2121px) {
	.l-contact {
		background-size: cover;
	}
}
@media only screen and (max-width: 1024px) {
	.l-contact-main	{
		display: block;
		border: none;
	}
	.l-contact-main .item {
		margin-bottom: 40px;
		border: none;
	}
	.l-contact-main .item:last-of-type {
		margin-bottom: 0;
	}
	.l-contact-main .item .tel-link {
		font-size: 30px;
	}
}

.l-dedication {
	padding: 0 min(40px, 6vw);
	padding-bottom: 140px;
	/* color: var(--primary-color); */
}
.l-dedication-head {
	margin-bottom: 70px;
}
.l-dedication-head .title-box {
	text-align: center;
}
.l-dedication-head .title-box .catch {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.l-dedication-head .title-box .title {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.l-dedication-head .title-box .sub-title {
	display: inline-block;
	min-width: 110px;
	padding: 0 10px 10px;
	margin: 0 auto;
	border-bottom: 0.75px solid var(--font-color);
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.l-dedication-main {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1160px;
	margin: 0 auto;
	gap: 30px;
}
.l-dedication-main .item {
	position: relative;
	flex: 0 1 563px;
}
.l-dedication-main .item a {
	display: block;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-dedication-main .item a:hover {
	opacity: 0.6;
}
.l-dedication-main .item .img-box {
	width: 100%;
	aspect-ratio: 1.83 / 1;
}
.l-dedication-main .item .title {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
    /* width: 115px; */
    height: 84%;
	top: 0;
	left: 0;
	padding: 0.974em 0.384em 0 0.769em;
    border-right: solid 1px rgba(255, 255, 255, 0.5);
	color: #fff;
    font-size: min(39px, 6vw);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
}
.l-dedication-main .item .title .sub {
	flex: 0 0 100%;
	order: -1;
	display: block;
	margin-top: 0.3em;
	margin-left: 0.5em;
    font-size: 0.3333em;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}
@media only screen and (max-width: 1024px) {

}

.l-service {
	padding: 0 min(40px, 6vw);
	padding-bottom: 140px;
	/* color: var(--primary-color); */
}
.l-service-head {
	margin-bottom: 70px;
}
.l-service-head .title-box {
	text-align: center;
}
.l-service-head .title-box .catch {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.l-service-head .title-box .title {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.l-service-head .title-box .sub-title {
	display: inline-block;
	min-width: 110px;
	padding: 0 10px 10px;
	margin: 0 auto;
	border-bottom: 0.75px solid var(--font-color);
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.l-service-main {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1160px;
	margin: 0 auto;
	gap: 30px;
}
.l-service-main .item {
	position: relative;
	flex: 0 1 563px;
}
.l-service-main .item a {
	display: block;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.l-service-main .item a:hover {
	opacity: 0.6;
}
.l-service-main .item .img-box {
	width: 100%;
	aspect-ratio: 1.675 / 1;
}
.l-service-main .item .title {
	position: absolute;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: #fff;
	font-size: min(28px, 5vw);
	letter-spacing: 0.075em;
	text-align: center;
}
.l-service-main .item .title .sub {
	display: block;
	width: 100%;
	margin-top: 10px;
	font-size: 0.6071em;
}
@media only screen and (max-width: 1024px) {

}
/* #endregion layout -------------------------------- */

/* #region page =================================== */
.p-header {
	padding: 260px min(40px, 6vw) 220px;
}
.p-header .title-box {
	text-align: center;
}
.p-header .title-box .catch {
	margin-bottom: 25px;
	color: var(--primary-color);
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.p-header .title-box .title {
	margin-bottom: 25px;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.p-header .title-box .sub-title {
	display: inline-block;
	min-width: 110px;
	padding: 0 10px 10px;
	margin: 0 auto;
	border-bottom: 0.75px solid var(--font-color);
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
	.p-header {
		padding: 220px min(40px, 6vw) 160px;
	}
	.p-header .title-box .title {
		font-size: 34px;
	}
}
/* #endregion page -------------------------------- */

/* #region components =================================== */
/* #endregion components -------------------------------- */

/* #region js-effect =================================== */
.js-effect01 {
    filter: blur(10px);
    opacity: 0;
	transition: filter 1.2s cubic-bezier(0.4, 0.6, 0.6, 1), opacity 1.2s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.js-effect01.is-anime {
    filter: blur(0);
    opacity: 1;
    transform: translateX(0);
}
/* #endregion js-anime -------------------------------- */

/* #region top =================================== */
@media only screen and (min-width: 1025px) {
	.top-header {
		/* position: absolute;
		padding: 70px 0 70px; */
	}
}

.top-hero {
	/* color: #fff;
	background: #000; */
}
.top-hero .img-box {
	width: 100%;
	height: 1474px;
	margin-bottom: -340px;
}
.top-hero .fv {
	position: absolute;
	height: 100vh;
	height: 100dvh;
	width: 100%;
	top: 0;
	left: 0;
}
.top-hero .scroll {
	position: absolute;
	width: 40px;
	height: 160px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	padding-bottom: 150px;
	color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
	line-height: 1;
	text-align: center;
}
.top-hero .scroll::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 140px;
	background: rgba(255, 255, 255, 0.7);
}
.top-hero .scroll::after {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: circlemove forwards 1900ms infinite ease-in-out 100ms normal;
}
@keyframes circlemove {
	0% {
		bottom: 124px;
		opacity: 0.0;
	} 10% {
		bottom: 124px;
		opacity: 1.0;
	} 90% {
		bottom: 8px;
		opacity: 1.0;
	} 100% {
		bottom: 8px;
		opacity: 0.0;
	}
}
.top-hero .concept {
	position: relative;
	padding: 0px min(40px, 6vw) 90px;
	text-align: center;
	z-index: 1;
}
.top-hero .concept .title {
	margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.2em;
}
.top-hero .concept .heading {
	margin-bottom: 30px;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.2em;
}
.top-hero .concept .text {
    font-size: 15px;
    font-weight: 500;
    line-height: 2.9333;
    letter-spacing: 0.2em;
}
.top-hero .concept .leaves-box {
	position: absolute;
	max-width: 1500px;
	height: 100%;
	margin: 0 auto;
	top: 0;
	left: 0;
	right: 0;
	pointer-events: none;
}
.top-hero .concept .leaves-box .leaves01 {
    position: absolute;
	width: 255px;
	bottom: 0px;
	left: -20px;
}
.top-hero .concept .leaves-box .leaves02 {
    position: absolute;
	width: 215px;
	top: -130px;
	right: -80px;
}
@media only screen and (max-width: 1024px) {
	.top-hero .img-box {
		height: calc(100vh + 160px);
		margin-bottom: 0px;
	}
	.top-hero .concept .text {
		font-size: 14px;
	}
	.top-hero .concept .leaves-box {
		display: none;
	}
}

.top-philosophy {
}
.top-philosophy-main {
	display: flex;
	justify-content: space-between;
	max-width: 1240px;
	margin: 0 auto -70px;
	padding: 120px min(60px, 6vw) 0;
}
.top-philosophy-main .cont-box {
	flex: 0 0 50%;
	padding-bottom: 100px;
	margin-right: -80px;
	z-index: 2;
}
.top-philosophy-main .title {
	margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.2em;
}
.top-philosophy-main .heading {
	margin-bottom: 30px;
    font-size: 36px;
    line-height: 1.6111;
    letter-spacing: 0.2em;
}
.top-philosophy-main .text {
	max-width: 450px;
    font-size: 15px;
    line-height: 2.4;
    letter-spacing: 0.2em;
	text-align: justify;
}
.top-philosophy-main .image-box {
	position: relative;
    flex: 0 1 715px;
	margin-right: -200px;
	margin-top: -70px;
	z-index: 3;
}
.top-philosophy-main .image-box img {
	display: inline-block;
	width: 100%;
    filter: drop-shadow(7px 9px 8px rgba(51, 44, 23, 0.4));
}
.top-philosophy-foot {
	position: relative;
	height: 280px;
	background-image: url('../images/top/tea-farm.jpg');
	background-position: center center;
	background-size: 2120px 500px;
}
.top-philosophy-foot .leaves-box {
	position: absolute;
	max-width: 1500px;
	height: 100%;
	margin: 0 auto;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
}
.top-philosophy-foot .leaves-box .leaves03 {
	position: absolute;
	width: 320px;
	right: -90px;
	bottom: -70px;
}
@media only screen and (min-width: 2121px) {
	.top-philosophy-foot {
		background-size: cover;
	}
}
@media only screen and (max-width: 1024px) {
	.top-philosophy-main {
		display: block;
		margin-bottom: 0;
	}
	.top-philosophy-main .cont-box {
		max-width: 800px;
		margin: 0 auto;
	}
	.top-philosophy-main .image-box {
		margin: -40px -60px;
		text-align: right;
	}
	.top-philosophy-main .image-box img {
		width: max(300px, 50vw);
	}
	.top-philosophy-foot .leaves-box {
		display: none;
	}
}

.top-dedication {
	position: relative;
	padding-top: 115px;
	padding-bottom: 130px;
	background-image: url('../images/common/bg02.jpg');
	background-size: 283px 227px;
	background-position: center top;
	background-repeat: repeat;
	color: #fff;
}
.top-dedication .title-box .sub-title {
	border-bottom: 0.75px solid #fff;
}

.top-service {
	position: relative;
	padding-top: 130px;
}
.top-service .leaves-box {
	position: absolute;
	max-width: 1500px;
	height: 100%;
	margin: 0 auto;
	top: 0px;
	left: 0;
	right: 0;
	pointer-events: none;
}
.top-service .leaves-box .leaves04 {
	position: absolute;
	width: 238px;
	top: -50px;
	left: -20px;
}
.top-service .leaves-box .leaves05 {
	position: absolute;
	width: 127px;
	bottom: -50px;
	right: 0;
}
@media only screen and (max-width: 1024px) {
	.top-service .leaves-box {
		display: none;
	}
}
/* #endregion top -------------------------------- */

/* #region dedication =================================== */
.s-dedication {
	max-width: 1160px;
	padding: 0 min(40px, 6vw);
	margin: 0 auto 350px;
}
.s-dedication .item-wrap {
	padding-top: 150px;
	margin-top: -150px;
	margin-bottom: 180px;
}
.s-dedication .item {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 47px;
	max-width: 100%;
	padding: min(80px, 8vw);
	padding-bottom: 80px;
	background: rgba(255, 255, 255, 0.4);
}
.s-dedication .item .l-box {
	flex: 0 1 440px;
}
.s-dedication .item .img-box {
	width: 100%;
	aspect-ratio: 1.375 / 1;
}
.s-dedication .item .r-box {
	flex: 1 1 430px;
}
.s-dedication .item .title {
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 32px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.s-dedication .item .text {
	font-size: 15px;
	line-height: 2.4;
	letter-spacing: 0.2em;
	text-align: justify;
}
.s-dedication .leaves-box {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
.s-dedication .leaves-box .leaves01 {
	position: absolute;
	width: 160px;
	top: -22px;
	right: -32px;
}
.s-dedication .leaves-box .leaves02 {
	position: absolute;
	width: 200px;
	bottom: -55px;
	left: -50px;
}
.s-dedication .leaves-box .leaves03 {
	position: absolute;
	width: 180px;
	top: -33px;
	right: 16px;
}
.s-dedication .leaves-box .leaves04 {
	position: absolute;
	width: 150px;
	bottom: 6px;
	left: -32px;
}
@media only screen and (max-width: 1024px) {
	.s-dedication {
		margin-bottom: 200px;
	}
	.s-dedication .item-wrap {
		margin-bottom: 120px;
	}
	.s-dedication .item {
		max-width: 600px;
		margin: 0 auto 0;
		flex-wrap: wrap;
	}
	.s-dedication .item .r-box {
		flex: 0 1 440px;
	}
	.s-dedication .item .title {
		font-size: 28px;
		text-align: center;
	}
	.s-dedication .leaves-box {
		display: none;
	}
}

/* #endregion dedication -------------------------------- */

/* #region service =================================== */
.s-service {
	max-width: 1160px;
	padding: 0 min(40px, 6vw);
	margin: 0 auto 350px;
}
.s-service .item {
	max-width: 100%;
	display: flex;
	justify-content: center;
	gap: 47px;
	padding-top: 150px;
	margin-top: -150px;
	padding-bottom: 80px;
	margin-bottom: 80px;
	border-bottom: 1px solid rgba(34, 34, 34, 0.5);
}
.s-service .item:last-of-type {
	border-bottom: none;
}
.s-service .item .l-box {
	flex: 0 1 440px;
}
.s-service .item .img-box {
	width: 100%;
	aspect-ratio: 1.666 / 1;
}
.s-service .item .r-box {
	flex: 1 1 530px;
}
.s-service .item .title {
	margin-bottom: 25px;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.3;
	letter-spacing: 0.2em;
}
.s-service .item .text {
	font-size: 15px;
	line-height: 2.4;
	letter-spacing: 0.2em;
	text-align: justify;
}
@media only screen and (max-width: 1024px) {
	.s-service {
		margin-bottom: 200px;
	}
	.s-service .item .l-box {
		flex: 1 1 440px;
	}
	.s-service .item {
		max-width: 563px;
		margin: 0 auto 80px;
		flex-wrap: wrap;
	}
	.s-service .item .r-box {
		flex: 1 1 440px;
	}
	.s-service .item .title {
		font-size: 24px;
		text-align: center;
	}
}
/* #endregion service -------------------------------- */

/* #region about =================================== */
.s-about {
	max-width: 800px;
	padding: 150px min(40px, 6vw) 0;
	margin: -150px auto 200px;
}
.s-about > .title {
	margin-bottom: 25px;
	font-size: 28px;
	letter-spacing: 0.2em;
	line-height: 1.3;
	text-align: center;
}
.s-about table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid rgba(34, 34, 34, 0.5);
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 2;
}
.s-about th, .s-about td {
	padding: 12px 18px;
	border-bottom: 1px solid rgba(34, 34, 34, 0.5);
	font-weight: 500;
	text-align: left;
	vertical-align: top;
}
.s-about th {
	width: 200px;
}
.s-about .address {
	border-top: 1px solid rgba(34, 34, 34, 0.5);
	padding-top: 20px;
	margin-bottom: 35px;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 2;
}
.s-about .address a {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: underline;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.s-about .address a:hover {
	opacity: 0.6;
	text-decoration: none;
}
.s-about .map {
	width: 100%;
	aspect-ratio: 1.6 / 1;
	background: #eee;
}
.s-about .map iframe {
	width: 100%;
	height: 100%;
}
@media only screen and (max-width: 1024px) {
	.s-about tr {
		display: block;
		padding: 12px 18px;
		border-bottom: 1px solid rgba(34, 34, 34, 0.5);
	}
	.s-about th, .s-about td {
		display: block;
		padding: 0;
		border-bottom: none;
	}
	.s-about td {
		padding-left: 12px;
	}
}
/* #endregion about -------------------------------- */

/* #region contact =================================== */
.s-contact {
	max-width: 880px;
	padding: 0 min(40px, 6vw);
	margin: 0 auto 350px;
}
.s-contact .intro {
	margin-bottom: 185px;
	text-align: center;
}
.s-contact .intro .text {
	margin-bottom: 45px;
	font-size: 15px;
	line-height: 2.4;
	letter-spacing: 0.2em;
}
.s-contact .intro .tel-link {
	display: block;
	max-width: 500px;
	height: 80px;
	margin: 0 auto 25px;
	background: rgba(255, 255, 255, 0.4);
	color: var(--primary-color);
	font-size: min(32px, 7vw);
	letter-spacing: 0.2em;
	line-height: 80px;
}
.s-contact .intro .tel-link span {
	font-size: 0.625em;
}
.s-contact .intro .address {
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0.2em;
}
.s-contact .form {
}
.s-contact .form .title {
	margin-bottom: 40px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(34, 34, 34, 0.5);
	font-size: min(28px, 7vw);
	line-height: 1.3;
	letter-spacing: 0.2em;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.s-contact {
		margin-bottom: 200px;
	}
}
/* #endregion contact -------------------------------- */

/* #region privacy-policy =================================== */
.s-privacy-policy {
	max-width: 1160px;
	padding: 0 min(40px, 6vw);
	margin: 0 auto 350px;
	font-weight: 500;
	font-size: 15px;
	line-height: 2.4;
	letter-spacing: 0.2em;
	text-align: justify;
}
.s-privacy-policy dl {
	margin-top: 2em;
}
.s-privacy-policy dt {
	color: var(--primary-color);
}
@media only screen and (max-width: 1024px) {
	.s-privacy-policy {
		margin-bottom: 200px;
	}
}
/* #endregion privacy-policy -------------------------------- */
