/*
Thame Name:heuleum
Thame URL:
Description:heuleum
Author:Katayama
Version:1.0
*/

/*------------------------------------
開発用・border表示
------------------------------------*/
/*--
* {
	border: solid 0.5px var(--color_03);
}
--*/


/*------------------------------------
開発用・管理バーを半透明にする
------------------------------------*/
#wpadminbar {
	background: rgba(0, 0, 0, 0.3) !important;
	backdrop-filter: blur(6px);
	/* ぼかし */
	transition: background 0.3s ease;
}

/* hover時に少し濃くする */
#wpadminbar:hover {
	background: rgba(0, 0, 0, 0.8) !important;
}

/*------------------------------------
変数
------------------------------------*/
:root {
	--font-family_1: "Fira Sans",'Zen Kaku Gothic New',sans-serif;
	--font-family_2: "PT Sans Narrow", 'Zen Kaku Gothic New', sans-serif;

	--font-size_sss: 0.8rem !important;
	--font-size_ss: 0.9rem !important;
	--font-size_s: 1rem !important;
	--font-size_mm: 1.2rem !important;
	--font-size_m: 1.4rem !important;
	--font-size_l: 1.7rem !important;
	--font-size_ll: 2rem !important;
	--font-size_lll: 3rem !important;
	--font-size_llll: 4.5rem !important;

	--font-weight_s: 300;
	--font-weight_m: 400;
	--font-weight_l: 500;
	--font-weight_ll: 600;

	--color_00: #1a1c1e;
	/* ほぼ黒に近い青灰 */
	--color_01: #272b2f;
	--color_02: #4b5157;
	--color_03: #6a7279;
	--color_04: #8a939a;
	--color_05: #979fa6;
	--color_06: #a5adb3;
	--color_07: #bec6cb;
	--color_08: #dee3e6;
	--color_085: #e9ecee;
	--color_09: #f2f4f5;
	--color_10: #f9fafb;
	--color_1: #1E4359;
	--color_2: #6393A6;
	--color_3: #bed5de;
	--color_4: #e2edf2;
	--color_5: #f0f4f5;
	--color_6: #A8615A;
	--color_7: #217dbc;
	--color_8: #3eaac5;
	--color_f: #fff;
	--color_line: #27ba67;
	--color_bs_00: #00000044;
	--color_bs_1: #4b555311;
	--color_bs_2: #4b555322;
	--color_bs_3: #4b555333;

	--shadow_1: 3px 3px 7px #0000001A;
	--shadow_2: 2px 2px 5px #0000001A;
	--shadow_3: 1px 1px 2px #0000001A;
	--shadow_0: 2px 2px 0 #1a1a1a;

	--circle_1: 57% 43% 56% 44% / 41% 42% 58% 59%;
	--circle_2: 40% 60% 41% 59% / 50% 37% 63% 50%;
	--circle_3: 64% 36% 41% 59% / 50% 54% 46% 50%;
	--circle_4: 38% 62% 35% 65% / 63% 42% 58% 37%;

	--border_1: solid 1px var(--color_01);
	--border_2: solid 1px var(--color_04);
	--border_3: solid 1px var(--color_08);

	--radius_05: 5px;
	--radius_1: 10px;
	--radius_2: 20px;
	--radius_3: 30px;
	--radius_4: 40px;
	--radius_5: 50px;
	--radius_10: 100px;
	--radius_50: 50%;

	--flex_1: 100%;
	--flex_2: 47%;
	--flex_3: 32%;
	--flex_4: 22%;

	--ease_1: 0.2s ease-out;
	--ease_2: 0.4s ease-out;
	--ease_3: 0.6s ease-out;
}

@media screen and (max-width: 699px) {
	:root {
		--font-size_sss: 0.7rem !important;
		--font-size_ss: 0.8rem !important;
		--font-size_s: 0.9rem !important;
		--font-size_mm: 1rem !important;
		--font-size_m: 1.2rem !important;
		--font-size_l: 1.5rem !important;
		--font-size_ll: 1.8rem !important;
		--font-size_lll: 2.8rem !important;
		--font-size_llll: 4.3rem !important;
	}
}

/*------------------------------------
基本CSS
------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 100%;
}

body {
	top: 0px !important;
	color: var(--color_01);
	font-family: var(--font-family_1);
	font-weight: var(--font-weight_s);
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: left;
	background: var(--color_10);
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color_f);
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity .8s ease;
	transition: opacity .8s ease;
}

body.fade::after {
	opacity: 1;
}

body .no-scroll {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family_1);
	color: var(--color_00);
	font-weight: var(--font-weight_m);
}

h1,
h2,
h3 {}

h4,
h5,
h6 {}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.3rem;
}

p,
a,
i {
	font-family: var(--font-family_1);
	font-size: var(--font-size_s);
	color: var(--color_01);
	font-weight: var(--font-weight_m);
	letter-spacing: 0.05em;
	line-height: 1.8em;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

p a {
	text-decoration: underline;
}

img,
video {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

table {
	line-height: 1.4em;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
}

.white {
	color: var(--color_f) !important;
}

.black {
	color: var(--color_00) !important;
}


/*------------------------------------ここからレイアウトパーツ------------------------------------*/


/*------------------------------------
セクション
------------------------------------*/
.section-container_1 {
	position: relative;
	padding: 125px 0;
}

.section-container_2 {
	position: relative;
	padding: 50px 0 100px 0;
}

@media screen and (max-width: 699px) {
	.section-container_1 {
		padding: 75px 0;
	}

	.section-container_2 {
		padding: 35px 0 75px 0;
	}
}

/*------------------------------------
コンテンツの幅を制限する
------------------------------------*/
.wrapper {
	max-width: 1200px;
	height: auto;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

.wrapper__over-left {
	width: calc(50% + 500px);
	max-width: 100vw;
	margin-left: 0;
	margin-right: auto;
}

.wrapper__over-right {
	width: calc(50% + 500px);
	max-width: 100vw;
	margin-left: auto;
	margin-right: 0;
}

.wrapper-wide {
	max-width: 1400px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.wrapper-wide__over-left {
	width: calc(50% + 600px);
	max-width: 100vw;
	margin-left: 0;
	margin-right: auto;
}

.wrapper-wide__over-right {
	width: calc(50% + 600px);
	max-width: 100vw;
	margin-left: auto;
	margin-right: 0;
}

.wrapper-fullwide {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	height: auto;
}

@media screen and (max-width: 699px) {

	.wrapper,
	.wrapper__over-left,
	.wrapper__over-right,
	.wrapper-wide,
	.wrapper-wide__over-left,
	.wrapper-wide__over-right {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*------------------------------------
コンテンツを中央寄せ縦積みにする
------------------------------------*/
.block-pack {
	display: block;
	margin: auto;
	text-align: center;
}

.block-item {
	margin: 100px auto;
	text-align: left;
}

.block-item:nth-child(1) {
	margin-top: 0;
}

.block-item:nth-last-child(1) {
	margin-bottom: 0;
}

@media screen and (max-width: 699px) {
	.block-item {
		margin: 75px auto;
	}
}


/*------------------------------------
コンテンツを横並びで配置
------------------------------------*/
.flex-pack {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

.flex-item {}

@media screen and (max-width: 699px) {
	.flex-pack {
		flex-wrap: wrap;
	}
}

/*------------------------------------
子要素を横並びにするクラス
------------------------------------*/
.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*------------------------------------
左：sticky / 右：メインコンテンツ
------------------------------------*/
.layout_1 {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
	gap: 100px;
}

.layout_1 .left-pack {
	width: calc(40% - 50px);
	height: auto;
}

.layout_1 .left-pack .inner {
	position: sticky!important;
	top: 25px;
}

.layout_1 .right-pack {
	width: calc(60% - 50px);
}

@media screen and (max-width: 699px) {
	.layout_1 {
		flex-wrap: wrap;
}

.layout_1 .left-pack {
	width: 100%;
}

.layout_1 .left-pack .inner {
	position: relative;
}

.layout_1 .right-pack {
	width: 100%;
}
}

/*------------------------------------
枠パーツ
------------------------------------*/
.box_1 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 75px;
	background: var(--color_f);
	z-index: 0;
}

.box_2 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 30px 30px 35px 30px;
	background: var(--color_f);
	border: solid 1px var(--color_01);
}

.box_3 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 50px;
	background: var(--color_f);
}

.box_4 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 20px 20px 30px 20px;
	background: var(--color_f);
	border-radius: var(--radius_1);
	z-index: 0;
}

.box_5 {
	position: relative;
	border: var(--border_3);
}

.box_5::after {
	content: '';
	position: absolute;
	top: 15px;
	left: 15px;
	width: 100%;
	height: 100%;
  background-image: radial-gradient(circle, var(--color_08) 1.5px, transparent 1.5px), radial-gradient(circle, var(--color_08) 1.5px, transparent 1.5px);
  background-position: 0 0, 2.5px 5px;
  background-size: 5px 10px;
	background-repeat: repeat;
	z-index: -1;
}

@media screen and (max-width: 699px) {
	.box_1 {
		padding: 25px 25px 35px 25px;
	}

	.box_2 {
		padding: 25px 25px 35px 25px;
	}

	.box_3 {}

	.box_4 {}
}

/*------------------------------------
画像外枠
------------------------------------*/
.frame_1 {
	display: block;
	overflow: hidden;
}

/*------------------------------------
テキストボックス
------------------------------------*/
/*テキストボックス1*/
.content_1 {
	position: relative;
	margin: 25px auto;
}

.content_1 .title {
	position: relative;
	font-family: var(--font-family_1);
	font-size: var(--font-size_ss);
	color: var(--color_2);
	font-weight: var(--font-weight_s);
	letter-spacing: 0.1em;
	line-height: 1.5em;
}

.content_1 .sub-title {
	position: relative;
	margin-top: 20px;
	font-family: var(--font-family_1);
	font-size: var(--font-size_ll);
	font-weight: var(--font-weight_m);
	letter-spacing: 0.1em;
	line-height: 1.85em;
}

.content_1 .caption {
	margin-top: 25px;
}

.content_1 .caption p {
	font-size: var(--font-size_s);
	line-height: 2.5em;
	margin-top: 20px;
}

.content_2 .caption p:nth-child(1) {
	margin-top: 0;
}

.content_1 .caption-english {
	margin-top: 25px;
}

.content_1 .caption-english p {
	font-size: var(--font-size_sss);
	color: var(--color_04);
	line-height: 2.5em;
	margin-top: 20px;
}

.content_2 .caption-english p:nth-child(1) {
	margin-top: 0;
}



@media screen and (max-width: 699px) {
	.content_1 {
		padding: 50px 20px;
	}

	.content_1 .title {}

	.content_1 .sub-title {
		font-size: 32px;
	}

	.content_1 .caption {}
}

/*テキストボックス2*/
.content_2 {
	position: relative;
	margin: 25px auto;
}

.content_2 .title {
	font-family: var(--font-family_2);
	font-size: var(--font-size_ss);
	color: var(--color_1);
	font-weight: var(--font-weight_s);
	letter-spacing: 0.1em;
	line-height: 1.5em;
}

.content_2 .sub-title {
	margin-top: 20px;
	font-family: var(--font-family_1);
	font-size: var(--font-size_l);
	font-weight: var(--font-weight_l);
	letter-spacing: 0.1em;
	line-height: 1.85em;
}

.content_2 .caption {
	margin-top: 25px;
}

.content_2 .caption p {
	margin-top: 20px;
	font-size: var(--font-size_s);
	line-height: 2em;
}

.content_2 .caption p:nth-child(1) {
	margin-top: 0;
}

/*テキストボックス3*/
.content_3 {
	padding: 25px 25px;
}

.content_3 .title {
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_m);
	line-height: 1.5em;
}

.content_3 .caption {
	margin-top: 10px;
}

.content_3 .caption p {
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 699px) {
	.content_3 {
		padding: 35px 0px;
	}
}

/*テキストボックス4*/
.content_4 {
	padding: 25px 25px;
}

.content_4 .title {
	font-family: var(--font-family_1);
	font-size: var(--font-size_lll);
	font-weight: var(--font-weight_l);
	letter-spacing: 0.15em;
	line-height: 2em;
}

.content_4 .sub-title {
	position: relative;
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_m);
	display: flex;
	align-items: flex-start;
}

.content_4 .sub-title::before {
	content: '';
	width: 40px;
	height: 1px;
	margin-top: 16px;
	margin-right: 5px;
	background: var(--color_01);
}

.content_4 .caption {
	margin-top: 45px;
}

.content_4 .caption p {
	margin-top: 25px;
	line-height: 2em;
}

@media screen and (max-width: 699px) {
	.content_4 {
		padding: 35px 0px;
	}

	.content_4 .title {
		font-size: 35px;
	}

	.content_4 .sub-title::before {
		margin-top: 14px;
	}
}

/*テキストボックス(access)*/
.content_access {}

.content_access p {
	line-height: 2.5em;
}

.content_access .name {
	font-size: var(--font-size_l);
	font-weight: var(--font-weight_ll);
}

.content_access .name span {
	margin-left: 5px;
	font-size: var(--font-size_mm);
}

.content_access .postcode {
	font-size: var(--font-size_sss);
}

.content_access .address {
	font-size: var(--font-size_ss);
}

.content_access .tel {
	font-size: var(--font-size_m);
}

.content_access .tel span {
	margin-right: 5px;
	font-size: var(--font-size_s);
}

.content_access .open {}

/*注記*/
.note_1 {
	margin: 5px auto;
	font-size: 12px;
	font-weight: var(--font-weight_s);
	color: var(--color_03);
}

.note_2 {
	margin: 0px auto 25px;
	padding: 10px;

}

.note_2 p {
	font-size: var(--font-size_sss);
	font-weight: var(--font-weight_s);
	color: var(--color_06);
}

.note_3 {
	position: relative;
	margin: 0 35px 50px;
	text-align: center;

}

.note_3 p {
	font-size: var(--font-size_m);
	font-weight: var(--font-weight_m);
}

.note_4 {
	position: relative;
	margin: 0 auto 25px;
	text-align: center;
}

.note_4 p {
	font-size: var(--font-size_ss);
	font-weight: var(--font-weight_m);
}

@media screen and (max-width: 699px) {
	.note_1 {
		font-size: 11px;
	}

	.note_4 {
		margin: 0 25px 25px;
	}
}


/*------------------------------------
見出し
------------------------------------*/
.title_l {
	font-family: var(--font-family_2);
	font-size: 75px;
	color: var(--color_01);
	letter-spacing: 0.1;
	line-height: 2em;
}

.title_m {
	font-family: var(--font-family_2);
	font-size: 50px;
	color: var(--color_01);
	letter-spacing: 0.1;
	line-height: 2em;
}

.title_s {
	font-family: var(--font-family_2);
	font-size: 30px;
	color: var(--color_01);
	letter-spacing: 0.1;
	line-height: 2em;
}

@media screen and (max-width: 699px) {
	.title_l {
		font-size: 45px;
	}

	.title_m {
		font-size: 35px;
	}

	.title_s {
		font-size: 25px;
	}
}

/*------------------------------------
大見出し
------------------------------------*/
.section-title_1 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 15px;
	text-align: center;
}

.section-title_1 h2 {
	font-family: var(--font-family_2);
	font-size: var(--font-size_lll);
	font-weight: var(--font-weight_l);
	line-height: 1.5em;
	letter-spacing: 0.3em;
	white-space: nowrap;
}

.section-title_1 p {
	font-size: var(--font-size_mm);
}

@media screen and (max-width: 699px) {
	.section-title_1 h2 {
		font-size: 2.3rem;
	}
}

.section-title_2 {
	position: relative;
	width: 100%;
	margin: 0 auto 50px auto;
	padding-bottom: 25px;
}

.section-title_2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 75px;
	height: 3px;
	background: linear-gradient(
		to right,
		var(--color_2) 0%,
		var(--color_2) 30%,
		var(--color_4) 30%,
		var(--color_4) 100%
	);
	border-radius: var(--radius_1);
}

.section-title_2 h2,
.section-title_2 h3 {
	position: relative;
	font-family: var(--font-family_2);
	font-size: var(--font-size_lll);
	font-weight: var(--font-weight_l);
	letter-spacing: 0.3em;
	line-height: 1.5em;
}

.section-title_2 p {
	font-family: var(--font-family_2);
	font-size: var(--font-size_s);
}

@media screen and (max-width: 699px) {
	.section-title_2 h2,
	.section-title_2 h3 {
		font-size: var(--font-size_ll);
	}
}

.section-title_3 {
	position: relative;
	text-align: center;
	margin-bottom: 50px;
}

.section-title_3 h2 {
	font-family: var(--font-family_1);
	font-size: var(--font-size_lll);
	font-weight: var(--font-weight_l);
	letter-spacing: 0.15em;
	line-height: 2em;
}

.section-title_3 p {
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_m);
}

@media screen and (max-width: 699px) {
	.section-title_3 {
		margin-bottom: 25px;
	}

	.section-title_3 h2 {
		font-size: 35px;
	}

	.section-title_3 p {
		transform: translateY(-5px);
		font-size: 18px;
	}
}

.section-title_4 {
	margin: 0 auto 25px auto;
	padding: 25px 15px;
	border-top: solid 1px var(--color_01);
	border-bottom: solid 1px var(--color_01);
}

.section-title_4 h2,
.section-title_4 h3 {
	font-family: var(--font-family_2);
	font-size: var(--font-size_l);
	letter-spacing: 0.1em;
}

.section-title_4 h2 span,
.section-title_4 h3 span {
	font-size: var(--font-size_s);
}

.section-title_4 p {
	margin-top: 15px;
	font-size: var(--font-size_ss);
	font-family: var(--font-family_2);
}

@media screen and (max-width: 699px) {}

.section-title_5 {
	display: flex;
	margin-bottom: 20px;
}

.section-title_5 h2,
.section-title_5 h3 {
	font-family: var(--font-family_2);
	font-size: var(--font-size_m);
	font-weight: var(--font-weight_l);
}

.section-title_5 p {}

@media screen and (max-width: 699px) {}

.section-title_6 {
	position: relative;
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
}

.section-title_6 h2 {
	font-family: var(--font-family_4);
	font-size: 45px;
	font-weight: var(--font-weight_l);
	color: var(--color_3);
}

.section-title_6 p {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-3px);
	font-family: var(--font-family_2);
	font-size: 15px;
}

@media screen and (max-width: 699px) {
	.section-title_6 {
		margin-bottom: 25px;
	}

	.section-title_6 h2 {
		font-size: 60px;
	}

	.section-title_6 p {
		transform: translateY(-5px);
		font-size: 20px;
	}
}

.section-title_7 {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 10px;
	text-align: left;
	margin-bottom: 25px;
}

.section-title_7 h2 {
	font-family: var(--font-family_4);
	font-size: 45px;
	font-weight: var(--font-weight_l);
	color: var(--color_1);
}

.section-title_7 p {
	font-family: var(--font-family_2);
	font-size: 17px;
}

@media screen and (max-width: 699px) {
	.section-title_7 {}

	.section-title_7 h2 {
		font-size: 35px;
	}

	.section-title_7 p {}
}

/*------------------------------------
リストデザイン
------------------------------------*/
/*リストデザイン1*/
.list_1 {
	font-size: var(--font-size_s);
	line-height: 2.2em;
}

/*リストデザイン2*/
.list_2 {
	padding: 15px;
	font-size: var(--font-size_sss);
	line-height: 2em;
	list-style: '▶︎';
}

/*リストデザイン3*/
.list_3 {
	padding: 50px;
	counter-reset: number;
	list-style-type: none !important;
	background: var(--color_f);
}

.list_3 li {
	position: relative;
	line-height: 1.5em;
	padding: 15px 15px 15px 40px;
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_m);
}

.list_3 li:before {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	width: 30px;
	height: 30px;
	counter-increment: number;
	content: counter(number);
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
	font-style: italic;
	color: var(--color_f);
	background: var(--color_7);
}

@media screen and (max-width: 699px) {
	.list_3 {
		padding: 35px 20px;
	}

	.list_3 li {
		font-size: var(--font-size_s);
	}
}

/*------------------------------------
表デザイン
------------------------------------*/
/*表2列・3列*/
.table_2,
.table_3 {
	flex-wrap: wrap;
	gap: 15px;
	margin: 15px auto;
}

.table_2 .row-header,
.table_2 .row,
.table_3 .row-header,
.table_3 .row {
	gap: 15px;
	width: 100%;
}

.table_2 .row-header p,
.table_2 .row p,
.table_3 .row-header p,
.table_3 .row p {
	margin-top: 0;
	line-height: 1.5em;
}

.table_2 .row-header,
.table_3 .row-header {
	padding-bottom: 5px;
	border-bottom: var(--border_1);
}

.table_2 .row-header p,
.table_3 .row-header p {
	font-weight: var(--font-weight_m);
}

.table_2 .row,
.table_3 .row {
	padding-bottom: 10px;
	border-bottom: dotted 1px var(--color_06);
}

.table_2 .cell {
	width: calc((100% - 15px) / 2);
}

.table_3 .cell {
	width: calc((100% - 30px) / 3);
}

.table_2 .cell,
.table_3 .cell p {}

.table_2 .cell:nth-child(1) p,
.table_3 .cell:nth-child(1) p {}

.table_2 .cell:nth-child(2) p,
.table_3 .cell:nth-child(2) p {}

.table_2 .cell:nth-child(3) p,
.table_3 .cell:nth-child(3) p {}

.table_2 .note,
.table_3 .note {
	margin-top: 15px;
}

.table_2 .note p,
.table_3 .note p {
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 799px) {

	.table_2 .row-header p,
	.table_3 .row-header p {
		font-size: var(--font-size_ss);
		font-weight: var(--font-weight_m);
	}

	.table_2 .row,
	.table_3 .row {}

	.table_2 .cell {
		width: calc((100% - 15px) / 2);
	}

	.table_3 .cell {
		width: calc((100% - 30px) / 3);
	}

	.table_2 .cell p,
	.table_3 .cell p {
		font-size: var(--font-size_ss);
	}

	.table_2 .note,
	.table_3 .note {}

	.table_2 .note p,
	.table_3 .note p {
		font-size: var(--font-size_sss);
	}
}

/*------------------------------------
グリッドレイアウト
------------------------------------*/
.grid-pack {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: minmax(10px, auto);
	gap: 75px 50px;
}

.grid-item {
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.grid-item img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 699px) {
	.grid-pack {
		display: flex;
		flex-wrap: wrap;
		gap: 50px;
	}

	.grid-item img {
		height: 100%;
	}
}

/*------------------------------------
ボタンデザイン
------------------------------------*/
.btn-pack {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 35px;
	margin-top: 25px;
}

@media screen and (max-width: 699px) {
	.btn-pack {
		gap: 20px;
	}
}

.btn-pack .btn_1,
.btn-pack .btn_2,
.btn-pack .btn_3 {
	margin: 0;
}

/*共通*/
.btn_1,
.btn_2,
.btn_3 {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 35px auto 0 auto;
	min-width: 250px;
	max-width: 300px;
}

.btn_1 a,
.btn_2 a,
.btn_3 a {
	width: 100%;
	padding: 20px 40px;
	text-align: center;
	font-family: var(--font-family_2);
	font-size: var(--font-size_s);
	line-height: 1em;
	letter-spacing: 0.1em;
	border: solid 1px var(--color_01);
	transition: var(--ease_1);
}

.btn_1 a:hover,
.btn_2 a:hover,
.btn_3 a:hover {}

.btn_1 svg,
.btn_2 svg,
.btn_3 svg {
	position: absolute;
	top: 47%;
	right: 20px;
	transform: translate(0, -50%);
	width: 15px;
	transition: var(--ease_1);
}

.btn_1 a:hover svg,
.btn_2 a:hover svg,
.btn_3 a:hover svg {
	transform: translate(5px, -50%);
	fill: var(--color_1);
}

@media screen and (max-width: 699px) {
	.btn_1,
	.btn_2,
	.btn_3 {
		margin: 35px auto 0 auto;
	}
}

/*ベタ塗り*/
.btn_1 a {
	color: var(--color_f);
	background: var(--color_1);
	border-color: var(--color_1);
}

.btn_1 a:hover {
	color: var(--color_1);
	background: none;
}

.btn_1 svg {
	fill: var(--color_f);
}

.btn_1 a:hover svg {
	fill: var(--color_1);
}

/*白ベタ塗り*/
.btn_2 a {
	color: var(--color_1);
	background: var(--color_f);
	border: none;
}

.btn_2 a:hover {
	color: var(--color_f);
	background: var(--color_3);
}

.btn_2 svg {
	fill: var(--color_1);
}

.btn_2 a:hover svg {
	fill: var(--color_f);
}

/*ボーダー*/
.btn_3 a {
	color: var(--color_1);
	background: none;
	border-color: var(--color_3);
}

.btn_3 a:hover {
	color: var(--color_f);
	background: var(--color_bs_00);
}

.btn_3 svg {
	fill: var(--color_1);
}

.btn_3 a:hover svg {
	fill: var(--color_f);
}

/*丸ボタン*/
.btn_4 {
	width: 100%;
	margin-top: 25px;
}

.btn_4 a {
	position: relative;
	width: 90px;
	height: 90px;
	margin-left: auto;
	margin-right: 0;
	background: var(--color_3);
	border-radius: var(--radius_5);
	transition: var(--ease_1);
}

.btn_4 a:hover {}

.btn_4 a::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	background: var(--color_5);
	border-radius: var(--radius_5);
	filter: blur(5px) opacity(0.4);
	transition: var(--ease_2);
}

.btn_4 a:hover::after {
	width: 110%;
	height: 110%;
}

.btn_4 a p {
	font-family: var(--font-family_2);
	font-size: var(--font-size_ss);
	letter-spacing: 0.2em;
	color: var(--color_f);
}

@media screen and (max-width: 699px) {
	.btn_4 {}

	.btn_4 a {
		width: 70px;
	height: 70px;
		font-size: var(--font-size_s);
	}

	.btn_4 a:hover {}

	.btn_4 a::after {}

	.btn_4 svg {
		width: 8px;
	}
}

/*丸ボタン*/
.btn_5 {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin: 35px auto 0 auto;
}

.btn_5 a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	position: relative;
	max-width: 250px;
	padding: 10px 20px 10px 25px;
	text-align: center;
	background: var(--color_f);
	transition: var(--ease_1);
}

.btn_5 a::before,
.btn_5 a::after {
	content: '';
	position: absolute;
	background: var(--color_04);
}

.btn_5 a::before {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}

.btn_5 a::after {
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
}

.btn_5 a:hover {}

.btn_5 p {
	font-family: var(--font-family_2);
	font-size: var(--font-size_ss);
	line-height: 1em;
	letter-spacing: 0.2em;
}

.btn_5 svg {
	width: 13px;
	transition: var(--ease_1);
}

.btn_5 a:hover svg {
	transform: translateX(5px);
	fill: var(--color_1);
}

/*reserve専用ボタン*/
.btn_reserve {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 auto 0 auto;
	width: 300px;
}

.btn_reserve a {
	width: 100%;
	padding: 15px 40px;
	text-align: center;
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
	background: var(--color_f);
	border: var(--border_1);
	transition: var(--ease_1);
}

.btn_reserve a:hover {
	filter: brightness(0.9);
}

@media screen and (max-width: 699px) {
	.btn_reserve {}
}

/*リンクなしのダミーボタン(要素全体をホバー可した時用。今回は不使用)*/
.btn_dummy {
	display: flex;
	justify-content: center;
	position: relative;
	margin-top: 35px;
}

.btn_dummy .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 10px 40px;
	background: var(--color_08);
	border-radius: var(--radius_5);
	transition: var(--ease_1);
}

.btn_dummy svg {
	width: 35px;
	fill: var(--color_00);
	transition: var(--ease_1);
}

.btn_dummy_pack:hover .inner {}

.btn_dummy_pack:hover .inner svg {
	fill: var(--color_00);
}

/*------------------------------------
区切り線デザイン
------------------------------------*/
.separator_1 {
	border: solid 1px var(--color_07);
}

/*------------------------------------
アコーディオン
------------------------------------*/
.accordion-area {
	list-style: none;
	width: 100%;
	margin: 0 auto;
}

.accordion-area li {
	margin: 25px auto;
	border-bottom: solid 1px var(--color_07);
}

.accordion-area section {
	border: 1px solid var(--color_05);
}

.accodion-title {
	position: relative;
	cursor: pointer;
	padding: 20px 40px 20px 15px;
	border-radius: var(--radius_5);
	transition: var(--ease_1);
}

.accodion-title::before,
.accodion-title::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 2px;
	background: var(--color_02);
	transition: var(--ease_2);
}

.accodion-title::before {
	top: 48%;
	right: 20px;
	transform: rotate(-45deg);
}

.accodion-title::after {
	top: 48%;
	right: 26px;
	transform: rotate(45deg);
}

.accodion-title.close::before {
	transform: rotate(0deg);
}

.accodion-title.close::after {
	transform: rotate(-0deg);
}

.accodion-title h3 {
	font-size: var(--font-size_s);
}

.accodion-title h3 span {
	margin-right: 10px;
	font-size: var(--font-size_l);
	color: var(--color_3);
}

.box {
	max-height: 0;
	overflow: hidden;
	transition: var(--ease_2);
}

.box-content {
	padding: 10px 40px 30px 30px;
}

.box-content span {
	padding-right: 10px;
	font-size: var(--font-size_l);
	color: var(--color_2);
}

.close-btn {
	display: block;
	margin: 30px auto 0;
	padding: 8px 15px 8px 20px;
	color: var(--color_f);
	background: var(--color_01);
	border: none;
	cursor: pointer;
	position: relative;
	font-size: var(--font-size_sss);
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-align: center;
	width: 100px;
}

.close-btn::before,
.close-btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 10px;
	width: 10px;
	height: 1px;
	background: var(--color_f);
	transform: translateY(-50%);
}

.close-btn::before {
	transform: translateY(-50%) rotate(45deg);
}

.close-btn::after {
	transform: translateY(-50%) rotate(-45deg);
}

/*------------------------------------
切り替えタブ
------------------------------------*/
.tabs {
	max-width: 100%;
}

.tab-list {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}

.tab-list>* {
	flex: 0 0 calc((100% - 6px) / 3);
}

.tab-item {
	width: 100%;
	text-align: center;
	font-size: var(--font-size_s);
	white-space: nowrap;
	color: var(--color_f);
	background: var(--color_07);
	padding: 20px 0;
	cursor: pointer;
}

.tab-item.active {
	background: var(--color_1);
}

.tab-content {
	display: block;
}

.tab-panel {
	display: none;
	width: 100%;
	background: var(--color_f);
}

.tab-panel h4 {}

.tab-panel.active {
	display: block;
}

.tab-panel h2 {
	font-size: 20px;
}

@media screen and (max-width: 799px) {
	.tab-item {
		font-size: var(--font-size_ss);
		padding: 10px 0;
	}
}

/*------------------------------------
パララックス
------------------------------------*/
.parallax-container {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	width: 100%;
	height: 100%;
}

.parallax-inner {
	position: absolute;
	inset: -15% 0 -15% 0;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.parallax-inner>img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}

@media screen and (max-width: 699px) {}

/*------------------------------------
SNSアイコン横並び
------------------------------------*/
.icon-list {
	gap: 25px;
	margin: 25px auto;
}

.icon-list i {
	font-size: 30px;
}

.icon-list img {
	width: 30px;
}

/*------------------------------------
ショップ情報
------------------------------------*/
.shop-info ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.shop-info li {
	width: 100%;
	font-size: var(--font-size_ss);
	padding: 3px 0;
}

.shop-info a {
	font-size: var(--font-size_l);
	font-weight: var(--font-weight_l);
}


/*------------------------------------
テキストアニメーションの改行を防止
------------------------------------*/
.word {
	display: flex;
	margin-right: 1rem;
}


/*------------------------------------ここから共通パーツ------------------------------------*/


/*------------------------------------
共通パーツ・メインロゴ
------------------------------------*/
.logo {}

.logo svg {
	width: 100px;
	fill: var(--color_01);
}

.logo .caption {
	margin-top: 5px;
	font-family: var(--font-family_1);
	font-size: var(--font-size_sss);
}

@media screen and (max-width: 699px) {}

/*------------------------------------
共通パーツ・grandjeteロゴ
------------------------------------*/
.top-logo {
	position: fixed;
	top: 5px;
	left: 30px;
	width: 250px;
}

.top-logo img {
	padding: 20px;
}

@media screen and (max-width: 699px) {
	.top-logo {
		top: 0;
		left: 5px;
		width: 150px;
	}

	.top-logo img {
		padding: 17px;
	}
}

/*------------------------------------
共通パーツ・bg
------------------------------------*/
.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}

.bg img {
	height: 100%;
}

/*------------------------------------
共通パーツ・パンくずリスト
------------------------------------*/
.bread_1 {
	position: absolute;
	top: 0;
	left: 0;
}

.bread_2 {
	position: relative;
}

.breadcrumbs {
	padding: 25px 0;
	text-align: left;
	font-family: var(--font-family_2);
	font-size: var(--font-size_ss);
	color: var(--color_04);
}

.breadcrumbs a {
	font-family: var(--font-family_2);
	font-size: var(--font-size_ss);
	color: var(--color_04);
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

/*------------------------------------
共通パーツ・投稿リスト
------------------------------------*/
.post-card {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
}

.post-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: var(--radius_05);
}

.post-card__image img {
	width: 100%;
	height: 100%;
}

.post-card__header {
	width: 100%;
	justify-content: flex-start;
	align-items: baseline;
	gap: 10px;
	margin-top: 15px;
}

.post-card__header .date {
	font-family: var(--font-family_2);
	font-size: var(--font-size_sss);
	color: var(--color_03);
}

.post-card__header .slug {
	font-family: var(--font-family_2);
	font-size: var(--font-size_sss);
	color: var(--color_03);
	text-transform: uppercase;
}

.post-card__text {
	width: 100%;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.post-card__text .title {
	width: 100%;
	line-height: 0;
}

.post-card__text .title p,
.post-card__text .title a {
	font-family: var(--font-family_1);
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_l);
}

.post-card__text .tag {
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 3px;
	width: 100%;
}

.post-card__text .tag a {
	position: relative;
	padding: 5px 7px;
	font-size: var(--font-size_sss);
	color: var(--color_02);
	line-height: 1.1em;
}

.post-card__text .tag a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background: var(--color_02);
}

.post-card__text .tag a:nth-last-child(1)::after {
	display: none;
}

.post-card__text .text {
	margin-top: 10px;
}

.post-card__text .text p {
	font-size: var(--font-size_sss);
}

@media screen and (max-width: 699px) {
	.post-card {}

	.post-card__text {}

	.post-card__text .category a,
	.post-card__text .category p {
		font-size: var(--font-size_sss);
	}

	.post-card__text .title {}

	.post-card__text .title p,
	.post-card__text .title a {}
}

/*------------------------------------
問い合わせフォーム
------------------------------------*/
.form-pack {
	position: relative;
	padding: 100px 10px;
	background: var(--color_f);
	border: solid 2px var(--color_08);
}

.form-item {
	max-width: 800px;
	margin: auto;
}

#contactForm .cell_2 {
	justify-content: flex-start;
}

#contactForm .cell-wide {
	width: 100%;
}

#contactForm .cell-wide p {
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_m);
}

#contactForm .table_2 .row {
	padding: 20px;
}

#contactForm {
	width: 100%;
}

#contactForm label {
	font-size: var(--font-size_s);
}

#contactForm .form-parts {
	margin-top: 25px;
}

#contactForm .checkbox-area {
	margin-top: 10px;
}

#contactForm .send {
	text-align: center;
}

#contactForm input,
#contactForm textarea,
#contactForm select {
	margin: 5px;
	padding: 0 10px;
	background: var(--color_09);
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
	color: var(--color_05);
}

#contactForm .form-parts input,
#contactForm .form-parts textarea {
	width: 100%;
	margin-bottom: 5px;
	padding: 5px 15px;
	box-shadow: inset 0px 0px 4px var(--color_bs);
}

#contactForm .form-parts select {
	width: auto;
	padding: 5px;
	box-shadow: inset 0px 0px 4px var(--color_bs);
}

#contactForm .form-calender input {
	width: 200px;
}

/* ラジオボタン */
#contactForm .value-radio {
	display: flex;
	flex-wrap: nowrap;
	gap: 25px;
}

#contactForm .value-radio label {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	font-size: var(--font-size_ss);
	white-space: nowrap;
}

#contactForm .value-radio input {
	margin-right: 5px;
	background: none;
	box-shadow: none;
}

/* チェックボックス */
#contactForm .checkbox-area a {
	text-decoration: underline;
	text-underline-offset: 5px;
}

#contactForm .checkbox-area input {
	box-shadow: none;
	width: auto;
	margin-right: 5px;
}

/* 必須マーク */
#contactForm .required-mark {
	color: var(--color_1);
	margin-left: 0.3em;
	font-size: 90%;
}

/* 送信ボタン */
#contactForm .send input {
	width: 250px;
	margin-top: 25px;
	padding: 10px 15px;
	background: var(--color_2);
	box-shadow: none;
	color: var(--color_f);
	border: solid 1px var(--color_2);
	transition: var(--ease_1);
}

#contactForm .send input:hover {
	color: var(--color_2);
	background: var(--color_f);
	box-shadow: none;
}

/* サイズユーティリティ */
#contactForm .size-s {
	width: 50px;
}

#contactForm .size-ms {
	width: 75px;
}

#contactForm .size-m {
	width: 175px;
}

#contactForm .size-l {
	width: 100%;
}

/* selectを100%にしたいならここ（※form-parts selectのwidth:autoより優先される） */
#contactForm select {
	width: 100%;
}

/* ボタン（住所自動入力など） */
#contactForm button {
	padding: 0 10px;
	font-size: var(--font-size_sss);
	color: var(--color_f);
	background: var(--color_05);
	box-shadow: inset -2px -2px 0px var(--color_07);
}

/* セル幅 */
#contactForm .table_2 .cell:nth-child(1) {
	width: 35%;
}

#contactForm .table_2 .cell:nth-child(1) p,
#contactForm .table_2 .cell-wide:nth-child(1) p {
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_l);
}

#contactForm .table_2 .cell:nth-child(1) .attention,
#contactForm .table_2 .cell-wide:nth-child(1) .attention {
	margin-left: 5px;
	font-size: var(--font-size_sss);
	color: red;
}

#contactForm .table_2 .cell:nth-child(2) {
	justify-content: flex-start;
	width: 65%;
}

/*------------------------------------
送信完了後
------------------------------------*/
.thanks-message {}

.thanks-message h3 {}

.thanks-message p:nth-child(2) {
	margin-top: 25px;
}

.thanks-message p:nth-child(3) {
	color: var(--color_1);
}

@media screen and (max-width: 699px) {
	.form-pack {
		padding: 25px 10px;
	}

	#contactForm .table_2 .row {
		flex-wrap: wrap;
	}

	#contactForm label,
	#contactForm select {
		font-size: var(--font-size_ss);
	}

	#contactForm .size-s {
		width: 40px;
	}

	#contactForm .size-ms {
		width: 65px;
	}

	#contactForm .size-m {
		width: 125px;
	}

	#contactForm .size-l {
		width: 100%;
	}

	#contactForm .table_2 .cell:nth-child(1) {
		width: 100%;
	}

	#contactForm .table_2 .cell:nth-child(2) {
		width: 100%;
	}

	#contactForm .table_2 .cell p {
		font-size: var(--font-size_ss);
	}
}

/*------------------------------------
共通パーツ・投稿スライダー
------------------------------------*/
#postslider {
	padding-top: 75px;
}

#postslider .swiper3 {}

#postslider .swiper-wrapper {}

#postslider .swiper-slide {
	width: 100%;
	margin-top: 10px;
}

#postslider .swiper-slide .image-link {
	width: 100%;
	height: 225px;
}

#postslider .swiper-slide img {
	height: 100%;
}

#postslider .swiper-slide .caption {
	margin-top: 5px;
	width: 100%;
}

#postslider .swiper-slide .caption .header {
	justify-content: flex-start;
	gap: 10px;
}

#postslider .swiper-slide .caption .header .date {
	font-size: var(--font-size_sss);
}

#postslider .swiper-slide .caption h3 {
	margin-top: 10px;
	text-align: left;
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_m);
}

#postslider .swiper-slide .caption p {
	margin-top: 0px;
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 699px) {
	#postslider .swiper-slide .image-link {
		height: 200px;
	}

	#postslider .swiper-slide img {
		height: 200px;
	}
}

/*------------------------------------
stycky
------------------------------------*/
.sticky {
	position: sticky;
	top: 0px;
	z-index: 1000;
}

@media screen and (max-width: 699px) {
	.sticky {}
}


/*------------------------------------ここからヘッダーコンテンツ------------------------------------*/


/*------------------------------------
header
------------------------------------*/
#header {
	height: 60px;
	margin-top: 45px;
	margin-bottom: 45px;
}

#header .nav {
	text-align: center;
}

/*メインロゴ*/
#header .header-logo {
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	z-index: 10;
}

#header .header-logo a {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 15px;
}

#header .header-logo h2 {
	display: block;
	font-family: var(--font-family_2);
	font-size: var(--font-size_l);
	letter-spacing: 0.25em;
}

#header .header-logo p {
	display: block;
	font-family: var(--font-family_2);
	font-size: var(--font-size_sss);
	color: var(--color_00);
	letter-spacing: 0.1em;
}

/*白背景*/
.header-bg {
	position: fixed;
	top: -100px;
	right: 0;
	width: 100vw;
	height: 100px;
	background: var(--color_f);
	box-shadow: 0px 3px 5px #00000011;
	z-index: 99;
}

.header-bg a{
	top: 0;
	left: 0;
}

.header-bg img{
	width: 60px;
	height: 60px;
	padding: 7px;
}

@media screen and (max-width: 699px) {
	#header {
		position: fixed;
		top: 0;
		left: 0;
	height: 60px;
	margin-top: 0px;
	margin-bottom: 0px;
}

	#header .header-bg {
		background: none;
	}

	#header .header-bg a {
		display: none;
	}

	#header .header-logo {
		position: absolute;
		top: 15px;
		left: 0px;
	transform: translateY(0%);
	}

	#header .header-logo a {
		align-items: center;
		gap: 0;
		width: 150px;
	}

	#header .header-logo h2 {
	font-size: var(--font-size_m);
}

#header .header-logo p {
	font-size: 0.5rem;
}
}

/*------------------------------------
スマホナビ・コンテンツ
------------------------------------*/
.nav {}

#navi {
	position: fixed;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 600px;
	height: 100vh;
	opacity: 0;
	padding: 150px 75px;
	background: var(--color_3);
	transition: var(--ease_2);
	pointer-events: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 100;
}

#navi .navi-container {
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 50px;
}

/*スマホナビ・メインメニュー*/
#navi .menu {
	width: 100%;
}

#navi .menu .navi-pack {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

#navi .menu .navi-item {
	width: 100%;
	cursor: pointer;
	position: relative;
	text-align: left;
	line-height: 1em;
}

#navi .menu .navi-item {}

#navi .menu .navi-item p {
	position: relative;
	font-family: var(--font-family_2);
	font-size: var(--font-size_ll);
	color: var(--color_01);
	letter-spacing: 0.1em;
}

#navi .menu .navi-item-child {
	justify-content: flex-start;
	gap: 25px;
	margin-top: 10px;
	margin-left: 10px;
}

#navi .menu .navi-item-child li {}

#navi .menu .navi-item-child li p {
	font-size: var(--font-size_s);
}

/*スマホナビ・展開メニュー*/
#navi .menu .submenu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-height: 0;
	padding: 0 30px;
	overflow: hidden;
	transition: all 0.5s ease-out;
}

#navi .menu .submenu.open {
	max-height: 500px;
	padding: 30px;
}

#navi .menu .submenu li {
	width: 100%;
	padding-bottom: 15px;
	border-bottom: none;
}

#navi .menu .submenu a {
	width: 100%;
}

#navi .menu .submenu img {
	width: 30%;
}

#navi .menu .submenu .sub-caption {
	width: 70%;
}

#navi .menu .submenu p {
	position: relative;
	font-family: var(--font-family_1);
	font-size: var(--font-size_l);
	font-weight: var(--font-weight_l);
}

#navi .menu .submenu span {
	font-size: var(--font-size_ss);
}

#navi .menu .sub-toggle {
	position: absolute;
	top: 30px;
	right: 40px;
}

#navi .menu .sub-toggle span {
	background-color: var(--color_00);
	height: 2px;
	position: absolute;
	transition: 0.6s ease-out;
	width: 15px;
}

#navi .menu .sub-toggle span:nth-child(1) {}

#navi .menu .sub-toggle span:nth-child(2) {
	transform: rotate(90deg);
}

#navi .menu-bottom {
	margin-top: 50px;
}

#navi .menu-bottom ul {
	flex-wrap: wrap;
	gap: 15px;
}

#navi .menu-bottom .menu-bottom-item {
	background: var(--color_09);
	width: 100%;
	text-align: center;
}

#navi .menu-bottom a {
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	padding: 15px;
}

#navi .menu-bottom p {
	width: 100%;
	font-family: var(--font-family_1);
	font-size: var(--font-size_mm);
	line-height: 1em;
}

#navi .menu-bottom span {
	width: 100%;
	margin-top: 5px;
	font-size: var(--font-size_sss);
	color: var(--color_04);
	line-height: 1em;
}

@media screen and (max-width: 699px) {
	.nav {
	}

	#navi {
		padding: 75px 50px;
	}

	#navi .navi-container {}

	#navi .contents-list {
		width: calc((100% - 25px) / 2);
	}

	#navi .menu {}

	#navi .menu .navi-pack {
	}

	#navi .menu:nth-child(1) .navi-pack {
		margin-right: 25px;
	}

	#navi .menu:nth-child(1) .navi-item {
	}

	#navi .menu .navi-item {
		width: 100%;
	}

	#navi .menu .navi-item::after {
		display: none;
	}

	#navi .menu .navi-item p {
		font-size: var(--font-size_l);
	}

	#navi .menu .submenu p {
		font-size: var(--font-size_m);
	}

	#navi .menu .sub-toggle {
		top: 33px;
	}

	#navi .menu-bottom {}

	#navi .menu-bottom ul {}

	#navi .menu-bottom .menu-bottom-item {}

	#navi .menu-bottom a {
	}

	#navi .menu-bottom p {
	}

	#navi .menu-bottom span {
	}
}

/*------------------------------------
スマホナビ・ハンバーガーボタン
------------------------------------*/
.hamburger {
	cursor: pointer;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0px;
	right: 30px;
	z-index: 101;
	pointer-events: painted;
}

.hamburger span {
	background: var(--color_01);
	height: 1px;
	left: 17px;
	border-radius: var(--radius_10);
	position: absolute;
	width: 26px;
	transition: all var(--ease_2)
}

.hamburger span:nth-child(1) {
	top: 18px;
}

.hamburger span:nth-child(2) {
	top: 26px;
}

.hamburger span:nth-child(3) {
	top: 34px;
}

.hamburger span:nth-child(4) {
	background: none;
	top: 26px;
	left: 50%;
	width: 0px;
	height: 0px;
	transform: translate(-50%, -50%);
	border: solid 1px var(--color_01);
	border-radius: var(--radius_10);
	opacity: 0;
}

/*メニューオープン時*/
.nav_open #navi {
	right: 0;
	opacity: 1;
	pointer-events: all;
}

.nav_open .hamburger span {
	left: 50%;
	width: 15px;
}

.nav_open .hamburger span:nth-child(1) {
	top: 26px;
	transform: translateX(-50%);
}

.nav_open .hamburger span:nth-child(2) {
	opacity: 0;
	transform: translateX(-50%);
}

.nav_open .hamburger span:nth-child(3) {
	top: 26px;
	transform: translateX(-50%);
}

.nav_open .hamburger span:nth-child(4) {
	width: 40px;
	height: 40px;
	transition: var(--ease_2);
	opacity: 1;
}

.nav_open .overlay {
	opacity: 0.5;
	visibility: visible;
	z-index: 99;
}

/*クローズボタン*/
.navi-close {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color_00);
}

.navi-close i {
	padding-right: 10px;
}

@media screen and (max-width: 699px) {
	.hamburger {
		position: fixed;
		top: 8px;
		right: 0;
	}

	.hamburger p {
		font-size: var(--font-size_ss);
	}
}

/*スマホナビ展開時の背景*/
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	background: var(--color_f);
	cursor: pointer;
	transition: var(--ease_1);
	visibility: hidden;
	z-index: 10;
}

/*------------------------------------
PCナビ
------------------------------------*/
#navi-pc {
	left: 0;
	pointer-events: none;
	z-index: 102;
}

#navi-pc .navi-pc-pack {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 0px;
	list-style-type: none;
}

#navi-pc .navi-pc-item {
	margin: 25px 0px;
	padding: 0 15px;
	position: relative;
	pointer-events: all;
}

#navi-pc .navi-pc-item::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background: var(--color_05);
}

#navi-pc .navi-pc-item:nth-last-child(1)::after {
	display: none;
}

#navi-pc .navi-pc-item a {
	padding: 25px 10px;
	text-decoration: none;
	font-size: var(--font-size_s);
	color: var(--color_01);
	position: relative;
	transition: var(--ease_2);
}

#navi-pc .navi-pc-item a:hover {
	color: var(--color_07);
}

#navi-pc .navi-pc-item i {
	font-size: var(--font-size_ll);
	color: var(--color_01);
	transition: var(--ease_2);
}

#navi-pc .reserve {
	margin: 12px 10px 12px 25px;
	padding: 10px 0px;
}

#navi-pc .reserve a {
	padding: 10px 30px;
	border: var(--border_1);
}

#navi-pc .has-submenu>a::after {
	display: none;
}

#navi-pc .submenu {
	display: none;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	list-style-type: none;
	padding: 5px 0 25px 0;
	margin: 0;
	overflow: hidden;
}

#navi-pc .submenu li {
	margin: 0;
	padding: 5px 10px;
}

#navi-pc .submenu li a {
	padding: 10px;
	margin: auto 20px;
	font-size: var(--font-size_sss);
	white-space: nowrap;
	text-decoration: none;
	color: var(--color_01);
}

#navi-pc .submenu li a::after {
	bottom: -5px !important;
}

#navi-pc .submenu li a:hover {
	color: var(--color_01);
}

#navi-pc .navi-pc-item:hover .submenu {
	display: block;
	max-height: 500px;
	transition: var(--ease_1);
}

@media screen and (max-width: 999px) {
	#navi-pc .navi-pc-pack {
		display: none;
	}
}

/*------------------------------------
フロート問い合わせボタン(SP)
------------------------------------*/
#contact-btn {
	display: none;
	justify-content: center;
	width: 100%;
	position: fixed;
	bottom: -100px;
	right: 0;
	opacity: 0;
	z-index: 50;
}

#contact-btn a {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	height: 50px;
	text-align: center;
	padding: 8px 0px;
	background: var(--color_2);
	border-right: solid 2px var(--color_f);
	text-shadow: var(--shadow_1);
	cursor: pointer;
}

#contact-btn a:nth-last-child(1) {
	background: var(--color_1);
	border-right: none;
}

#contact-btn .reserve {
	width: calc(100% - 50px);
}

#contact-btn .top {
	width: 50px;
}

#contact-btn .top i {
	font-size: var(--font-size_m);
	color: var(--color_f);
}

#contact-btn i {
	font-size: var(--font-size_ss);
}

#contact-btn img {
	width: 60px;
}

#contact-btn p {
	margin-top: 3px;
	font-size: var(--font-size_mm);
	color: var(--color_f);
	font-weight: var(--font-weight_m);
	letter-spacing: 0.2em;
	line-height: 1em;
	text-shadow: 0 0 2px var(--color_bs_2);
}

@media screen and (max-width: 699px) {
	#contact-btn {
		display: flex;
	}
}

/*------------------------------------
フロート問い合わせボタン(PC)
------------------------------------*/
#contact-pc {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 100;
}

#contact-pc a {
	display: flex;
	align-items: center;
	width: 200px;
	padding: 10px 15px;
	color: var(--color_01);
}

#contact-pc a:nth-child(1) {
	background: var(--color_09);
}

#contact-pc a:nth-child(2) {
	background: var(--color_08);
}

#contact-pc i,
#contact-pc img {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	font-size: 25px;
}

#contact-pc img {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}

#contact-pc p {}

/*------------------------------------
トップページ・オープニングアニメーション
------------------------------------*/
#opening {
	position: fixed;
	inset: 0;
	background: var(--color_f);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	pointer-events: auto;
	transform: translateZ(0);
}

#opening.is-hidden {
	opacity: 0;
	pointer-events: none;
	/* 消えたらクリックを透過 */
	transition: opacity 1s ease;
}

.logo svg {
	opacity: 0;
}

.logo svg {
	width: 100px;
}

@media screen and (max-width: 699px) {
}


/*------------------------------------ここからトップページコンテンツ------------------------------------*/


/*------------------------------------
トップページ・イントロダクション
------------------------------------*/
.lording{
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: calc(var(--fixed-vh) - 300px);
	margin-bottom: 150px;
}

.ripple-area {
	position: absolute;
	top: 0;
	left: 0;
  background-image: url(img/image_60.jpg);
  background-size: cover;
  width: 100%;
  height: 100%;
  filter: opacity(0.4) grayscale(0.7) contrast(0.7) brightness(1.2);
}

.lording-bg img{
	width: 100%;
	height: 100%;
}

.lording-copy-name {
		position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: auto;
	z-index: 2;
}

.lording-copy-name svg {
	width: 100%;
	height: 100%;
}

.lording-copy-name text {
}

.lording-copy-name text tspan {
	font-family: var(--font-family_2);
	font-size: 100px;
	font-weight: var(--font-weight_l);
	letter-spacing: 0.2em;
	stroke: var(--color_1);
	stroke-width: 1.5px;
	fill: #00000000;
	text-anchor: middle;
	dominant-baseline: central;
}

.lording-copy-name > svg > use:nth-of-type(1) {
	stroke-width: 2px;
	paint-order: stroke;
	stroke-linejoin: bevel;
}

.lording-copy-name > svg > use:nth-of-type(2) {
	stroke-width: 0;
}

.lording-copy-text {
	margin-top: 5px;
	text-align: center;
	font-family: var(--font-family_2);
	color: var(--color_2);
	font-weight: lighter;
	line-height: 0rem;
	letter-spacing: 0.1em;
}


@media screen and (max-width: 699px) {
		.lording{
			margin-top: 75px;
	height: calc(var(--fixed-vh) - 150px);
	margin-bottom: 75px;
}

.ripple-area {
	height: 100%;
	padding-bottom: 25px;
}

.lording-copy-name text tspan {
	font-size: 75px;
}

.lording-copy-name p {
	font-size: var(--font-size_ss);
}
	}

/*------------------------------------
scroll down
------------------------------------*/
.scrolldown {
	gap: 20px;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%, 75px);
}

.scrolldown p {
	font-family: var(--font-family_2);
	color: var(--color_02);
	letter-spacing: 0.2em;
}

.scrolldown::before {
	content: '';
	position: absolute;
	top: -90px;
	left: 50%;
	width: 1px;
	height: 75px;
	background: var(--color_03);
	transform: translateX(-50%) scaleY(0);
	transform-origin: top;
	animation: scrolldown 2.2s cubic-bezier(.65,0,.35,1) infinite;
}

@keyframes scrolldown {
	0% {
		transform: translateX(-50%) scaleY(0);
		transform-origin: top;
	}
	50% {
		transform: translateX(-50%) scaleY(1);
		transform-origin: top;
	}
	51% {
		transform: translateX(-50%) scaleY(1);
		transform-origin: bottom;
	}
	100% {
		transform: translateX(-50%) scaleY(0);
		transform-origin: bottom;
	}
}

@media screen and (max-width: 699px) {
.scrolldown {
	bottom: 30px;
}

.scrolldown p {
	font-size: var(--font-size_ss);
}

.scrolldown::before {
	top: -50px;
	height: 45px;
}
}

/*------------------------------------
トップページ -mainvisual-
------------------------------------*/
#mainvisual {
	position: relative;
	margin: auto;
	text-align: center;
	overflow-x: hidden;
}

#mainvisual .wrapper-wide{
	position: relative;
}

#mainvisual .main-copy{
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translate(0, -50%);
	z-index: 51;
}

#mainvisual .main-copy p{
	font-size: var(--font-size_l);
	color: var(--color_01);
	font-weight: var(--font-weight_l);
	letter-spacing: 0.1em;
}

#mainvisual .swiper-container {
	position: relative;
	width: 100%;
	margin: auto;
	padding-left: 175px;
}

#mainvisual .swiper1 .swiper-slide{
	overflow: hidden;
}

#mainvisual .swiper1 .swiper-slide img {
	width: 100%;
	height: 650px;
	display: block;
	transform: scale(1.2) translateX(0%);
	transition: transform 8s linear;
	filter: contrast(0.8) brightness(1.2);
}

#mainvisual .swiper1 .swiper-slide-active img{
	transform: scale(1.2) translateX(-5%);
}

@media screen and (max-width: 699px) {
	#mainvisual {
	}

	#mainvisual .main-copy{
		left: 20px;
		transform: translate(0, -50%);
	}

	#mainvisual .main-copy h1{
		font-size: var(--font-size_m);
	}

	#mainvisual .main-copy p{
		font-size: var(--font-size_mm);
	}

	#mainvisual .swiper-container {
		padding-left: 75px;
	}

	#mainvisual .swiper1 .swiper-slide img {
		height: 300px;
	}

	#mainvisual .swiper1 .swiper-slide-active img{
		transform: scale(1.2) translateX(-8%);
	}
}

/*------------------------------------
トップページ・greeting
------------------------------------*/
#greeting {
	position: relative;
}

#greeting::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background: var(--color_5);
}

#greeting .grid-pack {
}

#greeting .grid-item {}

#greeting .grid-item:nth-child(1) {
	grid-column: 4 / span 3;
	grid-row: 2 / span 3;
	z-index: 2;
	box-shadow: var(--shadow_1);
}

#greeting .grid-item:nth-child(2) {
	grid-column: 1 / span 3;
	grid-row: 1 / span 3;
	z-index: 1;
}

#greeting .grid-item:nth-child(3) {
	grid-column: 2 / span 3;
	grid-row: 4 / span 3;
	padding-bottom: 10px;
	z-index: 1;
}

@media screen and (max-width: 699px) {
	#greeting {}

	#greeting .grid-pack {
		gap: 25px;
	}

	#greeting .grid-item:nth-child(1) {
	}

	#greeting .grid-item:nth-child(2),
	#greeting .grid-item:nth-child(3) {
		height: 250px;
		padding: 0;
	}

	#greeting .grid-item img {
		height: 100%;
	}
	
}

/*------------------------------------
トップページ・salon
------------------------------------*/
#salon {
}

#salon .salon-parts {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: auto;
	z-index: -1;
}

#salon .salon-parts img {
	filter: grayscale(0.5) opacity(0.2);
}

#salon .flex-pack {
}

#salon .flex-item {
}

#salon .flex-item:nth-child(1) {
	width: calc(35% - 25px);
}

#salon .flex-item:nth-child(2) {
	flex-wrap: wrap;
	gap: 50px;
	width: calc(65% - 25px);
}

#salon .salon-item {
	width: calc((100% - 50px) / 2);
}

#salon .salon-item .image {
}

#salon .salon-item .image img {
	height: 250px;
}

#salon .salon-item .inner {
	margin-top: 25px;
}

#salon .salon-item .inner h3 span {
	margin-left: 10px;
	font-size: var(--font-size_ss);
}

#salon .salon-item .inner .table_2 .cell:nth-child(1) {
	width: 75px;
}

#salon .salon-item .inner .table_2 .cell:nth-child(2) {
	width: calc(100% - 75px);
}

#salon .salon-item .inner .table_2 .cell:nth-child(2) p {
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 699px) {
	#salon {
}

#salon .salon-parts {
}

#salon .salon-parts img {
}

#salon .flex-pack {
	gap: 0;
}

#salon .flex-item {
}

#salon .flex-item:nth-child(1) {
	width: 100%;
}

#salon .flex-item:nth-child(2) {
	gap: 50px;
	width: 100%;
}

#salon .salon-item {
	width: 100%;
}

#salon .salon-item .image {
}

#salon .salon-item .image img {
	height: 200px;
}

#salon .salon-item .inner {
}

#salon .salon-item .inner .table_2 .cell:nth-child(1) {
}

#salon .salon-item .inner .table_2 .cell:nth-child(2) {
}
}

/*------------------------------------
トップページ・update
------------------------------------*/
#update {
}

#update::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background: var(--color_5);
	z-index: -1;
}

#update .flex-pack {
	align-items: stretch;
	gap: 100px;
}

#update .flex-item {
	width: calc((100% - 100px) / 2);
}

#update .flex-item:nth-child(1) {
}

#update .flex-item:nth-child(1) .post-card__image {
	aspect-ratio: 16 / 7;
}

#update .flex-item:nth-child(2) {
}

#update .update-pack {
	flex-wrap: wrap;
	gap: 0;
	height: auto;
}

#update .update-item {
	justify-content: flex-start;
	gap: 25px;
	padding: 20px 0;
	width: 100%;
	border-top: var(--border_2);
	transition: var(--ease_1);
	background: none;
}

#update .update-item:nth-last-child(1) {
	border-bottom: var(--border_2);
}

#update .update-item:hover {
	background: var(--color_bs_1);
}

#update .btn_5 {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media screen and (max-width: 699px) {
	#update {
}

#update .update-parts {
}

#update .update-parts p {
	font-size: var(--font-size_sss);
}

#update .flex-pack {
	gap: 75px;
}

#update .flex-item {
}

#update .flex-item:nth-child(1) {
	width: 100%;
}

#update .flex-item:nth-child(2) {
	width: 100%;
}

#update .update-pack {
	padding-bottom: 75px;
}
}

/*------------------------------------
トップページ・access
------------------------------------*/
#access {}

#access .flex-pack {}

#access .flex-item {
	width: calc(50% - 25px);
}

#access .flex-item:nth-child(1) {
	aspect-ratio: 16 / 9;
}

@media screen and (max-width: 699px) {
	#access {}

	#access .flex-pack {}

	#access .flex-item {
		width: 100%;
	}

	#access .flex-item:nth-child(1) {
		aspect-ratio: 16 / 9;
	}
}

/*------------------------------------
トップページ・instagram
------------------------------------*/
#instagram {
}

#instagram .instagram-parts {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: auto;
	z-index: -1;
}

#instagram .instagram-parts img {
	filter: grayscale(0.5);
}

#instagram .flex-pack {
	gap: 0;
}

#instagram .flex-item {

}

#instagram .flex-item:nth-child(1) {
	width: 35%;
}

#instagram .flex-item:nth-child(1) .inner {
	display: inline-block;
	margin-left: 0;
	z-index: 1;
}

#instagram .flex-item:nth-child(1) .inner p:nth-child(2) {
	margin-top: 25px;
}

#instagram .flex-item:nth-child(1) .inner p:nth-child(3) {
	justify-content: flex-start;
	margin-top: 25px;
	font-size: var(--font-size_mm);
	line-height: 1em;
}

#instagram .flex-item:nth-child(1) .inner i {
	margin-left: 15px;
	font-size: var(--font-size_l);
	line-height: 1em;
}

#instagram .flex-item:nth-child(2) {
	width: 65%;
}

#instagram .media-pack {
	flex-wrap: wrap;
	gap: 10px;
}

#instagram .media-item {
	position: relative;
	width: calc((100% - 50px) / 3);
	aspect-ratio: 1 / 1;
}

#instagram .media-item img {
	height: 100%;
	transition: var(--ease_1);
}

#instagram .media-item:hover img,
#instagram .media-item:hover video {
	filter: brightness(0.5);
}

#instagram .media-item .instagram-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	color: rgba(255, 255, 255, 0);
	transition: var(--ease_1);
	pointer-events: none;
}

#instagram .media-item:hover .instagram-icon {
	color: var(--color_f);
}

@media screen and (max-width: 699px) {
	#instagram {
}

#instagram .instagram-parts {
	top: 150px;
	transform: translateY(0%);
}

#instagram .instagram-parts img {
}

#instagram .flex-pack {
	gap: 50px;
}

#instagram .flex-item {

}

#instagram .flex-item:nth-child(1) {
	width: 100%;
}

#instagram .flex-item:nth-child(1) .inner {
	margin-left: 0;
}

#instagram .flex-item:nth-child(1) .inner p:nth-child(2) {
	margin-top: 0;
}

#instagram .flex-item:nth-child(1) .inner p:nth-child(3) {
}

#instagram .flex-item:nth-child(1) .inner i {
}

#instagram .flex-item:nth-child(2) {
	width: 100%;
}

#instagram .media-pack {
	gap: 5px;
}

#instagram .media-item {
	width: calc((100% - 10px) / 3);
}

#instagram .media-item img {
}

#instagram .media-item:hover img,
#instagram .media-item:hover video {
}

#instagram .media-item .instagram-icon {
}

#instagram .media-item:hover .instagram-icon {
}
}


/*------------------------------------ここから下層ページコンテンツ------------------------------------*/


/*------------------------------------
下層ページ用メインビジュアル
------------------------------------*/
#subvisual_1 {
	position: relative;
  background-image: radial-gradient(circle, var(--color_08) 1.5px, transparent 1.5px), radial-gradient(circle, var(--color_08) 1.5px, transparent 1.5px);
  background-position: 0 0, 2.5px 5px;
  background-size: 5px 10px;
	background-repeat: repeat;
}

#subvisual_1 .bg img {
	opacity: 0.5;
}

#subvisual_1 .wrapper {
	position: relative;
	height: 350px;
}

#subvisual_1 .sv-text {
		position: absolute;
	bottom: -17px;
	left: 0;
	height: auto;
	z-index: 2;
}

#subvisual_1 .sv-text p {
	margin-bottom: 25px;
	font-size: var(--font-size_mm);
	color: var(--color_01);
}

#subvisual_1 .sv-text h1 {
	font-family: var(--font-family_2);
	color: var(--color_01);
		font-size: 65px;
		letter-spacing: 0.2em;
}


@media screen and (max-width: 699px) {
#subvisual_1 {
	margin-top: 75px;
}

#subvisual_1 .bg img {
}

#subvisual_1 .wrapper {
	height: 250px;
}

#subvisual_1 .sv-text {
		position: absolute;
	bottom: -17px;
	left: 20px;
	height: auto;
	z-index: 2;
}

#subvisual_1 .sv-text p {
	margin-bottom: 15px;
}

#subvisual_1 .sv-text h1 {
		font-size: 45px;
}
}


/*------------------------------------下層ページ・店舗ページ------------------------------------*/


/*------------------------------------
salon-logo
------------------------------------*/
.salon-logo {
	position: fixed;
	top: 0;
	left: 0;
	width: 150px;
	aspect-ratio: 1 / 1;
	z-index: 1;
}

.salon-logo img {
	width: 80px;
}

@media screen and (max-width: 699px) {
	.salon-logo {
		width: 100px;
	}

	.salon-logo img {
		width: 50px;
	}
}

/*------------------------------------
salon-about
------------------------------------*/
#salon-about {
}

#salon-about::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	background: var(--color_5);
	z-index: -1;
}

/*aboutレイアウト*/
#salon-about .grid-item:nth-child(1) {
	position: relative;
	grid-column: 1 / span 4;
	grid-row: 2 / span 4;
	z-index: 1;
}

#salon-about .grid-item:nth-child(1) h2 span {
	margin-left: 10px;
	font-size: var(--font-size_mm);
}

#salon-about .table_2 .cell:nth-child(1) {
	width: 20%;
}

#salon-about .table_2 .cell:nth-child(2) {
	width: 80%;
}

#salon-about .grid-item:nth-child(2) {
	grid-column: 3 / span 5;
	grid-row: 1 / span 4;
}

#salon-about .grid-item:nth-child(3) {
	grid-column: 4 / span 4;
	grid-row: 6 / span 3;
	z-index: 1;
}

#salon-about .grid-item:nth-child(3) iframe {
	width: 100%;
	height: 100%;
}

#salon-about .grid-item:nth-child(3) p {
	margin-top: 10px;
}

#salon-about .grid-item:nth-child(4) {
	grid-column: 1 / span 3;
	grid-row: 7 / span 7;
	z-index: 1;
}


@media screen and (max-width: 699px) {
	#salon-about {
}

	#salon-about .grid-item:nth-child(2),
	#salon-about .grid-item:nth-child(4) {
		height: 250px;
	}
}

/*------------------------------------
salon-access
------------------------------------*/
#access {}

#access .flex-pack {}

#access .flex-item {
	width: calc(50% - 25px);
}

#access .flex-item:nth-child(1) {
	aspect-ratio: 16 / 9;
}

@media screen and (max-width: 699px) {
	#access {}

	#access .flex-pack {}

	#access .flex-item {
		width: 100%;
	}

	#access .flex-item:nth-child(1) {
		aspect-ratio: 16 / 9;
	}
}

/*------------------------------------
salon-staff
------------------------------------*/
#staff {}

#staff .flex-pack {
	gap: 50px;
}

#staff .flex-item {}

#staff .flex-item:nth-child(1) {
	width: calc(31% - 37.5px);
}

#staff .flex-item:nth-child(2),
#staff .flex-item:nth-child(3),
#staff .flex-item:nth-child(4) {
	width: calc(23% - 37.5px);
}


#staff .staff-item {}

#staff .staff-item img {
	aspect-ratio: 4 / 5;
}

#staff .staff-item p {
	margin-top: 15px;
	font-size: var(--font-size_mm);
	line-height: 1.1em;
}

#staff .staff-item p span {
	font-size: var(--font-size_sss);
	color: var(--color_03);
}

@media screen and (max-width: 699px) {
	#staff .flex-pack {
		flex-wrap: wrap;
		gap: 25px;
	}

	#staff .flex-item {}

	#staff .flex-item:nth-child(1) {
		width: calc(50% - 12.5px);
	}

	#staff .flex-item:nth-child(2),
	#staff .flex-item:nth-child(3),
	#staff .flex-item:nth-child(4) {
		width: calc(50% - 12.5px);
	}
}

/*------------------------------------
salon-gallery
------------------------------------*/
#salon-gallery {
}

#salon-gallery .swiper5 {
	position: relative;
	overflow: hidden;
	margin: 50px calc(50% - 50vw) 0;
	width: 100vw;
	transform: translateY(-50px);
	z-index: 3;
}

#salon-gallery .swiper5 .swiper-wrapper {
	transition-timing-function: linear;
	display: flex;
	height: 500px;
}

#salon-gallery .swiper5 .swiper-slide {}

#salon-gallery .swiper5 .swiper-slide[data-index="1"] {
	width: 500px;
	height: 400px;
	margin-top: 100px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="2"] {
	width: 300px;
	height: 300px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="3"] {
	width: 500px;
	height: 350px;
	margin-top: 75px;
	margin-bottom: 75px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="4"] {
	width: 250px;
	height: 250px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="5"] {
	width: 300px;
	height: 400px;
	margin-top: 100px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="6"] {
	width: 500px;
	height: 350px;
	margin-top: 75px;
	margin-bottom: 75px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="7"] {
	width: 250px;
	height: 350px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="8"] {
	width: 450px;
	height: 300px;
	margin-top: 100px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="9"] {
	width: 250px;
	height: 300px;
	margin-top: 200px;
}

#salon-gallery .swiper5 .swiper-slide[data-index="10"] {
	width: 500px;
	height: 350px;
	margin-top: 75px;
	margin-bottom: 75px;
}

#salon-gallery .swiper5 .swiper-slide img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 699px) {
	#salon-gallery .swiper5 {
		margin-top: 0px;
	}

	#salon-gallery .swiper5 .swiper-wrapper {
		height: 250px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="1"] {
		width: 250px;
		height: 200px;
		margin-top: 50px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="2"] {
		width: 150px;
		height: 150px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="3"] {
		width: 250px;
		height: 200px;
		margin-top: 25px;
		margin-bottom: 25px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="4"] {
		width: 150px;
		height: 150px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="5"] {
		width: 150px;
		height: 200px;
		margin-top: 50px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="6"] {
		width: 200px;
		height: 150px;
		margin-top: 50px;
		margin-bottom: 50px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="7"] {
		width: 150px;
		height: 200px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="8"] {
		width: 250px;
		height: 150px;
		margin-top: 100px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="9"] {
		width: 150px;
		height: 200px;
		margin-top: 50px;
	}

	#salon-gallery .swiper5 .swiper-slide[data-index="10"] {
		width: 150px;
		height: 100px;
		margin-top: 75px;
		margin-bottom: 75px;
	}

	#salon-gallery .swiper5 .swiper-slide img {
		width: 100%;
		height: 100%;
	}
}


/*------------------------------------下層ページ・コンテンツ------------------------------------*/


/*------------------------------------
about_1
------------------------------------*/
#about_1 {}

#about_1 .about_1-parts {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: auto;
	z-index: -1;
}

#about_1 .about_1-parts img {
	filter: grayscale(0.5);
}

#about_1 .about_1__pack {
	flex-wrap: wrap-reverse;
	gap: 100px;
}

#about_1 .about_1__item {
}

#about_1 .about_1__item:nth-child(1) {
	width: calc(50% - 50px);
}

#about_1 .about_1__item:nth-child(2) {
	flex-wrap: wrap;
	gap: 50px;
	width: calc(50% - 50px);
}

#about_1 .about_1__item:nth-child(2) img {
	width: 80%;
	aspect-ratio: 2 / 3;
	margin-left: auto;
	margin-right: 0;
}

#about_1 .about_1__item:nth-child(2) img {
	
}


@media screen and (max-width: 699px) {
	#about_1 {
	}

	#about_1 .about_1__pack {
	justify-content: flex-end;
	gap: 25px;
}

	#about_1 .about_1__item:nth-child(1) {
	width: 100%;
}

#about_1 .about_1__item:nth-child(2) {
	width: 100%;
}

#about_1 .about_1__item:nth-child(2) img {
	aspect-ratio: 3 / 2;
}
}

#about_2 {}

#about_2 .about_2-parts {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: auto;
	z-index: -1;
}

#about_2 .about_2-parts img {
	filter: grayscale(0.5);
}

#about_2 .about_2__pack {
	flex-wrap: wrap;
	gap: 100px;
}

#about_2 .about_2__item {
}

#about_2 .about_2__item:nth-child(2) {
	width: calc(50% - 50px);
}

#about_2 .about_2__item:nth-child(1) {
	flex-wrap: wrap;
	gap: 50px;
	width: calc(50% - 50px);
}

#about_2 .about_2__item:nth-child(1) img {
	width: 80%;
	aspect-ratio: 3 / 2;
}

#about_2 .about_2__item:nth-child(1) img:nth-child(1) {
	margin-left: auto;
	margin-right: 0;
}

#about_2 .about_2__item:nth-child(1) img:nth-child(2) {
	margin-left: 0;
	margin-right: auto;
}

@media screen and (max-width: 699px) {
	#about_2 {
		padding-top: 0px;
	}

	#about_2 .about_2__pack {
	justify-content: flex-end;
	gap: 25px;
}

	#about_2 .about_2__item:nth-child(2) {
	width: 100%;
}

#about_2 .about_2__item:nth-child(1) {
	width: 80%;
}
}

#about_3 {
}

#about_3::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 70%;
	height: 100%;
	background: var(--color_5);
}

#about_3 .flex-pack {
	flex-wrap: wrap;
	align-items: flex-start;
}

#about_3 .flex-item {
	width: calc((100% - 100px) / 3);
}

#about_3 .flex-item .number {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	font-family: var(--font-family_2);
	font-size: var(--font-size_mm);
	color: var(--color_f);
	line-height: 1em;
	background: var(--color_3);
}

#about_3 .flex-item img {
	height: 200px;
}

#about_3 .flex-item .inner {
	margin-top: 25px;
}

#about_3 .flex-item .inner h3 {
	font-size: var(--font-size_s);
	font-weight: var(--font-weight_l);
	line-height: 1.5em;
}

#about_3 .flex-item .inner p {
	margin-top: 15px;
}

@media screen and (max-width: 699px) {
	#about_3 {
}

#about_3::before {
	width: 70%;
	height: 100%;
}

#about_3 .flex-pack {
	align-items: flex-start;
}

#about_3 .flex-item {
	width: 100%;
}

#about_3 .flex-item .number {
	left: 10px;
	transform: translate(0%, -50%);
}

#about_3 .flex-item img {
}

#about_3 .flex-item .inner {
}

#about_3 .flex-item .inner h3 {
}

#about_3 .flex-item .inner p {
}
}

/*------------------------------------
Q&A
------------------------------------*/
#faq {

}

/*------------------------------------
contact
------------------------------------*/
#contact {}


/*------------------------------------
recruit
------------------------------------*/
#recruit_1 {}

#recruit_1 .recruit__pack {
	flex-wrap: wrap;
	gap: 200px;
}

#recruit_1 .recruit__item {
	gap: 100px;
	width: 100%;
}

#recruit_1 .recruit__text {
	width: calc(55% - 50px);
}

#recruit_1 .recruit__image {
	flex-wrap: wrap;
	gap: 100px;
	width: calc(45% - 50px);
}

#recruit_1 .recruit__image_1 img {
	width: 80%;
	aspect-ratio: 3 / 2;
}

#recruit_1 .recruit__image_1 img:nth-child(1) {
	margin-left: auto;
	margin-right: 0;
}

#recruit_1 .recruit__image_1 img:nth-child(2) {
	margin-left: 0;
	margin-right: auto;
}

#recruit_1 .recruit__image_2 img {
	width: 80%;
	aspect-ratio: 3 / 2;
}

#recruit_1 .recruit__image_2 img:nth-child(1) {
	margin-left: 0;
	margin-right: auto;
}

#recruit_1 .recruit__image_2 img:nth-child(2) {
	margin-left: auto;
	margin-right: 0;
}

#recruit_1 .recruit__image_3 img {
	width: 100%;
	aspect-ratio: 2 / 3;
}

#recruit_1 .recruit__item:nth-last-child(1) {
	position: relative;
	flex-wrap: wrap;
	height: calc(var(--fixed-vh) - 300px);
}

#recruit_1 .recruit__item:nth-last-child(1) .title {
	font-size: var(--font-size_m);
}

#recruit_1 .recruit__item:nth-last-child(1) .sub-title {
	font-size: var(--font-size_l);
	font-weight: var(--font-weight_l);
}

#recruit_1 .recruit__item:nth-last-child(1) .caption {
	font-size: var(--font-size_ss);
}

#recruit_1 .parts {
	position: absolute;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

#recruit_1 .parts_1 {
	top: 0;
left: 0;
}

#recruit_1 .parts_2 {
	bottom: 0;
left: 0;
transform: rotate(180deg);
}

@media screen and (max-width: 699px) {
	#recruit_1 {}

#recruit_1 .recruit__pack {
	flex-wrap: wrap;
	gap: 100px;
}

#recruit_1 .recruit__item {
	gap: 25px;
}

#recruit_1 .recruit__text {
	width: 100%;
}

#recruit_1 .recruit__image {
	flex-wrap: wrap;
	gap: 25px;
	width: 100%;
}

#recruit_1 .recruit__image_1 img {
	width: 60%;
}

#recruit_1 .recruit__image_1 img:nth-child(1) {
}

#recruit_1 .recruit__image_1 img:nth-child(2) {
}

#recruit_1 .recruit__item:nth-child(2) {
	flex-wrap: wrap-reverse;
}

#recruit_1 .recruit__image_2 img {
	width: 60%;
}

#recruit_1 .recruit__image_2 img:nth-child(1) {
}

#recruit_1 .recruit__image_2 img:nth-child(2) {
}

#recruit_1 .recruit__image_3 img {
	aspect-ratio: 1 / 1;
}

#recruit_1 .recruit__item:nth-last-child(1) {
	height: auto;
}

#recruit_1 .recruit__item:nth-last-child(1) .title {
	font-size: var(--font-size_s);
}

#recruit_1 .recruit__item:nth-last-child(1) .sub-title {
	font-size: var(--font-size_m);
}

#recruit_1 .recruit__item:nth-last-child(1) .caption {
	font-size: var(--font-size_ss);
}

#recruit_1 .parts {
}

#recruit_1 .parts_1 {
}

#recruit_1 .parts_2 {
}
}

/*------------------------------------
利用規約/プライバシーポリシー共通
------------------------------------*/
#sub-legals {}

#sub-legals .legals-pack {}

#sub-legals .legals-header {}

#sub-legals .legals-header h2 {}

#sub-legals .legals-item {}

#sub-legals .legals-item h3 {}

#sub-legals .legals-header p,
#sub-legals .legals-item p {
	margin: 15px auto 50px auto;
}


/*------------------------------------ここから投稿一覧ページコンテンツ------------------------------------*/


/*------------------------------------
投稿一覧ページ
------------------------------------*/
#post-archive {}

#post-archive .flex-pack {
	flex-wrap: wrap;
}

@media screen and (max-width: 699px) {}

/*------------------------------------
投稿一覧ページ・共通
------------------------------------*/
.post-list {
	gap: 50px;
}

.post-list__image {
	width: calc(40% - 25px);
}

.post-list__image img {
	aspect-ratio: 16 / 9;
}

.post-list__text {
	width: calc(60% - 25px);
}

.post-list__text .flex {
	justify-content: flex-start;
	gap: 10px;
}

.post-list__text .flex .date {}

.post-list__text .flex .category {
	font-size: var(--font-size_ss);
}

.post-list__text .title {
	margin-top: 10px;
	padding-bottom: 5px;
	border-bottom: var(--border_2);
}

.post-list__text .text {
	margin-top: 10px;
	font-size: var(--font-size_ss);
}

@media screen and (max-width: 699px) {
	.post-list {
		flex-wrap: wrap;
		gap: 25px;
	}

	.post-list__image {
		width: 100%;
	}

	.post-list__image img {}

	.post-list__text {
		width: 100%;
	}

	.post-list__text .flex {}

	.post-list__text .flex .date {}

	.post-list__text .flex .category {}

	.post-list__text .title {}

	.post-list__text .text {}
}

/*------------------------------------
投稿一覧・次のページ/前のページ
------------------------------------*/
.pagination {
	text-align: center;
	margin-top: 50px;
}

.pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	list-style: none;
}

.pagination li {
	width: 35px;
	height: 35px;
	background: var(--color_f);
}

.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: var(--ease_1);
}

.pagination .current {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--color_f);
	background: var(--color_01);

}

.pagination li a:hover {
	color: var(--color_f);
	background: var(--color_06);

}

@media screen and (max-width: 699px) {}


/*------------------------------------ここから投稿ページコンテンツ------------------------------------*/


/*------------------------------------
投稿ページ用ヘッダー
------------------------------------*/
#post-header {
	margin-top: 90px;
	padding-bottom: 50px;
}

#post-header .wrapper-wide {}

#post-header .post-header__pack {}

#post-header .post-header__image {}

#post-header .post-header__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 500px;
}

#post-header .post-header__text {
	margin-top: 50px;
}

#post-header .post-header__text .post-meta {
	justify-content: flex-start;
	gap: 10px;
}

#post-header .post-header__text .post-meta .date p {
	font-size: var(--font-size_ss);
	color: var(--color_03);
}

#post-header .post-header__text .post-meta .category p {
	font-size: var(--font-size_ss);
}

#post-header .post-header__text .post-title {
	margin-top: 15px;
}

#post-header .post-header__text .post-title h2 {
	font-family: var(--font-family_2);
	font-size: 35px;
	line-height: 1.3em;
}

#post-header .post-header__text .post-tag {
	justify-content: flex-start;
	gap: 10px;
	margin-top: 25px;
}

#post-header .post-header__text .post-tag a {
	padding: 0 10px;
	font-size: var(--font-size_sss);
	background: var(--color_08);
}

@media screen and (max-width: 699px) {
	#post-header .post-header__image {
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}
}

/*------------------------------------
投稿ページ・メインコンテンツ
------------------------------------*/
#post-container {
	padding-top: 50px;
}

#post-container .post-content {}

#post-container .post-content p {}

@media screen and (max-width: 699px) {
	#post-container {
		padding-top: 35px;
	}
}

.post-main-pack {
	align-items: stretch;
	gap: 75px;
}

.post-main-pack .flex-item:nth-child(1) {
	width: calc(100% - 375px);
}

.post-main-pack .flex-item:nth-child(2) {
	width: 300px;
}

.post-main-content {
	width: 100%;
	margin-bottom: 50px;
}

@media screen and (max-width: 699px) {
	.post-main-pack {
		flex-wrap: wrap;
		gap: 25px;
	}

	.post-main-pack .flex-item:nth-child(1) {
		width: 100%;
	}

	.post-main-content {
		margin-bottom: 25px;
	}

	.post-main-pack .flex-item:nth-child(2) {
		width: 100%;
	}
}

/*------------------------------------
投稿ページ・次のページ/前のページ
------------------------------------*/
#post-navigation {
	padding: 35px 0;
}

#post-navigation .flex-pack {
	justify-content: center;
	gap: 40px;
}

#post-navigation .flex-item {
	text-align: center;
	width: calc((100% - 80px) / 3);
}


#post-navigation .flex-item a {
	font-size: var(--font-size_ss);
	text-decoration: underline;
}

#post-navigation .flex-item a:hover {
	text-decoration: underline;
	color: var(--color_03);
}

@media screen and (max-width: 699px) {
	#post-navigation .flex-pack {
		flex-wrap: nowrap;
		gap: 20px;
	}

	#post-navigation .flex-item {
		width: calc((100% - 40px) / 3);
	}

	#post-navigation .flex-item a {
		font-size: var(--font-size_sss);
	}
}

/*------------------------------------
投稿にcssをあてて見た目を整える
------------------------------------*/
.post-main-content h3 {
	position: relative;
	text-align: left;
	margin: 0 auto 25px auto;
	font-family: var(--font-family_2);
	font-weight: var(--font-weight_m);
	letter-spacing: 0em;
	line-height: 1.5em;
}

.post-main-content h3 {
	font-size: 20px;
	color: var(--color_4);
}

.post-main-content h4 {
	font-family: var(--font-family_1);
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_l);
}

.post-main-content p {
	margin-top: 15px;
	line-height: 2em;
}

@media screen and (max-width: 699px) {
	.post-main-content h3 {
		font-size: 20px;
	}
}


/*------------------------------------ここから共通フッターコンテンツ------------------------------------*/


/*------------------------------------
salon-menu
------------------------------------*/
#salon-menu {}

#salon-menu .menu-parts {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: auto;
	z-index: -1;
}

#salon-menu .flex-pack {
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 35px;
	padding: 100px 50px;
	background: var(--color_f);
}

#salon-menu .flex-item {
	width: calc((100% - 70px) / 3);
	padding: 0 25px;
}

#salon-menu .flex-item:nth-last-child(1) {
	width: 100%;
	margin-top: 25px;
	padding: 35px 50px;
	text-align: center;
	background: var(--color_5);
}

#salon-menu .flex-item:nth-last-child(1) p {
	font-size: var(--font-size_mm);
}

#salon-menu .table_2 .row {
	padding: 0;
	border-bottom: none;
}

#salon-menu .table_2 .cell p {
	font-size: var(--font-size_ss);
}

#salon-menu .table_2 .cell:nth-child(1) {
	width: 80%;
}

#salon-menu .table_2 .cell:nth-child(2) {
	width: 20%;
}

@media screen and (max-width: 699px) {
	#salon-menu {}

	#salon-menu .flex-pack {
		padding: 75px 10px 50px 10px;
	}

	#salon-menu .flex-item {
		width: 100%;
	}

	#salon-menu .table_2 .row {}

	#salon-menu .table_2 .cell p {}

	#salon-menu .table_2 .cell:nth-child(1) {}

	#salon-menu .table_2 .cell:nth-child(2) {}
}


/*------------------------------------
reserve
------------------------------------*/
#reserve {
	padding-top: 0;
}

#reserve .reserve-parts {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

#reserve .reserve-parts h2 {
	font-family: var(--font-family_2);
	font-size: var(--font-size_llll);
	color: var(--color_bs_3);
	line-height: 1em;
}

#reserve .reserve-parts p {
	margin-top: 5px;
	font-size: var(--font-size_mm);
	color: var(--color_bs_3);
	line-height: 1em;
}

#reserve .reserve-parts span {
	margin-left: 10px;
	font-size: var(--font-size_ss);
}

#reserve .wrapper-wide {
	background: var(--color_09);
}

#reserve .flex-pack {
	padding: 100px;
}

#reserve .flex-item {
	flex-wrap: wrap;
	width: 50%;
}

@media screen and (max-width: 699px) {
	#reserve {}

	#reserve .reserve-parts {}

	#reserve .reserve-parts h2 {
		font-size: var(--font-size_lll);
	}

	#reserve .reserve-parts p {}

	#reserve .reserve-parts span {}

	#reserve .wrapper-wide {}

	#reserve .flex-pack {
		gap: 25px;
		padding: 100px 0;
	}

	#reserve .flex-item {
		width: 100%;
	}
}

/*------------------------------------
CTA
------------------------------------*/
#cta_1 {
	z-index: 1;
}

#cta_1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background: var(--color_5);
	z-index: -1;
}

#cta_1 .wrapper-wide {
	padding: 75px 0;
	box-shadow: var(--shadow_1);
}

#cta_1 .flex-pack {
	gap: 100px;
}

#cta_1 .flex-item {
}

#cta_1 .flex-item:nth-child(1) {
	width: calc(50% - 50px);
}

#cta_1 .flex-item:nth-child(1) .btn_4 {
	margin-top: 75px;
}

#cta_1 .flex-item:nth-child(1) .btn_4 a {
	margin-left: 0;
	margin-right: auto;
}

#cta_1 .flex-item:nth-child(2) {
	width: calc(50% - 50px);
}

#cta_1 .flex-item:nth-child(2) .content_2 .title {
	font-size: var(--font-size_lll);
	letter-spacing: 0.3em;
}

#cta_1 .flex-item:nth-child(2) .content_2 .sub-title {
	font-size: var(--font-size_m);
}

#cta_1 .flex-item:nth-child(2) img {
	aspect-ratio: 3 / 2;
}

@media screen and (max-width: 699px) {
	#cta_1 {}

	#cta_1 .flex-pack {
		gap: 50px;
	}

	#cta_1 .flex-item {
	}

	#cta_1 .flex-item:nth-child(1) {
		width: 100%;
	}

	#cta_1 .flex-item:nth-child(1) .btn_4 {
	}

	#cta_1 .flex-item:nth-child(1) .btn_4 a {
	}

	#cta_1 .flex-item:nth-child(2) {
		width: 100%;
	}

	#cta_1 .flex-item:nth-child(2) .content_2 .title {
	font-size: var(--font-size_ll);
}

	#cta_1 .flex-item:nth-child(2) img {
	}
}

/*------------------------------------
footer
------------------------------------*/
#footer {
	position: relative;
	z-index: 1;
	padding-top: 150px;
}

#footer .flex-pack {
	position: relative;
	flex-wrap: wrap;
	gap: 150px 50px;
	padding: 0 0 100px 0;
}

#footer .section-title_1 h2 {
	color: var(--color_3);
	text-shadow: var(--shadow_2);
}

#footer .flex-item {
	text-align: center;
}

#footer .footer__reserve {
	width: 100%;
	padding: 50px 20px;
	background: var(--color_f);
	box-shadow: var(--shadow_1);
}

#footer .footer__reserve h3 {
	font-size: var(--font-size_mm);
	font-weight: var(--font-weight_l);
}

#footer .footer__reserve span {
	font-size: var(--font-size_sss);
	font-weight: var(--font-weight_m);
}

#footer .footer-logo {
	width: calc(50% - 25px);
}

#footer .footer-logo svg {
	width: 150px;
	fill: var(--color_01);
}

#footer .footer__menu {
	width: calc(50% - 25px);
}

#footer .copyright {
	background: var(--color_4);
}

#footer .copyright__pack {
	justify-content: space-between;
	gap: 50px;
	padding: 25px 0;
}

#footer .copyright__item {}

#footer .copyright__item:nth-child(1) {
	gap: 25px;
}

#footer .copyright__item:nth-child(1) a {
	font-size: var(--font-size_sss);
}

#footer .copyright__item:nth-child(2) {}

#footer .copyright__item:nth-child(2) p {
	font-size: var(--font-size_sss);
	color: var(--color_03);
}

@media screen and (max-width: 699px) {
	#footer {
	padding-top: 75px;
}

#footer::before {
	height: calc(100% - 225px);
}

#footer .flex-pack {
	gap: 100px 50px;
}

#footer .flex-item {
}

#footer .footer__reserve {
}

#footer .footer__reserve h3 {
}

#footer .footer__reserve span {
}

#footer .footer-logo {
}

#footer .footer-logo svg {
	width: 100px;
}

#footer .footer__menu {
}

	#footer .copyright__pack {
		flex-wrap: wrap;
		justify-content: center;
		padding: 25px 0;
	}

	#footer .copyright__item {}
}