@charset "UTF-8";

/********* お悩み改善事例 *********/
.problem_container {
    display: flex;
}

.problem {
    width: 50%;
    border-top: 1px solid #A2B4D7;
    border-left: 1px solid #A2B4D7;
    border-bottom: 1px solid #A2B4D7;

    display: flex;
    padding: 4% 6%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 260px;
}

.problem_img {
    width: 50%;
    object-fit: cover;
}

.caption {
    font-family: var(--font-mincho);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--blue-main);
    margin-bottom: 15px;
    text-align: center;
}

.each_problem {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.each_problem img {
    margin-top: 3px;
}

.each_problem+.each_problem {
    margin-top: 5px;
}

/* 原因 */
.box_margin {
    margin-top: 40px;
}

.cause {
    border: 1px solid #A2B4D7;
    padding: 4% 10%;
}

.cs_sol_contents {
    max-width: 575px;
    margin-left: auto;
    margin-right: auto;
}

/* .cs_sol_contents>.caption {
    display: block;
    margin-left: 0;
    font-size: clamp(16px, 1.9vw, 20px);
    margin-bottom: 10px;
} */

.cs_sol_contents+.cs_sol_contents {
    margin-top: 20px;
}

.cs_sol_contents>.causes {
    display: flex;
    flex-wrap: wrap;
}


/* 施術方法 */
.solution {
    background-color: var(--blue-bg);
    padding: 4% 10%;
}

/* 実際の改善例 */
.example {
    border: 1px solid #A2B4D7;
    padding: 4% 5%;
}

.example_caption {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.example_caption span {
    font-size: clamp(13px, 1.5vw, 16px);
    color: var(--text-gray);
}

.example_contents {
    display: flex;
    gap: 10px;
}

.example_box {
    display: flex;
    width: 50%;
}

.example_box.before {
    position: relative;
}

.example_box_title {
    width: 35%;
    text-align: center;
    min-width: 125px;
}

.example_box_title p {
    font-family: var(--font-eng);
    font-size: clamp(20px, 3vw, 28px);
    line-height: normal;
    letter-spacing: normal;
}

.before>.example_box_title p {
    color: #676f7f;
}

.after>.example_box_title p {
    color: var(--yellow);
}

.example_condition {
    width: 65%;
    margin-top: 10%;
}

.condition_title {
    font-weight: 500;
}

.each_condition {
    font-size: clamp(14px, 1.7vw, 15px);
}

/* 矢印 */
.example_arrow {
    width: 26vw;
    max-width: 280px;
    height: 2px;
    background: linear-gradient(to right, #EFEFEF, #EDC309);
    /* background: currentColor; */
    position: absolute;
    top: 7%;
    left: 35%;
}

.example_arrow::before {
    background: #fff;
    background-clip: content-box;
}

.example_arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    width: 0;
    height: 0;
    border: 8px solid var(--yellow);
    border-top-color: transparent;
    border-right-color: transparent;
    border-right-width: 0;
    border-bottom-color: transparent;
}

/* おすすめメニュー */
.osusume_menu {
    background-color: var(--blue-bg);
    padding: 5%;
}

.osusume_container {
    background-color: #fff;
    padding: 45px 5%;
    margin-top: 2.5%;
}

.osusume_price {
    border: 1px solid #B0C6DE;
    padding: 30px 3%;
    display: flex;
    justify-content: space-around;
    font-family: var(--font-mincho);
    line-height: normal;
}

.discount_menu {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
}

.discount_label {
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 18px);
    color: #fff;
    background-color: var(--blue-main);
    padding: 10px;
    min-width: 94px;
    text-align: center;
}

.discount_menu_name {
    font-weight: 500;
    font-size: clamp(16px, 1.9vw, 20px);
    color: var(--blue-main);
}

.discount_price {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 72px;
    position: relative;
}

.original_price {
    font-size: clamp(19px, 2vw, 23px);
    font-weight: 500;
    letter-spacing: normal;
}

.special_price {
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 48px);
    letter-spacing: normal;
    color: var(--yellow);
}

.special_price span {
    font-size: clamp(24px, 2vw, 32px);
}

/* 矢印 */
.discount_arrow {
    width: 35px;
    max-width: 280px;
    height: 2px;
    color: var(--text-gray);
    background: currentColor;
    position: absolute;
    left: 34%;
}

.discount_arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    width: 0;
    height: 0;
    border: 7px solid var(--text-gray);
    border-top-color: transparent;
    border-right-color: transparent;
    border-right-width: 0;
    border-bottom-color: transparent;
}

/* メニュー */
.menu_detail {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 314px;
}

.menu_detail_img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    margin-right: 4%;
}

.menu_detail_content {
    width: 50%;
}

.menu_title {
    font-family: var(--font-mincho);
    font-weight: 600;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--blue-main);
}

.menu_text {
    max-width: 480px;
    margin-top: 3%;
}

.menu_symptoms {
    margin-top: 4%;
}

.menu_symptoms p {
    font-family: var(--font-mincho);
    font-size: clamp(16px, 1.9vw, 18px);
    line-height: normal;
    margin-bottom: 14px;
}

.menu_symptoms ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.menu_symptoms ul li {
    background-color: #FBF8AC;
    padding: 10px;
    line-height: 1.7;
}

.menu_button_area {
    margin-top: 4%;
    display: flex;
    justify-content: center;
}

.menu_button {
    max-width: 270px;
    gap: 10px;
    padding: 14px 20px 14px 30px;
}

/* 他の事例ボタン */
.others_button_area {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 2vw, 25px);
    margin-top: 20px;
}

.others_button {
    width: 140px;
    height: 70px;
    padding: 0;
    justify-content: center;
    font-size: clamp(14px, 2vw, 18px);
}



/********* SP版 *********/
@media (max-width: 786px) {
    .case {
        margin-top: 50px;
    }

    .example_arrow {
        top: 5%;
        left: 19vw;
        width: 20vw;
    }

    /* おすすめメニュー */
    .osusume_menu {
        padding: 12% 2%;
        margin-top: 60px;
    }

    .osusume_container {
        padding: 5% 5% 8%;
    }

    .osusume_price {
        flex-direction: column;
        padding: 20px 15px;
    }

    .discount_menu {
        width: 100%;
    }

    .discount_label {
        padding: 6px;
        min-width: 74px;
    }

    .discount_price {
        width: 100%;
    }

    .discount_arrow {
        left: 42%;
    }

}


/********* SP版(645px) *********/
@media (max-width: 645px) {

    /* 実際の改善例 */
    .example {
        padding: 8%;
        padding-left: 5%;
    }

    .example_contents {
        flex-direction: column;
        gap: 50px;
    }

    .example_box {
        width: 100%;
    }

    /* 矢印 */
    .example_arrow {
        transform: rotate(90deg);
        top: 176px;
        left: 60px;
        width: 7vw;
    }

    /* おすすめメニュー */
    .menu_detail {
        flex-direction: column;
        height: auto;
        margin-top: 10px;
    }

    .menu_detail_img {
        width: 100%;
        margin-right: 0;
        max-height: 270px;
    }

    .menu_detail_content {
        width: 97%;
        margin-top: 20px;
    }

    .menu_symptoms ul {
        gap: 7px;
    }

    .menu_button_area {
        margin-top: 30px;
    }

}



/********* SP版(500px) *********/
@media (max-width: 500px) {

    /* お悩み改善事例 */
    .problem_container {
        flex-direction: column;
    }

    .problem {
        width: 100%;
        border-bottom: none;
        border-right: 1px solid #A2B4D7;
        padding: 7%;
    }

    .problem_img {
        width: 100%;
    }

    /* 原因 */
    .box_margin {
        margin-top: 20px;
    }

    .cause,
    .solution {
        padding: 10% 8%;
    }

    /* 矢印 */
    .example_arrow {
        top: 166px;
        left: 43px;
        width: 10vw;
    }

    /* おすすめメニュー */

    .discount_arrow {
        left: 38%;
        width: 30px;
        height: 1px;
    }

    /* 他の事例ボタン */
    .other_cases {
        width: 80%;
        margin-top: 60px;
    }

    .others_button {
        height: 60px;
    }
}