@charset "UTF-8";

/* =========================================
   スターラインサロンページ 特有のスタイル
   ========================================= */

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

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

.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;
}

@media (max-width: 768px) {
  .salon-header h1 {
    padding: 15px 20px;
  }
}

/* --- コンテンツエリア (2カラム) --- */
.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: 40px;
  color: var(--ink);
  font-family: "Yuji Syuku", serif;
}

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

.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);
}

/* 画像グリッド */
.main-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* --- 固定ナビゲーション (下部) --- */
.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;
  }
}