@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

html {
	scroll-behavior: smooth;
}

html, body {
	margin: 0;
	padding: 0;
	background: #fff;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-align: center;
	/*font-family: 'Noto Sans JP', sans-serif;*/
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Noto Sans JP", "BIZ UDPGothic", sans-serif;
	font-weight: 400;
	font-size: 3.8vw;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1.9;
	word-break: normal;
	word-wrap: break-word;
	color: #231815;
}

* {
	outline: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-collapse: collapse;
	font-style: normal;
	list-style: none;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	border: 0;
}

a {
	color: #3FA7D1;
}

.tel {
	text-decoration: none;
	color: #231815;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#wrapper {
	padding-top: 6vw;
}

.pc {
	display: none;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
	height: 1px;
	overflow: hidden;
}

.target {
/*
	margin-top: -74px;
	padding-top: 74px;
*/
	scroll-margin-top: 60px;
}

.lazyloaded {
	opacity: 0;
	animation: lazyload .6s forwards ease;
}

@keyframes lazyload {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */
/*
#header {
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
}

#header.active {
	background: #3FA7D1;
}

#header .h_logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 65px;
	padding: 0 3vw 0 4vw;
	font-size: 0;
	position: relative;
	z-index: 20;
}

#header h1 a {
	display: block;
	text-decoration: none;
	font-weight: 500;
	font-size: 11px;
	line-height: 1;
	color: #3FA7D1;
	transition: .4s;
}

#header.active  h1 a {
	color: #fff;
}

#header h1 .ja {
	display: block;
	margin-bottom: 3px;
}

#header h1 .en {
	display: block;
	font-family: "Jost", serif;
	font-size: 30px;
}

#header h1 .en .kana {
	display: inline-block;
	vertical-align: top;
	margin-left: 4px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 0;
	line-height: 34px;
}
*/


/* ---------------------------------------------------------
	SALON AQ - Smart Phone Header Styles
--------------------------------------------------------- */

:root {
	--main-color: #3FA7D1;
	--dark-blue: #457B9D;
	--bg-light: #EAF6FA;
	--accent-pale: #A6D9DC;
	--text-color: #231815;
}

/* 全体リセット・共通 */
#header {
	background: #fff;
	width: 100%;
	border-bottom: 1px solid var(--bg-light);
}

.h_top_bar {
	width: 100%;
	height: 6vw;
	background: var(--bg-light);
	text-align: center;
	font-weight: 600;
	font-size: 2.5vw;
	line-height: 6vw;
	color: var(--dark-blue);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1002;
}

.h_main_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 75px;
}

.h_left_group {
	padding-left: 5vw;
	background: #fff;
	position: relative;
	z-index: 10;
	transition: all .3s ease-out;
	opacity: 1;
	visibility: visible;
}

.active .h_left_group {
	display: flex;
	align-items: center;
	height: 75px;
	position: fixed;
	top: 6vw;
	left: 0;
	z-index: 1001;
}

.h_logo_link {
	text-decoration: none;
	display: block;
	color: var(--text-color);
}

.h_sub_copy {
	display: block;
	font-size: 9px;
	color: var(--main-color);
	font-weight: bold;
	margin-bottom: 3px;
	letter-spacing: 0.05em;
}

.h_logo_flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.h_logo_text {
	line-height: 1.1;
}

.h_logo_text .ja {
	display: block;
	font-size: 8px;
	letter-spacing: 0.15em;
	margin-bottom: 1px;
}

.h_logo_text .en {
	font-family: "Jost", serif;
	font-weight: 500;
	font-size: 20px;
}

.h_medical_tag {
	margin-top: 8px;
	padding: 1px 5px;
	border-radius: 2px;
	border: 1px solid var(--main-color);
	font-size: 8px;
	white-space: nowrap;
	color: var(--main-color);
}

/* ---------------------------------------------------------
	CSS Document switch
--------------------------------------------------------- */

#switch {
	display: block;
	width: 30px;
	height: 29px;
	position: fixed;
	top: 45px;
	right: 15px;
	z-index: 1000;
}

#switch span {
	display: block;
	width: 80%;
	height: 2px;
	background: var(--text-color);
	position: absolute;
	left: 10%;
	transition: all 0.3s;
}

#switch span:nth-child(1) { top: 5px; }
#switch span:nth-child(2) { top: 13px; }
#switch span:nth-child(3) { bottom: 5px; }

.active #switch span:nth-of-type(1) {
	transform: translateY(9px) rotate(-45deg);
}

.active #switch span:nth-of-type(2) {
	opacity: 0;
}

.active #switch span:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}

/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
	display: flex !important;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100dvh;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: calc(6vw + 75px) 20px 40px;
	background: rgba(255, 255, 255, 0.98);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;

	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#header.active #navi {
	opacity: 1;
	visibility: visible;
}

.h_right_group nav {
	width: 100%;
	margin-bottom: 30px;
}

.h_navi {
	display: flex;
	flex-direction: column;
	list-style: none;
	width: 100%;
	border-top: 1px solid var(--bg-light);
}

.h_navi li {
	border-bottom: 1px solid var(--bg-light);
	width: 100%;
}

.h_navi li a {
	display: block;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	color: var(--text-color);
	font-size: 16px;
	font-weight: bold;
}

.h_navi li a span {
	margin-left: 0.5em;
	font-size: 12px;
	color: #457B9D;
}

.h_cta {
	display: block;
	width: 100%;
	margin-bottom: 15vw;
	text-align: center;
}

.h_reserve_btn {
	display: inline-block;
	width: 80%;
	background: var(--main-color);
	color: #fff;
	padding: 15px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
}
/* ---------------------------------------------------------
	CSS Document navi (SP - Compact Tile)
--------------------------------------------------------- */

/* メガメニューの枠組み */
.h_right_group .h_navi li .mega_menu {
	display: flex; /* 横並びにする */
	flex-wrap: wrap; /* 折り返しを許可 */
	gap: 8px; /* チップ同士の隙間 */
	padding: 15px;
	background: var(--bg-light); /* 親と区別するための背景 */
	justify-content: center; /* 中央寄せ */
}

.h_right_group .h_navi li .mega_menu li {
	width: calc(50% - 4px); /* 2列並びにする（隙間分を引く） */
	border: none; /* 親の線を消す */
}

/* 3列にしたい場合はこちら */
/* .h_right_group .h_navi li .mega_menu li { width: calc(33.3% - 6px); } */

.h_right_group .h_navi li .mega_menu li a {
	padding: 10px 5px;
	font-size: 13px; /* 少し小さくしてコンパクトに */
	background: #fff; /* ボタンのように見せる */
	color: var(--text-color);
	border-radius: 6px;
	border-bottom: none;
	font-weight: 500;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* 軽い立体感 */
	display: flex;
	align-items: center;
	justify-content: center;
}

/* リンクをタップした時の反応 */
.h_right_group .h_navi li .mega_menu li a:active {
	background: var(--main-color);
	color: #fff;
}

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30vw;
	background: rgba(63, 167, 209, 0.1) url(../images/visual.svg) no-repeat 0 0 / 100% 100%;
}

#visual .name {
	font-weight: 500;
	font-size: 7vw;
	line-height: 1.5;
}

#visual .en {
	display: block;
	font-weight: 500;
	font-family: "Jost", serif;
}

#visual .ja {
	display: block;
	font-size: 3vw;
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	margin-bottom: 5vw;
	padding: 3vw 5vw;
}

#bread ol {
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	font-size: 2.8vw;
	letter-spacing: 0.05em;
	white-space: nowrap;
	line-height: 1;
}

#bread li {
	display: inline;
	margin-right: 1.8em;
	position: relative;
}

#bread li:not(:last-of-type):after {
	content: '';
	width: 0;
	height: 0;
	margin-top: -3px;
	border: solid 4px transparent;
	border-left: solid 6px #231815;
	position: absolute;
	top: 50%;
	right: -20px;
}

#bread a {
	text-decoration: none;
	color: #231815;
}

/* ---------------------------------------------------------
	CSS Document reserve
--------------------------------------------------------- */

#reserve {
	width: 60vw;
	font-weight: 500;
	font-size: 3.5vw;
	line-height: 12vw;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 9999;
}

#reserve ul {
	display: flex;
	overflow: hidden;
	border-radius: 20px 0 0 0;
}

#reserve .line {
	width: 54%;
	height: 12vw;
	background: #06C755;
	color: #fff;
}

#reserve .hpb {
	width: 46%;
	height: 12vw;
	background: #F5B110;
	color: #fff;
}

#reserve li img {
	vertical-align: -0.25em;
	margin-right: 2vw;
	height: 4.5vw;
}

/* ---------------------------------------------------------
	スマホ専用予約・LINEモーダル (common.sp.css)
--------------------------------------------------------- */

#reserve .overlay {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	left: 0;
}

#reserve .modal {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#reserve .modal .image {
	width: 90vw;
	padding: 8vw 5vw 10vw;
	border-radius: 10px;
	background: #fff;
	position: relative;
}

#reserve .modal .store_row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 6vw;
	padding-bottom: 5vw;
	position: relative;
	z-index: 0;
}

#reserve .modal .store_row:before {
	content: '';
	width: 100%;
	height: calc(100% - 8px);
	border: solid 2px #3FA7D1;
	position: absolute;
	top: 8px;
	left: 0;
	z-index: -1;
	box-sizing: border-box;
}

#reserve .modal .store_name {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 3vw;
	padding: 0 1em;
	background: #fff;
	line-height: 5vw;
	color: #3FA7D1;
}

#reserve .modal .contact_actions {
	display: flex;
	justify-content: center;
	gap: 2vw;
	width: 100%;
}

#reserve .modal .contact_actions a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 0.8em;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 3vw;
	line-height: 13vw;
	color: #fff;
}

#reserve .modal .phone a {
	background: linear-gradient(to bottom, #5ebbe0 0%, #3FA7D1 100%);
	font-weight: 500;
	font-family: "Roboto", sans-serif;
	font-size: 3vw;
}

#reserve .modal .phone a:before {
	content: '';
	width: 3.2vw;
	height: 3.2vw;
	margin-right: 0.2em;
	background: url(/include/images/f_tel.svg) no-repeat center / contain;
}

#reserve .modal .hotpepper a {
	background: linear-gradient(to bottom, #b22053 0%, #9F1547 100%);
}

#reserve .modal .hotpepper a:before {
	content: '';
	width: 3.4vw;
	height: 3.4vw;
	margin-right: 0.3em;
	background: url(/include/images/reserve_hpb.svg) no-repeat center / contain;
}

/* ---------------------------------------------------------
	LINE相談モーダル専用 (#modal-line)
--------------------------------------------------------- */

#modal-line .modal_title {
	text-align: center;
	font-weight: bold;
	font-size: 15px;
	color: #06C755;
	margin-bottom: 20px;
	line-height: 1.4;
}

#modal-line .modal .store_row:before {
	border-color: #06C755;
}

#modal-line .modal .store_name {
	color: #06C755;
}

#modal-line .modal .line_btn a {
	padding: 0 1.5em;
	background: linear-gradient(to bottom, #07da5e 0%, #06C755 100%);
	font-size: 15px;
}

#modal-line .modal .line_btn a:before {
	content: '';
	width: 20px;
	height: 20px;
	margin-right: 8px;
	background: url(/include/images/reserve_line.svg) no-repeat center / contain;
	filter: brightness(0) invert(1);
}

/* ---------------------------------------------------------
	共通パーツ（情報・閉じる）
--------------------------------------------------------- */

#reserve .modal .time_info {
	margin-top: 15px;
	text-align: center;
	font-size: 12px;
	line-height: 1.6;
	color: #666;
}

#reserve .modal .close {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #231815;
	text-align: center;
	transform: translateX(-50%);
	position: absolute;
	bottom: -20px;
	left: 50%;
}

#reserve .modal .close img {
	width: 18px;
	height: 18px;
}

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 10vw;
	height: 10vw;
	margin: 0 4vw 3vw auto;
	font-size: 0;
	opacity: 1 !important;
}

/* ---------------------------------------------------------
	CSS Document footer
--------------------------------------------------------- */

#footer {
	padding: 10vw 5vw 25vw;
	background: linear-gradient(to right, #90CDE4 0%, #A7DADC 100%);
	font-size: 3vw;
	color: #fff;
}

#footer .f_service ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 6vw;
	font-weight: bold;
	line-height: 3;
}

#footer .f_service li {
	margin: 0 0.8em;
}

#footer .f_service li a {
	text-decoration: none;
	color: #fff;
}

#footer .loan {
	margin-bottom: 6vw;
	padding: 4vw;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.4);
	text-align: center;
	line-height: 1;
	color: var(--dark-blue);
}

#footer .loan dt {
	margin-bottom: 3.5vw;
	font-weight: bold;
	font-size: 3vw;
}

#footer .loan dd {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2vw;
	padding: 3vw 0;
	border-radius: 15px;
	background: #fff;
}

#footer .loan img {
	width: auto;
	height: 6vw;
}

#footer address {
	font-size: 2.5vw;
	letter-spacing: 0.1em;
	color: #fff;
}
