/*共通*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    font-size: 100%;
    width: 100%;
}
body{
    color: #000000;
    font-family: "ヒラギノ明朝 Pro", serif;
    margin: 0;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
li{
    list-style: none;
}
a{
    color: #000000;
    text-decoration: none;
}
a:hover{
    opacity: 0.7;
}

.inner2{
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
@media screen and (max-width: 769px) {
    .inner2{
        max-width: 100%;
        padding: 0;
    }
}


.inner3 {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

.inner{
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.section-title{
    font-size: 40px;
    color: #fff;
    text-align: center;
    font-weight: normal;
}

.section-text{
    font-size: 45px;
    font-weight: normal;
    color: #cd1262;
    text-align: center;
}

.contact-img{
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.btn{
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.btn a{
    display: inline-block;
    width: 50%;
}

.floating-btn{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 30;
    padding: 15px 0;
}

.btn-flex{
    display: flex;
    justify-content: space-between;
    gap: 7px;
}

.btn-flex a{
    width: 50%;
    display: flex;
    justify-content: center;
}

.btn-flex a img{
    width: 80%;
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block;
  }
  
  .sp {
    display: none;
  }
  
  /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
  @media only screen and (max-width: 769px) {
    .pc {
      display: none !important;
    }
    .sp {
      display: block;
    }
  }

  .page-title {
    text-indent: -9999px;  /* 文字を画面外に飛ばす */
    white-space: nowrap;
  }

/*新規ヘッダー*/


header{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    z-index: 100;
}

.header_section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_right{
    display: flex;
    align-items: center;
}

.tel img {
    margin-right: 20px;
}
@media screen and (max-width: 769px) {
    .button{
        margin-left: 0;
    }
    .tel img {
        height: 13vw;
        margin-right: 0;
    }
    .button img{
        height: 13vw;
    }
    .tel{
        margin-left: 20px;
    }
    .header_left img{
        height: 9vw;
        vertical-align: middle;
    }
    .header_left{
        margin-left: 10px;
    }
}



/*ヘッダー*/
/*メインビジュアル*/
.mainvisual{
    background-image: url("../images/mv-back-color.png");
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 40px;
}

.logo{
    height: 120px;
}

.mv{
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
}

.mv-img{
    margin-left: -100px;
    width: 60%;
    overflow: hidden;
}

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

.mv-text{
    width: 65%;
    margin-left: -100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mv-text-1{
    width: 100%;
    display: flex;
    justify-content: center;
}

.mv-text-2{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
}

.mv-text-3{
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 75%;
    left: 0;
    width: 100%;
    gap: 20px;
    justify-content: center;
}

.mv-text-3 img{
    display: inline-block;
    width: 23%;
}

@media screen and (max-width: 769px) {
    .mv-text-2{
        padding-top:3px;
        padding-bottom: 20px;
    }
}


.mv_box{
    position: relative;
    flex: 0 0 calc((100% - 60px) / 4);   /* = (100% - 20px*3) / 4 */
    max-width: calc((100% - 60px) / 4);
}
.mv_box img{
    width: 100%;
    display: block;     /* ←これ重要 */
}
.mv_box p{
    position: absolute;
    inset: 0;                         /* = top/right/bottom/left:0 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;          /* 常にど真ん中 */
    padding: 0 12%;                   /* 円縁に当たらないよう余白 */
    text-align: center;
    color: #595757;
    line-height: 1.8;
    font-size: clamp(13px, 2vw, 26px);   /* さらに小さめまで許容 */
    text-wrap: balance;    
}
/* SP は2カラムに（gap 20pxが1つ入るので 100%-20 を半分） */
@media (max-width: 768px){
    .mv_box{
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
        margin: 0 auto;
    }
    .mv_box p{
        font-size: clamp(12px, 4vw, 36px);   /* さらに小さめまで許容 */
        line-height: 1.6;
    }
}


.access_section{
    background-color: #fff;
    padding: 15px;
}
.sub_access{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.sub_access_title{
    background-color: #C51C6F;
    border-radius: 8px;
    color: #fff;
    padding: 4px 30px;
    flex-shrink: 0;      /* ← 縮ませない */
    white-space: nowrap; /* ← 折り返さない */
}
.sub_access_text{
    color: #666;
}
.underline{
    background: linear-gradient(transparent 40%, rgba(255, 255, 0, 0.9) 100%);
}

@media (max-width: 768px){
    .sub_access_title{
        padding: 4px 20px;
        font-size: 14px;
    }
    .access_section{
        padding: 15px 0;
    }
    .sub_access_text{
        font-size: 14px;
        font-weight: 600;
    }
}


/* キャンペーンセクション */
.campagne_section{
    /*background: linear-gradient(to bottom, #f1a4b5, #d36b84);*/
    background-image: url(.././images/pink_back.png);
    background-size: cover;
    text-align: center;
    z-index: 10;
}
.campagne_title{
    color: #fff;
    font-size: 40px;
    padding-top: 40px;
}

.cam_price {
    width: 90%;
    padding-top: 5px;
}
.cam_btn{
    width: 45%;
    padding:40px 0 40px;
}
.top_case{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px auto;
}
.top_case img{
    max-width: 350px;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.top_case_box{
    position: relative;
}
.top_case_tag{
    position: absolute;
    top:10px;
    left:10px;
    background-color: rgba(197, 28, 111, 0.6);
    padding: 4px 0;
    width: 30%;
    color: #fff;
}


@media screen and (max-width: 769px) {
    .cam_per {
        padding-top:30px;
        width: 90%;
       }
    .cam_price {
        width: 100%;
        padding-top: 20px;
    }
    .cam_btn{
        width: 100%;
        padding-top: 20px;
    }
    .campagne_title{
        color: #fff;
        font-size: 30px;
        padding-top: 30px;
    }
    .top_case{
        gap:6px;
    }
    .top_case img{
        padding: 3px;
        box-shadow: none;
    }
    .top_case_tag{
        top:3px;
        left:3px;
        font-size: 10px;
        padding: 1px 0;
    }
}

.what_section{
    background-image: url(.././images/what_section.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* ←ここがポイント */
    padding-bottom: 80px;
}
.what_back{
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: bottom;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.what_top_text{
    padding-top: 80px;
}
.what_top_text img {
    width: 100%;
    max-width: 700px;
}
.what_txt_samll{
    font-size: 25px;
}
.what_txt_big{
    font-size: 35px;
    padding-top: 10px;
}
.what_txt{
    padding-left: 55px;
    padding-top: 40px;
    color: #595757;
}
.what_badge{
   padding-top: 50px;
   padding-left: 20px;
}
.what_bottom{
    display: flex;
    justify-content: space-between;
}
.what_badge img{
    width: 200px;
    padding-right: 15px;
    padding-top: -100px;
}
.bottom_txt{
    color: #fff;
    font-size: 25px;
    margin-top: 60px;
    margin-right: 30px;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    width: 70%;
    background-color: rgba(102, 102, 102, 0.2);
}
.bottom_txt p{
    padding-bottom: 30px;

}
.prof_section{
    margin-top: -160px;
    text-align: right;
}
.prof_section img {
    width: 280px;
}
.prof_section p{
    color: #fff;
    font-size: 20px;
    padding-top: 12px;
}
.large1{
    font-size: 30px;
}
.chairman_btn{
    display: inline-block;
    max-width: 280px;
    width: 100%;
    margin: 0;
    padding: 16px 26px;
    font-size: 1.6rem;
    border-radius: 4px;
    background-color: #5FB7AD;
    box-shadow: inset 0 -3px #5ba9a1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 40px;
    position: relative;
}
.chairman_btn::after{
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10%;
    width: 22px;
    height: 22px;
    background: url(../images/ico_arrow01_white.svg) no-repeat center / contain;
}


.chairman_section{
    text-align: center;
}

@media screen and (max-width: 769px){
    .chairman_btn{
        padding: 10px 26px 10px 0px;
        font-size: 18px;
        margin-top: 20px;
    }
}





/* お問い合わせ細バナー */
.contact_banner{
    background-image: url(.././images/pink_back_low.png);
}
.contact_contents{
    text-align: center;
    border: 3px solid #fff;
    width: 90%;
    position: relative;
    margin: auto;
}
.contact_btns{
    display: flex;
    justify-content: center;
    gap:30px;
    padding-bottom: 20px;
}
.contact_banner{
    padding-top: 50px;
    padding-bottom: 50px;
}
.contact_btns p{
    border: 3px solid #fff;
    border-radius: 50%;
    align-items: center;
}
.contact_btn_img{
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}
.contact_btn_img img {
    width: 100%;       /* ← 親要素に対して可変にする！ */
    height: auto;      /* ← 比率維持のまま伸縮する */
    max-height: 120px; /* ← 高さの上限を指定（任意） */
    object-fit: contain; /* coverだと切れる場合あり */
}
.free_contact{
    max-width: 120px;
    width: 100%;
    max-height: 120px;
    height: 100%;
}
.contact_title{
    color: #fff;
    font-size: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.contact_logo{
    position: absolute;
    top: -20%;
    left: -8%;
    width: 250px;
}


/* さらなるサービス */
.more_service{
    background-image: url(.././images/blue_back.png);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 80px 0;
}
.white_box{
    width: 90%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.service_tag{
    position: absolute;
    top: 30px;
    left: 8%;
    width: 250px;
}
.service_tag2{
    margin-top: -50px;
    width: 200px;
}
.service_title{
    font-size: 40px;
    margin: 0 auto;
    padding-top: 20px;
    font-weight: 500;
}
.service_badge{
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;

}
.service_badge img{
    max-width: 200px;
    width: 100%;
}
.service_box{
    background: rgba(255, 255, 255, 0.4); /* 白＋80%不透明 */
    border: 2px solid #ffffff;            /* 完全な白（透過なし） */
    margin-bottom: 80px;
}
.badge_sec{
    position: relative;
}
.badge_ab{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 12%;
    text-align: center;
    color: #595757;
    line-height: 1.8;
    font-size: clamp(13px, 2vw, 26px);
    text-wrap: balance;
}
.badge_sub{
    font-size: 18px;
    line-height: 1.5;
}
.pink_text{
    font-size: 44px; /* サイズは調整 */
    line-height: 1.3;   /* ← 行間を詰める */
    font-weight: bold;
    font-family: "Shippori Mincho", serif; /* 和文フォントに合わせる */
    background: linear-gradient(to bottom, #b84c6e, #d67fa0);
    -webkit-background-clip: text; /* Safari / Chrome 対応 */
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}
.badge_sub2{
    font-size: 14px;
    line-height: 1.2;
}
.pink_text2{
    font-size: 34px; /* サイズは調整 */
    line-height: 1.3;   /* ← 行間を詰める */
    font-weight: bold;
    font-family: "Shippori Mincho", serif; /* 和文フォントに合わせる */
    background: linear-gradient(to bottom, #b84c6e, #d67fa0);
    -webkit-background-clip: text; /* Safari / Chrome 対応 */
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}
.badge_sub3{
    font-size: 14px;
    line-height: 1.4;
}
.pink_text3{
    font-size: 22px; /* サイズは調整 */
    line-height: 1.4;   /* ← 行間を詰める */
    font-weight: bold;
    font-family: "Shippori Mincho", serif; /* 和文フォントに合わせる */
    background: linear-gradient(to bottom, #b84c6e, #d67fa0);
    -webkit-background-clip: text; /* Safari / Chrome 対応 */
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
}

@media screen and (max-width: 769px){
    .service_badge{
        flex-wrap: wrap;
    }
    .service_badge img{
        flex: 1 1 calc(50% - 20px);
        max-width: 150px;
    }
}



/*比較テーブルセクション*/
.comparison{
    background-color: #f9eff2;
    text-align: center;
    padding-bottom: 150px;
}
.comp_lead{
    font-size: 23px;
    padding: 70px 0 50px;
}
.comparison img {
    width: 500px;
}

/*症例セクション*/
.title-area{
    margin-top: -70px;
    padding-bottom: 100px;
}
.section-title{
    font-family: "Zapfino", "Great Vibes", "Dancing Script", "cursive";
    color: #666;
    font-size: 50px;
}
.section-title2{
    color: #666;
    font-size: 50px;
    text-align: center;
    padding-top: 30px;
}
.section_sub_title{
    text-align: center;
    font-size: 22px;
    color: #666;
    margin-top: -50px;
}
.section_sub_title2{
    text-align: center;
    font-size: 22px;
    color: #666;
}
.case-img-list img{
    width: 50%;
}

.case_insta{
    text-align: center;
    padding: 30px 0 80px;
}
.case_banner{
    width: 600px;
}


#reasons .title-wrap{
    position: relative;
}

.emiha_conect{
    text-align: center;
    padding-bottom: 50px;
}
.emiha_conect h2{
    /*color: #d36b84;*/
    background: linear-gradient(to bottom, #f1a4b5, #d36b84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4vw;
}
.emiha_conect p{
    color: #666666;
    font-size: 2vw;
}

.hotei_img{
    width: 30%;
    position: absolute;
    top: -150%; /* 固定距離指定 */
    right: 7%;
}
.reason_title_wrap{
    position: relative;
}
.reason_title{
    position: absolute;
    color: #fff;
    font-size: 40px;
    font-weight: normal;
    letter-spacing:3px;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.emiha_conect{
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 769px){
    .reason_title{
        font-size: 27px;
    }
    .emiha_conect h2{
        color: #d36b84;
        font-size: 40px;
        white-space: nowrap;
    }
    .emiha_conect p{
        color: #666666;
        font-size: 20px;
    }
    .emiha_conect{
        top: 10%;
    }
    .reason_title{
        position: absolute;
        color: #fff;
        font-size: 27px;
        font-weight: normal;
        letter-spacing:2px;
    }
}


.reason_box{
    width: 85%;
}

.reason_box_right {
    text-align: right;
}


.reason_header{
    background: linear-gradient(90deg, #b94e7a, #e6a8b8, #b94e7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding-bottom: 40px;
    padding-top: 20px;
    font-size: 30px;
    transform: skew(-5deg); /* ←ここが斜めの指定 */
}
.reason_info{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.reason_info img{
    width: 45%;
}
.reason_info p{
    color: #333;
    line-height: 2;
}
.reason_small{
    font-size: 12px;
    color: #666;
}
.nintei_img{
    height: 300px;
    
}

.reason_box_left{
    position: relative;
    width: 80%;
    height: 100%;
    margin-top: 100px;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
    border: 1.9px solid transparent;
    border-image: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    border-image-slice: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.reason_box_right{
    position: relative;
    margin-left: auto;
    width: 80%;
    height: 100%;
    margin-top: 100px;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
    border: 1.9px solid transparent;
    border-image: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
    border-image-slice: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.box_number_left {
    position: absolute;
    bottom: -60px;
    right: 50px;
    font-size: 100px;
    font-family: 'Pinyon Script', cursive;
    color: #b94e7a;
}
.reason_box_right p{
    text-align: left;
}
.box_number_right {
    position: absolute;
    bottom: -60px;
    left: 50px;
    font-size: 100px;
    font-family: 'Pinyon Script', cursive;
    color: #b94e7a;
}



/*メイン*/
/*選ばれる理由*/
#reasons{
    padding-bottom: 100px;
}
.reason_title_wrap{
    margin-bottom: -160px;
}

#reasons .section-text{
    margin-bottom: 70px;
    padding-top: 60px;
    line-height: 1.7;
}
@media screen and (max-width: 769px) {
    #reasons .section-text{
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 769px){
    .reason_box_left{
        width: 100%;
    }
    .reason_box_right{
        width: 100%;
    }
    .reason_title_wrap{
        margin-bottom: -150px;
    }
    .reason_info{
        display: block;
        padding-bottom: 30px;
    }
    .reason_info img{
        width: 100%;
        padding-bottom: 40px;
    }
    .box_number_left{
        font-size: 80px;
    }
    .box_number_right{
        font-size: 80px;
    }
    .nintei_img{
        height: 100%;
    }
    .reason_header{
        font-size: 25px;
    }
}

#reasons .section-text span{
    padding-bottom: 10px;
    border-bottom: #000000 1px solid;
}

.reason-img{
    background-image: url(".././images/reason-img.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
}

.reason-img p{
    font-size: 22px;
    text-align: center;
    line-height: 70px;
    padding: 100px 20px;
}

.reason-img p span{
    color: #cd1262;
}

.others{
    margin-bottom: 70px;
}

.reasons-point{
    margin-bottom: 100px;
    margin-top: 60px;
}
.point{
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.point-img{
    width: 45%;
    position: relative;
}

.point-img img{
    width: 100%;
    position: relative;
    z-index: 10;
}

.i-left{
    margin-left: 10px;
}

.i-left::before{
    content: "";
    position: absolute;
    left: -10px;
    bottom: -10px;
    background-image: url("../images/back-img-left.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.i-right{
    margin-right: 10px;
    align-self: flex-end;
}

.i-right::before{
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    background-image: url("../images/back-i-right.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.point-text{
    background-color: #fff;
    width: 80%;
    border: 1px solid #aaaaaa;
    padding: 40px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -100px;
    gap: 40px;
}

.t-right{
    border-radius: 0 0 50px 0;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    align-self: flex-end;
}

.t-left{
    border-radius: 0 0 50px;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.1);
}

.point-title{
    font-family: 'Aboreto', cursive;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1rem;
    font-size: 40px;
    color: #C45080;
}

.large{
    font-size: 26px;
    color: #C45080;
    letter-spacing: 0.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.small{
    font-size: 22px;
}

/*アートメイクのメリットは？*/
.merit-items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 200px;
}

.merit-item{
    width: 47%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.merit-text{
    background-color: #fddddb;
    height: 200px;
    width: 100%;
}

.merit-text p{ 
    padding: 0 5%;
    text-align: center;
    font-size: 26px;
    color: #cd1262;
    margin-top: 0;
    position: relative;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.merit-text p::before{
    position: absolute;
    border: 3px double #cd1262;
    color: #cd1262;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.merit-text p::before{
    width: 10%;
    aspect-ratio: 1 / 1;
    z-index: 5;
    left: 5%;
}

.merit-item:nth-child(1) .merit-text p::before { content: "01"; }
.merit-item:nth-child(2) .merit-text p::before { content: "02"; }
.merit-item:nth-child(3) .merit-text p::before { content: "03"; }
.merit-item:nth-child(4) .merit-text p::before { content: "04"; }

.merit-img{
    margin-top: -100px;
    width: 90%;
} 

.merit-img img{
    width: 100%;
    aspect-ratio: 221 / 117;
    object-fit: cover;
}

.problem{
    margin-top: 100px;
}
@media screen and (max-width: 768px) {
    .problem{
        margin-top: 70px;
    }
}

.problem-title{
    font-size: 50px;
    font-weight: normal;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.SP-problem-title{
    display: none;
}

.problem-title span{
    font-size: 40px;
}

.problem-title::before{
    content: "・・・・・・";
    color: #000000;
    position: absolute;
    top: -50px;
}

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

.problem-list{
    position: relative;
    background-color: rgba(49, 49, 49, 0.5);
    margin-top: -60%;
    margin-bottom: 20%;
    padding: 60px 20px;
    z-index: 5;
}

.problem-list ul{
    max-width: 700px;
    margin: 0 auto;
}

.problem-list ul li{
    font-size: 26px;
    color: #fff;
    margin-bottom: 40px;
    margin-left: 80px;
    position: relative;
}

.problem-list ul li span{
    color: #C9E0F9;
}

.problem-list ul li::before{
    content: "";
    position: absolute;
    background-image: url("../images/check.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    top: 8px;
    left: -50px;
}

#merit .btn{
    margin-bottom: 40px;
}

.staff{
    background-image: url("../images/staff-back.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 700px;
}

.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.staff-img{
    width: 40%;
}

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

.staff-text{
    width: 60%;
    padding: 0 60px;
    box-sizing: border-box;
}
.staff-text p{
    font-size: 26px;
    margin-bottom: 40px;
    text-align: center;
}

.staff-text p span{
    background-color: #fafafa;
    padding: 5px;
}

/*症例*/
#case{
    margin-bottom: 150px;
}

#case .title-wrap{
    margin-bottom: 100px;
}
.case-img-list{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.before-after{
    width: 30%;
}

.before-after img{
    width: 100%;
}


.lip_case_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列にする */
    gap: 30px;
    margin-bottom: 70px;
    max-width: 1000px; /* 中央寄せしたい場合は調整 */
    margin-left: auto;
    margin-right: auto;
  }
  
.case_img{
    display: flex;
    gap: 12px;
}
.case_img img{
    width: 47%;
    max-width: 300px;
    flex: 1;            /* 2枚を均等に配置 */
    object-fit: cover;
    display: block;
    height: auto;       /* 縦横比を維持 */
    object-fit: cover;  /* サイズ差があっても収まりよく */
}
.lip_box {
    background: #fff;
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(135deg, #d4af37, #c19a3f, #b8860b);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
.case_number{
    background: linear-gradient(to left, #d9b86c 0%, #b8924a 100%);
    color: #fff;
    display: inline-block;
    font-size: 20px;
    padding: 4px 40px;
    margin-top: 15px;
}
.case_contents{
    padding: 20px;
    padding-bottom: 40px;
}
.time_head{
    color: #68b3ad;
    display: inline-block;
    border: 1px solid #68b3ad;
    width: 30%;
    margin-right: 20px;
    text-align: center;
}
.case_time{
    padding-top: 20px;
}
.case_cost{
    padding-top: 20px;
    display: flex;
    align-items:flex-start;
}
.cost_head{
    color: #68b3ad;
    display: inline-block;
    border: 1px solid #68b3ad;
    margin-right: 20px;
    width: 30%;
    text-align: center;
}




@media (max-width: 640px) {
    .case_time{
        font-size: 14px;
    }
    .case_cost{
        font-size: 14px;
    }
    .lip_case_box{
        display: block;
        margin: 0 auto;
    }
    .lip_box{
        margin-bottom: 50px;
    }
    .time_head{
        margin-right: 10px;
    }
    .cost_head{
        margin-right: 10px;
    }
  }


/*料金表*/

#price{
    background-color: #f9eff2;
    padding-bottom: 100px;
}
.title-area2{
    padding-bottom: 60px;
    text-align: center;
}
.title-area3{
    padding-bottom: 60px;
    text-align: center;
    padding-top: 100px;
}
.title-area4{
    padding-bottom: 60px;
    text-align: center;
    padding-top: 60px;
}
.price_box{
    background-color: #fff;
    padding-bottom: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.payment{
    background-color: #fff;
}
.how_to_pay{
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.how_to_pay h3{
    font-size: 35px;
    color: #cd1262;
    font-weight: normal;
}
.how_to_pay p{
    font-size: 25px;
    margin-top: 30px;
}




.text-wrap{
    display: flex;
    justify-content: center;
}

#price .section-text{
    position: relative;
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 70px;

}

#price .section-text span{
    font-size: 30px;
}

#price .section-text::before{
    content: "";
    position: absolute;
    background-image: url("../images/price-icon1.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 100px;
    top: 35px;
    left: -60px;
}

#price .section-text::after{
    content: "";
    position: absolute;
    background-image: url("../images/price-icon2.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 100px;
    top: 30px;
    right: -55px;
}

.price-list{
    /*margin-bottom: 150px;*/
    margin-top: 30px;
}

.price-list li{
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: #000000 1px dashed;
    margin-bottom: 40px;
}

.price-list li p{
    font-size: 26px;
    margin-bottom: 10px;
}

.payment{
    border: 1px solid #cd1262;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 150px;
    padding: 0 20px;
}

.payment h3{
    font-size: 40px;
    color: #cd1262;
    font-weight: normal;
    text-align: center;
    position: relative;
    z-index: 5;
    background-color: #fff;
    margin-top: -40px;
    display: inline-block;
    padding: 0 10%;
    margin-bottom: 100px;
}

.payment p{
    font-size: 30px;
    margin-bottom: 70px;
}

.payment-img{
    display: flex;
    gap: 20px;
    margin-bottom: 100px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 30px;
}

.payment-img img:nth-child(1){
    width: 100%;
}

#flow{
    margin-bottom: 150px;
}

#flow .title-wrap{
    margin-bottom: 70px;
}

.flow-content{
    background-color: #feeeed;
    padding: 20px 0;
    position: relative;
}

.flow-number{
    position: absolute;
    top: -50px;
    left: 20px;
    font-size: 70px;
    color: #e88f8a;
    font-family: 'Aboreto', cursive;
}

.content-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
}

.flow-img{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

.column{
    flex-direction: column;
    gap: 10px;
}

.column img:nth-child(2){
    transform: translateX(30px);
}

.flow-text{
    width: 80%;
    padding: 0 5% 0 0;
}

.flow-text h3{
    font-size: 30px;
    color: #d5407c;
    font-weight: normal;
    margin-bottom: 20px;
}

.yellow{
    background-color: #fefbbb;
}

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

.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #e88f8a; /* 逆三角形の色 */
    margin: 20px auto 40px;
}

/*注意点*/
.warning_box {
background: #e48ba3;        /* ピンク色 */
border-radius: 6px;         /* 角丸 */
padding: 20px 24px;
color: #fff;                /* 文字色 */
font-size: 16px;
line-height: 1.6;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
max-width: 800px;
margin: 0 auto 80px;
}

.warning_box ul {
list-style: none;           /* デフォルトの点を消す */
margin: 0;
padding: 0;
}

.warning_box li {
position: relative;
padding-left: 28px;         /* アイコンぶん余白 */
margin-bottom: 12px;
border-bottom: 1px solid rgba(255,255,255,0.4); /* 白の仕切り線 */
line-height: 2.4;
font-size: 19px;
}
.warning_box li:last-child {
border-bottom: none;
margin-bottom: 0;
}

.warning_box li::before {
content: "◎";              /* マークを付ける */
position: absolute;
left: 0;
color: #fff;                /* 白い丸 */
font-weight: bold;
}

@media screen and (max-width: 768px) {
    .warning_box li {
        font-size: 15px;
    }
}



/*よくある質問*/
#qa{
    background-color: #f9eff2;
    padding-bottom: 80px;
}


#qa .section-title span{
    font-size: 30px;
    font-family: 'Aboreto', cursive;
}
.qa-item{
    margin-bottom: 40px;
}

.qa-question{
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 20px 0;
    position: relative;
    cursor: pointer;
}

.qa-question p{
    font-size: 26px;
    color: #cd1262;
    padding-left: 15%;
    padding-right: 15%;
    text-align: left;
}

.qa-question::before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    left: 7%;
    top: 35%;
    background-image: url("../images/qa-icon.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.qa-question::after{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: 7%;
    top: 25%;
    border-bottom: 2px solid #cd1262;
    border-right: 2px solid #cd1262;
    transform: rotate(45deg);
}

.qa-answer{
    padding: 40px 7%;
}

.qa-answer p{
    font-size: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 180%;
    letter-spacing: 0.2rem;
}


.how_to_pay{
    padding-top: 30px;
    padding-bottom: 60px;
    background-color: #fff;
    margin-top: 50px;
}

@media screen and (max-width: 900px){
    .point-text{
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    /*共通*/
    .section-text{
        font-size: 40px;
    }

    .contact-img {
        margin-bottom: 30px;
    }

    .btn{
        flex-direction: column;
    }

    .btn a{
        width: 100%;
    }

    .btn img{
        width: 100%;
    }

    .btn-flex a img{
        width: 100%;
    }

    /*メインビジュアル*/
    .logo{
        position: absolute;
        top: -2%;
        left: -8%;
    }

    .mv{
        padding-top: 120px;
        padding-bottom: 40px;
        flex-direction: column;
    }

    .mv-img{
        width: 100%;
        margin-left: -20px;
    }

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

    .mv-text{
        margin-left: 0;
        margin-top: -40%;
        width: 100%;
    }

    .mv-text-1{
        position: absolute;
        top: 8%;
        right: 6%;
        width: 15%;
    }
    .mv-text-3 {
        flex: 1 1 calc(50% - 20px);
        position:static;
        margin-top: -20px;
        padding-bottom: 30px;
        gap: 15px;
    }
    
    /*選ばれる理由*/
    .reason-img{
        background-image: url(".././images/SP-reason-img.png");
    }

    .others{
        display: flex;
        justify-content: center;
    }

    .point-img{
        width: 55%;
    }

    .point-text{
        width: 95%;
    }

    .t-right{
        border-radius: 0 0 100px 0;
    }

    .t-right .point-title{
        text-align: right;
    }

    .t-left{
        border-radius: 0 0 0 100px;
    }

    .t-left .point-title{
        text-align: left;
    }

    .merit-items{
        flex-direction: column;
        margin-bottom: 150px;
    }

    .merit-item{
        width: 100%;
    }

    .merit-item:last-child{
        margin-bottom: 0;
    }

    .merit-text{
        height: 280px;
    }

    .merit-text p{
        font-size: 40px;
        margin-top: 40px;
    }
    .problem-title{
        font-size:24px;
    }
    .problem-title span{
        font-size: 20px;
    }
    .problem-title::before{
        top: -30px;
    }

    .SP-problem-title{
        display: block;
        font-size: 60px;
        position: relative;
        font-weight: normal;
        text-align: center;
        line-height: 80px;
    }

    .SP-problem-title span{
        font-size: 35px;
    }

    .SP-problem-title::before {
        content: "・・・・・・";
        color: #000000;
        position: absolute;
        top: -37%;
    }

    .problem-img{
        margin-top: -15%;
    }

    .problem-list{
        width: 90%;
        margin: -99% auto 40%;
    }

    .problem-list ul li{
        margin-bottom: 20px;
        font-size: 32px;
    }

    .problem-list ul li::before{
        width: 40px;
        height: 40px;
    }

    .staff{
        height: 100%;
        padding: 70px 0;
    }
    .flex{
        flex-direction: column-reverse;
    }

    .staff-img{
        width: 100%;
    }

    .staff-text{
        width: 100%;
        padding: 0;
    }

    .staff-text p{
        font-size: 40px;
    }

    /*症例*/
    .case-img-list{
        flex-direction: column;
    }

    .before-after{
        width: 100%;
    }

    .before-after img{
        width: 100%;
    }

    /*料金表*/
    .price-list li p{
        font-size: 30px;
    }

    .payment-img {
        flex-direction: column;
    }

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

    /*施術の流れ*/
    .column img:nth-child(2) {
        transform: translateX(20px);
    }
}

@media screen and (max-width: 600px){
    /*共通*/
    .section-text{
        font-size: 35px;
    }

    /*選ばれる理由*/
    .reason-img p{
        line-height: 40px;
        font-size: 20px;
    }

    .large {
        font-size: 22px;
    }

    .small{
        font-size: 18px;
    }

    /*アートメイクのメリットとは？*/
    .merit-text p {
        font-size: 30px;
    }

    .SP-problem-title {
        font-size: 60px;
    }

    .SP-problem-title span {
        font-size: 40px;
    }

    .problem-list ul li {
        font-size: 24px;
    }

    .problem-list ul li::before {
        width: 28px;
        height: 28px;
    }

    /*料金表*/
    #price .section-text::before{
        width: 40px;
        height: 80px;
        top: 25px;
        left: -50px;
    }
    
    #price .section-text::after{
        width: 40px;
        height: 80px;
        top: 20px;
        right: -45px;
    }

    .staff-text p {
        font-size: 30px;
    }

    .price-list li p {
        font-size: 25px;
    }

    .payment p {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .qa-question p {
        font-size: 22px;
    }

    .qa-question::after {
        width: 20px;
        height: 20px;
        right: 7%;
        top: 25%;
    }
}

@media screen and (max-width: 530px){
    /*共通*/
    .title-wrap{
        margin-bottom: 40px;
        height: 100px;
    }

    .section-title{
        font-size: 27px;
    }

    .section-text{
        font-size:20px;
    }

    /*メインビジュアル*/
    .logo {
        position: absolute;
        top: -3%;
        left: -12%;
        width: 90%;
    }

    .mv{
        padding-bottom: 20px;
        padding-top: 50px;
    }

    .mv-text-1 {
        position: absolute;
        top: 5%;
        right: 0;
        width: 20%;
    }

    .mv-text-3 {
        margin-top: -20px;
        padding-bottom: 30px;
        gap: 10px;
    }

    /*選ばれる理由*/
    #reasons .section-text span {
        padding-bottom: 5px;
    }

    .reason-img{
        margin-bottom: 40px;
    }

    .reason-img p {
        font-size: 17px;
        padding: 50px 20px;
    }

    .others{
        margin-bottom: 40px;
    }

    .others img{
        width: 50%;
    }

    .reasons-point{
        margin-bottom: 70px;
    }

    .point-title {
        font-size: 28px;
    }

    .point-text{
        padding: 40px 20px;
    }

    .point-text {
        gap: 50px;
    }

    .large{
        font-size: 16px;
    }

    .small{
        font-size: 14px;
    }

    /*アートメイクのメリットは？*/
    .merit-items{
        margin-bottom: 100px;
    }
    .merit-text{
        height: 200px;
    }

    .merit-text p{
        margin-top: 0;
        font-size: 24px;
    }

    .SP-problem-title {
        font-size: 50px;
        line-height: 50px;
    }

    .SP-problem-title span {
        font-size: 30px;
    }

    .problem-list {
        padding: 30px 20px;
        margin-bottom: 45%;
    }

    .problem-list ul li{
        margin-left: 60px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .problem-list ul li::before {
        width: 20px;
        height: 20px;
        top: 6px;
    }

    .staff-text p {
        font-size: 22px;
    }

    /*症例*/
    #case{
        margin-bottom: 150px;
    }

    #case .title-wrap {
        margin-bottom: 40px;
    }

    /*料金表*/
    #price .section-text::before{
        width: 30px;
        height: 60px;
        top: 16px;
        left: -35px;
    }
    
    #price .section-text::after{
        width: 30px;
        height: 60px;
        top: 12px;
        right: -34px;
    }

    #price .section-text{
        margin-bottom: 40px;
    }

    #price .section-text span{
        font-size: 18px;
    }

    .price-list {
        /*margin-bottom: 120px;*/
    }

    .price-list li p {
        font-size: 18px;
    }
    #how_to_pay {
        padding-top: 70px;
    }

    .payment{
        margin-bottom: 70px;
    }

    .payment h3 {
        font-size: 30px;
        margin-top: -28px;
        margin-bottom: 40px;
    }

    .payment p {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .payment-img {
        flex-direction: column;
        margin-bottom: 40px;
    }

    /*施術の流れ*/
    #flow{
        margin-bottom: 70px;
    }

    #flow .title-wrap {
        margin-bottom: 40px;
    }

    .flow-text h3 {
        font-size: 24px;
    }

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

    .column img:nth-child(2) {
        transform: translateX(10px);
        width: 80%;
    }

    .content-box {
        margin: 20px 0;
    }



    /*よくあるご質問*/
    .qa-question p {
        font-size: 16px;
    }

    .qa-question::before{
        width: 20px;
        height: 20px;
    }

    .qa-question::after {
        width: 15px;
        height: 15px;
        right: 7%;
        top: 28%;
    }

    .qa-answer p {
        font-size: 16px;
    }


    .qa-answer {
        padding: 20px 7%;
    }
}

@media screen and (max-width: 450px){
    .merit-text p{
        font-size: 20px;
    }

    .merit-item:nth-child(4) .merit-text p{
        padding-left: 40px;
    }

    .SP-problem-title {
        font-size: 40px;
        line-height: 44px;
    }

    .SP-problem-title span {
        font-size: 25px;
    }

    /*よくあるご質問*/
    .qa-question p {
        font-size: 14px;
    }

    .qa-question::before{
        width: 18px;
        height: 18px;
    }

    .qa-question::after {
        width: 10px;
        height: 10px;
        top: 32%;
    }
    
    .qa-answer p {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px){
    .problem-list {
        margin-bottom: 40%;
    }

    .problem-list ul li{
        font-size: 16px;
    }

    .qa-question p {
        padding-left: 12%;
        padding-right: 12%;
    }

    .qa-question::before{
        left: 4%;
    }

    .qa-question::after{
        right: 4%;
    }
}


/* アクセスセクション追加 */

.access{
    padding-bottom: 80px;
    background-color: #f3f7f8;
}
.access_title{
    padding: 60px 0 100px;
    text-align: center;
}
.access_title h2{
    font-size: 40px;
    color: #666;
}
.blue_title{
    color: #3f70ad;
}
.access_contents{
    display: flex;
    justify-content: space-between;
}
.access_text{
    color: #666;
}
.access_text h2{
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "游明朝", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 32px;
    font-weight: normal;
    padding-bottom: 30px;
}
.access_text p{
    padding-bottom: 10px;
    font-size: 20px
}
.calendar{
    margin-top: 70px;
    padding-bottom: 80px;
    text-align: center;
}
.calendar2{
    text-align: center;
}
footer{
    background-color: #c45080;
}
.copyright{
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    color: white;
}
@media screen and (max-width: 768px) {
    .googlemaps{
        width: 100%;
    }
    .access_title h2{
        font-size: 30px;
    }
    .access_text p{
        font-size: 14px;
    }
    .calendar{
        margin: 30px 0;
        padding-bottom: 0;
    }
}



/*体験動画セクション*/


#video{
    margin-bottom: 80px;
}

.video_contents{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 200px;
}
.video_content{
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}
.video_name{
    font-size: 22px;
    margin-bottom: 25px;
    /*background-color: #c45080;*/
    background: linear-gradient(to right, #8c2a57, #c45080, #f7b0c8);
    display: inline-block;
    color: #fff;
    padding: 7px 25px;
}
.video-wrapper iframe{

}

@media screen and (max-width: 726px){
    .video_contents{
        display: block;
        width: 300px;
    }
}
    

.komekome{
    font-size: 14px;
    vertical-align: middle;
}
.float .large {
    display: inline-block;
}



.floating-btn{

    background: linear-gradient(to left, #eaa8ba, #d98aa0);
}
.btn-flex{
    padding: 0 6px;
    margin: 0 auto;
}
.ft_txt{
    text-align: center;
    padding-bottom: 15px;
    color: #fff;
}

.video_section{
    display: flex;
    gap: 40px;
    margin-top: 60px;
}
.section-title3{
    color: #666;
    font-size: 50px;
    text-align: center;
    padding-top: 30px;
}
@media screen and (min-width: 768px) {
    .btn-flex{
        max-width: 650px;
    }
}




@media screen and (max-width: 768px) {
    .price_box{
        padding: 30px 20px;
    }
    .title-area{
        padding-bottom: 40px;
        margin-top: -40px;
    }
    .section-title{
        padding-bottom: 20px;
    }
    .how_to_pay{
        padding: 30px 20px;
    }
    .how_to_pay p{
        font-size: 16px;
    }
    .payment-img{
        width: 100%;
    }
    .comp_lead{
        font-size: 16px;
    }
    .case-img-list{
        display: block;
    }
    .case-img-list img{
        width: 100%;
    }
    .what_section{
        background-image: url(.././images/what_section_sp.png);
        padding-bottom: 50px;
    }
    .what_badge{
        padding-left: 10px;
        width: 60%;
        padding-top: 30px;
    }
    .what_badge img{
        width: 50%;
        display: block;
        padding-bottom: 10px;
    }
    .bottom_txt{
        font-size: 18px;
    }
    .what_bottom{
        display: block;
    }
    .waht_middle{
        display: flex;
        gap: 20px;
    }
    .what_badge img{
        width: 100%;
        padding-right: 0;
    }
    .prof_section{
        padding-top: 33px;
        margin-top: 0;
        width: 80%;
    }
    .prof_section p{
        font-size: 14px;
    }
    .large1{
        font-size: 22px;
    }
    .what_top_text{
        padding-top: 30px;
    }
    .what_txt_samll{
        font-size:  17px;
        writing-mode: vertical-rl;
    }
    .what_txt{
        padding-top: 30px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        padding-left: 5px;
    }
    .what_txt_big{
        font-size: 32px;
        writing-mode: vertical-rl;
        padding-top: 0;
    }
    .bottom_txt{

        width: 100%;
    }
    .contact_title{
        font-size: 20px;
        padding-top: 20px;
    }
    .contact_logo{
        width: 150px;
        left: -12%;
        top: -40px;
    }
    .contact_btns{
        display: block;
        padding-bottom: 0px;
    }
    .contact_btn_img{
        display: block;
        width: 90%;
        margin: 0 auto;
    }
    .contact_btn_img img{
        padding-bottom: 15px;
    }
    .problem-list{
        margin-bottom: 80px;
    }
    .service_tag2{
        width: 150px;
    }
    .service_tag{
        display: none;
    }
    .service_badge img {
        padding-bottom: 10px;
    }
    .service_title{
        font-size: 35px;
    }
    .staff-text p{
        font-size: 21px;
    }
    .flow-number{
        left: 10px;
        top: -40px;
    }
    .content-box{
        display: block;
        margin: 0 auto;
    }
    .flow-text{
        width: 100%;
        padding: 15px;
        margin: 0 auto;
    }
    .flow-text h3{
        text-align: center;
    }
    .flow-img{
        margin: 0 auto;
        width: 100%;
        padding-top:20px;
    }
    .access_title{
        padding-bottom: 50px;
    }
    .access_contents{
        padding-top: 40px;
    }
    .mainvisual{
        margin-top: 0;
    }
    footer{
        margin-bottom: 109px;
    }
    .video_section{
        display: block;
        margin-top: 0;
    }
    iframe{
        width: 100%;
        height:auto;
        aspect-ratio: 16 / 9;
    }
    .video_content:nth-of-type(2){
        padding-top: 70px;
    }
    .title-area3{
        padding-top: 50px;
    }
    .title-area4{
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .video_name{
        font-size: 18px;
        display: block;
        padding: 5px;
    }
    .section-title3{
        font-size: 35px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .access_text h2{
        font-size: 24px;
        padding-bottom: 18px;
    }
}





/* 基本 */
.visually-hidden{
    position:absolute !important;
    left:-9999px; top:0;
    width:1px; height:1px;
    margin:0; padding:0; border:0;
    overflow:hidden;
    clip:rect(0 0 0 0); clip-path:inset(50%);
    white-space:nowrap;
}
.cmp {
    width: 100%;
    max-width: 500px;   /* ★ここで最大幅を調整（例: 800px） */
    margin: 0 auto;     /* 中央寄せ */
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid #e6e6ea;
    overflow: hidden;
    font-size: 16px;
  }
  .cmp caption {
    text-align: left;
    padding: 14px 16px;
    font-weight: 700;
  }
  
  /* ヘッダー列（上部） */
  .cmp .col-head {
    color: #fff;
    text-align: center;
    padding: 18px 12px;
    font-weight: 700;
    border-left: 1px solid #fff3;
  }
  .cmp .col-emiha { background: #d78da0; } /* ピンク */
  .cmp .col-salon { background: #c8c8cc; } /* グレー */
  .cmp .corner { width: 10rem; background: transparent; }
  
  /* 行見出し（左列） */
  .cmp .row-head {
    background: #c69a64;             /* 画像のブラウン系 */
    color: #fff;
    text-align: center;
    white-space: nowrap;
    font-weight: 700;
    padding: 22px 12px;
    border-right: 1px solid #e9d4b8;
  }
  
  /* 本文セル */
  .cmp td {
    padding: 22px 18px;
    text-align: center;
  }
  
  /* 罫線（内側） */
  .cmp th, .cmp td { border-bottom: 1px solid #eee; }
  .cmp tbody tr:last-child th,
  .cmp tbody tr:last-child td { border-bottom: none; }
  
  .cmp thead th + th, .cmp thead th + th + th,
  .cmp tbody td { border-left: 1px solid #eee; }
  

  
  /* 画面読み上げ用に見出しを隠す */
  .visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }

  @media screen and (max-width: 768px) {
    .cmp .corner {
        width: 6rem;
  }
  }




/*  .c-time-table01
================================================== */
.c-time-table01 {
    line-height: 1;
    color: var(--gray);
    background: #fff;
    padding: 10px;
    display: inline-block;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
    width: 60%;
  }
  
  .c-time-table01 table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
  }

  .c-time-table01 th,
  .c-time-table01 td {
    box-sizing: border-box;
    padding: 6px 0;
    text-align: center;
    vertical-align: middle;
    font-weight: 400;

  }
  
  .c-time-table01 td {
    font-size: 15px;
  }
  
  .c-time-table01 .title {
    font-size: 15px;
    border-right: 1px solid rgba(137, 105, 117, 0.3);
    border-bottom: 1px solid rgba(137, 105, 117, 0.3);
    text-align: center;
    padding-right: 5px;
    padding-bottom: 10px;
  }
  .c-time-table01 .time {
    font-size: 15px;
    border-right: 1px solid rgba(137, 105, 117, 0.3);
    text-align: center;
    padding-right: 10px;
  }
  
  .c-time-table01 .day {
    font-size: 15px;
    border-bottom: 1px solid rgba(137, 105, 117, 0.3);
    padding-bottom: 10px;
    width: 9%;
  }
  
  .c-time-table01 .first {
    padding-left: 10px;
  }
  
  .c-time-table01 .last {
    padding-right: 10px;
  }
  
  .c-time-table01 .morning th,
  .c-time-table01 .morning td {
    padding-top: 10px;
  }
  
  @media all and (max-width: 768px) {
    .c-time-table01 {
      display: block;
      padding: 20px 15px;
      width: 100%;
    }
    .c-time-table01 th,
    .c-time-table01 td {
      padding: 7px 0;
    }
  
    .c-time-table01 th {
      text-align: center;
    }
  
    .c-time-table01 td {
      font-size: 14px;
    }
  
    .c-time-table01 .title {
      font-size: 14px;
      text-align: center;
      padding: 0 5px 7px 0;
      letter-spacing: 5px;
    }
  
    .c-time-table01 .time {
      font-size: 11px;
      text-align: center;
      line-height: 1.6;
    }
  
    .c-time-table01 .day {
      font-size: 14px;
      padding-bottom: 13px;
      width: 8%;
    }
    .c-time-table01 .first{
      padding-left: 5px;
    }
    .c-time-table01 .day,
    .c-time-table01 .last{
        padding-right: 5px;
    }
    .c-time-table01 .morning th,
    .c-time-table01 .morning td {
      padding-top: 13px;
    }
  }


  /* その他の診療メニュー */

  .other_menu{
    padding: 80px 0;
  }
  .other_menu_contents{
    margin: 0 auto;
  }

  .other_menu_title{
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    color: #666;
  }
  .other_menu_title img{
    width: 40px;
  }
  .other_menu_title h2{
    font-size: 35px;
  }
  .other_menu_title p{
    font-size: 14px;
  }
  .menu_sub_title{
    font-size: 50px;
    font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
    opacity: 0.2;
    color: #2BB9A5;
    text-align: center;
  }
  .other_menu_icon{
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    gap: 20px;
    box-sizing: border-box;
    padding-top: 60px;
    margin: 0 auto;
  }
  .other_menu_icon a{
    display: block;
    width: 23%;
  }

  @media all and (max-width: 768px) {
    .other_menu_icon a{
        width: 46%;
    }
    .other_menu_icon{
        gap: 15px;
        padding-left: 9px;
        padding-top: 30px;
    }
    .other_menu_title p{
        font-size: 13px;
        text-align: center;
    }
    .menu_sub_title{
        font-size: 25px;
        padding-top: 10px;
    }
  }