@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=mail');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=arrow_back_ios');
/* @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=open_in_new'); */

:root {
	--green: #35DB64;
	--orange: #EB6930;
	--white: #FAFAFA;
	--black: #1C2319;
	--ibm: "IBM Plex Sans JP", sans-serif;
	--line: "LINE Seed JP", sans-serif;
}

* {
	font-family: var(--ibm);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: var(--black);
}
body, 
header,
footer {
	width: 100%;
	max-width: 1800px;
	min-width: 375px;
	margin: 0 auto;
}
body {
	background: url(./../img/common/bg.png) repeat;
	background-color: var(--white);
}
main {
	margin-top: 80px;
}
img {
	width: 100%;
	height: auto;
}

.flex {
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-items: center;
}
.fade {
	opacity: 0;
	transition: all 1s;
	transform: translateY(60px);
}
.fade.fade-active {
	opacity: 1;
	transform: translateY(0);
}
*[id] {
	scroll-margin-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
	}
}

@media print, screen and (min-width: 764px) {
	* {
		font-size: 16px;
	}
	body {
		background-size: 200px;
	}
}

/* ボタンホバー時の挙動 */
@media (hover: hover) and (pointer: fine) {
	.btn-hover:hover {
		bottom: -4px;
	}
	.btn-hover:hover::before {
		bottom: 0 !important;
	}
}

/* =================================== */
/* ローディング画面 */
/* =================================== */
html {
	overflow: hidden;
	position: relative;
}
div.loading-wrapper {
	position: absolute;
	width: 100%;
	height: 100svh;
	background: var(--green);
	z-index: 1000000;
	top: 0;
	left: 0;
	transition: all .5s;
	opacity: 1;
	align-content: center;
}
div.loading-animation,
div.loading-animation::before,
div.loading-animation::after {
	background: #ffffff;
	-webkit-animation: load1 1s infinite ease-in-out;
	animation: load1 1s infinite ease-in-out;
	width: 1em;
	height: 4em;
}
div.loading-animation {
	color: #ffffff;
	text-indent: -9999em;
	margin: 88px auto;
	position: relative;
	font-size: 11px;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
	z-index: 100000000;
}
div.loading-animation::before,
div.loading-animation::after {
	position: absolute;
	top: 0;
	content: '';
}
div.loading-animation::before {
	left: -1.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
div.loading-animation::after {
	left: 1.5em;
}
@-webkit-keyframes load1 {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
	}
	@keyframes load1 {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

html.wf-active,
html.wf-inactive,
html.visited {
	overflow: auto;
	& div.loading-wrapper {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

/* =================================== */
/* ヘッダー */
/* =================================== */

header {
	position: fixed;
	top: 0;
	margin: 0 auto;
	z-index: 1001;
}
.header-wrapper {
	position: relative;
	/* ↓↓↓ヘッダーの高さ↓↓↓ */
	height: 80px;
	margin: 0 20px;
	padding-top: 20px;
}
.header h1 {
	position: absolute;
	top: 12px;
	left: 0;
	width: 80px;
	height: 80px;
	background: #fff;
	border-radius: 100%;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
	& a {
		display: inline-block;
		width: 100%;
		height: 100%;
		padding: 6px;
	}
	& a img {
		width: 100%;
		border-radius: 50%;
	}
}
.navigation {
	position: fixed;
	width: 50%;
	height: 100%;
	top: 80px;
	left: 100%;
	z-index: 9999;
	transition: all .3s linear;
}
.navigation__list {
	display: block;
	width: 100%;
	margin-bottom: 100px;
	padding: 20px;

}
.navigation__list-item {
	width: 100%;
	font-family: var(--line);
}
.navigation__list .navigation__list-item a p {
	font-family: var(--line);
	font-weight: 700;
}
.navigation__list .navigation__list-item:last-child a {
	& p {
		display: flex;
		align-items: center;
		height: 40px;
		padding: 0 24px;
		padding-left: calc(26px + 2em);
		text-align: center;
		background: var(--white);
		border-radius: 20px;
		position: relative;
	}
	& p::before {
		position: absolute;
		content: '\e158';
		top: 50%;
		right: calc(100% - 2em);
		transform: translateX(50%) translateY(-50%);
		font-family: 'Material Symbols Outlined';
		font-size: 21px;
		font-weight: 400;
	}
}
.navigation__link {
	width: 100%;
	padding: 24px 0;
	text-decoration: none;
	transition: .5s;
}
.hamburger-menu {
	position: absolute;
	right: 0;
	width: 88px;
	height: 60px;
	margin-right: -20px;
	padding: 0;
	cursor: pointer;
	background: var(--green);
	border-radius: 30px 0 0 30px;
	& .button-wrapper {
		width: 100%;
		height: 100%;
		position: relative;
	}
}
.header--open .hamburger-menu {
	background: var(--white);
}
.hamburger-menu__bar {
	position: absolute;
	display: inline-block;
	width: 32px;
	height: 4px;
	left: 50%;
	background: var(--black);
	transform: translateX(-50%);
	transition: .5s;
}
.hamburger-menu__bar:first-child {
	top: 20px;
}
.hamburger-menu__bar:last-child {
	top: 36px;
}
.header--open .hamburger-menu__bar {
	top: 50%;
}
.header--open .hamburger-menu__bar:first-child {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.header--open .hamburger-menu__bar:last-child {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
/* ↓↓↓アコーディオン展開時↓↓↓ */
.header--open .navigation {
	transform: translateX(-100%);
	width: 100%;
}
.header--open .bg-green {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100svh;
	background: var(--green);
	z-index: -1;
}
/* フォーカスリング */
.navigation__link:focus-visible,
.hamburger-menu:focus-visible {
	outline: 3px solid var(--black);
	outline-offset: 2px;
}
/* 読み上げ・操作の制御 */
.navigation {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s, visibility 0.3s;
}
/* メニュー展開時 */
.header--open .navigation {
	visibility: visible;
	opacity: 1;
	align-content: center;
}
/* PC幅でのリセット */
@media screen and (min-width: 764px) {
	.navigation {
		visibility: visible;
		opacity: 1;
	}
}
@media print, screen and (min-width: 764px) {
	header {
		top: 10px;
	}
	.header h1 {
		left: 5%;
		width: 110px;
		height: 110px;
	}
	.header-wrapper {
		width: 100%;
		height: 64px;
		max-width: 1800px;
		margin: 0 auto;
	}
	.logo {
		flex-flow: row;
		align-items: center;
		gap: 12px;
	}
	.hamburger-menu {
		display: none;
	}
	.hamburger-menu__bar {
		display: none;
	}
	.navigation {
		position: absolute;
		top: 50%;
		right: 0;
		left: inherit;
		width: auto;
		height: 100%;
		background: var(--green);
		border-radius: 32px 0 0 32px;
	}
	.navigation__list {
		display: flex;
		height: 100%;
		padding: 0;
		padding-left: 8px;
		margin: 0;
		list-style: none;
		text-align: center;
	}
	.navigation__link {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: inherit;
		white-space: nowrap;
	}
	.navigation__list-item {
		display: block;
		align-content: center;
		width: 100px;
		height: 100%;
		transition: all 0.3s;
	}
	.navigation__list-item:last-child {
		margin-right: 32px;
		margin-left: 20px;
		width: auto;
	}
	.navigation__list .navigation__list-item:last-child a {
		& p::before {
			right: calc(100% - 1em);
		}
	}
	.navigation__list .navigation__list-item:last-child a p {
		height: 32px;
		padding: 0 16px;
		padding-left: 36px;
		transition: all .3s;
	}
	@media (hover: hover) and (pointer: fine) {
		.navigation__list .navigation__list-item:last-child a:hover p {
			background: var(--black);
			color: #fff;
		}
	}
	[aria-expanded="true"] .navigation {
		transform: translateX(0);
	}
	.bg-green {
		display: none;
	}
}


/* ======================================= */
/* フッター */
/* ======================================= */
footer {
	position: relative;
	margin-top: 100px;
	background: var(--white);
	z-index: 0;
}
footer span.footer-bg {
	position: absolute;
	display: block;
	bottom: calc(100% - 3px);
	width: 100%;
	height: 22px;
	background: url('./../img/common/bg-wave-white.svg') repeat-x center;
	background-size: 144px;
}
footer .footer-wrapper .contact {
	flex-flow: column;
	width: 90%;
	margin: 0 auto;
	padding: 52px 0;
}
footer .footer-wrapper .contact.none {
	display: none;
}
footer .footer-wrapper .contact .tel-wrapper {
	margin-bottom: 36px;
	& > p {
		margin-bottom: 24px;
		font-weight: 500;
	}
	& div.flex {
		flex-flow: column;
		align-items: start;
		gap: 8px;
	}
	& div.flex address .img-wrapper {
		display: inline-block;
		height: 100%;
		margin-right: 6px;
	}
	& div.flex address .img-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	& div.flex address a {
		font-family: var(--line);
		font-size: 1.3em;
		font-weight: 700;
	}
	& div.flex p {
		font-weight: 500;
	}
}
footer .footer-wrapper .contact .contact-link {
	width: 100%;
	& button {
		display: block;
		width: 100%;
		height: 60px;
	}
	& button a {
		display: inline-block;
		text-align: center;
		align-content: center;
		width: 100%;
		height: 100%;
		background: var(--green);
		font-weight: 500;
		font-size: 1.3em;
		border-radius: 30px;
		position: relative;
	}
	& button a::before {
		position: absolute;
		content: '';
		bottom: -4px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		height: 60px;
		background: #40B134;
		border-radius: 30px;
		z-index: -1;
	}
	& button a::after {
		position: absolute;
		content: '\e5e0';
		width: 24px;
		height: 24px;
		color: var(--black);
		top: 50%;
		right: 24px;
		transform: translateY(-50%) scale(-1, 1);
		font-family: 'material symbols outlined';
		font-size: 18px;
	}
}
/* お問い合わせボタンホバー時の挙動 */
@media (hover: hover) and (pointer: fine) {
	footer .footer-wrapper .contact .contact-link {
		& button a:hover {
			bottom: -4px;
		}
		& button a:hover::before {
			bottom: 0;
		}
	}
}
footer .footer-wrapper .banner-wrapper {
	width: 95%;
	margin: 0 auto;
	padding: 52px 0;
	border-top: 2px solid #ededed;
	border-bottom: 2px solid #ededed;
	& > div.flex {
		flex-flow: column;
		align-items: start;
		gap: 12px;
		width: 90%;
		margin: 0 auto;
	}
	& .img-wrapper {
		width: 100%;
		height: 80px;
		padding: 4px;
		background: #fff;
		border: 0.5px solid var(--black);
		text-align: center;
	}
	& .img-wrapper a {
		display: block;
		width: 100%;
		height: 100%;
	}
	& .img-wrapper img {
		width: 80%;
		height: 100%;
		object-fit: contain;
	}
}
footer .footer-wrapper .address-wrapper {
	width: 80%;
	margin: 28px auto;
	& div.flex {
		flex-flow: column;
	}
	& p {
		margin-bottom: 12px;
	}
}
footer small {
	display: block;
	text-align: center;
	padding: 12px 0;
	font-size: 1em;
	background: var(--green);
}

@media print, screen and (min-width: 764px) {
	footer .footer-wrapper .contact {
		flex-flow: row;
		justify-content: space-between;
		padding: 0;
		padding-top: 44px;
		padding-bottom: 32px;
	}
	footer .footer-wrapper .contact .tel-wrapper {
		margin-bottom: 0;
		& div.flex {
			flex-flow: row;
			justify-content: start;
			align-items: center;
			flex-wrap: wrap;
			gap: 12px 20px;
		}
	}
	footer .footer-wrapper .contact .contact-link {
		width: 40%;
	}
	footer .footer-wrapper .banner-wrapper {
		padding: 24px 0;
		& > div.flex {
			flex-flow: row;
			align-items: center;
			width: 100%;
		}
		& .img-wrapper {
			width: calc(100% / 3);
		}
	}
	footer .footer-wrapper .address-wrapper {
		& > div.flex {
			flex-flow: row;
			gap: 24px;
		}
		& p {
			margin-bottom: 0;
		}
	}
}

/* =========================== */
/* 下層ページ見出し */
/* =========================== */
#headline.headline span.headline-line-gray {
	display: block;
	height: 4px;
	background: #ededed;
}
#headline.headline .headline-wrapper {
	display: inline-block;
	margin-top: 36px;
	position: relative;
	&::after {
		position: absolute;
		content: '';
		top: 100%;
		width: 100%;
		height: 4px;
		border-radius: 2px;
		background: #EDEDED;
		z-index: 0;
	}
	& > div.flex {
		justify-content: start;
		align-items: stretch;
		gap: 20px;
		width: auto;
		height: 60px;
		margin-bottom: 16px;
		padding: 0 4px;
		position: relative;
	}
	& > div.flex::after {
		position: absolute;
		content: '';
		top: calc(100% + 16px);
		width: 100%;
		height: 4px;
		border-radius: 2px;
		background: var(--green);
		z-index: 1;
	}
	& .img-wrapper {
		width: 56px;
	}
	& .img-wrapper img {
		width: 100%;
	}
	& .text-wrapper {
		display: inline-block;
	}
	& .text-wrapper p.en {
		font-family: var(--line);
		font-size: 16px;
		font-weight: 700;
	}
	& .text-wrapper h1 {
		font-family: var(--line);
		font-size: 28px;
		font-weight: 700;
	}
}

@media print, screen and (min-width: 764px) {
	#headline.headline {
		width: 80%;
		margin: 0 auto;
		margin-top: 40px;
	}
}


/* =========================== */
/* パンくずリスト */
/* =========================== */
#breadcrumb.breadcrumb {
	margin-top: 32px;
	margin-bottom: 12px;
	padding-left: 12px;
	& ul {
		justify-content: start;
		gap: 36px;
	}
	& ul li:not(:last-child) {
		color: #40B134;
		position: relative;
		&::after {
			position: absolute;
			content: '\e5e0';
			width: 1em;
			height: 1em;
			top: 33%;
			left: calc(100% + 16px);
			transform: translateX(-50%) translateY(-50%) scale(-1, 1);
			font-family: 'Material Symbols Outlined';
		}
	}
	& ul li:not(:last-child) a {
		font-weight: 500;
	}
}

@media print, screen and (min-width: 764px) {
	#breadcrumb.breadcrumb {
		width: 80%;
		margin: 0 auto;
		margin-top: 36px;
		margin-bottom: 12px;
		padding-left: 0;
	}
}