@charset "UTF-8"; /*  /face/1day-kogao/用CSS   */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap'); /* :rootのCSS変数の宣言 */
:root {
    --main-color: #333;
    --sub-color: #ca5a7c;
    --point-color: #d27f3b;
}

@media screen and (min-width: 761px) {
    .menudetail_contents {
        width: 100%;
        background-size: 100%;
        font-size: 16px;
        color: #000000;
        text-align: left;
        font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
        font-weight: 400;
        min-width: 1200px;
        overflow: hidden;
        -webkit-font-smoothing: antialiased;
    }

    .menudetail_contents .auto {
        max-width: none;
        /* width: 1100px; */
        margin: 0 auto;
        position: relative;
        clear: both;
        /* padding-top: 60px; */
    }

    .menudetail_contents section {
        width: 100%;
        /* float: left; */
        clear: both;
        margin-bottom: 60px;
        /* overflow: hidden; */
        padding: 40px;
    }

    .menudetail_contents p.text {
        margin-bottom: 1em;
        line-height: 1.8;
    }

    .box-flex {
        display: flex;
        gap: 40px;
        flex: 1;
        justify-content: center;
        margin-bottom: 40px;
    }

    .box-flex > * {
        flex: 1;
    }

    .contsMenu {
        width: 1200px;
        margin: 0 auto;
    }

    .contsMenu ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 1em 0;
    }

    .contsMenu ul li {
        width: calc((100% - 3px) / 4);
        display: flex;
        justify-content: center;
        flex-direction: column;
        flex-grow: 1;
        border-left: 1px solid #ccc;
    }

    .contsMenu ul li:last-child {
        border-right: 1px solid #ccc;
    }

    .contsMenu ul a {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-content: center;
        padding: 10px 20px;
        text-align: center;
        line-height: 1.4;
        letter-spacing: 0.1rem;
        font-size: 16px;
    }

    /*sectionタイトル*/
    .title_box {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 99;
        margin: 50px 0 226px 0;
    }

    .title_box::after {
        content: "";
        display: block;
        width: 1px;
        height: 132px;
        background-color: #000;
        position: absolute;
        bottom: -190px;
        left: 50%;
    }

    .title_box .large_title {
        color: #333;
        font-size: 3rem;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: .1em;
        margin-bottom: 14px;
    }

    .title_box .small_title {
        font-size: 17px !important;
        font-weight: bold;
        line-height: 1.3;
        letter-spacing: .2em;
    }

    .headingB {
        background: #f4f3ea;
        text-align: center;
        font-size: 28px;
        padding: 0.7em;
        font-weight: 500;
        letter-spacing: 0.1em;
        margin: 1.5em 0 1em;
    }

    .conts_inner {
        clear: both;
        /* margin-bottom: 60px; */
    }

    .conts_inner .box {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 60px;
        position: relative;
        align-items: center;
        gap: 20px;
    }

    .conts_inner .box:nth-last-of-type(2n) {
        flex-direction: row-reverse;
    }

    .conts_inner .lead_text {
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        color: var(--sub-color);
        margin-bottom: 1em;
    }

    .conts_inner .box:last-of-type {
        /* margin-bottom: 0; */
    }

    .conts_inner .box .img {
        width: calc((100% - 580px) - 40px);
        overflow: hidden;
    }

    .conts_inner .box .text_group .text_group_ttl {
        font-size: 24px;
        line-height: 56px;
        font-weight: bold;
        margin-bottom: 1em;
        letter-spacing: .2em;
    }

    .conts_inner .box .text_group {
        width: 580px;
        box-sizing: border-box;
        position: relative;
        z-index: 9;
    }

    .intro-case {
        width: 1000px;
        margin: 40px auto;
    }

    /*症例タブ*/
    .age_case {
        box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.06);
        padding: 20px 20px;
    }

    .age_case_head {
        font-weight: bold;
    }

    .age_case .tabs {
        display: flex;
        width: 100%;
        cursor: pointer;
        /* border-bottom: 2px solid #ddd; */
        gap: 0 10px;
    }

    .age_case .tab {
        flex: 1;
        /* 各タブが均等に横幅を取る */
        padding: 10px 20px;
        background-color: #f4f3ea;
        border-bottom: none;
        transition: background-color 0.3s ease;
        text-align: center;
        position: relative;
        border-radius: 5px;
    }

    .age_case .tab:hover {
        background-color: #e0e0e0;
    }

    .age_case .tab.active {
        background-color: #e783a7;
        font-weight: bold;
        border-color: #ccc;
        color: #fff;
    }

    .age_case .tab.active::after {
        /* 吹き出しの飾り */
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #e883a7;
        /* 吹き出しの三角形部分 */
    }

    .age_case .tab-content {
        display: none;
        margin-top: 20px;
    }

    .age_case .tab-content.active {
        display: block;
    }

    .age_case p {
        margin-top: 20px;
        line-height: 1.8;
    }

    .risk {
        width: 100%;
        margin: 20px auto 0;
        background: #f8f8f8;
        padding: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .oneday_custom_table {
        width: 1100px;
        margin: 40px auto;
    }

    .oneday_custom_table tr th, .oneday_custom_table tr td {
        border: 10px solid #fff;
        padding: 20px;
    }

    .oneday_custom_table thead th {
        text-align: center;
        padding: 5px;
        font-weight: bold;
    }

    .oneday_custom_table .custom_left {
        background: #f3f3eb;
        text-align: center;
        width: 15%;
    }

    .oneday_custom_table .custom_blue {
        background: #eaf2f4;
        font-weight: 600;
    }

    .oneday_custom_table .custom_gray {
        background: #efefef;
    }

    .specialty_merit {
    }

    .specialty_merit_ttl {
        font-weight: 500;
        text-align: center;
        margin: 0 auto 0.5em;
    }

    .agoshita_case_ul li p {
        font-size: 14px;
    }

    .shorei_monitor {
        width: 500px;
        margin: 0 auto 60px;
    }

    .video_box {
        width: 500px;
        margin: 60px auto 0;
    }

    .video_box .video {
        width: 500px;
        height: 500px;
        margin: 0;
    }

    .oneday_first_conts {
        background: #fff6f6;
    }

    .oneday_first_conts .banner_wrap {
        width: 800px;
        margin: 0 auto;
    }

    .oneday_firstplan {
        background: #fff;
        border-radius: 10px;
    }

    .oneday_first_price {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
        display: flex;
        padding: 40px 40px;
        margin: 40px auto 0;
        width: 1000px;
        line-height: 1.4;
        flex-flow: wrap;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
    }

    .oneday_first_main {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        /* margin:0 0 20px; */
    }

    .oneday_first_area {
        display: flex;
        /* gap: 20px; */
    }

    .oneday_first_op {
        width: 100%;
        border: 4px solid #eee;
        /* border-radius:10px; */
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .oneday_first_opinner {
        /* width: 48%; */
        display: flex;
        align-items: center;
        flex-direction: column;
        flex: 1;
    }

    .oneday_first_op .price_select {
        /* width: 48%; */
        flex: 1;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .oneday_first_op .price_select span {
        font-size: 14px;
        text-align: center;
    }

    .oneday_first_ttl {
        text-align: center;
        font-size: 30px;
    }

    .oneday_first_ttl span {
        font-size: 22px;
    }

    .oneday_first_opttl {
        text-align: center;
        font-size: 22px;
        display: flex;
        flex-flow: wrap;
        flex-direction: column;
    }

    .oneday_first_opttl span {
        font-size: 18px;
    }

    .oneday_first_price .price {
        font-size: 38px;
        color: #ca5a7c;
        font-weight: 500;
        /* margin-bottom: 0.25em; */
    }

    .oneday_first_price .price span {
        font-size: 22px;
        font-weight: 700;
    }

    .price_select {
        padding: 10px 20px 15px;
        background: #f9ecec;
        border-radius: 10px;
        margin-bottom: 10px;
        flex: 1;
        margin: 0 auto;
    }

    .price_select_list {
        display: flex;
        gap: 10px;
        flex-flow: wrap;
        justify-content: center;
    }

    .price_select_list li {
        background: #fff;
        padding: 0.1em 0.5em;
        border-radius: 50px;
        font-size: 16px;
    }

    .price_select_heading {
        font-size: 18px;
        margin-bottom: 0.5em;
        line-height: 1.4;
        text-align: center;
    }

    .merit .conts_inner .box .text_group {
        width: calc(100% - 420px);
    }

    .merit .conts_inner .box .img {
        flex-grow: 1;
        width: 400px;
    }

    .tiktok_slide {
        position: relative;
        left: 0;
        width: 100%;
        overflow-x: scroll;
        /*white-space: nowrap;*/
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
    }

    /* スクロールバーの幅と高さを設定する */
    .tiktok_slide::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    /* スクロールバーの形を設定する */
    .tiktok_slide::-webkit-scrollbar-thumb {
        border-radius: 0.25rem;
    }

    /* スクロールバーの色を設定する */
    .tiktok_slide::-webkit-scrollbar-thumb {
        --bg-opacity: 1;
        background-color: black;
    }

    .tiktok_slide_ul {
        display: table;
        width: 1600px;
        height: 600px;
        overflow: scroll;
        /*white-space: nowrap;*/
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
    }

    .tiktok_slide_ul li {
        width: 270px;
        height: 600px;
        margin-right: 30px;
        float: left;
        position: relative;
    }

    .tiktok_slide_ul li p {
        margin-top: -20px;
        width: 270px;
    }

    .reco.section {
        width: 100%;
        padding: 10px 0;
        background-image: url("../images/oneday/pick_bg.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 200px bottom;
        /* background-attachment: fixed; */
        position: relative;
        /* margin-bottom: 40px; */
        /* padding: 0; */
    }

    .reco .large_title {
        /* color: #fff; */
        /* text-shadow: 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%); */
    }

    .reco .small_title {
        color: #fff;
        text-shadow: 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%);
    }

    .title_box::after {
        /* background-color: #fff; */
    }

    .reco_list {
        display: flex;
        width: 100%;
        margin-top: 30px;
        flex-flow: wrap;
        justify-content: space-between;
    }

    .reco_list li {
        width: 32%;
        margin-bottom: 20px;
        background: #fff;
        padding: 1em 10px 1em 60px;
        position: relative;
        font-weight: bold;
        display: flex;
        align-items: center;
        line-height: 1.5;
    }

    .reco_list li:nth-child(3n) {
        margin-right: 0;
    }

    .reco_list li:before {
        content: '';
        position: absolute;
        background-image: url("../images/common/icon_check.png");
        background-repeat: no-repeat;
        top: 50%;
        left: 25px;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    .reco_list::after {
        content: "";
        width: 32%;
        display: block;
        height: 0;
    }

    .reco_list .reco_list_item {
        text-align: center;
        font-weight: bold;
        font-size: 20px;
    }

    .reco_list .reco_list_item img {
        display: block;
        margin-bottom: 20px;
    }

    #price_conts .price_wrapper {
        width: 100%;
        /* float: left; */
        /* clear: both; */
        text-align: center;
        padding: 20px 100px;
        -webkit-box-sizing: border-box;
        moz-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 33px;
        overflow: hidden;
        display: flex;
        flex-flow: wrap;
        justify-content: space-evenly;
    }

    #price_conts .price {
        background-color: #eee;
        padding-bottom: 100px;
    }

    #price_conts .price .title_box .large_title {
        color: var(--main-color);
    }

    #price_conts .price_subttl {
        background: #b97081;
        color: #fff;
        text-align: center;
        margin-bottom: 2em;
        font-size: 24px;
        padding: 10px 0;
    }

    #price_conts .price_wrapper .price_box {
        width: 475px;
        /* float: left; */
        margin-bottom: 35px;
        background-color: #fff;
        -webkit-box-sizing: border-box;
        moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 24px 20px 12px;
        border-radius: 6px;
        box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
    }

    #price_conts .price_table {
        width: 1000px;
        border: 1px solid #999;
        margin: 0 auto 40px;
        background-color: #fff;
    }

    #price_conts .price_table caption {
        font-size: 22px;
        margin: 2em 0 1em;
    }

    #price_conts .price_table .monitor {
        font-weight: bold;
        color: var(--sub-color);
    }

    #price_conts .price_table thead th {
        text-align: center;
        padding: 0.5em;
        border-right: 1px solid #999;
        background: #333;
        color: #fff;
        font-weight: bold;
        line-height: 1.4;
        font-size: 20px;
    }

    #price_conts .price_table thead th.price-plan span {
        display: block;
        font-size: 14px;
    }

    #price_conts .price_table tbody tr {
        border-bottom: 1px solid #999;
    }

    #price_conts .price_table tbody {
        border: 1px solid #999;
    }

    #price_conts .price_table tbody th {
        text-align: left;
        border-right: 1px solid #999;
        line-height: 1.4;
    }

    #price_conts .price_table tbody td {
        text-align: center;
        font-size: 22px;
        vertical-align: middle;
    }

    #price_conts .price_table tbody td.price-type {
        border-right: 1px solid #999;
    }

    #price_conts .price_table tbody th, #price_conts .price_table tbody td {
        padding: 1em;
        vertical-align: middle;
        width: 50%;
    }

    #price_conts .price_table tbody th span, #price_conts .price_table tbody td span {
        font-size: 14px;
    }

    #price_conts .price-option {
        background: #f6f6f6;
    }

    #area_conts .conts_inner {
        width: 1000px;
        margin: 0 auto;
    }

    .lipocube_list {
        display: flex;
        gap: 20px;
    }

    .oneday_op_price {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
        display: flex;
        padding: 40px 40px 0;
        margin: 40px auto;
        width: 800px;
        line-height: 1.4;
        flex-flow: wrap;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .oneday_op_ttl {
        font-size: 30px;
        display: flex;
        flex-flow: wrap;
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
        letter-spacing: 0.1em;
    }

    .oneday_op_ttl span {
        font-size: 22px;
    }

    .oneday_op_price .price {
        font-size: 38px;
        color: #ca5a7c;
        font-weight: 500;
        /* margin-bottom: 0.25em; */
    }

    .oneday_op_price .price span {
        font-size: 22px;
        font-weight: 700;
    }

    .flow_slide {
        position: relative;
        left: 0;
        width: 100%;
        overflow: scroll;
        /*white-space: nowrap;*/
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
    }

    .flow_slide_ul {
        display: flex;
        width: 1850px;
        /* height: 540px; */
        /* overflow: scroll; */
        /*white-space: nowrap;*/
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }

    .flow_slide_ul li {
        width: 270px;
        /* height: 500px; */
        margin-right: 30px;
        position: relative;
        background: #f4f3ea;
        border-radius: 10px;
    }

    .flow_slide::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    /* スクロールバーの形を設定する */
    .flow_slide::-webkit-scrollbar-thumb {
        border-radius: 0.25rem;
    }

    /* スクロールバーの色を設定する */
    .flow_slide::-webkit-scrollbar-thumb {
        --bg-opacity: 1;
        background-color: black;
    }

    .flow_number {
        padding: 20px;
        font-size: 20px;
        font-weight: bold;
        line-height: 1.5;
    }

    .flow_number span {
        background: #333;
        padding: 7px 10px;
        border-radius: 50px;
        color: #fff;
        margin-right: 10px;
    }

    .flow_text {
        font-size: 14px;
        padding: 25px 20px;
        line-height: 1.8;
    }

    .discount .box-flex {
        width: 1000px;
        margin: 0 auto
    }

    .detail_box {
        width: 100%;
        clear: both;
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
        border-radius: 6px;
        padding: 30px 50px;
        margin-bottom: 60px;
    }

    .detail_box .detail_ttl {
        font-size: 22px;
        font-weight: bold;
        /* margin-bottom: 30px; */
        text-align: center;
        padding-bottom: 20px;
    }

    .detail_box table {
        width: 100%;
    }

    .detail_box table tr:nth-of-type(2n) {
        background-color: #f8f8f8;
    }

    .detail_box table th {
        width: 217px;
        font-size: 16px;
        line-height: 25px;
        font-weight: bold;
        padding: 15px 23px 12px 35px;
    }

    .detail_box table td {
        font-size: 16px;
        line-height: 27px;
        padding: 15px 23px 12px 0;
        width: calc(100% - 200px);
        min-width: 400px;
    }

    .detail_box .disc {
        font-size: 16px;
    }

    .link_youtube_btn {
        background: #333;
        padding: 20px 80px;
        width: auto;
        font-size: 20px;
        position: relative;
        margin: 70px auto 100px;
        display: table;
        color: #fff;
    }

    .link_youtube_btn span {
        position: absolute;
        right: 10px;
        top: 27px;
    }
}

@media screen and (max-width: 760px) {
    .menudetail_contents {
        width: 100%;
        height: 100%;
        clear: both;
        -webkit-text-size-adjust: 100%;
        font-size: 3.5vw;
        line-height: 1.7;
        font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
        font-weight: normal;
        color: #000000;
        text-align: left;
        -webkit-font-smoothing: antialiased;
        overflow: hidden;
    }

    .menudetail_contents > .section {
        margin-bottom: 50px;
    }

    .menudetail_contents > .section .heading {
        font-size: 20px;
        line-height: 1.4;
        font-weight: bold;
        margin-bottom: 1em;
        letter-spacing: .1em;
        text-align: center;
        background: #d57777;
        color: #fff;
        padding: 0.25em 0;
    }

    .menudetail_contents p.text {
        margin-bottom: 1em;
        line-height: 1.8;
    }

    .auto {
        width: calc(100% - 40px);
        margin: auto;
        position: relative;
        padding: 0;
    }

    .box .text {
        width: 100%;
        line-height: 1.8;
        margin-bottom: 20px;
    }
.box-flex{
    flex-direction:column;
    gap:20px;
    display: flex;
}
    .risk {
        width: 100%;
        margin: 20px auto 0;
        background: #f8f8f8;
        padding: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .contsMenu {
        width: 100%;
        margin: 0 auto 40px;
    }

    .contsMenu ul {
        display: flex;
        width: 100%;
        flex-flow: wrap;
    }

    .contsMenu li {
        text-align: left;
        height: 4.5em;
        width: 50%;
        padding: 0 2.5em 0 1em;
        border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
        position: relative;
        font-size: 3.5vw;
        line-height: 1.5;
        display: flex;
        align-items: center;
    }

    .contsMenu a:nth-child(2n) {
        border-right: 0;
    }

    .contsMenu a:nth-child(even) {
        border-left: none;
    }

    .contsMenu a:after {
        content: '';
        position: absolute;
        background-image: url(../images/common/under_arrow.png);
        background-repeat: no-repeat;
        right: 3vw;
        top: 50%;
        margin-top: -1vw;
        width: 3vw;
        height: 3vw;
        background-size: 100%;
        filter: saturate(0%) brightness(0);
    }

    .title_box {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 9;
        margin: 0 0 80px;
        padding-top: 50px;
    }

    .title_box::after {
        content: "";
        display: block;
        width: 1px;
        height: 40px;
        background-color: #000;
        position: absolute;
        bottom: -60px;
        left: 50%;
    }

    .title_box .large_title {
        font-size: 7vw;
        font-weight: bold;
        line-height: 1.4;
        letter-spacing: .1em;
        color: var(--main-color);
    }

    .title_box .small_title {
        font-size: 13px;
        font-weight: bold;
        line-height: 1.3;
        letter-spacing: .1em;
    }

    .conts_inner {
        width: 100%;
        margin: auto;
        margin-bottom: 40px;
    }

    .conts_inner .box {
        width: 100%;
        margin-bottom: 60px;
        position: relative;
    }

    .text_group {
        margin-bottom: 20px
    }

    .text_group_reed {
        font-size: 18px;
        line-height: 2;
        font-weight: bold;
        margin-bottom: 12px;
        letter-spacing: .1em;
    }

    .text_group_ttl {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 10px;
        letter-spacing: .1em;
        text-align: center;
        color: var(--main-color);
        padding: 0.25em 0;
        line-height: 1.4;
    }

    .headingB {
        background: #f4f3ea;
        text-align: center;
        font-size: 5.2vw;
        padding: 0.7em;
        font-weight: 500;
        letter-spacing: 0.1em;
        margin: 1.5em 0 1em;
        line-height: 1.4;
    }

    .conts_inner .lead_text {
        text-align: center;
        font-size: 5vw;
        font-weight: 600;
        margin-bottom: 1em;
        line-height: 1.6;
        color: var(--sub-color);
    }

    /*intro*/
    .age_case {
        margin: 40px auto;
    }

    .age_case .tabs {
        display: flex;
        width: 100%;
        cursor: pointer;
        /* border-bottom: 2px solid #ddd; */
        gap: 0 10px;
    }

    .age_case .tab {
        flex: 1;
        /* 各タブが均等に横幅を取る */
        padding: 10px 20px;
        background-color: #f4f3ea;
        /* border-left: 1px solid #fff; */
        /* border-right: 1px solid #fff; */
        border-bottom: none;
        transition: background-color 0.3s ease;
        text-align: center;
        position: relative;
        border-radius: 5px;
    }

    .age_case .tab:hover {
        background-color: #e0e0e0;
    }

    .age_case .tab.active {
        background-color: #e783a7;
        font-weight: bold;
        border-color: #ccc;
        color: #fff;
    }

    .age_case .tab.active::after {
        /* 吹き出しの飾り */
        content: '';
        position: absolute;
        left: 50%;
        bottom: -9px;
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #e883a7;
        /* 吹き出しの三角形部分 */
    }

    .age_case .tab-content {
        display: none;
        padding: 20px;
        margin-top: 20px;
        border-radius: 5px;
    }

    .age_case .tab-content.active {
        display: block;
    }

    .age_case p {
        margin-top: 20px;
        line-height: 1.8;
    }

    .slick-dotted.slick-slider {
        padding: 4vw 0 6vw;
    }

    .slick-dots {
        bottom: 2vw;
    }

    /*Speciality*/
    .oneday_add_custom {
        width: 100%;
        margin: auto;
    }

    .oneday_custom_table {
        width: 100%;
        margin: 0 auto;
    }

    .oneday_custom_table tr th, .oneday_custom_table tr td {
        border: 10px solid #fff;
        padding: 2vw;
        font-size: 3.6vw;
    }

    .oneday_custom_table .custom_left {
        background: #f3f3eb;
        text-align: center;
        width: 14%;
        vertical-align: middle;
        border-left: none;
    }

    .oneday_custom_table .custom_blue {
        background: #eaf2f4;
        font-weight: bold;
        width: 43%;
        vertical-align: middle;
    }

    .oneday_custom_table .custom_gray {
        background: #efefef;
        width: 43%;
        border-right: none;
        vertical-align: middle;
    }

    .oneday_custom_table thead th {
        text-align: center;
        padding: 5px;
        font-weight: bold;
    }

    .specialty_merit li {
        margin-bottom: 40px;
    }

    .agoshita_case_ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .agoshita_case_ul li p {
        font-size: 3vw;
    }

    .specialty_merit_ttl {
        font-weight: 500;
        text-align: center;
        margin: 0 auto 0.25em;
        font-size: 4.4vw;
    }
.video_box{
    margin:40px auto 0;
}
    
.video {
        width: 100%;
        margin: 0;
    }
    
    .oneday_first_conts {
        background: #fff6f6;
        padding: 20px 0;
    }

    .oneday_first_conts .banner_wrap {
        margin: 0 auto;
    }

    .oneday_firstplan {
        background: #fff;
        border-radius: 10px;
    }

    .oneday_first_price {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
        display: flex;
        padding: 20px 20px;
        margin: 30px auto 0;
        line-height: 1.4;
        flex-flow: wrap;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
    }

    .oneday_first_main {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        /* margin:0 0 20px; */
        text-align: center;
        gap: 10px;
    }

    .oneday_first_area {
        display: flex;
        /* gap: 20px; */
        flex-flow: wrap;
    }

    .oneday_first_op {
        width: 100%;
        border: 4px solid #eee;
        /* border-radius:10px; */
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .oneday_first_opinner {
        /* width: 48%; */
        display: flex;
        align-items: center;
        flex-direction: column;
        flex: 1;
    }

    .oneday_first_op .price_select {
        flex: 1;
        margin: 0;
    }

    .oneday_first_conts .oneday_first_ttl {
        text-align: center;
        font-size: 7vw;
        display: flex;
        flex-direction: column;
    }

    .oneday_first_ttl span {
        font-size: 4.2vw;
        font-weight: 600;
    }

    .oneday_first_opttl {
        text-align: center;
        font-size: 4vw;
        display: flex;
        flex-flow: wrap;
        flex-direction: column;
    }

    .oneday_first_opttl span {
        font-size: 3.6vw;
    }

    .oneday_first_price .price {
        font-size: 7vw;
        color: #ca5a7c;
        font-weight: 500;
        /* margin-bottom: 0.25em; */
        display: flex;
        flex-flow: wrap;
        align-items: anchor-center;
        gap: 0.25em;
    }

    .oneday_first_price .price span {
        font-size: 4vw;
        font-weight: 700;
    }

    .price_select {
        padding: 10px;
        background: #f9ecec;
        border-radius: 10px;
        margin-bottom: 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* margin: 20px auto 0; */
    }

    .price_select span {
        font-size: 3vw;
    }

    .price_select_list {
        display: flex;
        gap: 5px;
        flex-flow: wrap;
        justify-content: center;
    }

    .price_select_list li {
        background: #fff;
        padding: 0.1em 0.5em;
        border-radius: 50px;
        font-size: 3vw;
    }

    .price_select_heading {
        font-size: 3.4vw;
        margin-bottom: 0.5em;
        line-height: 1.4;
        text-align: center;
    }

    .youtube_area p {
        width: 90%;
        margin: 2vw auto;
    }

    .youtube_ul {
        display: table;
        flex-wrap: wrap;
        margin: 6vw auto;
        width: 90%;
    }

    .youtube_ul li {
        width: 100%;
        margin-bottom: 4%;
    }

    .youtube_ul li iframe {
        width: 100%;
    }

    .youtube_img_link p {
        width: 100%;
    }

    .youtube_wrap {
        width: 100%;
        margin: 0 auto;
    }

    .youtube_modal {
        display: block;
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding-top: 56.25%;
    }

    .youtube_modal iframe, .youtube_modal a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .youtube_wrap p {
        width: 100%;
        font-size: 3vw;
        margin-bottom: 20px;
    }

    .tiktok_slide {
        position: relative;
        left: 0;
        width: 100%;
        overflow: scroll;
        /*white-space: nowrap;*/
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8vw;
    }

    .tiktok_slide_ul {
        display: table;
        width: 270vw;
        height: 80vw;
        margin-left: 4vw;
        overflow: scroll;
        /*white-space: nowrap;*/
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
    }

    .tiktok_slide_ul li {
        width: 40vw;
        height: 80vw;
        margin-right: 5vw;
        float: left;
        position: relative;
    }

    .tiktok_slide_ul li p {
        margin-top: -3vw;
        width: 40vw;
    }

    /* スクロールバーの幅と高さを設定する */
    .tiktok_slide::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    /* スクロールバーの形を設定する */
    .tiktok_slide::-webkit-scrollbar-thumb {
        border-radius: 0.25rem;
    }

    /* スクロールバーの色を設定する */
    .tiktok_slide::-webkit-scrollbar-thumb {
        --bg-opacity: 1;
        background-color: black;
    }

    .reco {
        width: 100%;
        background-image: url(../images/oneday/pick_bg_sp.jpg);
        background-repeat: no-repeat;
        background-position: left bottom;
        /* background-attachment: fixed; */
        background-size: 100%;
        position: relative;
        margin-bottom: 40px;
        background-color: var(--main-color);
    }

    .reco .large_title {
        color: var(--main-color);
    }

    .reco .small_title {
    }

    .reco .title_box::after {
        content: "";
        display: block;
        width: 1px;
        height: 40px;
        /* background-color: #ffffff; */
        position: absolute;
        bottom: -60px;
        left: 50%;
    }

    .reco_list {
        padding: 5%;
        overflow: hidden;
        display: table;
        width: 100%;
        margin-top: 3vw;
    }

    .reco_list li {
        width: 100%;
        margin-right: 2%;
        margin-bottom: 2%;
        background: #fff;
        padding: 3% 3% 3% 12%;
        position: relative;
        float: left;
        font-weight: bold;
        font-size: 3.6vw;
    }

    .reco_list li:nth-child(3n) {
        margin-right: 0;
    }

    .reco_list li:before {
        content: '';
        position: absolute;
        background-image: url("../images/common/icon_check2.png");
        background-repeat: no-repeat;
        left: 10px;
        top: 50%;
        margin-top: -13px;
        width: 18px;
        height: 18px;
        background-size: 100%;
    }

    .price {
        padding-bottom: 10px;
    }

    .price_table {
        width: 100%;
        border: 1px solid #999;
        margin: 0 auto 40px;
        background-color: #fff;
    }

    .price_table caption {
        font-size: 22px;
        margin: 2em 0 1em;
    }

    .price_table .monitor {
        font-weight: bold;
        color: var(--sub-color);
    }

    .price_table thead th {
        text-align: center;
        padding: 0.5em;
        border-right: 1px solid #999;
        background: #333;
        color: #ddd;
        font-weight: bold;
    }

    .price_table thead th.price-plan {
        font-size: 18px;
    }

    .price_table thead th.price-plan span {
        display: block;
        font-size: 12px;
        line-height: 1.4
    }

    .price_table tbody tr {
        border-bottom: 1px solid #999;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .price_table tbody tr:last-of-type {
        border-bottom: none;
    }

    .price_table tbody {
        /* border: 1px solid #999; */
        display: flex;
        flex-flow: wrap;
        width: 100%;
    }

    .price_table tbody th {
        text-align: center;
        line-height: 1.4;
        width: 100%;
        background: #eee;
    }

    .price_table tbody td {
        text-align: center;
        font-size: 22px;
        vertical-align: middle;
    }

    .price_table tbody th, .price_table tbody td {
        padding: 0.5em;
        vertical-align: middle;
        line-height: 1.2;
    }

    .price_table tbody th span, .price_table tbody td span {
        font-size: 14px;
    }

    #area_conts .conts_inner .img {
        width: 80%;
        margin: 0 auto;
    }

    .fat .conts_inner .box {
        margin-bottom: 10px;
    }

    .lipocube_list {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .oneday_op_price {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
        display: flex;
        padding: 20px 20px 0;
        margin: 20px auto;
        line-height: 1.4;
        flex-flow: wrap;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .oneday_op_ttl {
        font-size: 7vw;
        display: flex;
        flex-flow: wrap;
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
        letter-spacing: 0.1em;
    }

    .oneday_op_ttl span {
        font-size: 22px;
    }

    .oneday_op_price .price {
        font-size: 7vw;
        color: #ca5a7c;
        font-weight: 500;
        /* margin-bottom: 0.25em; */
    }

    .oneday_op_price .price span {
        font-size: 4vw;
        font-weight: 700;
    }
    	.flow_slide {
		position: relative;
        left: 0;
        width: 100%;
        overflow: scroll;
        /*white-space: nowrap;*/
        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
	}
	.flow_slide_ul {
		padding-left: 4vw;
		display: flex;
		width: 360vw;
		/* height: 100vw; */
		overflow: scroll;
		/*white-space: nowrap;*/
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
		margin-bottom: 8vw;
	}
	.flow_slide_ul li {
		width: 55vw;
		margin-right: 3vw;
		float: left;
		position: relative;
		background: #f4f3ea;
		border-radius: 10px;
	}
	.flow_slide::-webkit-scrollbar {
	  width: 10px;
	  height: 10px;
	}
	/* スクロールバーの形を設定する */
	.flow_slide::-webkit-scrollbar-thumb {
	  border-radius: 0.25rem;
	}
	/* スクロールバーの色を設定する */
	.flow_slide::-webkit-scrollbar-thumb {
	  --bg-opacity: 1;
	  background-color: black;
	}
	.flow_number {
		padding: 4vw;
        font-size: 4.4vw;
		font-weight: bold;
	}
	.flow_number span {
		background: #333;
		padding: 7px 10px;
		border-radius: 50px;
		color: #fff;
		margin-right: 10px;
	}
	.flow_text {
		font-size: 3vw;
        padding: 2vw 3vw;
        width: 100%;
	}
    .details {
    background: #faeded;
    padding-bottom: 50px;
  }
  .details .details_inner {
    display: flex;
    gap: 40px;
    margin: 0 auto;
    flex-direction: column;
    padding-bottom: 1;
  }
  .details .details_inner .box {
    background: #fff;
    padding: 20px 20px 0;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .details .details_inner .box .img {
    margin-bottom: 10px;
  }
  .details .details_inner .box .text_group {
    width: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }
  .details .details_inner .box .text_group_ttl {
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.5em;
    color: #d57777;
    letter-spacing: normal;
    font-family: "Hiragino Mincho ProN", YuMincho, serif;
  }
  .detail_box {
    width: 100%;
    clear: both;
    -webkit-box-sizing: border-box;
    moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 30px 5% 32px;
    margin: 0 auto 10vw;
  }
        .detail_box .detail_ttl {
        font-size: 4vw;
        font-weight: bold;
        /* margin-bottom: 30px; */
        text-align: center;
        padding-bottom: 20px;
    }
  .detail_box table tr:nth-of-type(2n) {
    background-color: #f8f8f8;
  }
  .detail_box table th {
    width: 30%;
    font-size: 13px;
    line-height: 1.6;
    font-weight: bold;
    padding: 12px 5% 10px 5%;
  }
  .detail_box table td {
    font-size: 14px;
    line-height: 1.6;
    padding: 12px 5% 10px 0;
  }
    .link_youtube_btn {
		background: #333;
        padding: 4vw 8vw;
        width: auto;
        font-size: 4vw;
        position: relative;
        margin: 7vw auto 10vw;
        display: table;
		color: #fff;
    }
	.link_youtube_btn span {
		position: absolute;
        right: 2vw;
        top: 5.5vw;
	}
}
