@charset "utf-8";

/**************************************

TOPページリニューアル

**************************************/
/* ヘッダー */
.sp_logo{
    display: none;
}

.sp_h_plan{
    display: none;
}

/* メインイメージ */
section#top_main{
    background-image: url(../img/top_main_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
}
.top_main_inner .box01{
    width: 1300px;
    margin: auto;
    position: relative;
}
.top_main_inner .box01 p{
    margin-bottom: 60px;
    text-align: center;
}
.top_main_inner .box01 p.img-txt{
    text-align: center;
    z-index: 1;
    position: relative;
}
.top_main_inner .box01 p.img-txt img{
    display: inline-block;
    vertical-align: top;
}
.top_main_inner .box01 p.txt{
    color: #988584;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 2px;
    font-size: 21px;
}

/* メインイメージ */
.top_main_inner .main-img{
    width: 1300px;
    margin: auto;
    position: relative;
}
.top_main_inner .main-img img{
    margin: auto;
}
.main-img-under{
    background-color: #ff7f98;
}
.main-img-under p{
    text-align: center;
}
.main-img-under p img{
    margin: 0 auto;
}

/* ボタン */
.top_btn{
    border-radius: 99px;
    background-color: #666164;
    color: #fff;
    font-size: 0.9vw;
    font-weight: 600;
    padding: 1.3rem 2rem 1.3rem 3rem;
    text-decoration: none;
    line-height: 0;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}
.top_btn:after {
    content: ' ';
    background-image: url(../img/top_btn_icon.png);
    background-repeat: no-repeat;
    background-size: 57px;
    margin-left: 20px;
    width: 57px;
    height: 10px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}
.top_btn:hover{
    background-color: #d5d5d5;
    color: #333132;
    opacity: 1;
}
.top_btn:hover:after{
    background-image: url(../img/top_btn_icon02.png);
}

/* 他 */
.top_inner{
    width: 73vw;
    margin: 0 auto;
    padding: 7% 0;
}

/* 画像ゆっくり読み込み */
.fade_in {
    opacity: 0; /* 初期状態を透明に設定 */
    transform: translate(-50px, -50px); /* 左上から */
    transition: opacity 2.5s, transform 2.5s; /* 1.5秒かけてフェードインと移動 */
}
@keyframes fadeInFromTopLeft {
    from {
        opacity: 0; /* 初期状態は透明 */
        transform: translate(-50px, -50px); /* 左上からの移動 */
    }
    to {
        opacity: 1; /* 最終状態は不透明 */
        transform: translate(0, 0); /* 元の位置 */
    }
}

/* 画像拡大 */
.img_h{
    transition: transform 0.9s ease-in-out;
}
.img_h:hover{
    transform: scale(1.2);
}

/* top h2 */
h2.top_h2{
    text-align: center;
    font-weight: 600;
    font-size: 1.8vw;
    line-height: 1.4;
    color: #494949;
}
h2.top_h2 span{
    font-size: 1.3vw;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    color: #666666;
}

/* スライダーバナー */
.top_bnr {
    width: 73vw;
    overflow: hidden;
    margin: auto;
    position: relative;
}
.top_bnr .top_inner{
    width: 100%;
    padding: 7% 0 8%;
}
.top_bnr-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}
.top_bnr-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top_bnr-swiper .swiper-button-next,
.top_bnr-swiper .swiper-button-prev{
    color: #fff;
    background-color: #ff7f98;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.top_bnr-swiper .swiper-button-next:after,
.top_bnr-swiper .swiper-button-prev:after{
    font-size: 17px;
    font-weight: 700;
}
.top_bnr-swiper .swiper-horizontal>.swiper-pagination-bullets,
.top_bnr-swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.top_bnr-swiper .swiper-pagination-custom,
.top_bnr-swiper .swiper-pagination-fraction{
    bottom: -40px;
}
.top_bnr-swiper .swiper-pagination span{
    background-color: #ff7f98;
}

/* 冒頭 */
.top_beginning{
    position: relative;
    z-index: 1;
}
.top_beginning .deco{
    position: absolute;
    top: 1vw;
    right: -1vw;
    width: 32vw;
    z-index: 1;
}
.top_beginning .top_inner{
    display: flex;
    justify-content: space-between;
}
.top_beginning .img_box{
    width: 47%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    z-index: 3;
}
.top_beginning .img_box .img01{
    width: 90%;
    margin-bottom: 3%;
    overflow: hidden;
    position: relative;
}
.top_beginning .img_box .img02{
    width: 50%;
    height: auto;
    margin-right: 3%;
    overflow: hidden;
    position: relative;
}
.top_beginning .img_box .img03{
    width: 46%;
    overflow: hidden;
    position: relative;
}
.top_beginning .img_box .img01 img,
.top_beginning .img_box .img02 img,
.top_beginning .img_box .img03 img{
    width: 100%;
}
.top_beginning .txt_box{
    width: 50%;
}
.top_beginning .txt_box h2{
    color: #ff7f98;
    font-size: 2.3vw;
    font-weight: 600;
    margin-bottom: 3%;
}
.top_beginning .txt_box p{
    font-size: 0.9vw;
    font-weight: 500;
    margin-bottom: 3%;
}

.top_beginning .txt_box p.last{
    margin-bottom: 0;
}

/* 3つの強み */
.top_point{
    background: rgb(241,175,190);
    background: linear-gradient(135deg, rgba(241,175,190,1) 0%, rgba(255,155,181,1) 45%, rgba(245,113,159,1) 100%);
    position: relative;
    z-index: 1;
}
.top_point .deco{
    position: absolute;
    top: 2vw;
    left: -11vw;
    width: 37vw;
    z-index: 1;
}
.top_point h2{
    color: #fff;
    text-align: center;
    font-size: 2.8vw;
    font-weight: 600;
    line-height: 5rem;
    letter-spacing: 0.4rem;
    border-bottom: solid 2px #fff;
    padding-bottom: 3vw;
}
.top_point h2 span.en{
    font-size: 1.3vw;
    line-height: 1;
}
.top_point h2 span.span01{
    display: flex;
    align-items: center;
    font-size: 1.7vw;
    margin-bottom: -80px;
}
.top_point h2 span.span01:before{
    margin-right: 1rem;
}
.top_point h2 span.span01:after{
    margin-left: 1rem;
}
.top_point h2 span.span01:before,
.top_point h2 span.span01:after{
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #fff;
}
.top_point h2 span.span02{
    font-size: 5.8vw;
    transform: skewX(-6deg);
    display: inline-block;
}
.top_point .top_point_inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 4rem;
}
.top_point .top_point_inner div.child{
    background: #fff;
    width: 31%;
    padding-top: 1rem;
    overflow: hidden;
    min-height: 620px;
}
.top_point .top_point_inner div p.nam{
    font-style: italic;
    font-family: "Roboto Condensed", sans-serif;
    text-align: center;
    font-size: 2.3vw;
    font-weight: 600;
    color: #666666;
}
.top_point .top_point_inner div p.nam span{
    border-bottom: solid 2px #666666;
}
.top_point .top_point_inner div p.txt{
    text-align: center;
    color: #ff7798;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1vw;
}
.top_point .top_point_inner div.img_box{
    overflow: hidden;
    width: 100%;
    padding: 0;
}
.top_point .top_point_inner div.txt_box{
    width: 100%;
    padding: 5%;
    font-size: 0.8vw;
    font-weight: 500;
    min-height: 185px;
}

/* 症状一覧 */
.top_symptoms{
    background: #f4f4f4;
}
.top_symptoms ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 1rem 0 1.7rem;
    position: relative;
    z-index: 3;
}
.top_symptoms ul li{
    width: 18.5%;
    background: #fff;
    text-align: center;
    margin: 1rem 0;
    transition: all 0.5s ease-in-out;
}
.top_symptoms ul li a{
    color: #3b3b3b;
    text-decoration: none;
    font-size: 1vw;
    padding: 1rem 0;
    font-weight: 500;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}
.top_symptoms p.center{
    text-align: center;
}
.top_symptoms ul li:hover {
    background: #adadad;
}
.top_symptoms ul li a:hover {
    color: #ffffff;
    opacity: 1;
}

/* 施術一覧 */
.top_menu{
    position: relative;
    z-index: 1;
}
.top_menu .top_menu_box01{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 55vw;
    margin: 2rem auto 2rem;
    align-items: center;
}
.top_menu .top_menu_box01 .img_box{
    width: 60%;
    overflow: hidden;
}
.top_menu .top_menu_box01 .img_box img{
    width: 100%;
}
.top_menu .top_menu_box01 .txt_box{
    text-align: center;
    width: 30%;
}
.top_menu .top_menu_box01 .txt_box .txt{
    font-size: 1.4vw;
    font-weight: 600;
    margin-bottom: 1rem;
}
.top_menu .top_menu_box02{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 53vw;
    margin: 8rem auto 0;
}
.top_menu .top_menu_box02 div.out{
    width: 48%;
    background: rgb(255,101,132);
    background: linear-gradient(140deg, rgba(255,101,132,1) 0%, rgba(255,97,142,1) 35%, rgba(255,94,151,1) 100%);
    border: 7px solid #ff6487;
}
.top_menu .top_menu_box02 div.in{
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.23vw;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 6rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 42vh;
}
.top_menu .top_menu_box02 div.in .deco{
    width: 35%;
    position: absolute;
    top: -1%;
    right: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.top_menu .top_menu_box02 div.in p.txt01{
    border-bottom: solid 1px #fff;
    display: inline-block;
}
.top_menu .top_menu_box02 div.in p.txt02{
    position: relative;
    display: inline-block;
    font-size: 3.3vw;
    z-index: 1;
    line-height: 1;
    margin-bottom: 2rem;
    text-shadow: 6px 3px 0px #c10373;
}
.top_menu .top_menu_box02 div.in p.txt02::after{
    content: '';
    position: absolute;
    bottom: -9%;
    left: 50%;
    width: 100%;
    height: 13px;
    background-color: #fbcc3b;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.top_menu .top_menu_box02 div.in p.txt02 span{
    font-size: 6.4vw;
}
.top_menu .top_menu_box02 .top_btn{
    background-color: #fff;
    color: #666164;
}
.top_menu .top_menu_box02 .top_btn:hover{
    background-color: #666164;
    color: #fff;
}
.top_menu .top_menu_box02 .top_btn:after{
    background-image: url(../img/top_btn_icon02.png);
}
.top_menu .top_menu_box02 .top_btn:hover:after{
    background-image: url(../img/top_btn_icon.png);
}
.top_menu .top_menu_box02 div.top_hoken p.txt02{
    font-size: 2.2vw;
    line-height: 1.3;
    font-weight: 600;
    margin-top: 1rem;
}
.top_menu .deco01{
    position: absolute;
    top: 2vw;
    left: -15vw;
    width: 40vw;
    z-index: -1;
}
.top_menu .deco02{
    position: absolute;
    bottom: -5vw;
    right: -21vw;
    width: 51vw;
    z-index: -1;
}

/* 強み */
.top_strength{
    margin-top: 10%;
}
.top_strength_in {
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 70vw;
    min-height: 26.3vw;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    align-items: center;
    background-image: url(../img/top_strength_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.top_strength_in .txt_box{
    margin: 0 0 0 3vw;
}
.top_strength_in .txt_box h2{
    background: rgb(255,128,173);
    background: linear-gradient(130deg, rgba(255,128,173,1) 0%, rgba(245,107,155,1) 47%, rgba(255,149,186,1) 100%);
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    padding: 1.3vw 1.33vw 1vw;
    width: 27.3vw;
}
.top_strength_in .txt_box h2 span.span01{
    font-size: 1.3vw;
    display: inline-block;
    letter-spacing: 2px;
}
.top_strength_in .txt_box h2 span.span02{
    font-size: 3.3vw;
    display: inline-block;
    letter-spacing: 10px;
}
.top_strength_in .txt_box p{
    font-size: 1.13vw;
    font-weight: 500;
    margin: 1vw 0 0 0;
}
.top_strength_in .img_box {
    margin-top: -45.68px;
    position: absolute;
    right: -7vw;
    top: -1.1vw;
    width: 46vw;
    z-index: 1;
}

/* 強み2 */
.top_strength2 {
    margin-top: 3%;
    position: relative;
}
.top_strength2_in{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 0;
}
.top_strength2_in .img_box{
    overflow: hidden;
    width: 50%;
    z-index: 1;
}
.top_strength2_in .txt_box{
    width: 50%;
    padding: 0% 10% 0 7%;
}
.top_strength2_in .txt_box h3 {
    color: #ff7f98;
    font-size: 1.9vw;
    font-weight: 600;
    margin-bottom: 3%;
}
.top_strength2_in .txt_box p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2%;
}
.top_strength2_in .txt_box p.last{
    margin-bottom: 0;
}
.top_strength2_in2{
    flex-direction: row-reverse;
    background-color: #ffe6ed;
}
.top_strength2 .deco01 {
    position: absolute;
    top: 45vw;
    left: -17vw;
    width: 36vw;
    z-index: 1;
}
.top_strength2 .deco02 {
    position: absolute;
    top: 18vw;
    right: -20vw;
    width: 42vw;
    z-index: 1;
}

/* お知らせ */
.news {
    position: relative;
    z-index: 1;
}
.news .top_inner{
    width: 45vw;
    margin: 0 auto;
    padding-top: 0;
}
.news .deco01 {
    position: absolute;
    top: -13vw;
    right: -16vw;
    width: 46vw;
    z-index: 1;
}
.news .deco02 {
    position: absolute;
    top: -2vw;
    left: -25vw;
    width: 40vw;
    z-index: 1;
}
.news .deco03 {
    position: absolute;
    top: 29vw;
    right: -30vw;
    width: 46vw;
    z-index: 1;
}
.news p.center{
    text-align: center;
}
.news #fs_block2662{
    padding: 0;
    margin-bottom: 1rem;
}
#fs_block3397{
    margin-bottom: 2rem;
}
#fs_block3397 .tk_flex .col-1 a {
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.5s ease-in-out;
    position: relative;
}
#fs_block3397 .tk_flex .col-1 a:hover{
    color: #ff7f98;
}
#fs_block3397 .tk_flex .col-1 a:after{
    content: ' ';
    background-image: url(../img/top_new_icon.png);
    background-repeat: no-repeat;
    background-size: 21px;
    position: absolute;
    width: 21px;
    height: 12px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}
#fs_block3397 .tk_flex li{
    padding: 1rem 2rem;
    border-bottom: solid 1px #bdbdbd;
}
#fs_block3397 .tk_flex .col-1 a .date.tk_tags_time {
    margin-right: 6rem;
    font-size: 1vw;
    font-weight: 500;
    padding: 0;
}
#fs_block3397 .tk_flex .col-1 a div {
    display: flex;
    align-items: center;
    font-size: 1vw;
}
#fs_block3397 span.category {
    height: max-content;
    padding: 0px 10px;
    margin-right: 10px;
    font-size: 0.8vw;
    color: #1e1e1e;
    border: solid 1px #d5d5d5;
    font-weight: 500;
}
#fs_block3397 span.category.notice {
    margin-right: 15px;
    padding: 0px 10px;
    color: #fff;
    background-color: #fa6826;
}
#fs_block3397 .tk_flex .col-1 a .date.tk_tags_time div p {
    font-size: 18px;
}

/* 患者様の声 */
.top_voice{
    position: relative;
}
.top_voice .top_inner{
    padding-top: 0;
}
.top_voice_in{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3%;
    margin-bottom: 2%;
}
.top_voice_in .child{
    width: 32.3%;
    margin: 0 0 3% 0;
}
.top_voice_in .child .img_box{
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 3%;
}
.top_voice_in .child .img_box p{
    margin-bottom: 0;
    height: 300px;
}
.top_voice_in .child .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.top_voice_in .child p{
    font-size: 1.13vw;
    font-weight: 500;
    margin-bottom: 2%;
}
.top_voice_in .child p.cat{
    background-color: #ff7f98;
    border-radius: 10px;
    display: inline-block;
    padding: 0.1vw 0.8vw;
}
.top_voice_in .child p.cat a{
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.top_voice_in .child p.ttl{
    border-bottom: dotted 2px #ff7f98;
    padding-bottom: 2%;
}
.top_voice_in .child p.ttl a{
    color: #ff7f98;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.top_voice_in .child p.name{
    position: relative;
    margin: 0;
    padding-left: 6%;
}
.top_voice_in .child p.name:before{
    content: ' ';
    background-image: url(../img/top_voice_name_icon.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    width: 27px;
    height: 27px;
    display: inline-block;
    position: absolute;
    top: 14%;
    left: 0%;
}
.top_voice_in .child p.name a{
    color: #333333;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.top_voice p.center{
    text-align: center;
}
.top_voice .deco01 {
    position: absolute;
    top: 7vw;
    right: -14vw;
    width: 38vw;
    z-index: 0;
}
.top_voice .deco02 {
    position: absolute;
    bottom: -7vw;
    left: -29vw;
    width: 50vw;
    z-index: 0;
}

/* ブログ */
.top_blog{
    position: relative;
}
.top_blog .top_inner{
    padding-top: 0;
}
.top_blog_in{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3%;
    margin-bottom: 2%;
}
.top_blog_in .child{
    width: 23%;
}
.top_blog_in .child .img_box {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 3%;
}
.top_blog_in .child .img_box p{
    height: 10.4vw;
}
.top_blog_in .child .img_box p img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.top_blog_in .child p{
    font-size: 1vw;
    font-weight: 500;
    margin-bottom: 2%;
}
.top_blog_in .child p.cat{
    background-color: #ff7f98;
    border-radius: 10px;
    display: inline-block;
    padding: 0.1vw 0.8vw;
}
.top_blog_in .child p.cat a{
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.top_blog_in .child p.date{
    display: inline-block;
    margin-left: 3%;
}
.top_blog_in .child p.date a{
    color: #333333;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.top_blog_in .child p.txt{
    border-bottom: dotted 2px #9d9d9d;
    padding-bottom: 2%;
}
.top_blog_in .child p.txt a{
    color: #333333;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.top_blog .deco01 {
    position: absolute;
    bottom: -11vw;
    right: -14vw;
    width: 29vw;
    z-index: -1;
}
.top_blog p.center{
    text-align: center;
}

/* お問い合わせ */
.contact_main_sita {
    background: none;
    padding: 50px 0;
}
.message_h {
    letter-spacing: 1px;
    font-size: 21px;
    text-align: center;
    margin-bottom: 1em;
    font-weight: bold;
}
.contact_main_sita ul{
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.contact_main_sita li:not(:last-child) {
    margin-right: 40px;
}
.contact_main_sita li img{
    width: 400px;
}

/* アクセス */
#access {
    overflow: hidden;
    position:relative;
    box-sizing:border-box;
}
#access .access_inner {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 67vw;
}
#access .access_inner .access_box01 h2{
    font-size: 2.2vw;
    font-weight: 600;
    color: #ff7f98;
}
#access .access_inner ul.access_btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
}
#access .access_inner ul.access_btn .tel{
    font-size: 30px;
    width: 100%;
    font-weight: 600;
    color: #ad3535;
}
#access .access_inner ul.medical_list li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 13px;
}
#access .access_inner ul.medical_list li span {
    min-width: 7em;
    font-weight: bold;
    color: #E25896;
}
#access .access_inner ul.medical_list li span p {
    font-weight: bold;
}
#access .access_inner ul.medical_list li:first-child{
    border-bottom: 1px solid #e7e7e7;
}
#access .address {
    width:100%;
    position:relative;
    font-size:15px;
    padding-right: 0;
    box-sizing:border-box;
    font-weight:500;
}
#access .medical_list {
    width: 100%;
    position: relative;
    margin-top: 30px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    box-sizing: border-box;
}
#access .map_canvas {
    width: 34.3vw;
    position:relative;
}
#access .consultation_time{
    width: 100%;
}
#access .consultation_time p{
    border-bottom: dotted 1px #888;
    padding: 10px 0;
}
#access .consultation_time p:first-child{
    padding-top: 0;
}