@charset "UTF-8";

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #3A3A3A;
}

:root {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.7;
	--white: #fcfcfc;
	--thema-bg: #eeeeee;
}


/* 共通 */
.page-title {
	font-size: 4rem;
	color: var(--white);
	font-weight: 600;
	opacity: .9;
}

.page-header {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.subpage .page-header {
	height: 40vh;
	background: url(../images/fv.webp);
	background-position: 50% 30%;
	background-size: cover;
}

.subpage .page-title {
	opacity: .8;
}

@media (max-aspect-ratio: 1/1) {
	.subpage .page-header {
		height: 20vh;
	}
}

.section-cover {
	width: 100%;
	padding: 80px 3vw;
	position: relative;
}

.section-inner {
	width: min(1100px, 100%);
	margin: 0 auto;
}

.line-break {
	display: block;
}

.auto-break {
	word-break: keep-all;
	overflow-wrap: break-word;
}

/* btn */
.btn {
	position: relative;
	width: 230px;
	padding: 20px;
	background-color: var(--white);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 60px auto 0;
}

.btn__text {
	font-weight: 800;
	font-size: 1.2rem;
}

.arrow * {
	width: 10px;
	height: 2px;
	background-color: #3A3A3A;
	display: block;
}

.arrow--first {
	transform: rotate(45deg) translate(-30%, -125%);
}

.arrow--second {
	transform: rotate(-45deg);
}

/* ホバー */
.hover-content {
	transition: opacity .3s ease;
}

.hover-content:hover {
	opacity: .6;
}


/* ヘッダー */
.header {
	width: 100%;
	height: 90px;
	background-color: var(--white);
	padding: 0 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	box-shadow: 0px 0px 8px #00000010;
}

.header-inner {
	width: min(100%, 1400px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .left-side .icon-cover {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2;
}

.header .left-side .icon--top {
	font-weight: 800;
}

.header .left-side .icon--bottom {
	font-weight: 800;
	font-size: 2rem;
}

.header .right-side {
	display: flex;
	gap: 60px;
}


.header .right-side .nav {
	display: flex;
	gap: 20px;
}

.header .right-side .nav * {
	font-size: 1.1rem;
	padding: 10px;
	font-weight: 600;
}

.header .right-side .info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header .right-side .info * {
	display: flex;
	align-items: center;
	gap: 7px;
	font-weight: 600;
}

.header .right-side .info img {
	width: 20px;
}

.header .right-side .tel .info__text {
	text-decoration: underline;
	text-underline-offset: 5px;
}




/* メイン */
.main {
	padding-top: 90px;
	background-color: var(--white);
}


/* フッター */
.footer {
	background-color: var(--thema-bg);
	padding: 40px 3vw;
}

.footer-inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.footer .icon-cover {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.2;
	margin-bottom: 10px;
}

.footer .icon--top {
	font-weight: 800;
}

.footer .icon--bottom {
	font-weight: 800;
	font-size: 2rem;
}

.footer .address {
	font-size: .9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer .copy {
	font-weight: 600;
}


/* ~768px */
@media(max-width: 768px) {
	:root {
		font-size: 14px;
	}

	.section-cover {
		padding: 60px 3vw;
	}

	.line-break {
		display: inline;
	}

	/* ヘッダー */
	.header {
		height: 70px;
	}

	.header .left-side .icon--top {
		font-size: .7rem;
	}

	.header .left-side .icon--bottom {
		font-size: 1.5rem;
	}

	.header .right-side {
		gap: 3vw;
	}

	.header .right-side .nav {
		gap: 3vw;
	}

	.header .right-side .nav * {
		font-size: 1rem;
		padding: 5px;
	}

	.header .right-side .info {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.header .right-side .info * {
		gap: 7px;
	}

	.header .right-side .info img {
		width: 12px;
	}

	.header .right-side .info__text {
		font-size: .8rem;
	}

	.header .right-side .tel .info__text {
		text-underline-offset: 2px;
	}

	/* ページヘッダー */
	.subpage .page-title {
		font-size: 2.5rem;
	}


	/* メイン */
	.main {
		padding-top: 70px;
	}

	/* フッター */
	.footer {
		padding: 20px 3vw;
	}

	.footer .address {
		font-size: .8rem;
	}
}

/* ~520px */
@media(max-width: 520px) {
	.header {
		padding: 0;
		height: 60px;
	}

	.header-inner {
		justify-content: space-around;
	}

	.header .right-side .nav * {
		font-size: .8rem;
		padding: 3px;
	}

	.header .right-side .info {
		display: none;
	}


	/* メイン */
	.main {
		padding-top: 60px;
	}


}