@charset "utf-8";

html {
	font-size: 62.5%;
	font-family: serif;
}

body {
	font-size: 1.6rem;
}

*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1em;
}

h1 {
	font-size: 2.4rem;
}

h2 {
	font-size: 2.8rem;
}
h3 {
	font-size: 2.8rem;
}

p {
	line-height: 1.5;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
}
em {
	font-style: normal;
}




/*汎用*/
.inner {
	width: 80%;
	max-width: 120rem;
	margin: auto;
}
.catch {
	font-size: 2.8rem;
}
.read {
	line-height: 2;
	color: #C16D00;
}
.title {
	display: grid;
	gap: 1rem;
	margin: 0 auto 3rem;
}
.title h3 {
	text-align: center;
	margin: initial;
}
.title p {
	grid-row: 1;
	text-align: center;
	font-family: "Jost", sans-serif;
	color: #C16D00;
}

/*========= スクロールダウンのためのCSS ===============*/

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
	width: fit-content;
	/*描画位置※位置は適宜調整してください*/
	position: relative;
	bottom: 1rem;
	/*全体の高さ*/
	height: 10rem;
	margin: 5rem auto;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
	/*描画位置*/
	writing-mode: vertical-lr;
	position: absolute;
	left: 50%;
	bottom: 0;
	/*テキストの形状*/
	color: #FFAD66;
	font-size: 1.4rem;
}

/* 線の描写 */
.scrolldown1::after {
	content: "";
	/*描画位置*/
	position: absolute;
	top: 0;
	/*線の形状*/
	width: 0.1rem;
	height: 10rem;
	background: #FFAD66;
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}
	30% {
		height: 3rem;
		opacity: 1;
	}
	100% {
		height: 0;
		top: 10rem;
		opacity: 0;
	}
}



header {
	width: 100%;
	height: 8rem;
	position: fixed;
	top: 0;
	z-index: 9999;
    transform: translateZ(0); /* ← これを追加 */
}
header .col2 {
	width: 80%;
	max-width: 120rem;
	height: inherit;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0 0 0.5rem 0.5rem;
	display: flex;
	justify-content: space-between;
	padding: 0 3.645vw 0 1.5625vw;
	/*7 3*/
}
header .col2 .left {}
header .col2 .left h1 {
	width: fit-content;
	max-width: 18.1rem;
	height: inherit;
}
header .col2 .left h1 img {
	width: 100%;
}
header .col2 .right {
	width: 80%;
	max-width: 90rem;
	height: inherit;
}
header .col2 .right nav {
	width: auto;
	height: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
header .col2 .right nav ul {
	width: 80%;
	max-width: 52rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .col2 .right nav li {
	list-style: none;
}
header .col2 .right nav li a {
	color: inherit;
	text-decoration: none;
}
header .col2 .right nav .info {
	width: auto;
	height: inherit;
}
header .col2 .right nav .info .flex {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
}
header .col2 .right nav .info .flex .tel {
	font-size: clamp(1.4rem, 1.45vw, 2.8rem);
	font-family: "Jost", sans-serif;
}
header .col2 .right nav .info .flex .tel a {
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: baseline;
	gap: 1rem;
}
header .col2 .right nav .info .flex .tel a::before {
	content: "";
	background: url(/img/icon_tel.png) no-repeat;
	width: 1.4rem;
	height: 1.7rem;
	background-size: cover;
	display: inline-block;
}
header .col2 .right nav .info .flex p:not(.tel) {
	font-size: clamp(1rem, 0.625vw, 1.2rem);
}
header .col2 .right nav .info em {
	width: 100%;
	min-height: 2.4rem;
	border-radius: 1.2rem;
	background: #aee8a7;
	display: grid;
	align-items: center;
	font-size: clamp(1rem, 0.625vw, 1.2rem);
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	text-align: center;
}

/*-----ハンバーガーメニュー-----*/
.navToggle {
	display: none;
}



/*main*/
.mainimg {
	width: 100%;
	aspect-ratio: 192/40;
	overflow: hidden;
	position: relative;
}

.mainimg>.pic {
	width: 100%;
	height: inherit;
	position: absolute;
	left: 0;
	top: 0;
}
.mainimg>.pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.maintitle {
	width: 100%;
	display: grid;
	gap: 1rem;
	position: absolute;
	z-index: 2;
	bottom: 13.5rem;
}
.maintitle * {
	text-align: center;
}
.maintitle h2 {
	text-align: center;
	color: #fff;
	margin: initial;
}
.maintitle p {
	grid-row: 1;
	text-align: center;
	font-family: "Jost", sans-serif;
	color: #fff;
}
.bottom {
	padding: 5rem 0;
}
.bottom .set {
	width: 90%;
	max-width: 80rem;
	background: #fffff5;
	border-radius: 1rem;
	margin: auto;
	border: 1rem solid #ffefe0;
	padding: clamp(2rem, 2.6vw, 5rem) clamp(2rem, 2.6vw, 5rem) 2rem clamp(2rem, 2.6vw, 5rem);
	/*5*/
	position: relative;
	z-index: 1;
}
.bottom h2 {
	content: "";
	width: calc(100% + 2rem);
	min-height: 4rem;
	background: #ffad66;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	gap: 1rem;
	position: absolute;
	left: -1rem;
	top: -1rem;
	border-radius: 1rem 1rem 0 0;
	text-align: center;
}
.bottom h2 span {
	font-size: 0.7em;
}
.bottom::after {
	content: "";
	width: calc(100% + 2rem);
	height: calc(100% + 2rem);
	/*border: 0.1rem solid #AEE8A7;*/
	display: inline-block;
	position: absolute;
	left: -1rem;
	top: -1rem;
	border-radius: 1rem;
	z-index: -1;
}

.bottom .set {}
.bottom .flex {
	width: 100%;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 1rem;
}
.bottom p {}
.bottom p a {
	width: 30%;
	font-size: 1.7em;
	font-family: "Jost", sans-serif;
	font-weight: 500;
	color: inherit;
}
.bottom p a::before {
	content: "";
	background: url(../img/icon_tel.png) no-repeat;
	width: 1.4rem;
	height: 1.7rem;
	background-size: cover;
	display: inline-block;
}



/*footer*/
footer {
	width: 100%;
	background: #fff;
	padding: 1rem 0;
}
footer nav {
	width: 100%;
	height: 10rem;
	background: #f1fcff;
	margin: 0 auto 5rem;
}
footer .inner {
	height: inherit;
}
footer ul {
	width: 100%;
	height: inherit;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
footer li {
	list-style: none;
	font-size: 2rem;
}
footer a {
	color: inherit;
}
footer .flex {
	display: flex;
	justify-content: center;
	gap: 1.5625vw;
	/*3*/
	margin: 0 auto 5rem;
}
footer .flex .left {}
footer .flex .left .logo {}
footer .flex .center address {
	font-style: normal;
}
footer .flex .center address:not(.add) {
	font-family: "Jost", sans-serif;
	font-weight: 500;
}
footer .flex .center address span {
	font-family: serif;
	font-weight: initial;
}
footer .flex .center address.tel a {
	font-size: 1.4em;
}
footer .flex .center address span::before {
	content: " ";
}
footer .flex .right {}
footer .copyright {
	font-size: 1.2rem;
	text-align: center;
}