/******* Do not edit this file *******
Simple Custom CSS and JS
CSS code

This file was generated by the plugin
*******/

/* ========================================
   基本設定
======================================== */
:root {
    --primary-color: #0ABAB5;
    --primary-dark: #089B96;
    --primary-light: #81D8D0;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.sp-only {
    display: none;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1;
    margin-top: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tel-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
}

.tel-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.4);
}

.tel-button i {
    font-size: 20px;
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-line {
    background: #06C755;
    color: var(--white);
}

.btn-line:hover {
    background: #05B04C;
    transform: translateY(-3px);
}

.btn-phone {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-phone:hover {
    background: #FFC700;
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--text-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background: #222;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
}

.feature-item i {
    font-size: 24px;
}

/* ========================================
   買取実績セクション
======================================== */
.stats {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--white);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* スマホ版：15000を1.5万として表示 */
@media (max-width: 768px) {
    .stat-card:first-child .stat-number-static {
        visibility: hidden;
        position: relative;
        height: 22px;
    }
    .stat-card:first-child .stat-number-static::before {
        content: '1.5万';
        font-size: 22px;
        font-weight: 900;
        letter-spacing: -0.5px;
        visibility: visible;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* スマホ版：全ての数字を統一サイズに */
    .stat-number {
        font-size: 22px !important;
    }
    
    .stat-unit {
        font-size: 16px;
        margin-bottom: 3px;
        margin-top: 3px;
    }
    
    .stat-label {
        font-size: 9px;
        margin-top: 3px;
    }
}

/* PC版：15000を15,000として表示 */
@media (min-width: 769px) {
    .stat-number-static:first-of-type::before {
        content: '15,000';
    }
    .stat-card:first-child .stat-number-static {
        font-size: 0;
    }
    .stat-card:first-child .stat-number-static::before {
        content: '15,000';
        font-size: 56px;
    }
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 5px;
}

.stat-unit {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 5px;
}

/* ========================================
   選ばれる理由セクション
======================================== */
.reasons {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   高価買取の理由セクション
======================================== */
.price-comparison {
    padding: 80px 0;
    background: var(--white);
}

.price-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-example-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.price-example-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-example-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-example-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price-comparison-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.our-price, .other-price {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.our-price .label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.our-price .price {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
}

.other-price .label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.other-price .price {
    font-size: 24px;
    font-weight: 700;
    color: #999;
    text-decoration: line-through;
}

.vs {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-dark);
    padding: 0 5px;
}

.price-diff {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

.price-diff i {
    color: #FF6B6B;
}

.high-price-reasons {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.reasons-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 40px;
}

.reasons-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.reason-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.reason-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}

.reason-icon-circle i {
    font-size: 36px;
    color: var(--primary-color);
}

.reason-detail-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.reason-detail-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.price-note {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.price-note i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ========================================
   買取品目セクション
======================================== */
.items {
    padding: 80px 0;
    background: var(--white);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.item-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.item-card:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.item-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.item-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.item-card p {
    color: var(--text-light);
    font-size: 14px;
}

.item-note {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: var(--primary-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.item-note i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.item-note span {
    flex: 1;
    text-align: center;
}

.items-note {
    text-align: center;
    padding: 30px;
    background: var(--primary-light);
    border-radius: 10px;
    color: var(--text-dark);
}

.items-note i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ========================================
   出張買取の流れ
======================================== */
.flow {
    padding: 80px 0;
    background: var(--bg-light);
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
}

.flow-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.flow-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.flow-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.flow-step p {
    font-size: 14px;
    color: var(--text-light);
}

.flow-arrow {
    font-size: 32px;
    color: var(--primary-color);
}

/* ========================================
   お客様の声
======================================== */
.reviews {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 2px solid var(--primary-light);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

.author-info {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   よくあるご質問
======================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.faq-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card h3 i {
    color: var(--primary-color);
    font-size: 20px;
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* ========================================
   CTA
======================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta > p {
    font-size: 22px;
    margin-bottom: 60px;
}

.cta-subtitle {
    font-size: 22px;
    margin-bottom: 60px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-note {
    font-size: 16px;
    color: var(--white);
}

/* ========================================
   フッター
======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-section h3 span {
    display: block;
    font-size: 14px;
    color: var(--primary-light);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-section p {
    color: #CCC;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #CCC;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* ========================================
   トップに戻るボタン
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

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

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   固定電話ボタン（スマホ用）
======================================== */
.fixed-call-button {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.fixed-call-button i {
    font-size: 18px;
    animation: phonePulse 2s infinite;
}

.fixed-call-button:hover {
    background: #FFC700;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* スマホのみ表示 */
@media (max-width: 768px) {
    .fixed-call-button {
        display: flex;
    }
}

/* ========================================
   アニメーション
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 992px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid #EEE;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 30px;
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .flow-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .flow-step {
        width: auto;
    }
    
    .flow-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin: 0 auto 10px;
    }
    
    .flow-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .flow-step h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .flow-step p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }
    
    .feature-item {
        font-size: 14px;
        justify-content: flex-start;
        width: 160px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .feature-item span {
        text-align: left;
        flex: 1;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats {
        padding: 40px 0;
    }
    
    .stats-grid {
        display: flex;
        justify-content: center;
        gap: 8px;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .stat-card {
        flex: 1;
        max-width: 120px;
        min-width: 110px;
        padding: 18px 10px;
        border-radius: 12px;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: visible;
    }
    
    .stat-icon {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .stat-number {
        font-size: 22px;
        margin-bottom: 5px;
        line-height: 1.2;
        font-weight: 900;
        word-break: keep-all;
        white-space: nowrap;
        overflow: visible;
        letter-spacing: -0.5px;
    }
    
    .stat-label {
        font-size: 9px;
        margin-bottom: 2px;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .stat-unit {
        font-size: 11px;
        font-weight: 700;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reason-card {
        padding: 25px 15px;
    }
    
    .reason-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .reason-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .reason-card p {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .item-card {
        padding: 15px 8px;
    }
    
    .item-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .item-card h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .item-card p {
        font-size: 10px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .review-card {
        padding: 20px 15px;
    }
    
    .review-stars {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .review-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-info {
        font-size: 11px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-card {
        padding: 20px 15px;
    }
    
    .faq-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .faq-card h3 i {
        font-size: 16px;
    }
    
    .faq-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .price-examples {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .price-example-card {
        padding: 25px 15px;
    }
    
    .price-example-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .price-example-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .our-price .price {
        font-size: 24px;
    }
    
    .other-price .price {
        font-size: 20px;
    }
    
    .price-diff {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .high-price-reasons {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .reasons-title {
        font-size: 22px;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .reasons-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-detail-card {
        padding: 30px 15px;
    }
    
    .reason-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .reason-icon-circle i {
        font-size: 28px;
    }
    
    .reason-detail-card h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .reason-detail-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .price-note {
        font-size: 12px;
        padding: 15px 10px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .reasons,
    .items,
    .flow,
    .reviews {
        padding: 50px 0;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    /* 買取品目の注意書き */
    .items-note {
        font-size: 12px !important;
        line-height: 1.5;
        padding: 12px 10px !important;
        margin: 12px 0;
    }
    
    /* CTAセクションのタイトルと説明文 */
    .cta h2 {
        font-size: 20px;
    }
    
    .cta-subtitle {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

/* ========================================
   お問い合わせページ用スタイル
======================================== */
.method-info-small {
    font-size: 14px;
    line-height: 1.6;
}
加

例:
.example {
    color: red;
}

CSS の知識に磨きをかけるためにご覧ください。
http://www.w3schools.com/css/css_syntax.asp

コメント終わり */ 
/* 固定ページ上部のタイトル「ホーム」を非表示 */
.page .entry-title {
  display: none;
}

/* タイトルが消えたぶん上の余白を少し詰める */
.page .entry-content {
  margin-top: 0;
}


/* ===== 余っている検索・ウィジェット類を完全に隠す ===== */

/* 検索フォーム（ヘッダー/フッター含む） */
body.home form[role="search"],
body.home #searchform {
  display: none !important;
}

/* Recent Posts / Recent Comments などのウィジェットエリア */
#secondary,
.widget-area,
.sidebar,
aside {
  display: none !important;
}

/* まだ残る場合用：ホーム直下にぶらさがっている余計なリストも隠す */
body.home > ul,
body.home > ol {
  display: none !important;
}
/* ホームページ最下部に残る余計な1行テキストを非表示 */
body.home > small,
body.home > p:last-of-type {
  display: none !important;
}
/* ページ最下部に出る余計な1行（サイトタイトル行）を隠す */
body > p:last-child,
body.home > p:last-child {
  display: none !important;
}
/* サイトタイトルを画面外へ飛ばして視覚的に隠す（SEO的には残す） */
body > small:last-child {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  overflow: hidden !important;
  font-size: 0 !important;
}
/* 最下部のコピーライト行を非表示 */
#copyright {
  display: none !important;
}
/* 電話ボタンのテキスト色を緑に戻す */
a.btn.btn-primary.btn-large,
a.btn.btn-primary.btn-large i {
  color: #00c88a !important;  /* 元のデザインの緑に合わせてOK */
}

/* 白いボタンなので背景は白のままキープ */
a.btn.btn-primary.btn-large {
  background-color: #ffffff !important;
}/* 電話ボタンのテキスト色を緑に戻す */
a.btn.btn-primary.btn-large,
a.btn.btn-primary.btn-large i {
  color: #00c88a !important;  /* 元のデザインの緑に合わせてOK */
}

/* 白いボタンなので背景は白のままキープ */
a.btn.btn-primary.btn-large {
  background-color: #ffffff !important;
}

/* 全ページ共通：body直下にぶら下がっている余計なリンク／リストを非表示 */
body > a,
body > ul,
body > ol {
  display: none !important;
}
/* 構造化データ用のサイト名テキストを全ページで非表示 */
span[itemprop="name"] {
  display: none !important;
}

/* ページ最上部に残る「ホーム」リンクを非表示にする */
body > a:first-of-type {
  display: none !important;
}
/* テーマが出しているページタイトル(h1.entry-title)を全ページで非表示 */
h1.entry-title {
  display: none !important;
}/* テーマが出しているページタイトル(h1.entry-title)を全ページで非表示 */
h1.entry-title {
  display: none !important;
}

/* テーマが自動で出しているテキストメニューを消す */
.wp-block-page-list,
.wp-block-navigation,
.wp-block-navigation__container {
  display: none !important;
}
/* 左上に出る検索フォームを非表示 */
form[role="search"],
#searchform,
.widget_search {
  display: none !important;
}
/* 希望訪問日の日付入力欄のはみ出しを揃える */
.contact-form-section .form-row .form-group:first-child input[type="date"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.9em 1em;  /* 他のinputと同じくらいの内側余白に調整 */
  display: block;
}
/* 希望訪問日だけ、横幅をフォーム内にきっちり収める */
.contact-form-section .wpcf7-form-control-wrap[data-name="visit-date"] {
  display: block;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-section .wpcf7-form-control-wrap[data-name="visit-date"] input[type="date"] {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-right: 0;
}
/* 希望訪問日（日付入力）のはみ出しを強制的になくす */
.contact-form-section .visit-date-field {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  header,
  .site-header,
  .global-header {
    position: sticky;
    top: 0;
    z-index: 999;
  }
}

/* ========================================
   お問い合わせフォーム - スマホ対応
======================================== */

/* 基本スタイル - すべてのデバイス */
.contact-form-section .form-container {
    overflow: hidden !important;
}

.contact-form-section .form-section-title {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* スマホ用スタイル */
@media (max-width: 768px) {
    .contact-form-section .form-container {
        padding: 30px 20px !important;
    }
    
    .contact-form-section .form-section-title {
        margin-left: -20px !important;
        margin-right: -20px !important;
        margin-top: 40px !important;
        margin-bottom: 20px !important;
        padding: 15px 20px !important;
        width: calc(100% + 40px) !important;
        max-width: none !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-form-section .form-section-title h3 {
        font-size: 18px !important;
    }

    .contact-form-section .section-note {
        font-size: 13px !important;
    }
}

/* ========================================
   フォーム修正 - 最優先
======================================== */
body .contact-form-section .form-container {
    padding: 60px !important;
    overflow: hidden !important;
}

body .contact-form-section .form-section-title {
    margin: 40px 0 20px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    body .contact-form-section .form-container {
        padding: 30px 20px !important;
    }
    
    body .contact-form-section .form-section-title {
        position: relative !important;
        left: -20px !important;
        margin-top: 40px !important;
        margin-bottom: 20px !important;
        padding: 15px 20px !important;
        width: calc(100% + 40px) !important;
        max-width: calc(100% + 40px) !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
    }

    body .contact-form-section .form-section-title h3 {
        font-size: 18px !important;
    }

    body .contact-form-section .section-note {
        font-size: 13px !important;
    }
}

/* ========================================
   フォーム修正 - 確実版
======================================== */
@media (max-width: 768px) {
    /* フォームコンテナの調整 */
    body .contact-form-section .form-container,
    .contact-form-section .form-container,
    #contact-form .form-container {
        padding: 30px 20px !important;
        overflow: hidden !important;
    }
    
    /* グレーのバーを画面幅いっぱいに */
    body .contact-form-section .form-section-title,
    .contact-form-section .form-section-title,
    .form-section-title {
        position: relative !important;
        left: -20px !important;
        right: -20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 40px !important;
        margin-bottom: 20px !important;
        padding: 15px 20px !important;
        width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
    }

    body .contact-form-section .form-section-title h3,
    .form-section-title h3 {
        font-size: 18px !important;
        margin: 0 !important;
    }

    body .contact-form-section .section-note,
    .section-note {
        font-size: 13px !important;
        margin: 5px 0 0 0 !important;
    }
}

/* WordPress用：希望訪問日時バーの幅修正 */
.form-section-title {
    margin: 40px 15px 20px 15px !important;
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    box-sizing: border-box !important;
}

/* ========================================
   お問い合わせフォーム - モバイル修正
======================================== */

/* すべてのデバイスで適用 */
body .form-section-title,
html body .form-section-title,
.form-section-title,
.contact-form-section .form-section-title {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    padding: 15px 20px !important;
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
}

body .form-section-title h3,
html body .form-section-title h3,
.form-section-title h3 {
    font-size: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
}

body .form-section-title .section-note,
html body .form-section-title .section-note,
.form-section-title .section-note {
    font-size: 13px !important;
    margin: 5px 0 0 0 !important;
    padding: 0 !important;
}

/* ページヘッダーの全幅表示 */
body .page-header,
html body .page-header,
.page-header {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* 横スクロール防止 */
html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* モバイル専用 */
@media (max-width: 768px) {
    body .form-row,
    html body .form-row,
    .form-row {
        padding: 0 15px !important;
    }
    
    body .form-group,
    html body .form-group,
    .form-group {
        padding: 0 15px !important;
    }
}

/* CF7 送信ボタンを既存のボタンデザインに合わせる */
.contact-form-section input[type="submit"].btn {
  border: none;
  border-radius: 30px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}


/* ========================================
   モバイルメニュー（左からスライド）
   タップ領域を広げ、ドロワー方式に変更
======================================== */
.mobile-menu-toggle {
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 12px;
    margin-right: -12px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    pointer-events: none;
}

.mobile-menu-toggle:active {
    background: rgba(0, 0, 0, 0.06);
}

.nav-overlay {
    display: none;
}

@media (max-width: 992px) {
    /* ヘッダーを最前面に置き、開いている間もボタンを押せるようにする */
    .header {
        z-index: 1003;
    }

    .nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        width: 78%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.18);
        z-index: 1001;
        padding-top: 84px;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        visibility: hidden;
    }

    .nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-list {
        padding: 8px 0;
    }

    .nav-list a {
        padding: 16px 24px;
        font-size: 16px;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        cursor: pointer;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .fixed-call-button,
    body.nav-open .scroll-top {
        display: none !important;
    }
}

/* ========================================
   フッター内の法定リンク
======================================== */
.footer-legal {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
}

.footer-legal a {
    color: #BBB;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    /* 固定の電話ボタンがフッターのリンクに重ならないようにする */
    .footer {
        padding-bottom: 110px;
    }

    .footer-legal {
        gap: 10px 20px;
    }
}


/* ========================================
   プライバシーポリシー / 特定商取引法のページ
======================================== */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    line-height: 1.9;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 32px 0 12px;
    padding-left: 12px;
    border-left: 4px solid var(--primary-color);
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 0 0 20px 0;
    padding-left: 22px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content table {
    width: 100%;
    margin-bottom: 20px;
}

.legal-content table td {
    padding: 10px 0;
    border-bottom: 1px solid #EEE;
    vertical-align: top;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 24px 20px;
        border-radius: 8px;
    }

    .legal-content table,
    .legal-content table tbody,
    .legal-content table tr,
    .legal-content table td {
        display: block;
        width: 100% !important;
    }

    .legal-content table td:first-child {
        border-bottom: none;
        padding-bottom: 0;
        font-size: 12px;
    }
}

/* ========================================
   下層ページの見出し帯
   これまで各ページの個別CSSにあったものを共通化
======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .page-header h1 {
        /* 見出しが長いページでも1行に収まるよう画面幅に合わせる */
        font-size: clamp(22px, 6.8vw, 32px);
        line-height: 1.4;
    }

    .page-header p {
        font-size: 15px;
    }
}

/* ========================================
   インラインSVGアイコン
   Font Awesome の <i> はそのまま残し、中にSVGを入れている。
   既存の「i」を指すセレクタ（色・文字サイズ）がそのまま効く。
======================================== */
.fas,
.fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    line-height: 1;
}

.fas > svg,
.fab > svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* ========================================
   デザイン調整（2026-09-10）
   今の明るい印象は保ったまま、余白・角丸・影・見出しを整理する。
   ページ本文に残っている個別CSSが後から適用されるため、
   そこと重なる指定にだけ !important を付けている。
======================================== */

:root {
    /* 影を2段階に整理し、全要素で同じ考え方に揃える */
    --shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 6px 16px rgba(16, 24, 40, 0.07);
    --shadow-lg: 0 4px 10px rgba(16, 24, 40, 0.06), 0 18px 36px rgba(16, 24, 40, 0.12);
    --shadow-primary: 0 8px 20px rgba(10, 186, 181, 0.32);

    /* 角丸を3段階に統一 */
    --radius-pill: 999px;
    --radius-card: 16px;
    --radius-sm: 12px;

    /* 白文字が乗る面は、明るさを保ちつつ少し深めにして読みやすくする */
    --gradient-brand: linear-gradient(135deg, #31BDB7 0%, #068D88 100%);
}

/* ---- 日本語の読みやすさ ---- */
body {
    letter-spacing: 0.02em;
}

/* ---- セクション見出し ---- */
.section-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.45;
    margin-bottom: 16px;
}

.section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 20px auto 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.section-subtitle {
    font-size: 16px;
    letter-spacing: 0.02em;
    margin-bottom: 56px;
}

/* ---- 白文字が乗る面 ---- */
.hero,
.cta {
    background: var(--gradient-brand);
}

.page-header {
    background: var(--gradient-brand) !important;
    padding: 72px 0 !important;
}

.stat-card {
    background: var(--gradient-brand);
}

.hero-title {
    text-shadow: none;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.hero-subtitle {
    letter-spacing: 0.02em;
}

/* ---- 角丸の統一 ---- */
.btn,
.fixed-call-button,
.tel-button,
.scroll-top {
    border-radius: var(--radius-pill);
}

.stat-card,
.reason-card,
.item-card,
.review-card,
.faq-card,
.faq-item,
.legal-content,
.info-card,
.method-card,
.tip-card,
.area-card,
.feature-card,
.about-feature,
.form-container {
    border-radius: var(--radius-card) !important;
}

/* ---- カードの浮き方を統一 ---- */
.stat-card,
.reason-card,
.review-card,
.faq-card,
.method-card,
.tip-card,
.area-card,
.feature-card,
.info-card,
.form-container {
    box-shadow: var(--shadow) !important;
}

.reason-card:hover,
.review-card:hover,
.item-card:hover,
.method-card:hover,
.tip-card:hover,
.area-card:hover,
.feature-card:hover,
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg) !important;
}

/* ---- ボタンの主従をはっきりさせる ---- */
.btn {
    padding: 16px 32px;
    box-shadow: none;
    letter-spacing: 0.02em;
}

/* 既定は塗り。白い面の上でも輪郭が出る */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(10, 186, 181, 0.38);
}

/* ティール地の上では白抜きに戻す */
.hero .btn-primary,
.cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.hero .btn-primary:hover,
.cta .btn-primary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-line {
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.30);
}

.btn-phone {
    box-shadow: 0 8px 20px rgba(214, 170, 0, 0.35);
}

/* 送信ボタンも塗りに揃える */
.contact-form-section input[type="submit"].btn {
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.contact-form-section input[type="submit"].btn:hover {
    background: var(--primary-dark);
}

/* ---- 入力欄 ---- */
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    border-radius: var(--radius-sm) !important;
    border: 1px solid #E1E5EA !important;
    background: #FBFCFD !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.15) !important;
}

/* ---- ヘッダー ---- */
.header {
    box-shadow: 0 1px 0 rgba(16, 24, 40, 0.06);
    border-bottom: 1px solid rgba(16, 24, 40, 0.05);
}

/* ---- 余白のリズム ---- */
.stats,
.reasons,
.price-comparison,
.items,
.flow,
.reviews,
.faq,
.cta {
    padding-top: 96px;
    padding-bottom: 96px;
}

.section,
.items-detail,
.buying-tips,
.area-detail,
.area-features,
.area-faq,
.about-info,
.access-map,
.contact-methods,
.contact-form-section,
.faq-section {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}

/* ---- スマホ ---- */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .section-title::after {
        width: 40px;
        margin-top: 16px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .hero {
        padding: 72px 0;
    }

    .page-header {
        padding: 56px 0 !important;
    }

    .stats,
    .reasons,
    .price-comparison,
    .items,
    .flow,
    .reviews,
    .faq,
    .cta {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .section,
    .items-detail,
    .buying-tips,
    .area-detail,
    .area-features,
    .area-faq,
    .about-info,
    .access-map,
    .contact-methods,
    .contact-form-section,
    .faq-section {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    .btn {
        padding: 15px 26px;
    }
}


/* ---- 角丸の統一（残っていた要素） ---- */
.price-example-card,
.high-price-reasons,
.reason-detail-card,
.item-detail-card,
.map-placeholder,
.method-info,
.area-note,
.access-note,
.form-section-title,
.form-privacy,
.contact-info,
.items-note,
.price-note,
.item-note {
    border-radius: var(--radius-card) !important;
}

.items-note,
.price-note,
.item-note,
.method-info,
.form-privacy,
.contact-info {
    border-radius: var(--radius-sm) !important;
}

.price-diff,
.area-cities span {
    border-radius: var(--radius-pill) !important;
}


/* ---- 旧パッチの整理 ----
   a.btn.btn-primary.btn-large を白背景・緑文字に固定する指定が
   共通CSSの中ほどに2重で残っている。ティール地の上だけ白抜きにし、
   白い面の上では塗りボタンに戻す。 */
section:not(.hero):not(.cta) a.btn.btn-primary.btn-large,
section:not(.hero):not(.cta) a.btn.btn-primary.btn-large i {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

section:not(.hero):not(.cta) a.btn.btn-primary.btn-large i {
    background-color: transparent !important;
}

.hero a.btn.btn-primary.btn-large,
.hero a.btn.btn-primary.btn-large i,
.cta a.btn.btn-primary.btn-large,
.cta a.btn.btn-primary.btn-large i {
    color: var(--primary-color) !important;
}


/* ========================================
   見出し階層とアクセシビリティ（2026-09-10）
======================================== */

/* ロゴを見出しタグから外したので、見た目は同じ指定を引き継ぐ */
.logo .logo-main {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1;
}

/* キーボード操作の位置が分かるようにする。
   テーマ側が outline を消しているため、ここで戻す。
   マウス操作では出ないよう :focus-visible を使う。 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ティール地の上では白い輪郭にする */
.hero a:focus-visible,
.cta a:focus-visible,
.page-header a:focus-visible,
.footer a:focus-visible,
.stat-card a:focus-visible {
    outline-color: var(--white);
}

/* 本文へ飛ぶリンクを復活させる（共通CSSの body > a 非表示に上書き） */
body > a.skip-link {
    display: block !important;
}

body > a.skip-link:focus {
    display: block !important;
    z-index: 100000;
}


/* ---- ロゴのリンク化（見た目は従来どおり） ---- */
.logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-bottom: none;
}

.logo .logo-main,
.logo .logo-sub {
    display: block;
}

.logo .logo-main {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1;
}

.logo .logo-sub {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1;
    margin-top: 2px;
}

.logo-link:hover .logo-main {
    color: var(--primary-dark);
}

/* ---- パンくずリスト ---- */
.breadcrumb {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(16, 24, 40, 0.06);
    padding: 12px 0;
    font-size: 13px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    color: var(--text-light);
}

.breadcrumb li + li::before {
    content: "›";
    margin-right: 8px;
    color: #BBB;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}


/* ---- セクション背景の交互配置 ----
   実績・お客様の声のセクションを外したため、白とグレーの並びを取り直す。
   理由(グレー) → 高価買取の理由(白) → 買取品目(グレー) → 流れ(白) → よくある質問(グレー) */
.items {
    background: var(--white);
}

.flow {
    background: var(--white);
}

.faq {
    background: var(--bg-light);
}

/* ========================================
   お客様からの評価（おいくらの口コミ）
======================================== */
.reviews-rating {
    background: var(--white);
    padding: 96px 0;
}

.rating-card {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: 40px;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    padding: 40px;
}

.rating-overall {
    text-align: center;
    border-right: 1px solid var(--bg-light);
    padding-right: 32px;
}

.rating-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.rating-score {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 6px;
}

.rating-score span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 6px;
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.stars-bg {
    color: #DDD;
}

.stars-fill {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--secondary-color);
}

.rating-count {
    font-size: 14px;
    color: var(--text-light);
}

.rating-breakdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.rating-breakdown li {
    display: grid;
    grid-template-columns: 8em 1fr 3em;
    align-items: center;
    gap: 14px;
}

.rb-name {
    font-size: 14px;
    color: var(--text-dark);
}

.rb-bar {
    display: block;
    height: 8px;
    background: var(--bg-light);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.rb-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-pill);
}

.rb-num {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.rating-source {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 20px;
}

.rating-source a {
    color: var(--text-light);
    text-decoration: underline;
}

.rating-source a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .reviews-rating {
        padding: 64px 0;
    }

    .rating-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 22px;
    }

    .rating-overall {
        border-right: none;
        border-bottom: 1px solid var(--bg-light);
        padding-right: 0;
        padding-bottom: 24px;
    }

    .rating-score {
        font-size: 46px;
    }

    .rating-breakdown li {
        grid-template-columns: 7em 1fr 2.6em;
        gap: 10px;
    }

    .rb-name {
        font-size: 13px;
    }
}

/* ========================================
   対応エリア一覧・LINE案内・本人確認
   セクションの並び:
   ヒーロー → 理由(グレー) → 高価買取(白) → 買取品目(グレー) → 対応エリア(白)
   → 流れ(グレー) → LINE案内(白) → 評価(グレー) → よくある質問(白) → 申込
======================================== */

/* ---- 対応エリア一覧 ---- */
.area-summary {
    background: var(--bg-light);
    padding: 96px 0;
}

.area-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.area-summary-card {
    background: var(--bg-light);
    border-radius: var(--radius-card);
    padding: 28px 26px;
    border-top: 4px solid var(--primary-color);
}

.area-summary-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.area-summary-lead {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.area-summary-cities {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
}

.area-summary-note {
    margin-top: 28px;
    background: var(--tiffany-note, rgba(10, 186, 181, 0.07));
    border-radius: var(--radius-sm);
    padding: 18px 22px;
}

.area-summary-note p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.9;
}

/* ---- ご準備いただくもの（本人確認書類） ---- */
.id-note {
    max-width: 720px;
    margin: 48px auto 0;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-card);
    padding: 28px 30px;
    box-shadow: var(--shadow);
}

.id-note h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.id-note-lead {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.9;
}

.id-note-lead strong {
    font-weight: 700;
    color: var(--primary-color);
}

.id-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.id-list li {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.id-note-foot {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.9;
}

/* ---- LINE査定の使い方 ---- */
.line-guide {
    background: var(--bg-light);
    padding: 96px 0;
}

.line-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.line-step {
    background: var(--bg-light);
    border-radius: var(--radius-card);
    padding: 32px 26px 28px;
    position: relative;
}

.line-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #06C755;
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 14px;
}

.line-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.line-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
}

.line-guide-note {
    margin-top: 28px;
    background: var(--bg-light);
    border-left: 4px solid #06C755;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 22px;
}

.line-guide-note p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .area-summary,
    .line-guide {
        padding: 64px 0;
    }

    .area-summary-card,
    .line-step {
        padding: 24px 20px;
    }

    .id-note {
        margin-top: 36px;
        padding: 24px 20px;
    }

    .id-list {
        grid-template-columns: 1fr;
    }
}

/* ---- 本人確認書類の補足表示 ---- */
.id-list li {
    line-height: 1.5;
}

.id-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 4px;
}

/* ========================================
   買取実績セクション（実データ）
======================================== */
.buy-results {
    background: var(--bg-light);
    padding: 96px 0;
}

.br-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.br-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    padding: 22px 22px 20px;
    transition: var(--transition);
}

.br-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.br-cat {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--primary-color);
    border-radius: var(--radius-pill);
    padding: 3px 12px;
    margin-bottom: 12px;
}

.br-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 6px;
}

.br-note {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.br-price {
    margin-top: auto;
    padding-top: 14px;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.br-yen {
    font-size: 18px;
    font-weight: 700;
    margin-right: 2px;
}

.br-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--bg-light);
}

.br-note-box {
    margin-top: 28px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
}

.br-note-box p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
    text-align: center;
}

.br-source {
    margin-top: 10px !important;
}

.br-source a {
    color: var(--text-light);
    text-decoration: underline;
}

.br-source a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .buy-results {
        padding: 64px 0;
    }

    .br-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .br-card {
        padding: 18px 16px 16px;
    }

    .br-name {
        font-size: 13px;
    }

    .br-price {
        font-size: 22px;
    }

    .br-note-box {
        padding: 18px 18px;
    }
}

@media (max-width: 420px) {
    .br-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   各ページの本文にあった個別CSSを統合（2026-09-10）
   衝突していたセレクタは body.page-id-NN で対象ページに限定している。
======================================== */

/* ---- 旧「買取品目」ページの個別CSS（ID  ---- */
.items-detail {
            padding: 80px 0;
            background: var(--white);
        }
.item-detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
.item-detail-card {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
.item-detail-icon {
            font-size: 64px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
.item-detail-card h3 {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
.item-description {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.8;
        }
.item-list {
            list-style: none;
            margin-bottom: 25px;
        }
.item-list li {
            padding: 10px 0;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #DDD;
        }
.item-list li i {
            color: var(--primary-color);
        }
body.page-id-12 .item-note {
            background: var(--primary-light);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
        }
body.page-id-12 .item-note i {
            color: var(--primary-color);
            font-size: 20px;
        }
.buying-tips {
            padding: 80px 0;
            background: var(--bg-light);
        }
.tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
.tip-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
.tip-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
.tip-icon {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
.tip-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
.tip-card p {
            color: var(--text-light);
            line-height: 1.7;
        }
        
        @media (max-width: 768px) {
.item-detail-grid {
                grid-template-columns: 1fr;
            }
        }


/* ---- 旧「出張買取対応エリア」ページの個別CSS（ID  ---- */
.area-detail {
            padding: 80px 0;
            background: var(--white);
        }
.area-intro {
            text-align: center;
            margin-bottom: 60px;
        }
.area-intro h2 {
            font-size: 36px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
.area-intro p {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.8;
        }
.area-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
.area-card {
            background: var(--bg-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
.area-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
.area-header {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
            padding: 30px;
            text-align: center;
            color: var(--white);
        }
.area-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }
.area-header h3 {
            font-size: 28px;
            font-weight: 900;
        }
.area-content {
            padding: 30px;
        }
.area-coverage {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
.area-cities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
.area-cities span {
            background: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            color: var(--text-dark);
            border: 2px solid var(--primary-light);
        }
.area-note {
            background: var(--primary-light);
            padding: 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-dark);
        }
.area-note i {
            font-size: 32px;
            color: var(--primary-color);
        }
.area-note p {
            font-size: 16px;
            line-height: 1.8;
        }
.area-features {
            padding: 80px 0;
            background: var(--bg-light);
        }
.features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
.feature-card {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
.feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
.feature-icon {
            font-size: 56px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
.feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
.feature-card p {
            color: var(--text-light);
            line-height: 1.8;
        }
.area-faq {
            padding: 80px 0;
            background: var(--white);
        }
.faq-list {
            max-width: 900px;
            margin: 40px auto 0;
        }
.faq-item {
            background: var(--bg-light);
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
.faq-question {
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            background: var(--primary-light);
        }
.faq-question i {
            font-size: 28px;
            color: var(--primary-color);
        }
.faq-question h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
        }
.faq-answer {
            padding: 25px 30px;
            background: var(--white);
        }
.faq-answer p {
            color: var(--text-light);
            line-height: 1.8;
        }
        
        @media (max-width: 768px) {
.area-intro h2 {
                font-size: 28px;
            }
.area-grid {
                grid-template-columns: 1fr;
            }
        }


/* ---- 旧「会社概要」ページの個別CSS（ID  ---- */
.about-info {
            padding: 80px 0;
            background: var(--white);
        }
.about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
.about-content h2 {
            font-size: 36px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 30px;
        }
.about-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }
.about-features {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
.about-feature {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 15px;
        }
.about-feature i {
            font-size: 40px;
            color: var(--primary-color);
        }
.about-feature h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }
.about-feature p {
            font-size: 14px;
            margin: 0;
        }
.info-card {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
.info-card h3 {
            font-size: 24px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.info-card h3 i {
            color: var(--primary-color);
        }
.info-table {
            width: 100%;
        }
.info-table tr {
            border-bottom: 1px solid #DDD;
        }
.info-table th {
            padding: 15px 0;
            font-weight: 700;
            color: var(--text-dark);
            text-align: left;
            width: 35%;
            vertical-align: top;
        }
.info-table td {
            padding: 15px 0;
            color: var(--text-light);
            vertical-align: top;
        }
.info-table td a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 700;
        }
.access-map {
            padding: 80px 0;
            background: var(--bg-light);
        }
.map-container {
            margin-top: 40px;
            margin-bottom: 30px;
        }
.access-note {
            background: var(--primary-light);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
        }
.access-note i {
            color: var(--primary-color);
            margin-right: 10px;
        }
.access-note p {
            font-size: 16px;
            color: var(--text-dark);
            line-height: 1.8;
        }
        
        @media (max-width: 992px) {
.about-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
.about-content h2 {
                font-size: 28px;
            }
            

        }


/* ---- 旧「お問合せ」ページの個別CSS（ID  ---- */
/* Safari対応：横スクロール完全防止 */ * {
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
.contact-methods {
            padding: 80px 0;
            background: var(--white);
        }
.methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
.method-card {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
.method-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
.method-icon {
            font-size: 64px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
.method-icon.line {
            color: #06C755;
        }
.method-card h3 {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
.method-card > p {
            color: var(--text-light);
            margin-bottom: 25px;
        }
.method-info {
            margin-bottom: 25px;
            padding: 20px;
            background: var(--white);
            border-radius: 10px;
        }
.phone-number {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
.hours {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }
.method-note {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 10px;
        }
.contact-form-section {
            padding: 80px 0;
            background: var(--bg-light);
        }
.form-container {
            max-width: 800px;
            margin: 40px auto 0;
            background: var(--white);
            padding: 60px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
.form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
.form-group {
            margin-bottom: 30px;
        }
.form-group label {
            display: block;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
.required {
            color: #E74C3C;
            font-size: 12px;
            background: #FFEBEE;
            padding: 2px 8px;
            border-radius: 3px;
            margin-left: 5px;
        }
.optional {
            color: var(--text-light);
            font-size: 12px;
            font-weight: 400;
            margin-left: 5px;
        }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #DDD;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            transition: var(--transition);
        }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
.checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }
.checkbox-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 400;
            cursor: pointer;
        }
.checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
body.page-id-18 .form-section-title {
            margin: 40px 15px 20px 15px;
            padding: 15px 20px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
            border-radius: 10px;
            text-align: center;
            width: calc(100% - 30px);
            max-width: calc(100% - 30px);
            box-sizing: border-box;
            position: relative;
            left: 0;
            right: 0;
        }
.form-section-title h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 5px;
            word-wrap: break-word;
        }
.section-note {
            font-size: 14px;
            color: var(--white);
            margin: 0;
        }
.form-privacy {
            margin: 30px 0;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 10px;
        }
.form-privacy label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
.form-privacy input[type="checkbox"] {
            width: 18px;
            height: 18px;
        }
.form-privacy a {
            color: var(--primary-color);
            text-decoration: underline;
        }
.form-submit {
            text-align: center;
        }
.faq-section {
            padding: 80px 0;
            background: var(--white);
        }
body.page-id-18 .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
body.page-id-18 .faq-card {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
body.page-id-18 .faq-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
body.page-id-18 .faq-card h3 i {
            color: var(--primary-color);
        }
body.page-id-18 .faq-card p {
            color: var(--text-light);
            line-height: 1.8;
        }
/* モーダルスタイル */ /* すべてのデバイスで適用されるフォームレイアウト */ body .form-container,
html body .form-container,
.form-container {
            padding: 30px 0 !important;
            overflow: visible !important;
            margin-left: auto !important;
            margin-right: auto !important;
            max-width: 100% !important;
        }
body .form-section-title,
html body .form-section-title,
body.page-id-18 .form-section-title {
            position: relative !important;
            left: 0 !important;
            right: 0 !important;
            transform: none !important;
            margin-left: 15px !important;
            margin-right: 15px !important;
            margin-top: 40px !important;
            margin-bottom: 20px !important;
            padding: 15px 20px !important;
            width: calc(100% - 30px) !important;
            max-width: calc(100% - 30px) !important;
            border-radius: 10px !important;
            box-sizing: border-box !important;
        }

        @media (max-width: 768px) {
.methods-grid {
                grid-template-columns: 1fr;
            }
.form-row {
                grid-template-columns: 1fr !important;
                padding: 0 15px !important;
            }
.form-group {
                padding: 0 15px !important;
            }
.checkbox-group {
                grid-template-columns: 1fr !important;
            }
body.page-id-18 .faq-grid {
                grid-template-columns: 1fr !important;
            }
.form-privacy {
                margin: 30px 15px !important;
            }
.form-submit {
                padding: 0 15px !important;
            }

        }


/* ---- 下層ページの見出しサイズ ----
   買取品目・対応エリア・店舗情報・お問い合わせは見出しが短いので32pxのまま。
   タイトルが長いプライバシーポリシーと特定商取引法だけ画面幅に合わせる。 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    body.page-id-154 .page-header h1,
    body.page-id-155 .page-header h1 {
        font-size: clamp(22px, 6.8vw, 32px);
    }
}

/* ========================================
   買取希望品目のチェックボックスと、ご希望の連絡方法のラジオ（2026-09-11）

   Contact Form 7 は各項目を <span class="wpcf7-list-item"> で包み、さらに
   .wpcf7-checkbox → .wpcf7-form-control-wrap → <p> と入れ子にする。
   囲みの .checkbox-group から見た子要素は1つしかないので、
   そこにグリッドを置いても効かない。グリッドは内側に当てる。

   選択中の色は、input の直後の .wpcf7-list-item-label を塗る形にしてある。
   label:has(input:checked) だと、ラジオを切り替えたときに
   前に選ばれていた方の色が戻らない環境があったため。
======================================== */
:is(.checkbox-group, .radio-group) {
    display: block;
}

:is(.checkbox-group, .radio-group) > p {
    margin: 0;
}

:is(.checkbox-group, .radio-group) .wpcf7-form-control-wrap {
    display: block;
}

:is(.checkbox-group, .radio-group) :is(.wpcf7-checkbox, .wpcf7-radio) {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
    gap: 10px;
}

/* 連絡方法は2択しかないので、横に間延びさせず、スマホでも横に並べる */
.radio-group .wpcf7-radio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
}

/* 同じ行のカードの高さをそろえるため、外側から順に伸ばす */
:is(.checkbox-group, .radio-group) .wpcf7-list-item {
    display: flex;
    margin: 0;
}

:is(.checkbox-group, .radio-group) .wpcf7-list-item label {
    display: flex;
    position: relative;
    flex: 1 1 auto;
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

:is(.checkbox-group, .radio-group) .wpcf7-list-item input {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 20px;
    height: 20px;
    margin: 0;
    transform: translateY(-50%);
    accent-color: var(--primary-color);
    cursor: pointer;
}

:is(.checkbox-group, .radio-group) .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    padding: 13px 16px 13px 42px;
    border: 1px solid #E1E5EA;
    border-radius: var(--radius-sm);
    background: #FBFCFD;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-dark);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

:is(.checkbox-group, .radio-group) .wpcf7-list-item label:hover .wpcf7-list-item-label {
    border-color: var(--primary-color);
    background: var(--white);
}

/* 選択中 */
:is(.checkbox-group, .radio-group) .wpcf7-list-item input:checked + .wpcf7-list-item-label {
    border-color: var(--primary-color);
    background: rgba(10, 186, 181, 0.08);
    box-shadow: inset 0 0 0 1px var(--primary-color);
}

/* キーボードで移動したときに、今どこにいるか分かるようにする */
:is(.checkbox-group, .radio-group) .wpcf7-list-item input:focus-visible + .wpcf7-list-item-label {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.15);
}

/* 送信ボタンの上に置く、個人情報の取り扱いへの案内 */
.form-consent {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-light);
    text-align: center;
}

.form-consent a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-consent a:hover {
    color: var(--primary-color);
}
