:root {
    /* Colors */
    --primary: #D4AF37;
    /* Gold */
    --primary-light: #F3E5AB;
    --accent-line: #06C755;
    /* LINE Green */
    --accent-tel: #CC0000;
    /* Phone Red */
    --text-main: #333333;
    --text-light: #666666;
    --bg-body: #FFFFFF;
    --bg-secondary: #F9F9F9;

    /* Spacing */
    --container-padding: 20px;
    --section-padding: 60px;

    /* Z-index */
    --z-fixed: 1000;
    --z-modal: 2000;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 70px;
    /* Space for fixed CTA */
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.3;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-gray {
    background-color: var(--bg-secondary);
}

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

.gold-text {
    color: var(--primary);
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    color: white;
    font-size: 1rem;
    transition: opacity 0.3s;
    gap: 8px;
}

.btn:hover {
    opacity: 0.9;
}

.btn-line {
    background-color: var(--accent-line);
}

.btn-tel {
    background-color: var(--accent-tel);
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    height: auto;
    /* Allow height to grow */
    padding-top: 20px;
    /* Added space */
    padding-bottom: 10px;
    /* Added bottom padding for balance */
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo h1 {
    font-size: 1.2rem;
    color: #000;
}

.header-logo .small-text {
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 5px;
}

.header-tel-btn {
    font-size: 1.5rem;
    color: var(--accent-tel);
}

@media (min-width: 768px) {
    .header {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-logo h1 {
        font-size: 1.5rem;
    }

    .header-info {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: right;
    }

    .tel-number {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--text-main);
    }

    .business-hours {
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
    }
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    /* Min height to look good on mobile */
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #222;
    /* Fallback */
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* User provided image */
    background-image: url('public/images/hero_top.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg .overlay {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.badge {
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 100px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}


/* Urgent Appeal */

.appeal-title {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.4;
}

.appeal-point-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appeal-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Intro (Paid Points) */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--primary);
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.intro-item {
    text-align: center;
}

.intro-img-wrapper {
    background: #ccc;
    aspect-ratio: 4/3;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.intro-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    color: #666;
    font-weight: bold;
}

.intro-text {
    font-weight: bold;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .intro-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Solutions */
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solution-img {
    background: #ddd;
    aspect-ratio: 1/1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.solution-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

@media (min-width: 768px) {
    .solution-card {
        flex-direction: row;
        align-items: center;
    }

    .solution-card.reverse {
        flex-direction: row-reverse;
    }

    .solution-img {
        width: 40%;
        aspect-ratio: 1/1;
    }

    .solution-body {
        width: 60%;
        padding: 0 20px;
    }
}

/* LINE Flow */
.line-flow {
    background: #f4fbf4;
    /* Light green tint */
}

.line-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.line-step-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.line-step-item:hover {
    border-color: var(--accent-line);
}

.step-label {
    background: var(--accent-line);
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
}

.step-img img {
    max-height: 100%;
    width: auto;
}

.step-text {
    font-weight: bold;
    color: var(--text-main);
    line-height: 1.5;
}

.line-flow-notes {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.pc-note {
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    color: #666;
}

.reassurance-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reassurance-list li {
    font-weight: bold;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reassurance-list li i {
    color: var(--accent-line);
}

@media (min-width: 768px) {
    .line-steps-grid {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .line-step-item {
        flex: 1;
        max-width: 300px;
    }

    .line-flow-notes {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .reassurance-list {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

/* Achievements (Grid & Modal) */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.achievement-item {
    cursor: pointer;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

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

.achievement-img {
    aspect-ratio: 1;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Added */
}

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

.achievement-info {
    padding: 10px;
    text-align: center;
}

.achievement-info .name {
    font-size: 0.8em;
    margin-bottom: 5px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    line-height: 1.25;
    overflow: hidden;
}

.achievement-info .price {
    font-weight: bold;
    color: var(--accent-tel);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .achievement-info .name {
        font-size: 0.9rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.modal-img {
    max-height: 250px;
    margin: 0 auto 15px;
}

.modal-title {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Categories */
.category-group {
    margin-bottom: 30px;
}

.category-group h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-tags span {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Category Message */
.category-message {
    margin-top: 40px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.category-message h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px dashed #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

.category-message p {
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.8;
}

.category-message p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .category-message {
        padding: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .category-message p {
        text-align: center;
    }
}

/* Category Points */
.category-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.category-points li {
    list-style: none;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 0.95rem;
}

.category-points li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Brand Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
    gap: 10px;
}

.brand-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.brand-card .brand-img {
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

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

.brand-card .brand-meta {
    background: #003366;
    /* Dark Blue */
    color: #fff;
    padding: 8px 5px;
}

.brand-card .brand-en {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.brand-card .brand-jp {
    display: block;
    font-size: 0.7rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        /* Responsive row on PC */
        gap: 15px;
    }
}

/* LINE Title Decoration */


/* Precious Metal Categories */
.category-header {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 5px solid #d4af37;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 columns */
    gap: 10px;
    margin-bottom: 30px;
}

.item-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.item-card .item-img {
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.item-card .item-img img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.item-card .item-name {
    background: #4B0082;
    /* Dark Purple */
    color: #fff;
    /* White Text */
    padding: 10px 5px;
    font-size: 0.9rem;
    font-weight: bold;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .category-item-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        /* Desktop: Auto fit */
        gap: 15px;
    }
}



/* Methods (Tabs) */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    flex: 1;
    max-width: 150px;
    padding: 10px;
    border: none;
    background: #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.method-inner {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--primary);
}

.method-img {
    background: #eee;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Added */
}

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

@media (min-width: 768px) {
    .method-inner {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .method-img {
        width: 40%;
        margin-bottom: 0;
    }

    .method-text {
        width: 60%;
    }
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reviewer-meta {
    margin-bottom: 10px;
}

.reviewer-meta .age {
    font-weight: bold;
    margin-right: 10px;
}

.reviewer-meta .tag {
    background: #eee;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.review-text {
    color: #555;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Access */
.access-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-list {
    margin-top: 15px;
}

.info-list dt {
    float: left;
    width: 80px;
    font-weight: bold;
    clear: left;
    margin-bottom: 10px;
}

.info-list dd {
    margin-left: 80px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .access-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        /* Ensure spacing */
    }

    .access-map {
        width: 48%;
        /* Adjust to ensure side-by-side fit */
    }

    .access-info {
        width: 48%;
        padding-left: 0;
        /* Removing padding, using gap/justify instead usually better but sticking to width adjustment */
    }
}

.parking-map-section {
    width: 100%;
    margin-top: 40px;
    display: flex;
    /* Added flex to ensure centering */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
}

/* Footer & Fixed CTA */
.footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    margin-bottom: 50px;
    /* Space above fixed CTA */
}

.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    z-index: var(--z-fixed);
}

.fixed-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    gap: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    /* Above the fixed footer CTA (approx 60-70px high) */
    right: 20px;
    background-color: var(--primary);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 900;
    /* Below Modal (2000) and Fixed CTA (1000 default if not set, but usually high) */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #b5952f;
    transform: translateY(-3px);
}

/* LINE Instructions Layout (Card Style) */
.line-instruction-container {
    max-width: 800px;
    /* Enough for 2 cards + gap */
    margin-left: auto;
    margin-right: auto;
}

.line-instruction-wrapper {
    display: flex;
    flex-direction: column;
    /* Mobile: Column */
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* Common Card Styles */
.li-image,
.li-content {
    background: #fff;
    width: 100%;
    max-width: 300px;
    /* Match Step width */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.li-image {
    padding: 10px;
    /* Small padding like step img */
    aspect-ratio: auto;
    /* Remove conflict */
    display: flex;
    align-items: center;
    justify-content: center;
}

.li-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.li-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

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

.li-badge {
    background: #FF0000;
    color: #fff;
    padding: 5px 12px;
    /* Rectangular padding */
    border-radius: 8px;
    /* Rounded rectangle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    /* Larger text */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    line-height: 1.2;
}

.li-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main);
}

.li-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.li-item-header {
    font-weight: bold;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-top: 5px;
}

.li-item-header:first-child {
    margin-top: 0;
}

.li-sub-item {
    font-size: 0.75rem;
    color: #555;
    margin-left: 0.8rem;
    line-height: 1.4;
}

.li-note {
    font-size: 0.7rem;
    color: #999;
    margin-top: 10px;
    text-align: center;
}

/* PC Layout */
@media (min-width: 768px) {
    .line-instruction-wrapper {
        flex-direction: row;
        /* PC: Row */
        align-items: stretch;
        /* Equal height cards */
        gap: 20px;
        /* Same as steps */
    }

    .li-image,
    .li-content {
        flex: 1;
        max-width: 300px;
        /* Strict width match */
    }
}

/* LINE Flow Title */
.line-flow-title {
    text-align: center;
    font-size: 1.6rem;
    /* Large but fits mobile */
    font-weight: bold;
    color: #06C755;
    /* LINE Green */
    margin-bottom: 20px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .line-flow-title {
        font-size: 2.2rem;
    }
}

/* Detailed Table */
.detailed-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.detailed-table th,
.detailed-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.detailed-table th {
    background-color: #f3e5ab;
    /* Light Gold */
    color: #333;
    font-weight: bold;
    white-space: nowrap;
}

.detailed-table .col-category {
    font-weight: bold;
    color: #d4af37;
    background: #fffcf0;
    width: 15%;
}

.detailed-table .col-items {
    width: 50%;
}

.detailed-table .col-note {
    width: 35%;
    font-size: 0.9rem;
    color: #555;
}

/* Mobile Responsive Table */
@media (max-width: 768px) {

    .detailed-table,
    .detailed-table tbody,
    .detailed-table tr,
    .detailed-table td {
        display: block;
        width: 100%;
    }

    .detailed-table thead {
        display: none;
    }

    .detailed-table tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .detailed-table td {
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        word-break: auto-phrase;
        line-break: strict;
        overflow-wrap: break-word;
        line-height: 1.6;
    }

    .detailed-table td:last-child {
        border-bottom: none;
    }

    .detailed-table .col-category {
        background: #d4af37;
        color: #fff;
        text-align: center;
        width: 100%;
    }

    .detailed-table .col-items,
    .detailed-table .col-note {
        width: 100%;
    }

    .detailed-table .col-items::before {
        content: '主な品目';
        display: block;
        font-size: 0.8rem;
        color: #999;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .detailed-table .col-note::before {
        content: '特記事項';
        display: block;
        font-size: 0.8rem;
        color: #999;
        margin-bottom: 5px;
        font-weight: bold;
    }
}

/* Reassurance Section */
.reassurance-section {
    background: #fff;
    border-top: 1px solid #eee;
    /* border-bottom: 1px solid #eee; */
    /* Removed bottom border to blend better if needed, but keeping consistent spacing */
}

.section-padding-sm {
    padding: 40px 0;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.reassurance-card {
    text-align: center;
    padding: 25px 20px;
    background: #fffcf0;
    /* Light gold tint */
    border: 2px solid #f3e5ab;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.reassurance-card:hover {
    transform: translateY(-5px);
}

.reassurance-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.reassurance-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.reassurance-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .reassurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    user-select: none;
}

/* Question active state color */
.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-toggle-icon {
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 1.2rem;
}

.faq-answer {
    display: none;
    /* JS will toggle this */
    padding-bottom: 25px;
    padding-top: 5px;
    color: #555;
    line-height: 1.8;
    padding-right: 40px;
    /* Space for icon alignment roughly */
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-q-mark {
    color: var(--primary);
    margin-right: 15px;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Estate Sale */
.estate-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.estate-img {
    width: 100%;
    max-height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

.estate-content {
    flex: 1;
}

.estate-text {
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .estate-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .estate-img {
        width: 40%;
    }

    .estate-content {
        width: 60%;
        padding-left: 20px;
    }
}