@charset "UTF-8";

:root {
	--basic: #333333;
	--green: #388E3C;
}
body {
	font-family: "Noto Sans JP", serif;
	color: var(--basic);
}
a,
a:hover {
	color: var(--basic);
	text-decoration: none;
	transition: 0.3s;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.6;
	font-weight: 400;
}
strong, .strong {
	font-weight: 700;
}
dl, dt, dd {
	margin: 0;
}
.green {
	color: var(--green);
}
.relative {
	position: relative;
}
.en {
	font-family: "Abel", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
.container {
	max-width: 1100px;
	padding-left: 50px;
	padding-right: 50px;
}
.row-0 {
	margin: 0;
}
.row-0 > * {
	padding: 0;
}
@media (min-width: 768px) {
	
}
@media (max-width: 767px) {
	.container {
		max-width: 575px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ------------------------------ */
/* p, ul, ol, img */
/* ------------------------------ */

p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
ul.indent {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul.indent li {
	text-indent: -1em;
	padding-left: 1em;
}

/* ------------------------------ */
/* a, .btn */
/* ------------------------------ */

/* .blank */
.blank span {
	margin-right: 0.2em;
}
.lower-page .blank span {
	text-decoration: underline;
}
.blank::after {
	font-family: "Material Symbols Sharp";
	content: "\e89e";
	display: inline-block;
	font-size: 130%;
	font-weight: 100;
	line-height: 1;
	vertical-align: middle;
	text-decoration: none;
	padding-bottom: 0.05em;
}
@media (min-width: 768px) {
	.lower-page .blank:hover span {
		text-decoration: none;
	}
}

/* .btn */
.btn {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 70px;
	border-radius: 0;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	font-size: 15px;
	line-height: 1.4;
	text-align: left;
	padding: 10px 45px 10px 30px;
}
.btn::after {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	font-size: 160%;
	font-weight: 100;
	transition: 0.3s;
}
@media (min-width: 768px) {
	.btn:hover {
		opacity: 0.5;
	}
}
@media (max-width: 767px) {
	.btn {
		padding: 10px 40px 10px 20px;
	}
}

/* .btn-doc */
.btn-doc::after {
	content: "\f090";
}
.btn-doc span {
	position: relative;
	display: block;
	padding-left: 35px;
}
.btn-doc span::before {
	position: absolute;
	left: -5px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e873";
	font-weight: 100;
	font-size: 200%;
}
.btn-excel span::before {
	color: #2D7102;
}
.btn-pdf span::before {
	color: #D10000;
}
.btn-blank::after {
	content: "\e89e";
}

/*----------------------------------------*/
/* .header */
/*----------------------------------------*/

.header {
	position: relative;
	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	z-index: 100;
}
.header .container {
	max-width: 100%;
}
.header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 90px;
	transition: 0.3s;
}
@media (max-width: 1199px) {
	.header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
	}
	.header .inner {
		height: 80px;
	}
	.header .container {
		padding: 0 30px;
	}
}
@media (max-width: 767px) {
	.header .inner {
		height: 60px;
	}
	.header .container {
		padding: 0 20px;
	}
}

/* .site-logo */
.header .site-logo {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}
@media (max-width: 767px) {
	.header .site-logo {
		font-size: 20px;
	}
}

/* .nav-wrap */
.header .nav-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header .nav-wrap > ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	align-items: center;
	height: 100%;
}
.header .nav-wrap ul.sub-nav li {
	margin-right: 20px;
}
.header .nav-wrap ul.sub-nav li a {
	position: relative;
	display: block;
	font-size: 13px;
	padding-left: 15px;
}
.header .nav-wrap ul.sub-nav li a::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e5e1";
	font-weight: 100;
	line-height: 1;
	color: var(--green);
}
.header .nav-wrap ul.contact-nav li {
	border-left: 1px solid #cccccc;
	padding-left: 15px;
	margin-left: 15px;
}
.header .nav-wrap ul.contact-nav li:first-child {
	border-left: none;
	margin-left: 15px;
}
.header .nav-wrap ul.contact-nav li > * {
	position: relative;
	display: block;
	font-size: 14px;
	padding-left: 30px;
}
.header .nav-wrap ul.contact-nav li:nth-child(2) > *,
.header .nav-wrap ul.contact-nav li:nth-child(3) > * {
	font-size: 18px;
}
.header .nav-wrap ul.contact-nav li > *::after {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e55e";
	font-size: 26px;
	font-weight: 100;
	line-height: 1;
	color: var(--green);
}
.header .nav-wrap ul.contact-nav li:nth-child(2) > *::after {
	content: "\e0b0";
}
.header .nav-wrap ul.contact-nav li:nth-child(3) > *::after {
	content: "\ead8";
}
@media (min-width: 768px) {
	.header .nav-wrap a {
		transition: opacity 0.3s;
	}
	.header .nav-wrap a:hover {
		opacity: 0.5;
	}
}
@media (max-width: 1199px) {
	.header .nav-wrap {
		display: none;
	}
}

/*----------------------------------------*/
/* .global-nav-pc */
/*----------------------------------------*/

.global-nav-pc {
	position: relative;
	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	z-index: 100;
}
.global-nav-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.global-nav-pc .container {
	max-width: 100%;
}
.global-nav-pc > * > ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav-pc > * > ul > li {
	
}
.global-nav-pc > * > ul > li > a {
	display: flex;
	align-items: center;
	height: 70px;
	font-size: 15px;
	padding: 0 25px;
}
.global-nav-pc li a span {
	transition: 0.3s;
}
.global-nav-pc li:hover a span {
	opacity: 0.5;
}
.global-nav-pc > * > ul > li.has-child > a {
	position: relative;
}
.global-nav-pc > * > ul > li.has-child > a::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -1px;
	content: "";
	clip-path: polygon(0 100%, 50% 0, 100% 100%);
	width: 15px;
	height: 10px;
	background-color: #4F524F;
	opacity: 0;
	transition: 0.3s;
}
.global-nav-pc > * > ul > li.has-child:hover > a::after {
	opacity: 1;
}
@media (max-width: 1299px) {
	.global-nav-pc > * > ul > li > a {
		padding: 0 20px;
	}
}
@media (max-width: 1199px) {
	.global-nav-pc {
		display: none;
	}
	.nav-placeholder {
		display: none !important;
	}
}

/* ------------------------------ */
/* グローバルナビ｜メガメニュー  */
/* ------------------------------ */

.global-nav-pc .mega-menu {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #4F524F;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
	padding: 30px 0;
}
.global-nav-pc > * > ul > li:hover .mega-menu {
	visibility: visible;
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}
.global-nav-pc .mega-menu .container {
	max-width: 1100px;
}
.global-nav-pc .mega-menu ul {
	margin: 0 -10px;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
.global-nav-pc .mega-menu ul li {
	width: 20%;
	padding: 15px 10px;
}
.global-nav-pc .mega-col ul li {
	width: 33.33%;
}
.global-nav-pc .mega-menu ul li a {
	position: relative;
	display: inline-block;
	font-size: 15px;
	color: #ffffff;
	padding-left: 30px;
}
.global-nav-pc .mega-menu ul li a::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	background-color: #ffffff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Material Symbols Sharp";
	content: "\e5cc";
	color: var(--basic);
	font-weight: 200;
}
.global-nav-pc .mega-menu ul li a:hover {
	opacity: 0.5;
}

/* ------------------------------ */
/* .hamburger */
/* ------------------------------ */

@media (min-width: 1200px) {
	.hamburger {
		display: none !important;
	}
}
.hamburger {
	position: relative;
	display: block;
	padding: 0;
	border-radius: 0;
	border: 0;
	width: 40px;
	height: 40px;
}
.hamburger .navbar-toggler-icon {
	display: block;
	width: 20px;
	height: 1px;
	background-color: var(--green);
	position: absolute;
	transition: 0.5s;
	transform: translate(-50%,-50%) rotate(0);
	top: 50%;
	left: 50%;
}
.hamburger .navbar-toggler-icon::before,
.hamburger .navbar-toggler-icon::after {
	position: absolute;
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background-color: var(--green);
	transform-origin: center;
	transition: 0.5s;
}
.hamburger .navbar-toggler-icon::before {
	transform: translate(0,-7px) rotate(0deg);
}
.hamburger .navbar-toggler-icon::after {
	transform: translate(0,7px) rotate(0deg);
}
/*オープン*/
.hamburger.open .navbar-toggler-icon {
	transform: translate(-50%,-50%) rotate(45deg);
}
.hamburger.open .navbar-toggler-icon::before {
	transform: translate(0,0) rotate(90deg);
}
.hamburger.open .navbar-toggler-icon::after {
	transform: translate(0,0) rotate(90deg);
}
@media (max-width: 1199px) {
	body.fixed {
		position: relative;
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
	}
}

/* ------------------------------ */
/* SPメニュー */
/* ------------------------------ */

/* .global-nav-sp */
.global-nav-sp {
	display: none;
	background-color: #ffffff;
	border-top: 1px solid #cccccc;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	font-size: 14px;
	overflow: auto;
	padding: 50px 0;
}
.global-nav-sp .nav-sp ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.global-nav-sp .nav-sp ul li {
	border-bottom: solid 1px #cccccc;
}
.global-nav-sp .nav-sp ul li .toggle {
	position: relative;
	cursor: pointer;
	padding: 15px 40px 15px 20px;
}
.global-nav-sp .nav-sp ul li .toggle::before,
.global-nav-sp .nav-sp ul li .toggle::after {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateX(-50%);
	content: "";
	width: 10px;
	height: 1px;
	background-color: var(--green);
	transition: 0.3s;
}
.global-nav-sp .nav-sp ul li .toggle::after {
	transform: translateX(-50%) rotate(90deg);
}
.global-nav-sp .nav-sp ul li .toggle.open::after {
	transform: translateX(-50%) rotate(0deg);
}
.global-nav-sp .nav-sp ul li a {
	position: relative;
	display: block;
	width: 100%;
	padding: 15px 40px 15px 20px;
}
.global-nav-sp .nav-sp ul li a:after {
	position: absolute;
	right: 17px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e5e1";
	font-weight: 100;
	color: var(--green);
}
.global-nav-sp .nav-sp ul li a.blank:after {
	content: "\e89e";
}
.accordion {
	display: none; /* 初期状態では非表示 */
	background-color: #4F524F;
}
.global-nav-sp .nav-sp .accordion ul li {
	border: none;
}
.global-nav-sp .nav-sp .accordion ul li + li {
	border-top: solid 1px #999999;
}
.global-nav-sp .nav-sp .accordion ul li a {
	color: #ffffff;
	padding-left: calc(20px + 1em);
}
.global-nav-sp .nav-sp .accordion ul li:first-child a {
	padding-left: 20px;
}
.global-nav-sp .nav-sp .accordion ul li a::after {
	color: #999999;
}
@media (min-width: 768px) {
	.global-nav-sp .nav-sp ul li a:hover {
		opacity: 0.5;
	}
}
@media (min-width: 1200px) {
	.global-nav-sp {
		display: none !important;
	}
}
@media (max-width: 1199px) {
	.global-nav-sp {
		top: 80px;
	}
}
@media (max-width: 767px) {
	.global-nav-sp {
		top: 60px;
		padding: 0 0 100px 0;
	}
	.global-nav-sp .container {
		padding: 0;
	}
}

/* .contact-nav */
.global-nav-sp ul.contact-nav {
	margin: 20px 0 0 0;
	padding: 0 20px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
.global-nav-sp ul.contact-nav li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	padding-bottom: 5px;
}
.global-nav-sp ul.contact-nav li:nth-child(2),
.global-nav-sp ul.contact-nav li:nth-child(3) {
	width: 50%;
	border-top: 1px solid #cccccc;
	padding: 5px 10px 0 10px;
}
.global-nav-sp ul.contact-nav li:nth-child(2) {
	border-right: 1px solid #cccccc;
}
.global-nav-sp ul.contact-nav li > * {
	position: relative;
	display: block;
	font-size: 14px;
	padding-left: 30px;
}
.global-nav-sp ul.contact-nav li:nth-child(2) > *,
.global-nav-sp ul.contact-nav li:nth-child(3) > * {
	font-size: 18px;
}
.global-nav-sp ul.contact-nav li > *::after {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e55e";
	font-size: 26px;
	font-weight: 100;
	line-height: 1;
	color: var(--green);
}
.global-nav-sp ul.contact-nav li:nth-child(2) > *::after {
	content: "\e0b0";
}
.global-nav-sp ul.contact-nav li:nth-child(3) > *::after {
	content: "\ead8";
}
@media (max-width: 359px) {
	.global-nav-sp ul.contact-nav li {
		padding: 0;
	}
	.global-nav-sp ul.contact-nav li:nth-child(2),
	.global-nav-sp ul.contact-nav li:nth-child(3) {
		width: 100%;
		border-right: none;
		padding: 0;
	}
}

/*----------------------------------------*/
/* .footer */
/*----------------------------------------*/

.footer {
	background-color: #EFEFEF;
	font-size: 14px;
	padding-top: 90px;
}
.footer ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.footer ul li {
	margin-bottom: 1em;
}
.footer .site-logo {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 30px 0;
}
.footer .col-txt p {
	line-height: 2;
	margin-bottom: 40px;
}
.footer .col-txt ul li a {
	text-decoration: underline;
}
.footer .col-nav > ul > li > ul {
	margin: 1em 0 1.5em 0;
}
.footer .col-nav > ul > li > ul li {
	margin-bottom: 0.75em;
}
.footer .col-nav > ul > li > ul li a {
	position: relative;
	padding-left: 15px;
}
.footer .col-nav > ul > li > ul li a::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 7px;
	height: 1px;
	background-color: var(--green);
}
.footer .copyright {
	text-align: center;
	background-color: #ffffff;
	margin-top: 70px;
	padding: 40px 0;
}
@media (min-width: 768px) {
	.footer .container {
		max-width: 1200px;
	}
	.footer .row-inner {
		display: flex;
		justify-content: space-between;
	}
	.footer .col-txt ul li a:hover {
		text-decoration: none;
	}
	.footer .col-nav {
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 620px;
	}
	.footer .col-nav ul {
		width: fit-content;
	}
	.footer .col-nav a:hover {
		opacity: 0.5;
	}
}
@media (max-width: 1199px) {
	.footer .col-nav {
		max-width: 580px;
	}
}
@media (max-width: 991px) {
	.footer .col-nav > ul > li > ul {
		display: none;
	}
	.footer .col-nav {
		display: block;
		max-width: 60%;
		border-top: 1px solid #cccccc;
	}
	.footer .col-nav ul {
		width: 100%;
	}
	.footer .col-nav ul li {
		border-bottom: 1px solid #cccccc;
		margin: 0;
	}
	.footer .col-nav ul li a {
		display: block;
		padding: 12px 0;
	}
}
@media (max-width: 767px) {
	.footer {
		padding-top: 60px;
	}
	.footer .site-logo {
		font-size: 20px;
	}
	.footer .col-txt p {
		margin-bottom: 30px;
	}
	.footer .col-nav {
		max-width: 100%;
		margin-top: 40px;
	}
	.footer .copyright {
		margin-top: 60px;
	}
}

/* ------------------------------ */
/* .to-top */
/* ------------------------------ */

.to-top {
	visibility: hidden;
	padding: 0;
	position: fixed;
	bottom: 20px;
	right: 20px;
	transition: 0.5s;
	transform: translateY(20px);
	filter: blur(10px);
	opacity: 0;
	z-index: 100;
}
.to-top.visible {
	visibility: visible;
	transform: translateY(0px);
	filter: blur(0);
	opacity: 1;
}
.to-top a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.5);
	color: #ffffff;
}
.to-top a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Material Symbols Sharp";
	content: "\e316";
	font-size: 28px;
	font-weight: 100;
	line-height: 1;
	color: #ffffff;
}
@media (max-width: 767px) {
	.to-top {
		bottom: 10px;
		right: 10px;
	}
}

/*--------------------------------------------------*/
/* 扉ページ */
/*--------------------------------------------------*/

.lower-page-list ul {
	margin: 0 -10px;
	padding: 0 !important;
	list-style-type: none;
}
.lower-page-list ul > * {
	padding: 0 10px;
	margin-bottom: 20px;
}
.lower-page-list a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	text-decoration: none !important;
	color: var(--basic) !important;
	padding: 10px;
}
.lower-page-list a::after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	content: "";
	width: 10px;
	height: 10px;
	background-color: var(--green);
	clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
.lower-page-list dl dt {
	line-height: 1;
	margin-bottom: 10px;
}
.lower-page-list dl dd {
	line-height: 1.6;
}
.lower-page-list .material-symbols-sharp {
	font-size: 60px;
	font-weight: 200;
	color: var(--green);
}
.lower-page-list .blank span {
	text-decoration: none;
}
@media (min-width: 768px) {
	.lower-page-list a:hover {
		opacity: 0.5;
	}
}
@media (max-width: 767px) {
	.lower-page-list ul {
		margin: 0 -5px;
	}
	.lower-page-list ul > * {
		padding: 0 5px;
		margin-bottom: 10px;
	}
	.lower-page-list a {
		font-size: min(3.6vw, 15px);
	}
}