@charset "UTF-8";

/* =========================================
   1. カラーパレット & ベーススタイル
========================================= */
:root {
    --color-main: #A84E4F;
    --color-btn: #414141;
    --color-bg-1: #FBF7F2;
    --color-bg-2: #F2F2F2;
    --color-text-base: #333333;

    --font-en: 'futura-pt', "Futura PT", sans-serif;
    --font-base: "Noto Sans JP", sans-serif;
}

body {
    color: var(--color-text-base);
    font-family: var(--font-base);
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    body {
        color: var(--color-text-base);
        font-family: var(--font-base);
        font-weight: 400;
        line-height: 1.7;
        letter-spacing: 0.05em;
        font-size: 16px;
    }
}


/* =========================================
   2. 汎用・ユーティリティクラス (.u-*)
========================================= */
.u-sp-only {
    display: none!important;
}

.u-pc-only {
    display: block!important;
}

@media screen and (max-width: 768px) {
    .u-sp-only {
        display: block!important;
    }

    .u-pc-only {
        display: none!important;
    }
}


/* =========================================
   3. 共通注釈テキスト (.c-note)
========================================= */
.c-note {
    font-size: 12px;
    color: #A4A4A4;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .c-note {
        font-size: 10px;
    }
}


/* =========================================
   4. 共通ボタンパーツ (.c-btn)
========================================= */
.c-btn-wrap {
    display: flex;
    justify-content: center;
}

.c-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 60px;
    background-color: var(--color-main);
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: opacity 0.3s;
}

.c-btn:hover {
    opacity: 0.85;
}

.c-btn__arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    width: 5px;
    height: 8px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 50% 25%, 100% 0, 50% 100%);
    transform: translateY(-50%) rotate(-90deg);
}

/* 黒ボタンバリエーション */
.c-btn--black {
    background-color: #414141;
}

/* 白ボタンバリエーション */
.c-btn--white {
    background-color: #ffffff;
    color: var(--color-main);
    border: 1px solid var(--color-main);
}

.c-btn--white .c-btn__arrow {
    background-color: var(--color-main);
}


/* =========================================
   5. 共通セクションヘッダー (.c-section)
========================================= */
.c-section {
    padding-top: 270px;
}

.c-section__header {
    text-align: center;
    margin-bottom: 120px;
}

.c-section__title {
    font-size: 58px;
    letter-spacing: 0.03em;
    color: var(--color-main);
    margin-bottom: 80px;
    line-height: 1;
    font-family: var(--font-en);
    font-weight: 300;
}

.c-section__main-lead {
    font-size: 28px;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    line-height: 1.4;
}

.c-section__sub-lead {
    font-size: 16px;
    line-height: 2.0;
    letter-spacing: 0.05em;
}

/* 英語タイトルのみ */
.c-section__header--en-only {
    text-align: center;
    margin-bottom: 70px;
}

.c-section__header--en-only .c-section__title {
    margin-bottom: 0;
}

/* 左寄せタイトル */
.c-section__header--left {
    text-align: left;
}

.c-section__header--left .c-section__title,
.c-section__header--left .c-section__main-lead,
.c-section__header--left .c-section__sub-lead {
    text-align: left;
}

@media screen and (max-width: 768px) {
    .c-section {
        padding-top: 80px;
    }

    .c-section__header {
        width: 85%;
        margin: 0 auto 40px;
    }

    .c-section__title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .c-section__main-lead {
        font-size: 21px;
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .c-section__sub-lead {
        font-size: 14px;
        text-align: left;
        line-height: 1.7;
    }

    .c-section__header--left {
        width: 100%;
    }
}


/* =========================================
   6. パンくずリスト (.c-breadcrumb)
========================================= */
.c-breadcrumb {
    width: 100%;
    padding: 15px 5%;
    font-size: 12px;
    color: var(--color-text-base, #333333);
}

.c-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-breadcrumb__item a {
    color: var(--color-text-base, #333333);
    text-decoration: none;
    transition: opacity 0.3s;
}

.c-breadcrumb__item a:hover {
    opacity: 0.6;
}

.c-breadcrumb__delimiter {
    margin: 0 8px;
    color: #999999;
}

/* 上付き注釈記号 (※など) */
sup {
    font-size: 0.6em;
    vertical-align: super;
    line-height: 0;
    margin-left: 0.1em;
}

/* =========================================
   2. キャンペーンセクション (.price-campaign)
========================================= */
.price-campaign {
    padding-top: 50px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.price-campaign__inner {
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
}

.price-campaign__box {
    border: 1px solid var(--color-main);
    border-radius: 16px;
    padding: 20px 5%;
    text-align: center;
}

.price-campaign__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 31px;
    background-color: var(--color-main);
    color: #ffffff;
    font-size: 16px;
    border-radius: 9999px;
    margin-bottom: 5px;
}

.price-campaign__title {
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.price-campaign__line {
    border: none;
    border-top: 1px solid #cdcdcd;
    margin: 0 0 20px 0;
}

.price-campaign__list {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.price-campaign__list-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-campaign__item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
    color: var(--color-main);
}

.price-campaign__term {
    font-size: 28px;
}

.price-campaign__colon {
    font-size: 28px;
    margin: 0 5px;
}

.price-campaign__desc {
    display: flex;
    align-items: baseline;
    text-align: left;
}

.price-campaign__val {
    font-size: 28px;
}

.price-campaign__val--text {
    font-size: 28px;
}

.price-campaign__sub {
    font-size: 18px;
    color: #a4a4a4;
    margin-left: 10px;
    white-space: nowrap;}

.price-campaign__note-wrap {
    margin-top: 24px;
    text-align: left;
}

.price-campaign__note-wrap .c-note {
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 4px;
    line-height: 1;
}

.price-campaign__note-wrap .c-note:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .price-campaign {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .price-campaign__inner {
        width: 85%;
    }

    .price-campaign__box {
        padding: 20px 5%;
    }

    .price-campaign__badge {
        margin-bottom: 12px;
        font-size: 14px;
        height: 23px;
        width: 68px;
    }

    .price-campaign__title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .price-campaign__line {
        margin-bottom: 12px;
    }

    .price-campaign__list {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .price-campaign__list-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        width: 100%;
    }

    .price-campaign__item {
        display: flex;
        align-items: baseline;
        justify-content: center;
        width: 100%;
        color: var(--color-main);
    }

    .price-campaign__item-mini .price-campaign__term{
        font-size: 12px;
    }
    .price-campaign__item-mini .price-campaign__colon,
    .price-campaign__item-mini r.price-campaign__val--text{
        font-size: 10px;
    }

    .price-campaign__term {
        font-size: 14px;
        width: auto;
        white-space: nowrap;
    }

    .price-campaign__colon {
        font-size: 14px;
        margin: 0;
    }

    .price-campaign__desc {
        display: flex;
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .price-campaign__val {
        font-size: 14px;
        line-height: 1.2;
    }

    .price-campaign__val--text {
        font-size: 12px;
    }

    .price-campaign__sub {
        font-size: 10px;
        margin-left: 0;
        margin-top: 3px;
        line-height: 1.3;
        letter-spacing: normal;
    }
    .price-campaign__note-wrap{
        margin-top: 10px;
    }
    .price-campaign__note-wrap p{
        font-size: 8px;
    }

    #price .price-campaign {
        padding-bottom: 30px;
    }
    #price .c-btn-wrap{
        margin-bottom: 80px;
    }
}