@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document salon
--------------------------------------------------------- */

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

#salon h2 {
	margin-bottom: 40px;
	font-size: 44px;
	font-weight: 500;
	text-align: center;
	line-height: 1;
	color: #3FA7D1;
}

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

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

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

#concept {
	margin-bottom: 80px;
}
/* ---------------------------------------------------------
	CSS Document point (PC Optimized)
--------------------------------------------------------- */

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

.feature_list {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 70px;
}

.feature_item {
	flex: 1;
	background: #fff;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(69, 123, 157, 0.1);
	text-align: center;
	position: relative;
	transition: transform 0.3s ease;
}

.feature_item:hover {
	transform: translateY(-10px);
}

/* ナンバリング（POINT 01など）を追加して注目度を上げる */
.feature_item::before {
	content: "POINT";
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #457B9D;
	color: #fff;
	padding: 4px 15px;
	border-radius: 20px;
	font-family: "Jost", sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

/* 各項目に番号を振るためのカウンタ設定（任意） */
.feature_list { counter-reset: point-counter; }
.feature_item h3::before {
	counter-increment: point-counter;
	content: "0" counter(point-counter) ". ";
	font-family: "Jost", sans-serif;
	color: #3FA7D1;
	margin-right: 5px;
}

#point h3 {
	font-weight: 700;
	font-size: 22px;
	color: #457B9D;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #EAF6FA;
}

#point p {
	font-size: 15px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 0; /* 余分なマージンをカット */
	text-align: left; /* 本文は読みやすく左寄せ */
}
/* ---------------------------------------------------------
	CSS Document access
--------------------------------------------------------- */

.shop_anchor {
	margin-bottom: 60px;
}

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

.shop_anchor a {
	display: block;
	min-width: 140px;
	padding: 12px 20px;
	border: 1px solid var(--main-color);
	color: var(--main-color);
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s;
	opacity: 1;
}

.shop_anchor a:hover {
	background: var(--main-color);
	color: #fff;
}

.shop_card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	scroll-margin-top: 160px;
	margin-bottom: 100px;
	padding: 40px;
	background: #fff;
	border: 1px solid var(--accent-pale);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	text-align: left;
}

.shop_card h3 {
	grid-column: 1 / -1;
	font-size: 32px;
	color: var(--dark-blue);
	border-left: 8px solid var(--main-color);
	padding: 5px 20px;
	margin-bottom: 10px;
}

.p-ladiesalon_sec01_content_img_lg {
	margin-bottom: 10px;
}

.p-ladiesalon_sec01_content_img_lg img {
	border-radius: 10px;
}

.p-ladiesalon_sec01_content_info_img {
	display: flex;
	justify-content: space-between;
}

.p-ladiesalon_sec01_content_info_img img {
	border-radius: 5px;
}

/* 情報エリア */
.shop_info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--bg-light);
	padding: 30px;
	border-radius: 10px;
}

.shop_info p {
	margin-bottom: 20px;
	padding-left: 35px;
	line-height: 24px;
	position: relative;
}

.shop_info p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
}

/* アイコン指定（パスは環境に合わせて調整してください） */
.shop_address::before { background-image: url(../images/map.svg); }
.shop_access::before { background-image: url(../images/car.svg); }
.shop_open::before { background-image: url(../images/clock.svg); }
.shop_tel::before { background-image: url(../images/phone.svg); }
.shop_payment::before { background-image: url(../images/payment.svg); }

.shop_tel a {
	font-size: 24px;
	font-weight: bold;
	color: var(--dark-blue);
	text-decoration: none;
}

/* ボタン類 */
.shop_buttons:not(.sp) {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.infoBtn {
	padding: 10px 20px;
	border-radius: 5px;
	border: 1px solid #ccc;
	background: #fff;
	text-decoration: none;
	font-size: 14px;
	color: var(--text-color);
	transition: 0.3s;
	opacity: 1;
}

.infoBtn:hover {
	background: #f0f0f0;
}

.instagram_icon {
	width: 44px;
	height: 44px;
	padding: 10px;
	border-radius: 100%;
	background: var(--main-color);
	opacity: 1;
}

.instagram_icon:hover {
	transform: scale(1.1);
}

/* 予約エリア (右側下部) */
.shop_yoyaku {
	grid-column: 1 / -1;
	text-align: center;
	padding-top: 20px;
	border-top: 1px dashed var(--accent-pale);
}

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

.reserve_flex {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.reserveBtn {
	flex: 1;
	padding: 15px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
	transition: all 0.3s;
	opacity: 1;
}

.reserveBtn[href*="hotpepper"] { background-color: #F5B110; }
.reserveBtn.line { background-color: #06C755; }

.reserveBtn:hover {
	opacity: 0.8;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* マップエリア */
.shop_map {
	grid-column: 1 / -1;
	display: block;
	margin-top: 30px;
}

.shop_map iframe {
	width: 100%;
	height: 350px;
	border-radius: 10px;
	filter: grayscale(0.2);
}
