/* =========================================
   BASE
========================================= */

body {
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

section {
    padding: 120px 0;
}

.container,
.price__inner,
.plan-check__inner,
.features__inner,
.options__inner,
.template-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================
   PAGE FV（テンプレートページと揃える）
========================================= */

.page-fv {
    background: url("../img/page-fv.webp") center/cover no-repeat;
    padding: 140px 0 120px;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 80px;
}


.page-fv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.page-fv__inner {
    position: relative;
    z-index: 2;
}

.page-fv__title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.page-fv__subtitle {
    font-size: 20px;
    letter-spacing: .05em;
}

@media (max-width: 768px) {

    .page-fv {
        padding: 80px 0;
        text-align: center;
    }

    .page-fv__inner {
        padding: 0 24px;
    }

    .page-fv__title {
        font-size: 32px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .page-fv__subtitle {
        font-size: 15px;
        line-height: 1.7;
        opacity: 0.9;
    }
}

@media (max-width: 400px) {

    .page-fv {
        padding: 64px 0;
    }

    .page-fv__inner {
        padding: 0 16px;
    }

    .page-fv__title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .page-fv__subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* =========================================
   BREADCRUMB（共通デザイン）
========================================= */

.breadcrumb {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 0 40px;
    font-size: 13px;
    color: #555;
}

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

.breadcrumb a {
    text-decoration: none;
    color: #0080a3;
    transition: 0.2s;
}

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

.breadcrumb li::after {
    content: ">";
    margin-left: 8px;
    color: #999;
}

.breadcrumb li:last-child::after {
    content: "";
}

@media (max-width: 780px) {
    .breadcrumb {
        padding: 0 20px;
    }
}


/* =========================================
   SECTION HEADINGS（ABOUTと揃える）
========================================= */

.price__label,
.plan-check__label,
.features__label,
.options__label {
    font-size: 14px;
    font-weight: 700;
    color: #0080a3;
    padding-left: 16px;
    border-left: 4px solid #f9be02;
    letter-spacing: .15em;
    margin-bottom: 16px;
}

.price__title,
.plan-check__title,
.features__title,
.options__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #333;
}

.price__lead,
.plan-check__lead {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 48px;
}

/* =========================================
   PRICE SHORTCUT（各プランへのリンク）
========================================= */
.price-shortcut {
    background: #ffffff;
    padding: 80px 0 40px;
    text-align: center;
}

.price-shortcut__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.price-shortcut__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #333;
}

.price-shortcut__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shortcut-btn {
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #0080a3;
    color: #0080a3;
    background: #fff;
    transition: .25s ease;
}

.shortcut-btn:hover {
    background: #0080a3;
    color: #fff;
}

/* SP */
@media (max-width: 600px) {
    .shortcut-btn {
        width: 100%;
        text-align: center;
    }
}


/* =========================================
   PLAN CHECK（プラン診断フォーム）
========================================= */

.plan-check {
    padding: 100px 0;
    background: #fafafa;
}

.plan-check__inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ラベル */
.plan-check__label {
    font-size: 13px;
    letter-spacing: 0.15em;
    color: #0080a3;
    margin-bottom: 8px;
    text-align: left;
}

/* タイトル */
.plan-check__title {
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 14px;
}

/* リード文 */
.plan-check__lead {
    text-align: center;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ======================
   質問ブロック
====================== */
.plan-q {
    background: #fff;
    padding: 28px 24px;
    margin-bottom: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #0080a3;
}

.plan-q__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* チェックボックス & ラジオの並び */
.plan-q label {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    transition: 0.25s ease;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-q label:hover {
    background: #eefbfd;
    border-color: #00a0c6;
}

.plan-q input[type="checkbox"],
.plan-q input[type="radio"] {
    transform: scale(1.2);
}

/* 診断ボタン */
.plan-check__submit {
    display: block;
    margin: 40px auto 0;
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 30px;
    border: none;
    background: #0080a3;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.plan-check__submit:hover {
    background: #006e89;
}

/* ======================
   結果表示
====================== */

.plan-result {
    display: none;
    margin-top: 40px;
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.plan-result.active {
    display: block;
}

.plan-result__title {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 22px;
}

.plan-result__plan-name {
    text-align: center;
    font-size: 30px;
    color: #0080a3;
    font-weight: 800;
    margin-bottom: 16px;
}

.plan-result__desc {
    text-align: center;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* CTAボタン */
.plan-result__cta {
    text-align: center;
}

.plan-result__cta .btn {
    padding: 14px 32px;
    border-radius: 30px;
    background: #0080a3;
    color: #fff;
    transition: .25s ease;
}

.plan-result__cta .btn:hover {
    background: #006e89;
}

/* =========================================
   SP（スマホ）
========================================= */
@media (max-width: 768px) {

    .plan-check {
        padding: 80px 0;
    }

    .plan-check__title {
        font-size: 26px;
    }

    .plan-check__lead {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .plan-q {
        padding: 22px 18px;
        border-left-width: 4px;
    }

    .plan-q__title {
        font-size: 18px;
    }

    .plan-q label {
        padding: 10px 12px;
        font-size: 15px;
    }

    .plan-check__submit {
        font-size: 16px;
        padding: 12px 24px;
    }

    .plan-result {
        padding: 26px 20px;
    }

    .plan-result__title {
        font-size: 20px;
    }

    .plan-result__plan-name {
        font-size: 24px;
    }

    .plan-result__desc {
        font-size: 14px;
    }
}


/* =========================================
   PRICE BLOCKS（3プラン並び）
========================================= */

.price__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.price-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 32px;
    border-top: 6px solid #0080a3;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
}

.price-card.featured {
    border-top-color: #f9be02;
    transform: scale(1.03);
}

.price-card__badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #f9be02;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.price-card__label {
    font-size: 14px;
    font-weight: 700;
    color: #0080a3;
    margin-bottom: 6px;
}

.price-card__title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.price-card__price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.price-card__delivery {
    font-size: 14px;
    font-weight: 600;
    color: #0080a3;
    /* キーカラー */
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.price-card__list {
    list-style: none;
    margin-bottom: 28px;
}

.price-card__list li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.price-card__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f9be02;
}

.price-card__btn {
    width: 180px;
    border-radius: 999px;
    display: block;
    margin: auto;
}

/* ==============================
   SECTION BASE
============================== */

.features {
    padding: 120px 0;
    background: #ffffff;
}

.features__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.features__label {
    font-size: 14px;
    font-weight: 700;
    color: #0080a3;
    padding-left: 16px;
    border-left: 4px solid #f9be02;
    letter-spacing: .15em;
    margin-bottom: 16px;
}

.features__title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 48px;
}


/* ==============================
   2列グリッド（4カード）
============================== */

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


/* ==============================
   横型カード
============================== */

.feature-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: .25s ease;
    height: 240px;
}

.feature-card:hover {
    transform: translateY(-4px);
}


/* 左：写真部分（40%） */
.feature-card__img {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

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


/* 右：テキスト */
.feature-card__body {
    width: 60%;
    display: flex;
    align-items: center;
}

.feature-card__body-inner {
    padding: 24px;
    border-left: 4px solid #f9be02;
}


/* タイトル & テキスト */
.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.feature-card__text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}



/* ==============================
   RESPONSIVE
============================== */

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

    .feature-card {
        height: auto;
        flex-direction: column;
    }

    .feature-card__img {
        width: 100%;
        height: 180px;
    }

    .feature-card__body {
        width: 100%;
    }
}

/* =========================================
   OPTIONS（追加サービス）
========================================= */

.options {
    padding: 120px 0;
    background: #ffffff;
}

.options__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.options__label {
    font-size: 14px;
    font-weight: 700;
    color: #0080a3;
    padding-left: 16px;
    border-left: 4px solid #f9be02;
    letter-spacing: .15em;
    margin-bottom: 16px;
}

.options__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #333;
}

.options__list {
    display: grid;
    gap: 28px;
}


/* ---------- カード本体 ---------- */

.option-card {
    display: flex;
    background: #fff;
    border-radius: 14px;
    padding: 28px 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: .25s ease;
}

.option-card:hover {
    transform: translateY(-4px);
}

/* 左の縦ライン */
.option-card__line {
    width: 6px;
    background: #f9be02;
    border-radius: 4px;
    margin-right: 20px;
}

/* テキスト側 */
.option-card__body {
    flex: 1;
}

/* タイトル */
.option-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

/* 説明文 */
.option-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

/* 料金 */
.option-card__price {
    font-size: 16px;
    font-weight: 700;
    color: #0080a3;
}


/* ---------- SP版 ---------- */

@media (max-width: 768px) {
    .option-card {
        padding: 24px;
    }

    .option-card__line {
        width: 4px;
        margin-right: 14px;
    }

    .option-card__title {
        font-size: 18px;
    }
}

/* =========================================================
   MAINTENANCE（サーバ・保守・運用プラン）
========================================================= */

.maintenance {
    padding: 120px 0;
    background: #ffffff;
}

.maintenance__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ラベル（ABOUTと統一） */
.maintenance__label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #0080a3;
    padding-left: 16px;
    border-left: 4px solid #f9be02;
    margin-bottom: 16px;
}

/* タイトル（ABOUTと統一） */
.maintenance__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #333;
}

.maintenance__lead {
    font-size: 16px;
    color: #555;
    margin-bottom: 48px;
    line-height: 1.9;
}

/* グリッド（3カラム） */
.maintenance__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* カード */
.maintenance-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 30px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    border-top: 6px solid #0080a3;
    position: relative;
    transition: 0.25s ease;
}

.maintenance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

/* 人気バッジ */
.maintenance-card__badge {
    position: absolute;
    top: -14px;
    right: -14px;
    background: #f9be02;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* 見出し & 価格 */
.maintenance-card__header {
    margin-bottom: 24px;
}

.maintenance-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

.maintenance-card__price {
    font-size: 26px;
    font-weight: 800;
    color: #333;
}

/* リスト */
.maintenance-card__list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.maintenance-card__list li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.maintenance-card__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f9be02;
}

/* CTA */
.maintenance-card__btn {
    display: inline-block;
    margin-top: 6px;
}

/* ====== 768px 以下 ====== */
@media (max-width: 768px) {

    .maintenance {
        padding: 100px 0;
    }

    .maintenance__inner {
        padding: 0 24px;
    }

    .maintenance__title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .maintenance__lead {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .maintenance__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .maintenance-card {
        padding: 30px 22px;
    }

    .maintenance-card__price {
        font-size: 24px;
    }
}

/* ====== 400px 以下 ====== */
@media (max-width: 400px) {

    .maintenance {
        padding: 80px 0;
    }

    .maintenance__inner {
        padding: 0 18px;
    }

    .maintenance__title {
        font-size: 24px;
    }

    .maintenance-card {
        padding: 26px 18px;
    }

    .maintenance-card__price {
        font-size: 22px;
    }
}


/* =========================================
   CTA
========================================= */

.template-cta {
    text-align: center;
    background: #fff;
}

.template-cta__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.template-cta__btn {
    width: 260px;
    border-radius: 999px;
}


.price-card__btn,
.plan-result-card__btn,
.template-cta__btn,
.header-cta {
    text-align: center !important;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .price__grid,
    .features__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .price__grid,
    .features__grid {
        grid-template-columns: 1fr;
    }

    .option-row {
        flex-direction: column;
    }

    .page-fv__title {
        font-size: 36px;
    }
}
