@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	--font-base: clamp(1.8rem, 1.935vw,2.4rem);
	--font-s: clamp(1.6rem, 1.532vw,1.9rem);
	--font-l: clamp(2.4rem, 3.047vw,3.9rem);
	--font-title: clamp(3.0rem, 4.354vw, 5.4rem);

	--space-xl: 12.0rem;
	--space-l: 10.0rem;
	--space-m: 8.0rem;
	--space-s: 6.0rem;
	--space-xs: 4.0rem;
}

/* Default Style */
body {
	background-color: #FFFFFF;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif; /*全体の書体を指定する*/
	font-style: normal;
	font-weight: 500;
	font-size: clamp(1.8rem, 1.935vw,2.4rem); /*全体のフォントサイズは16pxとする*/
	color: #000000;
}

/* Default Link Style */
a {
	text-decoration: none;
	color: inherit;
	transition: 0.2s;
}

a:hover {
	opacity: .8;
}

strong {
	font-weight: 700;
}

/* common */
#wrapper {
	width: 100%; /*全ての要素を包括する<div id"wrap">の幅を画面幅に設定する*/
	margin: 0 auto;
}

/* header ---------------------------------------- */

/* ヘッダー */
header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0;
	background-color: #339AC9;
	z-index: 100;
	transition: 0.3s;
}

.header-inner {
	position:relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 14px 20px;
	gap: 5%;
}

/* サイトタイトル */
.site-title {
	width: min(41.25%,528px);
	margin-right: auto;
}

.site-title h1 {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.site-title h1 > * {
	display: flex;
	align-items: center;
}

/* ヘッダーナビ */
#header-nav {
}

#menu-header-nav {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	margin-left: auto;
}

#menu-header-nav > li {
	color: #FFFFFF;
}

#menu-header-nav > li:not(:last-of-type)::after {
	content: "／";
	margin: 0 0.75em;
}

.head-reserve-btn {
	width: min(20%,260px);
}

.head-reserve-btn a {
	display: block;
	width: 100%;
	padding: 1.0rem;
	border-radius: 4px;
	background-color: #0054A7;
	text-align: center;
	color: #FFFFFF;
	box-shadow: 2px 2px 0 0 rgba(1,60,109,1.0);
}

/* footer ---------------------------------------- */
footer {
	width: 100%;
}

.footer-inner {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	width: calc(100% - 60px);
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 0 20px;
}

.footer-inner > div {
	width: min(40%,326px);
}

.footer-inner > dl {
	display: grid;
	grid-template-columns: 4em 1fr;
	line-height: 1.5;
	font-weight: 700;
	gap: 0.5em 1em;
}

.footer-inner dl dt {
	width: 4em;
}

.footer-inner dl dd {
}

.footer-inner ul {
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
	margin: 10.0rem 0 0;
}

.footer-inner ul li {
	font-weight: 700;
	font-size: var(--font-s);
	color: #666666;
}

.footer-inner ul li:not(:last-of-type)::after {
	content: "／";
	margin: 0 0.25em;
}

footer .copy {
	padding: 14px 20px;
	background-color: #339AC9;
	text-align: center;
	color: #FFFFFF;
}

footer .copy p {
	font-size: var(--font-s);
}

/* ページトップへ */
ul.btn-box {
	position: fixed;
	right: 20px;
	bottom: 60px;
	display: flex;
	flex-flow: column nowrap;
	gap: 1.0rem;
	z-index:8;
}

/* content ---------------------------------------- */
.container {
}

.contents {
}

.contents main {
	width: 100%;
	margin: 0 auto;
}

/* ================================================ */
@media (min-width: 1001px) {
}

/* ================================================ */
@media (max-width: 1000px) {
}

/* ================================================ */
@media (max-width: 768px) {

:root {
	--space-xl: 10.0rem;
	--space-l: 8.0rem;
	--space-m: 6.0rem;
	--space-s: 4.0rem;
	--space-xs: 2.8rem;
}

/* footer ---------------------------------------- */
footer {
}

.footer-inner {
	display: block;
	padding: 0 20px 20px;
}

.footer-inner > div {
	width: min(100%,280px);
	margin: 0 auto 3.0rem;
}

.footer-inner > dl {
	width: fit-content;
	margin: 0 auto;
}

.footer-inner ul {
	flex-flow: row wrap;
	justify-content: center;
	gap: 0.5em 0;
}

/* ページトップへ */
ul.btn-box {
	width: 80px;
}

/* content ---------------------------------------- */
.container {
}

}

/* ================================================ */
@media (max-width: 640px) {

.header-inner {
	flex-flow: row wrap;
	align-items: center;
	gap: 1.6rem 5%;
}

/* サイトタイトル */
.site-title {
	width: calc(95% - 120px);
	order: 1;
}

/* ヘッダーナビ */
#head-nav {
	width: 100%;
	order: 3;
}

#menu-header-nav {
	justify-content: center;
}

.head-reserve-btn {
	width: 120px;
	order: 2;
}

}

/* ================================================ */
@media (max-width: 640px) {

/* footer ---------------------------------------- */
footer {
}

/* ページトップへ */
ul.btn-box {
	width: 60px;
	right: 10px;
}

}

/* ================================================ */
@media (max-width: 480px) {

/* footer ---------------------------------------- */
footer {
}

/* content ---------------------------------------- */
.container {
}

}