@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #333;

	/* site color */
	--black: #333;
	--white: #fff;
	--primary: #052E87;
	--secondary: #F1F3F9;
	--tertiary: #70B8CE;
	--quaternary: #FFED61;
	--fifth: #F48B90;
	/* --sixth: #0ff; */

	/* btn color */
	--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);

	/* font family */
	--base-font-family: "Noto Serif JP", serif;
	--fontA: "Noto Serif JP", serif;
	--fontB: "Mrs Saint Delafield", cursive;
}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
	scrollbar-gutter: stable;
}

body {
	padding-top: 0 !important;
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.8rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	overflow-x: hidden;
}

p {
	line-height: 1.94;
	letter-spacing: 0.05em;
	font-size: 1.8rem;
	font-weight: 600;
}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

img {
	max-width: 100%;
	height: auto;
}

.area01 {
	width: 100%;
	max-width: 125rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.area02 {
	width: 100%;
	max-width: 135rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.anchor{
	margin: -11.5rem 0 0;
	padding: 11.5rem 0 0;
}

/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	position: fixed;
	z-index: 9999;
	right: 0;
	bottom: 0;
	left: 0;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: var(--primary);
	border-color: var(--white);
	color: var(--white);
}

.sp-header-link {
	width: 100%;
	height: 100%;
	display: flex;
	padding: 1rem 0;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	gap: .2rem;
}

/* .sp-header-link>a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
} */

.sp-header-link:before {
	content: "";
	display: block;
}

.sp-header-link-tel:before {
	width: 2.2rem;
	aspect-ratio: 1/1;
	background: url(../../../../uploads/tel_icon_white.svg)no-repeat center/contain;
}

.sp-header-link-line:before {
	width: 2.2rem;
	aspect-ratio: 1/1;
	background: url(../../../../uploads/line_icon_white.svg)no-repeat center/contain;
}

.sp-header-link-map:before {
	width: 2.2rem;
	aspect-ratio: 1/1;
	background: url(../../../../uploads/map_icon_white.png)no-repeat center/contain;
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

/* ---------- ハンバーガーボタン ---------- */


.sp-nav-btn {
	width: 4rem;
	height: 2.6rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 9999;
}


.sp-nav-btn-bar-box {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 1px;
	background: var(--primary);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 10%;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 90%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	top: 50%;
	transform: rotate(35deg) translateY(-50%);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-35deg) translateY(-50%);
}

/* ---------- ハンバーガーメニュー ---------- */

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
}

.sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: var(--secondary);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.sp-nav-list {
	width: 100%;
}

.sp-nav-list::-webkit-scrollbar {
	display: none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	border-bottom: solid 1px;
}

.sp-nav-in-text {
	margin: 2rem 0 0;
}

.sp-nav-list-item a {
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	transition: .3s;
}

.sp-nav-list-item a:hover {
	opacity: .6;
}

.sp-nav-list-item-color {
	border-bottom-color: var(--sp-border-color);
}

.spRsvBxTel.spRsvBxTel {
	display: flex;
	width: 100%;
	max-width: 30rem;
	border: 1px solid var(--primary);
	margin: 3rem auto 0;
}

.spRsvBxCtc.spRsvBxCtc {
	display: flex;
	width: 100%;
	max-width: 30rem;
	border: 1px solid var(--primary);
	margin: 0 auto;
}

.spRsvBxCtc.spRsvBxCtc {
	margin: 1.5rem auto 0;
}



/* ボタン */
.btn01 {
	width: 100%;
	max-width: 28rem;
	height: 6rem;
}

.btn01 a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.45;
	text-align: center;
	box-shadow: 0 .3rem .5rem rgba(0, 0, 0, 0.16);
	transition: all .3s;
}

.btnPrimary a {
	background: var(--primary);
	border: 1px var(--primary) solid;
	color: var(--white);
}


.btnPrimary a:hover {
	background: var(--white);
	color: var(--primary);
}

.btnWhite a {
	background: var(--white);
	border: 1px var(--primary) solid;
	color: var(--primary);
}

.btnWhite a:hover {
	background: var(--primary);
	border: 1px var(--white) solid;
	color: var(--white);
}

.btnFifth a {
	background: var(--white);
	border: 1px var(--fifth) solid;
	color: var(--fifth);
}

.btnFifth a:hover {
	background: var(--fifth);
	color: var(--white);
}

.lineBtn {
	width: 100%;
	max-width: 30rem;
	height: 6rem;
	margin: 0 auto;
}

.lineBtn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 2.3rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.45;
	text-align: center;
	color: var(--white);
	background: #06C152;
	border: 1px solid #06C152;
	transition: all .3s;
	box-shadow: 0 .3rem .5rem rgba(0, 0, 0, 0.16);
}

.lineBtn a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 3.5rem;
	width: 2.5rem;
	aspect-ratio: 1/1;
	margin: auto 0;
	background: url(../../../../uploads/line_icon_white.svg) no-repeat center/contain;
}

.lineBtn a:hover {
	filter: brightness(1.2);
}

/* テキスト */
.bgTxt01 {
	font-family: var(--fontB);
	font-size: 14.2rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.1em;
	color: var(--tertiary);
	opacity: .25;
}

.txt20 {
	font-size: 2rem;
	font-weight: 700;
}

.tit30 {
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.86em;
}

.tit32 {
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.845em;
}

.bgTit35 {
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	display: inline-block;
	padding: .4rem 2rem .5rem;
	line-height: 1.45;
	border-radius: .5rem;
	color: var(--white);
	text-shadow: 0 .2rem .4rem rgba(0, 0, 0, 0.2);
	background: var(--primary);
}

.tit35 {
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.86em;
}

.tit40 {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.86em;
}


/* 共通パーツ */

.bgPrimaryTxt {
	background: var(--primary);
	padding: .4rem 1.8rem;
	border: .5rem;
}

.markQuaternary01 {
	position: relative;
	display: inline-block;
	padding: .3rem 2rem;
	color: var(--primary);
	background: var(--quaternary);
}

.markQuaternary02 {
	padding: 0 0 1rem 0;
	color: var(--primary);
	background: linear-gradient(transparent 50%, var(--quaternary) 50%);
}

.bgGradation {
	background: linear-gradient(120deg, rgba(5, 46, 135, 1) 15%, rgba(16, 75, 203, 1) 90%);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	.bgTxt01 {
		font-size: 12rem;
	}

	.tit30 {
		font-size: 2.2rem;
	}

	.tit32 {
		font-size: 2.6rem;
	}

	.tit35 {
		font-size: 2.7rem;
	}
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	p {
		font-size: 1.4rem;
		line-height: 1.78;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.js-sp-nav {
		display: block;
	}

	/* ボタン */
	.btn01 {
		max-width: 230px;
		height: 50px;
	}

	.btn01 a {
		font-size: 17px;
	}


	.lineBtn {
		max-width: 280px;
	}

	.lineBtn::before {
		left: 2.7rem;
	}

	.lineBtn p {
		font-size: 2rem;
	}

	/* テキスト */
	.bgTxt01 {
		font-size: 9.7rem;
	}

	.txt20 {
		font-size: 1.6rem;
	}

	.tit30 {
		font-size: 2rem;
	}

	.tit32 {
		font-size: 2.5rem;
	}

	.bgTit35 {
		font-size: 2.4rem;
		padding: .2rem 1rem;
	}

	.tit35 {
		font-size: 2.4rem;
	}

	.tit40 {
		font-size: 3rem;
	}

	/* 共通パーツ */

	.bgPrimaryTxt {
		padding: .2rem 1.2rem;
	}

	.markQuaternary01 {
		padding: .2rem 1.5rem;
	}

	.markQuaternary02 {
		padding: 0 0 .7rem 0;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.sp-header {
		height: 6rem;
	}

	.sp-header-link>a:before {
		font-size: 2rem;
	}

	.sp-header-link-text {
		font-size: 1rem;
		margin: 0;
	}

	/* ---------- ハンバーガーボタン ---------- */

	/* ---------- ハンバーガーメニュー ---------- */

	.sp-nav-list-item a {
		padding: 1.2rem 0;
		font-size: 1.45rem;
	}


}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */