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

:root {
    --color-primary: rgb(229, 109, 30);
    --color-primary-dark: rgb(180, 85, 24);
    --color-primary-light: rgb(255, 140, 60);
    --color-accent: rgb(255, 165, 0);
    --color-accent-dark: rgb(200, 130, 0);
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --color-text-lighter: #888888;
    --color-bg: #ffffff;
    --color-bg-light: #f5f5f5;
    --color-bg-section: #fafafa;
    --color-border: #d4d4d4;
    --color-border-light: #e8e8e8;
    --font-main: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --max-width: 1200px;
    --spacing-section: 80px;
    --spacing-section-sp: 60px;
}

body {
    font-family: var(--font-main);
    font-weight: var(--font-weight-normal);
    color: var(--color-text);
    line-height: 1.8;
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
    line-height: 1.5;
    letter-spacing: 0.05em;
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary-dark));
}

/* ヘッダー */
.header {
    position: sticky;
    top: 0;
    background-color: var(--color-bg);
    box-shadow: 0 1px 0 var(--color-border-light);
    z-index: 1000;
    padding: 5px 0;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex: 1;
}

.header-sp-actions {
    display: none;
    width: 100%;
    gap: 10px;
}

.header-logo .logo-text {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

.header-logo .logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.header-shop-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    flex: 1;
    text-align: center;
}

.header-shop-main {
    font-size: 14px;
    color: var(--color-text-light);
}

.header-license {
    font-size: 11px;
    color: var(--color-text-lighter);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.header-cta:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.header-cta .phone-icon {
    font-size: 20px;
}

.header-cta .phone-text {
    display: none;
}

.header-sp-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-sp-button-line {
    background-color: #00c300;
    color: #ffffff;
}

.header-sp-button-tel {
    background-color: #8b5a2b; /* 茶色 */
    color: #ffffff;
    border-color: #8b5a2b;
}

.header-sp-button-tel .header-sp-button-icon {
    font-size: 16px;
}

/* ファーストビュー（ヒーロー） */
.hero {
    position: relative;
    padding: 50px 20px 80px;
    min-height: 80vh;
    color: #ffffff;
    background-image: url('/image/watches/main_visual.avif');
    background-size: cover;
    /* 時計が中央付近に来るよう、やや左寄せでトリミング */
    background-position: 55% center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif JP","Shippori Mincho","Yu Mincho","游明朝","Hiragino Mincho ProN","Hiragino Mincho Pro","MS PMincho","Times New Roman","Times",serif;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 10%), rgb(0 0 0 / 36%));
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: 100%;
    text-align: center;
}

.hero-logo {
    margin-bottom: 18px;
}

.hero-logo img {
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-shop-name {
    font-size: 16px;
    letter-spacing: 0.25em;
    margin-bottom: 14px;
    opacity: 0.9;
}

.hero-kicker {
    font-size: 16px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-main-line {
    font-size: 46px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.18em;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(229, 109, 30, 0.7), 0 0 32px rgba(229, 109, 30, 0.6);
    opacity: 0;
    transform-origin: center;
    animation: hero-main-line-in 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-main-line-second {
    margin-top: 4px;
    animation-delay: 0.15s;
}

@keyframes hero-main-line-in {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
        letter-spacing: 0.05em;
        filter: blur(4px);
    }
    55% {
        opacity: 1;
        transform: translateY(-4px) scale(1.02);
        letter-spacing: 0.2em;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 0.18em;
        filter: blur(0);
    }
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.92;
}

.hero-cta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.cta-button-large {
    padding: 22px 50px;
    font-size: 20px;
}

.cta-button-small {
    padding: 12px 30px;
    font-size: 16px;
}

.cta-phone-text {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.hero-brands {
    margin-top: 40px;
}

.hero-brands-title {
    font-size: 14px;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.hero-brands-logos {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
}

.hero-brands-logos img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* こんな方におすすめ */
.recommended {
    background-color: var(--color-bg-section);
}

.recommended-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-bottom: 40px;
}

.recommended-card {
    position: relative;
    background-color: #ffffff;
    padding: 36px 28px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: solid 1px #e6732a;
    overflow: hidden;
    text-align: center;
}

.recommended-number {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 68px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.12em;
    color: var(--color-primary);
    opacity: 0.08;
    pointer-events: none;
    user-select: none;
}

.card-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    position: relative;
}

.card-text {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.9;
    text-align: left;
}

.recommended-card .card-text + .card-text {
    margin-top: 12px;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-cta .cta-button {
    padding: 12px 28px;
    font-size: 15px;
    background-color: #ffffff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    box-shadow: none;
    letter-spacing: 0.03em;
}

.section-cta .cta-button:hover {
    background-color: var(--color-bg-section);
    color: var(--color-primary-dark);
    box-shadow: none;
    transform: none;
}

.cta-text {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

/* 選ばれる理由 */
.reasons {
    background: radial-gradient(circle at top left, rgba(229, 109, 30, 0.24), #f0df8f3d 50%),
                radial-gradient(circle at bottom right, rgba(255, 165, 0, 0.3), #b3c9e9 50%),
                var(--color-bg-section);
    position: relative;
    overflow: hidden;
}

.reasons::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    opacity: 0.4;
}

.reasons::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px dashed rgba(229, 109, 30, 0.25);
    opacity: 0.5;
}

.reasons .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.reasons .section-title {
    position: relative;
    display: inline-block;
    margin: 0 auto 10px;
    text-align: center;
    padding-bottom: 14px;
}

.reasons .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary-dark));
}

.reasons-grid {
    max-width: 780px;
    margin: 40px auto 40px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.reason-row {
    display: block;
}

.reason-number-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 6px;
    border-radius: 50%;
    background: #b98632;
    color: #ffffff;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.08em;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.reason-content {
    position: relative;
    flex: 1;
    text-align: left;
    padding: 18px 24px 18px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.reason-row:hover .reason-content {
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.reason-icon {
    display: none;
}

.reason-title {
    font-size: 19px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
    color: var(--color-text);
    letter-spacing: 0.04em;
}

.reason-highlight {
    display: inline;
    font-weight: var(--font-weight-bold);
    color: #3b3124;
    padding: 0 2px;
    margin-left: 6px;
    background: linear-gradient(
        to bottom,
        transparent 55%,
        rgba(230, 174, 88, 0.65) 55%,
        rgba(230, 174, 88, 0.65) 100%
    );
    border-radius: 2px;
}

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

.reason-text + .reason-text {
    margin-top: 14px;
}

.reason-content .reason-text:last-of-type {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(229, 109, 30, 0.05);
    border-left: 3px solid var(--color-primary);
    color: var(--color-text);
    font-weight: var(--font-weight-medium);
}

/* 買取対象アイテム */
.items {
    background-color: var(--color-bg-section);
}

.items-banners {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 50px;
}

.item-banner {
    position: relative;
    min-height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
}

.item-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(112 63 39) 0%, rgb(195 119 81 / 90%) 25%, rgb(251 157 82 / 85%) 50%, rgb(255 217 175 / 80%) 75%, rgb(255 245 235) 100%);
    pointer-events: none;
}

.item-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.item-banner-content {
    position: relative;
    z-index: 1;
    padding: 0px 22px;
    max-width: 52%;
    color: #ffffff;
    text-align: left;
}

.item-banner-en {
    font-size: 20px;
    letter-spacing: 0.22em;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    color: #fdf5f0;
}

.item-banner-copy {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.item-banner-watches {
}

.item-banner-watches::after {
    background-image: url("/image/items/watches.png");
}

.item-banner-jewelry {
}

.item-banner-jewelry::after {
    background-image: url("/image/items/jewelry.png");
}

.item-banner-bags {
}

.item-banner-bags::after {
    background-image: url("/image/items/bags-accessories.png");
}

.item-banner-metals {
}

.item-banner-metals::after {
    background-image: url("/image/items/gold-platinum.png");
}

.brands-section {
    margin-bottom: 30px;
}

.brands-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 25px;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.brands-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.brands-logos img {
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    opacity: 0.85;
}

/* 特定ブランドロゴのサイズ調整（全体で適用） */
img[alt="BVLGARI"] {
    height: 13px; /* 通常の約半分 */
}

img[alt="Cartier"] {
    height: 22px; /* やや小さめに調整 */
}

.brands-logos img:hover {
    opacity: 1;
}

.brand-name {
    font-size: 14px;
    padding: 8px 15px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text);
}

.items-note {
    text-align: center;
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* 買取実績（販売実績デザイン） */
.cases {
    background-color: #eae6d9;
}

.cases-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px 40px;
}

.record-list {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cases-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.cases-header-en {
    font-size: 52px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.18em;
    color: rgba(0, 0, 0, 0.06);
    text-transform: uppercase;
    margin-bottom: -10px;
}

.cases-header-ja {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.2em;
    color: #3b3124;
}

.record-card {
    background-color: #f7f3ec;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.record-card-header {
    background-color: #5a3a1a; /* 濃い茶色に変更 */
    padding: 10px 18px;
}

.record-brand {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    background-color: #5a3a1a; /* 濃い茶色 */
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.18em;
}

.record-main {
    padding: 18px 18px 14px;
}

.record-image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.record-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.record-status {
    display: none;
}

.record-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.record-name {
    font-size: 15px;
    color: #3b3124;
    line-height: 1.7;
}

.record-prices {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2d6c2;
}

.record-price-block {
    flex: 1;
    padding: 12px 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ラベルと価格のベースラインを左右で揃えるため上揃えに変更 */
}

.record-price-selling {
    flex: 3; /* 買虎参考価格エリアを広めに（約60%） */
}

.record-price-market {
    flex: 2; /* 市場参考価格エリアをやや狭く（約40%） */
}

.record-price-block + .record-price-block {
    border-left: 1px solid #e2d6c2;
}

.record-price-label {
    font-size: 12px;
    color: #42754a;
    font-weight: var(--font-weight-medium);
    margin-bottom: 4px;
}

.record-price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #3c7b4a;
    white-space: nowrap; /* 価格表記を改行させない */
    margin-top: auto; /* 下端位置を左右で揃える */
}

.record-price-market-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #333333;
    white-space: nowrap; /* 価格表記を改行させない */
    margin-top: auto; /* 下端位置を左右で揃える */
}

.record-price-number {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
}

.record-price-selling .record-price-number {
    color: #d32f2f; /* 買虎参考価格の数字を赤色に */
    font-weight: 900; /* 市場参考価格より太く（約1.5倍イメージ） */
    font-size: 34px; /* 気持ち大きめ */
}

.record-price-selling .record-price-label,
.record-price-selling .record-price-value,
.record-price-selling .record-price-unit {
    color: #d32f2f; /* 買虎参考価格ブロック全体の文字を赤色に */
    font-weight: 800; /* 市場参考価格より太めに強調 */
}

.record-price-market .record-price-label,
.record-price-market .record-price-market-value,
.record-price-market .record-price-unit {
    color: #000000; /* 市場参考価格側は黒で表示 */
}

.record-price-market .record-price-number {
    color: #000000;
    font-size: 30px; /* 買虎参考価格より少し小さめに調整 */
}

.record-price-unit {
    font-size: 16px;
}

.record-footer {
    padding: 8px 18px 18px;
}

.record-note {
    font-size: 11px;
    color: #7a6b56;
}

.record-more-link {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding: 10px 14px;
    background-color: #f7f3ec;
    border-radius: 999px;
}

.record-more-thumb {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    overflow: hidden;
    background-color: #e3d4be;
    flex-shrink: 0;
}

.record-more-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.record-more-text {
    flex: 1;
}

.record-more-brand-en {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: #3b3124;
}

.record-more-brand-ja {
    font-size: 11px;
    color: #7a6b56;
}

.record-more-action {
    font-size: 13px;
    color: #3b3124;
    font-weight: var(--font-weight-medium);
}

/* 買取の流れ */
.flow {
    background-color: var(--color-bg-section);
}

.flow-steps {
    max-width: 760px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    position: relative;
}

.flow-step {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.flow-step::before {
    content: attr(data-step);
    position: absolute;
    top: -18px;
    left: 18px;
    font-size: 26px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.18em;
    color: rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.flow-step-side {
    width: 96px;
    min-width: 96px;
    background: #c89a5b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.flow-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.flow-step-icon-symbol {
    font-size: 34px;
}

.flow-step-main {
    flex: 1;
    padding: 22px 26px 22px;
}

.flow-step-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--color-text-lighter);
    margin-bottom: 4px;
}

.flow-step-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

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

.flow-arrow {
    display: flex;
    justify-content: center;
    margin: -4px 0 -2px;
}

.flow-arrow-icon {
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(0, 0, 0, 0.12);
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
    transform: rotate(45deg);
}

/* お客様の声（Googleクチコミ風） */
.testimonials {
    background-color: var(--color-bg-section);
}

.google-reviews-wrapper {
    max-width: 860px;
    margin: 0 auto 10px;
}

.google-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    margin-bottom: 26px;
    border-radius: 10px;
    border: 1px solid var(--color-border-light);
    background-color: #ffffff;
}

.google-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.google-logo-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
}

.google-logo-text {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: #202124;
}

.google-reviews-caption {
    font-size: 12px;
    color: var(--color-text-light);
}

.google-reviews-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.google-rating-score {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.google-rating-number {
    font-size: 26px;
    font-weight: var(--font-weight-bold);
    color: #202124;
}

.google-rating-max {
    font-size: 13px;
    color: var(--color-text-light);
}

.google-rating-stars {
    font-size: 16px;
    color: #fbbc04;
    letter-spacing: 2px;
}

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

.google-rating-count-number {
    font-weight: var(--font-weight-medium);
}

.google-reviews-date-note {
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 10px;
    color: var(--color-text-lighter);
    text-align: right;
}

.google-reviews-carousel {
    position: relative;
    margin-top: 10px;
    overflow: visible;
}

.google-reviews-viewport {
    overflow: hidden;
    position: relative;
}

.google-reviews-list {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.google-review-card {
    min-width: 100%;
    max-width: 100%;
}

.google-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-border-light);
    background-color: rgba(256, 256, 256, 0.4);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.google-carousel-button:hover {
    background-color: var(--color-bg-section);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.google-carousel-button-prev {
    left: -14px;
}

.google-carousel-button-next {
    right: -14px;
}

@media (max-width: 768px) {
    .google-carousel-button {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

/* レビューカードの共通スタイル */
.google-review-card {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--color-border-light);
    padding: 16px 18px 14px;
}

.google-review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.google-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e0e3e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    color: #3c4043;
    flex-shrink: 0;
}

.google-review-header-main {
    flex: 1;
}

.google-review-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.google-review-author {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: #202124;
}

.google-review-meta {
    font-size: 12px;
    color: var(--color-text-light);
}

.google-review-menu {
    font-size: 18px;
    color: #9aa0a6;
}

.google-review-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.google-stars {
    font-size: 14px;
    color: #fbbc04;
}

.google-review-time {
    font-size: 12px;
    color: var(--color-text-light);
}

.google-review-badge {
    font-size: 10px;
    font-weight: var(--font-weight-medium);
    padding: 2px 6px;
    border-radius: 4px;
    background-color: #e6f4ea;
    color: #188038;
}

.google-review-body {
    margin-top: 8px;
}

.google-review-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
}

.google-owner-reply {
    margin-top: 12px;
    padding: 10px 12px;
    border-left: 3px solid #e0e3e7;
    border-radius: 0 8px 8px 0;
    background-color: #f8f9fa;
}

.google-owner-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.google-owner-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #e0e3e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: #3c4043;
    flex-shrink: 0;
}

.google-owner-name {
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    color: #202124;
}

.google-owner-time {
    font-size: 11px;
    color: var(--color-text-light);
}

.google-owner-text {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.testimonials-note {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 20px;
    margin-bottom: 10px;
}

/* 店舗情報 */
.store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.store-name {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 30px;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.store-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.store-label {
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: bold;
}

.store-value {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
}

.store-value a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
}

.store-value a:hover {
    text-decoration: underline;
}

.store-access {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.access-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.access-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.store-cta {
    margin-top: 25px;
}

.store-map {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: none;
}

.store-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ */
.faq {
    background-color: var(--color-bg-section);
}

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

.faq-item {
    background: white;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: none;
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 24px;
    color: var(--color-primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* クロージングCTA */
.closing-cta {
    background: linear-gradient(135deg, rgb(229 109 30 / 36%) 0%, rgb(185 190 227 / 68%) 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* クロージングCTA内だけコンテナの左右余白を少なくして、テキストが改行されにくいようにする */
.closing-cta .container {
    padding-left: 0px;
    padding-right: 0px;
}

.closing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.closing-title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: white;
    letter-spacing: 0.05em;
}

.closing-text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 8px; /* 2行目が折り返されにくいよう左右だけ少し狭くする */
}

.closing-cta .cta-button {
    margin: 0px 20px;
    background-color: white;
    color: rgb(223 161 121);
    position: relative;
    z-index: 1;
}

.closing-cta .cta-button:hover {
    background-color: var(--color-bg-section);
    color: var(--color-primary-dark);
}

.closing-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* フッター */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo .logo-text {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: white;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.footer-shop-name {
    font-size: 14px;
    color: #999999;
}

.footer-info {
    flex: 1;
}

.footer-license {
    font-size: 12px;
    color: #999999;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 12px;
    color: #999999;
    margin-bottom: 10px;
}

.footer-links {
    font-size: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* フッター内 プライバシーポリシー アコーディオン */
.footer-privacy {
    margin-top: 10px;
    border-top: 1px solid #333333;
    padding-top: 8px;
}

.footer-privacy-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: 12px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.footer-privacy-toggle:hover {
    color: #ffffff;
}

.footer-privacy-icon {
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.footer-privacy-content {
    max-height: 0;
    overflow: hidden;
    display: none;
    transition: max-height 0.3s ease-out;
}

.footer-privacy.open .footer-privacy-content {
    display: block;
    max-height: 2000px;
}

.footer-privacy.open .footer-privacy-icon {
    transform: rotate(45deg);
}

.footer-privacy-content p {
    font-size: 11px;
    line-height: 1.7;
    color: #aaaaaa;
    margin-bottom: 6px;
}

.footer-privacy-content p:last-child {
    margin-bottom: 0;
}

/* SP用固定CTA */
.fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
    transition: all 0.3s ease;
}

.fixed-cta-button:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* スマホ専用改行 */
.sp-only-br {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    :root {
        --spacing-section: var(--spacing-section-sp);
    }

    body {
        /* 下部固定ヘッダー分の余白を確保 */
        padding-bottom: 80px;
    }

    .header {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
        background-color: #f7f3ec; /* スマホヘッダーをクリーム色に */
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .header-container {
        flex-wrap: nowrap;
        padding: 8px 12px;
    }

    .header-main {
        display: none;
    }

    .header-sp-actions {
        display: flex;
    }

    .hero {
        padding: 50px 16px 70px;
        min-height: 70vh;
    }

    .hero-logo img {
        height: 200px;
    }

    .hero-main-line {
        font-size: 32px;
        letter-spacing: 0.12em;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    /* SP時はヒーローエリアのCTAボタンを非表示 */
    .hero-cta {
        display: none;
    }

    .hero-brands-logos img {
        height: 22px;
    }

    .recommended-cards {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .items-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

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

    .flow-steps {
        max-width: 100%;
        gap: 22px;
    }

    .google-reviews-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .google-reviews-right {
        align-items: flex-start;
    }

    .store-content {
        grid-template-columns: 1fr;
    }

    .closing-title {
        font-size: 24px;
    }

    .closing-text {
        font-size: 15px;
    }

    .footer-content {
        flex-direction: column;
    }

    .cta-button-large {
        padding: 18px 30px;
        font-size: 18px;
    }

    .sp-only-br {
        display: inline;
    }
}

@media (max-width: 480px) {
    .items-categories {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }
}

