@charset "utf-8";

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

.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) {}

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

body {
	background-color: #F6F6F6;
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5;
	color: #707070;
}

table {
	border-collapse: collapse;
}

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

th {
	vertical-align: baseline;
}

img {
	width: 100%;
}

a :hover{
	cursor: pointer;
}

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

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

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

@media screen and (min-width: 1440px) {
	.headline {
		font-size: 3rem;
	}
}

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

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

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 5%;
	/* 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.5%;
	}

	.header_logo {
		width: 20%;
	}

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

	.header_nav {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
	}

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

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

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

	.header_nav {
		width: 75%;
	}
}

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

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

@media screen and (min-width: 768px) {
	.nav_flex {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin: 0 auto;
		padding: 5% 0;
	}

	.nav_item {
		flex: 1;
		padding: 0.5% 1%;
	}

	.nav_item:nth-of-type(n+2) {
		position: relative;
		border-left: 1px #707070 solid;
	}

	.nav_link {
		width: max-content;
		margin:  0 auto;
		font-size: 1rem;
		color: #6088BB;
	}

	.nav_link > * {
		display: block;
		width: fit-content;
		margin:  0 auto;
	}

	.nav_link :nth-of-type(1) {}

	.nav_link :nth-of-type(2) {
		font-family: "Kosugi Maru", sans-serif;
	}
}

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

	.nav_item {}

	.nav_link {
		font-size: 1.4rem;
	}
}

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

.table {
	width: 100%;
	margin: 0 auto 0;
}

.table th,
.table td {
	display: block;
	padding: 0.5em 0;
	border: 0;
}

.table td {
	padding-top: 0;
	border-bottom: 1px #6088BB solid;
}

.table td span {
	display: block;
	width: fit-content;
}

@media screen and (min-width: 768px) {
	.table th,
	.table td {
		display: table-cell;
		padding: 1em 0;
		border-bottom: 1px #6088BB solid;
	}

	.table th {
		width: 35%;
	}

	.table td {
		width: 65%;
	}
}

@media screen and (min-width: 1440px) {
	.table th,
	.table td {
		font-size: 1.2rem;
	}
}

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

.footer * {
	display: block;
}

.footer_content {
	padding: 10% 5%;
}

.footer_content_2 {
	background-color: #6088BB;
}

.footer_content_3 {
	padding: 0;
}

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

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

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

.footer .heading {
	text-align: center;
	color: #fff;
}

.footer .heading_top {
	font-size: 1em;
}

.footer .heading_bottom {
	font-size: 0.6em;
}

.footer_content_2 .text {
	width: max-content;
	margin: 5% auto 0;
	text-align: center;
	font-size: 1rem;
	color: #fff;
}

.footer_contact_area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 5% auto 0;
	text-align: center;
	color: #fff;
}

.footer_contact_area a {
	display: block;
	margin: 2.5% auto 0;
}

.footer_map iframe {
	width: 100%;
    height: auto;
	aspect-ratio: 4 / 3;
}

.copyright {
	width: 100%;
	margin: 0 auto;
	padding: 2.5% 0;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.footer_logo {
		width: 40%;
		margin: 0 auto;
	}

	.footer_content_2 {
		padding: 5%;
	}

	.footer_contact_area {
		flex-direction: row;
		gap: 24px;
		width: 100%;
		margin: 5% auto 0;
		text-align: center;
		color: #fff;
	}

	.footer_contact_area > *{
		width: calc((100% - 24px) / 2);
	}

	.footer_map iframe {
		aspect-ratio: 5 / 2;
	}
}

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

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

	.footer_content_2 .text {
		font-size: 1.4rem;
	}

	.footer_address {
		font-size: 1.4rem;
	}
}

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

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

