@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #02324D;

	/* site color */
	--black: #02324D;
	--white: #fff;
	--primary: #02324D;
	--secondary: #0092E5;
	--tertiary: #FF745E;
	--quaternary: #D5F1FF;
	--fifth: #2DB7FF;

	/* 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 Sans JP", sans-serif;
	--fontA: "Noto Sans JP", sans-serif;
	--fontB: "Roboto", sans-serif;

}

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

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

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 2.5;
	letter-spacing: 0.05em;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	/* 1.4-1.6 */
	font-size: clamp(1.4rem, 1.351rem + 0.207vw, 1.6rem);
}

/* body .wow {
	opacity: 0;
}

body.active .wow {
	opacity: 1;
} */

.wow {
	animation-fill-mode: forwards;
	opacity: 0;
}

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;
}

.area {
	width: 100%;
	padding: 0 2rem;
	margin: 0 auto;
}

.titBx {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.headerHeight {
	margin: 8rem 0 0;
}

.inner-wrapper {
	margin: 8rem 0 0;
}

.anchor {
	padding-top: 10rem;
	margin-top: -10rem;
}

.bgWhite {
	background: var(--white);
}

/* ==========================================
テキスト
========================================== */

.txt16 {
	/* 1.4-1.6 */
	font-size: clamp(1.4rem, 1.351rem + 0.207vw, 1.6rem);
	line-height: 2.5;
	letter-spacing: 0.05em;
}

.txt18 {
	/* 1.5-1.8 */
	font-size: clamp(1.5rem, 1.427rem + 0.311vw, 1.8rem);
	line-height: 1.94;
	letter-spacing: 0.05em;
}

.txt20 {
	/* 1.7-2 */
	font-size: clamp(1.7rem, 1.627rem + 0.311vw, 2rem);
	line-height: 1.94;
	letter-spacing: 0.05em;
}

.txt22 {
	font-size: clamp(1.8rem, 1.703rem + 0.414vw, 2.2rem);
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.tit25 {
	/* 2-2.5 */
	font-size: clamp(2rem, 1.879rem + 0.518vw, 2.5rem);
	line-height: 1.45;
	letter-spacing: 0.05em;
}

.tit30 {
	font-size: clamp(2.2rem, 2.006rem + 0.828vw, 3rem);
	line-height: 1.4;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.tit35 {
	font-size: clamp(2.4rem, 2.133rem + 1.139vw, 3.5rem);
	line-height: 1.714;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.tit40 {
	font-size: clamp(2.4rem, 2.012rem + 1.657vw, 4rem);
	line-height: 1.75;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.tit50 {
	/* 3-5 */
	font-size: clamp(3rem, 2.515rem + 2.071vw, 5rem);
	line-height: 1.45;
	letter-spacing: 0.03em;
	font-weight: 700;
	font-family: var(--fontB);
}

.tit60 {
	font-size: clamp(3rem, 2.2rem + 2.9vw, 6rem);
	line-height: 1.45;
	letter-spacing: 0.01em;
	font-weight: 700;
}

.subtit18 {
	/* 1.5-1.8 */
	font-size: clamp(1.5rem, 1.427rem + 0.311vw, 1.8rem);
	line-height: 1.45;
	letter-spacing: 0.1em;
}

.black {
	color: var(--black);
}

.white {
	color: var(--white);
}

.primary {
	color: var(--primary);
}

.secondary {
	color: var(--secondary);
}

.tertiary {
	color: var(--tertiary);
}

/* ==========================================
ボタン
========================================== */

.btn01 {
	width: 100%;
	max-width: 25rem;
	aspect-ratio: 250/64;
}

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

.btn01 a::before {
	content: "";
	position: absolute;
	z-index: 1;
	right: 3rem;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: block;
	width: 1.163rem;
	aspect-ratio: 11.63/9.69;
	transition: all .3s;
}

.btnWhite a {
	background: var(--white);
	color: var(--secondary);
}

.btnWhite a:hover {
	background: var(--secondary);
	color: var(--white);
}

.btn01.btnWhite a::before {
	background: url(../../../../uploads/arrow_blue.svg)no-repeat center /contain;
}

.btn01.btnWhite a:hover::before {
	background: url(../../../../uploads/arrow_white.svg)no-repeat center /contain;
}

.btnSecondary a {
	background: var(--secondary);
	color: var(--white);
}

.btnSecondary a:hover {
	background: var(--white);
	color: var(--secondary);
}

.btn01.btnSecondary a::before {
	background: url(../../../../uploads/arrow_white.svg)no-repeat center /contain;
}

.btn01.btnSecondary a:hover::before {
	background: url(../../../../uploads/arrow_blue.svg)no-repeat center /contain;
}

.btn02 {
	width: 100%;
	max-width: 28rem;
	aspect-ratio: 280/64;
}

.btn02 a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	width: 100%;
	height: 100%;
	box-shadow: 0 .2rem .8rem rgba(0, 0, 0, 0.1);
	line-height: 1.45;
	letter-spacing: 0.1em;
	font-weight: 600;
	transition: all .3s;
}

.btn02 a::before {
	content: "";
	display: block;
	width: 2rem;
	aspect-ratio: 1/1;
	transition: all .3s;
}

.btnTel a {
	font-size: clamp(1.8rem, 1.703rem + 0.414vw, 2.2rem);
}

.btnTel.btnSecondary a::before {
	background: url(../../../../uploads/tel_icon_white.svg)no-repeat center /contain;
}

.btnTel.btnSecondary a:hover::before {
	background: url(../../../../uploads/tel_icon_blue.svg)no-repeat center /contain;
}

.btnContact a {
	font-size: clamp(1.5rem, 1.427rem + 0.311vw, 1.8rem);
}

.btnContact.btnSecondary a::before {
	background: url(../../../../uploads/mail_icon_white.svg)no-repeat center /contain;
}

.btnContact.btnSecondary a:hover::before {
	background: url(../../../../uploads/mail_icon_blue.svg)no-repeat center /contain;
}

.btnTel.btnWhite a::before {
	background: url(../../../../uploads/tel_icon_blue.svg)no-repeat center /contain;
}

.btnTel.btnWhite a:hover::before {
	background: url(../../../../uploads/tel_icon_white.svg)no-repeat center /contain;
}

.btnContact.btnWhite a::before {
	background: url(../../../../uploads/mail_icon_blue.svg)no-repeat center /contain;
}

.btnContact.btnWhite a:hover::before {
	background: url(../../../../uploads/mail_icon_white.svg)no-repeat center /contain;
}

/* ==========================================
ヘッダー
========================================== */

header {
	position: relative;
	z-index: 999;
}

.header {
	width: 100%;
	height: 8rem;
	background: var(--white);
	position: fixed;
	z-index: 99;
	top: 0;
	right: 0;
	left: 0;
	transition: all .3s;
}

.header.is-animation {
	height: 6.5rem;
}

.hAr {
	width: 100%;
	height: 100%;
	padding: 0 0 0 3rem;
}

.hBx {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	height: 100%;
}

.hBxLogo {
	width: 20%;
	max-width: 13.38rem;
	aspect-ratio: 133.8/55.3;
	transition: all .3s;
}

.hBxLogo a {
	width: 100%;
	height: 100%;
	background: url(../../../../uploads/logo.svg) no-repeat center/contain;
}

.header.is-scroll .hBxLogo a {
	background: url(../../../../uploads/logo_white.svg)no-repeat center/contain;
}

.hBxLogo>a>img {
	display: none;
}

.hBxR {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex: 1;
	max-width: 115.2rem;
	height: 100%;
}

.hNavBx {
	height: 100%;
	flex: 1;
	max-width: 72.2rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.hNavLinkBx {
	display: flex;
	align-items: center;
	height: 100%;
}

.hNavLink a {
	position: relative;
	padding: 0 0 .5rem 0;
	font-size: 1.6rem;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	transition: all .3s;
	color: var(--black);
}

.hNavLink a:hover {
	color: var(--secondary);
}

.header.is-scroll .hNavLink a {
	color: var(--white);
}

.header.is-scroll .hNavLink a:hover {
	color: var(--white);
}

.hNavLink a::before {
	content: "";
	position: absolute;
	left: -50%;
	right: -50%;
	bottom: 0;
	z-index: 1;
	display: block;
	height: 1px;
	width: 3rem;
	margin: 0 auto;
	transform-origin: center;
	transition: all .3s;
	background: var(--black);
}

.header.is-scroll .hNavLink a::before {
	color: var(--white);
}

.hNavLink a:hover::before {
	width: 10rem;
}

.hNavLinkBx {
	position: relative;
}

.hNavLinkDownBx {
	position: absolute;
	top: calc(100% - 1rem);
	left: 0;
	width: max-content;
	padding: 1rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: var(--secondary);
	opacity: 0;
	pointer-events: none;
	transition: all .3s;
}

.hNavLinkBx:hover .hNavLinkDownBx {
	opacity: 1;
	pointer-events: all;
}

.hNavDownLink {
	display: flex;
	align-items: center;
	color: var(--white);
	gap: .5rem;
	font-size: 1.6rem;
	line-height: 1.45;
	letter-spacing: 0.05em;
	font-weight: 500;
}

.hNavDownLink:hover {
	text-decoration: underline;
}

.hNavDownLink::before {
	content: "";
	width: .8rem;
	height: .8rem;
	background: var(--white);
	border-radius: 100%;
}

.hLinkBx {
	display: flex;
	height: 100%;
}

.hLinkTel {
	height: 100%;
}

.hLinkTel a {
	display: flex !important;
	justify-content: center;
	align-items: center;
	height: 100%;
	aspect-ratio: 1/1;
	background: var(--tertiary);
	transition: all .3s;
}

.hLinkTel a:hover {
	filter: brightness(1.05);
}

.hLinkTel a>img {
	width: 2.5rem;
	aspect-ratio: 1/1;
}

.hLinkContact {
	height: 100%;
	width: 28rem;
}

.hLinkContact a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	height: 100%;
	background: linear-gradient(53deg, #0092E5 36%, #0DC6F6 95%);
	color: var(--white);
	line-height: 1em;
	letter-spacing: 0.1em;
	font-size: 2rem;
	transition: all .3s;
}

.hLinkContact a::before {
	content: "";
	display: block;
	width: 2.5rem;
	aspect-ratio: 25/18.75;
	background: url(../../../../uploads/mail_icon_white.svg)no-repeat center /contain;
}

.hLinkContact a:hover {
	filter: brightness(1.05);
}

/* ==========================================
フッター
========================================== */

.footer {
	background: var(--quaternary);
}

.fContact {
	padding: 7.9rem 0 12rem;
}

.fContactAr {
	max-width: 136.2rem;
}

.fContactBx {
	display: flex;
	width: 100%;
	margin: 8rem 0 0;
}

.fContactBxItem {
	width: 50%;
}

.fContactBxItem:first-of-type {
	border-right: 1px solid #CECECE;
}

.fContactBxItemIn {
	display: flex;
	flex-direction: column;
	width: 97%;
	height: 100%;
	max-width: 58rem;
}

.fContactBxItem:last-of-type .fContactBxItemIn {
	margin: 0 0 0 auto;
}

.fContactBxItemTit {
	padding: 0 0 0 1rem;
	font-weight: 700;
	border-left: .8rem solid var(--secondary);
}

.fContactBxItemTxt {
	margin: 4rem 0 0;
	line-height: 1.875;
}

.fContactTelBx {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 54.5rem;
	margin: 3rem 0 0;
	gap: 1rem;
}

.fContactTelItem {
	display: flex;
	flex-direction: column;
	width: 50%;
	max-width: max-content;
}

.fContactTelItemOffice {
	width: 100%;
	max-width: max-content;
	padding: .2rem 3.5rem;
	border-radius: 100vmax;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--white);
}

.fContactTelItem01 .fContactTelItemOffice {
	background: var(--tertiary);
}

.fContactTelItem02 .fContactTelItemOffice {
	background: #2DB7FF;
}

.fContactTelItemTelBx {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.4rem;
	margin: 1.7rem 0 0;
	padding: 0 0 .7rem 0;
}

.fContactTelItemTelIcon {
	display: flex;
	width: 2rem;
	height: 2rem;
}

.fContactTelItemNum {
	font-size: 2.8rem;
	line-height: 1.45;
	letter-spacing: 0.05em;
	font-weight: 700;
	font-family: var(--fontB);
}

.fContactTelItemTelBx::before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: -1rem;
	height: .5rem;
}

.fContactTelItem01 .fContactTelItemTelBx::before {
	background: var(--tertiary);
}

.fContactTelItem02 .fContactTelItemTelBx::before {
	background: #2DB7FF;
}

.fContactTelBtnBx {
	display: flex;
	gap: 2rem;
	margin: auto 0 0;
}

.fBtm {
	padding: 10rem 0 0;
	background: url(../../../../uploads/footer_bg.png) no-repeat top center /100% 100%;
}

.fBtmAr {
	max-width: 136.2rem;
}

.fBtmBx {
	display: flex;
	align-items: flex-end;
	padding: 0 0 5rem 0;
}

.fBtmBxL {
	width: 50%;
}

.fBtmBxR {
	width: 50%;
	padding: 0 0 1.8rem 0;
}

.fBtmBxLogo {
	width: 75%;
	max-width: 17.75rem;
}

.fBtmBxLogo>img {
	width: 100%;
}

.fBtmInfoItem {
	margin: 3rem 0 0;
	color: var(--white);
}

.fBtmInfoTxt02 {
	font-size: 1.5rem;
	line-height: 1.67;
	letter-spacing: 0.05em;
}

.fBtmInfoTxt02:first-of-type {
	margin: 1rem 0 0;
}

.fClauseBtnBx {
	margin: 3rem 0 0;
}

.fClauseBtn {
	width: 100%;
	max-width: 25rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 .2rem .8rem rgba(0, 0, 0, 0.1);
	line-height: 1.45;
	letter-spacing: 0.1em;
	font-weight: 600;
	transition: all .3s;
	background: var(--white);
	color: var(--secondary);
}

.fClauseBtn:hover {
	background: var(--secondary);
	color: var(--white);
}


.fBtmNavBx {
	display: flex;
	width: 100%;
	max-width: 62.4rem;
}

.fBtmNavClm {
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
	width: 50%;
	padding: 0 0 0 3rem;
	border-left: 1px solid var(--white);
}

.fBtmNavLink {
	line-height: 1.45;
	letter-spacing: 0.2em;
	color: var(--white);
}

.fBtmNavLink a:hover {
	text-decoration: underline;
	color: var(--white);
}

.fBtmContactBtnBx {
	display: flex;
	justify-content: flex-end;
	margin: 6.5rem 0 0 auto;
}

.fCopy {
	width: 100%;
	padding: 2.5rem 0 2.5rem 0;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.45;
	letter-spacing: 0.05em;
	border-top: 1px solid var(--white);
	color: var(--white);
}

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

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	padding: 0 8rem 0 0;
	position: fixed;
	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;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .5rem;
}

.sp-header-link:before {
	content: "";
	display: block;
	max-width: 2.5rem;
	width: 100%;
	height: 2.5rem;
	line-height: 1em;
}

.sp-header-link-pagetop:before {
	background: url(../../../../uploads/pagetop_icon_white.svg) no-repeat center /contain;
}

.sp-header-link-tel:before {
	background: url(../../../../uploads/tel_icon_white.svg) no-repeat center /contain;
}

.sp-header-link-contact:before {
	background: url(../../../../uploads/mail_icon_white.svg) no-repeat center /contain;
}

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

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

.sp-nav-btn {
	width: 8rem;
	height: 8rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 9999;
}

.sp-nav-btn-color {
	background: var(--secondary);
	color: var(--white);
}

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

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--white);
	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;
	line-height: 1.5em;
	margin: .7rem 0 0;
}

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

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

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-30deg) 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(--white);
}

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

.sp-nav-list {
	padding: 10rem 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.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-list-item a {
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	text-align: center;
	transition: .3s;
}

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

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

/* ==========================================
下層カバー
========================================== */

.in-cover {
	max-width: 192rem;
	width: 100%;
	height: 45rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	position: relative;
}

.in-cover-bg {
	width: 100%;
	height: 100%;
	-webkit-mask-image: url("../../../../uploads/in_cover_mask.png");
	mask-image: url("../../../../uploads/in_cover_mask.png");
	-webkit-mask-size: cover;
	mask-size: cover;
	-webkit-mask-position: center bottom;
	mask-position: center bottom;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.in-cover-bg>img {
	object-fit: cover;
	width: 100%;
	height: 100% !important;
}

.in-cover-bg:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: var(--primary);
	opacity: 0.4;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.in-cover-box {
	max-width: 125rem;
	width: 100%;
	color: var(--white);
	text-shadow: 0 0 5rem rgb(0 0 0 / 70%);
	padding: 0 1.5rem;
	margin: auto;
	position: relative;
}

.in-cover-title {
	font-size: 6rem;
	font-weight: bold;
	font-family: var(--fontB);
	letter-spacing: 0.03em;
	line-height: 1.31em;
}

.in-cover-sub-title {
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.45em;
	margin: 1rem 0 0;
}

/* ==========================================
パンくず
========================================== */

.breadcrumb {
	max-width: 192rem;
	width: 100%;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 1.45em;
	margin: auto;
}

.breadcrumb-list {
	max-width: 125rem;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0 1.5rem;
	margin: auto;
}

.breadcrumb-item>a {
	text-decoration: underline;
}

.breadcrumb-item>a:hover {
	text-decoration: none;
}

/* ==========================================
レイアウト
========================================== */

.in-wrapper {
	padding: 15rem 0;
}

.pb-0 {
	padding-bottom: 0;
}

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

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

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

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

/* ==========================================
ページャー
========================================== */

ul.page-numbers {
	display: flex;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: normal;
	font-family: var(--fontB);
	line-height: 1.33em;
	letter-spacing: 0;
	margin: 8rem 0 0;
}

ul.page-numbers span,
ul.page-numbers a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0 2.5rem;
	transition: 0.3s;
}

ul.page-numbers a:hover {
	color: var(--secondary);
}

ul.page-numbers .current {
	font-weight: bold;
}

ul.page-numbers .prev,
ul.page-numbers .next {
	padding: 0;
}

ul.page-numbers .prev::before,
ul.page-numbers .next::before {
	content: "";
	width: 8px;
	height: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(45deg);
	transition: 0.3s;
}

ul.page-numbers .prev::before {
	border-bottom: solid 2px var(--primary);
	border-left: solid 2px var(--primary);
}

ul.page-numbers .prev:hover:before {
	border-bottom: solid 2px var(--secondary);
	border-left: solid 2px var(--secondary);
}

ul.page-numbers .next::before {
	border-top: solid 2px var(--primary);
	border-right: solid 2px var(--primary);
}

ul.page-numbers .next:hover:before {
	border-top: solid 2px var(--secondary);
	border-right: solid 2px var(--secondary);
}

.page-separator {
	width: 0.1rem;
	background: #E6E6E6;
}

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

@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;
	}

	.btn02 a {
		gap: .5rem;
	}

	/* ==========================================
	ヘッダー
	========================================== */

	.hAr {
		padding: 0 0 0 1.5rem;
	}

	.hLinkContact {
		width: 20rem;
	}

	.hNavLink a::before {
		width: 2rem;
	}

	.hNavLink a:hover::before {
		width: 5rem;
	}

	/* ==========================================
	フッター
	========================================== */

	.fContactTelItemNum {
		font-size: 2.5rem;
	}

	.fContactTelItemTelBx::before {
		right: 0;
	}

	.fContactTelBtnBx {
		gap: 1rem;
	}

}

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

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

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

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

	/* ==========================================
	ヘッダー
	========================================== */

	.hBxR {
		display: none;
	}

	/* ==========================================
	フッター
	========================================== */

	.fContact {
		padding: 5rem 0 6rem;
	}

	.fContactBx {
		flex-direction: column;
		gap: 4rem;
		margin: 5rem 0 0;
	}

	.fContactBxItem {
		width: 100%;
	}

	.fContactBxItem:first-of-type {
		border-right: none
	}

	.fContactBxItemIn {
		width: 100%;
		margin: 0 auto;
	}

	.fContactBxItem:last-of-type .fContactBxItemIn {
		margin: 0 auto;
	}

	.fContactBxItemTxt {
		margin: 2rem 0 0;
	}

	.fContactTelBtnBx {
		margin: 3rem 0 0;
	}

	.fContactTelBx {
		justify-content: center;
		gap: 3rem;
		margin: 3rem auto 0;
	}

	.fBtm {
		padding: 12rem 0 0;
		background: url(../../../../uploads/footer_bg_sp.png) no-repeat top center /100% 100%;
	}

	.fBtmBx {
		flex-direction: column-reverse;
		align-items: center;
		gap: 4rem;
		width: 100%;
		max-width: 62.4rem;
		margin: 0 auto;
		padding: 0 0 3.5rem 0;
	}

	.fBtmBxL {
		width: 100%;
		max-width: max-content;
	}

	.fBtmBxLogo {
		margin: 0 auto;
	}

	.fClauseBtn{
		margin: 0 auto;
	}

	.fBtmNavBx {
		max-width: 45rem;
		margin: 0 auto;
	}

	.fBtmBxR {
		display: none;
		width: 100%;
		padding: 0;
	}

	.fBtmNavClm {
		gap: 1.5rem;
		padding: 0 0 0 5rem;
	}

	.fBtmContactBtnBx {
		display: flex;
		justify-content: center;
		margin: 3rem 0 0 auto;
	}


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

	.sp-header {
		display: flex;
	}

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

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

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

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

	/* ==========================================
	下層カバー
	========================================== */

	.in-cover {
		height: 32rem;
	}

	.in-cover-bg {
		-webkit-mask-image: url(../../../../uploads/in_cover_mask_sp.png);
		mask-image: url(../../../../uploads/in_cover_mask_sp.png);
	}

	.in-cover-title {
		font-size: 5.2rem;
	}

	.in-cover-sub-title {
		font-size: 2rem;
	}

	/* ==========================================
	レイアウト
	========================================== */

	.in-wrapper {
		padding: 10rem 0;
	}

}

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

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

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

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

	/* ==========================================
	フッター
	========================================== */

	.fContactTelBtnBx {
		flex-direction: column;
		align-items: center;
	}

	.fContactTelBx {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}

	.fContactTelItem {
		width: 100%;
		align-items: center;
	}

	.fBtmNavClm {
		padding: 0 0 0 3rem;
	}

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

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

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

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

	.sp-nav-btn {
		width: 6rem;
		height: 6rem;
	}

	.sp-nav-btn-bar-box {
		max-width: 3rem;
	}

	.sp-nav-btn-text {
		font-size: 1rem;
	}

	.sp-nav-btn-text {
		margin: 0;
	}

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

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

	/* ==========================================
	下層カバー
	========================================== */

	.in-cover {
		height: 25rem;
	}

	.in-cover-title {
		font-size: 3.6rem;
	}

	.in-cover-sub-title {
		font-size: 1.8rem;
		margin: 0.5rem 0 0;
	}

}

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

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

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

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

}

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