@charset "utf-8";

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

:root {
	/* base color */
	--base-font-color: #333;
	--white: #fff;
	--black: #262625;
	--gray01: #CCCCCC;
	--gray02: #E6E6E6;
	--gray03: #B0B0B0;
	--gray04: #9E9E9E;
	--red: #ed3838;

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

	/* site color */
	--primary: #C66977;
	--secondary: #F8D6D3;
	--tertiary: #FAF9F8;
	--quaternary: #D8B8B3;
	--fifth: #3E7B91;
	--sixth: #C0D6DF;
	--linecolor: #06C755;

	/* 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: "Noto Serif JP", serif;
	--font-family02: "Marcellus", serif;
	--font-family03: "WindSong", cursive;

}

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

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

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-mask.png) 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;
}

.in-pc {
	display: block !important;
}

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

.tb {
	display: none !important;
}

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

.sp {
	display: none !important;
}

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

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

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

.pt-0 {
	padding-top: 0 !important;
}

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-secondary {
	background-color: var(--secondary) !important;
}

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

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

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

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

.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(95,67,71,.5);
	z-index: 1;
}

.hpb-bg {
	background: #9C1B44 !important;
}

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

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

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

.text-margin-top {
	margin: 4.7rem auto 0;
}

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

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

.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: 15rem 0 13rem;
}

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

.frame02 {
	max-width: 172rem;
	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: 162rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

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

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

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

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

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

.en-title01 {
	font-family: var(--font-family02);
	font-size: 3rem;
	line-height: 1.2em;
    letter-spacing: 0.03em;
}

.en-title02 {
	font-family: var(--font-family02);
	font-size: 2.5rem;
	line-height: 1.2em;
    letter-spacing: 0.03em;
}

.en-title03 {
	font-family: var(--font-family02);
	font-size: 8rem;
	line-height: 1.2em;
}

.jp-title01 {
	font-family: var(--font-family01);
	font-size: 5rem;
	font-weight: 600;
    letter-spacing: 0.05em;
}

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

.text01 {
	position: relative;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2.22em;
}

.text01 span {
	font-weight: 500;
}

.text01.text01-dot {
	padding: 0 0 0 1rem;
}

.text01-dot::before {
	content:"";
	position: absolute;
    top: 50%;
    left: 0;
    width: .3rem;
    height: .3rem;
	background: var(--base-font-color);
	border-radius: 50%;
	z-index: 1;
}

.text02 {
	font-size: 1.8rem;
	line-height: 1.88888em;
}

.deco-text03 {
	font-family: var(--font-family03);
	font-size: 10rem;
	font-weight: 500;
	letter-spacing: 0;
    line-height: 1.52;
}

.flex-title01 {
	font-family: var(--font-family01);
	font-size: 3.5rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.flex-title02 {
	font-family: var(--font-family01);
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.incover-box > h1 {
	font-family: var(--font-family02);
	font-size: 8rem;
	letter-spacing: 0;
	line-height: 1.4;
}

.incover-box > p {
	font-family: var(--font-family01);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1;
}



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

.btn01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
	font-family: var(--font-family01);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 100vmax;
    transition: all .3s;
}

.btn01-arrow:after {
	content: "";
	position: absolute;
    top: 0;
    bottom: 0;
    right: 4rem;
	margin: auto;
    width: 1.4rem;
    height: .8rem;
	transition: all .3s
}

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

.btn01-short {
	max-width: 20.3rem;
	padding: 2rem 4rem;
}

.btn01-medium {
	max-width: 24.5rem;
	padding: 2rem 4rem;
}

.btn01-long {
	max-width: 50.2rem;
	padding: 2.3rem 4rem;
}

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

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

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

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

.btn01-line {
	color: var(--white);
	background-color:var(--linecolor);
}

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

.btn01-secondary {
	color: var(--black);
	background-color:var(--secondary);
}

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

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

.sp-header {
	width: 100%;
	height: 10rem;
	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(--white);
	border-color: var(--gray01);
	color: var(--base-font-color);
}

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

.sp-header-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2.2rem 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 {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
} */

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

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

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

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

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

.sp-header-link-line:before {
    width: 2.5rem;
    height: 2.5rem;
    background: url(../../../../uploads/line_icon.png) no-repeat center / contain;
}

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

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

.sp-nav-btn {
    width: 6rem;
    height: 6rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 9999999;
    transition: all .3s;
}

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

.sp-nav-btn-color {
	transition: .3s;
}

.sp-nav-btn-color:hover .sp-nav-btn-bar {
	background: var(--gray01);
}

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

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

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

.sp-nav-btn-bar-center {
	display: none;
	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: 999999;
}

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

.sp-nav-bg {
	background: url(../../../../uploads/body-mask.png) repeat-y center;
    background-size: auto;
}

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

.sp-nav-list {
	font-family: var(--font-family01);
	/* padding: 10rem 0; */
    max-width: 400px;
	width: 100%;
	height: 100%;
    margin: 0 auto;
	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;
	transition: .3s;
}

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

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

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

@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 <= 1200px) {

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

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


	.tb {
		display: block !important;
	}

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

    .incover {
        height: 32rem;
    }

	.incover-box > h1 {
		font-size: 6rem;
	}
}

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

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

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

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

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

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

	.deco-text03 {
		font-size: 7rem;
	}

	.text-margin-top {
		margin: 3rem auto 0;
	}

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

	.wrapper {
		padding: 11rem 0 10rem;
	}

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

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

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

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

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

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

	.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 <= 768px) {

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

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

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

	.tb {
		display: none !important;
	}

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

	.text-margin-top {
		margin: 3.5rem auto 0;
	}

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

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

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

	.incover {
		height: 30rem;
	}

	.incover-box {
		bottom: 6%;
	}

	.incover-box > h1 {
		font-size: 5rem;
	}

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

	.sp-header {
		display: flex;
	}


}

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

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

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

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


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

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

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

	.en-title03 {
		font-size: 5rem;
	}

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

	.jp-title02 {
		font-size: 2.5rem;
	}

    .text01, .text02 {
        font-size: 1.43rem;
    }

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

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

    .deco-text03 {
        font-size: 4.5rem;
    }

	.text01-dot::before {
		top: 20%;
	}

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

	.btn01 {
		font-size: 1.3rem;
	}

	.footer-top-item-btn-row {
		flex-direction: column;
		max-width: 32.5rem;
		margin: 0 auto;
	}

	.btn01-short {
		max-width: 16.9rem;
		padding: 1.8rem 2.6rem;
	}

	.btn01-medium {
		max-width: 22.75rem;
		padding: 1.8rem 2.6rem;
	}

	.btn01-long {
		max-width: 32.5rem;
		padding: 1.8rem 2.6rem;
	}

	.btn01-arrow:after {
		right: 2.63rem;
	}

	.btn01-arrow:hover::after {
		right: 2rem;
	}

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

	.incover {
		height: 28rem;
	}

	.incover-box > h1 {
		font-size: 4rem;
	}

	.incover-box > p {
		font-size: 1.6rem;
	}

	.wrapper {
		padding: 8rem 0 6rem;
	}


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

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

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

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

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

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

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

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


}

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

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

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

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

    .incover-box > h1 {
        font-size: 3.8rem;
    }

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

}

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