/* html
-------------------------------------------------- */

html {
	height: 100%;
}

/* body
-------------------------------------------------- */

body {
	height: 100%;
	color: #333;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

/* a
-------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {
	a:hover {
		opacity: 0.6;
	}
}

/* container
-------------------------------------------------- */

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
}

@media (min-width: 1000px) {
	.container {
		padding: 0 30px;
	}
}

/* header
-------------------------------------------------- */

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	padding: 11px 0 9px;
	background: #fff;
	box-shadow: 0 0 10px #00000040;
}

.header_flex {
	display: flex;
	justify-content: space-between;
}

.header_title {
	max-width: calc(100% - 100px);
}

.header_title a {
	display: flex;
	align-items: center;
	height: 40px;
}

.header_title a img {
	display: block;
	/* width: 100%;
	height: 100%;
	object-fit: contain; */
	max-width: 100%;
	max-height: 40px;
}

@media (min-width: 1000px) {
	.header_hamburger {
		display: none;
	}
}

.header_hamburger button {
	width: 90px;
	height: 40px;
	padding: 13px 0;
	border: none;
	border-radius: 4px;
	background: linear-gradient(to right, #00c0e3, #41b595);
	color: #fff;
	font-size: 14px;
	line-height: 1;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	text-align: center;
	cursor: pointer;
}

.header_hamburger button i {
	margin-right: 5px;
}

.header_contact {
	display: none;
}

@media (min-width: 1000px) {
	.header_contact {
		display: flex;
		gap: 20px;
	}
}

.header_phone_message {
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1;
}

.header_phone_number {
	font-weight: bold;
	font-size: 20px;
	line-height: 1;
}

.header_phone_number i {
	margin-right: 0.5em;
}

.header_mail a {
	display: block;
	height: 40px;
	padding: 13px 30px;
	border-radius: 4px;
	background: linear-gradient(to right, #333, #111);
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
}

.header_mail a i {
	margin-right: 0.5em;
}

/* menu
-------------------------------------------------- */

.menu {
	display: none;
	position: fixed;
	top: 60px;
	left: 0;
	z-index: 99;
	width: 100%;
	height: calc(100% - 60px);
	padding: 20px 0 80px;
	background: linear-gradient(135deg, #00c0e3, #41b595);
	box-shadow: 0 0 10px #00000040;
}

@media (min-width: 1000px) {
	.menu {
		display: block;
		height: 50px;
		padding: 0;
	}
}

.menu ul {
	display: flex;
	flex-direction: column;
	margin: 0;
}

@media (min-width: 1000px) {
	.menu ul {
		flex-direction: row;
	}
}

.menu ul li {
	flex: 1;
	position: relative;
}

.menu ul li::before,
.menu ul li:last-of-type::after {
	display: block;
	position: absolute;
	width: calc(100% - 10px);
	height: 1px;
	background: linear-gradient(to right, #fff0, #ffff, #ffff, #fff0);
	content: "";
}

@media (min-width: 1000px) {
	.menu ul li::before,
	.menu ul li:last-of-type::after {
		width: 1px;
		height: calc(100% - 10px);
		background: linear-gradient(to bottom, #fff0, #ffff, #ffff, #fff0);
	}
}

.menu ul li::before {
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

@media (min-width: 1000px) {
	.menu ul li::before {
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
	}
}

.menu ul li:last-of-type::after {
	right: 50%;
	bottom: 0;
	transform: translate(50%, 0);
}

@media (min-width: 1000px) {
	.menu ul li:last-of-type::after {
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
	}
}

.menu ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	padding: 0 10px;
	color: #fff;
	line-height: 1.25;
	text-decoration: none;
	text-align: center;
}

/* footer
-------------------------------------------------- */

.footer {
	padding: 50px 0 100px;
	background: #ccc;
}

@media (min-width: 1000px) {
	.footer {
		padding: 50px 0;
	}
}

.footer_title {
	margin: 0 0 40px;
}

.footer_title a img {
	width: auto;
	height: 40px;
}

.footer_address {
	margin: 40px 0;
	font-size: 14px;
}

.footer_menu {
	margin: 40px 0;
}

.footer_menu ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 1000px) {
	.footer_menu ul {
		flex-direction: row;
		gap: 30px;
	}
}

.footer_menu ul li a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
}

.footer_menu ul li a::before {
	margin-right: 0.5em;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
}

.footer_copyright {
	margin: 40px 0 0;
	font-size: 12px;
}

/* fixedfooter
-------------------------------------------------- */

.fixedfooter {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background: linear-gradient(to bottom, #fff0, #ffff);
}

@media (min-width: 1000px) {
	.fixedfooter {
		display: none;
	}
}

.fixedfooter_contact {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 11px 10px 9px;
	border-radius: 4px 4px 0 0;
	background: #fff;
	box-shadow: 0 0 10px #00000040;
}

.fixedfooter_message {
	display: flex;
	flex-basis: calc(100% - 200px);
	flex-wrap: wrap;
	justify-content: flex-end;
	align-content: center;
	font-size: 10px;
}

.fixedfooter_phone {
	flex-basis: 140px;
}

.fixedfooter_phone a {
	display: block;
	height: 40px;
	padding: 13px 0;
	border-radius: 4px;
	background: linear-gradient(to right, #00c0e3, #41b595);
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	text-align: center;
}

.fixedfooter_phone a i {
	margin-right: 0.5em;
}

.fixedfooter_mail {
	flex-basis: 40px;
}

.fixedfooter_mail a {
	display: block;
	height: 40px;
	padding: 13px 0;
	border-radius: 4px;
	background: linear-gradient(to right, #00c0e3, #41b595);
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	text-align: center;
}

/* top_hero
-------------------------------------------------- */

.top_hero {
	position: relative;
	height: 100%;
}

@media (min-width: 1000px) {
	.top_hero {
		height: calc(100% - 110px);
		margin-top: 110px;
	}
}

.top_hero_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top_hero_catchcopy {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	width: 100%;
}

.top_hero_catchcopy h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(16px, 8vw, 80px);
	text-align: center;
	text-shadow: 0 0 10px #00000040;
}

/* top_news
-------------------------------------------------- */

.top_news {
	padding: 50px 0;
	background: #eee;
}

.top_news h2 {
	margin: 0 0 0.7em;
	color: #41b595;
	font-weight: 900;
	font-size: clamp(30px, 3.6vw, 36px);
}

/* page_header
-------------------------------------------------- */

.page_header {
	position: relative;
	height: 50vw;
	max-height: 300px;
	margin-top: 60px;
}

@media (min-width: 1000px) {
	.page_header {
		margin-top: 110px;
	}
}

.page_header_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page_header_title {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	width: 100%;
}

.page_header_title h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(36px, 6vw, 60px);
	text-align: center;
	text-shadow: 0 0 10px #00000040;
}

/* news
-------------------------------------------------- */

.news_list {
	list-style: none;
	padding: 0;
}

.news_list li {
	border-top: 1px solid #999;
}

.news_list li:last-of-type {
	border-bottom: 1px solid #999;
}

.news_list li a {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
	padding: 13px 0;
	color: #333;
	text-decoration: none;
}

@media (min-width: 1000px) {
	.news_list li a {
		flex-direction: row;
		gap: 1em;
	}
}

.news_list li a time {
	color: #00c0e3;
}

.news_more {
	text-align: right;
}

.news_more a {
	color: #333;
	text-decoration: none;
}

.news_more a i {
	margin-right: 0.5em;
}

.news_back {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #999;
}

.news_back a {
	color: #333;
	text-decoration: none;
}

.news_back a i {
	margin-right: 0.5em;
}

/* pagination
-------------------------------------------------- */

.pagination {
	margin-top: 50px;
	line-height: 20px;
	text-align: center;
}

.pagination ul {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.pagination ul li a {
	display: block;
	width: 30px;
	padding: 5px 0;
	color: #333;
	text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
	.pagination ul li a:hover {
		background: #ccc;
	}
}

.pagination ul li span {
	display: block;
	width: 30px;
	padding: 5px 0;
}

.pagination ul li .prev::before {
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	content: "\f104";
}

.pagination ul li .next::before {
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
}

.pagination ul li .dots {
	position: relative;
	color: transparent;
}

.pagination ul li .dots::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 5px 0;
	color: #ccc;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	content: "\f141";
}

.pagination ul li .current {
	background: #eee;
}

/* mailform
-------------------------------------------------- */

.mailform input,
.mailform textarea,
.mailform select,
.mailform button {
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
}

.mailform input,
.mailform textarea {
	width: 100%;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	line-height: 1.5;
}

.mailform textarea {
	width: 100%;
	vertical-align: bottom;
}

.mailform input:focus,
.mailform textarea:focus,
.mailform select:focus,
.mailform button:focus {
	outline: none;
}

.mailform_required {
	display: inline-block;
	margin-left: 5px;
	padding: 0 4px;
	border-radius: 4px;
	background: #dc3232;
	color: #fff;;
	font-size: 10px;
}

.mailform_button {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.mailform_button_back,
.mailform_button_next {
	flex-basis: calc(50% - 5px);
	position: relative;
	max-width: 200px;
}

.mailform_button_back input,
.mailform_button_next input {
	width: 100%;
	height: 40px;
	padding: 13px 0;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.mailform_button_back input {
	background: linear-gradient(to right, #aaa, #999);
}

.mailform_button_next input {
	background: linear-gradient(to right, #333, #111);
}

.mailform_button_next .wpcf7-spinner {
	position: absolute;
	top: 50%;
	right: 3px;
	z-index: 1;
	transform: translateY(-50%);
	margin: 0;
	background: linear-gradient(135deg, #00c0e3, #41b595);
}

/* recaptcha
-------------------------------------------------- */

.grecaptcha-badge {
	display: none;
}

/* page_body
-------------------------------------------------- */

.page_body {
	margin: 50px 0;
}

.page_body h1 {
	margin: 0.6em 0;
	font-weight: 900;
	font-size: clamp(36px, 4.8vw, 48px);
}

.page_body h2 {
	margin: 0.6em 0;
	color: #00c0e3;
	font-weight: 900;
	font-size: clamp(36px, 4.8vw, 48px);
}

.page_body h3 {
	margin: 0.7em 0;
	color: #41b595;
	font-weight: 900;
	font-size: clamp(30px, 3.6vw, 36px);
}

.page_body h4 {
	margin: 1em 0;
	font-size: 24px;
}

.page_body h5 {
	margin: 1em 0;
	font-size: 18px;
}

.page_body h6 {
	margin: 1em 0;
	font-size: 16px;
}

.page_body table {
	width: 100%;
	margin: 1em 0;
	border: 1px solid #999;
	border-width: 1px 1px 0;
	border-collapse: collapse;
}

@media (min-width: 1000px) {
	.page_body table {
		border-width: 1px;
	}
}

.page_body table tr td {
	display: block;
	padding: 15px;
	border: 1px solid #999;
	border-width: 0 0 1px;
}

@media (min-width: 1000px) {
	.page_body table tr td {
		display: table-cell;
		border-width: 1px;
	}
}

.page_body table tr td:first-of-type {
	background: #eee;
}

@media (min-width: 1000px) {
	.page_body table tr td:first-of-type {
		width: 30%;
	}
}