@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document voice
--------------------------------------------------------- */

.shop_anchor {
	width: 100%;
	margin-bottom: 5vw;
	background: #fff;
	padding: 3vw 0 6vw;
	position: sticky;
	top: 6vw;
	z-index: 9;
}

.shop_anchor ul {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 15px;
}

.shop_anchor a {
	padding: 8px 16px;
	border-radius: 20px;
	border: 1px solid #ccc;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
}

/* ---------------------------------------------------------
	CSS Document voice
--------------------------------------------------------- */

#salon h2 {
	margin-bottom: 8vw;
	font-size: 8vw;
	font-weight: 700;
	line-height: 1;
	color: #3FA7D1;
}

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

#salon h2 .ja {
	display: block;
	font-size: 4vw;
	font-weight: bold;
	line-height: 1;
	margin-top: 10px;
}

/* ---------------------------------------------------------
	CSS Document concept
--------------------------------------------------------- */

#concept {
	margin: 0 5vw 10vw;
}

#concept p {
	text-align: justify;
}

/* ---------------------------------------------------------
	CSS Document point
--------------------------------------------------------- */

#point {
	margin-bottom: 15vw;
	padding: 10vw 5vw 10vw;
	background-image: linear-gradient(135deg, #F8F9FA 41.67%, rgba(168, 218, 220, 0.6) 41.67%, rgba(168, 218, 220, 0.6) 50%, #F8F9FA 50%, #F8F9FA 91.67%, rgba(168, 218, 220, 0.6) 91.67%, rgba(168, 218, 220, 0.6) 100%);
	background-size: 8.49px 8.49px;
}

#point h3 {
	font-weight: bold;
	font-size: 4.5vw;
	color: #457B9D;
}

#point p {
	margin-bottom: 1.5em;
}

.shop_map {
	display: none;
}

/* ---------------------------------------------------------
   Googleクチコミ
--------------------------------------------------------- */

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

#access {
	margin-bottom: 15vw;
}

#salon #access h2 {
	margin-bottom: 5vw;
}

.shop_card {
	scroll-margin-top: 140px;
	margin: 5vw;
	padding: 5vw;
	background-color: #fff;
	border: 1px solid var(--accent-pale);
	border-radius: 12px;
	color: var(--text-color);
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	text-align: left;
}

/* タイトル */
.shop_card h3 {
	font-size: 1.5rem;
	color: var(--dark-blue);
	border-left: 5px solid var(--main-color);
	padding: 5px 15px;
	margin-bottom: 25px;
}

/* 写真エリア */
.shop_photo {
	margin-bottom: 25px;
}

.p-ladiesalon_sec01_content_info_img {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 3vw;
	margin-top: 3vw;
}

.shop_photo img {
	flex: 1;
	min-width: 0;
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}

/* 情報エリア */
.shop_info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	margin-bottom: 5vw;
	padding: 5vw;
	background-color: var(--bg-light);
	border-radius: 8px;
	line-height: 5.5vw;
}

.shop_info p {
	padding-left: 2em;
	position: relative;
}

/* 各項目のラベル（簡易的なアイコン代わり） */
.shop_info p::before {
	content: '';
	width: 5vw;
	height: 6vw;
	position: absolute;
	left: 0;
}

.shop_address::before {
	background: url(../images/map.svg) no-repeat left / 100% auto;
}
.shop_access::before {
	background: url(../images/car.svg) no-repeat left / 100% auto;
}
.shop_open::before {
	background: url(../images/clock.svg) no-repeat left / 100% auto;
}
.shop_tel::before {
	background: url(../images/phone.svg) no-repeat left / 100% auto;
}
.shop_payment::before {
	background: url(../images/payment.svg) no-repeat left / 100% auto;
}


.shop_tel a {
	display: block;
	height: 5vw;
	color: var(--dark-blue);
	font-weight: bold;
	text-decoration: none;
	font-size: 1.2rem;
}

/* ボタンエリア */
/* 親コンテナ：ボタンを並べる */
.shop_buttons {
	display: flex;
	flex-wrap: wrap; /* 折り返しを許可 */
	gap: 5vw;
	align-items: center;
	justify-content: center; /* 中央寄せ（任意） */
}

/* 共通のボタンスタイル（aタグ全体） */
.shop_buttons a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s;
}

.shop_buttons a:hover {
	opacity: 0.8;
}

/* --- 1. Instagramボタン --- */
.instagram_icon {
	width: 44px; /* アイコンサイズを固定 */
	height: auto;
	padding: 10px;
	border-radius: 100%;
	background: var(--main-color);
}

/* --- 3. MAP / クチコミ (タイプB) --- */
/* reserveBtnクラスを持たない aタグ、または特定の属性で指定 */
.infoBtn {
	background-color: #f0f0f0; /* 控えめな色 */
	color: #333;
	padding: 8px 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 0.9rem;
}

/* --- 予約エリア --- */
.shop_yoyaku {
	margin-top: 25px;
	padding: 20px;
	text-align: center;
	border-top: 2px dashed var(--accent-pale);
}

.shop_yoyaku p {
	margin-bottom: 15px;
	font-weight: bold;
	color: var(--dark-blue);
}

.reserveBtn {
	display: block;
	margin: 10px auto;
	max-width: 280px;
	padding: 14px;
	border-radius: 50px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s;
}

/* ホットペッパー/LINEで色分けすると親切 */
.reserveBtn[href*="hotpepper"] {
	background-color: #F5B110;
	color: #fff;
}

.reserveBtn.line {
	background-color: #06C755;
	color: #fff;
}

.reserveBtn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}