@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #414141;
	--base-font-color-gray: #666666;
	--white: #fff;
	--black: #121212;
	--gray01: #CCCCCC;
	--gray02: #B3B3B3;
	--gray03: #F2F2F2;
	--gray04: #999;
	--gray05: #D9D9D9;
	--red: #ed3838;

	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;
	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	/* site color */
	/* --priary: #f00;
	--priary-hover: #f55;
	--secondary: #00f;
	--secondary-hover: #55f;
	--tertiary: #0f0;
	--tertiary-hover: #5f5;
	--quaternary: #f0f;
	--quaternary-hover: #f5f;
	--fifth: #ff0;
	--fifth-hover: #ff5;
	--sixth: #0ff;
	--sixth-hover: #5ff; */

	/* 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, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Roboto Condensed", sans-serif;
	/* --font-family02: ; */
	/* --font-family03: ; */

}

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

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

html { 
    scrollbar-gutter: stable; 
}

main>h2 {
    display: none;
}


body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
    background: url(../../../../uploads/body-bg.jpg) repeat-y center;
	background-size: auto;
}

header, footer, main {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
}

header {
	position: relative;
	padding: 0 1.5rem;
	z-index:99999;
}

.pc {
	display: block !important;
}

.pc-flex {
	display: flex !important;
}

.sp {
	display: none !important;
}

.sp-flex {
	display: none !important;
}

.d-none {
	display: none !important;
}

.padding-x {
	padding: 0 2.5rem;
}

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

a {
	transition: all .3s;
}

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

.text-center {
	text-align: center;
}

.hide-area {
    display: none;
}

.base-font-color-gray {
	color: var(--base-font-color-gray);
}

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

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

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

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

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

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

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

.silver {
	display: inline-block;
	background: linear-gradient(90deg,rgba(106, 106, 106, 1) 0%, rgba(114, 114, 114, 1) 23%, rgba(179, 179, 179, 1) 45%, rgba(115, 115, 115, 1) 70%, rgba(135, 135, 135, 1) 100%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gray03 {
	background-color: var(--gray03);
}

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

.mask-primary {
	position: relative;
}

.mask-primary {
	position: relative;
}

.mask-primary:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	background: rgba(33,33,33,.3);
	z-index: 1;
}

.font-family01 {
	font-family: var(--font-family01);
}

/* ==========================================
コンテンツ
========================================== */

.incover {
	max-width: 192rem;
	width: 100%;
    height: 41rem;
	margin: 0 auto;
	position: relative;
}

.incover::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: rgba(242,242,242,0);
    backdrop-filter: blur(10px) brightness(60%);
    -webkit-backdrop-filter: blur(10px) brightness(60%);
	z-index: 1;
}

.incover figure {
    width: 100%;
    height: 100%;
}

.incover figure > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.incover-box {
	max-width: 165rem;
	width: 100%;
	padding: 0 2rem;
	margin: auto;
	position: absolute;
    top: auto;
    right: 0;
	bottom: 12%;
    left: 0;
    transform: translateY(-50%);
	z-index: 5;
}

.wrapper {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    padding: 10rem 0 0;
	position: relative;
}

.frame01 {
	max-width: 122rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.frame02 {
	max-width: 132rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.frame03 {
	max-width: 142rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.frame04 {
	max-width: 152rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.frame05 {
	max-width: 162rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.frame06 {
	max-width: 172rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.img-control img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.img-left-cut {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 20.8% 100%);
}

.img-right-cut {
	clip-path: polygon(0 0, 79.13% 0, 100% 100%, 0% 100%);
}

.table-form {
	width: 100%;
	margin: 0;
	padding: 0 1.5rem;
	background-color: var(--white);
	border: .1rem solid var(--ui-border-color);
}

.table-primary {
	background: var(--white);
	border-color: var(--ui-border-color);
}

.th {
	width: 30%;
	padding: 1.5rem;
    font-weight: 400;
	border-bottom: .1rem solid var(--ui-border-color);
	vertical-align: middle;
}

.th-primary {
	background: var(--primary);
	color: var(--white);
	border-color: var(--ui-border-color);
}

.td {
	width: 70%;
	padding: 1.5rem;
	border-bottom: .1rem solid var(--ui-border-color);
}

.td-primary {
	border-color: var(--ui-border-color);
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem 6rem;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6rem;
}

figure {
	line-height: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.flex-1 {
	flex: 1;
}

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

/* --- 文字 --- */

.en-title01 {
	font-family: var(--font-family01);
	font-size: 10rem;
	font-weight: 500;
	line-height: 1.2em;
    letter-spacing: 0.03em;
}

.en-title02 {
	font-family: var(--font-family01);
	font-size: 24rem;
	font-weight: 500;
    letter-spacing: 0;
	line-height: 1.2;
}

.en-title03 {
	font-family: var(--font-family01);
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.2;
}

.en-title04 {
	font-family: var(--font-family01);
	font-size: 7rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.2;
}

.en-title05 {
	font-family: var(--font-family01);
	font-size: 5rem;
	font-weight: 500;
    letter-spacing: 0.03em;
	line-height: 1.2;
}

.jp-title01 {
	font-size: 1.8rem;
	font-weight: 500;
    letter-spacing: 0.05em;
}

.jp-title02 {
	font-size: 4rem;
	font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4em;
}

.jp-title03 {
	font-size: 3rem;
	font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4em;
}

.text01 {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2.22em;
}

.text01 span {
	font-weight: 600;
}

.text01-mt {
    margin: 3rem 0 0;
}

.text02 {
	font-size: 18px;
    letter-spacing: 0.05em;
	line-height: 1.88888em;
}

.text03 {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
    line-height: 1.65em;
}

.flex-title01 {
	font-size: 4rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

.flex-title02 {
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.flex-title02 span {
	font-size: 4rem;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.title-center-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.incover-box > h1 {
	font-family: var(--font-family01);
	font-size: 5rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.4;
}

.incover-box > p {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1;
}

/* --- ボタン --- */

.btn01 {
    max-width: 30rem;
    width: 100%;
    position: relative;
    text-align: center;
    font-family: var(--font-family01);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all .3s;
}

.btn01 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;
	height: 100%;
    padding: 2.5rem;
}

.btn01-arrow:after {
	content: "";
	position: absolute;
	top: 50%;
    bottom: 0;
    right: 3rem;
	margin: auto;
    width: 3rem;
    height: 5.4rem;
	pointer-events: none;
	transition: all .3s
}

.btn01-arrow:hover::after {
    right: 2rem;
	transition: all .3s;
}

.btn01-gray03 {
	background-color:var(--gray03);
	border: 1px solid var(--gray03);
}

.btn01-gray03:after {
    background: url(../../../../uploads/arrow-black.svg) no-repeat;
    background-size: 100%;
}

.btn02 {
    max-width: 25rem;
    width: 100%;
    position: relative;
    /* text-align: center; */
    font-family: var(--font-family01);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.03em;
	border: 1px solid var(--gray02);
    transition: all .3s;
}

.btn02 a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	width: 100%;
	height: 100%;
	padding: 1.31rem 3rem;
}

.btn02:before{
	content: "";
	position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
	margin: auto;
    width: 96.8%;
    height: 86.67%;
	border: 1px solid var(--gray02);
	pointer-events: none;
	transition: all .3s
}

.btn02-arrow:after {
	content: "";
	position: absolute;
	top: 40%;
    /* bottom: 0; */
    right: 3rem;
	margin: auto;
    width: 3rem;
    height: 5.4rem;
	pointer-events: none;
	transition: all .3s
}

.btn02-arrow:hover::after {
    right: 2rem;
	transition: all .3s;
}

.btn02-black:after {
    background: url(../../../../uploads/arrow-black.svg) no-repeat;
    background-size: 100%;
}

.back-btn {
    max-width: 25rem;
    width: 100%;
    position: relative;
    /* text-align: center; */
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
	margin: 4rem auto 0;
    transition: all .3s;
}

.back-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	color: var(--white);
	background: var(--black);
	padding: 1.31rem 3rem;
    transition: all .3s;
}

.back-btn a:hover {
	color: var(--black);
	background: var(--white);
}

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

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	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(--gray03);
	border-color: #D9D9D9;
	color: var(--black);
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

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

.sp-header-link:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link-pagetop:before {
	width: 2rem;
    height: 2rem;
    background: url(../../../../uploads/page-top.svg) no-repeat center / contain;
}

.sp-header-link-map:before {
    width: 1.81rem;
    height: 2.4rem;
    background: url(../../../../uploads/map-black.svg) no-repeat center / contain;
}

.sp-header-link-reserve:before {
    width: 1.8rem;
    height: 2rem;
    background: url(../../../../uploads/calendar-black.svg) no-repeat center / contain;
}

.sp-header-link-tel:before {
    width: 2rem;
    height: 2rem;
    background: url(../../../../uploads/tel-black.svg) no-repeat center / contain;
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: 1rem 0 1rem 0;
	line-height: 1;
	text-align: center;
}

/* .sp-header-link-pagetop > a:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel > a:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact > a:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
} */


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

.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: 9999999;
}

.sp-nav-btn-color {
	background: var(--black);
	color: var(--gray03);
}

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

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 1px;
	background: var(--gray03);
	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-family: var(--font-family01);
	font-size: 1.2rem;
	letter-spacing: 0.03em;
	margin: .3rem 0 0;
}

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

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

.js-open .sp-nav-btn-bar-bottom {
	top: 70%;
	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: 999999;
}

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

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

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

.sp-nav-list {
	padding: 0 0 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 .header-navi-link {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 2rem 1rem;
        margin: 0;
        border-top: 1px solid var(--gray04);
        position: relative;
}

.sp-nav-list .header-navi-link:last-child {
	border-bottom: 1px solid var(--gray04);
}

.sp-nav-list .header-navi-link:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 3rem;
	margin: auto;
	width: 3rem;
	height: 5.4rem;
	pointer-events: none;
	background: url(../../../../uploads/arrow-black.svg) no-repeat;
	background-size: 100%;
	transition: all .3s;
}

.sp-nav-list .header-navi-link:hover::after {
	right: 2rem;
	transition: all .3s;
}

.sp-nav-list .header-tel-box {
    position: relative;
    /* max-width: 27rem; */
    width: 100%;
    text-align: center;
    margin: 4rem auto 0;
}

.sp-nav-list .header-tel-box:after {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: auto;
    left: 3rem;
    width: 1.9rem;
    height: 1.9rem;
    background: url(../../../../uploads/tel-black.svg) no-repeat;
    background-size: 100%;
}

.sp-nav-list .header-rsv-btn {
    display: flex;
	align-items: center;
	justify-content: flex-start;
    max-width: 33.5rem;
    width: 100%;
    border: 1px solid #D9D9D9;
    padding: 1.6rem 1.5rem 1.8rem;
    text-align: center;
    margin: 3rem auto 0;
	position: relative;
    transition: all .3s;
}

.sp-nav-list .header-rsv-btn-en {
	margin: 0 1rem 0 0;
}

.sp-nav-list .header-rsv-btn:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 3rem;
	margin: auto;
	width: 3rem;
	height: 5.4rem;
	pointer-events: none;
	background: url(../../../../uploads/arrow-black.svg) no-repeat;
	background-size: 100%;
	transition: all .3s;
}

.sp-nav-list .header-rsv-btn:hover::after {
	right: 2rem;
	transition: all .3s;
}

.sp-nav-list .footer-en-navi {
	margin: 0 1.6rem 0 0;
}

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

.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
    margin: 4rem auto 0;
}

.pagination-page {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	/* border-style: solid;
	border-width: 1px; */
	text-align: center;
}

.pagination-current-color {
	color: var(--white);
	background: var(--black);
}

.pagination-page-color {
	background: var(--white);
	color: var(--black);
}

.pagination-page-color:hover {
	background: var(--black);
	color: var(--white);
}

.pagination-first, .pagination-last {
	font-size: 1.2rem;
	border-style: solid;
	border-width: 1px;
	padding: 0.4rem 0.5rem 0.2rem;
}

.pagination-first-color, .pagination-last-color {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-first-color:hover, .pagination-last-color:hover {
	background: var(--primary);
	color: var(--white);
}

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

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

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

}

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

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

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

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

    .text01, .text02 {
        font-size: 16px;
    }

	.flex-title02 {
    	font-size: 2.8rem;
	}

}

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

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

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

	.flex-title01 {
        font-size: 23px;
    }

	.flex-title02 {
        font-size: 18px;
    }

	.text01 {
		font-size: 14.5px;
	}

	.text02 {
		font-size: 14.5px;
	}

}

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

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

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

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

	.en-title02 {
		font-size: 13rem;
	}

	.flex-title02 span {
		font-size: 3rem;
	}

	/* ==========================================
	コンテンツ
	========================================== */

	.incover {
		height: 35rem;
	}

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

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

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

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

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

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

    .sp-nav-btn {
        width: 6rem;
        height: 6rem;
        top: 3rem;
        right: 1rem;
		transition: all .3s;
    }

	.sp-nav-btn:hover {
		background: #5f5f5f;
		transition: all .3s;
	}

	.sp-nav-list-row {
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.sp-nav-list-box {
		width: 50%;
	}

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

	.hamburger-btn-box {
		margin: 6rem auto 0;
		padding: 3rem 0 0;
		border-top: 1px solid var(--gray01);
	}

	.hamburger-btn-box .header-tel-box {
		margin: 0 auto;
	}

	.hamburger-btn-box .header-link {
    	max-width: 32.5rem;
	    width: 100%;
	}

	.hamburger-btn-box .header-link-contact {
		margin: 2rem auto 0;
	}

	.hamburger-btn-box .header-link-contact:before {
		left: 10rem;
	}

	.hamburger-btn-box .header-link-line {
		margin: 1rem auto 0;
	}

	.hamburger-btn-box .header-tel-box {
		width: 50%;
	}

	.hamburger-btn-box .header-link-hpb {
		margin: 1rem auto 0;
	}

}

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

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

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

	.text01 {
		font-size: 14.5px;
	}

	.text02 {
		font-size: 14.5px;
	}

}

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

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

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

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

	.pc {
		display: none!important;
	}
	
	.pc-flex {
		display: none!important;
	}

	.sp {
		display: block!important;
	}

	.sp-flex {
		display: flex!important;
	}

	.grid-4 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.flex-column-sp {
		flex-direction: column;
	}

	/* --- 文字 --- */

	.jp-title03 {
		font-size: 2.2rem;
	}

	.en-title02 {
		font-size: 12rem;
	}

	.flex-title01 {
		font-size: 2.5rem;
	}

	.flex-title02 {
    	font-size: 2.2rem;
	}

	.text01 br {
		display: none;
	}
	
	.text03 {
		font-size: 1.45rem;
	}

	/* ==========================================
	コンテンツ
	========================================== */

	.incover {
		height: 30rem;
	}

	.incover-box {
		bottom: 6%;
	}

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

	.sp-header {
		display: flex;
	}

	.sp-nav-btn {
        top: 1rem;
        right: 1rem;
    }

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

	.pagination-page {
		width: 3rem;
		height: 3rem;
	}

}

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

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

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

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

	/* --- 文字 --- */

	.en-title01 {
		font-size: 6rem;
	}

	.en-title02 {
		font-size: 6.15rem;
	}

	.en-title04 {
		font-size: 4rem;
	}

	.jp-title01 {
		font-size: 1.3rem;
	}

	.flex-title01 {
        font-size: 1.95rem;
    }

	.flex-title02 {
		font-size: 1.8rem;
	}

	.flex-title02 span {
		font-size: 2.6rem;
	}

	.text01 {
		font-size: 1.5rem;
		line-height: 2.22em;
	}

	.text01-mt {
		margin: 2rem 0 0;
	}

	.text02 {
		font-size: 1.5rem;
	}

	.text03 {
		font-size: 1.3rem;
	}

	/* --- ボタン --- */

	.btn01 {
		font-size: 1.5rem;
	}

	/* ==========================================
	コンテンツ
	========================================== */

	.incover {
		height: 25rem;
	}

    .incover-box {
        bottom: 3%;
    }

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

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

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

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

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

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

    .sp-nav-btn-text {
        font-size: 1.1rem;
        line-height: 1.45;
    }

	.sp-nav-btn-text{
		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;
	}

}

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