/* モバイル専用CSS - 超コンパクト設計 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --black: #0a0a0a;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --white: #ffffff;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

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

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

/* NEW OPENバッジ */
.new-open-badge {
    position: fixed;
    top: 8px;
    right: 8px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}

/* 電話ボタン */
.floating-phone {
    position: fixed;
    bottom: 12px;
    right: 12px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 18px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

/* ヒーロー */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3), rgba(10,10,10,0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.hero-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

/* セクション共通 */
section {
    padding: 35px 12px;
}

.section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title img {
    width: 35px;
    height: 35px;
}

/* オープニングセール */
.sale {
    position: relative;
    padding: 35px 12px;
    background: var(--gray);
}

.sale-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

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

.sale-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
}

.sale-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.discount-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
}

.sale-bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid var(--gold);
    font-size: 13px;
    color: var(--gold);
}

/* 料金プラン */
.pricing {
    background: var(--black);
}

.plan {
    background: var(--gray);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 20px 12px;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.plan-title span {
    color: var(--gold);
    display: block;
    margin-top: 5px;
}

.price-item {
    background: var(--gray-light);
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

.car-type {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #666;
}

.new-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
}

.tax {
    font-size: 11px;
    color: #999;
}

/* ビフォーアフター */
.before-after {
    background: var(--gray);
}

.comparison {
    position: relative;
    border: 2px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.labels {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.label-before,
.label-after {
    background: rgba(10,10,10,0.8);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--gold);
}

.desc {
    font-size: 13px;
    text-align: center;
    line-height: 1.6;
    color: #ccc;
}

/* 選ばれる理由 */
.features {
    background: var(--black);
}

.feature-card {
    background: var(--gray);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 20px 15px;
    margin-bottom: 15px;
    text-align: center;
}

.feature-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
}

/* サービス */
.services {
    background: var(--gray);
}

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

/* 最初の3つを上に配置 */
.service-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.service-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.service-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

/* 4つ目と5つ目を下段に */
.service-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.service-card:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
}

.service-card:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}

.service-card {
    background: var(--gray-light);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 15px 10px 12px;
    text-align: center;
    position: relative;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
}

.service-card.highlight {
    border-width: 3px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 900;
}

.service-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.service-card p {
    font-size: 12px;
    line-height: 1.4;
    color: #ccc;
    margin-bottom: 10px;
    flex: 1;
}

.service-price {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: auto;
}

.service-price .label {
    font-size: 11px;
    color: #ccc;
}

.service-price .amount {
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
}

.amount-with-note {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.small-note {
    font-size: 11px;
    color: #ccc;
}

.amount-main {
    font-size: 18px;
    font-weight: 900;
    color: var(--gold);
}

.note {
    font-size: 10px;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 6px;
    text-align: center;
}

.btn-contact {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 12px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    font-weight: 700;
    font-size: 13px;
}
    gap: 6px;
    margin-top: 8px;
}

/* 対応エリア */
.area {
    background: var(--black);
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.area-tag {
    background: var(--gray);
    color: var(--gold);
    padding: 10px 18px;
    border-radius: 25px;
    border: 2px solid var(--gold);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map {
    border: 2px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
}

/* 店舗情報 */
.shop-info {
    background: var(--gray);
}

.info-item {
    background: var(--gray-light);
    padding: 15px 12px;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.info-item i {
    font-size: 22px;
    color: var(--gold);
    margin-top: 3px;
}

.info-item h4 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 13px;
    color: #ccc;
}

.info-item a {
    color: #ccc;
}

/* お問い合わせ */
.contact {
    background: var(--black);
}

.contact-desc {
    text-align: center;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 20px;
}

.contact-form {
    background: var(--gray);
    padding: 20px 15px;
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 6px;
}

.required {
    color: #ff4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    background: var(--gray-light);
    color: var(--white);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* フッター */
.footer {
    background: var(--gray);
    padding: 30px 15px 15px;
    border-top: 2px solid var(--gold);
    text-align: center;
}

.footer-logo h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 6px;
}

.footer-logo p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 13px;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-contact a {
    color: #ccc;
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
    font-size: 11px;
    color: #999;
}

/* 小型スマホ */
@media (max-width: 360px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .new-price {
        font-size: 20px;
    }
}