@charset "utf-8";

/* ---------------------------------------------------------------------------------------------------- */

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5;
	color: #333333;
}

main {
	background: linear-gradient(to bottom, #FFFFFF, #ACE0E2, #178AE2);
	overflow: hidden;
}

table {
	border-collapse: collapse;
}

th,
td {
	border: 1px solid #000;
	padding: 0.5em;
	font-weight: 500;
}

th {
	vertical-align: baseline;
}

img {
	width: 100%;
}

a :hover{
	cursor: pointer;
}

.inversion_x {
	transform: scale(-1, 1);
}

.inversion_y {
	transform: scale(1, -1);
}

.sp_only {
	display: inherit;
}

.sp_only_2 {
	display: inherit;
}

.sp_only_3 {
	display: inherit;
}

.pc_only {
	display: none;
}

.pc_only_2 {
	display: none;
}

.pc_only_3 {
	display: none;
}

@media screen and (min-width: 768px) {
	.sp_only {
		display: none;
	}

	.pc_only {
		display: inherit;
	}
}

@media screen and (min-width: 1024px) {
	.sp_only_2 {
		display: none;
	}

	.pc_only_2 {
		display: inherit;
	}
}

@media screen and (min-width: 1440px) {
	.sp_only_3 {
		display: none;
	}

	.pc_only_3 {
		display: inherit;
	}
}

@media screen and (min-width: 1440px) {}

@media screen and (min-width: 1920px) {}

/* ---------------------------------------------------------------------------------------------------- */

.header {
	position: fixed;
	width: 100%;
	margin: 0;
	padding: 15px;
	/* background-color: rgba(255, 255, 255, 0.5); */
	z-index: 10;
	transition: 0.5s;
}

.header.active {
	background-color: rgba(255, 255, 255, 0.8);
}

.header_inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	width: 100%;
}

.header_logo {
	width: 50%;
}

@media screen and (min-width: 768px) {
	.header	{
		position: fixed;
		padding: 1% 2%;
	}

	.header_logo {
		width: 20%;
	}

	.header_nav_inner {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 36px;
		font-family: "Shippori Mincho", serif;
		font-size: 1rem;
		color: #707070;
	}

	.header_content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 12px;
	}

	/* ---------- プルダウン ---------------------------------------- */

	.dropdown_open {
		position: relative;
	}

	.dropdown__lists {
		display: none;
	}

	.dropdown_open:hover .dropdown__lists {
		/* Gナビメニューにホバーしたら表示 */
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translate(-50%, 0);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		width: 150%;
		padding-top: 12px;
	}

	.dropdown__list {
		position: relative;
		width: 125%;
		padding: 0.5em;
		transition: all .3s;
		background-color: #707070;
		text-align: center;
		color: #fff;
	}

	.dropdown__list a {
		display: block;
		width: 100%;
		font-size: 0.8em;
		line-height: 1;
	}

	.dropdown_open .list_link span {
		position: relative;
	}

	.dropdown_open .list_link span::after {
		content: '';
		position: absolute;
		top: 55%;
		right: -1em;
		transform: translate(0, -50%);
		display: block;
		width: 0.75em;
		height: 0.5em;
		background-color: #707070;
		clip-path: polygon(50% 0.5em, 0% 0%, 0.75em 0%);
	}

	.dropdown_open:hover .list_link span::after {
		/* transform: rotate(180deg); */
	}

	.dropdown_open .list_link span::after.active {}

	.dropdown_open .dropdown__lists .dropdown__list:nth-of-type(1),
	.dropdown_open .dropdown__lists .dropdown__list:nth-of-type(3) {
		font-family: "Zen Old Mincho", serif;
	}
}

@media screen and (min-width: 1024px) {

}

@media screen and (min-width: 1440px) {
	.header {
		padding: 1% 10%;
	}

	.header_logo {
		width: 17.5%;
	}

	.header_nav_inner {
		gap: 60px;
		font-size: 1.2rem;
	}

	.list_link {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1920px) {

}

/* ---------------------------------------------------------------------------------------------------- */

.footer {
	margin: 0 auto 0;
}

.footer_inner {
	position: relative;
	width: 100%;
	margin: 0 auto 0;
	background-color: #333333;
}

.footer_inner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #343E44;
	clip-path: polygon(100% 0, 0 0, 0 80%);
}

.footer_inner > * {
	position: relative;
	z-index: 1;
}

.footer_content:first-of-type .footer_content_inner {
	padding: 5% 0;
}

.footer_content:first-of-type .footer_content_inner > *:nth-child(n+2) {
	margin: 5% auto 0;
}

.footer_logo {
	display: block;
	width: 50%;
	margin: 0 auto 0;
}

.footer_address {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: max-content;
	margin: 0 auto 0;
	font-size: 1rem;
	color: #fff;
}

.footer_address img {
	width: auto;
	height: 1.5em;
}

.footer_text {
	width: max-content;
	margin: 0 auto 0;
	font-size: 1rem;
	color: #fff;
}

.copyright {
	padding: 1em 0;
	text-align: center;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.footer {}

	.footer_inner {
		padding: 0 15%;
	}

	.footer_inner > * {
		position: relative;
		z-index: 1;
	}

	.footer_content:first-of-type .footer_content_inner > *:nth-child(n+2) {
		margin: 2.5% auto 0;
	}

	.footer_logo {
		width: 35%;
	}
}

@media screen and (min-width: 1024px) {
	.footer_logo {
		width: 25%;
	}

	.footer_address {
		font-size: 1.2rem;
	}

	.footer_text {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1440px) {
	.footer_logo {
		width: 20%;
	}

	.copyright {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 1920px) {
	.footer_logo {
		width: 15%;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.map {
	width: 100%;
}

.map iframe {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {
	.map iframe {
		aspect-ratio: 2 / 1;
	}
}

@media screen and (min-width: 1024px) {}

@media screen and (min-width: 1440px) {
	.map iframe {
		aspect-ratio: 3 / 1;
	}
}

@media screen and (min-width: 1920px) {}
