@charset "utf-8";

/*----------------------------------------
service（サービス・料金ページ）
----------------------------------------*/
.service_area {
    text-align: center;
    padding-bottom: 40px;
}
.service_title_jp {
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}
.service_tax {
    display: block;
    margin-top: 6px;
    font-size: 1.3rem;
    letter-spacing: 0;
}
.service_notebox {
    margin-top: 20px;
    padding: 14px 16px;
    border: 1px solid #fec88a;
    background-color: #fffdf8;
}
.service_note_title {
    margin-bottom: 6px;
    font-size: 1.5rem;
}
.service_notebox > .service_small:first-child {
    margin-top: 0;
}
.service_notebox .plan_points li {
    padding-left: 21px;
}
.service_notebox .plan_points li::before {
    content: "";
    left: 8px;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fec88a;
}

/* 白い四角の中の文章は、左右に余白をつける */
.service_box > .service_small,
.service_box > .service_text,
.service_box > .faq,
.service_box > .flow {
    padding-left: 12px;
    padding-right: 12px;
}
.service_box > .service_notebox {
    margin-left: 12px;
    margin-right: 12px;
}
.service_box {
    background-color: #fff;
    padding: 24px 20px 28px;
    margin: 0 auto 24px;
    text-align: left;
}
.service_h3 {
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
}
.service_h4 {
    font-size: 1.6rem;
    margin: 28px 0 8px;
    padding-left: 10px;
    border-left: 3px solid #fec88a;
}
.service_text {
    font-size: 1.5rem;
    line-height: 2.4rem;
    margin-bottom: 16px;
}
.service_small {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-top: 12px;
}
.service_small--gap {
    margin-bottom: 60px;
}

/* プラン */
.plan_list {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}
.plan {
    border: 1px solid #fec88a;
    background-color: #fffdf8;
    padding: 22px 18px;
    text-align: center;
}
.plan_name {
    font-size: 1.7rem;
    margin-bottom: 8px;
}
.plan_price {
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.plan_price .num {
    font-size: 3.4rem;
    letter-spacing: 0.04em;
}
.plan_points {
    text-align: left;
    font-size: 1.5rem;
    line-height: 2.4rem;
}
.plan_points > li {
    position: relative;
    padding-left: 1.2em;
}
.plan_points .section_chips {
    margin: 8px 0 6px;
}
.plan_points > li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* 選べるセクション・選べる更新内容（タグ） */
.section_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.section_chips li {
    background-color: #fff;
    border: 1px solid #fec88a;
    padding: 4px 14px;
    border-radius: 100vh;
    font-size: 1.4rem;
    line-height: 2rem;
}

/* 金額の行 */
.price_rows li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border-bottom: 1px dotted #b9b2a6;
    font-size: 1.5rem;
    line-height: 2.2rem;
}
.price_rows li span:last-child {
    white-space: nowrap;
}

/* 制作の流れ */
.flow {
    counter-reset: flow;
}
.flow li {
    position: relative;
    padding: 0 0 24px 52px;
}
.flow li::before {
    counter-increment: flow;
    content: counter(flow);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: #fec88a;
    color: #545252;
    font-size: 1.6rem;
}
.flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 40px;
    bottom: 4px;
    width: 1px;
    background-color: #e3d9c8;
}
.flow_title {
    font-size: 1.7rem;
    line-height: 3.6rem;
}
.flow_text {
    font-size: 1.5rem;
    line-height: 2.4rem;
}

/* よくあるご質問 */
.faq dt {
    position: relative;
    padding-left: 2em;
    margin-top: 16px;
    font-size: 1.6rem;
    line-height: 2.4rem;
}
.faq dt:first-child {
    margin-top: 0;
}
.faq dd {
    position: relative;
    padding-left: 2em;
    margin-top: 6px;
    padding-bottom: 16px;
    border-bottom: 1px dotted #b9b2a6;
    font-size: 1.5rem;
    line-height: 2.4rem;
}
.faq dt::before,
.faq dd::before {
    position: absolute;
    left: 0;
    color: #e3a866;
}
.faq dt::before {
    content: "Q";
}
.faq dd::before {
    content: "A";
}

.service_cta {
    margin: 36px 0 20px;
    text-align: center;
}
.service_cta p {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

@media (width>767px) {
    .service_box {
        width: 65%;
        padding: 44px 56px 48px;
    }
    .price_rows li {
        padding-left: 24px;
        padding-right: 24px;
    }
    .service_box > .service_small,
    .service_box > .service_text,
    .service_box > .faq,
    .service_box > .flow {
        padding-left: 28px;
        padding-right: 28px;
    }
    .service_box > .service_notebox {
        margin-left: 28px;
        margin-right: 28px;
    }
}

/* 2カラムは、幅の広いPC表示のときだけ（タブレットはスマホと同じ1カラム） */
@media (width>1200px) {
    .plan_list {
        grid-template-columns: 1fr 1fr;
    }
}

/* プライバシーポリシー */
.policy .service_h4 {
    margin-top: 32px;
}
.policy .service_text a {
    text-decoration: underline;
}
.policy_list {
    margin: 0 0 16px;
    padding-left: 12px;
    font-size: 1.5rem;
    line-height: 2.4rem;
}
.policy_list li {
    position: relative;
    padding-left: 1.2em;
}
.policy_list li::before {
    content: "・";
    position: absolute;
    left: 0;
}
.policy_date {
    text-align: right;
    padding-right: 12px;
    margin-top: 32px;
}
@media (width>767px) {
    .policy_list {
        padding-left: 28px;
        padding-right: 28px;
    }
    .policy_date {
        padding-right: 28px;
    }
}
.policy_sub {
    margin: 12px 0 4px;
    padding-left: 12px;
    font-size: 1.5rem;
    line-height: 2.4rem;
    font-weight: normal;
}
.policy strong {
    font-weight: normal;
}
.policy .service_text a {
    text-decoration: underline;
}
@media (width>767px) {
    .policy_sub {
        padding-left: 28px;
    }
}
