:root {
    --bg: #faf4ea;
    --surface: #fff;
    --primary: #ed7a0c;
    --primary-dark: #c35b09;
    --gray: #555;
    --text: #2d2d2d;
    --border: #e6d3b4;
    --rental-color: #ed7a0c;
    --sale-color: #e8412a;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}
#contents {
    width: 100%;
    margin: 0;
    padding: 0;
}
.common-page_wrap * {
    font-family: "Noto Sans JP", "Lato",sans-serif;
}
.common-page_wrap {
    padding: 50px 0;
    background: #fff;
}

.wrap {
    /* width: 890px; */
    /* max-width: 100%; */
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.page_chukai_cont { background: #fff; }

h1.page_h1 {
    font-weight: 700;
    font-size: 22px;
    border-left: 4px solid var(--primary);
    padding-left: 10px;
    margin-bottom: 40px;
    height: auto;
    text-shadow: none;
}

.page_h3 {
    font-weight: 700;
    font-size: 18px;
    margin: 40px 0 12px;
    padding-bottom: 0.4em;
    border-bottom: 4px solid #f7b52a;
    display: flex;
    align-items: center;
    gap: 1em;
}

main {
    background: none;
    overflow: visible;
    box-shadow: none;
}

/* ============================
   ヒーロー
============================ */
.option-hero { margin-bottom: 32px; }

.option-hero-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #333 0%, #666 100%);
}

.option-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.option-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

.option-hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin: 0;
}

/* ============================
   イントロ
============================ */
.option-intro-section { margin-bottom: 8px; }

.option-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 0 0 8px;
}

/* ============================
   セクション共通
============================ */
.option-section { margin-bottom: 48px; }

.option-section-head h3 {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 40px 0 12px;
    padding-bottom: 0.4em;
    border-bottom: 4px solid #f7b52a;
    display: flex;
    align-items: center;
    gap: 1em;
    color: var(--text);
}

/* ============================
   カードグリッド（2列）
============================ */
.option-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto 1fr);
    gap: 0 16px;
}

.option-card--sale,
.option-card--rental {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    margin-bottom: 16px;
}

/* ============================
   オプションカード
============================ */
.option-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.option-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff8f0;
    border-bottom: 1px solid var(--border);
}

.option-card--rental .option-card-header {
    background: #fff5e8;
}

.option-card--sale .option-card-header {
    background: #fff1f0;
}

.option-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.option-badge--sale {
    background: var(--sale-color);
    color: #fff;
}

.option-badge--rental {
    background: var(--rental-color);
    color: #fff;
}

.option-card-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.option-card-count {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray);
}

.option-card-body {
    display: flex;
    gap: 14px;
    padding: 16px;
    flex: 1;
}

.option-card-img {
    width: 150px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card-img img {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

.option-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.option-card-desc {
    margin: 0;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

.option-card-items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-card-items li {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}

.option-card-items li::before {
    content: none;
}

.option-card-price-wrap {
    margin-top: 0;
}

.option-card-price-label {
    margin: 0 0 2px;
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 700;
}

.option-card-price {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.option-card-price span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray);
}

.option-card-price-sub {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: var(--gray);
}

.option-card-note {
    margin: 0;
    font-size: 0.75rem;
    color: #888;
    line-height: 1.6;
}

.option-card > .option-card-note {
    padding: 0 16px 12px 16px;
}


.option-wifi-prices {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.option-wifi-divider {
    font-size: 1.2rem;
    color: var(--border);
    font-weight: 700;
}

/* ============================
   生活用品セット（パック比較）
============================ */
.option-pack-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.08fr 0.95fr 0.95fr;
    grid-template-rows: auto auto auto auto auto auto auto; /* banner / head / desc / img / content / price / notes */
    column-gap: 16px;
    row-gap: 1rem;
    padding-top: 30px;
}

.option-pack-card {
    background: #fff;
    border: 1px solid #b8b8b8;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 0;
    display: grid;
    grid-row: span 7;
    grid-template-rows: subgrid;
    text-align: center;
    overflow: hidden;
}

.option-pack-card--featured {
    position: relative;
    z-index: 1;
    border: 3px solid #ff5800;
    padding: 0;
    transform: translateY(-10px) scale(1, 1.05);
    margin-bottom: -10px;
}

.option-pack-banner {
    margin: 0;
    background: #ff5800;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 6px;
    border-radius: 0;
}

.option-pack-banner--placeholder {
    visibility: hidden;
    pointer-events: none;
}

.option-pack-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 20px 12px 8px;
}

.option-pack-head-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.option-pack-crown {
    display: block;
    height: 1.1rem;
    width: auto;
}

.option-pack-crown--hidden {
    display: none;
}

.option-pack-num {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #FEA406;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-pack-card--featured .option-pack-num {
    background: #ff5800;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    line-height: 1;
}

.option-pack-card--featured .option-pack-crown {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    height: 1.4rem;
    z-index: 3;
}

.option-pack-card--featured .option-pack-title {
    font-size: clamp(0.8em, 1.7vw, 1.2em);
}

.option-pack-card--featured .option-pack-count {
    font-size: 1.25rem;
}

.option-pack-title {
    margin: 0;
    font-size: clamp(0.75em, 1.55vw, 1.1em);
    font-weight: 700;
    color: var(--text);
    white-space: normal;
    line-height: 1.3;
}

.option-pack-count {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray);
}

.option-pack-desc {
    margin: 0;
    padding: 0 12px 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.option-pack-img {
    width: 100%;
    max-height: 220px;
    margin: 0;
    padding: 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-pack-img img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
}

.option-pack-content {
    text-align: left;
    padding: 0 12px;
}

.option-pack-content-label {
    margin: 0 0 8px;
    padding: 6px 0px 6px 2em;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    background: #FFF0DC;
    border-radius: 6px;
    text-align: left;
}

.option-pack-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.option-pack-items li {
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.7;
}

.option-pack-highlight {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.option-pack-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3cb371;
    color: #fff;
    font-size: 0.6rem;
    margin-right: 4px;
}

.option-pack-price-wrap {
    margin-top: 0;
    padding: 10px 12px 0;
}

.option-pack-price {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #ff5800;
}

.option-pack-price span {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray);
    margin-left: 2px;
}

.option-pack-price-sub {
    margin: 2px 0 0;
    font-size: 0.7rem;
    color: var(--gray);
}

.option-pack-notes {
    padding: 4px 12px 14px;
    text-align: left;
}

.option-pack-note {
    margin: 4px 0 0;
    font-size: 0.68rem;
    color: #888;
    line-height: 1.5;
    text-align: left;
}

.option-pack-note:first-child {
    margin-top: 0;
}

/* ============================
   サポートサービス
============================ */
.option-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.option-support-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-support-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.option-support-card--large {
    display: flex;
    flex-direction: column;
}

.option-support-img {
    width: calc(100% - 32px);
    margin: 16px 16px 0;
    overflow: hidden;
    border-radius: 8px;
}

.option-support-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.option-support-card--large .option-support-info {
    padding: 16px;
}

.option-support-card--small {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    flex: 1;
}

.option-support-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 70px;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-support-title {
    margin: 0 0 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.option-support-desc {
    margin: 0 0 8px;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================
   注意事項
============================ */
.option-notice-box {
    background: #faf8f5;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.8;
}

.option-notice-box p {
    margin: 0 0 6px;
}

.option-notice-box p:last-child { margin: 0; }

/* ============================
   お問合せ
============================ */
.option-contact-section {
    padding-top: 12px;
}

.option-contact-heading {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--primary);
    text-align: center;
    margin: 0 0 0.5em;
}

.option-contact-subtitle {
    background: linear-gradient(transparent 80%, #f7b52a 20%);
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.option-contact-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
}

.option-contact-item {
    flex: 1 1 240px;
    min-width: 220px;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.option-contact-item:last-child {
    border-right: none;
}

.option-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    padding: 15px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-bottom: 20px;
    overflow: hidden;
}

.option-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.option-contact-title {
    margin: 0 0 0.7em;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.option-contact-tel {
    display: block;
    text-decoration: none;
    color: inherit;
}

.option-contact-tel--sp {
    display: none;
}

.option-contact-tel-ruby {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.6em;
    padding-right: 0.45em;
}

.option-contact-ruby {
    width: fit-content;
    height: 0.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.option-contact-ruby img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.option-contact-number {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.option-contact-note {
    margin-top: 0.7em;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    line-height: 1.6;
}

.option-contact-button {
    display: inline-block;
    margin: 10px 0;
    padding: 11px 28px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 16px;
    transition: opacity 0.2s;
}

.option-contact-button:hover { opacity: 0.85; }

.option-contact-button--line { background: #00b900; }

/* ============================
   レスポンシブ
============================ */
@media (max-width: 960px) {
    /* カードグリッド: 3列 → 2列 */
    .option-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* パック比較: 4列 → 2列 */
    .option-pack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-pack-card--featured {
        transform: translateY(-16px);
        margin-bottom: -16px;
    }
}

@media (max-width: 760px) {
    .wrap { padding: 0 16px; }

    /* カードグリッド: 2列 → 1列 */
    .option-card-grid {
        grid-template-columns: 1fr;
    }

    /* サポート: 2列 → 1列 */
    .option-support-grid {
        grid-template-columns: 1fr;
    }

    .option-support-side {
        flex-direction: column;
    }

    /* カード内画像サイズ縮小 */
    .option-card-img {
        width: 100px;
    }

    /* パック比較: 4列 → 2列 */
    .option-pack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-pack-card--featured {
        transform: translateY(-16px);
        margin-bottom: -16px;
    }

    /* お問合せ: 縦並び */
    .option-contact-heading {
        font-size: 5vw;
    }

    .option-contact-subtitle {
        font-size: 4vw;
    }

    .option-contact-title {
        font-size: 4vw;
    }

    .option-contact-note {
        font-size: 3.4vw;
    }

    .option-contact-button {
        font-size: 3.6vw;
    }

    .option-contact-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .option-contact-item {
        min-width: auto;
    }

    .option-contact-item + .option-contact-item {
        margin-top: 4vw;
        padding-top: 4vw;
        border-top: 1px solid rgb(204, 204, 204);
    }

    .option-contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .option-contact-tel--pc {
        display: none;
    }

    .option-contact-tel--sp {
        display: block;
        font-size: 8vw;
    }

    .option-hero-img {
        height: 180px;
        border-radius: 10px;
    }

    .option-hero-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .option-card-body {
        flex-direction: column;
    }

    .option-card-img {
        width: 55%;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }

    .option-hero-img { height: 140px; }
    .option-hero-title { font-size: 1.2rem; }

    .option-wifi-prices {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .option-wifi-divider { display: none; }

    /* パック比較: 1列 */
    .option-pack-grid {
        grid-template-columns: 1fr;
    }

    .option-pack-card--featured {
        transform: none;
        margin-bottom: 0;
    }
}

.link__section {
    background: #FAFAFA;
}
