/**** reset ****/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size:100%;
    font-weight: normal;
    vertical-align:baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    line-height: 1;
    letter-spacing: 0.08em;
    _display: inline;
    _zoom:1;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display:block;
}
nav, ol, ul {
    list-style: none;
    list-style-type: none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
th, td {
    text-align:left;
    vertical-align:top;
}
img {
    vertical-align:bottom;
}
input, select, textarea {
    vertical-align:middle;
    -webkit-appearance: none;
    border: none;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-display: swap;
    box-sizing: border-box;
}
i, span, em {
    font-style: normal;
    font-weight: inherit;
}
strong {
    font-weight: bold;
}
:focus {
    outline: 0;
}
/**** reset ****/

.flex {
    display:flex;
    -webkit-display:flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    align-items: center;
    -webkit-align-items: center;
}

/**** style ****/

html {
    font-size: 10px;
}
body {
    background: #ffffff;
    color: #444;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-display: swap;
}
a {
    color: var(--body-color);
    text-decoration: underline;
    font-weight: bold;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
@media (hover: hover) {
    a:hover {
        text-decoration: none;
        filter: opacity(0.7);
    }
}
br.smpbr {
    display: none;
}

:root {
	--body-color: #2a2a2a;
	--page-yellow: #ffc400;
}


#load {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--page-yellow);
    z-index: 120;
    transition: all 0.5s ease;
}
#load.loaded {
    transform: translateY(-100%);
}

#contain {
    position: relative;
    overflow: hidden;
	padding-top: 80px;
	background-color: var(--body-color);
}
.content-box {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 0;
}

#header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background-color: var(--body-color);
	z-index: 20;
}
#header.scroll {
	box-shadow: 0 0 80px rgba(0 0 0 / 0.5);
}
.header-box {
    position: relative;
    width: 90%;
    max-width: 1200px;
	height: 80px;
    margin: 0 auto;
	transition: all 0.2s ease;
}
.scroll .header-box {
	height: 60px;
}
.header-logo {
	display: inline-block;
}
.header-list {
	font-size: 1.4rem;
}
.header-list li:not(:last-of-type) {
	margin-right: 2.5em;
}
.header-list li a {
	color: #fff;
	text-decoration: none;
}
.header-list li a.header-btn {
	display: inline-block;
	padding: 1em 2em;
	background: var(--page-yellow);
	color: var(--body-color);
	transition: all 0.1s ease;
	border-radius: 2px;
}
@media (hover: hover) {
	.header-list li a:hover {
		color: var(--page-yellow);
		filter: opacity(1);
	}
	.header-list li a.header-btn:hover {
		background: var(--body-color);
        color: var(--page-yellow);
		box-shadow: 0 0 0 1px var(--page-yellow) inset;
	}
}

#main {
	position: relative;
}
.main-logo {
	position: absolute;
	top: 50%;
	right: calc(((100% - 1200px) / 2) + 30px);
	transform: translateY(-50%);
	z-index: 2;
	filter: drop-shadow(0 0 30px rgba(0 0 0 / 1.0));
}
.swiper-slide {
}
.swiper-slide img {
	width: 100%;
	height: 560px;
	object-fit: cover;
	filter: brightness(0.9);
}
.page-sub .main-container img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	filter: brightness(0.7);
}
.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: var(--page-yellow);
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 30px;
}
.swiper-pagination-bullet {
	background-color: rgba(255 255 255 / 1.0);
	opacity: 0.5;
}
.swiper-pagination-bullet-active {
	background-color: var(--page-yellow);
	opacity: 1;
}

#whats {
	background-color: var(--page-yellow);
}
.content-head {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 60px;
	color: var(--body-color);
	text-align: center;
	font-size: 2.0rem;
	font-weight: bold;
}
.content-head span.oswald {
	display: inline-block;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
	font-family: 'Oswald', sans-serif;
	font-size: 4.2rem;
	letter-spacing: 0;
}
.content-head span.oswald::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: var(--body-color);
}
.whats-list {
	column-gap: 1px;
	align-items: stretch;
}
.whats-list li {
	position: relative;
	width: calc((100% - 4px) / 5);
	padding: 110px 0 35px 0;
	background: var(--body-color);
	color: #fff;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.7;
}
.whats-list li::before {
	content: "";
	position: absolute;
	width: 60px;
	height: 50px;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	background: no-repeat center;
}
.whats-list li:nth-of-type(1)::before {
	background-image: url("../img/whats_icon01.svg");
}
.whats-list li:nth-of-type(2)::before {
	background-image: url("../img/whats_icon02.svg");
}
.whats-list li:nth-of-type(3)::before {
	background-image: url("../img/whats_icon03.svg");
}
.whats-list li:nth-of-type(4)::before {
	background-image: url("../img/whats_icon04.svg");
}
.whats-list li:nth-of-type(5)::before {
	background-image: url("../img/whats_icon05.svg");
}
.attention {
	font-size: 1rem;
	font-weight: normal;
}

#area {
}
.area-box {
	flex-direction: row-reverse;
	position: relative;
	height: 500px;
	background: var(--body-color);
}
.area-box:nth-of-type(2n) {
	flex-direction: row;
	background: var(--page-yellow);
}
.area-info {
	position: absolute;
	width: 90%;
	max-width: 1200px;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.area-box:nth-of-type(2n) .area-info {
	flex-direction: row-reverse;
}
.area-info-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-gap: 25px;
	width: 55%;
	min-height: 360px;
	padding-top: 40px;
	padding-bottom: 40px;
	background: rgba(0 0 0 / 0.8);
	color: #fff;
	border: 1px solid #fff;
	box-shadow: 10px 10px 0 rgba(0 0 0 / 0.25);
}
.area-info-type {
	font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
}
.area-info-name {
	font-family: 'Oswald', sans-serif;
	font-size: 6.0rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0;
	line-height: 1.3;
}
.area-info-text {
	font-size: 1.6rem;
	line-height: 2;
	text-align: center;
}
.area-img {
	width: 50%;
}
.area-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

#locations {
	background-color: var(--page-yellow);
}
.map-list {
	align-items: flex-start;
	gap: 60px;
}
.map-list li {
	width: calc((100% - 60px) / 2);
}
.map-img {
	box-shadow: 0 0 0 2px var(--body-color), 10px 10px 0 rgba(0 0 0 / 0.25);
}
.map-img img {
	width: 100%;
	height: auto;
}
.map-name {
	margin: 1.75em 0 1.25em 0;
	font-size: 2.4rem;
	font-weight: bold;
	color: var(--body-color);
}
.map-name a {
    text-decoration: none;
}
.map-table {
}
.map-table th,
.map-table td {
	font-size: 1.4rem;
	line-height: 1.7;
}
.map-table tr:not(:last-of-type) th,
.map-table tr:not(:last-of-type) td {
	padding-bottom: 5px;
}
.map-table th {
	padding-right: 1.5em;
	font-weight: bold;
    white-space: nowrap;
}
.map-info .attention {
	margin-top: 2em;
	line-height: 1.7;
}
.facility-box {
	position: relative;
	margin-top: 90px;
	padding: 50px 80px;
	border: 2px solid var(--body-color);
}
.facility-head {
	position: absolute;
	padding: 1em 1.5em;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: var(--page-yellow);
	font-family: 'Oswald', sans-serif;
	font-size: 2.4rem;
	font-weight: bold;
	color: var(--body-color);
}
.facility-list {
}
.facility-list li {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.facility-list li span {
	display: block;
	margin-top: 1em;
	font-size: 1.4em;
	font-weight: bold;
}

#footer {
	background-color: var(--body-color);
}
.footer-list {
	justify-content: center;
	column-gap: 3rem;
}
.footer-list li {
	font-size: 1.4rem;
	font-weight: bold;
}
.footer-list li a {
	color: #fff;
}
.footer-text {
	margin: 2em 0;
	font-size: 1.2rem;
	line-height: 1.5;
	text-align: center;
	color: rgba(255 255 255 / 0.5);
}
.footer-copy {
	font-size: 1.0rem;
	text-align: center;
	color: rgba(255 255 255 / 0.5);
}

#contact {
	background-color: var(--page-yellow);
}
.content-text {
	font-size: 1.6rem;
	text-align: center;
	line-height: 2;
}

#form {
	width: 90%;
	max-width: 800px;
	margin: 60px auto 0 auto;
}
.form-table {
	width: 100%;
	margin-bottom: 30px;
}
.form-table th,
.form-table td {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--body-color);
}
.form-table tr:not(:last-of-type) th,
.form-table tr:not(:last-of-type) td {
	padding-bottom: 3rem;
}
.form-table th {
	width: 30%;
	padding-right: 2em;
	font-weight: bold;
}
input[type=text], input[type=email], input[type=tel], select, textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 0 1px #99843d;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, select:focus, textarea:focus {
	box-shadow: 0 0 0 2px var(--body-color);
}
input[type=radio] {
    -webkit-appearance: auto;
}
input[type=submit] {
	display: inline-block;
	padding: 1em 3em;
	background: var(--body-color);
	color: var(--page-yellow);
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: 3px;
	letter-spacing: 0.1em;
	cursor: pointer;
}
@media (hover: hover) {
	input[type=submit]:hover {
		background: var(--page-yellow);
        color: var(--body-color);
		box-shadow: 0 0 0 1px var(--body-color);
	}
}
::placeholder {
    color: #ccc;
}
:-ms-input-placeholder {
    color: #ccc;
}
::-ms-input-placeholder {
    color: #ccc;
}
.form-table + .content-text {
	margin-bottom: 45px;
}
.form-btn {
	text-align: center;
}
#form_error {
	margin-bottom: 1.5em;
	font-size: 1.6rem;
	line-height: 1.7;
	text-align: center;
}



@media (max-width: 1300px) {
	.main-logo {
        right: 5%;
    }
}
@media (max-width: 1000px) {
	.area-info-inner {
		width: 60%;
		padding: 40px;
	}
	.area-info-text br {
		display: none;
	}
}
@media (max-width: 900px) {
	html {
        font-size: 9px;
    }
	.header-list li:not(:last-of-type) {
		display: none;
	}
	.swiper-button-white {
		display: none;
	}
	.main-logo {
        right: auto;
		left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
	.map-list {
        gap: 40px;
    }
	.map-list li {
        width: calc((100% - 40px) / 2);
    }
	.facility-box {
        padding: 40px 60px;
    }
	.facility-list {
		align-items: flex-start;
	}
	.facility-list li {
		align-items: center;
		width: 80px;
		text-align: center;
		line-height: 1.5;
	}
	.facility-list li img {
		width: 100%;
		height: auto;
	}
}
@media (max-width: 768px) {
    br.smpbr {
        display: inline;
    }
	.content-box {
        padding: 60px 0;
    }
	.whats-list li {
		padding: 100px 20px 25px 20px;
        font-size: 1.6rem;
    }
	.whats-list li::before {
        top: 35px;
    }
	.whats-list li br {
		display: none;
	}
	.facility-box {
        padding: 40px;
		margin-top: 60px;
    }
	.facility-list li {
        width: 70px;
		width: calc((100% - 100px) / 6);
    }
	
	.content-text {
        text-align: left;
    }
	#form {
        width: 100%;
    }
}
@media (max-width: 576px) {
    html {
        font-size: 3.2vw;
    }
    img {
        width: 100%;
        height: auto;
    }
	.header-logo {
		width: 50%;
	}
	.header-list li a.header-btn {
        padding: 0.75em 1.5em;
		font-size: 1.2rem;
    }
	.swiper-slide img {
        height: 85vw;
    }
	.main-logo {
		width: 80%;
	}
	.content-box {
        padding: 4rem 0;
    }
	.content-head {
        margin-bottom: 3rem;
        font-size: 1.4rem;
    }
	.content-head span.oswald {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 2.8rem;
    }
	.whats-list {
		flex-direction: column;
        gap: 1px;
    }
	.whats-list li {
        width: 100%;
        padding: 80px 20px 20px 20px;
        font-size: 1.2rem;
    }
	.whats-list li::before {
        top: 20px;
    }
	.area-box {
        flex-direction: column-reverse;
        height: auto;
    }
	.area-box:nth-of-type(2n) {
        flex-direction: column-reverse;
    }
	.area-img {
        width: 100%;
    }
	.area-img img {
        height: 80vw;
    }
	.area-info {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
		padding-bottom: 3rem;
    }
	.area-info-inner {
        width: 100%;
        padding: 3rem 2rem;
		margin-top: -6rem;
		grid-gap: 1.5rem;
		min-height: auto;
		box-shadow: 6px 6px 0 rgb(0 0 0 / 25%);
    }
	.area-info-type {
        font-size: 1.4rem;
    }
	.area-info-name {
        font-size: 3.0rem;
    }
	.area-info-text {
        font-size: 1.1rem;
        text-align: left;
    }
	.map-list {
        flex-direction: column;
    }
	.map-list li {
        width: 100%;
    }
	.map-img {
        box-shadow: 0 0 0 2px var(--body-color), 6px 6px 0 rgba(0 0 0 / 0.25);
    }
	.map-name {
        margin: 1.75em 0 1.2em 0;
        font-size: 1.4rem;
		text-align: center;
    }
	.map-table th, .map-table td {
        font-size: 1.1rem;
    }
	.map-table th {
        padding-right: 1.5em;
		white-space: nowrap;
    }
	.map-info .attention {
        margin-top: 1rem;
    }
	.facility-box {
        padding: 4rem 3rem 3rem 3rem;
        margin-top: 4rem;
    }
	.facility-head {
        font-size: 2.0rem;
    }
	.facility-list {
		gap: 2rem;
	}
	.facility-list li {
		width: calc((100% - 4rem) / 3);
	}
	.facility-list li img {
        width: 60%;
    }
	.facility-list li span {
        margin-top: 0.75em;
        font-size: 1.0em;
    }
	.footer-list {
        column-gap: 1.5rem;
    }
	.footer-list li {
        font-size: 1.1rem;
    }
	.footer-text {
        margin: 2rem 0;
        font-size: 1.0rem;
		text-align: left;
    }
	.footer-copy {
        font-size: 0.8rem;
    }
	
	.page-sub .main-container img {
        width: 100%;
        height: 56.25vw;
    }
	.content-text {
		font-size: 1.2rem;
	}
	.form-table th, .form-table td {
		display: block;
		width: 100%;
        font-size: 1.2rem;
    }
	.form-table tr:not(:last-of-type) th {
		padding-bottom: 0.5rem;
	}
	.form-table tr:not(:last-of-type) td {
        padding-bottom: 1.5rem;
    }
	#form_error {
        font-size: 1.2rem;
    }
	input[type=submit] {
        display: block;
		width: 100%;
		text-align: center;
        padding: 1em 0;
        font-size: 1.4rem;
    }
}

@media (max-width: 360px) {
	html {
        font-size: 9px;
    }
}