@charset "UTF-8";

/* ==========================================================================
   変数の定義（カラーパレット・フォント）
   ========================================================================== */
:root {
    --primary-color: #800020;      /* えんじ色（バーガンディ） */
    --primary-light: #a01538;      /* 少し明るいえんじ色 */
    --accent-gold: #c5a059;        /* ゴールドアクセント */
    --text-main: #333333;          /* メインテキスト */
    --text-sub: #666666;           /* サブテキスト */
    --bg-light: #fcfaf7;           /* 温かみのある背景色 */
    --bg-white: #ffffff;
    --border-color: #e5e0d8;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Quicksand', sans-serif;
}

/* ==========================================================================
   ベースリセット・共通スタイル
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-jp);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

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

.section-padding {
    padding: 80px 0;
}

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

/* セクションヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-en {
    display: block;
    font-family: var(--font-en);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-jp {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.section-jp::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-sub);
    letter-spacing: 1px;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-chara {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.tel-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
}

.tel-label {
    font-size: 0.65rem;
}

.tel-number {
    font-family: var(--font-en);
    font-size: 1.15rem;
    font-weight: 700;
}

/* ==========================================================================
   メインビジュアル
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #fdfbf7 0%, #f4ece1 100%);
    padding: 60px 0;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-speech-bubble {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
}

.hero-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--primary-color) transparent;
    display: block;
    width: 0;
}

.hero-sub-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hero-main-title {
    font-size: 2.3rem;
    line-height: 1.35;
    margin-bottom: 15px;
    color: var(--text-main);
}

.hero-desc {
    color: var(--text-sub);
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
}

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

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

.hero-chara-wrap {
    flex: 0 0 320px;
    text-align: center;
}

.hero-chara-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffffff;
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.15);
    background-color: var(--primary-color);
}

/* ==========================================================================
   選ばれる理由
   ========================================================================== */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.reason-num {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 15px;
}

.reason-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.reason-card p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

/* ==========================================================================
   取り扱い品目（6枠）
   ========================================================================== */
.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.item-box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.item-img-wrap {
    height: 180px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.item-box:hover .item-img-wrap img {
    transform: scale(1.05);
}

.item-img-wrap.watch-wrap img {
    object-position: center 35%;
}

.item-content {
    padding: 20px;
}

.item-content h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 6px;
}

.item-content p {
    font-size: 0.9rem;
    color: var(--text-sub);
}

/* ==========================================================================
   買取実績
   ========================================================================== */
.results-lead {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 40px;
    color: var(--text-sub);
    font-size: 0.95rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.result-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.result-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.result-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.result-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.result-brand {
    font-size: 0.8rem;
    color: var(--text-sub);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.result-title {
    font-size: 1.15rem;
    margin: 4px 0 12px;
}

.result-price-box {
    background-color: var(--bg-light);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-sub);
}

.price-value {
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-value small {
    font-size: 0.9rem;
    margin-left: 2px;
}

.result-note {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.5;
}

/* ==========================================================================
   店舗案内
   ========================================================================== */
.shop-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.shop-chara-greeting {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.shop-chara-mini {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
}

.shop-speech {
    background-color: var(--bg-light);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.shop-info h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.shop-info dl {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px 0;
    font-size: 0.95rem;
}

.shop-info dt {
    font-weight: 700;
    color: var(--text-sub);
}

.shop-map {
    height: 100%;
    min-height: 280px;
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.footer {
    background-color: #2b1f22;
    color: #ffffff;
    text-align: center;
    padding: 50px 0 30px;
}

.footer-chara-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    background-color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-address {
    font-size: 0.85rem;
    color: #bbbbbb;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.75rem;
    color: #888888;
}

/* 固定CTA（スマホ用） */
.fixed-cta {
    display: none;
}

/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */
@media (max-width: 960px) {
    .reason-grid,
    .items-grid,
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-contact,
    .nav-menu {
        display: none;
    }

    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-chara-wrap {
        flex: auto;
    }

    .hero-speech-bubble::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .reason-grid,
    .items-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .fixed-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .fixed-tel,
    .fixed-shop {
        flex: 1;
        text-align: center;
        padding: 12px 0;
        color: #ffffff;
        font-weight: 700;
        font-size: 0.9rem;
    }

    .fixed-tel {
        background-color: var(--primary-color);
    }

    .fixed-shop {
        background-color: #333333;
    }

    body {
        padding-bottom: 50px;
    }
}