html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  color: #111;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
}

span {
  display: inline;
  white-space: nowrap;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.no-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-banner {
  background-color: #f7f0de;
  color: #b44;
  text-align: center;
  padding: 15px 10px;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.4em;
  line-height: 1.8;
  width: 100%;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* メインビジュアル */
.background-image {
  background-image: url('img/back01.jpg');
  background-size: 110%; /* 画像の大きさを80%に設定 */
  background-position: center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 画像の繰り返しを無効化 */
  width: 100%;
  height: auto;
}

/* スマホ・タブレットでの高さ調整 */
@media (max-width: 700px) {
  .background-image {
    background-size: 100%; /* 小さい画面では画像を100%に拡大 */
    background-position: top; /* 画像の上部を表示 */
  }
}

/* テキストビジュアル（中央に最大幅を設定） */
.text-visual {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  transform: translateX(0); /* デフォルトは移動なし */
}

@media (min-width: 768px) {
  .text-visual {
    transform: translateX(-10%); /* 大画面のみ左寄せ */
  }
}

.sub-catch {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}

.main-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.2em;
  font-weight: normal;
  line-height: 1.6;
}
.main-title .kira {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
}
.main-title sup {
  font-size: 0.5em;
  vertical-align: bottom;
}

/* サービスバッジ */
.service-text {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-size: clamp(2rem, 6vw, 3rem);
  color: #c39b42;
}

.service-text .line {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-text span.with-bg {
  background: url('img/maruback.png') center/contain no-repeat;
  width: 145px;
  height: 145px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  line-height: 1.2;
}
.service-text span.tall-text {
  height: 150px;
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
}

@media (max-width: 600px) {
  .main-title {
    font-size: 1.5rem;
  }
  .main-title .kira {
    font-size: 2rem;
  }
  .service-text span.with-bg {
    width: 110px;
    height: 110px;
    font-size: 1.2rem;
  }
  .service-text span.tall-text {
    height: 110px;
  }
}

@media (max-width: 600px) {
  .service-text {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .circle-icons {
    gap: 10px;           /* 丸の隙間を狭く */
    padding: 0 5px;
  }

  .circle {
    width: 90px;
    height: 90px;
    font-size: 1.2rem;
    line-height: 1.1;
    padding: 8px;
  }

  .banner-image {
    max-width: 90%;
    margin: 0 auto;
  }
}

.circle-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px; /* ← モバイルでの左右スペース追加 */
}

.circle {
  width: clamp(90px, 18vw, 120px);
  height: clamp(90px, 18vw, 120px);
  border-radius: 50%;
  background: radial-gradient(circle at center, #fdf6e5, #e9dcbf);
  border: 2px solid #d6b56b;
  color: #a37b25;
  font-weight: bold;
  font-size: clamp(1.7rem, 2.7vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  padding: 10px;
}

.banner-container {
  text-align: center;
  margin-top: 0px;
}
.banner-image {
  max-width: clamp(250px, 45vw, 380px); /* ← 小さめに調整 */
  height: auto;
  display: inline-block;
}

@media (max-width: 600px) {
  .banner-image {
    max-width: 75%;   /* スマホ時は85%幅に抑える */
    height: auto;
  }
}

/* セクション画像 */
.section-title-full,
.section-title-inner {
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}

/* 説明ブロック */
.explanation {
  background-color: #f7f0de;
  padding: 60px 20px;
  text-align: center;
}

.main-copy {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
}
.highlight-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0.3em;
  vertical-align: middle;
  position: relative;
  top: -0.3em;
}
.dots {
  font-size: 2.6rem;
  color: #c60000;
  line-height: 0.3;
  letter-spacing: 0.4em;
  margin-bottom: 0.2em;
}

.highlight {
  font-size: 2rem;
  color: #b22222;
  font-weight: bold;
  /* white-space: nowrap; を削除する */
}

.sub-copy {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin: 10px 0;
  line-height: 1.8;
}
.sub-copy2 {
  font-size: 2.2rem;
  letter-spacing: 0.5em;
  margin: 10px 0;
  line-height: 2;
  text-align: center;
}

@media (max-width: 600px) {
  .highlight-block .dots {
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.1em;
  }
  .highlight-block .highlight {
    font-size: 1.1em;
  }
  .main-copy {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
}

/* ヒーローエリア */
.hero-feature {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  background: url('img/back02.jpg') left center/contain no-repeat;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.hero-title-img {
  display: inline-block; /* 中央寄せ */
  max-width: 750px;
  width: 100%;
  height: auto;
}

/* 機能紹介 */
.feature-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto 60px;
  max-width: 1100px;
}
.feature-card {
  width: 300px;
  background: #fff;
  border: 1px solid #e7e1d0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.feature-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.card-text {
  padding: 15px 10px;
  text-align: center;
}
.card-text p {
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.6;
}
.card-text span {
  display: block;
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
}

/* ------------------------------
   KIRAKATSU LIFE 帯
------------------------------ */
.recommend-banner {
  background-color: #fdf6e5;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: clamp(40px, 8vw, 60px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.recommend-banner h2 {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: normal;
  letter-spacing: 0.5em;
  color: #FFFFFF;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}

@media (max-width: 768px) {
  .recommend-banner {
    height: 40px;             /* モバイルではさらに見切らせる */
  }

  .recommend-banner h2 {
    font-size: 3.5rem;
    letter-spacing: 0.3em;
  }
}

/* ------------------------------
   KIRAKATSU LIFE 帯
------------------------------ */
.recommend-banner {
  background-color: #fdf6e5;
  text-align: center;
  padding: 5px 0;             /* 上下余白を極限まで小さく */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;           /* テキストがはみ出ても表示カット */
  line-height: 1;
}

.recommend-banner h2 {
  font-size: 5rem;            /* 大きくして意図的にギリギリ感を出す */
  font-weight: normal;
  letter-spacing: 0.5em;
  color: #FFFFFF;
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .recommend-banner h2 {
    font-size: 3.2rem;
    letter-spacing: 0.3em;
  }
}

/* ------------------------------
   オススメセクション全体
------------------------------ */
.recommend {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}

.recommend-title {
  font-size: 3rem;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  font-weight: normal;
}

.recommend-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  margin-bottom: 40px;
}

.bubble {
  padding: 20px;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
  line-height: 1.6;
  word-break: break-word;
}

/* 吹き出しのしっぽ風 */
.bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: transparent transparent transparent transparent; /* 初期は透明 */
}

/* --- green 吹き出し：しっぽ上 --- */
.bubble.green::after {
  bottom: auto;
  top: -10px;                          /* 上に表示 */
  border-width: 0 10px 10px 10px;      /* 上なし、下に向ける三角 */
  border-color: transparent transparent #b2da9d transparent;
}

/* --- purple 吹き出し：しっぽ上 --- */
.bubble.purple::after {
  bottom: auto;
  top: -10px;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #c7a5e0 transparent;
}

/* 色バリエーション */
.bubble.pink { background: #fce8ea; border: 2px solid #dba6ac; }
.bubble.yellow { background: #fffbd9; border: 2px solid #d6c676; }
.bubble.blue { background: #e2f5fb; border: 2px solid #89c7de; }
.bubble.green { background: #e6f9dd; border: 2px solid #b2da9d; }
.bubble.purple { background: #f1e6fa; border: 2px solid #c7a5e0; }


/* しっぽの色をそれぞれの枠色に合わせる */
.bubble.pink::after {
  border-top-color: #dba6ac;
}
.bubble.yellow::after {
  border-top-color: #d6c676;
}
.bubble.blue::after {
  border-top-color: #89c7de;
}
.bubble.green::after {
  border-top-color: #b2da9d;
}
.bubble.purple::after {
  border-top-color: #c7a5e0;
}


/* 人物イラスト */
.recommend-illustration img {
  max-width: 750px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
}

/* テキスト締め部分 */
.recommend-footer .sub-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem); 
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.recommend-footer .main-copy {
  font-size: clamp(2rem, 4.5vw, 2.8rem); 
  line-height: 1.6;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.4em;
}

.recommend-footer .main-copy .kira {
  font-size: clamp(2.2rem, 5vw, 3rem); 
  color: #c60000;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .bubble {
    width: 140px;
    height: 140px;
    font-size: 0.9rem;
    padding: 15px;
  }
  .recommend-title {
    font-size: 1.5rem;
  }
  .recommend-footer .main-copy {
    font-size: 1.3rem;
  }
  .recommend-footer .main-copy .kira {
    font-size: 1.5rem;
  }
}


.sub-text ruby rt {
  font-size: 0.6rem;
  color: #555;
  letter-spacing: 0.05em;
}

.kira sup {
  font-size: 0.5em;
  vertical-align: bottom;
  position: relative;
  bottom: -0.2em;
}

.merit-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  gap: 40px;
  background: #fff;
}

.merit-title {
  flex: 1 1 200px;
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}
.merit-title h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.4;
  margin: 0;
}
.merit-title .large {
  font-size: clamp(2.5rem, 7vw, 4rem);
  display: block;
}

.merit-list {
  flex: 2 1 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.merit-item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 20px 25px 20px 70px;
  margin-left: 50px;
  max-width: 700px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.merit-badge {
  position: absolute;
  top: 50%;
  left: -45px;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  background-color: #e7d28a;
  border: 2px solid #b28e2a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  z-index: 2;
}

.merit-text {
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  line-height: 1.7;
  padding-left: 5em;        /* インデント用スペース */
  text-indent: -0em;        /* 行頭を左に戻すことで、2行目以降が揃う */
  white-space: normal;
  word-break: break-word;
}

.merit-text .highlight {
  font-size: 2rem;
  font-weight: bold;
  color: #b22222;
  white-space: nowrap;  /* ← 改行を防止 */
  display: inline;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .merit-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 15px;
  }

  .merit-title {
    text-align: center;
  }

  .merit-list {
    width: 100%;
  }

  .merit-item {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* 背景付きセクション全体 */
.merit-bg-section {
  position: relative;
  background-image: url('img/back03.jpg');
  background-size: cover;            /* ← 画面サイズにフィット！ */
  background-position: center center;/* ← どのサイズでも中央表示 */
  background-repeat: no-repeat;
  background-attachment: scroll;     /* ← スクロールに合わせて動く（固定しない） */
  padding: 60px 20px;
  color: #111;
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  overflow: hidden;
}

@media (max-width: 600px) {
  .merit-bg-section {
    background-position: top center;
  }
}

/* 白の薄いオーバーレイレイヤー */
.merit-bg-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 200px),
    rgba(255, 255, 255, 0.7);  /* ← 既存の30%オーバーレイも維持 */
  z-index: 1;
  pointer-events: none;
}

/* 中央コンテンツラップ */
.merit-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* ← 追加：縦方向中央揃え */
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  padding: 40px 30px;
  border-radius: 12px;
}

/* 左：タイトル部分 */
.merit-title {
  flex: 1 1 200px;
  text-align: center;
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-weight: 100;
  color: #111;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); /* ← ほんのり影 */
}

.merit-title h2 {
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.1em;
}

.merit-title .large {
  display: block;
  font-size: clamp(3rem, 7vw, 4rem);
  margin-top: 10px;
}

/* 右：メリットリスト */
.merit-list {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.merit-item {
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.85); /* ← 白の透かし背景 */
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  gap: 20px;
}

/* 丸バッジ */
.merit-badge {
  width: 90px;
  height: 90px;
  background-color: #e7d28a;      /* ベタ塗りの金色系 */
  border: 2px solid #b28e2a;      /* 濃い金枠 */
  border-radius: 50%;             /* 丸形 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  font-family: 'Noto Serif JP', serif;
}

/* 上のテキスト */
.merit-badge .label {
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #b7923a; /* 右下に影文字 */
  line-height: 1;
}

/* 下の数字 */
.merit-badge .number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #b7923a;
  line-height: 1;
  margin-top: 2px;
}

/* テキスト */
.merit-text {
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  line-height: 1.7;
  padding-left: 50px;   /* ← 90px（バッジ）＋30px（余白） */
  text-indent: -0em;   /* ← 不要なら 0 にしてOK */
  white-space: normal;
  word-break: break-word;
}

.merit-text .highlight {
  font-size: 1.5em; /* ここで大きく */
  font-weight: bold;
  color: #b22222;
  white-space: nowrap;
}

/* 赤文字強調 */
.highlight {
  color: #b22222;
  font-weight: bold;
}

.merit-text .highlight {
  font-size: 2rem;
}

/* レスポンシブ：モバイルでは縦並び */
@media (max-width: 768px) {
  .merit-inner {
    flex-direction: column;
    padding: 30px 20px;
  }

  .merit-title {
    text-align: center;
  }

  .merit-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 15px;
  }
}

@media (max-width: 600px) {
  .merit-text .highlight {
    font-size: 1.4rem !important; /* 小さめに調整 */
    white-space: normal !important; /* ← 改行OKにする */
  }
}

span.marker {
    background: linear-gradient(transparent 50%, #ffffff 50%);
}

.plan-heading {
  background-color: #fff4f1;
  padding: 50px 20px 60px;
  text-align: center;
  color: #111;
}

.plan-title-bar {
  display: inline-block;
  padding: 0.2em 1em;
}

.plan-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: normal;
  margin: 0;
  letter-spacing: 0.1em;
  line-height: 1.6;
  display: inline-block;
  white-space: nowrap;
}

.plan-heading .plain {
  font-weight: normal;
}

.plan-heading h2 .marker {
  display: inline-flex;
  gap: 0.3em;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
}

.plan-heading .highlight.kira {
  font-weight: 700;
  font-size: 1.5em;
  color: #111;
  margin: 0 0.2em;
}

.plan-heading sup {
  font-size: 0.7em;
  vertical-align: bottom;
  margin-left: 0.1em;
}

/* 説明文 */
.plan-description {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 2;
  color: #333;
}

.plan-description p {
  margin: 10px 0;
}

/* 引用部分 */
.plan-quotes {
  margin: 30px 0;
  color: #c66;
  font-weight: bold;
}

.plan-quotes p {
  margin: 8px 0;
}

@media (max-width: 600px) {
  .plan-heading h2 {
    font-size: 1.6rem;
    white-space: normal;
  }

  .plan-title-bar {
    padding: 0.4em 0.8em;
  }

  .plan-description {
    font-size: 1rem;
    padding: 0 10px;
  }
}

.subscription {
  background-color: #fff4f1;
  padding: 60px 20px;
  text-align: center;
}

.subscription-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f08080;
  margin-bottom: 10px;
  font-family: 'Noto Serif JP', serif;
}

.subscription-subtitle {
  font-size: 1.5rem;
  color: #c88;
  margin-bottom: 30px;
  font-family: 'Noto Serif JP', serif;
}

.subscription-table-wrap {
  overflow-x: auto;
  max-width: 1000px;
  margin: 0 auto;
}

.subscription-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Serif JP', serif;
  background-color: #fff;
  border: 2px solid #f5cfcf;
}

.subscription-table th,
.subscription-table td {
  border: 1px solid #f2bcbc;
  padding: 12px 8px;
  text-align: center;
  font-size: 1rem;
}

.subscription-table thead {
  background-color: #fcdada;
  color: #b44;
  font-weight: bold;
}

.subscription-table tbody tr:nth-child(even) {
  background-color: #fff9f9;
}

@media (max-width: 600px) {
  .subscription-title {
    font-size: 1.6rem;
  }
  .subscription-subtitle {
    font-size: 1.2rem;
  }
  .subscription-table th,
  .subscription-table td {
    font-size: 0.9rem;
    padding: 8px 6px;
  }
}

.subscription-note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
  text-align: left;
  padding: 0 10px;
  font-family: 'Noto Serif JP', serif;
}

/* ▼ キャッチコピー用のセクション（見出し＋説明） */
.hero-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  max-width: 100%;
  box-sizing: border-box;
}

/* 大見出し用スタイル */
.hero-caption h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #111;
  background: rgba(255, 255, 255, 0.9);  /* 白半透明 */
  padding: 20px 40px;
  border-radius: 12px;
  text-align: center;
}

/* 小見出し用スタイル */
.hero-caption p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #333;
  background: rgba(255, 255, 255, 0.8);  /* 白半透明 */
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  letter-spacing: 0.15em;
}

.salon-header {
  position: relative;
  width: 100vw;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  background: url('img/your-background.jpg') center center / cover no-repeat;
  overflow: hidden;
}

/* 背景全体の白フィルターを足したい場合（オプション） */
.salon-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255,255,255,0.2); /* ← さらに写真全体に白フィルム */
  z-index: 0;
}

/* ▼ このブロック全体が白い透かしの背景になる */
.hero-background {
  background: rgba(255, 255, 255, 0.20); /* 白＋透過 */
  padding: 40px 60px;
  border-radius: 16px;
  text-align: center;
  max-width: 90%;
  position: relative;
  z-index: 1; /* 背景画像より前面に */
}

/* タイトル文字 */
.hero-background h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: #111;
  margin-bottom: 20px;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.1em;
}

/* サブタイトル */
.hero-background p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #444;
  letter-spacing: 0.15em;
  font-family: 'Noto Serif JP', serif;
  margin: 0;
}

.salon-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('img/salonback.jpg') center center / cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 0px 30px 10px; /* ← 白ブロックも少しだけコンパクトに */
  border-radius: 0px;
  box-shadow: none; 
  max-width: 90%;
}

.hero-inner h2 .kira {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
}

/* 見出し・サブテキストも整える */
.hero-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #111;
  margin-bottom: 12px; /* ← 少し詰める */
  font-family: 'Noto Serif JP', serif;
}

.hero-inner p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #555;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
  margin: 0;
}


.salon-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  background-color: #fff;
  max-width: 1000px;   /* ← 中央寄せの幅（お好みで調整） */
  margin: 0 auto;      /* ← 水平方向に中央配置 */
}

.salon-box {
  display: flex;
  align-items: flex-start;
  background: transparent; /* ← 背景を完全に透明に */
  padding: 20px 0;          /* ← 上下にだけ余白、左右は削除 */
  border-radius: 0;         /* ← 角丸を解除 */
  box-shadow: none;         /* ← シャドウを削除 */
  gap: 20px;
  flex-wrap: wrap;
}

/* 横並びで2枚表示 */
.salon-images {
  flex: 1 1 360px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.salon-images img {
  width: 50%;
  border-radius: 8px;
  object-fit: cover;
}

.salon-detail {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 0px 0px 0px 10px;
  letter-spacing: 0.1em;
}

.salon-detail h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #222;
  margin: 0;
}

.salon-detail p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

/* SNSアイコン：右寄せ + 行間確保 */
.sns-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.sns-icons a img {
  width: 42px;
  height: 42px;
}

.kirakatsu-btn {
  display: inline-block;
  background: linear-gradient(135deg, #fcb5d2, #f38181);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease;
  line-height: 1;
}

.kirakatsu-btn:hover {
  background: linear-gradient(135deg, #f38181, #fcb5d2);
  transform: translateY(-2px);
}

/* モバイル対応 */
@media screen and (max-width: 480px) {
  .sns-icons {
    justify-content: flex-start;
    gap: 12px;
  }

  .sns-icons a img {
    width: 36px;
    height: 36px;
  }

  .kirakatsu-btn {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .salon-box {
    flex-direction: column;
    text-align: left;
  }

  .salon-images {
    flex-direction: row;
    width: 100%;
  }

  .salon-images img {
    width: 50%;
  }

  .salon-detail {
    align-items: flex-start;
  }

  .sns-icons {
    justify-content: center;
  }
}


.kira-step-title {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #fff;
  font-family: 'Noto Serif JP', serif;
}

.kira-step-title h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: #111;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.kira-subtitle p {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: #333;
}

.kira-step-title h2 .kira {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
}

/* 強調されたサブ見出し（大きめ＋太字） */
.subtitle-bold {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: bold;
  margin-bottom: 6px;
}

/* 補足サブ見出し（小さめ） */
.subtitle-small {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 400;
  color: #666;
}

.kira-flow-section {
  border-radius: 24px; /* ← 角丸を強めに */
  background: #fef8ef;
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  color: #333;
}

/* お申込みバナー */
.kira-flow-banner {
  text-align: center;
  margin: 40px 0 30px;
}

.kira-flow-banner img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* ステップ全体 */
.kira-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  text-align: left;
  width: 100%;
  max-width: 760px;        /* ← 全体の中心に収める */
  padding-left: 40px;      /* ← 少し右寄せ感を出す */
  box-sizing: border-box;
}

/* 各ステップ行 */
.flow-step {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-circle {
  min-width: 80px;
  height: 80px;
  border: 2px solid #cfa85a;
  background: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  color: #cfa85a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* テキスト部分 */
.step-text h3 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #cfa85a;
  margin-bottom: 0px;
  line-height: 1.4;
}

.step-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

.step-text a {
  color: #c4621c;
  text-decoration: underline;
}

/* 入会特典 */
.kira-bonus-box {
  background: #fff;
  border-radius: 24px;
  padding: 30px 20px;
  margin-top: 60px;
  font-family: 'Noto Serif JP', serif;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* 上部：バッジと大見出し */
.kira-bonus-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.bonus-badge {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

.bonus-headline {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
}

.kira {
  font-weight: bold;
  font-size: 2rem;
}

.highlight {
  display: block;
  color: #c00;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}

/* 下部：テキスト＋画像 */
.kira-bonus-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;  
  max-width: 590px; 
  margin: 0 auto;   
}

.bonus-text {
  flex: 1 1 300px;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
}

.bonus-note {
  color: #c00;
  font-weight: bold;
  margin-top: 10px;
}

.bonus-img-box {
  flex: 0 0 200px;
}

.bonus-img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .bonus-headline {
    font-size: 1.6rem;
  }

  .highlight {
    font-size: 1.5rem;
  }

  .kira-bonus-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bonus-text {
    text-align: center;
  }
}

.site-footer {
  background-color: #fff;
  color: #666;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif JP', serif;

  /* 念のための中央寄せ保険 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.sup-align {
  vertical-align: baseline;
  font-size: 0.75em; /* サイズはお好みで */
  position: relative;
  bottom: -0.3em; /* さらに下げたい場合 */
}

/* ==== アニメーション効果（ふわっと表示） ==== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.section {
    width: 100%;
    margin-bottom: 80px; /* セクション間の標準的な余白 */
    text-align: center;
}

.inner {
    max-width: 960px; /* 既存コンテンツの幅に合わせる */
    margin: 0 auto;
    padding: 0 20px; /* 左右の余白 */
    box-sizing: border-box;
}

/* キラ活お試しコース固有のスタイル */
#kirakatsu-trial-course {
    background-color: #fcf8f7; /* 薄いピンク系 */
    padding: 60px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* わずかな影 */
    border-radius: 10px;
}

#kirakatsu-trial-course .section-title {
    font-size: 2.2em; /* 既存のh2に合わせる */
    color: #d62d20; /* キラ活の赤 */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

#kirakatsu-trial-course .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d62d20;
    margin: 10px auto 0;
}

.description-text {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-offer-box {
    background-color: #fff;
    border: 2px solid #ffccdd; /* 薄いピンクのボーダー */
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-offer-box .catch-phrase {
    font-size: 1.3em;
    color: #d62d20; /* キラ活の赤 */
    font-weight: bold;
    margin-bottom: 15px;
}

.price-offer-box .price-highlight {
    font-size: 2.8em;
    font-weight: bold;
    color: #008080; /* 目を引くターコイズ系 */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    display: block; /* 縦に並べるため */
}

.price-offer-box .original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.7em;
    margin-right: 10px;
}

.price-offer-box .coupon-price {
    font-size: 1.2em; /* 親要素の2.8emに対して */
}

.price-offer-box .tax-info {
    font-size: 0.5em;
    vertical-align: super;
}

.price-offer-box .special-bonus {
    font-size: 1.3em;
    font-weight: bold;
    color: #d62d20;
    background-color: #ffe0e6; /* 薄い赤系の背景 */
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.price-offer-box .note-text {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
}

.subsection-title {
    font-size: 1.8em;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.subsection-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #d62d20;
    margin: 8px auto 0;
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px; /* リスト全体の幅 */
}

.treatment-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    width: calc(50% - 20px); /* 2列表示のための計算 */
    box-sizing: border-box;
    text-align: left;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
}

.treatment-item .check-icon {
    display: inline-block;
    width: 20px; /* アイコンの幅 */
    height: 20px; /* アイコンの高さ */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23008080"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>'); /* SVGチェックマークアイコン */
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
    vertical-align: middle;
}

.button-area {
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ff6347; /* 目を引くオレンジ系 */
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255,99,71,0.3);
    transition: background-color 0.3s ease;
    text-align: center;
    line-height: 1;
}

.btn-primary:hover {
    background-color: #e6523a; /* ホバー時の色 */
}

/* PC表示では改行を非表示にする */
.sp-br {
    display: none;
}
/* スマホ表示では改行を非表示にする */
.pc-br {
    display: none;
}

/* レスポンシブ対応 - スマートフォン向け修正 */
@media (max-width: 768px) {
    .sp-br {
        display: block; /* または inline */
    }

    .description-text {
        white-space: normal; /* 通常の改行挙動を維持 */
        word-break: break-word; /* 長い単語でも改行 */
    }
    

    .price-offer-box .special-bonus {
        white-space: normal; /* 通常の改行挙動を維持 */
        word-break: break-all; /* 長い単語でも強制改行 */
        line-height: 1.4; /* 行の高さ調整 */
    }

    #kirakatsu-trial-course {
        padding: 40px 0;
    }
    #kirakatsu-trial-course .section-title {
        font-size: 1.8em;
    }
    .description-text {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .price-offer-box {
        padding: 25px 15px;
        margin-bottom: 40px;
    }
    .price-offer-box .catch-phrase {
        font-size: 1.1em;
    }
    .price-offer-box .price-highlight {
        font-size: 2.2em;
    }
    .price-offer-box .special-bonus {
        font-size: 1.1em;
        padding: 8px 10px;
    }
    .subsection-title {
        font-size: 1.5em;
    }
    .treatment-list {
        flex-direction: column;
        gap: 15px;
    }
    .treatment-item {
        width: 100%;
        padding: 15px;
        font-size: 1em;
    }
    .treatment-item .check-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    .btn-primary {
        font-size: 1.5em;
        padding: 15px 30px;
    }
}

/* PC表示向け追加 */
@media (min-width: 769px) { /* 769px以上で適用 (PC表示) */
    .pc-br {
        display: block; /* PC表示では.pc-brを表示する */
    }
    .description-text,
    .price-offer-box .special-bonus {
        white-space: normal; /* ブラウザの通常改行挙動 */
    }
}

@media (max-width: 480px) {
    .inner {
        padding: 0 15px;
    }
    #kirakatsu-trial-course .section-title {
        font-size: 1.6em;
    }
    .price-offer-box .price-highlight {
        font-size: 1.8em;
    }
    .price-offer-box .original-price {
        font-size: 0.8em;
    }
    .price-offer-box .coupon-price {
        font-size: 1.1em;
    }
}

/* 全体的なリセット・ベーススタイル */
body {
    margin: 0;
    padding: 0;
    font-family: 'Yu Gothic', 'Meiryo', sans-serif; /* キラ活LPのフォントに合わせる */
    color: #333;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%; /* iOSでの文字サイズ自動調整をオフに */
}

*, *::before, *::after {
    box-sizing: border-box; /* paddingとborderを要素の幅・高さに含める */
}

a {
    text-decoration: none;
    color: inherit; /* リンクの色を親要素から継承 */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom; /* 画像の下にできる余白をなくす */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}


/* ==================================== */
/* キラ活お試し体験予約ページ固有のスタイル */
/* ==================================== */

/* 全体的なリセット・ベーススタイル */
body {
    margin: 0;
    padding: 0;
    font-family: 'Yu Gothic', 'Meiryo', sans-serif; /* キラ活LPのフォントに合わせる */
    color: #333;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%; /* iOSでの文字サイズ自動調整をオフに */
}

*, *::before, *::after {
    box-sizing: border-box; /* paddingとborderを要素の幅・高さに含める */
}

a {
    text-decoration: none;
    color: inherit; /* リンクの色を親要素から継承 */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom; /* 画像の下にできる余白をなくす */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

/* 共通セクションスタイル */
.section {
    width: 100%;
    margin-bottom: 80px; /* セクション間の標準的な余白 */
    text-align: center;
}

.inner {
    max-width: 960px; /* 既存コンテンツの幅に合わせる */
    margin: 0 auto;
    padding: 0 20px; /* 左右の余白 */
    box-sizing: border-box;
}

/* PC/SP表示切り替え用クラス */
.sp-br {
    display: none; /* デフォルト（PC）では非表示 */
}

.pc-br {
    display: block; /* デフォルト（PC）では表示 */
}

/* 全体的なリセット・ベーススタイル */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Serif JP', 'Yu Mincho', serif;
    color: #333;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%; /* iOSでの文字サイズ自動調整をオフに */
}

*, *::before, *::after {
    box-sizing: border-box; /* paddingとborderを要素の幅・高さに含める */
}

a {
    text-decoration: none;
    color: inherit; /* リンクの色を親要素から継承 */
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom; /* 画像の下にできる余白をなくす */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

/* 共通セクションスタイル */
.section {
    width: 100%;
    margin-bottom: 80px; /* セクション間の標準的な余白 */
    text-align: center;
}

.inner {
    max-width: 960px; /* 既存コンテンツの幅に合わせる */
    margin: 0 auto;
    padding: 0 20px; /* 左右の余白 */
    box-sizing: border-box;
}

/* PC/SP表示切り替え用クラス */
.sp-br {
    display: none; /* デフォルト（PC）では非表示 */
}

.pc-br {
    display: block; /* デフォルト（PC）では表示 */
}

/* ==================================== */
/* キラ活お試し体験予約ページ固有のスタイル */
/* ==================================== */

/* ページタイトル「キラ活お試し体験予約はこちら」 */
.page-title {
    font-size: 2.8em;
    color: #d62d20; /* キラ活のテーマカラーに合う赤系 */
    margin-bottom: 50px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
    font-weight: bold;
}

/* -- NEW: おしゃれなタイトルデザインのためのスタイル -- */
.page-title.deluxe-title {
    font-weight: normal; /* 個別のspanで調整するため、親はリセット */
    line-height: 1.2; /* 行間を調整 */
}

.page-title.deluxe-title .title-main {
    display: block; /* 独立したブロック要素に */
    font-size: 1.3em; /* メイン部分を大きく */
    font-weight: bold;
    color: #d62d20; /* キラ活の赤 */
    letter-spacing: 0.05em; /* 文字間を少し開ける */
    position: relative;
    padding-bottom: 10px; /* 下線とのスペース */
}

.page-title.deluxe-title .title-sub {
    display: block; /* 独立したブロック要素に */
    font-size: 0.7em; /* サブ部分を小さく */
    color: #555; /* 少し控えめな色 */
    margin-top: 5px; /* 上とのスペース */
    letter-spacing: 0.02em;
}

/* 既存の下線（もしあれば）は非表示にするか、上記の::afterと統合 */
.page-title::after {
    /* ここは上記の.deluxe-title .title-main::afterに引き継がれるため、
       このセレクタが重複しないように注意するか、削除してください */
    content: none; /* 既存の下線を非表示に */
}
/* -- NEW END -- */


/* 各セクション見出し「【施術内容】」「キラ活体験予約が出来る店舗一覧」 */
.section-heading.styled-heading {
    font-size: 2em;
    color: #555;
    margin-bottom: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.8),
                 2px 2px 0px rgba(0,0,0,0.05);
    letter-spacing: 0.05em;
}

/* 施術内容リスト */
.treatment-details-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 60px;
    max-width: 600px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.treatment-details-list li {
    font-size: 1.1em;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    position: relative;
}

.treatment-details-list li:last-child {
    border-bottom: none;
}

.treatment-details-list li::before {
    content: '✔︎'; /* チェックマーク */
    color: #008080; /* キラ活のターコイズ系 */
    font-weight: bold;
    margin-right: 10px;
}

/* 店舗一覧セクション */
.store-list-section {
    margin-top: 60px;
}

.store-item {
    background-color: #fff;
    border: 1px solid #ffccdd; /* キラ活の薄いピンク系 */
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex; /* 写真とマップを横並びにする */
    flex-wrap: wrap; /* スマホで折り返す */
    align-items: flex-start; /* 上揃え */
    text-align: left;
}

.store-info {
    flex: 1;
    min-width: 280px;
    padding-right: 20px;
    box-sizing: border-box;
}

.store-name {
    font-size: 1.8em;
    color: #d62d20; /* キラ活の赤 */
    margin-top: 0;
    margin-bottom: 20px;
}

.store-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.store-map {
    flex: 1;
    min-width: 320px;
    height: 320px; /* マップの高さ */
    border-radius: 8px;
    overflow: hidden; /* マップの角丸のために */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.store-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 予約ボタン */
.btn-booking {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6347; /* 目を引くオレンジ系 */
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255,99,71,0.3);
    transition: background-color 0.3s ease;
    text-align: center;
    line-height: 1;
    margin-top: 25px;
}

.btn-booking:hover {
    background-color: #e6523a; /* ホバー時の色 */
}

/* ==================================== */
/* レスポンシブデザイン */
/* ==================================== */

/* PC表示 (769px以上) */
@media (min-width: 769px) {
    .pc-br {
        display: block; /* PCでは<br class="pc-br">を表示 */
    }
    .sp-br {
        display: none; /* PCでは<br class="sp-br">を非表示 */
    }

    /* 「初めての美容室で、いきなりサブスクはちょっと不安…」などの文章の改行なし（word-breakに任せる） */
    .description-text,
    .price-offer-box .special-bonus {
        white-space: normal;
    }
}


/* タブレット・スマートフォン表示 (768px以下) */
@media (max-width: 768px) {
    .section {
        margin-bottom: 60px;
    }
    .inner {
        padding: 0 15px;
    }

    /* PC専用改行を非表示、SP専用改行を表示 */
    .pc-br {
        display: none;
    }
    .sp-br {
        display: block;
    }

    /* ページタイトル */
    .page-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-title::after {
        width: 80px;
        height: 3px;
    }

    /* -- NEW: おしゃれなタイトルデザインのためのスタイル（スマホ版） -- */
    .page-title.deluxe-title .title-main {
        font-size: 1em; /* スマホでは少し小さく */
        padding-bottom: 8px;
    }
    .page-title.deluxe-title .title-main::after {
        width: 80px; /* スマホでは下線幅も小さく */
        height: 2px;
        margin: 8px auto 0;
    }
    .page-title.deluxe-title .title-sub {
        font-size: 0.6em; /* スマホではサブも小さく */
        margin-top: 3px;
    }
    /* -- NEW END -- */


    /* 各セクション見出し */
    .section-heading.styled-heading {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .section-heading.styled-heading::after {
        width: 60px;
        height: 2px;
    }

    /* 施術内容リスト */
    .treatment-details-list {
        margin-bottom: 40px;
        font-size: 0.95em;
    }
    .treatment-details-list li {
        padding: 10px 15px;
    }

    /* 店舗一覧セクション */
    .store-item {
        flex-direction: column; /* スマホでは縦並び */
        padding: 20px;
    }
    .store-info {
        padding-right: 0;
        margin-bottom: 30px; /* 情報とマップの間にスペース */
        min-width: unset; /* 最小幅を解除 */
    }
    .store-name {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    .store-map {
        min-width: unset; /* 最小幅を解除 */
        width: 100%;
        height: 250px; /* スマホでのマップ高さ */
    }
    .btn-booking {
        font-size: 1.2em;
        padding: 12px 25px;
        margin-top: 20px;
    }
}

/* スマートフォン表示 (480px以下) */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.8em; /* このセレクタは.deluxe-titleで上書きされるため影響なし */
    }
    .section-heading.styled-heading {
        font-size: 1.4em;
    }
    .treatment-details-list li {
        font-size: 1em;
        padding: 8px 10px;
    }
    .store-name {
        font-size: 1.3em;
    }
    .btn-booking {
        font-size: 1.1em;
        padding: 10px 20px;
    }
}
