@charset "utf-8";

/* ==============================================================
アフィトップ用css (html直書きとv8.cssから転記したものを含む) 
================================================================= */

/*
body::-webkit-scrollbar {
    display: none;
}
    */

/* 共通 */
h1,h2,h3,h4,h5,p,ul,li,dl,dt,dd,
article,aside,figcaption,figure,
footer,header,menu,nav,section {
    font-family: "Hiragino Kaku Gothic ProN", "YuGothic", "Meiryo", sans-serif;
}

html,body,div,span,object,iframe,
h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,
del,dfn,em,img,ins,kbd,q,
samp,small,strong,sub,sup,
var,b,i,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,
figcaption,figure,footer,header,
hgroup,menu,nav,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    background: #fff;
}

.wrap750 {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
.wrap670 {
    width: min(670px, calc(calc(670/750) * 100vw));
    margin-left: auto;
    margin-right: auto;
}

.section__ttl {
    padding-top: min(50px, calc(calc(50/750) * 100vw));
    margin-bottom: min(55px, calc(calc(55/750) * 100vw));
}

.section__ttl--text {
    font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
    font-size: clamp(16px, 6vw, 38px);
    font-weight: 500;
    line-height: 1.2em;
    position: relative;
    padding-bottom: clamp(10px, 2vw, 20px);
}
.section__ttl--text::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #ff7878;
}
.section__ttl--text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    border-bottom: 2px solid #A5A5A5;
}

.section__ttl--eng {
    font-size: clamp(14px, 3vw, 30px);
    color: #a5a5a5;
    letter-spacing: 0.04em;
    text-align: center;
}

.section__inner {
    margin: 0 auto;
}

.main_wrapper {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
}


/* header 
======================================================= */
.header#header {
    transition: all 0.5s;
}

.header {
    padding: 0 !important;
    position: fixed;
    max-width: 750px;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    border-bottom: solid 1px #a5a5a5;
    overflow: hidden;
    zoom: 1;
    z-index: 100;
    background: linear-gradient(#ffffff, #e5e5e5);
}
@media screen and (max-width: 750px) {
     .header {
        height: 50px;
    }
}

.header h1.logo {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 40%;
    height: auto;
}
@media screen and (max-width: 750px) {
    .header img {
        width: 50%;
    }
}


/* FVエリア
======================================================= */
.fv_area {
    margin-top: min(100px, calc(calc(100/750) * 100vw));
    background: url(../img/front__ab01/fv.webp) no-repeat top center / contain;
    padding: min(450px, calc(calc(450/750) * 100vw)) 0 min(61px, calc(calc(61/750) * 100vw));
}

/* FV下ボタン */
.fv_btn__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(30px, calc(calc(30/750) * 100vw)) 0;
}
.fv_btn__item {
    width: 48.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(5px, calc(calc(5/750) * 100vw)) 0;
}
.fv_btn__item:first-of-type {
    width: 100%;
}
.fv_btn__item a img {
    filter: drop-shadow(0 3px 6px #cbcbe0);
}

/* CTAボタン */
.cta__wrap {
    margin-top: min(33px, calc(calc(33/750) * 100vw));
    margin-bottom: min(50px, calc(calc(50/750) * 100vw));
}

/* CTAボタン - 光るボタン */
.reflection {
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.reflection::after{
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    top: -180px;
    left: 0;
    opacity: 0;
    background-color: #fff;
    transform: rotate(45deg);
    animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* FV下メニューボタン */
.fv_menu__btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(11px, calc(calc(11/750) * 100vw));
}
.fv_menu__btn li {
    position: relative;
    width: 32.2%;
    box-sizing: border-box;
}
.fv_menu__btn li::before {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: min(15px, calc(calc(15/750) * 100vw));
	width: min(8px, calc(calc(8/750) * 100vw));
	height: min(8px, calc(calc(8/750) * 100vw));
	border-top: min(2px, calc(calc(2/750) * 100vw)) solid #fff;
	border-right: min(2px, calc(calc(2/750) * 100vw)) solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.fv_menu__btn li a {
    display: block;
    background: #e87baa;
    padding: min(20px, calc(calc(20/750) * 100vw)) 0;
}
.fv_menu__btn li a p {
    text-align: center;
    color: #fff;
    font-size: min(24px, calc(calc(24/750) * 100vw));
    line-height: 1;
}


/* 診療メニュー 
======================================================= */
.menu__title {
    margin: 0 auto;
    margin-bottom: clamp(10px, 2vw, 20px);
}

/* 男女メニュー切り替えタブ */
.menu_tab {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
    margin-bottom: min(65px, calc(calc(65/750) * 100vw));
}
.menu_tab li {
    width: 47.8%;
    border-radius: min(10px, calc(calc(10/750) * 100vw));
}
.menu_tab_01 {
    border: min(2px, calc(calc(2/750) * 100vw)) solid #FF7878;
}
.menu_tab_02 {
    border: min(2px, calc(calc(2/750) * 100vw)) solid #51BBFE;
}
.menu_tab_01.active {
    background: #FF7878;
}
.menu_tab_02.active {
    background: #51BBFE;
}

.menu_tab li a{
	display: block;
    text-align: center;
    padding: min(24px, calc(calc(24/750) * 100vw)) 0;
    font-size: min(30px, calc(calc(30/750) * 100vw));
    line-height: 1;
}
.menu_tab li a:hover {
    color: #fff;
    opacity: 1;
}
.menu_tab_01 a {
    color: #FF7878;
}
.menu_tab_01 a:hover {
    background: #FF7878;
}
.menu_tab_02 a {
    color: #51BBFE;
}
.menu_tab_02 a:hover {
    background: #51BBFE;
}
.menu_tab_01.active a,
.menu_tab_02.active a {
    color: #fff;
}

.menu_tab_area {
	display: none;
	opacity: 0;
}
.menu_tab_area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.menu__head {
    padding-top: clamp(15px, 3vw, 30px);
    padding-bottom: min(105px, calc(calc(105/750) * 100vw));
    background-image: url(../img/top/menu_head_bg.jpg);
    background-size: cover;
}
._mens .menu__head {
    background-image: none;
    background: linear-gradient(45deg, #50BCFF, #56D6FE, #50BCFF);
}

.menu__head p {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: min(30px, calc(calc(30/750) * 100vw));
    font-weight: 500;
    letter-spacing: min(1px, calc(calc(1/750) * 100vw));
}
.menu__head p strong {
    font-size: min(45px, calc(calc(45/750) * 100vw));
    font-weight: 500;
}

.c-services-tab {
    padding-top: 0;
}
.c-services-tab__list {
    width: 100%;
    padding: 0 min(26px, calc(calc(26/750) * 100vw));
}
.c-services-tab__panel--skin:before {
    background-image: url(../img/top/skin_bg.jpg);
}

/* お悩みの部位リンク */
.c-services-tab__panel--button {
    width: min(200px, calc(calc(200/750) * 100vw));
    border: min(2px, calc(calc(2/750) * 100vw)) solid #ff7878;
    border-radius: min(10px, calc(calc(10/750) * 100vw));
}
.c-services-tab__panel--button a {
    padding: min(17.5px, calc(calc(17.5/750) * 100vw)) 0;
    font-size: min(24px, calc(calc(24/750) * 100vw));
}

.p-services__tab {
    margin-top: 0;
}
.c-services-tab__panel {
    height: min(732px, calc(calc(732/750) * 100vw));
}
.c-services-tab__panels {
    margin: 0;
}
.c-services-tab__panel--list>li {
    position: absolute;
    margin: 0;
}

.c-services-tab__panel:before {
    width: min(690px, calc(calc(690/750) * 100vw));
    height: min(732px, calc(calc(732/750) * 100vw));
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    transform: none;
}

/* 部位リンク ポジション - レディース */
/* 二重 */
.c-services-tab__panel--doubleEyelids {
    top: min(130px, calc(calc(130/750) * 100vw));
    left: min(15px, calc(calc(15/750) * 100vw));
}
/* クマ */
.c-services-tab__panel--darkcircles {
    top: min(320px, calc(calc(320/750) * 100vw));
    left: min(15px, calc(calc(15/750) * 100vw));
    bottom: auto;
    right: auto;
}
/* シワ・たるみ */
.c-services-tab__panel--wrinkle {
    bottom: min(195px, calc(calc(195/750) * 100vw));
    left: min(15px, calc(calc(15/750) * 100vw));
    top: auto;
    right: auto;
}
/* 小顔 */
.c-services-tab__panel--faceline {
    bottom: min(48px, calc(calc(48/750) * 100vw));
    left: min(15px, calc(calc(15/750) * 100vw));
    top: auto;
    right: auto;
}
/* 鼻筋 */
.c-services-tab__panel--microrhinia {
    top: min(130px, calc(calc(130/750) * 100vw));
    right: min(15px, calc(calc(15/750) * 100vw));
    bottom: auto;
    left: auto;
}
/* 小鼻・鼻尖 */
.c-services-tab__panel--nose {
    top: min(372px, calc(calc(372/750) * 100vw));
    right: min(15px, calc(calc(15/750) * 100vw));
    left: auto;
}
/* 口元 */
.c-services-tab__panel--lips {
    bottom: min(120px, calc(calc(120/750) * 100vw));
    right: min(15px, calc(calc(15/750) * 100vw));
    top: auto;
    left: auto;
}

/* ワキガ・多汗症 */
.c-services-tab__panel--hidrosis {
    top: min(320px, calc(calc(320/750) * 100vw));
    right: min(15px, calc(calc(15/750) * 100vw));
    bottom: auto;
    left: auto;
}
/* 痩身・ダイエット */
.c-services-tab__panel--slimming {
    bottom: min(240px, calc(calc(240/750) * 100vw));
    right: min(15px, calc(calc(15/750) * 100vw));
    top: auto;
    left: auto;
}
/* 婦人科形成 */
.c-services-tab__panel--vaginoplasty {
    bottom: min(115px, calc(calc(115/750) * 100vw));
    right: min(15px, calc(calc(15/750) * 100vw));
    top: auto;
    left: auto;
}

/* シミ・くすみ */
.c-services-tab__panel--spot {
    top: min(130px, calc(calc(130/750) * 100vw));
    left: min(15px, calc(calc(15/750) * 100vw));
    bottom: auto;
    right: auto;
}
/* ニキビ・毛穴 */
.c-services-tab__panel--acne {
    top: min(120px, calc(calc(120/750) * 100vw));
    right: min(5px, calc(calc(5/750) * 100vw));
    bottom: auto;
    left: auto;
}
/* ほくろ・イボ */
.c-services-tab__panel--mole {
    bottom: min(240px, calc(calc(240/750) * 100vw));
    left: min(15px, calc(calc(15/750) * 100vw));
    top: auto;
    right: auto;
}

/* ヒアルロン酸 */
.c-services-tab__panel--hyaluronic {
    top: min(150px, calc(calc(150/750) * 100vw));
    right: min(62px, calc(calc(62/750) * 100vw));
    bottom: auto;
    left: auto;
}
/* 医療脱毛 */
.c-services-tab__panel--hair {
    bottom: min(210px, calc(calc(210/750) * 100vw));
    left: min(131px, calc(calc(131/750) * 100vw));
    right: auto;
}


/* 診療メニュー - メンズ
======================================================= */
._mens .c-services-tab__panel--face:before {
    background-image: url(../img/front__ab01/m_face_bg.webp);
}
._mens .c-services-tab__panel--body:before {
    background-image: url(../img/front__ab01/m_body_bg.webp);
}
._mens .c-services-tab__panel--skin:before {
    background-image: url(../img/front__ab01/m_skin_bg.webp);
}
._mens .c-services-tab__panel--others:before {
    background-image: url(../img/front__ab01/m_other_bg.webp);
}

._mens .c-services-tab__panel--button a {
    color: #51BBFE;
}
._mens .c-services-tab__panel--button a:hover {
    background: #51BBFE!important;
}
._mens .c-services-tab__panel--button {
    border: min(2px, calc(calc(2/750) * 100vw)) solid #51BBFE;
}


/* 部位リンク ポジション - メンズ */
/* 鼻筋 */
._mens .c-services-tab__panel--microrhinia {
    top: min(230px, calc(calc(230/750) * 100vw));
}
/* 髪 */
._mens .c-services-tab__panel--m-hair {
    top: min(130px, calc(calc(130/750) * 100vw));
    right: min(15px, calc(calc(15/750) * 100vw));
}
/* ワキガ・多汗症 */
._mens .c-services-tab__panel--hidrosis {
    top: min(380px, calc(calc(380/750) * 100vw));
}
/* 痩身・ダイエット */
._mens .c-services-tab__panel--slimming {
    bottom: min(160px, calc(calc(160/750) * 100vw));
}
/* ニキビ・毛穴 */
._mens .c-services-tab__panel--acne {
    right: min(15px, calc(calc(15/750) * 100vw));
}
/* ほくろ・イボ */
._mens .c-services-tab__panel--mole {
    bottom: min(230px, calc(calc(230/750) * 100vw));
}
/* ヒアルロン酸 */
._mens .c-services-tab__panel--hyaluronic {
    right: min(150px, calc(calc(150/750) * 100vw));
}
/* 医療脱毛 */
._mens .c-services-tab__panel--hair {
    left: min(152px, calc(calc(152/750) * 100vw));
}




/* 施術リンクボタン
======================================================= */
.menu__group--bgc {
    background-color: #fffce9;
    padding-bottom: min(30px, calc(calc(30/750) * 100vw));
}
.middle--menu_ttl {
    margin-bottom: min(20px, calc(calc(20/750) * 100vw));
}

.menu__group {
    margin-bottom: min(30px, calc(calc(30/750) * 100vw))!important;
    padding: min(5px, calc(calc(5/750) * 100vw));
    margin: 0 auto;
    border-radius: min(10px, calc(calc(10/750) * 100vw));
    box-shadow: 0 5px 20px rgba(182, 179, 178, 0.35);
}
@media screen and (max-width: 750px) {
    .menu__group {
        box-shadow: 0 0.67vw 2.67vw rgba(182, 179, 178, 0.35);
    }
}

.menu__group--main {
    padding: min(10px, calc(calc(10/750) * 100vw));
    padding-bottom: min(28px, calc(calc(28/750) * 100vw));
    border: min(1px, calc(calc(1/750) * 100vw)) solid #b89f82;
    border-radius: min(8px, calc(calc(8/750) * 100vw));
    position: relative;
}
.menu__group--main::before,
.menu__group--main::after {
    content: "";
    width: 100;
    height: min(16px, calc(calc(16/750) * 100vw));
    background: url(../img/top/kirakira.webp) no-repeat center /contain;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
}
.menu__group--main::before {
    top: min(5px, calc(calc(5/750) * 100vw));
}
.menu__group--main::after {
    bottom: min(5px, calc(calc(5/750) * 100vw));
}
.menu__group--title {
    text-align: center;
}
.menu__group--title p {
    color: #9f876a;
    margin: min(20px, calc(calc(20/750) * 100vw)) auto min(25px, calc(calc(25/750) * 100vw));
    font-size: min(32px, calc(calc(32/750) * 100vw));
    font-weight: 600;
    display: inline-block;
    position: relative;
}


.menu__group--yoko {
    width: min(630px, calc(calc(630/750) * 100vw));
    justify-content: space-between !important;
    gap: min(20px, calc(calc(20/750) * 100vw)) 0;
    margin-left: auto;
    margin-right: auto;
}
.menu__group--yoko li {
    width: 49%;
    /* width: calc(50% - 20px); */
    text-align: center;
}
.menu__group--yoko li img {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .menu__group--yoko {
        display: flex;
        justify-content: center;
        gap: 5px;
        flex-wrap: wrap;
    }
}

.menu__group--tate {
    width: min(630px, calc(calc(630/750) * 100vw));
    margin: 0 auto;
}
.menu__group--tate li {
    margin: 0;
    text-align: center;
    width: 100%;
}
.menu__group--tate li:not(:last-child) {
    margin: 0 0 min(20px, calc(calc(20/750) * 100vw)) 0;
}

/* 施術リンクボタン - メンズ */
._mens .menu__group--main {
    border: min(1px, calc(calc(1 / 750) * 100vw)) solid #5385a5;
}
._mens .menu__group--title p {
    color: #5385a5;
    letter-spacing: min(3px, calc(calc(3 / 750) * 100vw));
}
.menu__group--title p::before,
.menu__group--title p::after {
    content: "";
    width: min(29px, calc(calc(29 / 750) * 100vw));
    height: min(35px, calc(calc(35 / 750) * 100vw));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
}
.menu__group--title p::before {
    left: max(-40px, calc(-1 * (calc(40/750) * 100vw)));
}
.menu__group--title p::after {
    right: max(-40px, calc(-1 * (calc(40/750) * 100vw)));
}

#tr_menu04_m .menu__group--title p::before,
#tr_menu04_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco01.webp);
}
#tr_menu03_m .menu__group--title p::before,
#tr_menu03_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco02.webp);
}
#tr_menu07_m .menu__group--title p::before,
#tr_menu07_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco03.webp);
}
#tr_menu01_m .menu__group--title p::before,
#tr_menu01_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco04.webp);
}
#tr_menu02_m .menu__group--title p::before,
#tr_menu02_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco05.webp);
}
#tr_menu09_m .menu__group--title p::before,
#tr_menu09_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco06.webp);
}
#tr_menu05_m .menu__group--title p::before,
#tr_menu05_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco07.webp);
}
#tr_menu11_m .menu__group--title p::before,
#tr_menu11_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco08.webp);
}
#tr_menu10_m .menu__group--title p::before,
#tr_menu10_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco09.webp);
}

#tr_menu12_m .menu__group--title p::before,
#tr_menu12_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco10.webp);
}

#tr_menu06_m .menu__group--title p::before,
#tr_menu06_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco11.webp);
}

#tr_menu13_m .menu__group--title p::before,
#tr_menu13_m .menu__group--title p::after {
    background-image: url(../img/front__ab01/menu_group_title__deco12.webp);
}



._mens .menu__group--main::before,
._mens .menu__group--main::after {
    content: "";
    width: 100;
    height: min(16px, calc(calc(16/750) * 100vw));
    background: url(../img/front__ab01/kirakira_m.webp) no-repeat center /contain;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
}



/* 症例スライダー 
======================================================= */
.ba_slider__wrap {
    background: #ecf4ff;
    padding: min(55px, calc(calc(55/750) * 100vw)) 0 min(120px, calc(calc(120/750) * 100vw));
}
.ba_slider__ttl {
    width: min(650px, calc(calc(650/750) * 100vw));
    margin: 0 auto min(58px, calc(calc(58/750) * 100vw));
}
.ba_slider {
    padding: min(35px, calc(calc(35/750) * 100vw)) 0;
    background: url(../img/front__ab01/ba_slider__bg.webp) no-repeat center / contain;
    padding-bottom: min(39px, calc(calc(39/750) * 100vw));
}

.ba_slider p {
    position: absolute;
    text-align: center;
    bottom: max(-60px, calc(-1 * (calc(60/750) * 100vw)));
    right: 0;
    left: 0;
    color: #FFF;
    font-size: min(28px, calc(calc(28/750) * 100vw));
    font-family: var(--font-yumincho);
    font-weight: 600;
}

.ba_slider p span {
    position: absolute;
    text-align: center;
    right: 0;
    left: 0;
    bottom: max(-80px, calc(-1 * (calc(80/750) * 100vw)));
}

.ba_slider__item {
    position: relative;
    width: min(450px, calc(calc(450/750) * 100vw));
    padding: min(18px, calc(calc(18/750) * 100vw));
    box-sizing: border-box;
    border: min(1px, calc(calc(1/750) * 100vw)) solid #889dab;
    background: url(../img/front__ab01/ba_slider__item_bg.webp) no-repeat center / cover;
}
.ba_slider__item {
  transform: scale(.8);
  transition: transform .3s;
}
.ba_slider__item.slick-center {
  transform: scale(1);
  position: relative;
  margin-bottom: min(50px, calc(calc(50/750) * 100vw));
}

.ba_slider__item.slick-center::before {
    content: "";
    width: min(48px, calc(calc(48/750) * 100vw));
    height: min(48px, calc(calc(48/750) * 100vw));
    background: url(../img/front__ab01/ba_slider__icon.webp) no-repeat center / contain;
    position: absolute;
    bottom: min(27px, calc(calc(27/750) * 100vw));
    right: min(27px, calc(calc(27/750) * 100vw));
}

/*文字が見切れてしまってるところを、見えるようにする*/
section#ba_case .slick-list.draggable{
  overflow:visible;
}
/*位置調整*/
ul.ba_slider li:nth-child(12) span{
 margin-bottom:min(65px,calc(65 / 750 * 100vw));
 line-height: 1.2;
}

/* dits */
.ba_slider .slick-dots {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: max(-55px, calc(-1 * (calc(55/750) * 100vw)));
}
.ba_slider .slick-dots li:not(:last-child) {
    margin-right: min(40px, calc(calc(40/750) * 100vw));
}
.ba_slider .slick-dots li button:before {
    width: min(20px, calc(calc(20/750) * 100vw));
    height: min(20px, calc(calc(20/750) * 100vw));
    border-radius: 9999px;
    background: #c2c2c2;
    opacity: 1;
}
.ba_slider .slick-dots li.slick-active button:before {
    background: #78b1ff;
}
/* arrow */
.ba_slider .slick-prev,
.ba_slider .slick-next {
    background: none;
    width: min(20px, calc(calc(20/750) * 100vw));
    height: min(30px, calc(calc(30/750) * 100vw));
    top: auto;
    bottom: max(-64px, calc(-1 * (calc(64/750) * 100vw)));
}
.ba_slider .slick-prev {
    left: min(95px, calc(calc(95/750) * 100vw));
}
.ba_slider .slick-next {
    right: min(95px, calc(calc(95/750) * 100vw));
}
.ba_slider .slick-prev::before,
.ba_slider .slick-next::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: min(20px, calc(calc(20/750) * 100vw));
    height: min(20px, calc(calc(20/750) * 100vw));
    border-top: 2px solid #78b1ff;
	border-right: 2px solid #78b1ff;
}
.ba_slider .slick-prev::before {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.ba_slider .slick-next::before {
    -webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* 症例スライダー - モーダルの中身 
======================================================= */
.ba_slider__modal {
    display: none;
    max-height: 80dvh!important;
}
.ba_slider__modal::-webkit-scrollbar {
    display: none;
}

/* featherlightカスタマイズ */
.ba_modal .featherlight-content {
    padding: 0!important;
    width: min(600px, calc(calc(600/750) * 100vw))!important;
    border-radius: min(20px, calc(calc(20/750) * 100vw));
    overflow: hidden;
}
@media screen and (min-width: 751px) {
    .ba_modal .featherlight-content {
        width: 450px!important;
        border-radius: 15px;
    }
}
.ba_modal .featherlight-close-icon {
    display: none;
}

.ba_slider__modal--head {
    padding: min(40px, calc(calc(40/750) * 100vw));
    background: url(../img/front__ab01/ba_slider__modal_bg.webp) no-repeat center / cover;
}
@media screen and (min-width: 751px) {
    .ba_slider__modal--head {
        padding: 26px;
    }
}

.ba_slider__modal--body {
    padding: min(40px, calc(calc(40/750) * 100vw));
}
@media screen and (min-width: 751px) {
    .ba_slider__modal--body {
        padding: 26px;
    }
}

.ba_slider__modal--body h5 {
    text-align: center;
    color: #78b1ff;
    font-size: min(36px, calc(calc(36/750) * 100vw));
    font-weight: 600;
    line-height: 1;
    padding-bottom: min(20px, calc(calc(20/750) * 100vw));
    margin-bottom: min(35px, calc(calc(35/750) * 100vw));
    background-image: radial-gradient(circle, #78b1ff 0.33vw, transparent 0.33vw);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 1.47vw 0.67vw;
}
@media screen and (min-width: 751px) {
    .ba_slider__modal--body h5 {
        font-size: 26px;
        padding-bottom: 15px;
        margin-bottom: 25px;
        background-image: radial-gradient(circle, #78b1ff 2.5px, transparent 2.5px);
        background-size: 11px 5px;
    }
}
.ba_slider__modal--body ul li {
    font-size: min(28px, calc(calc(28/750) * 100vw));
    padding-left: min(33px, calc(calc(33/750) * 100vw));
    position: relative;
    line-height: 1.4;
}
@media screen and (min-width: 751px) {
    .ba_slider__modal--body ul li {
        font-size: 20px;
        padding-left: 25px;
    }
}
.ba_slider__modal--body ul li::before {
    content: "";
    width: min(20px, calc(calc(20/750) * 100vw));
    height: min(25px, calc(calc(25/750) * 100vw));
    border-top: min(12px, calc(calc(12/750) * 100vw)) solid transparent;
    border-bottom: min(12px, calc(calc(12/750) * 100vw)) solid transparent;
    border-left: calc(tan(60deg) * 1.6vw) solid #78b1ff;
    position: absolute;
    top: 0;
    left: 1px;
}
@media screen and (min-width: 751px) {
    .ba_slider__modal--body ul li::before {
        content: "";
        width: 12px;
        height: 12px;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: calc(tan(60deg) * 8px) solid #78b1ff;
        position: absolute;
        top: 0;
        left: 1px;
    }
}
.ba_slider__modal--body ul li:not(:last-child) {
    margin-bottom: min(30px, calc(calc(30/750) * 100vw));
}
@media screen and (min-width: 751px) {
    .ba_slider__modal--body ul li:not(:last-child) {
        margin-bottom: 20px;
    }
}



/* クーポン取得方法スライダー
======================================================= */
.howto_coupon {
    position: relative;
    background: #ff5a63;
    padding-bottom: min(40px, calc(calc(40/750) * 100vw));
}

.howto_coupon__item {
    width: min(640px, calc(calc(640/750) * 100vw))!important;
    margin: 0 min(10px, calc(calc(10/750) * 100vw));
}

/* dots */
.howto_coupon__slider .slick-dots {
    padding-top: min(30px, calc(calc(30/750) * 100vw));
}
.howto_coupon__slider .slick-dots li button:before {
    opacity: 1;
    background: #9b363c;
    width: min(20px, calc(calc(20/750) * 100vw));
    height: min(20px, calc(calc(20/750) * 100vw));
}
.howto_coupon__slider .slick-dots li:not(:last-child) {
    margin-right: min(40px, calc(calc(40/750) * 100vw));
}
.howto_coupon__slider .slick-dots li.slick-active button:before {
    background: #fff;
}

/* arrow */
/* 通常のページ送り */
.howto_coupon__slider .slick-prev,
.howto_coupon__slider .slick-next {
    background: none;
    width: min(71px, calc(calc(71/750) * 100vw));
    height: min(71px, calc(calc(71/750) * 100vw));
    border: min(4px, calc(calc(4/750) * 100vw)) solid #fff;
    border-radius: 9999px;
    background: #ff5a63;
    margin: auto;
    top: 0;
    bottom: 0;
}
.howto_coupon__slider .slick-prev:hover,
.howto_coupon__slider .slick-next:hover {
    opacity: 1;
}

.howto_coupon__slider .slick-prev {
    left: min(20px, calc(calc(20/750) * 100vw));
}
.howto_coupon__slider .slick-next {
    right: min(20px, calc(calc(20/750) * 100vw));
}

.howto_coupon__slider .slick-prev::before,
.howto_coupon__slider .slick-next::before {
    content: "";
    width: min(20px, calc(calc(20/750) * 100vw));
    height: min(20px, calc(calc(20/750) * 100vw));
    border-top: min(3px, calc(calc(3/750) * 100vw)) solid #fff;
	border-right: min(3px, calc(calc(3/750) * 100vw)) solid #fff;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.howto_coupon__slider .slick-prev::before {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
    left: 12%;
}
.howto_coupon__slider .slick-next::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    right: 12%;
}


/* 下部（ドット横）のページ送り */
.arrow02 {
    width: min(20px, calc(calc(20/750) * 100vw));
    height: min(30px, calc(calc(30/750) * 100vw));
    position: absolute;
    bottom: min(30px, calc(calc(30/750) * 100vw));
}
.arrow02.howto_coupon__prevB {
    left: min(200px, calc(calc(200/750) * 100vw));;
}
.arrow02.howto_coupon__nextB {
    right: min(200px, calc(calc(200/750) * 100vw));;
}
.howto_coupon__prevB::before,
.howto_coupon__nextB::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: min(20px, calc(calc(20/750) * 100vw));
    height: min(20px, calc(calc(20/750) * 100vw));
    border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.howto_coupon__prevB::before {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.howto_coupon__nextB::before {
    -webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}






/* 症例モデル募集
======================================================= */
.model {
    background:  #FFFCE9;
    position: relative;
}



/* ドクター紹介
======================================================= */
.wrap90 {
    width: 92%;
    margin: 0 auto;
}
.section_ttl {
    max-width: 880px;
    margin: 0 auto clamp(30px, 4.5vw, 45px);
}
.section_doctor .section_ttl {
    padding: 0;
}
.section_ttl-text {
    width: 100%;
    padding-bottom: clamp(10px, 2vw, 20px);
    margin-bottom: clamp(10px, 2vw, 20px);
    font-size: clamp(20px, 3.8vw, 38px);
    font-weight: 500;
    line-height: 1.4em;
    text-align: center;
    position: relative;
}

.section_ttl-text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #ff7878;
}
.section_ttl-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    border-bottom: 2px solid #a5a5a5;
}
@media screen and (max-width: 767px) {
    .section_ttl-text::before,
    .section_ttl-text::after {
        border-width: 1px;
    }
}

.section_ttl-eng {
    font-size: clamp(14px, 3vw, 30px);
    color: #a5a5a5;
    letter-spacing: 0.04em;
    text-align: center;
}

.section_doctor-inner {
    padding-top: clamp(25px, 5vw, 50px) !important;
}

@media screen and (max-width: 767px) {
    .section_doctor-inner {
        width: 100% !important;
    }
    .section_doctor-inner,
    .section_doctor-inner .section_ttl {
        padding: 0 15px;
    }
}
.strong_pink strong {
    font-weight: inherit;
    color: #ff7878;
}

.slick-dotted.slick-slider.doctor-slick .item {
    background-color: #fff;
    padding: clamp(15px, 3vw, 30px);
    border: 2px solid #ff7878;
    display: flex;
    flex-direction: column;
    margin-bottom: clamp(25px, 5vw, 50px);
}

.doctor_profile {
    display: flex;
    align-items: center;
    margin-bottom: clamp(15px, 3vw, 30px);
}

.doctor_profile-img {
    overflow: hidden;
    width: clamp(115px, 23vw, 230px);
    height: clamp(150px, 30vw, 300px);
    background-color: #dfdfdf;
    margin-right: clamp(15px, 3vw, 30px);
    position: relative;
    z-index: 1;
    object-fit: cover;
    /* position: relative; */
}

.doctor_profile-img img {
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}

.doctor_profile-txt p {
    line-height: 1.5;
}

.doctor_profile-achive {
    font-size: clamp(12px, 2.4vw, 24px) !important;
    font-weight: 500;
    color: #fff;
    background: url(../img/top/doctor_archive_bg.png) no-repeat;
    background-size: 100%;
    text-align: center;
    padding: 0 clamp(15px, 3vw, 30px);
    box-sizing: border-box;
    margin-bottom: clamp(5px, 1vw, 10px);
    min-width: clamp(168px, 33vw, 336px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor_profile-position {
    margin-bottom: 10px;
}

.doctor_profile-name {
    font-weight: 500;
}

.doctor_profile-name span {
    position: relative;
    font-size: clamp(16px, 3.5vw, 35px);
    padding-bottom: 5px;
    display: block;
}

.doctor_profile-name span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    border: 1px solid #ff7878;
    min-width: clamp(150px, 30vw, 300px);
}

.doctor_profile-name small {
    display: block;
    font-size: clamp(13px, 2.6vw, 26px);
    color: #ff7878;
    margin-top: clamp(7px, 1.4vw, 14px);
}

.doctor_about {
    padding: clamp(15px, 3vw, 30px);
    background-color: #f2faff;
    /* flex-grow: 1; */
    margin-bottom: clamp(15px, 3vw, 30px);
}

.doctor_profile-position,
.doctor_about-txt p,
.doctor_list > li {
    font-size: clamp(12px, 2.4vw, 24px);
    font-weight: 500;
    line-height: 1.5;
}

.doctor_about-txt p + p {
    margin-top: clamp(10px, 1.5vw, 15px);
}

.ad-head {
    min-height: clamp(35px, 7vw, 70px);
    background-color: #ff7878;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(13px, 2.6vw, 26px);
    font-weight: 500;
    border: 1px solid #ff7878;
    transition: 0.4s;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
}

.ad-head.js--accordion-open {
    background-color: #fff;
    color: #ff7878;
}

.doctor_word {
    position: relative;
}

.doctor_word::before {
    content: "経歴・備考を見る";
}

.js--accordion-open .doctor_word::before {
    content: "閉じる";
}

.doctor_career {
    margin-bottom: clamp(25px, 5vw, 50px);
}

.ttl02 {
    font-size: clamp(16px, 2.8vw, 28px);
    font-weight: 500;
    color: #ff7878;
    position: relative;
    margin-bottom: clamp(10px, 2vw, 20px);
}

.ttl02 span {
    display: inline-block;
    background-color: #fff;
    position: relative;
    z-index: 2;
    padding-right: 5px;
}

.ttl02::before {
    content: "";
    display: block;
    position: absolute;
    border: 1px solid #ff7878;
    top: calc(50% + 0px);
    width: 100%;
    z-index: 1;
}

.doctor_remark {
    margin-bottom: clamp(25px, 5vw, 50px);
}

.doctor_list > dl + dl {
    margin-top: clamp(5px, 1vw, 10px);
}

.doctor_list > dl a {
    color: #ff7878;
    text-decoration: underline;
}

.doctor_list > li a:hover {
    text-decoration: none;
}

.doctor_list > dl dt {
    display: inline-block;
    background-color: #ff7878;
    padding: 2px 5px;
    color: #fff;
    font-size: clamp(10px, 2vw, 20px);
    margin-bottom: 3px;
}

dt {
    font-weight: normal !important;
}

/* .featherlight .featherlight-content {
    white-space: nowrap !important;
} */

.white_icon {
    position: relative;
}

.white_icon::before,
.white_icon::after {
    content: "";
    display: block;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 20px;
    height: 2px;
    transform: translateY(-50%);
    transition: all 0.4s;
}

.white_icon::before {
    right: 5px;
    transform: translate(-50%, -50%) rotate(90deg);
}

.js--accordion-open.white_icon::before,
.js--accordion-open.white_icon::after {
    background: #ff7878;
}

.js--accordion-open.white_icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

@media screen and (max-width: 767px) {
    .ttl02::before {
        top: calc(50% - 2px);
    }

    .slick-dotted.slick-slider.doctor-slick .item {
        border: 1px solid #ff7878;
    }

    .white_icon::before,
    .white_icon::after {
        width: 10px;
        height: 1px;
    }

    .white_icon::before {
        right: 10px;
    }
}

/*ドクタースライダー*/

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: calc(50% - 21px);
    display: block;
    width: clamp(25px, 4vw, 40px);
    height: clamp(56px, 10.2vw, 102px);
    cursor: pointer;
    z-index: 4;
    background: url(../img/top/slick-arrow_next.jpg) center no-repeat;
    background-size: cover;
    outline: none;
    border: none;
}

.slick-prev {
    background: url(../img/top/slick-arrow_pre.jpg) center no-repeat;
    background-size: cover;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    opacity: 0.7;
}

.slick-prev {
    left: calc(50% - 364px);
}

.slick-next {
    right: calc(50% - 364px);
}

.slick-dots {
    position: relative;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: clamp(3px, 1.6vw, 16px);
    height: clamp(3px, 1.6vw, 16px);
    padding: 5px;
    cursor: pointer;
}

.slick-dots li:not(:last-child) {
    margin-right: clamp(25px, 5vw, 50px);
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 0;
    height: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: "slick";
    /* font-size: 35px; */
    /* line-height: 20px; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    text-align: center;
    opacity: 0.25;
    color: #493232;
    background: #493232;
    border-radius: 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all ease 0.3s;
    z-index: 10;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background: #ff7878;
}

@media screen and (max-width: 767px) {
    .slick-prev {
        left: -10px;
    }

    .slick-next {
        right: -10px;
    }
}

.js--ad_list {
    display: none;
}

.section_doctor {
    background: #FFF2F2;
}

/* ドクター紹介 ここまで =================================== */



/* クリニック一覧
======================================================= */
.section_clinic {
    background: #F2F5F9;
}
.clinic_map__wrap img {
    max-width: 750px;
}


/* reserve
======================================================= */
#reserve {
    background: #fff;
}

.web_line_box_border {
    border: solid 5px #e1e1e1;
    background: #f0f0f0;
    padding: 20px;
    margin: 40px 5px 40px;
}

.web_line_box h3 {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
    .web_line_box h3 {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.4;
    }
}

/* 予約フォーム用css */
.spf_frame_wrapper {
    margin-bottom: 0 !important;
}


/* footer
======================================================= */
footer {
    background-color: #fff;
}
#float_bnr {
    display: none !important;
}
/* TOPへ戻るボタン */
.foot_btn {
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 100;
    cursor: pointer;
    width: 60px;
}

@media only screen and (max-width: 767px) {
    .foot_btn {
        right: 15px;
        bottom: 20px;
    }
}