@charset "utf-8";
/*
Theme Name: loana
*/

/* ---------------------------------------------------------
	色など
----------------------------------------------------------*/
:root {
	--text_color: #000;
	--btn_bg: #323232;
	--btn_text: #fff;
	/* ■見出し用の英字セリフ（Display）フォント */
	--font-heading-english: "Cormorant Garamond", serif;
	/* ■本文用の日本語セリフ（明朝）フォント */
	--font-body-japanese-serif: "Noto Serif JP", serif;
	/* ■本文用の日本語サンセリフ（ゴシック）フォント */
	--font-body-japanese-sans: "Noto Sans JP", sans-serif;

	/* line-heightの上下の余白（ハーフ・レディング）を打ち消す */
	--leading-trim: calc((1em - 1lh) / 2);

	/* フォントサイズ */
	--font-size_8: 0.5rem;
	--font-size_9: 0.5625rem;
	--font-size_10: 0.625rem;
	--font-size_11: 0.6875rem;
	--font-size_12: 0.75rem;
	--font-size_13: 0.8125rem;
	--font-size_14: 0.875rem;
	--font-size_15: 0.9375rem;
	--font-size_16: 1rem;
	--font-size_17: 1.0625rem;
	--font-size_18: 1.125rem;
	--font-size_19: 1.1875rem;
	--font-size_20: 1.25rem;
	--font-size_21: 1.3125rem;
	--font-size_22: 1.375rem;
	--font-size_23: 1.4375rem;
	--font-size_24: 1.5rem;
	--font-size_25: 1.5625rem;
	--font-size_26: 1.625rem;
	--font-size_27: 1.6875rem;
	--font-size_28: 1.75rem;
	--font-size_29: 1.8125rem;
	--font-size_30: 1.875rem;
	--font-size_31: 1.9375rem;
	--font-size_32: 2rem;
	--font-size_33: 2.0625rem;
	--font-size_34: 2.125rem;
	--font-size_35: 2.1875rem;
	--font-size_36: 2.25rem;
	--font-size_37: 2.3125rem;
	--font-size_38: 2.375rem;
	--font-size_39: 2.4375rem;
	--font-size_40: 2.5rem;
	--font-size_41: 2.5625rem;
	--font-size_42: 2.625rem;
	--font-size_43: 2.6875rem;
	--font-size_44: 2.75rem;
	--font-size_45: 2.8125rem;
	--font-size_46: 2.875rem;
	--font-size_47: 2.9375rem;
	--font-size_48: 3rem;
	--font-size_49: 3.0625rem;
	--font-size_50: 3.125rem;
	--font-size_51: 3.1875rem;
	--font-size_52: 3.25rem;
	--font-size_53: 3.3125rem;
	--font-size_54: 3.375rem;
	--font-size_55: 3.4375rem;
	--font-size_56: 3.5rem;
	--font-size_57: 3.5625rem;
	--font-size_58: 3.625rem;
	--font-size_59: 3.6875rem;
	--font-size_60: 3.75rem;
	--font-size_61: 3.8125rem;
	--font-size_62: 3.875rem;
	--font-size_63: 3.9375rem;
	--font-size_64: 4rem;
	--font-size_65: 4.0625rem;
	--font-size_66: 4.125rem;
	--font-size_67: 4.1875rem;
	--font-size_68: 4.25rem;
	--font-size_69: 4.3125rem;
	--font-size_70: 4.375rem;
	--font-size_71: 4.4375rem;
	--font-size_72: 4.5rem;
	--font-size_73: 4.5625rem;
	--font-size_74: 4.625rem;
	--font-size_75: 4.6875rem;
	--font-size_76: 4.75rem;
	--font-size_77: 4.8125rem;
	--font-size_78: 4.875rem;
	--font-size_79: 4.9375rem;
	--font-size_80: 5rem;
}

/* ---------------------------------------------------------
	初期設定
----------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	vertical-align: baseline;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

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

@media screen and (max-width: 480px) {
	html {
		scroll-padding-top: 60px;
	}
}

body {
	font-family: var(--font-body-japanese-sans);
	font-weight: 400;
	font-style: normal;
	max-width: 2000px;
	background: #fff;
	color: var(--text_color);
	margin: auto;
	overflow-x: clip;
}

p {
	font-size: clamp(var(--font-size_12), 1.9vw, var(--font-size_16));
	line-height: 2.3;
}

img {
	border: 0px;
	width: 100%;
	max-width: 100%;
	vertical-align: bottom;
}

.loana a {
	text-decoration: none;
	transition: all .2s;
	color: var(--text_color);
}

@media (hover: hover) and (pointer: fine) {
	a:hover {
		opacity: .7;
	}
}

/* タッチ環境では hover 効果をキャンセル */
@media (hover: none) {
	a:hover {
		opacity: 1;
	}
}


/* ---------------------------------------------------------
	共通レイアウト
----------------------------------------------------------*/
.contents_wrap {
	margin: 0 auto;
	max-width: 1520px;
	padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 80px);
}

/* --- 横並び（2つ50%） --- */
.flex_col2 {
	display: flex;
	align-items: center;
}

/* 位置を反転させる */
.flex_col2.reverse {
	flex-direction: row-reverse;
}

.flex_col2_item {
	flex: 1 1 50%;
}

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

	.flex_col2,
	.flex_col2.reverse {
		flex-direction: column;
		gap: 30px;
	}
}


/* --- 横並び（3つ） --- */
.flex_col3 {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.flex_col3_item {
	flex: 0 0 32%;
}

@media screen and (max-width: 850px) {
	.flex_col3 {
		flex-direction: column;
		gap: 40px;
	}

	.flex_col3_item {
		flex: 0 0 100%;
	}
}


/* ---------------------------------------------------------
	便利な共通CSS
----------------------------------------------------------*/
.serif {
	font-family: "Noto Serif JP", serif;
}

.serif_bold {
	font-family: "Noto Serif JP", serif;
	font-weight: bold;
}

.text_medium {
	font-size: clamp(3.5rem, 2vw, 1.5rem);
}

/* --- ディスプレイサイズで表示・非表示を切り分ける --- */
/* 基本は全部隠す */
.sp_only,
.sp_tablet_only,
.tablet_pc_only,
.pc_only {
	display: none;
}

/* 〜480px：スマホ */
@media (max-width: 480px) {
	.sp_only {
		display: block;
	}

	.sp_tablet_only {
		display: block;
	}
}

/* 481～850px：タブレット */
@media (min-width: 481px) and (max-width: 850px) {
	.sp_tablet_only {
		display: block;
	}

	.tablet_pc_only {
		display: block;
	}
}

/* 851px〜：PC */
@media (min-width: 851px) {
	.tablet_pc_only {
		display: block;
	}

	.pc_only {
		display: block;
	}
}


/* ---------------------------------------------------------
	汎用パーツ
----------------------------------------------------------*/
/* --- セクションタイトル関連 --- */
.section_title_group.center {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.section_title_group .section_title:first-child {
	margin-bottom: 10px;
}

.section_title_group.medium .section_title {
	margin-bottom: 10px;
}

.section_title_group.medium .section_title:last-child {
	margin-bottom: 30px;
}

.section_title {
	margin-block: var(--leading-trim);
	margin-bottom: clamp(40px, 1.6vw, 30px);
	font-family: var(--font-heading-english);
	font-weight: 900;
	font-size: clamp(var(--font-size_30), 4vw, var(--font-size_57));
	letter-spacing: .1em;
	line-height: 1.4;
}

.section_title.medium {
	font-size: clamp(var(--font-size_22), 2.5vw, var(--font-size_38));
	font-weight: 600;
}

.section_title.small {
	font-size: clamp(var(--font-size_16), 1.25vw, var(--font-size_24));
}

.section_title.center {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

/* --- ボタン --- */
.loana .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--btn_bg);
	color: var(--btn_text);
	font-size: clamp(var(--font-size_14), 1.5vw, var(--font-size_18));
	font-family: var(--font-heading-english);
	letter-spacing: .1em;
	width: 100%;
	max-width: clamp(220px, 20vw, 380px);
	padding: 1.1em 1em;
	position: relative;
	transition: background .2s;
	text-align: center;
}

/* ボタンを中央に配置する */
.btn.center {
	margin: 0 auto;
}

/* ボタン背景色と文字色を反転する */
.btn.color_reverse {
	background-color: var(--btn_text);
	color: var(--btn_bg);
}

/* 背景透明ボタンにする */
.btn.color_tranceparent {
	background-color: unset;
	color: var(--text_color);
	border: 2px solid var(--text_color);
}

/* --- 円形ボタン --- */
.loana .circlel_btn {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: clamp(105px, 14vw, 210px);
	height: clamp(105px, 14vw, 210px);
	color: var(--btn_text);
	border: 1px solid #747474;
	border-radius: 50%;
	background-color: var(--btn_bg);
	background-repeat: no-repeat;
	background-size: contain;
	font-size: clamp(var(--font-size_10), 1vw, var(--font-size_19));
}

.circlel_btn.circlel_btn_decoration {
	background-image: url("images/top/circle_btn_decoration.webp");
	border: unset;
}

.circlel_btn span {
	margin-bottom: 5px;
	font-family: var(--font-heading-english);
	font-size: clamp(var(--font-size_14), 1.57vw, var(--font-size_24));
	letter-spacing: .1em;
}

/* ハサミアイコン（FontAwesome）を円形ボタン用に調整 */
.circlel_btn::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: clamp(var(--font-size_12), 1vw, var(--font-size_20));
	margin-bottom: clamp(0, 1vw, 10px);
}

/* --- アイコン付きテキスト（テキストの前にアイコン） --- */
.before_icon::before {
	position: absolute;
	top: 50%;
	left: 30px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	transform: translateY(-50%);
}

/* --- アイコン付きテキスト（テキストの後ろにアイコン） --- */
.after_icon {
	position: relative;
}

.after_icon::before {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

/* ハサミのアイコン */
.scissors::before {
	content: "\f0c4";
	transform: translateY(-50%) rotate(90deg);
}

/* 右向き矢印アイコン */
.arrow_right::before {
	content: "\f105";
}

/* 左向き矢印アイコン */
.arrow_left::before {
	content: "\f053";
}

/* ウィンドウアイコン（別タブで開くという意味） */
.window::before {
	font-weight: 400;
	/* Regularは400、Solidは900 */
	content: "\f2d2";
	font-size: .9em;
}


/* --- ドット付きリスト --- */
.dots_list .dots_item {
	position: relative;
	margin-bottom: 6px;
	padding-left: 1.2em;
	list-style: none;
}

.dots_list .dots_item::before {
	content: "・";
	position: absolute;
	left: 0;
	color: inherit;
	font-size: var(--font-size_16);
	line-height: 1.5;
}


/* --- メディア（テキストと画像のブロック） --- */
.media {
	margin: 0 auto;
	max-width: 1520px;
	gap: clamp(20px, 4vw, 60px);
}

.media .media_body {
	flex: 1;
}

.media .media_img {
	flex: 0 0 50%;
}

.media .media_img img {
	height: 100%;
	object-fit: cover;
}

/* 各セクションの画像アスペクト比を指定 */
.menu .media_img {
	aspect-ratio: 1920 / 1334;
}

.recruit .media_img {
	aspect-ratio: 1720 / 1146;
}


/* --- インデント --- */
.indent {
	display: inline-block;
	padding-left: 1em;
	text-indent: -1em;
}

.indentbefore {
	display: inline-block;
	padding-left: 1em;
	position: relative;
}

.indentbefore:before {
	display: inline-block;
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}

/* --- バブルの装飾 --- */
.bubble {
	position: relative;
}

.bubble::before {
	content: "";
	background-image: url(images/top/bubble_tilt_right.webp);
	position: absolute;
	left: -3%;
	top: -10%;
	width: clamp(120px, 20vw, 320px);
	height: clamp(120px, 20vw, 320px);
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
}

.bubble.bubble_tilt_left::before {
	background-image: url(images/top/bubble_tilt_left.webp);
}


/* ---------------------------------------------------------
	ヘッダー
----------------------------------------------------------*/
.header {
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	position: sticky;
	top: 0;
	z-index: 1200;
	transition: background-color .3s ease, backdrop-filter .3s ease;
}

.header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 18px 36px;
	transition: padding .3s ease;
}

/* --- ロゴ --- */
.logo_wrap {
	z-index: 1100;
	width: clamp(70px, 12vw, 130px);
	transition: width .3s ease;
}

/* --- グローバルナビ --- */
.gnav {
	display: flex;
	justify-content: space-between;
	gap: 2.5vw;
}

.gnav .btn {
	padding: .7em 1.1em .7em clamp(30px, 2.5vw, 48px);
	max-width: clamp(200px, 20vw, 380px);
	color: #fff;
	font-size: clamp(var(--font-size_12), 2vw, var(--font-size_16));
	transition: font-size .3s ease, padding .3s ease;
}

.gnav_toggle {
	display: none;
	position: absolute;
	top: 50%;
	right: 1em;
	background: none;
	border: none;
	color: var(--text_color);
	font-size: clamp(var(--font-size_20), 4vw, var(--font-size_32));
	transform: translateY(-50%);
	z-index: 1100;
}

.gnav_list {
	display: flex;
	align-items: center;
	gap: 2.5vw;
}

.gnav_list .gnav_link {
	color: var(--text_color);
	font-family: var(--font-heading-english);
	font-weight: bold;
	font-size: clamp(var(--font-size_14), 2vw, var(--font-size_16));
	letter-spacing: 0.1em;
	transition: color 0.2s;
}

.gnav_link--nowrap {
	white-space: nowrap;
}

.gnav_list .gnav_link:hover {
	color: #bfa77a;
}

.gnav .before_icon::before {
	left: clamp(12px, 1vw, 15px);
	font-size: clamp(var(--font-size_8), .7vw, var(--font-size_16));

}

/* --- MV通過後にヘッダーを少し小さくする --- */
@media (min-width: 851px) {
	.header.scrolled .header_inner {
		padding: 10px 24px;
	}

	.header.scrolled .logo_wrap {
		width: clamp(60px, 9vw, 110px);
	}

	.header.scrolled .gnav .btn {
		padding: .5em 1em .5em clamp(28px, 2vw, 44px);
	}
}

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

	/* --- グローバルナビ --- */
	.gnav .btn {
		margin-right: clamp(20px, 7vw, 50px);
	}

	/* ハンバーガーボタンを表示 */
	.gnav_toggle {
		display: block;
		cursor: pointer;
	}

	.gnav_toggle i {
		transition: transform .3s ease, color .3s ease;
	}

	/* open 状態で回転＆色変更 */
	.gnav_toggle.open i {
		transform: rotate(90deg);
		color: var(--btn_bg);
	}

	/* ▼ ハンバーガーメニュー（閉じている初期状態）*/
	.gnav_list {
		/* 位置を fixed にして全画面を覆う */
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		background: #fff;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transform-origin: top;
		transform: scaleY(0);
		opacity: 0;
		transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1),
			opacity .45s ease;
	}

	/* ▼ open クラス時（展開後）*/
	.gnav_list.open {
		transform: scaleY(1);
		opacity: 1;
	}

	.gnav_list .gnav_link {
		display: block;
		padding: 1rem 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	.header_inner {
		padding: 10px 12px;
	}

	/* --- グローバルナビ --- */
	.gnav .btn {
		margin-right: 50px;
	}
}

/* ---------------------------------------------------------
	メインビジュアル
----------------------------------------------------------*/
/* MV 全画面レイアウト */
.mv {
	position: relative;
	width: 100%;
	height: clamp(550px, 58vw, 88vh);
	max-height: 1000px;
	overflow: hidden;
}

/* MV下部のお花の画像 */
.mv::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: clamp(180px, 16vw, 260px);
	background: url("images/top/flower_right_top.webp") no-repeat left bottom;
	background-size: contain;
	pointer-events: none;
	z-index: 2;
}

.mv_swiper,
.mv_swiper .swiper-wrapper,
.mv_swiper .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
}

/* MV上部のラインの装飾画像 */
.mv_swiper .swiper-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 40vw;
	height: 16vw;
	background: url("images/top/line_decoration.webp") no-repeat bottom;
	background-size: cover;
	pointer-events: none;
	z-index: 2;
}

/* スライドさせる画像 */
.mv_swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv_title {
	position: absolute;
	left: 3vw;
	bottom: 8%;
	top: auto;
	transform: none;
	text-align: left;
	color: var(--text_color);
	z-index: 3;
	font-family: var(--font-body-japanese-serif);
	font-weight: 600;
	font-size: clamp(var(--font-size_16), 2vw, var(--font-size_30));
	line-height: 1.8;
	letter-spacing: .1em;
	margin-bottom: 20px;
}

/* ページネーションの位置調整 */
.mv .swiper-pagination {
	display: flex;
	position: absolute;
	bottom: 3% !important;
	left: 3vw !important;
	width: auto;
	z-index: 4;
}

.mv .swiper-pagination-bullet {
	width: clamp(1.8em, 2.1vw, 30px);
	height: clamp(1.8em, 2.1vw, 30px);
	background-color: #fff;
	border: 1px solid #b8b8b8;
	border-radius: 50%;
	color: #b8b8b8;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(var(--font-size_10), 1vw, var(--font-size_14));
	transition: background .2s, color .2s;
}

.mv .swiper-pagination-bullet-active {
	background-color: #fff !important;
	border-color: #7d7d7d;
	color: #7d7d7d;
}

/* MV 下部エリア */
.mv_bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 340px;
	pointer-events: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 4vw 40px;
}

/* MV下部の波画像 */
.mv_bottom::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5%;
	width: 100%;
	height: clamp(200px, 21vw, 420px);
	background: url("images/top/mv_bottom_wave.webp");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	pointer-events: none;
	z-index: 1;
}

/* ▼ ボタン & リストを並べるためのレイアウト */
.mv_bottom>* {
	position: relative;
	pointer-events: auto;
	z-index: 3;
}

.mv_bottom .circlel_btn {
	position: absolute;
	bottom: clamp(100px, 17vw, 250px);
	left: 1.5%;
}

.mv .salon_list_small .salon_item .after_icon::before {
    right: 0;
}

@media screen and (max-width: 850px) {
	.mv_bottom .circlel_btn {
		bottom: clamp(100px, 22vw, 150px);
		left: 2.5%;
	}
}

@media screen and (max-width: 600px) {
	.mv_bottom .circlel_btn {
		bottom: clamp(100px, 26vw, 130px);
	}
}

@media screen and (max-width: 480px) {
	.mv_title {
		bottom: 4%;
		line-height: 1.6;
	}

	.mv_bottom::before {
		background: url("images/top/mv_bottom_wave_sp.webp");
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: contain;
	}

	.salon_list_small .salon_item:last-child .salon_link {
		padding-right: 26px;
	}

    .salon_list_small .salon_item:first-child .salon_link {
        padding-right: 26px;
	}
}

/* --- 小さいSALONリスト --- */
.salon_list_small {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	width: clamp(300px, 26vw, 365px);
	background-color: #fff;
}

.salon_list_small .salon_item {
	display: flex;
	padding: 0 20px;
}

.salon_list_small .salon_link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	width: 100%;
	height: 100%;
	padding: 20px 0;
	padding-right: 25px;
	border-bottom: 1.5px solid #dfdfdf;
}

/* 最初の行だけpadding調整 */
.salon_list_small .salon_item:first-child .salon_link {
	padding-bottom: 12px;
}

/* 最終行だけ下線を消す */
.salon_list_small .salon_item:last-child .salon_link {
	padding-top: 12px;
	border-bottom: unset;
}

.salon_list_small .salon_img {
	flex: 0 0 38%;
}

.salon_list_small .salon_text_area {
	flex: 1;
	color: var(--text_color);
}

.salon_list_small .salon_title {
	margin-bottom: 6px;
	display: block;
	font-family: var(--font-heading-english);
	font-size: clamp(var(--font-size_12), 2.2vw, var(--font-size_24));
	letter-spacing: .1em;
	line-height: 1.2;
}

.salon_list_small .salon_text_area p {
	font-size: clamp(var(--font-size_9), 1.6vw, var(--font-size_14));
	line-height: 1.4;
}

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

	/* salon_list_small を2カラムで横いっぱいに */
	.salon_list_small {
		position: static;
		width: 100%;
		display: flex;
		flex-wrap: nowrap;
		gap: unset;
		padding: unset;
	}

	.salon_list_small .salon_item {
		flex: 1 1 calc(50% - 6px);
		padding: unset;
		border-right: 0.5px solid #dfdfdf;
		border-bottom: none;
	}

	/* 最終行だけ右線を消す */
	.salon_list_small .salon_item:last-child {
		border-right: unset;
	}

	.salon_list_small .salon_link {
		padding: 10px;
		padding-right: 36px;
		gap: 5%;
	}

	.after_icon::before {
    right: 22px;
	}

	.salon_list_small .salon_item:first-child .salon_link {
		padding: 10px;
		padding-right: 36px;
		border-bottom: unset;
	}

	.salon_list_small .salon_item:last-child .salon_link {
		padding: 10px;
		padding-right: 36px;
	}
}

@media screen and (max-width: 480px) {
	.after_icon::before {
        right: 12px;
    }

	.salon_list_small .salon_title {
	margin-bottom: 4px;
	}
}

/* ---------------------------------------------------------
	小さいNEWS 
----------------------------------------------------------*/
.news_concept_group {
	background-image: url("images/top/news_cocept_bg.webp");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* --- 小さいNEWS --- */
.news_small .news_small_wrap {
	display: flex;
	align-items: center;
	max-width: 1520px;
	margin: 0 auto;
	padding: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 80px) clamp(20px, 5vw, 80px);
}

.news_small .section_title {
	margin-bottom: unset;
	padding: 10px 10px 10px 0;
	flex: 0 0 9%;
	font-size: clamp(var(--font-size_13), 2vw, var(--font-size_24));
	border-right: 1px solid var(--text_color);
	letter-spacing: 0.1em;
	line-height: 1;
}

.news_small .news_small_body {
	flex: 0 1 41%;
	display: flex;
	align-items: center;
}

.news_small .news_item {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 6%;
	margin-left: clamp(15px, 3vw, 40px);
	padding: unset;
	height: 100%;
	border: none
}

.news_small .new_date {
	flex: unset;
	font-family: var(--font-body-japanese-serif);
	font-size: clamp(var(--font-size_11), 1.8vw, var(--font-size_14));
	font-weight: bold;
}

.news_small .news_title {
	font-size: clamp(var(--font-size_11), 1.8vw, var(--font-size_14));
}

.news_btn {
	padding: 1.2em .5em;
	border-bottom: 1px solid var(--text_color);
	color: var(--text_color);
	font-family: var(--font-heading-english);
	font-weight: bold;
	font-size: clamp(var(--font-size_14), 1vw, var(--font-size_14));
	letter-spacing: 0.05rem;
}

@media screen and (max-width: 1200px) {
	.news_small .news_small_wrap {
		padding-bottom: 60px;
	}

	.news_small .news_small_body {
		flex: 1;
	}
}

@media screen and (max-width: 480px) {
	.news_small .section_title {
		padding: 5px 10px 5px 0;
	}

	.news_btn {
		display: none;
	}
}

/* ---------------------------------------------------------
	CONCEPT 
----------------------------------------------------------*/
.concept .section_title_group .section_title:first-child {
	margin-bottom: clamp(20px, 1.6vw, 30px);
}

.concept .media_body {
	padding-right: clamp(16px, 4vw, 60px);
}

.concept .media_body p {
	line-height: 1.8;
}

.concept .concept_text_group {
	font-size: clamp(var(--font-size_12), 1.9vw, var(--font-size_16));
}

.concept .media_img {
	overflow: hidden;
}

.concept .media_img img {
	width: 100%;
	object-position: top;
}

.concept.bubble::before {
	left: clamp(100px, 30vw, 700px);
}

@media (min-width: 851px) {
	.concept .media_img {
		aspect-ratio: 1 / 1;
		/* 幅 : 高さ = 1 : 1 */
	}
}

@media (max-width: 1030px) {
	.concept .flex_col2 {
		flex-direction: column;
		gap: 40px;
	}

	.concept.bubble::before {
		top: -4%;
		right: 0;
		left: unset;
	}
}

@media screen and (max-width: 850px) {
	.concept .media .media_body {
		padding: 0 clamp(16px, 4vw, 100px);
	}

	.concept .media_body p {
		line-height: 2;
	}

	.concept .media_img {
		padding-right: clamp(16px, 4vw, 100px);
		max-width: 500px;
		align-self: flex-start;
		aspect-ratio: 4 / 3;
	}

	.concept.bubble::before {
		top: -4%;
		right: 0;
		left: unset;
	}
}

/* ---------------------------------------------------------
	ABOUT US
----------------------------------------------------------*/
.about .contents_wrap {
	padding: clamp(50px, 6vw, 80px) clamp(20px, 6vw, 80px) clamp(60px, 8vw, 100px);
}

/* --- カードリスト --- */
.card_list .card_item {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: clamp(150px, 25vw, 330px);
	text-align: center;
	transition: box-shadow .2s;
}

.card_list .card_item.treatment {
	background-image: url("images/top/about_treatment.webp");
}

.card_list .card_item.opening_hours {
	background-image: url("images/top/about_opening_hours.webp");
}

.card_list .card_item.private_room {
	background-image: url("images/top/about_private_room.webp");
}

.card_list .card_item:hover {
	box-shadow: 0 4px 16px rgba(191, 167, 122, .12);
}

.card_list .card_link {
	padding-bottom: 20px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.card_list .section_title_group {
	text-shadow: 0 0 30px rgba(0, 0, 0, 1),
		0 0 30px rgba(0, 0, 0, 1);
}

.card_list .card_title {
	color: #fff;
	font-family: var(--font-heading-english);
	font-weight: bold;
	font-size: clamp(var(--font-size_24), 2vw, var(--font-size_26));
	letter-spacing: .14em;
}

.card_list .card_text {
	color: #fff;
	font-family: var(--font-body-japanese-serif);
	font-size: clamp(var(--font-size_14), 1.2vw, var(--font-size_18));
	letter-spacing: .1em;
	line-height: 1.8;
}

.card_list .annotation {
	position: absolute;
	bottom: 5px;
	right: 5px;
	color: var(--text_color);
	font-family: var(--font-body-japanese-serif);
	font-size: clamp(var(--font-size_12), 1vw, var(--font-size_14));
	letter-spacing: .1em;
	text-shadow:
		/* 内側のシャドウ（濃く）*/
		0 0 2px rgba(255, 255, 255, 1),
		/* 中間層 */
		0 0 8px rgba(255, 255, 255, 1),
		/* 外側の拡散（ぼかし）*/
		0 0 20px rgba(255, 255, 255, 1),
		0 0 29px rgba(255, 255, 255, 1);
}

@media screen and (max-width: 850px) {
	.card_list .card_item {
		/* max-width: 500px; */
		align-self: center;
	}

	.card_list .card_link {
		height: 220px;
	}
}

@media screen and (max-width: 480px) {
	.about .section_title {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}

	.card_list .card_link {
		height: 150px;
	}
}


/* ---------------------------------------------------------
	MENU
----------------------------------------------------------*/
.menu {
	background-image: url("images/top/menu_bg.webp");
	padding: 130px 0 100px 0;
	background-size: cover;
	background-position: center;
	width: 100%;
}

.menu.bubble::before {
	left: -3%;
	top: -7vw;
	width: 314px;
	height: 284px;
}

.menu h2.section_title {
	margin-bottom: unset;
	padding-left: 8%;
	max-width: 1520px;
	margin: 0 auto;
}

.menu .media {
	gap: clamp(20px, 3vw, 100px);
}

.menu .media .media_body {
	padding-left: 8%;
	padding-right: 2%;
}

.menu .media.reverse .media_body {
	padding-left: 3%;
	padding-right: 5%;
}

.menu .section_title.medium {
	margin-bottom: 22px;
	font-family: var(--font-body-japanese-serif);
}

.menu .menu_item .section_title.small {
	padding: 6px;
}

.menu .menu_list .menu_item {
	margin-bottom: 80px;
}

.menu .menu_list .menu_item .flex_col2_item .menu_text {
	line-height: 2.4;
}

.menu .media .media_img.media01 {
	text-align: right;
}

.menu .media .media_img.media02 {
	text-align: left;
}

.menu .btn_wrap {
	padding: 20px;
}

/* moreボタン */
.more.btn {
	padding: 0.5rem 1rem;
	max-width: 130px;
	font-weight: bold;
}

.more.after_icon::before {
	right: 15px;
	font-size: var(--font-size_10);
	top: 52%;
}

.menu .btn_wrap .btn_txt {
	text-align: center;
	font-weight: bold;
	padding: 0 8%;
}

@media (min-width: 1521px) {
	.menu h2.section_title {
		padding-left: unset;
	}

	.menu .media .media_body {
		padding-left: unset;
		padding-right: unset;
	}
}

@media (max-width: 1030px) {
	.menu .flex_col2 {
		flex-direction: row;
	}

	.menu .flex_col2.reverse {
		flex-direction: row-reverse;
	}
}

@media screen and (max-width: 850px) {
	.menu {
		padding: 40px 0 60px 0;
	}

	.menu.bubble::before {
		left: 70%;
		top: -6vw;
		width: 180px;
	}

	.menu .menu_list .menu_item .flex_col2_item .menu_text {
		line-height: 2.0;
	}

	.menu .menu_list .reverse.menu_item {
		margin-bottom: 50px;
	}

	.menu .media.reverse .media_body {
		padding-left: 3%;
		padding-right: 7%;
	}

	.menu .section_title.medium {
		margin-bottom: 20px;
	}

	.menu .menu_item .section_title.small {
		padding: 0 0 10px;
	}

	.menu .menu_list .menu_item {
		margin-bottom: 40px;
	}

	.menu .btn_wrap {
		padding: 0;
	}

	.more.btn {
		max-width: 120px;
	}
}

@media screen and (max-width: 600px) {
	.menu.bubble::before {
		left: 63%;
		top: -40px;
		width: 120px;
	}

	.menu .flex_col2,
	.menu .flex_col2.reverse {
		flex-direction: column;
		gap: 30px;
	}

	.menu h2.section_title {
		margin-bottom: 20px;
		padding-left: 4%;
	}

	.menu .media .media_body {
		padding-left: 4%;
		padding-right: 2%;
	}

	.menu .section_title_group.medium .section_title:last-child {
		margin-bottom: 20px;
	}

	.menu .menu_item .section_title.small {
		margin: 0;
	}

	.menu .media .media_img.media01 {
		margin-left: 18%;
	}

	.menu .media .media_img.media02 {
		margin-right: 18%;
	}
}

@media screen and (max-width: 480px) {
	.more.btn {
		max-width: 100px;
		padding: 0.4em 1em;
		font-size: 1rem;
	}

}


/* ---------------------------------------------------------
	STYLE
----------------------------------------------------------*/
/* Fancyboxのポップアップ画面をヘッダーより前面へ */
.fancybox__container {
	z-index: 2000 !important;
}

.style {
	/* background-image: url("images/top/style_bg.webp"); */
	padding: 70px 0;
	/* 白→茶色 のグラデ */
	background-image: linear-gradient(to bottom right, #ffffff 0%, #8f7d6d 100%);
	/* 必要に応じて以下も合わせて */
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.style.flower {
	position: relative;
}

.style.flower::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 330px;
	background: url(images/top/flower_left_top.webp) no-repeat left bottom;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

.style .section_title.center {
	position: relative;
	z-index: 2;
	margin-bottom: 50px;
}

.style .style_list .style_item p {
	font-family: var(--font-heading-english);
	font-size: clamp(var(--font-size_14), 1.0vw, var(--font-size_20));
	padding: 10px 0;
	text-align: center;
}

.btn_wrap.btn_flex {
	display: flex;
	align-items: center;
	gap: 5%;
	justify-content: center;
}

.btn_wrap.btn_flex .btn {
	margin: 70px 0 30px;
}

@media screen and (max-width: 850px) {
	.style {
		padding: 50px 0;
	}

	.style .section_title.center {
		margin-bottom: 30px;
	}

	.style .btn_wrap.btn_flex {
		flex-direction: unset;
	}

	.btn_wrap.btn_flex .btn {
		margin: 40px 0 0 0;
	}
}

@media screen and (max-width: 600px) {
	.style .btn_wrap.btn_flex {
		flex-direction: column;
		gap: 0;
	}

	.btn_wrap.btn_flex .btn {
		margin: 20px 0 0 0;
	}
}

@media screen and (max-width: 480px) {
	.style .section_title.center {
		margin-left: 16px;
		align-items: flex-start;
	}
}

/* ----------------------------------
	STYLE セクション用カルーセル設定
-----------------------------------*/
:root {
	--slide-w: 330px;
	/* 1枚あたりの幅          */
	--slide-gap: 10px;
	/* スライド間の余白        */
	--slide-num: 5;
	/* PC表示で並べる枚数       */
}

.style .slider_only {
	overflow: hidden;
}

.style .style-swiper {
	max-width: calc((var(--slide-w) + var(--slide-gap)) * var(--slide-num) - var(--slide-gap));
	width: 100%;
	margin-bottom: 40px;
	overflow: visible !important;
}

.style.bubble::after {
	left: 50%;
	top: 0;
	width: 120px;
	height: auto;
	display: none;
}

.style .style-swiper .swiper-slide {
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: auto;
}


.style .style-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.style .style-swiper .swiper-slide p {
	margin-top: 10px;
	text-align: center;
	font-size: clamp(var(--font-size_14), 1.0vw, var(--font-size_20));
	font-family: var(--font-heading-english);
}

.style .swiper-button-next,
.style .swiper-button-prev {
	position: absolute;
	color: #000;
	border: 2px solid #000;
	top: 22%;
	transform: translateY(40%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100 !important;
}

.style .swiper-button-next:after,
.style .swiper-button-prev:after {
	font-size: .9rem;
	font-weight: bold;
	-webkit-text-stroke: 1px currentColor;
}

.style .slider-container .swiper-button-prev {
	right: 20%;
	left: auto;
}

.style .slider-container .swiper-button-next {
	right: 16%;
}

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

	.style .swiper-button-next,
	.style .swiper-button-prev {
		top: 23%;
		width: 35px;
		height: 35px;
	}

	.style .swiper-button-next:after,
	.style .swiper-button-prev:after {
		font-size: .8rem;
	}

	.style .slider-container .swiper-button-next {
		right: 15%;
	}
}

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

	.style {
		padding: 60px 0;
	}

	.style .swiper-button-next,
	.style .swiper-button-prev {
		top: 20%;
		width: 30px;
		height: 30px;
		padding-top: 3px;
	}

	.style .swiper-button-next:after,
	.style .swiper-button-prev:after {
		font-size: .8rem;
	}

	.style .slider-container .swiper-button-prev {
		right: 10%;
	}

	.style .slider-container .swiper-button-next {
		right: 4%;
	}


}

@media (max-width: 640px) {
	.style.flower::before {
		top: -82px;
	}
}

@media (max-width: 480px) {
	.instagram.bubble::before {
		display: block;
	}

	.style.flower::before {
		top: -136px;
	}

	.style.bubble::after {
		display: block;
	}

	.style {
		padding: 50px 0;
	}

	.style .style-swiper .swiper-slide p {
		margin-top: 0;
	}

	.style .btn.center {
		margin: 20px auto 0;
	}


	.style .swiper-button-next,
	.style .swiper-button-prev {
		top: 63px;
		width: 30px;
		height: 30px;
		border: 1px solid #000;
	}

	.style .swiper-button-next:after,
	.style .swiper-button-prev:after {
		font-weight: normal;
	}

	.style .slider-container .swiper-button-prev {
		right: 14%;
	}

}

/* ---------------------------------------------------------
	INSTAGRAM
----------------------------------------------------------*/
.instagram {
	position: relative;
	/* overflow: hidden; */
}

.instagram .bg_wrap {
	position: absolute;
	bottom: 0;
	left: -5%;
	width: 100%;
	height: 67%;
	background-image: url(images/top/instagram_bg.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: -1;
}

.instagram .contents_wrap {
	padding: clamp(90px, 7.89vw, 140px) clamp(20px, 6vw, 80px) clamp(90px, 7.89vw, 140px);
}

.instagram.bubble::before {
	top: 92%;
	left: -3%;
}

.instagram .bubble.bubble_tilt_left::before {
	top: 70px;
	right: -1%;
	bottom: -6%;
	left: unset;
}

.instagram .section_title {
	margin-bottom: 0;
}

.instagram .section_title.center {
	margin-bottom: 50px;
}

.instagram .contents_wrap .tab_wrap {
	display: flex;
	gap: 6%;
	justify-content: center;
	font-family: var(--font-heading-english);
	font-size: 1.8rem;
	letter-spacing: .1em;
	font-weight: bold;
	margin-bottom: 70px;
}

.instagram .tab_label {
	cursor: pointer;
	padding: 0;
	border-bottom: 2px solid transparent;
	transition: border-color .2s, color .2s;
}

.instagram input#tab_roppongi:checked~.tab_wrap label[for="tab_roppongi"],
.instagram input#tab_tsukuba:checked~.tab_wrap label[for="tab_tsukuba"] {
	border-bottom-color: #333;
	font-weight: bold;
	color: #333;
}

#tab_roppongi:checked+.tab_label,
#tab_tsukuba:checked+.tab_label+input+.tab_label {
	/* ラジオに続くラベルが active */
	font-weight: bold;
	border-color: #333;
}

/* コンテンツ初期状態は隠す */
.instagram .insta_content {
	display: none;
}

/* ラジオチェックで対応するコンテンツだけ表示 */
#tab_roppongi:checked~.insta_list #roppongi,
#tab_tsukuba:checked~.insta_list #tsukuba {
	display: block;
}

.instagram .tab_wrap .tab_label {
	color: #aaa;
}

.instagram .insta_list {
	/*	height: 790px;
	background: #ccc;*/
	width: 89%;
	margin: 0 auto;
}

.instagram .btn_wrap.flex_col2 .btn {
	margin: 0 0 30px;
}

.instagram .btn_wrap.btn_flex .btn {
	margin: 40px 0 0;
}

@media screen and (max-width: 850px) {
	.instagram .bg_wrap {
		left: 0;
		height: 68%;
	}

	.instagram.bubble::before {
		left: -3%;
		top: 93%;
	}

	.instagram .contents_wrap {
		padding: clamp(60px, 8.24vw, 120px) clamp(20px, 6vw, 80px) clamp(60px, 8.24vw, 120px);
	}

	.instagram .section_title.center {
		padding-bottom: 20px;
		padding-top: 0;
		margin-bottom: 0;
	}

	.instagram .contents_wrap .tab_wrap {
		margin-bottom: 40px;
		font-size: 1.3rem;
	}

	.instagram .insta_list {
		/*height: 600px;*/
		width: 80%;
	}

	.instagram .insta_list {
		/*height: 900px;*/
		width: 100%;
	}
}

@media screen and (max-width: 800px) {
		.instagram .bg_wrap {
		height: 83%;
	}

	.instagram.bubble::before {
		left: -3%;
		/* bottom: 1%; */
		top: 93%;
	}
}

@media screen and (max-width: 600px) {
	.instagram {
		background-position: left bottom 2%;
		/* 左下に配置 */
		background-size: 1665px auto;
	}

	.instagram .btn_wrap.btn_flex {
		flex-direction: column;
		gap: 0;
	}

	.instagram .btn_wrap {
		margin-top: 0;
	}

	.btn_wrap.btn_flex .btn {
		margin: 20px 0 0 0;
	}

	.instagram .btn_wrap.btn_flex .btn {
		margin: 20px 0 0 0;
	}

	.loana .instagram .contents_wrap .insta_list #sb_instagram.sbi {
		padding-bottom: 0 !important;
	}
}


@media (max-width: 480px) {
	.instagram .bg_wrap {
		height: 78%;
	}

	.instagram .contents_wrap {
		padding: clamp(50px, 10vw, 140px) clamp(17px, 3.78vw, 80px) clamp(60px, 6vw, 80px);
	}

	.loana .instagram .contents_wrap .insta_list #sbi_images {
		gap: 16px !important;
	}

	.instagram .bubble.bubble_tilt_left::before {
		display: none;
	}

	.instagram.bubble::before {
		left: -5%;
		/* bottom: 1%; */
		top: 96%;
	}

	.instagram .section_title.center {
		margin-bottom: unset;
		padding-bottom: 30px;
	}

	.instagram .btn_wrap {
		margin-top: 0;
		margin-bottom: 0;
	}
}

/* ---------------------------------------------------------
	SALON
----------------------------------------------------------*/
.salon .contents_wrap {
	padding: 70px clamp(16px, 4vw, 80px);;
}

.salon .section_title {
	margin-bottom: 50px;
}

.salon .salon_name {
	margin-bottom: 0.8rem;
	font-size: var(--font-size_26, 2vw, --font-size_28);
}

.salon .flex_col2 {
	align-items: flex-start;
	justify-content: space-between;
	gap: 5%;
}

.salon .flex_col2_item {
	flex: 1 1 47%;
}

.salon .flex_col2 figure {
	margin-bottom: 1.5rem;
}

.salon_list_item_address {
	margin-bottom: 1rem;
	text-align: center;
}

.salon dl {
	display: flex;
	flex-direction: column;
	width: max-content;
	margin: 0 auto 1.5rem;
	padding: 0;
	line-height: 1.8;
}

.salon_item_time {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
}

.salon_item_time_l {
	min-width: 4.5rem;
	text-align: right;
	padding-right: 1rem;
}

.salon_item_time_r {
	padding-left: 1rem;
	border-left: 1px solid #d6d6d6;
	width: auto;
	max-width: 22rem;
}

.salon .btn {
	padding: 0.5rem 1rem;
	max-width: 28%;
}

.salon .after_icon::before {
	right: 15px;
	font-size: var(--font-size_10);
}

.salon.bloom {
	position: relative;
	overflow: hidden;
}

.salon.bloom::after {
	content: "";
	background-image: url(images/top/bloom.webp);
	position: absolute;
	right: 0;
	bottom: 0;
	width: clamp(130px, 25vw, 390px);
	aspect-ratio: 390 / 278;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 0;
	transform: translate(8%, 35%);
}


@media screen and (max-width: 850px) {
	.salon .contents_wrap {
		padding: 60px clamp(16px, 4vw, 80px);
	}

	.salon .section_title {
		margin-bottom: 30px;
	}

	.salon .salon_name {
		margin-bottom: 0.8rem;
	}

	.salon .flex_col2 figure {
		max-width: 500px;
	}

	.salon .flex_col2_item {
		flex: auto;
		margin: auto;
	}

	.salon .flex_col2_item:not(:first-child) {
		margin-top: 4rem;
	}

	.salon .btn {
		padding: 1rem;
		max-width: 40%;
		/* font-size: 1.5rem; */
	}

	.salon.bloom::after {
		transform: translate(8%, 32%);
	}
}

@media screen and (max-width: 600px) {
	.salon .bloom::after {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.salon .contents_wrap {
		padding: 50px clamp(16px, 4vw, 80px);
	}

	.salon .salon_name {
		margin-bottom: 20px;
	}

	.salon .flex_col2 figure {
		margin-bottom: 30px;
	}

	.salon_list_item_address {
		font-size: 0.9rem;
		margin-bottom: 0.8rem;
		line-height: 1.6;
	}

	.salon dl {
		font-size: 0.9rem;
		margin: 0 auto 30px;
	}

	.salon .btn {
		max-width: clamp(220px, 20vw, 380px);
		padding: 1.1em 1em;
	}

	.salon .after_icon::before {
		right: 30px;
		font-size: unset;
	}

	.salon .flex_col2_item:not(:first-child) {
		margin-top: 3rem;
	}
}



/* ---------------------------------------------------------
	NEWS
----------------------------------------------------------*/
.news {
	background: linear-gradient(to bottom right, #afa194, #c7bcb2, #907e6d);
}

.news .contents_wrap {
	padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 80px);
}

.news .serif {
	font-family: var(--font-body-japanese-serif);
	font-weight: 700;
}

.news .flex_col2 {
	display: flex;
	align-items: stretch;
	gap: 4%;
}

.news .news_tit {
	flex: 0 0 20%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.news .news_tit .section_title {
	margin: 0;
	display: inline-block;
}

.news a.news_btn {
	font-size: 1rem;
}

.under_line {
	/* border-bottom: solid 1px #000; */
	padding-bottom: 1rem;
}

.under_line:hover {
	cursor: pointer;
	opacity: 0.7;
}

.news .news_tit .under_line {
	margin-top: auto;
	display: inline-block;
}

.news dl {
	flex: 1;
	margin: 0;
}

.news .news_item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 1.6rem 0;
	border-bottom: 1px solid #e0d9d2;
	gap: 4%;
}

.news .news_item dd {
	flex: 0 0 180px;
	margin: 0;
	display: flex;
	align-items: center;
	white-space: nowrap;
	font-size: 0.9rem;
}

.news .news_item span {
	margin-left: 2rem;
	padding: 0 1rem;
	background: #a69688;
	color: #fff;
	display: inline-block;
	width: 5.5rem;
	text-align: center;
	font-size: 0.8rem;
}

.news .news_item dt {
	flex: 1;
	margin: 0;
}

.news .news_item dt a {
	display: block;
	position: relative;
	text-align: left;
	padding-right: 2rem;
	text-align: left;
	text-decoration: none;
	line-height: 1.6;
	color: #000;
}

.news .after_icon::before {
	right: 2%;
}

@media screen and (max-width: 850px) {
	.news .news_tit {
		flex-direction: unset;
		justify-content: space-between;
		margin-bottom: 2rem;
	}

	.news .news_tit .section_title {
		font-size: 2.5rem;
	}

	.news a.news_btn {
		font-size: 1.2rem;
	}

	.news .news_item {
		display: block;
	}

	.news .news_item dd {
		margin-bottom: 0.5rem;
	}

	.news .news_item span {
		margin-left: 1rem;
	}
}


@media screen and (max-width: 480px) {
	.news .news_tit .section_title {
		font-size: 2rem;
	}

	.news .news_tit {
		margin-bottom: 0.5rem;
	}

	.news .news_item dd {
		margin-bottom: 0.5rem;
		font-size: 0.7rem;
	}

	.news .news_item span {
		font-size: 0.6rem;
		padding: 0 .5rem;
		width: 3.8rem;
	}

	.news .news_item {
		display: block;
		padding: 1.2rem 0;
	}

	.news .news_item dt a {
		font-size: .8rem;
	}

	.news .arrow_right::after {
		display: inline-block;
		right: 10px;
	}

	.news a.news_btn {
		font-size: 1rem;
		padding: 0.3em;
	}

	.news .news_tit .under_line {
		margin-top: 0;
	}
}

/* ---------------------------------------------------------
	BLOG
----------------------------------------------------------*/
.blog .contents_wrap {
	/* margin: 0 auto;
	max-width: 1520px;
	padding: clamp(50px, 6vw, 80px) clamp(16px, 4vw, 80px); */
	padding: 70px clamp(20px, 6vw, 80px);
}

.blog .serif {
	font-family: var(--font-body-japanese-serif);
	font-weight: 700;
	letter-spacing: 0.1em;
}

.blog .section_title {
	margin-bottom: 50px;
}

.blog .flex_col3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	margin-bottom: 40px;
	margin-left: 18%;
	/*2件の時の無理やり調整*/
}

.blog .flex_col3_item {
	flex: 0 0 30%;
}

.blog .blog_img figure {
	margin-bottom: 1rem;
}

.blog .blog_ttl {
	margin-bottom: 1rem;
	font-size: clamp(var(--font-size_12), 1vw, var(--font-size_14));
	line-height: 1.6;

}

.blog .blog_ttl a {
	display: block;
}

.blog_stylist {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.blog_stylist .circle_img {
	width: 80%;
  max-width: 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.blog_stylist_name {
	color: #AFA195;
	font-size: clamp(var(--font-size_12), 1vw, var(--font-size_14));
}

.blog dl a.after_icon {
	position: relative;
	padding-right: 1.5rem;
}

.blog dl a.after_icon::before {
	right: 0;
}

/* swiper
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #ab9c8f !important;
} */

@media screen and (max-width: 850px) {
	/* .blog .swiper.blog-swiper {
		display: block;
		-webkit-overflow-scrolling: touch;
	} */

	.blog .contents_wrap {
		/*padding-right: 0;*/
		/*2件の時の無理やり調整*/
		padding: 60px clamp(20px, 6vw, 80px);
	}

	.blog .flex_col3 {
		/*display: flex;*/
		/*2件の時の無理やり調整（コメントアウト）*/
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: scroll;
		gap: 30px;
		/*padding-right: 30px;*/
		/*2件の時の無理やり調整*/
		margin-bottom: 20px;
		-webkit-transform: none !important;
		/* transform: none !important;
		transition: none !important; */
		margin-left: 0;
		/*2件の時の無理やり調整*/
		grid-template-columns: repeat(2, 1fr);
		/*2件の時の無理やり調整*/
	}

	.flex_col3::-webkit-scrollbar {
		display: none;
	}

	/* .blog-swiper {
		display: block;
	}

	.swiper-slide,
	.flex_col3_item {
		width: 66vw;
		flex: 0 0 auto;
	}

	.blog-swiper .swiper-button-prev,
	.blog-swiper .swiper-button-next {
		color: .333;
	}

	.swiper-pagination-bullet-active {
		background: .998879;
	} */

	/* .blog ul.flex_col3 {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .flex_col3_item {
        flex: 0 0 80%;
        margin-right: 16px;
    }

    ul.flex_col3::-webkit-scrollbar {
        display: none;
    } */

	.blog .section_title {
		margin-bottom: 30px;
		/* font-size: 4rem; */
	}

	.blog .flex_col3_item {
		flex: 0 0 32%;
		flex-shrink: 0;
	}

	.blog dl a.after_icon::before {
		top: 15%;
	}

	.blog_btn {
		/*padding-right: clamp(20px, 6vw, 80px);*/
		/*2件の時の無理やり調整*/
	}
}

@media screen and (max-width: 480px) {
	.blog .section_title {
		margin-bottom: 2rem;
		display: block;
	}

	.blog .contents_wrap {
		padding-right: 0;
		/*2件の時の無理やり調整*/
		padding: 50px 0 50px clamp(20px, 6vw, 80px);
	}

	.blog .flex_col3 {
		display: flex;
		/*2件の時の無理やり調整*/
		padding-right: clamp(20px, 6vw, 80px);
		/*2件の時の無理やり調整*/
	}

	.blog .flex_col3_item {
		flex: 0 0 62%;
	}

	.blog .blog_img figure {
		margin-bottom: 10px;
	}

	.blog .circle_img {
		width: 63%;
	}
}


/* ---------------------------------------------------------
	RECRUIT
----------------------------------------------------------*/
.recruit {
	background-image: url(images/top/recruit_bg.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.recruit .btn.color_tranceparent {
	font-size: clamp(var(--font-size_12), 1.5vw, var(--font-size_16));
	font-weight: bold;
}

.recruit .recruit_text {
	margin-bottom: clamp(40px, 1vw, 70px);
	line-height: 2.3;
	text-align: center;
}

@media (max-width: 1030px) {

	.recruit .flex_col2,
	.recruit .flex_col2.reverse {
		flex-direction: column;
		gap: 40px;
	}
}

@media (max-width: 850px) {
	.recruit .media_img {
		max-width: 500px;
	}
}

@media (max-width: 480px) {
	.recruit .media_body {
		padding: unset;
	}
}


/* ---------------------------------------------------------
	RESERVE
----------------------------------------------------------*/
.reserve .reserve_card_item p {
	font-size: var(--font-size_18);
}

.reserve .reserve_card_item .content_label {
	font-size: clamp(17.4px, 1.15vw, 22px);
	letter-spacing: 0.1em;
	font-family: var(--font-heading-english);
}

.reserve .reserve_card_item .tel_number {
	font-size: clamp(28.5px, 1.88vw, 36px);
}

.reserve .bubble_tilt_right img {
	width: 384px;
	height: 284px;
	position: absolute;
	top: -60px;
}

.reserve {
	padding: 40px 0;
	background-image: url(images/top/reserve_bg.webp);
	background-size: cover;
	background-position: center 10%;
	background-repeat: no-repeat;
}

.reserve .flex_col2 {
	gap: clamp(40px, 7vw, 100px);
}

.reserve .reserve_text {
	text-align: center;
	line-height: 2;
}

.reserve .content_label {
	border: 1px solid #000000;
	border-radius: 50px;
	display: inline-block;
	width: 200px;
	text-align: center;
	box-sizing: border-box;
}

.reserve .flex_col3 {
	justify-content: flex-end;
	gap: 10px;
}

.reserve .reserve_card_item {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	align-items: center;
	padding: 24px 16px;
	background-color: #ffffff;
}

.reserve .reserve_card_item .card_item_contents {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	/* pタグを下に寄せる */
	height: 100%;
	width: 100%;
	position: relative;
}

.reserve_card_item a p:first-of-type {
	margin-top: clamp(10px, 8vw, 15px);
}

.reserve .reserve_card_item img {
	display: block;
	margin: 0 auto;
	max-width: clamp(80px, 6.25vw, 120px);
	height: auto;
}

.reserve .reserve_card_item p {
	margin-top: 10px;
	margin-bottom: 5px;
	margin-bottom: 0;
	width: 100%;
	text-align: center position: relative;
	z-index: 1;
}

.reserve .reserve_card_item .shop_list {
	border: 1px solid #000;
	font-size: var(--font-size_14);
	padding: 0 80px;
	white-space: nowrap;
	font-family: var(--font-heading-english);
}


.reserve .reserve_card_item:last-child {
	justify-content: center;
}

.reserve_card_item:last-child dl dd:first-of-type {
	padding-bottom: 1.5vw;
}

.reserve .reserve_card_item .after_icon::before {
	font-size: clamp(var(--font-size_14), 1.25vw, var(--font-size_18));
	right: 10px;
}

.reserve .reserve_card_item:last-child .label {
	margin-top: 0;
}

.reserve_card_item dt:first-of-type {
	margin-top: 80px;
}

.reserve_card_item dd:last-of-type {
	margin-bottom: 40px;
}

.reserve_card_item .tel_number {
	padding-top: 5px;
}

.serif {
	font-family: "Noto Serif JP", serif;
}

.serif_bold {
	font-family: "Noto Serif JP", serif;
	font-weight: bold;
}

.text_medium {
	font-size: clamp(3.5rem, 2vw, 1.5rem);
}

@media (min-width: 1025px) {
	.reserve .reserve_card_item .tel_number {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

@media (max-width: 1000px) {
	.reserve {
		padding: unset;
	}

	.reserve .flex_col3 {
		flex-direction: column;
		gap: 24px;
		padding: 0 20px;
	}

	.reserve .reserve_card_item {
		margin: 0 auto;
		width: 100%;
		height: 100%;
		max-width: 500px;
	}

	.reserve .reserve_card_item p.after_icon::before {
		right: 10px;
		padding-left: 10px;
	}

	.reserve .reserve_card_item p {
		margin-top: 25px;
	}

	.reserve_card_item dd:last-of-type {
		margin-bottom: 0px;
	}

	.reserve_card_item dt:first-of-type {
		margin-top: 0;
	}

}

@media (max-width: 850px) {
	.reserve.bubble::before {
		top: -3%;
	}

	.reserve_card_item dt:first-of-type {
		margin-top: 20px;
	}

	.reserve .reserve_card_item p {
		margin-top: 10px;
	}
}

@media (max-width: 480px) {
	.reserve .section_title {
		margin-bottom: 20px;
	}

	.reserve .flex_col3 {
		padding: unset;
	}

	.reserve .reserve_card_item p.after_icon::before {
		top: 53%;
		right: 10px;
	}
}


/* ---------------------------------------------------------
	フッター
----------------------------------------------------------*/
.footer {
	position: relative;
	background-color: #333333;
}

/* 左上のお花の装飾（PCでは表示して、tablet以下で非表示する） */
.footer::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: clamp(120px, 14vw, 200px);
	background: url(images/top/flower_left_bottom.webp) no-repeat left bottom;
	background-size: contain;
	pointer-events: none;
	z-index: 2;
}

/* 右上のお花の装飾（PCでは非表示にして、SPで表示する） */
.footer::after {
	display: none;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: clamp(90px, 22vw, 110px);
	background: url(images/top/footer_flower.webp) no-repeat right top;
	background-size: contain;
	pointer-events: none;
	z-index: 2;
}

/*文字サイズ*/
.footer .foot_nav,
.footer .address,
.footer p {
	font-size: clamp(var(--font-size_11), 2vw, var(--font-size_14));
	font-family: var(--font-body-japanese-sans);
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.footer .footer_title {
	margin-bottom: 30px;
	font-size: var(--font-size_24);
	font-family: var(--font-heading-english);
	letter-spacing: 0.1em;
}

.footer .footer_subtitle {
	margin-bottom: 30px;
	font-size: var(--font-size_19);
	font-family: var(--font-heading-english);
	letter-spacing: 0.1em;
}

.footer_wrap {
	color: #ffffff;
	position: relative;
	font-size: 1.2rem;
	margin: 0 auto;
	padding-bottom: 250px;
	padding: clamp(60px, 8vw, 120px) clamp(16px, 4vw, 80px) clamp(180px, 17vw, 250px);
}

.footer .foot_nav {
	font-family: var(--font-heading-english);
}

.footer .foot_nav li {
	padding-bottom: .5em;
}

.footer .address li {
	padding-bottom: 18px;
}

.footer a {
	color: #ffffff;
}

.footer .flex_col3 {
	display: flex;
	justify-content: flex-start;
	gap: clamp(60px, 5.2vw, 100px);
}

.footer .flex_col3 div:first-child {
	margin-right: 80px;
}

.footer .foot_icon {
	display: flex;
	align-items: center;
	gap: clamp(12px, 0.78vw, 15px);
	padding-top: clamp(20px, 1.04vw, 25px);
}

.footer .foot_icon img {
	width: clamp(25px, 1.67vw, 32px);
	height: clamp(25px, 1.67vw, 32px);
	object-fit: contain;
	display: block;
}

.footer .foot_icon .insta {
	width: clamp(22px, 1.46vw, 28px);
	height: clamp(22px, 1.46vw, 28px);
}

.footer .foot_icon a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.reserve_fixed_link {
	/* 既存の固定レイアウト指定はそのまま … */
	position: fixed;
	bottom: 20px;
	right: max(calc((100vw - 2000px) / 2 + 22px), 10px);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 1000;

	/* ▼ フェード用プロパティを追加 ▼ */
	opacity: 0;
	/* 初期は透明 */
	transform: translateY(20px);
	/* 下からふわっと出る */
	transition: opacity .4s ease,
		/* 0.4 秒フェード */
		transform .4s ease;
	pointer-events: none;
	/* 非表示時はクリック無効 */
}

/* 表示させるときに付与するクラス */
.reserve_fixed_link.is-show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	/* クリック有効化 */
}

.copyright {
	display: block;
	text-align: right;
	padding: 16px clamp(15px, 1.04vw, 20px);
	position: absolute;
	right: 4%;
	bottom: 4%;
	font-size: clamp(var(--font-size_11), 0.94vw, var(--font-size_18));
	color: #fff;
	font-family: var(--font-heading-english);
	letter-spacing: 0.1em;
}

/* --- 右下固定の円形ボタン --- */
.reserve_fixed_link .circlel_btn {
	width: clamp(80px, 15vw, 110px);
	height: clamp(80px, 15vw, 110px);
	background-color: rgba(50, 50, 50, 0.8);
	font-size: clamp(var(--font-size_9), 1vw, var(--font-size_12));
}

.reserve_fixed_link .circlel_btn span {
	margin-bottom: 2px;
	font-size: clamp(var(--font-size_12), 2vw, var(--font-size_16));
}

.reserve_fixed_link .circlel_btn::before {
	font-size: clamp(var(--font-size_9), 1vw, var(--font-size_12));
}

@media (min-width: 1025px) {
	.footer .flex_col3 .tel_number {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

@media (max-width: 850px) {

	/* 左上のお花の装飾（PCでは表示して、tablet以下で非表示する） */
	.footer::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.reserve_card_item dl {
		order: 2;
	}

	.reserve_card_item .label {
		order: 1;
	}
}



@media (max-width: 480px) {

	/* 右上のお花の装飾（PCでは非表示にして、SPで表示する） */
	.footer::after {
		display: block;
	}

	.footer .foot_nav {
		font-size: var(--font-size_16);
	}

	.footer .footer-decoration {
		display: none;
	}

	.copyright {
		right: auto;
		left: 0;
		text-align: left;
	}
}



/* ---------------------------------------------------------
	六本木店
----------------------------------------------------------*/
/* 
.header.roppongi .shop_name {
	font-size: clamp(var(--font-size_16), 1.25vw, var(--font-size_24));
	background: #a3a3a3;
	border-radius : 20px;
	color: #fff;
	font-family: var(--font-heading-english);
} */

/* #shop_page p {
	font-size: clamp(var(--font-size_14), 2vw, var(--font-size_20));
} */

#shop_page .mv_swiper .swiper-slide picture {
	display: block;
	width: 100%;
	height: 100%;
}

#shop_page .mv_swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#shop_page .mv_swiper .swiper-slide.swiper-slide-active {
	transform: none;
	opacity: 1;
}

#shop_page .mv_swiper .swiper-slide.swiper-slide-prev,
#shop_page .mv_swiper .swiper-slide.swiper-slide-next {
	opacity: 1;
}

#shop_page .mv {
	background: url(images/roppongi/mv_bg_roppongi.webp);
}

#shop_page .mv::before {
    content: "";
    background: url(images/roppongi/bloom_top_right.webp);
    position: absolute;
    right: 50px;
    top: -200px;
	width: 670px;
    /* width: clamp(130px, 25vw, 390px); */
    aspect-ratio: 390 / 278;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: translate(8%, 35%);
}

#shop_page .mv::after {
    content: "";
	background: url(images/roppongi/bloom_top_left.webp);
    position: absolute;
    left: 0;
    top: -100px;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

#shop_page .salon .flex_col2_item {
	margin: auto 0;
}

#shop_page .salon .salon_name {
	font-size: var(--font-size_35);
	font-weight: 600;
}

#shop_page .salon .flex_col2 {
    margin-bottom: 70px;
}

/* #shop_page .salon_item_list_txt {
	width: 50%;
	margin: auto 0;
} */

#shop_page .salon .btn_flex {
	display: flex;
	justify-content: center;
    gap: 5%;
}

#shop_page .salon .flex_col2 figure {
	margin-bottom: 0; 
    width: 100%;
}

/* #shop_page .salon .contents_wrap {
	padding: 80px clamp(16px, 10vw, 80px);
} */

#shop_page .salon .salon_name {
	margin-bottom: 1.1rem;
}

/* #shop_page .salon dl {
	font-size: var(--font-size_20);
} */

#shop_page .salon .btn {
	max-width: 30%;
    padding: .8rem 1rem;
	margin: 0;
}
#shop_page .google-map iframe {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

/* Roppongi MV layout */
#shop_page .mv {
	height: auto;
	max-height: none;
	padding: clamp(40px, 7vw, 50px) 0 clamp(40px, 7vw, 60px);
	overflow: visible;
}

#shop_page .map iframe {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
}

@media screen and (max-width: 480px) {
	#shop_page .map iframe {
		height: clamp(180px, 56vw, 260px);
	}
}

#shop_page .mv_swiper {
	max-width: clamp(880px, 92vw, 1120px);
	height: clamp(320px, 56vw, 520px);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 48px);
	overflow: visible;
}

#shop_page .mv_swiper .swiper-wrapper {
	align-items: center;
	padding-inline: 0;
}

#shop_page .mv_swiper .swiper-wrapper::before {
	display: none;
}


#shop_page .mv .swiper-pagination {
	position: static;
	justify-content: center;
	margin-top: clamp(24px, 5vw, 40px);
	gap: clamp(8px, 1.8vw, 14px);
}

#shop_page .mv .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #c8c8c8;
	border: none !important;
	opacity: 1;
	font-size: 0;
	line-height: 0;
	display: inline-flex;
	transition: transform .2s ease, background-color .2s ease;
}

#shop_page .mv .swiper-pagination-bullet-active {
	background-color: #000 !important;
	border: none !important;
	transform: scale(1.35);
}

#shop_page .section_title {
	font-weight: 600;
}

#shop_page .mv .section_title {
    margin-bottom: 23px;
}

#shop_page .section_title.page_ttl {
	font-size: clamp(var(--font-size_30), 4vw, var(--font-size_50));
}

#shop_page .mv .section_title.small {
	color: #a3a3a3;
}

#shop_page .bubble::before {
	top: -7%;
}

#shop_page .reserve_card_item a p:first-of-type {
    margin-top: clamp(10px, 8vw, 65px);
}

#shop_page .reserve .reserve_card_item .shop_list {
	border: none;
	font-size: var(--font-size_18);
    padding: 0px 50px;
}

#shop_page .reserve_card_item:last-child dl dd:first-of-type {
    margin-top: 1.5vw;
}


@media (max-width: 1090px) {
	#shop_page .sp_only {
		display: block;
	}
}

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

	#shop_page .mv .section_title {
		margin-bottom: 20px;
	}

	#shop_page .mv::before {
		right: 45px;
		top: -180px;
		width: 600px;
	}

	#shop_page .mv::after {
		top: -90px;
		height: 250px;
	}


	#shop_page .salon .flex_col2 {
		margin: 0 0 30px 0;
	}

	#shop_page .salon .flex_col2_item:first-child {
		order: 2;
		margin: 0 auto;
		width: 100%;
	}

	#shop_page .salon .flex_col2_item:last-child {
		order: 1;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	#shop_page .salon dl {
    	font-size: var(--font-size_14);
	}

	.section_title {
		margin-bottom: clamp(20px, 1.6vw, 30px);
	}

	#shop_page .salon .btn {
    max-width: 22%;
	}
}

#shop_page .mv_swiper .swiper-slide {
	width: clamp(260px, 80%, 880px) !important;
	height: 100%;
	transition: transform .35s ease;
}

@media (max-width: 768px) {
	#shop_page .mv_swiper {
		padding: 0 clamp(12px, 6vw, 32px);
	}

	#shop_page .mv_swiper .swiper-slide {
		width: clamp(220px, 88%, 560px) !important;
	}
}

@media (max-width: 700px) {
    #shop_page .mv::before {
        right: 35px;
        top: -170px;
        width: 540px;
    }

	#shop_page .mv::after {
        top: -64px;
        height: 250px;
        left: -20px;
    }
}

@media (max-width: 480px) {
	#shop_page .mv_swiper {
		padding: 0;
		max-width: 100%;
		aspect-ratio: 22 / 13;
		height: auto;
	}

	#shop_page .mv_swiper .swiper-slide {
		width: 100% !important;
		height: 100% !important;
	}

	#shop_page .mv_swiper .swiper-slide picture {
		width: 100%;
		height: 100%;
	}

	#shop_page .mv_swiper .swiper-slide img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}

	#shop_page .bubble::before {
    top: -4%;
	}

	#shop_page .mv::before {
        right: 5px;
        top: -140px;
        width: 430px;
	}

	#shop_page .mv::after {
        top: -55px;
        height: 180px;
        left: 0px;
    }

	#shop_page .mv .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}

	#shop_page .mv .swiper-pagination {
		margin-top: 20px;
	}

	#shop_page .salon .btn_flex {
		flex-direction: column;
	}

	#shop_page .salon .btn {
        max-width: 45%;
        margin: 0 auto;
	}

	#shop_page .salon .btn:first-child {
	margin-bottom: 20px;
	}

	#shop_page .mv .section_title {
	margin-bottom: 10px;
    }
}

@media (max-width: 375px) {
	#shop_page .mv::before {
        right: -9px;
        top: -150px;
        width: 420px;
	}

	#shop_page .mv::after {
        top: -50px;
        height: 150px;
    }

	#shop_page .mv .section_title {
		margin-bottom: 15px;
	} 

	/* #shop_page .salon .contents_wrap {
    padding: 50px clamp(16px, 10vw, 80px);
	} */

	#shop_page .reserve .reserve_card_item .shop_list {
    padding: 0px 35px;
	}
}
