/* -----------------------------------------------------------
 * 掲載の流れ（ステップリスト）共通パーツ
 * ----------------------------------------------------------- */
.c-flow-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* ステップ間の余白 */
    margin-top: 40px;
}

/* 各ステップのカード */
.c-flow-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
    /* 薄いグレーの枠線 */
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

/* アイコン（オレンジの円） */
.c-flow-item__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #FF8C42;
    /* 指定のオレンジ */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.c-flow-item__icon img {
    width: 52px;
    height: auto;
}

/* テキストエリア */
.c-flow-item__content {
    flex-grow: 1;
}

/* Step.01 などのラベル */
.c-flow-item__step {
    display: block;
    color: #FF8C42;
    /* 指定のオレンジ */
    font-size: 14px;
    margin-bottom: 2px;
}

/* ステップのタイトル */
.c-flow-item__title {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
    color: #333;
    line-height: 1.4;
}

/* レスポンシブ (SP) */
@media screen and (max-width: 768px) {
    .c-flow-item {
        padding: 15px;
    }

    .c-flow-item__icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .c-flow-item__title {
        font-size: 15px;
    }

    .c-flow-item__step {
        font-size: 12px;
    }
}

/* -----------------------------------------------------------
 * 掲載メリット 共通パーツ
 * ----------------------------------------------------------- */
.c-merit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* PCは3列 */
    gap: 20px;
    margin-top: 40px;
}

.c-merit-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.c-merit-card__label {
    display: block;
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.c-merit-card__title {
    color: #034D3F;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.c-merit-card__image {
    width: 100%;
    margin-bottom: 20px;
}

.c-merit-card__image img {
    width: 100%;
    height: auto;
}

.c-merit-card__text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

/* チェックリスト */
.c-merit-card__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-merit-card__check-item {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #333;
}

/* オレンジのチェックアイコン(CSSで作成) */
.c-merit-card__check-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #FF8C42;
    border-radius: 50%;
}

.c-merit-card__check-item::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #FF8C42;
    border-bottom: 2px solid #FF8C42;
    transform: rotate(-45deg);
}

/* 注釈テキスト */
.p-merit__note {
    text-align: center;
    color: #DB0909;
    font-size: 13px;
    margin-top: 30px;
}

/* レスポンシブ (タブレット・スマホ) */
@media screen and (max-width: 960px) {
    .c-merit-list {
        grid-template-columns: 1fr;
        /* スマホは1列 */
        gap: 30px;
    }

    .c-merit-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* -----------------------------------------------------------
 * CTA（コールトゥアクション）セクション
 * ----------------------------------------------------------- */
.c-cta-section {
    background-color: #008B37;
    padding: 60px 20px;
    margin-top: 80px;
    width: 100%;
}

.c-cta-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.c-cta-section__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* PCでのボタン間の距離 */
}

.c-cta-item {
    text-align: center;
    flex: 1;
    max-width: 380px;
}

.c-cta-item__label {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

/* ボタン共通設定 */
.c-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    /* ボタンの高さ */
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.c-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* オレンジボタン（白枠付き） */
.c-cta-btn--orange {
    background-color: #FF8C42;
    /* 指定のオレンジ */
    color: #ffffff;
    border: 3px solid #ffffff;
    /* 白い縁取り */
}

/* ホワイトボタン */
.c-cta-btn--white {
    background-color: #ffffff;
    color: #333333;
}

/* レスポンシブ (SP) */
@media screen and (max-width: 768px) {
    .c-cta-section {
        padding: 40px 20px;
    }

    .c-cta-section__container {
        flex-direction: column;
        /* 縦並びに変更 */
        gap: 30px;
    }

    .c-cta-item {
        width: 100%;
        max-width: none;
    }

    .c-cta-btn {
        height: 60px;
        font-size: 16px;
    }
}

/* -----------------------------------------------------------
 * yagioffer紹介セクション
 * ----------------------------------------------------------- */
/*.p-guide-offer {
    padding-bottom: 80px;
}*/

.p-guide-offer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* テキスト側 */
.p-guide-offer__content {
    flex: 1;
}

.p-guide-offer__body {
    margin-top: 20px;
}

.p-guide-offer__text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.p-guide-offer__text strong {
    font-weight: bold;
}

.p-guide-offer__text--small {
    font-size: 14px;
    color: #666;
}

/* リンク */
.p-guide-offer__link-unit {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

.p-guide-offer__link {
    color: #2F93FF;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.p-guide-offer__link:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* 画像側 */
.p-guide-offer__image-unit {
    flex: 1;
    text-align: right;
}

.p-guide-offer__image {
    max-width: 100%;
    width: 400px;
    height: auto;
}

/* レスポンシブ (SP) */
@media screen and (max-width: 768px) {
    .p-guide-offer {
        padding-bottom: 60px;
    }

    .p-guide-offer__inner {
        flex-direction: column;
        gap: 30px;
    }

    .p-guide-offer__content {
        order: 1;
    }

    .p-guide-offer__image-unit {
        order: 2;
        text-align: center;
    }

    .p-guide-offer__text {
        font-size: 15px;
    }
}

/* -----------------------------------------------------------
 * 料金プランセクション
 * ----------------------------------------------------------- */
/*.p-guide-price {
    padding-bottom: 80px;
}*/

.p-guide-price__lead {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.p-guide-price__sub-lead {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.p-guide-price__sub-lead strong {
    font-weight: bold;
}

/* テーブルエリア全体 */
.p-guide-price__table-area {
    background-color: #E2EFD9;
    /* 薄緑の背景 */
    padding: 40px 20px;
    border-radius: 4px;
    text-align: center;
}

.p-guide-price__table-title {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 25px;
    color: #333;
}

/* 白いカード部分 */
.p-guide-price__table-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    max-width: 850px;
    margin: 0 auto;
}

/* 横スクロール対応 */
.p-guide-price__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.p-guide-price__table {
    width: 100%;
    min-width: 600px;
    /* スマホで崩れないための最小幅 */
    border-collapse: collapse;
    font-size: 16px;
    table-layout: fixed;
}

.p-guide-price__table th,
.p-guide-price__table td {
    border: 1px solid #333;
    padding: 12px 10px;
    vertical-align: middle;
    text-align: center;
    color: #333;
}

.p-guide-price__table th {
    font-weight: normal;
    font-size: 14px;
}

/* ボーナス色の指定（ユーティリティ的class） */
.u-bg-gray {
    background-color: #f5f5f5;
}

.u-bg-green-light {
    background-color: #EFFFD8;
}

.u-bg-yellow-light {
    background-color: #FFF8AD;
}

.u-bg-orange-light {
    background-color: #FFDAA7;
}

.u-bg-orange {
    background-color: #FFC598;
}

.p-guide-price__table-note {
    text-align: right;
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {

    .p-guide-price__table-title{
        font-size: 18px;
    }

    .p-guide-price__lead {
        font-size: 20px;
    }

    .p-guide-price__table-area {
        padding: 30px 10px;
    }

    .p-guide-price__table-card {
        padding: 15px;
        border-radius: 20px;
    }

    .p-guide-price__table {
        font-size: 14px;
    }

    .p-guide-price__table th {
        font-size: 12px;
        padding: 8px 5px;
    }
}