@charset "utf-8";

/* ----- */
/* price */
/* ----- */

.service-page-price h2 {
    font-size: 25px;
    font-family: var(--font-mincho);
    text-align: left;
    font-weight: 300;
}

.service-page-price h2::before {
    content: " ";
    display: inline-block;
    width: 10px;
    height: 35px;
    background-color: var(--sab-color);
    vertical-align: middle;
    margin-right: 10px;
}

.service-page-price-01 {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center;    /* 左右中央に寄せる */
    text-align: center;     /* テキストも中央寄せ */
}

.service-page-price-01 p {
    font-size: 25px;
    font-weight: 600;
    color: var(--sab-color);
}

.shokai-price {
    width: 100%;
    max-width: 1000px;
    height: 100px;
    line-height: 100px;
    position: relative;
    border:3px solid var(--sab-color);
    border-radius: 70px;
    background-color: none;
    box-sizing: content-box;
}

.shokai-price::after {
    background-color: #FCF2F2;  /* ずらした背景色 */
    border: none;  /* 枠線なし */
    content: '';  /* 擬似要素 */
    position: absolute;  /* 位置指定 */
    top: 7px;  /* 上にずらす */
    left: 7px;  /* 左にずらす */
    width: 100%;  /* 幅100% */
    height: 100%;  /* 高さ100% */
    border-radius: 70px;
    z-index: -1;  /* 背面表示 */
}

.shokai-price span {
    font-size: 25px;
    font-weight: 600;
    color: var(--sab-color);
    text-shadow: 2px 2px 0 #FFF;
    margin-right: 40px;
}

.shokai-price p {
    font-size: 25px;
    color: var(--main-color);
    font-weight: 300;
}

.plan {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 25px;
}

.plan-wrapper {
    height: 100px;
    line-height: 100px;
    border: 3px solid var(--sab-color);
    border-radius: 70px;
    margin-top: 25px;
    box-sizing: content-box;
}

.service-page-price-02 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 30px;
}

.plan-keizoku ,
.plan-spot {
    background-color: #FCF2F2;
}

.plan-keizoku img,
.plan-spot img {
    width: 100%;
}

.price-table p {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.price-table table {
    width: 100%;
    max-width: 400px;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 3px;
    font-size: 20px;
    letter-spacing: 0;
    margin: 30px auto 30px auto;
}

.price-table thead {
    background-color: var(--sab-color);
    color: #FFF;
}

.price-table thead th {
    font-weight: 300;
}

.price-table span {
    font-size: 15px;
}

.price-table tbody {
    background-color: #FFF;
}

.plan-joken p {
    width: 100%;
    max-width: 400px;
    font-size: 20px;
    font-weight: 600;
    color: var(--sab-color);
    background-color: #FFF;
    margin: 0 auto;
    border-radius: 30px;
}

.plan-joken dd {
    width: 100%;
    max-width: 400px;
    font-size: var(--font-size);
    text-align: left;
    letter-spacing: 1;
    line-height: 1.8;
    margin: 30px auto 30px auto;
}

.plan-option {
    width: 100%;
    line-height: 100px;
    text-align: left;
    border: 3px solid var(--sab-color);
    margin: 30px 0;
    padding: 0 55px;
}

.plan-option span {
    font-size: 20px;
    font-weight: 600;
    color: var(--sab-color);
    margin-right: 70px;
}

.service-page-price-03-wrapper p,
.service-page-tojitsu-list p,
.other-text p {
    color: var(--sab-color);
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.service-page-price-03-wrapper dd ,
.service-page-price-03-wrapper p ,
.service-page-tojitsu-list p ,
.service-page-tojitsu-list dd ,
.other-text dd {
    text-align: left;
}

/* ---- */
/* flow */
/* ---- */

.service-title {
    width: 100%;
    height: 120px;
    line-height: 120px;
    background-color: #F5F5F5;
}

.service-title h1 {
    font-size: 25px;
    font-family: var(--font-mincho);
    font-weight: 600;
    margin: 0;
}

.service-page-flow ul {
    width: 100%;
    max-width: 900px;
    margin: 100px auto 0 auto;
}

.service-page-flow-list {
    width: 100%;
    display: flex;
    justify-content: start;
    gap: 50px;
    text-align: left;
    margin-top: 50px;
}

.flow-text p {
    font-size: 25px;
    font-weight: 600;
    color: var(--sab-color);
}

/* ---------- */
/* 当日のながれ */
/* ---------- */

.service-page-tojitsu ul {
    width: 100%;
    max-width: 900px;
    margin: 100px auto 0 auto;
}

/* ----- */
/* その他 */
/* ----- */

.service-page-other-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: left;
    margin-top: 100px;
    margin-bottom: 100px;
}

.other-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.other-img img {
    width: 100%;
}

/* --- */
/* FQA */
/* --- */

.service-page-fqa {
    background-color: #F5F5F5;
}

.service-page-fqa-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-page-fqa-list {
    width: 100%;
    max-width: 900px;
    background-color: #FFF;
    box-shadow: 5px 5px 10px #bbbbbb;
    padding: 40px;
    margin-bottom: 50px;
}

.service-page-fqa-list p {
    font-size: var(--font-size);
    font-family: var(--font-mincho);
    color: var(--sab-color);
    text-align: left;
}

.border {
    border-bottom: 1px solid #E6E6E6;
}

.question::before {
    display: inline-block;
    content: "Q";
    margin-right: 25px;
    font-size: var(--font-size);
    font-family: var(--font-mincho);
    color: var(--sab-color);
    text-align: left;
}

.service-page-fqa-list dd {
    font-size: 16px;
    text-align: left;
    margin-top: 10px;
}

.answer::before {
    display: inline-block;
    content: "A";
    font-family: var(--font-mincho);
    margin-top: 10px;
    margin-right: 25px;
}

.service-page-fqa-list div {
    display: flex;
    justify-content: start;
}


/* --------------
    レスポンシブ
-------------- */

@media (max-width:768px) {

    /* ----- */
    /* price */
    /* ----- */

    .service-page-price-01 p {
        font-size: 20px;
    }

    .shokai-price span,
    .shokai-price p {
        font-size: 20px;
    }

    .service-page-price-02 {
        grid-template-columns: repeat(1,1fr);
    }

    .price-table table {
        font-size: 16px;
        max-width: 600px;
    }

    .price-table span {
        font-size: 10px;
    }

    .plan-joken p,
    .plan-joken dd {
        max-width: 600px;
    }

    /* ---- */
    /* flow */
    /* ---- */


    .service-page-flow-list  {
        gap: 20px;
    }

    .flow-img {
        width: 100%;
        max-width: 143px;
    }

    .flow-img img {
        width: 100%;
        max-width: 143px;
    }

    .flow-text {
        width: 100%;
        max-width: 707px;
    }
}

@media (max-width:480px) {

    .service-page-price h2 {
        font-size: 20px;
    }

    .service-page-price-01 p {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .shokai-price {
        height: 60px;
        line-height: 60px;
    }

    .shokai-price span,
    .shokai-price p {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .shokai-price span {
        margin-right: 10px;
    }

    .plan-wrapper {
        height: 60px;
        line-height: 60px;
    }

    .plan-joken p,
    .price-table > p {
        font-size: 18px;
    }

    .plan-option {
        line-height: 80px;
        padding: 0 20px;
    }

    .plan-option span {
        font-size: 18px;
        margin-right: 20px;
    }

    .service-page-price-03-wrapper p,
    .service-page-tojitsu-list p,
    .other-text p {
        color: var(--sab-color);
        font-size: 18px;
    }

    .service-title {
        width: 100%;
        height: 80px;
        line-height: 80px;
    }

    .service-title h1 {
        font-size: 20px;
    }

    .service-page-flow ul,
    .service-page-tojitsu ul {
        margin: 50px auto 0 auto;
    }

    .flow-text p {
        font-size: 18px;
    }

    .flow-img {
        max-width: 75px;
    }

    .flow-img img {
        max-width: 75px;
    }

    .service-page-other-wrapper {
        flex-direction: column-reverse;
        gap: 0;
        text-align: left;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .service-page-fqa-list {
        padding: 20px;
    }

    .service-page-fqa-list dd {
        font-size: 14px;
    }

    .question::before {
        margin-right: 10px;
    }

    .answer::before {
        margin-right: 10px;
    }

}