@charset "UTF-8";

/* =========================================
   ヴィクトリアサロンページ 特有のスタイル
   ========================================= */

body {
    padding-bottom: 80px; /* 固定フッターの余白 */
}

.salon-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 40px;
}

.salon-header h1 {
    font-size: 2.8rem;
    margin: 0;
    padding: 15px 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: inline-block;
    color: var(--gold);
    font-family: "Yuji Syuku", serif;
}

/* コンテンツエリア */
.content-wrapper {
    display: flex;
    gap: 40px;
}

/* テキストカラム */
.text-column {
    flex: 1.2;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--line);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.text-column h2 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--ink);
    font-family: "Yuji Syuku", serif;
}

.text-column h3 {
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: "Yuji Syuku", serif;
}

.text-column p {
    font-size: 1rem;
    line-height: 2.2;
    color: var(--muted);
    margin-bottom: 1em;
}

.text-column ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}

.text-column li {
    position: relative;
    padding: 8px 0 8px 1.5em;
    color: var(--ink);
}

.text-column li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gold);
    font-size: 0.8em;
}

/* 画像カラム */
.image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* グリッドレイアウト（添付HTMLの指定） */
.image-row-2 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.image-row-3 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

/* 固定ナビゲーション */
.fixed-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: rgba(63, 66, 47, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column-reverse;
    }
	
	.salon-header h1 {
		padding: 15px 20px;
	}
}

/* --- 強調箇所のスタイル (末尾に追加) --- */
.text-column strong {
    font-weight: 600;
    color: #fcfaf2; /* 本文色より少し明るく */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 下線 */
}