@charset "UTF-8";

/* ==========================================================================
   モデルラインナップ（MODEL LINEUP 下層ページ）専用スタイル
   ========================================================================== */
.lineup-section {
    background-color: #ffffff;
    padding: 20px 0 140px;
}

/* 左右いっぱいにダイナミックに広げるための大枠コンテナ */
.lineup-container {
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 0px; /* 上下は80px、左右は40pxの間隔 */
}

.lineup-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* 画像ラッパー */
.lineup-img-link {
    display: block;
    width: 100%;
    overflow: hidden;
}

.lineup-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    background-color: #f5f5f5;
}

.lineup-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* カード下のテキスト情報エリア */
.lineup-info {
    text-align: center;
    padding-top: 35px;
}

/* 車種名：シャープな文字、大きめのサイズ感 */
.lineup-info h3 {
    font-family: 'Lambotype', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* キャッチコピー */
.lineup-info .caption {
    font-family: 'Lambotype', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    letter-spacing: 0.12em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* ボタンの配置幅制限 */
.lineup-btn-wrapper {
    max-width: 220px;
    margin: 0 auto;
}

/* MORE DETAILS ボタン */
.btn-more-details {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Lambotype', sans-serif;
    transition: all 0.3s ease;
}

.btn-more-details:hover {
    background-color: #FFC000;
    color: #ffffff;
}


/* ==========================================================================
   モデル詳細ページ（Model Detail）専用スタイル
   ========================================================================== */

/* メインビジュアルの土台 */
.model-hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* 画面縦幅の70%の高さ（迫力とスクロールしやすさの両立） */
    overflow: hidden;
    background-color: #000000;
    margin-top: 100px; /* PCヘッダーの高さ分下げる */
}

/* 背景画像（全体を覆い、少し暗めのフィルターをかけて文字の視認性を確保） */
.model-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.model-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 画像の上の黒い半透明フィルター */
.model-hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 30%のプレーンな黒膜 */
}

/* 画像の上に浮かび上がるテキストコンテナ（完全中央揃え） */
.model-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* 車名 */
.model-hero-sub {
    font-family: 'Lambotype', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

/* 詳細ページ専用：パンくずリストの余白初期化 */
.model-detail-bc {
    padding: 30px 40px 10px !important; 
    background-color: #ffffff;
}

/* 動画や中身が入るセクションのベース */
.model-detail-content {
    background-color: #ffffff;
    padding: 60px 0;
}

.model-video-section {
    background-color: #ffffff;
    width: 100%;
    padding: 40px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9の比率（9 ÷ 16 ＝ 0.5625） */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* キャプションセクション全体の余白調整 */
.model-desc-section {
    background-color: #ffffff;
    padding: 40px 0;
    width: 100%;
}

/* 車名と詳細文を綺麗に包む一つのコンテナ */
.model-desc-container {
    max-width: 1100px; /* 他のコンテナ幅と完全に同期 */
    margin: 0 auto;
    padding: 45px 50px;
    background-color: #f5f5f5;
    text-align: center;
}

/* 車名タイトル */
.caption-title {
    font-family: 'Lambotype-Bold', sans-serif; 
    font-weight: bold;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 25px; 
    text-transform: uppercase;
}

/* 詳細文面 */
.caption-text {
    font-size: 1rem;
    color: #000000;            
    letter-spacing: 0.03em;    
    line-height: 1.8; 
    max-width: 950px;
    margin: 0 auto;
    text-align: left; 
}


/* ==========================================================================
  車体ギャラリースライダー専用スタイル
   ========================================================================== */


.model-gallery-section {
    background-color: #ffffff;
    padding: 60px 0; /* 上下の白背景に上品な余白を確保 */
    width: 100%;
}

/* 左右の隙間を完全にゼロにし、画面幅いっぱいに広げる */
.gallery-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

.detailGallerySwiper {
    width: 100%;
    position: relative;
    overflow: hidden !important; /* フル画面なので左右のはみ出しは綺麗にカット */
}

/* スライド（画像）のサイズ固定調整 */
.detailGallerySwiper .swiper-slide {
    width: 100%;
}

.detailGallerySwiper .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;     /* シネマティックでワイドな超高級感ある比率（PC用） */
    object-fit: cover;
    display: block;
}

.detailGallerySwiper .gallery-prev,
.detailGallerySwiper .gallery-next {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    width: 60px !important;
    height: 70px !important;
    background: linear-gradient(to bottom, #666666 0%, #000000 100%) !important; 
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) !important; 
    color: #ffffff !important; 
    z-index: 20;
    transition: opacity 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.detailGallerySwiper .gallery-prev::after,
.detailGallerySwiper .gallery-next::after {
    font-size: 18px !important;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.detailGallerySwiper .gallery-prev:hover,
.detailGallerySwiper .gallery-next:hover {
    background: linear-gradient(to bottom, var(--brand-yellow) 0%, #dca500 100%) !important;
    opacity: 0.9;
}


.detailGallerySwiper .gallery-prev { left: 40px !important; }
.detailGallerySwiper .gallery-next { right: 40px !important; }



/*スペック*/
.model-spec-section {
    background-color: #ffffff;
    padding: 20px 0 0;
    width: 100%;
}

.spec-section-title {
    text-align: center;
    margin-bottom: 80px; 
}

.spec-section-title h3 {
    font-size: 2.4rem !important; 
    font-weight: normal;
    color: #333333;
    letter-spacing: 0.08em;
}

.spec-independent-model {
    max-width: 1100px;
    margin: 0 auto 50px; 
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
    text-align: center;  
}

.spec-independent-model h2 {
    font-family: 'Lambotype-Bold', sans-serif;
    font-size: 1.8rem;   
    color: #000000;
    margin: 0;
    display: inline-block;
}
/* 左右を振り分けるフレックスコンテナ */
.spec-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    gap: 50px;
}

/* 左側：画像ボックス */
.spec-image-box {
    flex: 0 0 52%; 
    width: 52%;
}

.spec-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 右側：スペック情報ボックス */
.spec-details-box {
    flex: 0 0 44%; 
    width: 44%;
    text-align: left;
}

/* スペックリスト（極細の美しい横境界線） */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.spec-list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid #eaeaea; 
    font-size: 1rem;
    line-height: 1.5;
}

/* PC・タブレット環境での一項目目の調整 */
.spec-list li:first-child {
    padding-top: 0 !important;
}

.spec-label {
    flex: 0 0 250px; 
    width: 250px;
    color: #000000; 
    font-weight: normal;
}

.spec-value {
    flex: 1;
    color: #000000; 
}

/* 下部リンクテキストボタン */
.spec-link-area {
    margin-top: 20px;
}

.spec-link-btn {
    font-size: 0.85rem;
    color: #000000;
    text-decoration: none;
    padding-bottom: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.spec-link-btn:hover {
    color: var(--brand-yellow); 
}
/* ==========================================================================
   お問い合わせ（CTA）セクション
   ========================================================================== */
.model-cta-section {
    background-color: #ffffff;
    padding: 100px 0 100px;
    width: 100%;
}

/* 導入テキスト */
.cta-intro-text {
    text-align: center;
    margin-bottom: 55px;
}

.cta-intro-text p {
    font-size: 2rem;
    color: #000000;
}

.cta-intro-text p span {
    font-family: 'Lambotype-Bold', sans-serif;
    font-weight: bold;
    color: #000000;
}

/* 電話・メールボタンの並び調整 */
.cta-buttons-flex {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 30px;
    width: 100%;
    gap: 25px; 
}

.cta-btn-box {
    flex: 1;
    background: linear-gradient(to bottom, #666666 0%, #000000 100%) !important;
    border-radius: 3px;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* アイコン画像の設定 */
.cta-icon-wrapper {
    flex-shrink: 0;
}

.cta-icon-wrapper img {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1); 
    transition: filter 0.3s ease;  
}

/* テキストの積み上げ構造 */
.cta-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* 上段ラベル */
.cta-label {
    font-size: 1rem;
    color: #ffffff; 
    margin-bottom: 4px;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

/* 下段メイン値 */
.cta-value {
    font-family: 'Lambotype-Bold', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff; 
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

/* ホバー時：背景を漆黒にし、アイコンと文字をイエロー発光へ変換 */
.cta-btn-box:hover {
    background: var(--brand-yellow) !important;
    transform: translateY(-2px); 
}

.cta-btn-box:hover .cta-label,
.cta-btn-box:hover .cta-value {
    color: #000000;
}

.cta-btn-box:hover .cta-icon-wrapper img {
    filter: brightness(0) invert(0); 
}

/* 下部：新車・展示車用のワイドボタンエリア */
.cta-wide-btn-area {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.cta-wide-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;               
    max-width: 500px;          
    margin: 0 auto;            
    height: 80px;
    background-color: #000000; 
    color: #ffffff;
    border: 1px solid #000000;
    border-radius: 3px;
    text-decoration: none;
    font-family: 'Lambotype-Bold', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cta-wide-btn:hover {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: #000000;
    transform: translateY(-2px); 
}

/* ==========================================================================
   車種専用お問い合わせページ
   ========================================================================== */
.enquiry-form-section .car-preview-container {
    display: flex;                   
    align-items: center;             
    gap: 30px;                       
    width: 100%;
    max-width: 1100px;               
    margin: 40px auto 20px auto;     
    padding: 0 10px 30px 10px;       
    box-sizing: border-box;
    clear: both;
}

/*  画像を包むボックス：横幅を320pxに完全ロック */
.enquiry-form-section .car-preview-container .preview-img-box {
    display: block;
    width: 320px;
    max-width: 320px;
    min-width: 320px;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    flex-shrink: 0;  
}

.enquiry-form-section .car-preview-container .preview-img-box img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;  
}

.enquiry-form-section .car-preview-container .preview-text-box {
    display: block;
    flex: 1;                       
    text-align: left;
}

.enquiry-form-section .car-preview-container h3.preview-car-name {
    font-family: 'Lambotype-Bold', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;  
    color: #000000;
    text-transform: uppercase;
    margin: 0;
}

/* ==========================================================================
   ショールームページ
   ========================================================================== */
/* セクション全体の余白調整 */
.showroom-pic {
    width: 100%;
    padding: 0 0 100px 0; 
    background-color: #ffffff;
    margin-top: 60px;
}

/* 全幅メイン画像エリア */
.showroom-pic .showroom-main-pic {
    width: 100%;
    aspect-ratio: 21 / 9;               
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #f5f5f5;
}

.showroom-pic .showroom-main-pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* 下に並ぶ4連グリッドの構造：【PC環境】横に4つ並べる */
.showroom-pic .showroom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; 
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* 各画像ラッパー */
.showroom-pic .showroom-img-item {
    width: 100%;
    aspect-ratio: 4 / 3;                   /* 4:3の綺麗な長方形に統一 */
    overflow: hidden;
    background-color: #f5f5f5;
}

/* 画像本体 */
.showroom-pic .showroom-img-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* セクション全体のベース（上段部分を薄いグレー背景にする） */
.showroom-access-section {
    width: 100%;
    background-color: #eaeaea; 
    padding: 80px 0 0 0;       /* マップは全幅にするため下パディングは0 */
    box-sizing: border-box;
}

/* 上段のコンテナ */
.showroom-access-section .access-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* 左右振り分けのフレックス */
.showroom-access-section .access-info-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;       /* 上下中央揃え */
    padding-bottom: 80px;      /* マップとの間の余白 */
}

/* ロゴエリア（ロゴと文字を横並びにする） */
.showroom-access-section .access-logo-box {
    flex: 0 0 50%;
    display: flex;
    align-items: center;       /* ロゴと文字の上下中央を揃える */
    justify-content: center;   /* エリア内で中央に寄せる */
    gap: 20px;                 /* ロゴと文字の間の隙間 */
}

/* ブランドロゴのサイズ調整 */
.showroom-access-section .access-brand-logo {
    height: 75px;              /* 横並びのバランスに合わせたサイズ */
    width: auto;
    display: block;
    filter: brightness(0);    /* ロゴを完全に真っ黒にする */
}

/* ロゴの右横の地名テキスト */
.showroom-access-section .access-logo-sub {
    font-family: 'Lambotype-Bold', sans-serif;
    font-size: 1.6rem; 
    font-weight: bold;
    color: #000000;
    line-height: 1;
}

/* 右側：店舗詳細テキストエリア */
.showroom-access-section .access-details-box {
    flex: 0 0 45%;
    text-align: left;
    color: #444444;           /* 上品なダークグレーの文字色 */
    font-size: 0.95rem;
    line-height: 2;       
}

/* 店舗名見出し */
.showroom-access-section .access-details-box h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.showroom-access-section .access-details-box p {
    margin: 0;
    letter-spacing: 0.02em;
}

/* 下段：画面横幅100%のGoogleマップ */
.showroom-access-section .access-map-full {
    width: 100%;
    line-height: 0;           /* iframeの下部に生まれる謎の隙間を排除 */
    overflow: hidden;
}

.showroom-access-section .access-map-full iframe {
    width: 100%;
    height: 500px;            /* PCでのマップの高さ */
    display: block;
}

.gallery-section {
    background-color: #ffffff;
    padding: 60px 0 0; /* 上下の白背景に上品な余白を確保 */
    width: 100%;
}

/* ==========================================================================
   アフターサービスページ：導入テキストエリア
   ========================================================================== */

.service-intro-section {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0 40px 0; 
    text-align: center;    
    box-sizing: border-box;
}

.service-intro-section .service-intro-text {
    max-width: 1000px;  
    margin: 0 auto;
    padding: 0 20px;
}

.service-intro-section .service-intro-text p {
    font-size: 1.05rem; 
    color: #000000;
    line-height: 1.8;
}

.showroom-access-section .access-sub-title {
    display: block;
    text-align: center; 
    font-family: 'Lambotype-Bold', sans-serif; 
    font-size: 2.5rem; 
    font-weight: bold;
    color: #000000; 
    margin-bottom: 80px; 
    text-transform: uppercase;            /* 大文字に強制 */
    position: relative;
    z-index: 3;  
}

/* ==========================================================================
   買取・委託ページ
   ========================================================================== */
.purchase-hero-full-banner {
    width: 100%;
    background-color: #ffffff;
    padding: 0;
    box-sizing: border-box;
}

.purchase-hero-full-bg {
    position: relative;
    width: 100vw;                       /* ブラウザの横幅いっぱいに強制拡張 */
    margin-left: calc(50% - 50vw);      /* 親要素の枠を無視して左右いっぱいに広げるマジックマージン */
    margin-right: calc(50% - 50vw);
    
    height: 550px;   
    overflow: hidden;
}

/* 中の画像の設定 */
.purchase-hero-full-bg picture,
.purchase-hero-full-bg .bg-target-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;                  /* 縦横比を保ったまま、480pxの高さに合わせてきれいに配置 */
    object-position: center center;    /* 画像の中央を基準にトリミング */
    display: block;
}
.purchase-hero-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.hero-full-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* 各エリアの設定 */
.hero-main-captions { 
    text-align: center; 
    margin-bottom: 25px; 
    width: 100%; 
}

.hero-center-logo-area { 
    width: 100%; 
    text-align: center; 
    margin: 0 auto 40px; 
}

/* PC用フォントサイズ */
.hero-main-captions .caption-sub {
    font-size: 1.4rem; 
    font-family: 'Lambotype-Bold', sans-serif; 
    font-weight: bold; color: #ffffff; 
    letter-spacing: 0.05em; 
    margin-bottom: 12px; 
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.hero-main-captions .caption-main {
    font-size: 2.8rem; 
    font-family: 'Lambotype-Bold', sans-serif; 
    font-weight: bold; 
    color: #ffffff; 
    letter-spacing: 0.02em; 
    margin-bottom: 12px; 
    line-height: 1.2; 
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}
.hero-main-captions .caption-location {
    font-family: 'Lambotype-Bold', sans-serif; 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #ffffff; 
    letter-spacing: 0.05em; 
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-center-logo-area .selezione-hero-logo { 
    width: 100%; 
    max-width: 350px; 
    height: auto; 
    display: inline-block; 
}

/* 下段：PC 3連ボックス */
.hero-bottom-blocks { 
    display: flex; 
    width: 100%; 
    gap: 20px; 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.hero-bottom-blocks .hero-border-item {
    flex: 1; 
    border: 1px solid #ffffff; 
    background-color: rgba(0, 0, 0, 0.2); 
    height: 95px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 10px 15px; 
    box-sizing: border-box; 
    font-size: 1rem; 
    font-weight: bold; 
    color: #ffffff; 
    line-height: 1.5; 
    text-align: center; 
    letter-spacing: 0.02em;
}

.hero-bottom-blocks .hero-border-item .plus-icon { 
    display: none; 
}


.purchase-consignment-info-section {
    width: 100%;
    background-color: #ffffff; 
    padding: 70px 0 70px 0;
    box-sizing: border-box;
}

.consignment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* 上段：中央寄せコンテンツ */
.consignment-top-content {
    text-align: center;
    max-width: 900px;              /* 導入文が横に広がりすぎないスマートな制限幅 */
    margin: 0 auto 75px auto;      /* 下の3カラムとの綺麗な間隔 */
}

.consignment-top-content h2 {
    font-size: 2rem;
    font-family: 'Lambotype-Bold', sans-serif;
    font-weight: bold;
    color: #000000;
    margin-bottom: 35px;
}

.consignment-top-content p {
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.9; 
    text-align: left; 
}

/*  下段：3カラムグリッド */
.consignment-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;                     /* カード同士の横の隙間 */
    width: 100%;
}

.consignment-card {
    flex: 1;                       /* 3つのカードを均等幅に */
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* カード画像部分 */
.consignment-card .card-img-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #e0e0e0;
}

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

/* カードタイトル */
.consignment-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

/* カード説明文 */
.consignment-card p {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.7;
}

.purchase-direct-overlap-section {
    width: 100%;
    background-color: #ffffff;
    padding: 0 0 80px 0; /* 下のセクションとの余白 */
    box-sizing: border-box;
}

/* PC時の大枠：100vwでブラウザの左右いっぱいにフル画面拡張 */
.direct-overlap-bg {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 600px; 
    overflow: hidden;
}

/* 背景画像：枠いっぱいに広げつつ、拡大を最小限に抑えて中央に配置 */
.direct-overlap-bg .direct-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* 画像の上に完全に重なる透明〜黒のオーバーレイシート */
.direct-overlap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    box-sizing: border-box;
}

/* 中央配置のためのフレックスコンテナ */
.direct-overlap-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* 文字エリア：背景の上に重なる白文字コンテンツ */
.direct-overlap-content {
    text-align: center;
    max-width: 840px;                  /* テキストが横に広がりすぎないように綺麗に制限 */
    width: 100%;
}

.direct-overlap-content h2 {
    font-size: 2.2rem;
    font-family: 'Lambotype-Bold', sans-serif;
    font-weight: bold;
    color: #ffffff; 
    line-height: 1.3;
    margin-bottom: 30px;
}

/* 中央の白いスタイリッシュな細線 */
.direct-divider-white {
    width: 40px;
    height: 1px;
    background-color: #ffffff;
    margin: 30px auto 60px;                 /* 上下に30pxのゆったりとした余白 */
}

.direct-overlap-content p {
    font-size: 1rem;
    color: #ffffff;                   
    line-height: 1.9;
    text-align: left;                            
}

.purchase-reasons-section {
    width: 100%;
    background-color: #ffffff; /* パキッとした白背景 */
    padding: 0 0 120px 0;
    box-sizing: border-box;
}

.reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/*  上段：タイトル＆中央長文エリア */
.reasons-top-content {
    text-align: center;
    max-width: 880px; 
    margin: 0 auto 80px auto;      /* 下の3カラムとの余白 */
}

.reasons-top-content h2 {
    font-family: 'Lambotype-Bold', sans-serif;
    font-size: 2.3rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 45px;
}

.reasons-desc-text {
    text-align: left;
}

.reasons-desc-text p {
    font-family: 'Lambotype-Bold', sans-serif;
    font-size: 1rem;
    color: #333333;
    line-height: 1.85;
    margin-bottom: 18px;           /* 段落ごとの隙間 */
}

.reasons-desc-text p:last-child {
    margin-bottom: 0;
}

/* スクショに合わせた「中央段落だけを力強い太字」にする指定 */
.reasons-desc-text .text-bold {
    font-weight: bold;
    color: #000000;
}

/* 下段：3カラムグリッドレイアウト */
.reasons-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;                     /* カード同士の横の隙間 */
    width: 100%;
}

.reasons-card {
    flex: 1;                       /* 3つのカードを同じ幅にロック */
    display: flex;
    flex-direction: column;
}

/* 各カードの画像ラッパー */
.reasons-card .card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;         /* スクショの美しい比率を完全再現 */
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f5f5f5;
}

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

/* 各カードのテキスト説明文 */
.reasons-card .card-text {
    font-size: 0.92rem;
    color: #000000;
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-align: left;
}

.purchase-contact-section {
    width: 100%;
    background-color: #f1f1f1; 
    padding: 90px 0 100px 0;
    box-sizing: border-box;
    text-align: center;
}

.contact-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* セクション大見出し */
.purchase-contact-section h2 {
    font-size: 2.6rem;
    font-weight: bold;
    font-family: 'Lambotype-Bold', sans-serif;
    color: #000000;
    margin-bottom: 35px;     
    line-height: 1.8;
    text-align: center;
}

/* リード文テキストのラッパー */
.contact-text {
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: left;
}

/* リード文1行目（通常の細字テキスト） */
.contact-text .text-sub {
    font-size: 0.9rem;
    color: #605E5C;
    margin-bottom: 6px;
    line-height: 1.6;
}


/* ラジオボタンを包む横並びコンテナ */
.radio-input-group {
    display: flex;
    align-items: center;
    gap: 30px;                     /* 各選択肢（E-mailと電話）の間のゆったりとした隙間 */
    padding: 10px 0;               /* 上下の重心調整 */
}

/* ラジオボタン単体＋ラベルのセット */
.radio-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

/* ラジオボタン本体（既存のチェックボックスと調和するスタイリッシュなサイズ感） */
.radio-item input[type="radio"] {
    margin: 0 8px 0 0;             /* 右側のテキストとの距離 */
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000000;   
}

/* ラジオボタンの横のテキストラベル */
.radio-item label {
    font-family: 'Lambotype', sans-serif;
    font-size: 1rem;
    color: #605E5C;
    cursor: pointer;
    font-weight: normal;
    user-select: none;
}
.contact-text p .form-link {
    color: #605E5C;
    text-decoration: none;
    transition: color 0.3s ease;
}

/*フッター変更点*/
/* フッターの全体の上下余白を極限まで狭める */
.shop-info-section {
    padding: 20px 0px !important; 
}

/* 横に4つの要素を均等、かつ高さを揃えて並べる */
.shop-info-section .shop-info-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important; 
    gap: 15px !important;              /* カラム同士の隙間 */
    max-width: 1300px !important;      /* 4つが並ぶために幅を最大に拡張 */
    flex-direction: row !important;   
    margin-top: 0 !important; 
}

/* --- 1カラム目：シールドロゴ --- */
.shop-brand-logo-column {
    flex: 1.1 !important;              /* ロゴが窮屈にならないように少しだけ幅を確保 */
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    height: 100px !important;          /* 縦線の長さを揃えるための高さ固定 */
}

.shop-info-section .brand-logo {
    margin-bottom: 0 !important;       /* 下部マージンをリセットして天地を縮小 */
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.shop-brand-logo-column .brand-logo img.logo {
    height: 52px; 
}

.shop-brand-logo-column .brand-logo .logo-text {
    font-size: 1.2rem !important; 
}


/* --- 2カラム目：店舗テキスト ＆ SNS --- */
.shop-details-column {
    flex: 0 0 270px !important;              /* 住所が綺麗に収まる横幅 */
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

.footer-shop-details {
    margin-bottom: 5px !important;    /* SNSアイコンとの隙間を詰める */
}

.footer-shop-details p {
    font-size: 0.82rem !important;   
    color: #ffffff !important;
    line-height: 1.3 !important;   
    margin: 0 0 3px 0 !important;
}

.footer-shop-details .shop-name {
    font-size: 0.9rem !important;
    color: #ffffff !important;
    font-weight: bold !important;
    margin-bottom: 4px !important;
}

/* SNSアイコンをテキストの左端と完全同期 */
.shop-info-section .sns-icons {
    justify-content: flex-start !important; 
    margin-top: 0 !important;
    margin-left: 0 !important;
    display: flex !important;
    gap: 15px !important;
}

.shop-info-section .sns-icons img {
    width: 22px !important; 
    height: 22px !important;
    filter: brightness(0) invert(1) !important; 
}

/* --- 3カラム目：外観画像 --- */
.shop-image-column {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    margin-top: 0 !important;
}

.footer-img-wrapper {
    width: 100% !important;
    min-height: 100px !important; 
    height: 140px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* --- 4カラム目：Googleマップ --- */
.shop-map-column {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.footer-map-wrapper {
    width: 100% !important;
    min-height: 100px !important; 
    height: 140px !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.footer-map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
}

@media  screen and (max-width:1200px) {


/*フッター修正版*/
.shop-info-section {
        padding: 30px 40px !important; 
    }

    .shop-info-section .shop-info-flex {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 15px 10px !important;   
        max-width: 900px !important;                       
        margin: 0 auto !important;
    }
    
    /* 1段目・左 */
    .shop-brand-logo-column {
        border-right: none !important;
        padding-right: 0 !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important; 
        align-items: center !important;
    }
    
    /* 1段目・右：店舗テキスト ＆ SNS */
    .shop-details-column {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;    /* 1マスの枠内で一度中央に寄せつつ */
        text-align: left !important;
    }
    
    /* 文字情報とSNSの左端ラインをピタッと同期させる内枠 */
    .footer-shop-details { 
        text-align: left !important;       
        width: 280px !important;           /* テキストの最大幅をロック */
        margin-bottom: 0px !important; 
    }
    
    .footer-shop-details p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        color: #cccccc !important;
    }

    /* SNSアイコンを文字の左端と完全同期 */
    .shop-info-section .sns-icons { 
        justify-content: flex-start !important; 
        width: 280px !important;           /* 上の文字の箱と完全同期 */
        margin: 10px 0 0 0 !important; 
        display: flex !important;
        gap: 20px !important;
    }
    
    /* 2段目・左：外観画像 / 2段目・右：Googleマップ */
    .shop-image-column, 
    .shop-map-column {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 !important;
    }
    
    /* 2段目に並ぶ写真とマップを美しい比率のサイズで固定 */
    .footer-img-wrapper,
    .footer-map-wrapper {
        width: 100% !important;
        height: 150px !important;
        min-height: auto !important;
    }

}


@media screen and (max-width: 1024px) {
    .model-hero-section {
        margin-top: 85px !important; 
        height: 55vh; /* 画面に対して程よい高さに微調整 */
    }

    /* 車名タイトル */
    .video-caption-title {
        font-family: 'Lambotype-bold', sans-serif;
        font-weight: bold;
        font-size: 2.5rem;
        color: #000000;
        margin-bottom: 30px; 
        text-transform: uppercase;
    }

    .spec-section-title h3 {
        font-size: 2rem !important; 
    }

    .spec-independent-model {
        margin-bottom: 30px;
    }
    
    .spec-independent-model h2 {
        font-size: 1.5rem;
    }

    .spec-flex-container {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        padding: 0 20px;
    }

    .spec-image-box,
    .spec-details-box {
        flex: 0 0 100%;
        width: 100%;
        max-width: 650px;
    }

    .model-cta-section {
        padding: 60px 0; 
    }

    .cta-intro-text {
        margin-bottom: 35px;
    }
    .cta-intro-text p {
        font-size: 1.6rem; 
    }

    .cta-buttons-flex {
        max-width: 95%; /* 画面の端にボタンがくっつかないように調整 */
        gap: 15px;      /* ボタン同士の隙間を少しタイトに */
    }

    .cta-btn-box {
        padding: 20px 25px; 
        gap: 15px;
    }

    .cta-icon-wrapper img {
        height: 32px; 
    }

    .cta-label {
        font-size: 0.85rem; 
    }

    .cta-value {
        font-size: 1.25rem; 
    }

    .cta-wide-btn {
        height: 70px; 
        font-size: 1rem;
    }

    /*showroom*/

    .showroom-pic {
        padding: 0 0 80px 0;
        margin-top: 30px;
    }

    .showroom-pic .showroom-main-pic {
        aspect-ratio: 16 / 9;              
        margin-bottom: 15px; 
    }

    /* 下の4連画像を「2コマ2段」にする */
    .showroom-pic .showroom-grid {
        grid-template-columns: repeat(2, 1fr); /* 2等分 */
        gap: 10px;                             /* すき間を少し狭く */
        padding: 0 20px;                       /* 左右の余白もスマホ用に調整 */
    }
    
    .showroom-pic .showroom-img-item {
        aspect-ratio: 4 / 3;                   /* 4:3の比率を維持 */
    }

    .showroom-access-section {
        padding: 60px 0 0 0;
    }

    /* 左右並びを縦並びに変更 */
    .showroom-access-section .access-info-flex {
        flex-direction: column;
        gap: 50px;
        padding-bottom: 60px;
    }

    .showroom-access-section .access-logo-box,
    .showroom-access-section .access-details-box {
        flex: 0 0 100%;
        width: 100%;
    }

    /* スマホ以下でもロゴと文字の横並びはキープしつつ中央寄せ */
    .showroom-access-section .access-logo-box {
        justify-content: center;
        gap: 15px !important;
    }

    .showroom-access-section .access-details-box {
        text-align: center;
        font-size: 0.9rem;
    }

    /* スマホでのマップの高さ調整 */
    .showroom-access-section .access-map-full iframe {
        height: 350px;
    }

    /*ショールーム*/
    .showroom-access-section .access-brand-logo{
        height: 55px;
    }

    .showroom-access-section .access-logo-sub {
        font-size: 1.2rem;
    }


    /*アフターサービス*/
    .showroom-access-section .access-sub-title {
        font-size: 1.8rem;  
        margin-bottom: 30px;   
    }


    /*買取*/
    .hero-main-captions .caption-main { 
        font-size: 2.4rem; 
    }
    .hero-main-captions .caption-sub { 
        font-size: 1.2rem; 
    }
    .hero-center-logo-area { 
        margin-bottom: 30px; 
    }
    .hero-center-logo-area .selezione-hero-logo { 
        max-width: 250px; 
    }
    .hero-bottom-blocks .hero-border-item { 
        font-size: 0.82rem; height: 85px; 
    }
    .purchase-consignment-info-section { 
        padding: 70px 0 80px 0; 
    }
    .consignment-top-content h2 { 
        font-size: 1.8rem; margin-bottom: 25px; 
    }
    .consignment-top-content { 
        margin-bottom: 50px; 
    }
    .consignment-grid { 
        gap: 20px; 
    }
    .consignment-card h3 { 
        font-size: 1.15rem; 
        margin-bottom: 10px; 
    }
    .consignment-card p { 
        font-size: 0.85rem; 
    }
    .direct-overlap-bg { 
        height: 480px; 
    }
    .direct-overlap-content h2 { 
        font-size: 1.9rem; 
    }
    .direct-divider-white { 
        margin: 20px auto; 
    }
    .direct-overlap-content p { 
        font-size: 0.9rem; 
        line-height: 1.8; 
    }
    .purchase-reasons-section { 
        padding: 70px 0 90px 0; 
    }
    .reasons-top-content h2 { 
        font-size: 1.85rem; 
        margin-bottom: 30px; 
    }
    .reasons-top-content { 
        margin-bottom: 50px; 
    }
    .reasons-grid { 
        gap: 24px; 
    }
    .reasons-desc-text p { 
        font-size: 0.9rem; 
        line-height: 1.7; 
    }
    .reasons-card .card-text { 
        font-size: 0.86rem; 
    }
    .purchase-contact-section { 
        padding: 70px 0 40px 0; 
    }
    .purchase-contact-section h2 { 
        font-size: 2.1rem; 
        margin-bottom: 25px; 
    }
    .contact-text .text-sub { 
        font-size: 0.9rem; 
    }
    .contact-text .text-main-bold { 
        font-size: 1.15rem; 
    }

}

/* ==========================================================================
   スマートフォン対応（768px以下は1列に変更）
   ========================================================================== */
@media screen and (max-width: 768px) {
    .lineup-section {
        padding: 10px 0 80px;
    }

    .lineup-container {
        padding: 0 20px;
    }

    /* スマホでは縦並び1列に切り替える */
    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 60px 0;
    }

    .lineup-info {
        padding-top: 25px;
    }

    .lineup-info h3 {
        font-size: 3rem;
        margin-bottom: 6px;
    }

    .lineup-info .caption {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .model-hero-section {
        min-height: 40vh;
        height: auto !important; 
        margin-top: 100px!important; 
    }

    .model-hero-content {
        height: auto !important; 
        padding: 60px 20px;
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .model-hero-sub {
        font-size: 3.2rem !important;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .model-hero-sub {
        font-size: 3.5rem;
        margin-bottom: 5px;
    }

    .model-hero-title {
        font-size: 2.2rem; 
    }

    .model-detail-bc {
        padding: 20px 20px 0 !important;
    }

    .model-desc-section {
        padding: 20px 0 40px; 
    }
    
    .model-desc-container {
        padding: 30px 20px; 
        width: 100%;
        max-width: 100%;
    }

    .caption-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .caption-text {
        font-size: 0.95rem;    
        line-height: 1.6;
    }

    .model-gallery-section {
        padding: 30px 0;
    }

    .detailGallerySwiper .swiper-slide img {
        aspect-ratio: 16 / 9; 
    }

    .detailGallerySwiper .gallery-prev,
    .detailGallerySwiper .gallery-next {
        display: block !important; /* display: none を解除 */
        width: 42px !important;    /* スマホの画面幅に合わせて一回り縮小 */
        height: 48px !important;   /* 比率を保って縦幅も調整 */
    }

    /* 矢印アイコン自体もスマホ向けに少しシャープに変更 */
    .detailGallerySwiper .gallery-prev::after,
    .detailGallerySwiper .gallery-next::after {
        font-size: 13px !important;
    }

    /* スマホの画面端ギリギリ（15px）にピタッと寄せて、中央の写真を邪魔しない位置に配置 */
    .detailGallerySwiper .gallery-prev { 
        left: 15px !important; 
    }
    .detailGallerySwiper .gallery-next { 
        right: 15px !important; 
    }

    /* スペック表スマホ対応 */
    .spec-list li {
        flex-direction: column !important; 
        align-items: flex-start !important;
        gap: 6px !important;
        padding: 12px 0 !important;
    }

    .spec-list li:first-child {
        padding-top: 0 !important;
    }

    
    .spec-label {
        flex: none !important;
        width: 100% !important;
        font-weight: bold !important; 
        color: #666666 !important;
    }

    .spec-value {
        width: 100% !important;
        padding-left: 0 !important;
    }

    /* CTAスマホ対応 */
    .cta-intro-text {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .cta-intro-text p {
        font-size: 1.4rem;
    }

    .cta-buttons-flex {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 20px !important;
        margin-bottom: 20px !important;
    }

    .cta-btn-box {
        padding: 20px 25px !important;
        gap: 15px !important;
    }

    .cta-label {
        font-size: 0.85rem !important;
    }

    .cta-value {
        font-size: 1.2rem !important;
    }


    .cta-phone-number {
        font-size: 1.3rem !important;
    }

    .cta-wide-btn-area {
        padding: 0 20px !important;
    }
    
    .cta-wide-btn {
        width: 100% !important;
        max-width: 100% !important;  
        height: 65px !important;
        font-size: 1rem !important;
    }

    .cta-buttons-flex{
        max-width: 100% !important; 
    }

    .spec-flex-container {
        padding: 0;
    }

    /*車両別コンタクトページ*/
    .enquiry-form-section .car-preview-container {
        display: block;
        margin: 20px auto;
        padding: 0 15px 20px 15px;
    }
    
    .enquiry-form-section .car-preview-container .preview-img-box {
        margin: 0 auto 15px auto; 
    }
    
    .enquiry-form-section .car-preview-container .preview-text-box {
        text-align: center; 
    }
    
    .service-intro-section {
        padding: 10px 0 20px 0;
    }
    
    .service-intro-section .service-intro-text {
        padding: 0;
    }

    .service-intro-section .service-intro-text p {
        font-size: 0.95rem;  
        line-height: 1.8;   
    }


  /*買取*/  

    .purchase-hero-full-bg {
        aspect-ratio: auto;
        height: 640px; 
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
    }
    
    .purchase-hero-full-overlay {
        position: absolute; 
        background-color: rgba(0, 0, 0, 0.3); 
        padding: 40px 24px;
    }
    
    /* 表示順序の入れ替えコントロール（flexのorder機能） */
    .hero-full-container {
        padding: 0;
        justify-content: flex-start; 
        gap: 25px; 
    }
    
    .hero-center-logo-area {
        order: 1; /* 最上部に配置 */
        margin-bottom: 0;
    }
    .hero-center-logo-area .selezione-hero-logo {
        max-width: 220px;
    }
    
    .hero-main-captions {
        order: 2;
        margin-bottom: 20px;
    }
    .hero-main-captions .caption-main { 
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-bottom-blocks {
        order: 3;
        display: block;
        width: 80%;
        border: 1px solid #ffffff;
        background-color: rgba(0, 0, 0, 0.4); 
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .hero-bottom-blocks .hero-border-item {
        display: block;
        width: 100%;
        height: auto;
        border: none !important;
        background: transparent !important;
        padding: 0;
        margin-bottom: 12px;
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-bottom-blocks .hero-border-item:last-child { 
        margin-bottom: 0; 
    }

    .hero-bottom-blocks .hero-border-item .plus-icon {
        display: inline-block;
        color: var(--brand-yellow);
        font-weight: bold;
        margin-right: 6px;
    }

    .purchase-consignment-info-section { 
        padding: 50px 20px 60px 20px; 
    }

    .consignment-container { 
        padding: 0 20px; 
    }

    .consignment-top-content h2 { 
        font-size: 1.5rem; text-align: left; 
    }

    .consignment-top-content p { 
        font-size: 0.9rem; line-height: 1.7; 
    }
    
    /* 縦並びに変更 */
    .consignment-grid {
        flex-direction: column;
        gap: 45px;
    }

    .consignment-card .card-img-box { 
        margin-bottom: 15px; 
    }

    .direct-overlap-bg {
        height: 460px;
        width: 100%;
        max-width: 100%;
    }
    .direct-overlap-bg .direct-bg-img {
        object-position: right center !important; /* 画面が狭くなっても右側を基準に残す */
    }

    .direct-overlap-overlay {
        padding: 40px 24px;
    }
    .direct-overlap-content h2 {
        font-size: 1.6rem;
    }

    .direct-overlap-overlay {
        background-color: rgba(0, 0, 0, 0.6);
    }
    .purchase-reasons-section { 
        padding: 0 0 60px 0; 
    }
    .reasons-container { 
        padding: 0 24px; 
    }
    .reasons-top-content h2 { 
        font-size: 1.5rem; 
        text-align: center; 
        line-height: 1.4; 
    }
    
    .reasons-grid {
        flex-direction: column;    /* 縦並び */
        gap: 40px;
    }
    .reasons-card .card-img-wrapper { 
        margin-bottom: 15px; 
    }

    .radio-input-group {
        gap: 40px;
        padding: 5px 0;
        justify-content: center;
    }
    .radio-item label {
        font-size: 0.95rem;
    }

    .purchase-contact-section h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }

.shop-info-section {
        padding: 40px 20px !important; 
    }

    .shop-info-section .shop-info-flex {
        flex-direction: column !important; 
        align-items: center !important;    
        gap: 20px !important;              
        display: flex !important;
    }
    
    .shop-brand-logo-column {
        border-right: none !important;
        padding-right: 0 !important;
        height: auto !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .shop-details-column {
        flex: none !important;
        align-items: flex-start !important; /* 中央寄せを解除し、左詰め */
        width: 100% !important;
        max-width: 440px !important; 
        margin: 0 auto !important;         /* 440pxの箱自体は画面の中央に配置 */
    }
    
    /* 文字の固まりの調整 */
    .footer-shop-details { 
        text-align: left !important;       
        width: 100% !important;            /* 親の440pxいっぱいに広げて左端に配置 */
        max-width: 100% !important;
        margin: 0 !important;         
    }
    
    /* SNSアイコンを文字の左端（＝画像の左端）に完全同期 */
    .shop-info-section .sns-icons { 
        justify-content: flex-start !important; 
        width: 100% !important;           
        max-width: 100% !important;
        margin: 15px 0 0 0 !important;     /* センターマージンをリセット */
        display: flex !important;
        gap: 20px !important;
    }
    
    .shop-image-column, 
    .shop-map-column {
        width: 100% !important;
        align-items: center !important;
    }
    
    .footer-img-wrapper, 
    .footer-map-wrapper {
        width: 100% !important;
        max-width: 440px !important;     
        height: 170px !important;
        min-height: auto !important;     
        aspect-ratio: 16 / 10 !important; 
    }

}

@media screen and (max-width: 480px) {
    .spec-section-title h3 {
        font-size: 1.8rem !important;
    }

    .spec-independent-model h2 {
        font-size: 2rem !important;
    }

    .spec-list li {
        gap: 4px !important;
        padding: 10px 0 !important;
    }

    .cta-intro-text p {
        font-size: 1.15rem !important;
    }

    .cta-btn-box {
        padding: 18px 20px !important;
        gap: 12px !important;
    }

    .model-hero-section {
        margin-top: 120px!important; 
    }

    .model-hero-section {
        min-height: 30vh;
        height: auto !important;
        margin-top: 120px !important;
    }

    .model-hero-sub {
        margin-top: 20px;
    }

    .cta-buttons-flex {
        padding: 0 !important;
    }
    
    .cta-wide-btn-area {
        padding: 0 !important;
    }

    /*ショールーム*/
    .showroom-access-section .access-brand-logo{
        height: 40px;
    }

    .showroom-access-section .access-logo-sub {
        font-size: 1.2rem;
    }

    /*アフターサービス*/
    .showroom-access-section .access-sub-title {
        font-size: 1.2rem;  
        margin-bottom: 30px;   
    }


/*買取*/
    .purchase-hero-full-bg {
        height: 460px; 
    }

    .purchase-hero-full-overlay {
        padding: 30px 16px;
    }

    .hero-full-container {
        gap: 20px;
    }

    .hero-main-captions .caption-main { 
        font-size: 1.8rem !important; 
        line-height: 1.3; 
    }

    .hero-main-captions .caption-sub { 
        font-size: 0.95rem !important; 
    }

    .hero-main-captions .caption-location { 
        font-size: 1.1rem !important; 
    }

    .hero-center-logo-area .selezione-hero-logo { 
        max-width: 220px; 
    }

    .hero-bottom-blocks { 
        padding: 18px 12px; 
        width:90%; 
    }

    .hero-bottom-blocks .hero-border-item { 
        font-size: 0.78rem !important; 
        line-height: 1.4; 
    }

    .direct-overlap-bg {
        height: 420px;
    }
    .direct-overlap-overlay {
        padding: 35px 16px;
    }
    .direct-overlap-content h2 { 
        font-size: 1.35rem; 
    }
    .direct-divider-white { 
        margin: 15px auto; 
    }
    .direct-overlap-content p {
        font-size: 0.82rem;
        line-height: 1.6;
    }.direct-overlap-bg {
        height: 420px;
    }
    .direct-overlap-overlay {
        padding: 35px 16px;
    }
    .direct-overlap-content h2 { 
        font-size: 1.2rem;
        margin-bottom: 15px; 
    }
    .direct-overlap-container{
        padding: 0 20px;
    }
    .direct-divider-white { 
        margin: 15px auto; 
    }
    .direct-overlap-content p {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .purchase-contact-section h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .shop-info-section {
        padding: 30px 10px !important;
    }


}