:root {
    --c-text: #2b2318;
    --c-bg: #f5f2eb;
    --c-accent: #9e2a2b;
    --c-gold: #b08d55;
    --font-mincho: 'Zen Old Mincho', serif;
    --font-gothic: sans-serif;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-mincho);
    margin: 0;
    overflow-x: hidden;
    position: relative;
    font-feature-settings: "palt";
    line-height: 1.85;
    padding-bottom: 120px; /* Sticky Footer用の余白 */
}

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

/* ===== 背景・テクスチャ ===== */
.grain-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('./image/noise.png');
    background-size: 200px; opacity: 0.03; pointer-events: none; z-index: 998;
}
.bg-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('./image/bg-texture.png');
    background-size: 400px; opacity: 0.2; z-index: -1;
}

/* ===== 装飾：四隅・金魚・花 ===== */
.corner-ornament { position: fixed; width: 80px; z-index: 95; pointer-events: none; opacity: 0.6; }
.top-left { top: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; transform: rotate(180deg); }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    33% { transform: translate(12px, -20px) rotate(2deg); opacity: 0.8; }
    66% { transform: translate(-8px, 12px) rotate(-1deg); opacity: 0.75; }
}

.floating-element {
    position: fixed;
    pointer-events: none;
    z-index: 5;
    animation: float 14s ease-in-out infinite;
}

.goldfish-1 { top: 12%; right: 2%; width: 120px; animation-delay: 0s; }
.goldfish-2 { top: 58%; left: 4%; width: 110px; animation-delay: 5s; transform: scaleX(-1); }
.goldfish-3 { bottom: 20%; right: 10%; width: 95px; animation-delay: 10s; }
.flower-1 { top: 8%; left: 8%; width: 140px; animation-delay: 2s; }
.flower-2 { top: 50%; right: 5%; width: 135px; animation-delay: 7s; }
.flower-3 { bottom: 15%; left: 7%; width: 125px; animation-delay: 12s; }

/* ===== ヘッダー ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 30px;
    height: 80px;
    background: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(43, 35, 24, 0.1);
    display: flex;
    align-items: center;
    overflow: visible !important;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ロゴ */
.logo {
    position: relative;
    z-index: 2000;
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
    position: absolute;
    top: -10px;
    left: 0;
    filter: drop-shadow(0 4px 6px rgba(43, 35, 24, 0.15));
    transition: transform 0.3s;
}
.logo img:hover { transform: scale(1.05); }

/* メニュー */
.nav {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--c-text);
    margin-left: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    font-family: serif;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--c-accent);
    transition: width 0.3s var(--easing);
}
.nav-link:hover { color: var(--c-accent); }
.nav-link:hover::after { width: 100%; }

/* PCでは「スマホ専用改行」を無効にする */
.sp-only { display: none; }
.pc-only { display: block; }

/* ===== ヒーローセクション ===== */
.hero {
    height: auto;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.94) sepia(0.12);
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 7%;
    z-index: 20;
}

.hero-title-area {
    background: rgba(255, 255, 255, 0.9);
    
    /* ★修正前：padding: 50px 38px; */
    /* ↓ 下側の余白を50px → 70pxに増やして、ハンコのスペースを確保 */
    padding: 50px 38px 70px; 
    
    border: 2px solid var(--c-text);
    box-shadow: 12px 12px 0 rgba(43, 35, 24, 0.1);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: row-reverse;
    gap: 22px;
    position: relative;
    
    /* 念のため、ボックスからはみ出しても表示するように設定 */
    overflow: visible; 
}

.brush-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-7deg);
    width: 130%;
    opacity: 0.05;
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin: 0;
    color: var(--c-accent);
    font-weight: 600;
}

.hero-stamp {
    position: absolute;
    
    /* ★修正前：bottom: -35px; */
    /* ↓ ハンコの位置を少し上に調整して、確実に見えるようにする */
    bottom: -25px; 
    
    left: -35px; /* ここはそのまま（左側配置の場合） */
    /* ※もし画像通り右下に配置されているなら、leftではなく right: -20px; とかになります */
    
    width: 95px;
    transform: rotate(-16deg);
    filter: drop-shadow(2px 2px 0 rgba(255,255,255,0.7));
    z-index: 10; /* テキストより手前に */
}

.scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-gothic);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    z-index: 30;
    color: var(--c-text);
}

.scroll-indicator .line {
    width: 1px;
    height: 65px;
    background: var(--c-text);
    margin-top: 8px;
    animation: scrollAnim 2.5s infinite;
}

@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== セクション共通 ===== */
.section { padding: 90px 0; position: relative; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 30px; }
.section-header.center { text-align: center; margin-bottom: 55px; }

.decorative-en {
    font-family: serif;
    font-size: 1rem;
    color: var(--c-gold);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.2em;
}

.section-title-horizontal {
    font-size: 2.3rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.12em;
}

/* ===== お知らせ（News） ===== */
.news {
    background-color: transparent;
    padding-top: 40px;
    padding-bottom: 10px;
}

.news-frame {
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--c-gold);
    padding: 30px;
    position: relative;
    background: #fdfbf7;
}

.news-frame::before,
.news-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--c-accent);
    transition: 0.3s;
}

.news-frame::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.news-frame::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.news-scroll-area {
    height: 300px;
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--c-gold) #eee;
}

.news-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.news-scroll-area::-webkit-scrollbar-thumb {
    background-color: var(--c-gold);
    border-radius: 3px;
}

.news-scroll-area::-webkit-scrollbar-track {
    background: #eee;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    border-bottom: 1px dashed rgba(176, 141, 85, 0.4);
    padding: 20px 0;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.news-item:last-child {
    border-bottom: none;
}

.news-meta {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
}

.news-date {
    display: block;
    font-family: var(--font-gothic);
    font-weight: bold;
    color: #888;
    margin-bottom: 5px;
}

.news-category {
    display: inline-block;
    background: var(--c-text);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 2px;
}

.news-content {
    flex: 1;
}

.news-title {
    font-weight: bold;
    margin: 0 0 10px 0;
    color: var(--c-text);
    font-size: 1.05rem;
}

.news-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.news-link {
    color: var(--c-accent);
    text-decoration: underline;
    font-weight: bold;
}

/* ===== 画像ボタン（CTA）エリア ===== */
.hero-cta-container {
    padding-top: 40px;
    padding-bottom: 10px;
    margin-bottom: -20px;
    position: relative;
    z-index: 10;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    max-width: 400px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.btn-img-link:hover {
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.1);
}

/* ===== フローセクション（新・4枚画像版） ===== */
/* ===== フローセクション（新・4枚画像版・修正） ===== */
.flow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* PC: 2列 */
    gap: 40px;
    
    /* ★修正：幅を広げて中央のバランスを良くする */
    max-width: 1100px; /* 900pxから拡大 */
    width: 100%;       /* 横幅いっぱいに */
    
    margin: 50px auto 0; /* 中央揃え */
    padding: 0 20px;     /* 念のための左右余白 */
}

.flow-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(43, 35, 24, 0.15);
    border: 1px solid rgba(176, 141, 85, 0.4);
    transition: transform 0.4s ease;
    background: #fff;
    
    /* ★追加：画像を確実に中央配置 */
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-item:hover {
    transform: translateY(-5px);
}

.flow-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.flow-item:hover img {
    transform: scale(1.03);
}

/* スマホ対応（ここは変更なしですが、記述を残しておきます） */
@media (max-width: 768px) {
    .flow-grid {
        grid-template-columns: 1fr; /* スマホ: 1列 */
        gap: 30px;
        padding: 0 10px;
    }
}


/* ===== 選ばれる理由（Reason） ===== */
.reason {
    background-color: #fff;
}

.reason-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.reason-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--c-bg);
    padding: 40px 25px;
    text-align: center;
    border: 2px solid var(--c-gold);
    position: relative;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: transform 0.3s;
}

.reason-card:hover {
    transform: translateY(-10px);
}

.reason-icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    background: var(--c-text);
    border-radius: 50%;
    border: 3px solid var(--c-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    object-fit: cover;
    transform: scale(1.15);
    border-radius: 50%;
}

.reason-card:first-child .reason-icon-wrapper .reason-icon {
    transform: scale(1.7) !important;
}

.reason-num {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
    z-index: 10;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: serif;
    border: 2px solid #fff;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.reason-title {
    font-size: 1.4rem;
    color: var(--c-accent);
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 1px solid rgba(43, 35, 24, 0.1);
    padding-bottom: 10px;
    display: inline-block;
}

.reason-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}

/* ===== 三つの誓い（奉書紙） ===== */
.concept {
    overflow: visible;
}

.makimono-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(43, 35, 24, 0.1));
    transition: transform 0.3s;
}

.makimono-container:hover {
    transform: translateY(-5px);
}

.makimono-bg {
    width: 100%;
    height: auto;
    display: block;
    background-color: transparent;
}

.makimono-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 180px 60px 80px;
    z-index: 5;
}

.concept-woman {
    position: absolute;
    bottom: -40px;
    right: -150px;
    height: 100%;
    width: auto;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(-5px 5px 10px rgba(0,0,0,0.2));
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.concept-layout-new {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
}

.concept-title-wrapper {
    min-width: 120px;
}

.vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.18em;
}

.section-title {
    font-size: 2.6rem;
    font-weight: bold;
    position: relative;
    margin: 0;
}

.concept-text-horizontal {
    flex: 1;
    max-width: 700px;
}

.promise-box {
    margin-bottom: 30px;
    border-bottom: 1px dashed rgba(176, 141, 85, 0.4);
    padding-bottom: 20px;
}

.promise-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.promise-title {
    font-size: 1.25rem;
    color: var(--c-accent);
    margin: 0 0 10px 0;
    font-weight: bold;
    font-family: serif;
}

.promise-box p {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    color: var(--c-text);
}

/* ===== 不安解消（Relief）エリア ===== */
.anxiety-relief {
    background-color: #f0ebe0;
    padding-bottom: 60px;
}

.relief-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.relief-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.relief-top {
    background: #e6e6e6;
    padding: 30px 20px 40px;
    text-align: center;
    position: relative;
}

.relief-icon-img {
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    opacity: 1;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.relief-q {
    font-weight: bold;
    font-size: 1.1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.relief-arrow {
    margin-top: -15px;
    margin-bottom: -15px;
    z-index: 2;
    background: var(--c-accent);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 3px solid #fff;
}

.relief-bottom {
    background: #fff;
    padding: 30px 20px 25px;
    text-align: center;
    border-top: 1px solid #eee;
    flex: 1;
    border-bottom: 4px solid var(--c-gold);
}

.relief-a-title {
    font-size: 1.3rem;
    color: var(--c-accent);
    margin: 0 0 15px;
    font-weight: bold;
}

.relief-a-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--c-text);
    text-align: left;
}

/* ===== お客様の声（Reviews） ===== */
.reviews {
    background-color: #f9f7f2;
    overflow: hidden;
}

.reviews-body {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.arrow:hover {
    background: var(--c-gold);
    transform: translateY(-50%) scale(1.1);
}

.arrow.left {
    left: -10px;
}

.arrow.right {
    right: -10px;
}

.reviews-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.reviews-box {
    flex: 0 0 100%;
    min-width: 280px;
    background: #fff;
    border: 1px solid rgba(176, 141, 85, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(43, 35, 24, 0.05);
}

@media (min-width: 768px) {
    .reviews-box {
        flex: 0 0 calc(50% - 10px);
    }
}

.review-inner {
    padding: 25px;
}

.review-header {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
    align-items: center;
}

.review-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    border: 2px solid var(--c-gold);
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.6;
}

.sub-title {
    font-weight: bold;
    color: var(--c-accent);
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.review-date {
    float: right;
    color: #999;
    font-size: 0.75rem;
}

.review-details p {
    margin: 0;
    color: #555;
}

.star-gold {
    color: #f4b400;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--c-text);
    margin: 0;
}

/* ===== よくある質問 ===== */
.vertical-layout {
    display: flex;
    gap: 55px;
    align-items: flex-start;
}

.faq-container {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid rgba(43, 35, 24, 0.12);
    margin-bottom: 20px;
    background: #fff;
    padding: 8px 0;
}

.faq-item summary {
    padding: 18px 0;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    transition: 0.3s;
}

.faq-item summary:hover {
    color: var(--c-accent);
}

.faq-q {
    background: var(--c-text);
    color: #fff;
    padding: 6px 10px;
    font-size: 0.8rem;
    margin-right: 15px;
    font-weight: bold;
}

.faq-body {
    padding-bottom: 20px;
    padding-left: 50px;
    color: #555;
    line-height: 2;
    font-size: 0.98rem;
}

/* ===== CTA ===== */
.cta-section {
    background: #1a1510;
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./image/bg-texture.png');
    background-size: 300px;
    opacity: 0.08;
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-frame {
    border: 1px solid rgba(176, 141, 85, 0.6);
    padding: 60px 40px;
    position: relative;
}

.cta-frame::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(176, 141, 85, 0.3);
    pointer-events: none;
}

.cta-content {
    text-align: center;
}

.cta-sub {
    color: var(--c-gold);
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    display: block;
    font-weight: bold;
}

.cta-title {
    font-size: 3rem;
    color: #fff;
    margin: 0 0 30px;
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(176, 141, 85, 0.3);
}

.cta-desc {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 50px;
    opacity: 0.9;
}

.btn-main-cta {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #fff;
    padding: 22px 80px;
    font-size: 1.4rem;
    border: 1px solid var(--c-gold);
    background: rgba(176, 141, 85, 0.1);
    overflow: hidden;
    transition: 0.4s;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.btn-main-cta:hover {
    letter-spacing: 0.2em;
    color: #fff;
    border-color: #d4af70;
    box-shadow: 0 0 30px rgba(176, 141, 85, 0.4);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--c-gold);
    z-index: -1;
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-main-cta:hover .btn-bg {
    width: 100%;
}

.btn-inner {
    position: relative;
    z-index: 2;
}

/* ===== 追尾バー（Sticky Footer）PC・スマホ共通 ===== */
.sticky-footer {
    position: fixed;
    bottom: -120px;
    left: 0;
    width: 100%;
    background: rgba(245, 242, 235, 0.98);
    border-top: 3px solid var(--c-gold);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 15px 0; /* ★10px→15pxに増やして余裕を持たせる */
    transition: bottom 0.4s ease;
    display: block;
}

.sticky-footer.is-visible {
    bottom: 0;
}

/* メニュー展開時に隠すクラス */
.sticky-footer.hidden-by-menu {
    bottom: -200px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.sticky-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- PC専用：買取率アピール --- */
.sticky-promo {
    text-align: right;
    color: var(--c-text);
    line-height: 1.2;
}
.promo-sub {
    font-size: 0.9rem; 
    font-weight: bold; 
    color: var(--c-gold);
    margin: 0 0 2px 0; 
    letter-spacing: 0.1em;
}
.promo-main {
    font-size: 1.4rem; 
    font-weight: bold; 
    margin: 0; 
    color: var(--c-text);
}
.promo-num {
    font-size: 2.4rem; 
    font-family: serif; 
    margin-left: 5px; 
    font-weight: 900;
    background: linear-gradient(120deg, #d60000 0%, #d60000 40%, #ffea00 50%, #d60000 60%, #d60000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;
    animation: shine-flow 4s linear infinite;
    filter: drop-shadow(2px 2px 0 rgba(255,255,255,0.8));
}
@keyframes shine-flow {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* --- ボタンエリア --- */
.sticky-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, filter 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.sticky-btn img {
    /* PCでは高さを90pxに統一 */
    height: 90px !important;
    width: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
    display: block;
}

/* ★★★ 新規追加：button1.png（メールボタン）だけ大きくする ★★★ */
.sticky-btn img[src*="button1.png"] {
    height: 110px !important; /* 90px→110pxに拡大 */
}

/* Body余白（追尾バー分） */
body { 
    padding-bottom: 120px; 
}

/* ===== スマホ対応（調整） ===== */
@media (max-width: 768px) {
    .pc-only { 
        display: none; 
    }

    .sticky-footer { 
        padding: 12px 15px; /* スマホも少し余裕を持たせる */
    }
    
    .sticky-inner { 
        width: 100%; 
        gap: 0; 
    }

    .sticky-buttons {
        width: 100%;
        gap: 12px; /* ボタン間隔を少し広げる */
        justify-content: space-between;
    }

    .sticky-btn {
        /* スマホでは幅基準 */
        width: 48%;
        flex: 1;
    }
    
    /* ★スマホでは高さ固定を解除して幅100%に */
    .sticky-btn img {
        width: 100% !important;
        height: auto !important;
        max-height: 80px; /* 高さの上限を設定して巨大化防止 */
    }
}

/* Body余白 */
body { padding-bottom: 100px; }

/* ===== スマホ対応（調整） ===== */
@media (max-width: 768px) {
    .pc-only { display: none; }

    .sticky-footer { padding: 10px 15px; }
    
    .sticky-inner { width: 100%; gap: 0; } /* 隙間なし */

    .sticky-buttons {
        width: 100%;
        gap: 10px; /* スマホでのボタン間隔 */
        justify-content: space-between;
    }

    .sticky-btn {
        /* ★重要：スマホでは「幅」基準に戻す */
        width: 48%; /* 2つ並べるので半分弱 */
        flex: 1;
    }
    
    .sticky-btn img {
        /* ★重要：スマホでは「高さ固定」を解除し、「幅100%」に戻す */
        width: 100%;
        height: auto;
    }
}


/* ===== フッター修正版（メニュー追加） ===== */
.footer {
    background: #1a1510;
    color: #fff; /* 文字色を白っぽく */
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-logo {
    filter: invert(1);
    height: 50px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* フッターナビゲーション */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px; /* 上下15px 左右30pxの隙間 */
    max-width: 1000px;
}

.footer-nav li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    font-family: var(--font-gothic); /* 読みやすさ重視でゴシック体推奨 */
}

.footer-nav li a:hover {
    color: var(--c-gold);
    text-decoration: underline;
}

.kobutsu-number {
    font-family: var(--font-mincho);
    letter-spacing: 0.05em;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    .footer-nav li a {
        font-size: 0.9rem;
        padding: 5px; /* タップしやすく */
        display: block;
    }
}


/* ===== オープニング演出（ローディング） ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.loading-bg {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #fcfbf5;
    background-image: url('./image/bg-texture.png');
    background-size: 400px;
    z-index: 1;
}

.loading-bg.left {
    left: 0;
    border-right: 1px solid rgba(176, 141, 85, 0.3);
}

.loading-bg.right {
    right: 0;
    border-left: 1px solid rgba(176, 141, 85, 0.3);
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.loading-logo {
    width: 180px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--c-accent);
}

/* ===== ハンバーガーメニュー（スマホ用） ===== */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 9999;
}

.hamburger span {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 2px;
    background-color: var(--c-text);
    transition: 0.4s;
}

.hamburger span:nth-of-type(1) {
    top: 10px;
}

.hamburger span:nth-of-type(2) {
    top: 19px;
}

.hamburger span:nth-of-type(3) {
    top: 28px;
}

.hamburger.active span:nth-of-type(1) {
    top: 19px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f5f2eb;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
        url('./image/bg-texture.png');
    background-size: auto, 400px;
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sp-nav.active {
    opacity: 1;
    pointer-events: auto;
}

.sp-nav-scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 80px 20px 40px;
}

.sp-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.sp-nav-logo img {
    width: 140px;
    margin-bottom: 30px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.sp-nav-links {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    border-top: 1px solid rgba(176, 141, 85, 0.3);
    border-bottom: 1px solid rgba(176, 141, 85, 0.3);
    padding: 20px 0;
}

.sp-nav-link {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--c-text);
    text-decoration: none;
    margin: 20px 0;
    font-family: serif;
    transition: color 0.3s;
}

.sp-nav-link:active {
    color: var(--c-accent);
}

.sp-nav-btns {
    width: 100%;
    text-align: center;
}

.sp-btn-title {
    font-size: 0.9rem;
    color: var(--c-accent);
    font-weight: bold;
    margin-bottom: 10px;
}

.sp-menu-btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    transition: transform 0.2s;
}

.sp-menu-btn:active {
    transform: scale(0.96);
}

.sp-menu-btn img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* =========================================
   完全レスポンシブ対応（スマホ調整）
   ========================================= */
@media (max-width: 768px) {
    /* 1. ヘッダー調整 */
    .header {
        height: 60px;
        padding: 0 15px;
    }

    .nav {
        display: none;
    }

    .logo img {
        height: 65px;
        top: -5px;
    }

    .hamburger {
        display: block;
    }

    /* 2. ヒーロー調整 */
    .hero {
        margin-top: 60px;
        position: relative;
        height: auto;
        min-height: auto;
        display: block;
        padding-bottom: 0;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .hero-img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 20;
        padding: 0 15px 20px;
        box-sizing: border-box;
    }

    .hero-title-area {
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 10px 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0,0,0,0.1);
        border-top: 3px solid var(--c-gold);
        border-radius: 6px;
        text-align: center;
        display: block;
        position: relative;
    }

    .brush-accent {
        display: none;
    }

    .hero-subtitle.vertical,
    .hero-title.vertical {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        height: auto;
        margin: 0 auto;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 5px;
        display: block;
        color: var(--c-accent);
        font-weight: bold;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        display: block;
        margin-bottom: 0;
        padding-right: 35px;
    }

    .hero-stamp {
        width: 55px;
        bottom: 10px;
        right: 8px;
        left: auto;
        transform: rotate(-10deg);
        opacity: 1;
        z-index: 25;
    }

    .scroll-indicator {
        display: none;
    }

    /* 3. お知らせ調整 */
    .news-frame {
        padding: 20px 15px;
    }

    .news-item {
        flex-direction: column;
        gap: 10px;
    }

    .news-meta {
        width: 100%;
        text-align: left;
        display: flex;
        gap: 15px;
        align-items: center;
    }

/* ===== ヒーロー下のボタンエリア（修正版） ===== */
.hero-cta-container {
    /* ★修正：PCではしっかり余白を取って、被りを防ぐ */
    padding-top: 60px; 
    padding-bottom: 40px;
    margin-top: 0;
    margin-bottom: 0;
    
    position: relative;
    z-index: 10;
    
    /* 念のため配置をリセット */
    top: auto;
    right: auto;
    left: auto;
}

/* ボタンの並び（PC） */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center; /* 高さを揃える */
    gap: 30px;
    flex-wrap: wrap;
}


    .btn-img-link {
        width: 100%;
        max-width: 320px;
        margin-bottom: -15px !important;
    }

    .btn-img-link:last-child {
        margin-bottom: 0 !important;
    }

    .btn-img {
        height: auto;
    }

    /* 5. セクション調整 */
    #flow {
        padding-top: 10px !important;
    }

    .sp-only {
        display: block;
    }

    .section-title-horizontal {
        font-size: 1.8rem;
        line-height: 1.5;
        width: 100%;
        word-break: keep-all;
    }

    /* 6. 口コミ調整 */
    .reviews-body {
        padding: 0 30px;
        width: 100%;
        max-width: 100%;
    }

    .reviews-slider {
        width: 100%;
    }

    .reviews-box {
        flex: 0 0 100%;
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .review-inner {
        padding: 20px 15px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .review-date {
        float: none;
        display: block;
        margin-top: 5px;
    }

    .arrow.left {
        left: -5px;
    }

    .arrow.right {
        right: -5px;
    }

    /* 7. 各グリッド調整 */
    .floating-element,
    .corner-ornament {
        display: none !important;
    }

    .flow-grid,
    .reason-grid,
    .relief-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .reason-card,
    .relief-card,
    .flow-item {
        width: 100%;
        max-width: 100%;
    }

    /* 8. 巻物調整 */
    .makimono-bg,
    .concept-woman {
        display: none;
    }

    .makimono-container {
        background-image: url('./image/makimono.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-color: transparent;
        border: none;
        padding: 60px 20px;
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    }

    .makimono-content {
        position: relative;
        padding: 0;
        display: block;
        height: auto;
    }

    .concept-layout-new {
        flex-direction: column;
        gap: 30px;
    }

    .section-title.vertical {
        writing-mode: horizontal-tb;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
        font-size: 2rem;
        color: #2b2318;
    }

    .concept-title-wrapper {
        width: 100%;
        text-align: center;
    }

    /* 9. FAQ調整 */
    .vertical-layout {
        flex-direction: column;
    }

    .faq-body {
        padding-left: 15px;
    }

    /* 10. CTA調整 */
    .cta-frame {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn-main-cta {
        width: 100%;
        padding: 18px 0;
        font-size: 1.2rem;
    }

    /* 11. Sticky Footer調整 */
    .pc-only {
        display: none;
    }

    .sticky-footer {
        padding: 10px 15px;
    }

    .sticky-inner {
        width: 100%;
        gap: 10px;
    }

    .sticky-buttons {
        width: 100%;
        gap: 10px;
    }

    .sticky-btn {
        width: auto;
        flex: 1;
    }

    .sticky-btn img {
        height: auto;
    }
}


/* ===== サイド追尾漫画スライダー ===== */
.side-manga-widget {
    position: fixed;
    bottom: 140px; /* 追尾フッターより上 */
    right: 20px;
    width: 200px; /* サイズ調整 */
    height: auto;
    z-index: 9000;
    cursor: pointer;
    transition: transform 0.3s;
    /* サイトの雰囲気に合わせて少し傾ける演出 */
    transform: rotate(-3deg);
}

.side-manga-widget:hover {
    transform: rotate(0deg) scale(1.05); /* ホバーで正位置＆拡大 */
}

.manga-frame {
    background: #fff;
    border: 4px solid var(--c-gold);
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

/* 画像の重ね合わせ */
.manga-slider-inner {
    position: relative;
    width: 100%;
    /* 縦横比を固定（マンガの比率に合わせて調整してください） */
    /* 例: 縦長なら 3:4 くらい */
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    background: #000;
}

.manga-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease; /* フェードイン・アウト */
}

.manga-img.active {
    opacity: 1; /* activeクラスがついている画像だけ表示 */
}

/* ラベル */
.manga-label {
    position: absolute;
    bottom: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.2;
}

/* 閉じるボタン */
.manga-close {
    position: absolute;
    top: -10px; right: -10px;
    width: 24px; height: 24px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

/* ===== サイド追尾漫画スライダー（修正版） ===== */
.side-manga-widget {
    position: fixed;
    bottom: 140px;
    right: 20px;
    width: 200px; /* ★大きくしました */
    height: auto;
    z-index: 9000;
    cursor: pointer;
    transition: transform 0.3s;
    transform: rotate(-3deg);
}

.side-manga-widget:hover {
    transform: rotate(0deg) scale(1.05);
}

.manga-frame {
    background: #fff;
    border: 4px solid var(--c-gold);
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4); /* 影を強く */
    position: relative;
}

.manga-slider-inner {
    position: relative;
    width: 100%;
    /* ★修正：縦長の画像に合わせて比率を変更（9:16） */
    aspect-ratio: 9 / 16; 
    overflow: hidden;
    background: #000;
}

.manga-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover; /* 比率が合えばこれで綺麗に埋まります */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.manga-img.active {
    opacity: 1;
}

.manga-label {
    position: absolute;
    bottom: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    color: #fff;
    font-size: 0.85rem; /* 文字も少し大きく */
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.2;
}

.manga-close {
    position: absolute;
    top: -12px; right: -12px;
    width: 28px; height: 28px;
    background: #333;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

/* ===== 拡大モーダル用CSS ===== */
.manga-modal {
    display: none; /* 初期非表示 */
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85); /* 背景を暗く */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
}

#modal-img {
    max-width: 100%;
    max-height: 90vh;
    border: 4px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

    /* ===== スマホ対応エリア内 ===== */

    /* モーダルの閉じるボタン（位置修正＆見やすさ確保） */
    .modal-close {
        /* ★重要：位置を強制的に指定 */
        position: absolute !important; 
        top: 15px !important;
        right: 15px !important;
        left: auto !important;   /* 左寄せを解除 */
        bottom: auto !important; /* 下寄せを解除 */
        
        /* 見た目（黒い丸） */
        background: rgba(0, 0, 0, 0.7); 
        border: 1px solid #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        
        /* ×印を真ん中に */
        display: flex;
        align-items: center;
        justify-content: center;
        
        font-size: 24px;
        color: #fff;
        z-index: 10002;
    }


/* 左右の矢印ボタン */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    user-select: none;
}
.modal-nav:hover { background: rgba(255,255,255,0.5); }
.modal-nav.left { left: -70px; }
.modal-nav.right { right: -70px; }

/* =========================================
   スマホ対応：漫画ウィジェット＆モーダル調整
   ========================================= */
@media (max-width: 768px) {
    
    /* --- 1. 漫画ウィジェット本体 --- */
    /* 漫画ウィジェットの調整 */
    .side-manga-widget {
        width: 120px; 
        
        /* ★修正：200pxから110pxに下げて、追尾バーのちょい上にする */
        bottom: 110px; 
        
        right: 10px;
        transform: rotate(-2deg);
    }

    /* --- 2. 赤いラベル（文字切れ防止） --- */
    .manga-label {
        font-size: 11px; /* 少し文字サイズアップ */
        padding: 5px 4px;
        
        /* 帯の幅を親要素よりかなり広く取る */
        width: 140%; 
        
        /* 中央寄せ配置 */
        left: 50%;
        transform: translateX(-50%);
        bottom: -12px;
        
        line-height: 1.2;
        white-space: nowrap; /* 改行禁止 */
    }
    
    /* 閉じるボタンを押しやすく */
    .manga-close {
        width: 30px;
        height: 30px;
        top: -15px;
        right: -15px;
    }

    /* --- 3. 拡大時の矢印ボタン（端に寄せる） --- */
    .modal-nav.left { 
        left: 10px; 
        background: rgba(0,0,0,0.5); /* スマホ用に濃く */
    }
    .modal-nav.right { 
        right: 10px; 
        background: rgba(0,0,0,0.5); 
    }
}



/* ===== 他社比較セクション ===== */
.comparison {
    background-color: #fcfbf5; /* 少し明るめの背景 */
}

.comparison-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    border: 2px solid var(--c-gold);
    background: #fff;
    box-shadow: 0 10px 25px rgba(43, 35, 24, 0.1);
    overflow: hidden;
    border-radius: 8px;
}

.comp-row {
    display: flex;
    border-bottom: 1px solid rgba(176, 141, 85, 0.3);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-col {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

/* 列ごとのスタイル */
.label-col {
    width: 20%;
    background: #f0ebe0;
    font-weight: bold;
    color: var(--c-text);
    font-family: var(--font-mincho);
}

.other-col {
    width: 35%;
    background: #fff;
    color: #888;
    position: relative;
}
/* 他社のバツ印的な装飾（任意） */
.other-col::after {
    content: "▲";
    display: block;
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 5px;
}

.our-col {
    width: 45%;
    background: #fffcf5; /* 薄いゴールド背景 */
    color: var(--c-text);
    font-weight: bold;
    position: relative;
    border-left: 2px solid var(--c-gold);
}

/* 当店ヘッダー強調 */
.comp-header .our-col {
    background: var(--c-accent);
    color: #fff;
}
.our-badge {
    background: var(--c-gold);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 5px;
    display: inline-block;
}

/* 強調文字 */
.big-num {
    font-size: 1.8rem;
    color: #d60000;
    font-weight: 900;
    font-family: serif;
    line-height: 1.2;
}

.highlight-text {
    color: var(--c-accent);
    font-size: 1.2rem;
}

.text-sm {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.8;
}

.comparison-note {
    text-align: right;
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .comp-col {
        padding: 15px 5px;
        font-size: 0.9rem;
    }
    .label-col { width: 20%; font-size: 0.85rem; }
    .other-col { width: 35%; }
    .our-col { width: 45%; }
    
    .big-num { font-size: 1.4rem; }
    .highlight-text { font-size: 1rem; }
}


/* ===== 比較表のロゴ調整（修正版） ===== */
.comp-logo-img {
    /* PCでのサイズ設定 */
    width: 160px; /* ★120pxから大幅アップ */
    max-width: none; /* 制限解除 */
    height: auto;
    display: block;
    
    /* ★ここがポイント：ネガティブマージンではみ出させる */
    margin: -10px -20px; /* 上下左右にはみ出させる */
    
    /* 配置の微調整 */
    transform: scale(1.1); /* さらに1.1倍に拡大（お好みで調整可） */
    transform-origin: center;
}

/* 親要素（セル）の設定を確認・追加 */
.comp-header .our-col {
    overflow: visible !important; /* ★重要：はみ出しを許可する */
    z-index: 10; /* 他の要素より上に表示 */
    padding: 10px 5px; /* 上下の余白を少し詰める */
}

/* スマホ対応の調整 */
@media (max-width: 768px) {
    .comp-logo-img {
        width: 110px; /* スマホでも少し大きく */
        margin: -5px -10px;
        transform: scale(1.0);
    }
}
