@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap");

/* =====================================
   base
===================================== */
/* root */
:root {
	--color-text: #000000;
	--color-gray: #707070;
	--color-gray-dark: #333333;
	--color-gray--light: #f5f5f5;
	--color-white: #ffffff;
	--color-green-dark: #00726d;
	--color-green: #008a32;
	--color-green-light: #e9f7ee;
}
/* all */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* html */
html {
	font-size: 62.5%;
}

/* body */
body {
	color: var(--color-text);
	background-color: var(--color-white);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1.75;
	-webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}

/* list */
ol,
ul {
	padding-left: 2em;
}
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}
dt {
	font-weight: 700;
}
dd {
	margin-bottom: 0.5rem;
	margin-left: 0;
}

/* link */
a {
	color: var(--color-green);
}
@media (hover: hover) {
	a:hover {
		text-decoration: none;
	}
	a:hover img {
		outline: solid;
	}
}

/* link blank */
a[target="_blank"]:not([class])::after {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 7px;
	content: "";
	vertical-align: middle;
	background-image: url(../.assets/ico_blank_01.svg);
}

/* link pdf */
a[href$=".pdf"]:not([class])::after {
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 5px;
	content: "";
	vertical-align: middle;
	background-image: url(../.assets/ico_pdf_01.svg);
}

/* img */
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* form */
input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
	cursor: pointer;
}

/* iframe */
iframe[src^="https://www.youtube.com"] {
	aspect-ratio: 16 / 9;
	max-width: 100%;
	height: auto;
	border: 0;
}

/* =====================================
   heading
===================================== */
/* heading-2 */
.heading-2 {
	margin: 90px 0 40px;
	text-align: center;
	color: var(--color-text);
	font-family: "Roboto", sans-serif;
	font-size: 3.2rem;
	line-height: 1.3;
}

@media (max-width: 912px) {
	.heading-2 {
		margin: 60px 0 30px;
		font-size: 2.4rem;
	}
}

/* heading-3 */
.heading-3 {
	display: block;
	width: 100%;
	margin-top: 0;
	margin-bottom: 15px;
	text-align: left;
	font-size: 2.8rem;
}
@media (max-width: 912px) {
	.heading-3 {
		margin-bottom: 15px;
		font-size: 2rem;
	}
}

/* heading-4 */
.heading-4 {
	display: block;
	width: 100%;
	margin-top: 50px;
	padding-bottom: 4px;
	text-align: left;
	border-bottom: 1px solid var(--color-gray);
	font-size: 2.4rem;
}
@media (max-width: 912px) {
	.heading-4 {
		margin-top: 40px;
		font-size: 1.8rem;
	}
}



/* =====================================
   faq
===================================== */
/* faq */
.faq {
	display: block;
	width: 100%;
	margin: 50px 0 30px;
}
.faq__item:not(:last-child) {
	margin-bottom: 30px;
}
.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 25px 30px;
	border: none;
	border-radius: 10px;
	background: var(--color-white);
}
.faq__q.open {
	border-radius: 10px 10px 0 0;
}

/* toggle-button */
.toggle-button {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 5px;
	background: transparent;
}
.toggle-button::before,
.toggle-button::after {
	position: absolute;
	top: 50%;
	width: 18px;
	height: 2px;
	content: "";
	transition: all 0.3s;
	background: var(--color-green);
}
.toggle-button::before {
	transform: translate(-50%, -50%) rotate(90deg);
}
.toggle-button::after {
	transform: translateX(-50%);
	top: calc(50% - 1px);
}
.toggle-button.open::before {
	transform: translate(-50%, -50%);
}
.toggle-button.open::after {
	opacity: 0;
}
.faq__a {
	display: none;
	padding: 0 30px 25px;
	border-radius: 0 0 10px 10px;
	background: var(--color-white);
	position: relative;
}
.faq__heading {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: left;
    padding-left: 1.8em;
    text-indent: -1.8em;
	color: var(--color-text);
}
.faq__heading::before {
	margin-right: 1em;
	content: "Q";
	color: var(--color-green);
}
.faq__text {
	margin: 0;
	padding-left: 2em;
	text-indent: -2em;
	word-break: break-all;
}
.indentation-text {
	margin: 0;
	padding-left: 2em;
}
.faq__text::before {
	margin-right: 1em;
	content: "A";
	color: var(--color-green);
	font-size: 2rem;
	font-weight: bold;
}
.faq__attention {
	display: block;
	margin-top: 10px;
	padding-left: 1em;
	text-indent: -1em;
}
@media (min-width: 769px) {
	.faq {
		display: block;
		width: 100%;
		margin: 60px 0 30px;
	}
	.faq__q {
		width: 100%;
		padding: 33px 50px;
	}
	.faq__a {
		padding: 0 50px 30px;
	}
	.faq__heading {
		font-size: 2rem;
	}
}


/* counter */
.counter {
	display: flex;
    row-gap: 20px;
    text-indent: 0;
    flex-direction: column;
}
.counter::before {
	content: "A";
	color: var(--color-green);
	font-size: 2rem;
	font-weight: bold;
	position: absolute;
	left: 30px;
}
.counter__item {
	display: flex;
	grid-column: 2 / 3;
	align-items: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 30px;
	background: var(--color-gray--light);
	margin-left: 30px;
}
.counter__heading {
	margin: 0 0 20px;
	text-align: center;
	font-size: 2rem;
}

/* contact-button */
.contact-button {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	max-width: 265px;
	padding: 12px 25px;
	transition: 0.3s;
	text-decoration: none;
	color: var(--color-white);
	border-radius: 30px;
	background: var(--color-green);
	font-size: 1.6rem;
	line-height: 1.25;
}
.contact-button::before {
	width: 20px;
	height: 15px;
	content: "";
	background: url(../.assets/ico_mail_white_01.svg) no-repeat;
}
.contact-button:hover {
	transform: scale(1.1);
}
.counter__time {
	display: block;
	margin: 10px 0 30px 30px;
	text-align: center;
	font-weight: bold;
}
.counter__attention {
	margin: 0;
	padding-left: 1em;
	text-indent: -1em;
	color: var(--color-gray-dark);
	font-size: 1.4rem;
}
.counter__phone-number {
	margin: 0;
	color: var(--color-green);
	font-family: "Roboto", sans-serif;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1;
}
.counter__phone-number::before {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 5px;
	content: "";
	background: url(../.assets/ico_phone_green_01.svg) no-repeat;
}
.counter__phone-link {
	text-decoration: none;
}
.counter__phone-link:hover {
	text-decoration: underline;
}
.counter__means {
	margin-bottom: 5px;
	font-size: 1.4rem;
}

@media (min-width: 769px) {
	.counter {
		display: flex;
		gap: 20px;
    	flex-direction: row;
	}
	.counter::before {
		position: absolute;
		left: 50px;
	}
	.counter__heading {
		text-align: center;
		font-size: 2rem;
	}
	.counter__item {
		width: 48%;
		padding: 40px;
	}
	.counter__time {
		margin-bottom: 20px;
	}
	.counter__phone-number {
		font-size: 3.6rem;
	}
	.counter__phone-link {
		cursor: default;
		text-decoration: none;

		pointer-events: none;
	}
	.contact-button {
		font-size: 2.4rem;
    	padding: 12px 45px;
	}
}

/* =====================================
   block__link
===================================== */
/* block__link */
.block__link {
	display: block;
	padding: 25px;
	text-align: center;
	text-decoration: none;
	border-radius: 10px;
	background: var(--color-white);
	font-size: 1.8rem;
	font-weight: bold;
}
.block__link:hover {
	text-decoration: underline;
}

@media (min-width: 769px) {
	.block__link {
		font-size: 2rem;
	}
}

/* =====================================
   utility
===================================== */
/* align-right */
.align-right {
	display: block;
	text-align: right;
}

/* visually-hidden */
.visually-hidden {
	position: absolute !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* clearfix */
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

/* mt-0 */
.mt-0 {
	margin-top: 0 !important;
}
