/* ===== SP専用スタイル（max-width: 768px、印刷時は無効） ===== */
@media screen and (max-width: 768px) {
  /* ----- コンテナ ----- */
  .container {
    width: 100%;
    padding: 0 var(--sp-padding);
  }

  /* ----- body：SP固定フッターCTA分のpadding ----- */
  body {
    padding-bottom: 70px;
  }


.disp_pc{
    display: none;
}
.disp_sp{
    display: block;
}

  /* ========================================
     ヘッダー（SP）
     ======================================== */
  #site-header {
    height: var(--header-height-sp);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height-sp);
    padding: 0 12px;
  }

  .header-logo-wrap {
    display: flex;        /* 追加：フレックスコンテナにする */
    align-items: center;  /* 追加：縦中央揃え */
    flex-shrink: 0;       /* 追加：wrap自体が縮まないように */  
    gap: 8px;
  }

  .header-logo-img {
    height: 12px;
    width: auto;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .header-site-name {
    display: block;
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 10px;
    color: var(--color-text-dark);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  /* PCナビはSPで非表示 */
  .header-nav {
    display: none;
  }

  /* ハンバーガーボタン */
  .hamburger {
    display: flex;
  }

  /* ========================================
     MVセクション（SP）
     ======================================== */
  #mv {
    padding-top: 0;
  }

  /* メイン画像エリア */
  .mv-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: #ddd9d3;
  }

  /* 背景画像：object-fit: cover で可変SP幅に対応 */
  .mv-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .mv-hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    max-width: none;
  }

  /* 左パネル（キャッチコピー + 告知帯） */
  .mv-left-panel {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 20px;
  }

  /* キャッチコピーボックス */
  .mv-catch-box {
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    min-height: 123px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    text-align: center;
    letter-spacing: 0.2em;
  }

  .mv-sub {
    font-family: var(--font-serif-jp);
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 10px;
  }

  .mv-catch {
    font-family: var(--font-serif-jp);
    font-weight: 400;
    font-size: 32px;
    color: #000;
    line-height: 1.3;
    white-space: nowrap;
  }

  /* 予告帯（白ラベル + 緑バンド） */
  .mv-yokoku-wrap {
    width: 100%;
  }

  .mv-yokoku-label {
    background: var(--color-white);
    padding: 6px 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
  }

  .mv-yokoku-label dt,
  .mv-yokoku-label dd {
    margin: 0;
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary);
    line-height: 1.3;
  }

  .mv-yokoku-band {
    background: var(--color-primary);
    /*height: 90px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 10px;
    letter-spacing: 0.1em;
  }

  .mv-yokoku-band p {
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1.4;
  }

  /* PC右下CTAはSPで非表示 */
  .mv-cta-pc {
    display: none;
  }

  /* スクロール帯 */
  .mv-scroll-band {
    background: var(--color-bg-cream);
    padding: 14px;
    text-align: center;
  }

  .mv-scroll-band span {
    font-family: var(--font-sans-jp);
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* 宣伝帯（SP版：2行、60px） */
  .mv-promo-band {
    background: var(--color-mv-promo-bg);
    border-top: 1px solid var(--color-mv-promo-border);
    border-bottom: 1px solid var(--color-mv-promo-border);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    text-align: center;
  }

  .mv-promo-band p {
    font-family: var(--font-sans-jp);
    font-weight: 900;
    font-size: 14px;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    line-height: 1.5;
  }

  /* ========================================
     区画図セクション（SP）
     ======================================== */
  #plotmap {
    background: var(--color-bg-cream);
    padding: 48px 0;
  }

  #plotmap .section-heading {
    margin-bottom: 24px;
  }

  #plotmap .section-title,
  #smart .section-title,
  #location .section-title,
  #overview .section-title {
    font-size: 26px;
    line-height: 1.5;
  }

  #plotmap .section-subtitle {
    font-size: 16px;
    font-weight: 500;
  }

  /* SP：縦並び */
  .plotmap-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .plotmap-map {
    width: 100%;
  }

  .plotmap-map img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
  }

  /* 販売スケジュールカード */
  .plotmap-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .plotmap-card-title {
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text-dark);
    padding-bottom: 11px;
    border-bottom: 1px solid var(--color-border-light);
  }

  .plotmap-schedule-row {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .plotmap-schedule-row--last {
    border-bottom: none;
    padding-bottom: 0;
  }

  .plotmap-phase {
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary);
    line-height: 2;
  }

  .plotmap-detail {
    color: var(--color-text-mid);
  }

  .plotmap-legend {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border-light);
    flex-wrap: wrap;
  }

  .plotmap-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .plotmap-legend-dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .plotmap-legend-label {
    font-family: var(--font-sans-jp);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-mid);
    white-space: nowrap;
  }

  /* 右カラムラッパー */
  .plotmap-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* 区番テーブル */
  .plotmap-table-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .plotmap-lot-table {
    width: 160px;
    flex-shrink: 0;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .plotmap-lot-table th,
  .plotmap-lot-table td {
    padding: 5px 0px;
    border: 1px solid #609364;
    text-align: center;
    white-space: nowrap;
  }

  .plotmap-lot-table th {
    background: var(--color-primary)
    color: var(--color-white);
  }

  .plotmap-lot-table td {
    background: var(--color-white);
    color: #000;
  }

  .plotmap-lot-table th:first-child {
    width: 40px;
  }

  .plotmap-lot-table td.lot-onsale {
    background: #F4D29E;
  }

  .plotmap-lot-table td.lot-house {
    background: #F5D0DF;

  }

  .plotmap-lot-table tr.lot-empty td {
    height: 32px;
    padding: 0;
  }

  /* ========================================
     各セクション（SP）— プレースホルダー
     ======================================== */

  /* ========================================
     コンセプトセクション（SP）
     ======================================== */
  #concept {
    padding: 48px 0 48px;
  }

  #concept::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/concept-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
  }

  #concept .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .concept-box {
    background: var(--color-white);
    width: 100%;
    padding: 32px 20px;
  }

  .concept-box-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .concept-main-title {
    font-family: var(--font-serif-jp);
    font-weight: 500;
    font-size: 24px;
    color: var(--color-text-dark);
    letter-spacing: 0.2em;
    line-height: 1.5;
  }

  .concept-body,
  .concept2-body {
    font-family: var(--font-sans-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
  }

  .concept-body {
    color: var(--color-text-mid);
    text-align: justify;
  }

  .concept-dividers {
    display: flex;
    gap: 12px;
    margin-top: 4px;
  }

  .concept-divider {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-border);
  }

  .concept-mid-text {
    font-family: var(--font-serif-jp);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-primary);
    letter-spacing: 0.0em;
    text-align: center;
    line-height: 1.5;
  }

  /* 3カード縦並び */
  .concept-pillars {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    background: var(--color-border);
    border-radius: 2px;
    overflow: hidden;
  }

  .concept-pillar {
    background: var(--color-primary);
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
  }

  .pillar-label {
    font-family: var(--font-display-en);
    font-style: normal;
    font-size: 12px;
    color: var(--color-white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
  }

  .pillar-sep {
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
  }

  .pillar-title {
    font-family: var(--font-serif-jp);
    font-weight: 400;
    font-size: 23px;
    color: var(--color-white);
    letter-spacing: 0.0em;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .pillar-text {
    color: var(--color-white);
    text-align: justify;
  }

  /* ========================================
     コンセプト2セクション（SP）
     ======================================== */
  #concept2 {
    background-color: var(--color-bg-cream);
    padding: 48px 0;
  }

  #concept2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/concept2-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
  }

  #concept2 .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .concept2-theme {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    margin-bottom: 20px;
  }

  .concept2-theme-label {
    font-family: var(--font-serif-jp);
    font-weight: 400;
    font-size: 12px;
    color: var(--color-primary);
    letter-spacing: 0.2em;
  }

  .concept2-theme-title {
    font-family: var(--font-serif-jp);
    font-weight: 500;
    font-size: 22px;
    color: var(--color-primary);
    letter-spacing: 0.0em;
    line-height: 1.4;
  }

  .concept2-main-heading {
    font-family: var(--font-serif-jp);
    font-weight: 500;
    font-size: 28px;
    color: var(--color-text-dark);
    letter-spacing: 0.0em;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .concept2-body {
    color: var(--color-text-dark);
    text-align: justify;
    margin-bottom: 32px;
  }

  /* SP：写真が上、テキストが下 */
  .concept2-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .concept2-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    display: block;
  }

  .concept2-features {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .concept2-feature {
    padding-bottom: 18px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-border-light);
  }

  .concept2-feature--last {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .concept2-feature-title {
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text-dark);
    margin-bottom: 6px;
    line-height: 1;
  }

  .concept2-feature-text {
    color: var(--color-text-dark);
    text-align: justify;
  }

  /* ========================================
     CTA1セクション（SP）
     ======================================== */
  #cta1 {
    background: var(--color-primary);
    padding: 48px 0;
  }

  .cta1-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 var(--sp-padding);
    text-align: center;
  }

  .cta1-title {
    font-family: var(--font-serif-jp);
    font-weight: 500;
    font-size: 24px;
    color: var(--color-white);
    letter-spacing: 0.2em;
    text-align: center;
    line-height: 1.4;
  }

  .cta1-body {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
  }

  .cta1-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta1-btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
  }

  .cta1-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--color-white);
    font-family: var(--font-sans-jp);
    font-weight: 500;
    font-size: 16px;
    border-radius: 1px;
    transition: background-color 0.2s ease;
    text-decoration: none;
  }

  .cta1-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  /* ========================================
     スマート＆レジリエンスセクション（SP）
     ======================================== */
  #smart {
    background: var(--color-bg-cream);
    padding: 48px 0;
  }

  #smart .section-heading {
    margin-bottom: 32px;
  }

  #smart .section-subtitle {
    font-size: 16px;
    color: var(--color-text-mid);
    line-height: 1.6;
    margin-top: 10px;
    text-align: left;
  }

  /* SP：縦1列 */
  .smart-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .smart-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 2px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
  }

  .smart-card-img {
    width: 100%;
    height: 180px;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 1px;
  }

  .smart-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .smart-card-title {
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text-dark);
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .smart-card-title-sub {
    font-size: 14px;
  }

  .smart-card-text {
    font-family: var(--font-sans-jp);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-mid);
    line-height: 1.6;
    text-align: justify;
  }

  .smart-card-note {
    margin-top: 10px;
     line-height: 1.4;
     font-size: 12px;
  }

  /* ========================================
     ロケーションセクション（SP）
     ======================================== */
  #location {
    background: var(--color-white);
    padding: 48px 0;
  }

  .location-heading {
    margin-bottom: 28px;
  }

  .location-main-title {
    font-family: var(--font-serif-jp);
    font-weight: 400;
    font-size: 20px;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin-top: 14px;
  }

  .location-body-text,
  .location-cat-list {
    font-family: var(--font-sans-jp);
    font-size: 14px;
    line-height: 1.8;
  }

  .location-body-text {
    color: var(--color-text-mid);
    margin-top: 10px;
    text-align: justify;
  }

  .location-map {
    margin-bottom: 32px;
  }

  /* PC版マップはSPで非表示 */
  .location-map-pc {
    display: none;
  }

  /* SP専用縦長マップ */
  .location-map-sp {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
  }

  /* SP：1列 */
  .location-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    border: 1px solid var(--color-border-light);
  }

  .location-cat-card {
    border: none;
    border-bottom: 1px solid var(--color-border-light);
    overflow: hidden;
    background: var(--color-white);
    padding: 20px 16px;
  }

  .location-cat-card:last-child {
    border-bottom: none;
    width: 100%;
  }

  .location-cat-header {
    padding: 0 0 12px;
    border-bottom: 1px solid var(--color-border-light);
  }

  .location-cat-label {
    display: block;
    font-family: var(--font-display-en);
    font-style: normal;
    font-size: 11px;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2px;
  }

  .location-cat-name {
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
  }

  .location-cat-photos {
    display: grid;
    gap: 3px;
    padding: 0;
    margin-top: 8px;
  }

  .location-cat-photos.photos-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-cat-photos.photos-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-cat-photos img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
  }

  .location-cat-quote {
    font-family: var(--font-serif-jp);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text-dark);
    line-height: 1.6;
    padding: 10px 0 4px;
  }

  .location-cat-desc,
  .location-access-subtitle {
    font-family: var(--font-sans-jp);
    font-size: 14px;
    line-height: 1.6;
  }

  .location-cat-desc {
    color: var(--color-text-mid);
    padding: 0 0 8px;
    text-align: justify;
  }

  .location-cat-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2px 10px;
  }

  .location-cat-list li {
    white-space: nowrap;
  }

  /* 交通アクセスカード */
  .location-access {
    margin-top: 24px;
    border: 1px solid var(--color-border-light);
    border-radius: 2px;
    overflow: hidden;
  }

  .location-access-header {
    background: var(--color-primary);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .location-access-label {
    font-family: var(--font-display-en);
    font-style: normal;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3em;
    line-height: 1;
  }

  .location-access-title {
    font-family: var(--font-serif-jp);
    font-weight: 400;
    font-size: 19px;
    color: var(--color-white);
    line-height: 1.6;
  }

  .location-access-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
  }

  /* 白ボディ：SP版は縦積み */
  .location-access-body {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
  }

  /* 車アクセス */
  .location-access-car {
    padding: 16px 16px;
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
  }

  .location-access-car-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
  }

  .location-access-car-dest {
    font-family: var(--font-sans-jp);
    font-size: 16px;
    color: var(--color-text-dark);
    line-height: 1.5;
  }

  .location-access-car-time {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
  }

  .location-access-car-num {
    font-family: var(--font-display-en);
    font-size: 44px;
    color: var(--color-primary);
    line-height: 1;
  }

  .location-access-car-unit {
    font-family: var(--font-serif-jp);
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 400;
  }

  .location-access-car-divider {
    width: 100%;
    height: 1px;
    background: var(--color-border-light);
  }

  .location-access-car-note {
    font-family: var(--font-sans-jp);
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.8;
    padding-top: 12px;
  }

  /* バス・道路（ドット点線リスト） */
  .location-access-transit {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
  }

  .location-access-transit-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  .location-access-transit-item:last-child {
    border-bottom: none;
  }

  .location-access-transit-name {
    font-family: var(--font-sans-jp);
    font-size: 16px;
    color: var(--color-text-dark);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .location-access-transit-dots {
    flex: 1;
    height: 0;
    border-top: 2px dotted var(--color-border);
    margin: 0 6px;
    align-self: center;
    min-width: 12px;
  }

  .location-access-transit-time {
    font-family: var(--font-sans-jp);
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ========================================
     装飾写真帯（SP）
     ======================================== */
  #photo-strip {
    overflow: hidden;
  }

  .photo-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100px;
    gap: 2px;
  }

  .photo-strip-item {
    overflow: hidden;
  }

  .photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ========================================
     物件概要セクション（SP）
     ======================================== */
  #overview {
    background: var(--color-bg-cream);
    padding: 48px 0;
  }

  #overview .section-heading {
    margin-bottom: 32px;
  }

  .overview-block {
    padding: 24px 16px;
    margin-bottom: 16px;
  }

  .overview-block-title {
    font-family: var(--font-sans-jp);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 18px;
    letter-spacing: 0.0em;
    line-height: 1.5;
  }

  /* ●KEY／VALUE形式の1段落テキスト */
  .overview-text {
    font-family: var(--font-sans-jp);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-mid);
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: justify;
  }

  .overview-note {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: 2px;
    padding: 16px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .overview-note p {
    font-family: var(--font-sans-jp);
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.6;
    text-align: justify;
  }

  /* ========================================
     CTA2セクション（SP）
     ======================================== */
  #cta2 {
    background: var(--color-primary);
    padding: 48px 0;
  }

  .cta2-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 var(--sp-padding);
    text-align: center;
  }

  .cta2-title {
    font-family: var(--font-serif-jp);
    font-weight: 500;
    font-size: 24px;
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.5;
  }

  .cta2-subtitle {
    font-family: var(--font-sans-jp);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
  }

  .cta2-btns {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta2-btn {
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 500;
  }

  .cta2-tel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }

  .cta2-center-label {
    font-family: var(--font-sans-jp);
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .cta2-tel {
    font-family: var(--font-number);
    font-size: 38px;
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-decoration: none;
    line-height: 1;
  }

  .cta2-hours {
    font-family: var(--font-sans-jp);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
  }

  /* ゴーストボタン */
  .cta2-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--color-white);
    font-family: var(--font-sans-jp);
    font-weight: 500;
    font-size: 17px;
    border-radius: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .cta2-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  /* ========================================
     フッター（SP）
     ======================================== */
  #site-footer {
    padding: 24px 0;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 var(--sp-padding);
  }

  .footer-logo-img {
    height: 30px;
    width: 193px;    /* 追加：明示的に幅を指定 */
    min-width: 193px; /* 追加：最小幅を固定 */
    width: auto;
    flex-shrink: 0;
  }

  .footer-info {
    font-size: 12px;
    color: var(--color-text-mid);
    text-align: center;
    line-height: 1.4;
  }

  /* ========================================
     SP固定フッターCTA
     ======================================== */
  #sp-fixed-cta {
    display: block;
  }
}
