@charset "UTF-8";
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body {
    font-family: YakuHanJP, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: clamp(8px, 1.25vw, 16px);
    background: #fff;
    color: #3e4958;
    line-height: 1.5;
    letter-spacing: .1em;
    -webkit-font-smoothing: antialiased;
    overflow: visible !important;
}

a {
    color: #3e4958;
    text-decoration: none;
    transition: opacity .4s ease;
}
a:hover {
    opacity: .7;
}

a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}

.is--sp {
    display: none;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 3.73333vw;
    }
    a:hover {
        opacity: 1;
    }
    a[href^="tel:"] {
        pointer-events: auto;
        cursor: pointer;
    }
    .is--pc {
        display: none;
    }
    .is--sp {
        display: block;
    }
}

/*------------------------------------------
  layout
------------------------------------------*/
.l-main {
    overflow: hidden;
}

.l-inner {
    position: relative;
    max-width: 1220px;
    margin: auto;
    padding: 0 clamp(15px, 2.34375vw, 30px);
    box-sizing: content-box;
}

@media only screen and (max-width: 767px) {
    .l-inner {
        padding: 0 5.86667vw;
    }
}

/*------------------------------------------
  header
------------------------------------------*/
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.l-header:before {
    content: "";
    width: 100%;
    height: clamp(50px, 7.8125vw, 100px);
    background: rgba(255, 255, 255, .9);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .6s;
}
.l-header__inner {
    position: relative;
    height: clamp(105px, 16.40625vw, 210px);
    padding-left: clamp(25px, 3.90625vw, 50px);
    display: flex;
    align-items: center;
    transition: height .6s;
}
.l-header__logo {
    display: flex;
    align-items: center;
}
.l-header__logo .logo-img {
    width: 11.79688vw;
    max-width: 151px;
    transition: .6s;
}
.l-header__logo .logo-txt {
    width: 21.01562vw;
    max-width: 269px;
    height: 5.85938vw;
    max-height: 75px;
    margin-left: 24px;
    transition: .6s;
    background-image: url(../images/common/header-logo-txt-wh.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.l-header__trigger {
    width: 12.10938vw;
    max-width: 155px;
    position: absolute;
    top: clamp(12px, 1.875vw, 24px);
    right: clamp(20px, 3.125vw, 40px);
    cursor: pointer;
    z-index: 100;
}
.l-header__trigger .trigger-btn {
    display: flex;
    font-family: "EB Garamond", serif;
    font-weight: 700;
    font-size: clamp(9px, 1.40625vw, 18px);
    letter-spacing: 0;
    background: #00b6ff;
    color: #fff;
    border-radius: clamp(18px, 2.8125vw, 36px);
    height: clamp(26px, 4.0625vw, 52px);
    border: 1px solid #00b6ff;
    align-items: center;
    justify-content: center;
    transition: .6s;
}
.l-header__trigger .trigger-btn span {
    position: relative;
}
.l-header__trigger .trigger-btn span:after {
    content: "MENU";
}
.l-header__trigger:hover .trigger-btn {
    background: #fff;
    color: #59c2fb;
}
.l-header__trigger.is--active .trigger-btn {
    background: #fff;
    color: #59c2fb;
}
.l-header__trigger.is--active .trigger-btn span {
    padding-right: 2em;
    background: url(../images/common/header-close.png) no-repeat right center;
    background-size: clamp(8px, 1.32812vw, 17px);
}
.l-header__trigger.is--active .trigger-btn span:after {
    content: "CLOSE";
}
.l-header__menu {
    display: none;
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, .6);
}
.l-header__menu .menu-contents {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: clamp(400px, 62.5vw, 800px);
    height: 100vh;
    background: #59c2fb;
    -ms-overflow-y: auto;
        overflow-y: auto;
    transform: translateX(100%);
    transition: .6s;
    z-index: 1;
}
.l-header__menu .menu-close {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.l-header__menu.is--active .menu-contents {
    transform: translateX(0);
    transition: .6s .6s;
}
.l-header.is--fix:before {
    opacity: 1;
    transition: .6s .6s;
}
.l-header.is--fix .l-header__inner {
    height: clamp(50px, 7.8125vw, 100px);
}
.l-header.is--fix .l-header__logo .logo-img {
    width: 6.32812vw;
    max-width: 81px;
}
.l-header.is--fix .l-header__logo .logo-txt {
    width: 16.95312vw;
    max-width: 217px;
    height: 4.76562vw;
    max-height: 61px;
    margin-left: 20px;
    background-image: url(../images/common/header-logo-txt.png);
}

@media only screen and (max-width: 767px) {
    .l-header {
        position: absolute;
    }
    .l-header:before {
        content: none;
    }
    .l-header__inner {
        height: 24vw;
        padding-left: 1.86667vw;
    }
    .l-header__logo .logo-img {
        width: 19.2vw;
        max-width: 100%;
    }
    .l-header__logo .logo-txt {
        width: 35.73333vw;
        max-width: 100%;
        height: 10.13333vw;
        max-height: 100%;
        margin-left: 1em;
    }
    .l-header__trigger {
        width: 26.66667vw;
        max-width: 100%;
        top: 6.93333vw;
        right: 1.86667vw;
    }
    .l-header__trigger .trigger-btn {
        font-size: 4vw;
        border-radius: 9.33333vw;
        height: 9.33333vw;
    }
    .l-header__trigger:hover .trigger-btn {
        background: #59c2fb;
        color: #fff;
    }
    .l-header__trigger.is--active .trigger-btn {
        background: #fff;
        color: #59c2fb;
    }
    .l-header__trigger.is--active .trigger-btn span {
        padding-right: 1.2em;
        background-size: 3.2vw;
    }
    .l-header__menu .menu-contents {
        width: 100%;
    }
    .l-header.is--fix {
        position: absolute;
    }
    .l-header.is--fix .l-header__logo .logo-img {
        width: 19.2vw;
        max-width: 100%;
    }
    .l-header.is--fix .l-header__logo .logo-txt {
        width: 35.73333vw;
        max-width: 100%;
        height: 10.13333vw;
        max-height: 100%;
        margin-left: 1em;
        background-image: url(../images/common/header-logo-txt-wh.png);
    }
    .l-header.is--fix .l-header__trigger {
        position: fixed;
    }
}

.global-nav {
    width: 42.1875vw;
    max-width: 540px;
    padding: clamp(75px, 11.71875vw, 150px) 0 clamp(50px, 7.8125vw, 100px);
    margin: auto;
}
.global-nav a {
    color: #fff;
    display: block;
    position: relative;
}
.global-nav__list--main {
    margin-bottom: clamp(25px, 3.90625vw, 50px);
}
.global-nav__list--main li {
    margin-bottom: clamp(25px, 3.90625vw, 50px);
}
.global-nav__list--main li:last-child {
    margin-bottom: 0;
}
.global-nav__list--main a {
    display: flex;
    align-items: center;
}
.global-nav__list--main a:before {
    content: "";
    width: 120%;
    height: 160%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .6s;
}
.global-nav__list--main a:after {
    content: "";
    width: 1.09375vw;
    max-width: 14px;
    height: .9375vw;
    max-height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/common/arrow-r01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: .6s;
}
.global-nav__list--main a:hover {
    opacity: 1;
}
.global-nav__list--main a:hover:before {
    opacity: 1;
}
.global-nav__list--main a:hover:after {
    background-image: url(../images/common/arrow-r02.png);
}
.global-nav__list--main a:hover .menu-label {
    color: #59c2fb;
}
.global-nav__list--main a:hover .menu-label--en {
    border-color: #59c2fb;
}
.global-nav__list--main .menu-label {
    position: relative;
    z-index: 1;
    transition: color .6s;
}
.global-nav__list--main .menu-label--en {
    width: 48%;
    font-family: "EB Garamond", serif;
    font-size: clamp(13px, 2.03125vw, 26px);
    letter-spacing: 0;
    border-right: 1px solid #fff;
    line-height: 1.7;
}
.global-nav__list--main .menu-label--ja {
    width: 52%;
    font-size: clamp(9px, 1.40625vw, 18px);
    padding-left: 1em;
}
.global-nav__list--sns {
    display: flex;
    gap: 0 clamp(15px, 2.34375vw, 30px);
    justify-content: flex-end;
    margin-bottom: clamp(22px, 3.51562vw, 45px);
}
.global-nav__list--sns img {
    width: auto;
    height: 2.8125vw;
    max-height: 36px;
}
.global-nav__list--sub {
    display: flex;
    line-height: 1.1;
    padding: 1em 0 0;
    border-top: 1px solid #fff;
}
.global-nav__list--sub li {
    border-right: 1px solid #fff;
}
.global-nav__list--sub li:first-child a {
    padding-left: 0;
}
.global-nav__list--sub li:last-child {
    border-right: none;
}
.global-nav__list--sub li:last-child a {
    padding-right: 0;
}
.global-nav__list--sub a {
    padding: 0 1em;
}

@media only screen and (max-width: 767px) {
    .global-nav {
        width: 100%;
        max-width: 100%;
        padding: 24vw 5.33333vw 10.66667vw;
    }
    .global-nav__list--main {
        margin-bottom: 8vw;
    }
    .global-nav__list--main li {
        margin-bottom: 9.33333vw;
    }
    .global-nav__list--main a {
        display: block;
    }
    .global-nav__list--main a:before {
        content: none;
    }
    .global-nav__list--main a:after {
        width: 1.86667vw;
        max-width: 100%;
        height: 1.6vw;
        max-height: 100%;
    }
    .global-nav__list--main a:hover:after {
        background-image: url(../images/common/arrow-r01.png);
    }
    .global-nav__list--main a:hover .menu-label {
        color: #fff;
    }
    .global-nav__list--main a:hover .menu-label--en {
        border-color: #fff;
    }
    .global-nav__list--main .menu-label {
        display: block;
        line-height: 1.3;
        letter-spacing: 0;
    }
    .global-nav__list--main .menu-label--en {
        width: 100%;
        font-size: 7.46667vw;
        border: none;
    }
    .global-nav__list--main .menu-label--ja {
        width: 100%;
        font-size: 5.06667vw;
        padding-left: 0;
    }
    .global-nav__list--sns {
        gap: 0 5.33333vw;
        margin-bottom: 5.33333vw;
    }
    .global-nav__list--sns img {
        height: 6.66667vw;
        max-height: 100%;
    }
    .global-nav__list--sub {
        display: block;
        padding: 1.5em 0 0;
        letter-spacing: 0;
    }
    .global-nav__list--sub li {
        border-right: none;
        margin-bottom: 1em;
    }
    .global-nav__list--sub li:last-child {
        margin-bottom: 0;
    }
    .global-nav__list--sub a {
        padding: 0;
    }
}

/*------------------------------------------
  footer
------------------------------------------*/
.l-footer {
    background: #eef9ff;
    letter-spacing: 0;
}
.l-footer__info {
    padding: clamp(35px, 5.46875vw, 70px) 0 clamp(50px, 7.8125vw, 100px);
}
.l-footer__nav {
    border-top: 1px solid #59c2fb;
    padding: clamp(28px, 4.375vw, 56px);
}
.l-footer__copy {
    background: #59c2fb;
    text-align: center;
    color: #fff;
}
.l-footer .footer-logo {
    text-align: center;
    margin-bottom: clamp(20px, 3.125vw, 40px);
}
.l-footer .footer-logo img {
    width: 48.59375vw;
    max-width: 622px;
}
.l-footer .footer-clinic {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}
.l-footer .footer-clinic__item {
    display: block;
    width: 33.333%;
    padding: 0 clamp(19px, 2.96875vw, 38px);
    border-right: 1px solid #59c2fb;
}
.l-footer .footer-clinic__item:first-child {
    border-left: 1px solid #59c2fb;
}
.l-footer .footer-clinic__item .item-label {
    text-align: center;
    background: #fff;
    font-size: 106.25%;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    border-radius: 22px;
    padding: .5em 0;
    margin-bottom: 1em;
}
.l-footer .footer-clinic__item .item-address {
    text-align: center;
    min-height: 3em;
    margin: 1em 0 .5em;
}
.l-footer .footer-clinic__item .item-tel {
    font-weight: bold;
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: clamp(11px, 1.79688vw, 23px);
}
.l-footer .footer-clinic__item .item-tel a {
    font-size: 130%;
}
.l-footer .footer-clinic__item .item-info {
    margin-top: 1em;
}
.l-footer .footer-clinic__item .item-info th {
    white-space: nowrap;
    text-align: right;
}
.l-footer .footer-clinic__item .item-info td {
    padding-left: 1em;
}
.l-footer .footer-clinic__item .item-info td span {
    font-size: 81.25%;
}
.l-footer .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
.l-footer .footer-nav li {
    border-right: 1px solid #3e4958;
}
.l-footer .footer-nav li:last-child {
    border-right: none;
}
.l-footer .footer-nav a {
    display: block;
    padding: 0 1em;
    line-height: 1.1;
}
.l-footer .footer-copy {
    font-size: 93.75%;
    padding: 1.2em 0;
}

@media only screen and (max-width: 767px) {
    .l-footer__info {
        padding: 9.33333vw 0 0;
    }
    .l-footer__nav {
        padding: 8vw 0;
    }
    .l-footer .footer-logo {
        margin-bottom: 5.33333vw;
    }
    .l-footer .footer-logo img {
        width: 79.2vw;
    }
    .l-footer .footer-clinic {
        display: block;
    }
    .l-footer .footer-clinic__item {
        width: 100%;
        padding: 0 2.66667vw 5.33333vw;
        margin-bottom: 5.33333vw;
        border-right: none;
        border-bottom: 1px solid #59c2fb;
    }
    .l-footer .footer-clinic__item:first-child {
        border-left: none;
    }
    .l-footer .footer-clinic__item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    .l-footer .footer-clinic__item .item-label {
        width: 60vw;
        margin: 0 auto 1.33333vw;
        font-size: 100%;
    }
    .l-footer .footer-clinic__item .item-img {
        padding: 0 5.33333vw;
    }
    .l-footer .footer-clinic__item .item-address {
        min-height: auto;
        margin: .5em 0 0;
    }
    .l-footer .footer-clinic__item .item-tel {
        font-size: 5.86667vw;
    }
    .l-footer .footer-clinic__item .item-tel a {
        font-size: 111%;
    }
    .l-footer .footer-clinic__item .item-info {
        margin: .5em auto 0;
    }
    .l-footer .footer-clinic__item .item-info td span {
        font-size: 100%;
    }
    .l-footer .footer-nav {
        display: block;
    }
    .l-footer .footer-nav li {
        border-right: none;
        margin-bottom: 1em;
    }
    .l-footer .footer-nav li:last-child {
        border-right: none;
        margin-bottom: 0;
    }
    .l-footer .footer-nav a {
        padding: 0;
    }
    .l-footer .footer-copy {
        font-size: 2.66667vw;
    }
}

/*------------------------------------------
  project
------------------------------------------*/
/* ========== hoge ========== */
/*------------------------------------------
  component
------------------------------------------*/
/* ========== ttl ========== */
.c-ttl01 {
    position: relative;
}
.c-ttl01 .ttl-label--en {
    display: block;
    font-family: "EB Garamond", serif;
    font-size: clamp(49px, 7.65625vw, 98px);
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 400;
}
.c-ttl01 .ttl-label--ja {
    display: inline-block;
    background: #fff;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: clamp(11px, 1.71875vw, 22px);
    padding: .4em 1em;
}

@media only screen and (max-width: 767px) {
    .c-ttl01 .ttl-label--en {
        font-size: 14.93333vw;
    }
    .c-ttl01 .ttl-label--ja {
        font-size: 4.26667vw;
        padding: .4em 1em;
    }
}

/* ========== btn ========== */
.c-btn01 {
    position: relative;
    display: flex;
    align-items: center;
    height: 5.07812vw;
    max-height: 65px;
    letter-spacing: 0;
    min-width: clamp(131px, 20.46875vw, 262px);
    max-width: 100%;
    font-size: clamp(10px, 1.5625vw, 20px);
    padding: 0 clamp(23px, 3.59375vw, 46px);
    background: #dcb78f;
    border: 1px solid #dcb78f;
    color: #fff;
    border-radius: clamp(16px, 2.5vw, 32px);
    transition: .3s;
}
.c-btn01:after {
    content: "";
    width: .78125vw;
    max-width: 10px;
    height: .625vw;
    max-height: 8px;
    position: absolute;
    right: 2em;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/common/arrow-r01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: .3s;
}
.c-btn01:hover {
    opacity: 1;
    background: #fff;
    color: #dcb78f;
}
.c-btn01:hover:after {
    background-image: url(../images/common/arrow-r03.png);
}
.c-btn01.link:after {
    width: 1.25vw;
    max-width: 16px;
    height: 1.25vw;
    max-height: 16px;
    background-image: url(../images/common/ico-link01.png);
}
.c-btn01.link:hover:after {
    background-image: url(../images/common/ico-link02.png);
}
.c-btn01 span {
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .c-btn01 {
        height: 11.2vw;
        max-height: 100%;
        min-width: auto;
        width: 100%;
        font-size: 3.2vw;
        padding: 0 4vw;
        border-radius: 11.2vw;
        letter-spacing: 0;
    }
    .c-btn01:after {
        width: 1.33333vw;
        max-width: 100%;
        height: 1.06667vw;
        max-height: 100%;
        right: 1.5em;
    }
    .c-btn01:hover {
        background: #dcb78f;
        color: #fff;
    }
    .c-btn01:hover:after {
        background-image: url(../images/common/arrow-r01.png);
    }
    .c-btn01.link:after {
        width: 2.66667vw;
        max-width: 100%;
        height: 2.66667vw;
        max-height: 100%;
    }
    .c-btn01.link:hover:after {
        background-image: url(../images/common/ico-link01.png);
    }
}

/* ========== lead ========== */
.c-lead {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: clamp(10px, 1.5625vw, 20px);
    margin-top: 1em;
    letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
    .c-lead {
        font-size: 4vw;
    }
}

/* ========== hoge ========== */
/* ========== deco ========== */
.c-deco {
    position: absolute;
    width: clamp(190px, 29.76562vw, 381px);
    -webkit-animation: fuwafuwa infinite 5s;
            animation: fuwafuwa infinite 5s;
}

@-webkit-keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3em);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3em);
    }
    100% {
        transform: translateY(0);
    }
}

@media only screen and (max-width: 767px) {
    .c-deco {
        width: 50.66667vw;
    }
    @-webkit-keyframes fuwafuwa {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(2em);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes fuwafuwa {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(2em);
        }
        100% {
            transform: translateY(0);
        }
    }
}

/* ========== animation ========== */
.delay2 {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
}

.delay3 {
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
}

.fadeIn {
    opacity: 0;
}
.fadeIn.js-scr-active {
    opacity: 1;
    transition: 1s;
}

.fadeInUp {
    opacity: 0;
    transform: translateY(3em);
}
.fadeInUp.js-scr-active {
    opacity: 1;
    transform: translateY(0);
    transition: 1s;
}

/* ========== modal ========== */
.js-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, .6);
    z-index: 1000;
}
.js-modal__outer {
    display: table;
    width: 100%;
    height: 100vh;
    height: 100dvh;
}
.js-modal__in {
    display: table-cell;
    vertical-align: middle;
    padding: 40px;
}
.js-modal__content {
    position: relative;
    background: #fff;
    width: clamp(500px, 78.125vw, 1000px);
    margin: auto;
    box-sizing: border-box;
    border-radius: 20px;
}
.js-modal__open {
    cursor: pointer;
}
.js-modal__close {
    cursor: pointer;
    width: 3.82812vw;
    max-width: 49px;
    position: absolute;
    top: clamp(-22px, -1.71875vw, 11px);
    right: clamp(-22px, -1.71875vw, 11px);
}

@media only screen and (max-width: 767px) {
    .js-modal__in {
        padding: 10.66667vw 5.86667vw;
    }
    .js-modal__content {
        width: 100%;
        border-radius: 10px;
    }
    .js-modal__close {
        width: 8.53333vw;
        max-width: 100%;
        top: -3.2vw;
        right: -3.2vw;
    }
}