@charset "UTF-8";

:root {
	--green: #4F7A63;
	--black: #2E3230;
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

html, body {
	min-width: 1380px;
	margin: 0;
	padding: 0;
	background: #fff url(../images/bg_pc.png) no-repeat top fixed;
	background-size: cover;
	background-size: 100% 100%;
	text-align: center;
	font-family: "Shippori Mincho", serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 500;
	font-size: 16px;
	line-height: 2;
	word-break: normal;
	word-wrap: break-word;
	color: var(--black);
}

* {
	outline: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-collapse: collapse;
	font-style: normal;
	list-style: none;
}

img {
	vertical-align: top;
	max-width: 100%;
	border: 0;
}

a {
	color: var(--green);
	transition: opacity .4s;
}

a:hover {
	opacity: 0.6;
}

.tel {
	text-decoration: none;
	color: var(--black);
}

.tel:hover {
	opacity: 1;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#wrapper {
}

.container {
	width: 1200px;
	margin: 0 auto;
}

.sp {
	display: none;
}

.find {
	cursor: pointer;
	transition: .4s;
}

.target {
	scroll-margin-top: 20px;
}

.fuwari {
	transition: 1.4s ease-in-out;
	transform: translateY(100px);
	opacity: 0;
}

.on .fuwari {
	transform: translateY(0);
	animation: lazyload 1.4s forwards ease-in-out;
}

@keyframes lazyload {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

#header {
	min-width: 1300px;
	width: 100%;
	background: #fff url(../images/bg_pc.png) no-repeat top fixed;
	background-size: cover;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 10;
	transition: background .4s;
}

#header.active {
	background: transparent;
}

#header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	margin: 0 50px;
}

#header .h_logo {
	transition: opacity .4s;
}

#header.active .h_logo {
	opacity: 0;
}

#header .h1 a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 500;
	font-size: 24px;
	line-height: 1;
	color: var(--black);
}

/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
	display: flex;
	align-items: center;
	gap: 30px;
}

#navi .h_navi {
	display: flex;
	gap: 28px;
}

#navi .h_navi li:first-of-type {
	display: none;
}

#navi .h_navi li a {
	display: block;
	padding-bottom: 15px;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: var(--black);
	opacity: 1;
}

/*
#navi .h_navi li a:hover {
	color: #6FAF8A;
}
*/

#navi .h_navi li a:before {
	display: block;
	content: '';
	height: 16px;
	background: url(../images/h_navi.svg) no-repeat top;
	opacity: 0;
	transition: opacity .3s;
}

#navi .h_navi li a:hover:before,
#navi .h_navi li.this a:before {
	opacity: 1;
}

#navi .h_contact a {
	display: block;
	width: 170px;
	height: 46px;
	border-radius: 46px;
	background: #6FAF8A;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: -0.01em;
	line-height: 44px;
	color: #fff;
}

#navi .h_contact a:before {
	display: inline-block;
	vertical-align: top;
	content: '';
	width: 23px;
	height: 46px;
	background: url(../images/h_contact.svg) no-repeat left / 15px 12px;
}

/* ---------------------------------------------------------
	CSS Document btn
--------------------------------------------------------- */

.btn a {
	display: inline-block;
	vertical-align: top;
	min-width: 180px;
	height: 46px;
	padding: 0 2em;
	border-radius: 46px;
	background: #6FAF8A;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 46px;
	color: #fff;
}

/* ---------------------------------------------------------
	CSS Document title
--------------------------------------------------------- */

#title {
	overflow: hidden;
}

#title .container {
	display: flex;
	align-items: center;
	height: 280px;
	text-align: left;
	position: relative;
	z-index: 0;
}

#title .title_h2 {
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	color: #6B7E73;
}

#title .title_h2 .ja {
	display: block;
	margin-bottom: 20px;
	font-size: 32px;
	color: var(--green);

	transition: 1.6s ease-in-out;
	transform: translateY(0) translateX(40px);
	opacity: 0;
}

#title.on .title_h2 .ja {
	transform: translateY(0) translateX(0);
	animation: lazyload 1.6s forwards ease-in-out;
}

#title .title_h2 .en {
	display: block;
	transition: 1.6s ease-in-out 0.4s;
	transform: translateY(0) translateX(40px);
	opacity: 0;
}

#title.on .title_h2 .en {
	transform: translateY(0) translateX(0);
	animation: lazyload 1.6s 0.5s forwards ease-in-out;
}

#title .title_h2 .en:before {
	display: inline-block;
	vertical-align: 0.25em;
	content: '';
	width: 20px;
	height: 1px;
	margin-right: 1em;
	background: #6B7E73;
}

#title .bg {
	display: flex;
	align-items: center;
	min-width: 990px;
	width: calc(50vw + 270px);
	height: 280px;
	overflow: hidden;
	position: absolute;
	left: 330px;
	top: 0;
}

#title .bg img {
	width: calc(50vw + 270px);
	min-width: 990px;
	height: auto;
	min-height: 280px;
	aspect-ratio: 990 / 280;
	object-fit: cover;
	transition: opacity 2.4s ease-in;
	opacity: 0;
}

#title.on .bg img {
	opacity: 1;
}

#title-line {
	margin-bottom: 120px;
	position: relative;
	z-index: 0;
}

#title-line:after {
	content: '';
	width: 1px;
	height: 0;
	background: linear-gradient(to bottom, #fff 50%, rgba(79, 122, 99, 0.5) 50%);
	position: absolute;
	top: -30px;
	left: 50vw;
	z-index: 0;
	transition: height 0.8s ease 0.9s;
}

#title-line.on:after {
	height: 60px;
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	height: 40px;
	margin-bottom: 40px;
}

#bread ol {
	display: flex;
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 40px;
}

#bread li {
	margin-right: 24px;
	position: relative;
}

#bread li:not(:last-of-type):after {
	content: '';
	width: 0;
	height: 0;
	margin-top: -3px;
	border: solid 4px transparent;
	border-left: solid 6px #231815;
	position: absolute;
	top: 50%;
	right: -20px;
}

#bread a {
	text-decoration: none;
	color: #231815;
}

#bread a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------
	CSS Document footer
--------------------------------------------------------- */

#footer-line {
	margin-top: 150px;
	position: relative;
	z-index: 0;
}

#footer-line:after {
	content: '';
	width: 1px;
	height: 0;
	background: linear-gradient(to bottom, rgba(79, 122, 99, 0.5) 50%, #fff 50%);
	position: absolute;
	top: -30px;
	left: 50vw;
	z-index: 0;
	transition: height 0.8s ease;
}

#footer-line.on:after {
	height: 60px;
}

#footer {
	overflow: hidden;
	padding: 120px 0 60px;
	background: #000 url(../images/f_bg_pc.png) no-repeat top / cover;
	color: #fff;
}

#footer .flex {
	display: flex;
	justify-content: space-between;
}

#footer .start {
	margin-bottom: 100px;
	text-align: left;
}

#footer .f_name {
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.6;
}

#footer .f_address {
	font-size: 15px;
	line-height: 1.8;
}

#footer .f_site {
	display: flex;
	gap: 2em;
	margin-bottom: 40px;
}

#footer .f_site a {
	text-decoration: none;
	font-size: 15px;
	color: #fff;
}

#footer .f_contact a {
	display: block;
	width: 170px;
	height: 46px;
	margin-left: auto;
	border-radius: 46px;
	background: #6FAF8A;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: -0.01em;
	line-height: 44px;
	color: #fff;
}

#footer .f_contact a:before {
	display: inline-block;
	vertical-align: top;
	content: '';
	width: 23px;
	height: 46px;
	background: url(../images/h_contact.svg) no-repeat left / 15px 12px;
}

#footer address {
	text-align: left;
	font-size: 10px;
	letter-spacing: 0.02em;
}
