@charset "utf-8";

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	backface-visibility: hidden;
}
*:before,
*:after {
	pointer-events: none;
}
:root {
	--base-font-color: #000;
	--base-bg-color: #fff;
	--sub-bg-color: #f2f3f0;
	--main-color: #007f2a;
	--accent-color: #1eaf4e;
	--hover-color: #1eaf4e;
	--attention-color: #fc0303;
	--gray-color: #bebebe;
	--minimum-contents-width: 600px;
	--small-contents-width: 800px;
	--main-contents-width: 1200px;
	--large-contents-width: 1400px;
	--thin-font-weight: 300;
	--normal-font-weight: 400;
	--bold-font-weight: 700;
	--black-font-weight: 900;
	/*16px基準*/
	--10px: 0.625rem;
	--11px: 0.6875rem;
	--12px: 0.75rem;
	--13px: 0.8125rem;
	--14px: 0.875rem;
	--15px: 0.9375rem;
	--16px: 1rem;
	--17px: 1.0625rem;
	--18px: 1.125rem;
	--19px: 1.1875rem;
	--20px: 1.25rem;
	--21px: 1.3125rem;
	--22px: 1.375rem;
	--23px: 1.4375rem;
	--24px: 1.5rem;
	--25px: 1.5625rem;
	--26px: 1.625rem;
	--27px: 1.6875rem;
	--28px: 1.75rem;
	--29px: 1.8125rem;
	--30px: 1.875rem;
	--31px: 1.9375rem;
	--32px: 2rem;
	--33px: 2.0625rem;
	--34px: 2.125rem;
	--35px: 2.1875rem;
	--36px: 2.25rem;
	--37px: 2.3125rem;
	--38px: 2.375rem;
	--39px: 2.4375rem;
	--40px: 2.5rem;
	--41px: 2.5625rem;
	--42px: 2.625rem;
	--43px: 2.6875rem;
	--44px: 2.75rem;
	--45px: 2.8125rem;
	--46px: 2.875rem;
	--47px: 2.9375rem;
	--48px: 3rem;
	--49px: 3.0625rem;
	--50px: 3.125rem;
}
html {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	color: var(--base-font-color);
	font-size: 16px;
	font-weight: var(--normal-font-weight);
	line-height: 1.8;
	word-break: break-all;
	margin: 0;
	padding: 0;
}
div,
p,
ul,
ul li,
dl,
dt,
dd {
	font-size: 1em;
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img,
video,
object {
	max-width: 100%;
	height: auto;
	border: none;
}
img {
	display: block;
	image-rendering: -webkit-optimize-contrast;
}
h1,
h2,
h3,
h4,
h5 {
	font-size: 1em;
	line-height: 1;
	letter-spacing: 0.025em;
	/*word-break: auto-phrase;*/
	padding: 0;
	margin: 0;
}
a {
	color: var(--base-font-color);
	text-decoration: none;
	transition: all ease 0.3s;
}
a:hover {
	color: var(--hover-color);
}
a[href^="tel:"] {
	text-decoration: none;
	pointer-events: none;
	text-emphasis: none !important;
}
a[href^="fax:"] {
	text-decoration: none;
	pointer-events: none;
}

.pc {
	display: inherit;
}
.tb {
	display: none;
}
.mb {
	display: none;
}

@media only screen and (max-width: 820px) {
	.pc {
		display: none;
	}
	.tb {
		display: block;
	}
	.mb {
		display: none;
	}
}
@media only screen and (max-width: 468px) {
	body {
		font-size: var(--15px);
		min-width: 375px;
	}
	a[href^="tel:"] {
		pointer-events: all;
	}

	.pc {
		display: none;
	}
	.tb {
		display: none;
	}
	.mb {
		display: block;
	}
}

/* =========================================================================================
Layout
=========================================================================================*/
#wrapper {
	position: relative;
	padding: 0;
	margin: 0 auto;
	overflow: hidden !important;
}
#container {
	margin: 0;
	padding-block: 113px 100px;
}
section {
	position: relative;
	padding-block: 50px;
	margin: 0;
}
.inner {
	max-width: var(--main-contents-width);
	width: calc(100% - 30px - 30px); /*左右の余白30pxずつ*/
	margin: 0 auto;
	position: relative;
}
@media only screen and (max-width: 820px) {
	#container {
		padding-block: 82px 75px;
	}
}
@media only screen and (max-width: 468px) {
	section {
		padding-block: 35px;
	}
	.inner {
		width: calc(100% - 20px - 20px);
	}
}

/*flex-item*/
.flex-box {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: space-between;
}
.flex-box + .flex-box {
	margin-top: 50px;
}
.flex-box .item {
	padding: 20px;
	background-color: #ccc;
	flex-grow: 1;
}

@media only screen and (max-width: 820px) {
	.flex-box {
		gap: 25px;
	}
	.flex-box .item {
		width: 100%;
	}
}
@media only screen and (max-width: 468px) {
}

/*midashi*/
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
	font-weight: bold;
	margin: 0 0 1em 0;
	padding: 0;
}
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
	margin-top: 1em;
}
h1 {
	font-size: 2.25em;
}
h2 {
	font-size: 2em;
}
h3 {
	font-size: 1.75em;
}
h4 {
	font-size: 1.5em;
}
h5 {
	font-size: 1.25em;
}
h6 {
	font-size: 1em;
}

/*Hr*/
hr {
	width: 100%;
	max-width: 500px;
	height: 1px;
	border: none;
	background-color: #000;
	margin: 10vh auto;
}

@media only screen and (max-width: 820px) {
	hr {
		width: 50%;
	}
}

/*table*/
table {
	margin: 50px 0;
	width: 100%;
	border-spacing: 0;
}
caption {
	font-size: small;
	text-align: left;
	color: #808080;
	display: block;
	margin-bottom: 0.5em;
}
th {
	padding: 1em 0;
	font-weight: bold;
	text-align: left;
	width: 10em;
	background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
	background-position: left -8px bottom;
	background-repeat: repeat-x;
	background-size: 6px 2px;
	vertical-align: top;
}
td {
	padding: 1em 0;
	background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
	background-position: left -8px bottom;
	background-repeat: repeat-x;
	background-size: 6px 2px;
}
tr:first-child th,
tr:first-child td {
}
tr:last-child th,
tr:last-child td {
}

@media only screen and (max-width: 820px) {
	table.scroll {
		display: block;
		overflow-x: scroll;
	}
	table.scroll tbody {
		width: 1000px;
		display: block;
	}
	table.scroll th,
	table.scroll td {
		display: table-cell;
	}
	table.scroll th {
		text-align: center;
	}
	table.scroll tr:last-child th {
		border-bottom: none;
	}
}
@media only screen and (max-width: 468px) {
	th,
	td {
		display: block;
	}
	th {
		text-align: left;
	}
	tr:first-child td {
		border-top: none;
	}
	tr:last-child th {
		border-bottom: none;
	}

	th {
		width: 100%;
		background-image: none;
		padding-bottom: 0;
	}
	td {
		padding-top: 0;
	}
}

/*list*/
ul.list,
ol.list {
	margin: 1em 0 1em 1.5em;
}
ul.list li {
	position: relative;
}
ul.list li:before {
	content: "";
	position: absolute;
	background: #000;
	width: 7px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	top: 0.75em;
	left: -1em;
}

/*list-note*/
ul.note {
	margin-left: 1.75em;
	list-style: none;
}
ul.note.center {
	width: fit-content;
	margin: auto;
}
ul.note li {
	text-indent: -1.5em;
}
ul.note li:before {
	content: "※";
	position: static;
	background: none;
	margin-right: 0.5em;
	top: 0.2em;
	left: -1em;
}

/* =========================================================================================
Header
=========================================================================================*/
#header {
	width: 100%;
	height: 113px;
	background: rgba(255, 255, 255, 0.7);
	/*background: linear-gradient(180deg, #FFF 0%, #FFF 125px, transparent 125px, transparent 100%);*/
	position: fixed;
	padding: 0;
	margin: 0;
	z-index: 100;
	top: 0;
	transition: 0.5s;
}
#header .inner {
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 20px;
	width: 100%;
	max-width: none;
	padding: 0;
	margin: auto;
}
#header .logo {
	width: 20%;
	max-width: 210px;
	position: absolute;
	top: 50%;
	left: 30px;
	translate: 0 -50%;
	z-index: 999;
	margin: 0;
}
#header .logo a {
	width: 100%;
	display: block;
	text-indent: -9999px;
	aspect-ratio: 210 / 57;
	background: url(../images/common/logo.svg) no-repeat center;
	background-size: contain;
}

/*globalnavi*/
#header #g-navi-area,
#header #g-navi-list {
	width: 100%;
	height: 100%;
}
#header #g-navi-area ul {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: right;
	gap: 0 5%;
	padding-left: 25%;
	padding-right: 225px;
	margin: 0;
	position: relative;
}
#header #g-navi-area ul li {
	font-size: var(--20px);
	font-weight: var(--normal-font-weight);
	display: flex;
	align-items: center;
	justify-content: center;
}
#header #g-navi-area ul li a {
	color: var(--base-font-color);
	display: block;
}
#header #g-navi-area ul li a:hover {
	color: var(--main-color);
}
#header #g-navi-area ul li.contact {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
}
#header #g-navi-area ul li.contact a {
	color: var(--base-bg-color);
	font-size: var(--18px);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: var(--main-color) url(../images/common/icon_mail.svg) no-repeat;
	background-position: top 30px center;
	background-size: 33px auto;
	padding: 2em 1.5em 0;
	transition: all ease 0.3s;
}
#header #g-navi-area ul li.contact a:hover {
	color: var(--base-bg-color);
	background-color: var(--accent-color);
}
#header #g-navi-area ul li.privacy {
	display: none;
}
@media only screen and (max-width: 1200px) {
	#header #g-navi-area ul {
		padding-right: 20%;
	}
	#header #g-navi-area ul li {
		font-size: var(--16px);
	}
	#header #g-navi-area ul li.contact a {
		font-size: var(--16px);
		padding: 2em 1.25em 0;
	}
}

#header .openbtn {
	display: none; /*PCでは非表示*/
}
@media only screen and (max-width: 820px) {
	#header {
		height: 82px;
		padding: 0;
		background: #fff;
	}
	#header .inner {
		justify-content: space-between;
		padding-right: 85px;
	}
	#header .logo {
		width: 130px;
		top: 10px;
		left: 20px;
		translate: 0;
	}
	/* HAMBURGER MENU */
	#header .openbtn {
		display: inherit;
		position: fixed;
		z-index: 9999;
		text-indent: -9999px;
		top: 0;
		right: 0;
		cursor: pointer;
		width: 60px;
		height: 60px;
		background: var(--main-color) url(../images/common/menu_btn.svg) no-repeat center;
		background-size: 35px 35px !important;
	}
	#header .openbtn.active {
		background: var(--main-color) url(../images/common/menu_close.svg) no-repeat center;
	}
	#header #g-navi-area {
		position: fixed;
		z-index: 99;
		top: 0;
		right: -120%;
		width: 350px !important;
		height: 100vh;
		min-height: 400px;
		background: var(--main-color);
		transition: all 0.5s;
		display: initial;
		border-radius: 0;
		padding: 0;
	}
	#header #g-navi-area.panelactive {
		/*アクティブクラスがついたら位置を0に*/
		right: 0;
	}
	#header #g-navi-area a {
		color: #fff !important;
	}
	#header #g-navi-area a:hover {
		text-decoration: none !important;
		opacity: 0.8 !important;
		transition: 0.3s !important;
	}
	#header #g-navi-area #g-navi-list {
		/*ナビの数が増えた場合縦スクロール*/
		z-index: 999;
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		position: relative;
		padding: 75px 40px;
	}
	#header #g-navi-area ul {
		width: 100%;
		display: block;
		position: relative;
		z-index: 999;
		padding: 0;
		margin-inline: auto;
		gap: 0;
	}
	#header #g-navi-area ul li {
		display: block;
	}
	#header #g-navi-area ul li:not(:last-child) {
		text-align: left;
		font-size: var(--20px);
		border-bottom: 1px solid var(--base-bg-color);
		width: 100%;
	}
	#header #g-navi-area ul li:nth-child(4) {
		border-bottom: none;
	}
	#header #g-navi-area ul li a {
		padding: 15px 0;
		position: relative;
	}
	#header #g-navi-area ul li:not(:last-child) a::after {
		position: absolute;
		content: "";
		background: url(../images/common/arrow_left.svg) no-repeat;
		background-size: contain;
		width: 10px;
		height: 9px;
		top: 50%;
		right: 0;
		translate: 0 -50%;
	}
	#header #g-navi-area ul li.contact {
		width: 100%;
		height: auto;
		border-radius: 20px;
		margin-top: 30px;
		overflow: hidden;
		position: static;
	}

	#header #g-navi-area ul li.contact a {
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--main-color) !important;
		background: #fff url(../images/common/icon_mail_sp.svg) no-repeat;
		background-position: top 1.175em left 55px;
		background-size: 33px auto;
		padding: 1em 0.25em 1em 40px;
		margin-inline: auto;
	}
	#header #g-navi-area ul li.contact a::after {
		display: none;
	}
	#header #g-navi-area ul li.contact a:hover {
		background-color: #fff;
	}
	#header #g-navi-area ul li.privacy {
		display: block;
		margin-top: 0.5em;
		font-size: var(--14px);
	}
}
@media only screen and (max-width: 468px) {
	#header #g-navi-area {
		right: -150%;
		width: 100% !important;
	}
	#header #g-navi-area ul {
		width: 90%;
	}
}

/* =========================================================================================
Footer
=========================================================================================*/
#footer {
	overflow: hidden;
	background-color: #3c3c3c;
	padding-block: 30px;
}
#footer .inner {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 30px;
	padding-block: 30px;
	flex-wrap: wrap;
	color: var(--sub-bg-color);
}
#footer .address {
	padding-block: 70px 100px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 50px;
}
#footer .address dt {
	font-size: clamp(1rem, calc(0.89rem + 0.376vw), 1.125rem); /* min: 16px, max: 18px */
	font-weight: 600;
}
#footer .address dd {
	font-size: clamp(0.938rem, calc(0.828rem + 0.376vw), 1.063rem); /* min: 15px, max: 17px */
}
#footer .logo img {
	max-width: 205px;
}
#footer .copyright {
	color: #fff;
	text-align: center;
	font-size: clamp(0.625rem, 0.35rem + 0.94vi, 0.938rem);
	font-weight: var(--thin-font-weight);
}

/* footer-navi */
#footer .f-navi {
	width: calc(100% - 400px);
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	flex-wrap: wrap;
	gap: 10px 30px;
}
#footer .f-navi ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	gap: 15px 30px;
}
#footer .f-navi li {
	display: inline-table;
	list-style-type: none;
	position: relative;
	padding-left: 15px;
}
#footer .f-navi li a {
	color: var(--base-bg-color);
}
#footer .f-navi li a::after {
	position: absolute;
	content: "";
	background: url(../images/common/arrow_left.svg) no-repeat;
	background-size: contain;
	width: 10px;
	height: 9px;
	top: 50%;
	left: 0;
	translate: 0 -50%;
}
#footer .f-navi li a:hover {
	text-decoration: underline;
}
#footer .f-navi li ul {
	display: inline-block;
	margin-left: 1em;
}
#footer .f-navi li ul li {
	display: list-item;
	list-style-type: disc;
}

@media only screen and (max-width: 820px) {
	#footer .inner {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 0;
	}
	#footer .inner .address {
		width: 100%;
	}
	#footer .f-navi {
		margin-top: 40px;
		width: 100%;
		justify-content: center;
	}
	#footer .f-navi ul {
		justify-content: center;
	}
	#footer .copyright {
		text-align: center;
	}
	#footer .address {
		padding-block: 50px 60px;
		flex-wrap: wrap;
		gap: 20px;
	}
	#footer .address dl {
		width: 100%;
		text-align: center;
	}
}
@media only screen and (max-width: 468px) {
	#footer .f-navi {
		display: none;
	}
	#footer .logo img {
		max-width: 260px;
	}
}

/* =========================================================================================
Btn
=========================================================================================*/
.btn {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 10px 0;
	filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
	width: fit-content;
}
.btn a {
	color: #fff;
	font-weight: var(--normal-font-weighteight);
	background-color: var(--accent-color);
	border-radius: 50px;
	padding: 0.75em 3.5em 0.75em 1.5em;
	text-decoration: none !important;
	position: relative;
}
.btn a::after {
	position: absolute;
	content: "";
	background: url(../images/common/arrow_right.svg) no-repeat;
	background-size: contain;
	width: 1em;
	height: 1em;
	top: 50%;
	right: 1em;
	translate: 0 -50%;
}
.btn a:hover {
	opacity: 0.8;
	text-decoration: none !important;
}

/*color*/
.btn a.white {
	color: #000;
	background: #fff;
	border: 1px solid #000;
}
.btn a.green {
	color: #fff;
	background: green;
}
.btn a.blue {
	color: #fff;
	background: blue;
}

/*size*/
.btn a.large {
	font-size: var(--24px);
	min-width: 600px;
}

@media only screen and (max-width: 820px) {
	.btn a.large {
		min-width: 100%;
	}
}
@media only screen and (max-width: 468px) {
	.btn a {
		min-width: 100% !important;
		font-size: var(--13px);
	}
}

/* =========================================================================================
Page Top
=========================================================================================*/
#page-top {
	position: fixed;
	z-index: 99;
	bottom: 20px;
	right: 20px;
}
#page-top a {
	display: block;
	text-decoration: none;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	line-height: 1;
	font-weight: bold;
	background: #000 url(../images/common/arrow_up.svg) no-repeat center;
	background-size: 1.5em;
	text-indent: -9999px;
}
#page-top a:hover {
	opacity: 0.8;
}

@media only screen and (max-width: 820px) {
	#page-top {
		bottom: 10px;
		right: 15px;
	}
}
@media only screen and (max-width: 468px) {
}

/* =========================================================================================
FORM
=========================================================================================*/
form {
	position: relative;
	margin: 0 auto;
	box-sizing: border-box;
	background: #fff;
}
form label {
	display: inline-block;
}
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea,
form select {
	padding: 0.75em 1em;
	background: #eeeeef;
	width: 100%;
	border: 1px solid var(--gray-color);
	transition: 0.3s;
}
form input:focus,
form textarea:focus {
	background: #fafafa;
}
form textarea {
	display: block;
	width: 100%;
}
form select {
	width: fit-content;
	min-width: 300px;
	padding-right: 4em;
	background: #fff url(images/common/arrow_down.svg) no-repeat;
	background-position: right 1em center;
	background-size: 1em;
}
form input[type="submit"],
form input[type="button"] {
	color: #fff;
	font-weight: var(--bold-font-weight);
	background-color: var(--base-font-color);
	padding: 0.75em 1.5em;
	line-height: 1.4;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
	border-radius: 100px;
	min-width: 320px;
	border: none;
	transition: 0.3s;
}
form input[type="submit"] {
	background-color: #000;
}
form input[type="button"] {
	background-color: #808080;
}
form input[type="submit"]:hover,
form input[type="button"]:hover {
	opacity: 0.8;
}

@media only screen and (max-width: 820px) {
	form textarea {
		width: 100%;
	}
}
@media only screen and (max-width: 468px) {
}
