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

common

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

.top-news__title h2 {
    letter-spacing: .15em;
    font-weight: 300;
}

.common-top-subtitle {
    text-align: center;
}

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

top-view

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

.header-top {
    padding-top: 16px;
    position: relative;
}

.top-view__thumb {
    margin: 0 auto;
    width: 1600px;
}

.top-view__thumb img {
    display: block;
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.top-view__thumb-sp {
    display: none;
}

.top-view__txt {
    bottom: 120px;
    position: absolute;
    left: 40px;
}

.top-view__txt h2 {
    font-size: 44px;
    font-weight: 300;
    letter-spacing: .1em;
}

.top-view__txt p {
    font-size: 24px;
    letter-spacing: .08em;
    padding-top: 16px;
}

.top-view__txt a.topViewBtn{
    border: 1px solid #ffffff;
    border-radius: 40px;
    display: block;
    font-size: 18px;
    margin: 40px auto 0 auto;
    letter-spacing: .2em;
    padding: 12px 16px 14px 16px;
    text-align: center;
    transition: all 0.5s 0s ease;
    width: 240px;
}

.top-view__txt a.topViewBtn:hover {
    background: rgba(255,255,255,.4);
}

@media screen and (max-width: 1800px) {
    .top-view__thumb {
        width: 1120px;
    }
}

@media screen and (max-width: 1120px) {
    .top-view__thumb {
        width: 800px;
    }
}

@media screen and (max-width: 680px) {

    .top-view__thumb {
        display: none;
    }
    .top-view__thumb-sp {
        display: block;
        margin: 0 auto;
        width: 85vw;
    }

    .top-view__thumb-sp img {
        display: block;
        object-fit: contain;
        height: 100%;
        width: 100%;
    }

    .top-view__txt {
        bottom: -20vw;
        left: 3.2vw;
        width: 90vw;
    }

    .top-view__txt h2 {
        font-size: 7.2vw;
    }

    .top-view__txt p {
        font-size: 4.0vw;
        padding-top: 2.1vw;
    }

    .top-view__txt a.topViewBtn {
        margin: 16vw auto 0 auto;
        width: 60vw;
    }

}

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

news

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

.top-news {
    padding: 80px 0;
}

.top-news__box {
    display: flex;
}

.top-news__title {
    width: 160px;
}

.top-news__box ul li {
    padding-bottom: 16px;
}

.top-news__box ul li:last-child {
    padding-bottom: 0;
}

.top-news__box ul li a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 680px) {
    .top-news {
        padding: 32vw 0 16vw 0;
    }
    .top-news__box {
        align-items: center;
        flex-direction: column;
        row-gap: 4.8vw;
    }
    .top-news__title {
        text-align: center;
        width: 100%;
    }
    .top-news__box ul li {
        padding-bottom: 2.1vw;
    }
}

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

overview

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

.top-overview__box {
    align-items: center;
    display: flex;
}

.top-overview__thumb {
    width: 540px;
}

.top-overview__thumb img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.top-overview__txt h2 {
    font-weight: 400;
    font-size: 32px;
    letter-spacing: .15em;
}

.top-overview__txt {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    margin: 0 auto;
    width: 400px;
}


@media screen and (max-width: 680px) {
    .top-overview__box {
        flex-direction: column-reverse;
        row-gap: 4.8vw;
    }

    .top-overview__txt {
        width: 100%;
    }

    .top-overview__thumb {
        width: 100%;
    }

    .top-overview__txt h2 {
        text-align: center;
        font-size: 6.8vw;
    }
}

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

value

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

.top-value {
    padding-top: 80px;
    padding-bottom: 40px;
}

.top-valu__title {
    text-align: center;
}

.top-value__list {
    column-gap: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 64px;
    margin-top: 56px;
    margin-bottom: 72px;
}

.top-value__box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 320px;
}

.top-value__box-title {
    text-align: center;
}

.top-value__box-title p {
    font-size: 24px;
    color: #afafaf;
    margin-bottom: 8px;
}

.top-value__box-txt {
    margin-top: 8px;
}

.top-value__box .top-value__box-num {
    text-align: center;
}

.top-value__box .top-value__box-num h2 {
    color: #afafaf;
    display: inline-block;
    font-size: 40px;
    padding: 0 120px;
    position: relative;
    font-weight: 200;
}

.top-value__box .top-value__box-num h2:before,
.top-value__box .top-value__box-num h2:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 100px;
    height: 1px;
    background-color: #afafaf;
}

.top-value__box .top-value__box-num h2:before {
    left:0;
}
.top-value__box .top-value__box-num h2:after {
    right: 0;
}

.top-value__txt {
    text-align: center;
}

.top-value__txt p {
    font-size: 14px;
}

@media screen and (max-width: 680px) {
    .top-valu__title h3 {
        font-size: 6.8vw;
        line-height: 8.8vw;
    }
    .top-value__list {
        margin-top: 12vw;
        row-gap: 10vw;
        margin-bottom: 8vw;
    }
    .top-value__box {
        width: 90vw;
    }
    .top-value__box-title h4 {
        font-size: 5.8vw;
    }
    .top-value__txt {
        text-align: left;
    }  
}

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

cation

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

.top-cation {
    height: 480px;
    width: 100%;
}

.top-cation img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.top-cation-sp {
    display: none;
}

@media screen and (max-width: 680px) {
    .top-cation {
        display: none;
    }
    .top-cation-sp {
        display: block;
        height: 100vw;
        width: 100%;
    }
    .top-cation-sp img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
}

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

artist

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

.top-artist {
    padding-top: 120px;
}

.top-artist__list {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 40px;
}

.top-artist__list-title {
    text-align: center;
    margin-top: 64px;
}

.top-artist__box {
    width: 400px;
}

.top-artist__thumb {
    width: 400px;
}

.top-artist__thumb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.top-artist__txt {
    margin-top: 8px;
}

.top-artist__txt h5 {
    font-weight: 200;
    text-align: center;
}

.top-artist__txt h5 a svg {
    font-size: 22px;
}

@media screen and (max-width: 680px) {
    .top-artist__list {
        flex-direction: column;
        row-gap: 12vw;
        margin-top: 4vw;
    }

    .top-artist__box {
        width: 90vw;
    }

    .top-artist__thumb {
        width: 90vw;
    }

}

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

doctor

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

.top-doctor {
    padding-top: 120px;
}

.top-doctor__list {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.top-doctor__thumb {
    width: 400px;
}

.top-doctor__thumb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.top-doctor__txt {
    border: 1px solid #afafaf;
    padding: 40px;
    width: 320px;
}

.top-doctor__txt dl.title {
    padding-top: 80px;
}

.top-doctor__txt dl dt,
.top-doctor__txt dl dd {
    padding-bottom: 6px;
}

.top-doctor__title {
    margin-top: 40px;
}

.top-doctor__title h5 {
    font-weight: 200;
    text-align: center;
}

.top-doctor__title-sp {
    display: none;
}

.top-doctor__title a {
    margin-left: 8px;
}

@media screen and (max-width: 680px) {
    .top-doctor__list {
        align-items: center;
        flex-direction: column;
        row-gap: 4.0vw;
    }
    .top-doctor__thumb {
        width: 90vw;
    }

    .top-doctor__txt {
        width: 84vw;
        padding: 2.1vw;
    }

    .top-doctor__title {
        display: none;        
    }

    .top-doctor__title-sp {
        display: block;
        text-align: center;
    }
    
    .top-doctor__title-sp h5 {
        font-size: 4.8vw;
    }
    .top-doctor__title-sp a {
        margin-left: 8px;
    }

}

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

case

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

.top-case {
    padding-top: 120px;
}

.top-case__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 64px;
    row-gap: 64px;
}

.top-case__thumb {
    width: 400px;
}

.top-case__thumb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 680px) {
    .top-case__list {
        margin-top: 10vw;
        row-gap: 12vw;
    }
}

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

price

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

.top-price {
    padding-top: 120px;
}

.top-price__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 64px;
    row-gap: 64px;
}

.top-price__box {
    width: 400px;
}

.top-price__title h5 {
    border: 1px solid #afafaf;
    text-align: center;
    padding: 16px;
}

.top-price__detail dl {
    border-bottom: 1px solid #afafaf;
    display: flex;
    justify-content: space-between;
    padding: 24px 16px;
}

.top-price__detail dl dt {
    text-align: center;
    width: 200px;
}

.top-price__detail dl dd.count {
    width: 172px;
}

.top-price__detail dl dd.count span.red,
.top-price__box p span.red,
.top-price__detail dl dd span.red {
    color:  #E76565;
}

.top-price__detail dl dd span.small {
    font-size: 12px;
}

.top-price__detail dl dd span.line {
    text-decoration: line-through; 
}

.top-price__box p.price-txt {
    margin-top: 24px;
}

@media screen and (max-width: 680px) {
    .top-price__box {
        width: 90vw;
    }
    .top-price__list {
        padding-top: 10vw;
    }
    .top-price__detail dl dd {
        text-align: right;
        width: 45vw;
    }
    .top-price__detail dl dd.count {
        text-align: left;    
        width: 42vw;
    }
    .top-price__detail dl {
        padding: 5.4vw 3.2vw;
    }
}

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

flow

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

.top-flow {
    display: flex;
    margin: 0 auto;
    padding: 40px 0 0 0;
}

.top-flow__list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}

.top-flow__box {
    align-items: center;
    border-left: 1px solid #afafaf;
    display: flex;
    column-gap: 8px;
    padding: 8px 0 8px 32px;
}

.top-flow__box h2 {
    color: #afafaf;
    font-size: 38px;
}

.top-flow__box p {
    font-size: 20px;
}

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

note

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

.top-note {
    padding-top: 120px;
}

.top-note__list {
    padding-top: 56px;
}

.top-note__box {
    padding-bottom: 40px;
}

.top-note__box dl dt,
.top-note__box dl dd {
    padding-bottom: 12px;
}

.top-note__box:last-child {
    padding-bottom: 0px;
}

@media screen and (max-width: 680px) {
    .top-note__list {
        padding-top: 10vw;
    }
}

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

faq

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

.top-faq {
    padding: 120px 0;
}

.top-faq__list {
    padding-top: 56px;
}

.top-faq__box {
    border-bottom: 1px solid #afafaf;
    padding: 40px 0;
}

.top-faq__box h5 {
    padding-bottom: 16px;
}

@media screen and (max-width: 680px) {
    .top-faq__list {
        padding-top: 0;
    }
}

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

reservation

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

.top-reservation__box {
    border: 1px solid #afafaf;
    padding: 64px 40px;
}

.top-reservation__txt {
    text-align: center;
    padding: 16px 0 32px 0;
}

.top-reservation__txt p br {
    display: none;
}

.top-reservation__list {
    display: flex;
    justify-content: center;
    column-gap: 24px;
}

.top-reservation__btn {
    align-items: center;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 320px;
}

.top-reservation__btn a {
    border: 1px solid #afafaf;
    border-radius: 40px;
    display: block;
    padding: 10px 0;
    text-align: center;
    width: 256px;
}

.top-reservation__btn a:hover {
    background: rgba(255,255,255,.4);
}

@media screen and (max-width: 680px) {
    .top-reservation__list {
        flex-direction: column;
        row-gap: 4.8vw;
    }
    .top-reservation__btn {
        width: 100%;
    }
    .top-reservation__box {
        padding: 10vw;
        flex-direction: column;
        display: flex;
        align-items: center;
    }
    .top-reservation__btn a {
        width: 70vw;
    }
    .top-reservation__txt p br {
        display: block;
    }
}

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

access

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

.top-access {
    padding: 120px 0;
}

.top-access__list {
    display: flex;
    justify-content: space-between;
    padding-top: 56px;  
    padding-bottom: 40px;  
}

.top-access__txt {
    align-items: center;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.top-access__txt p br {
    display: none;
}

.top-access__box {
    align-items: center;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 504px;
}

.top-access__box iframe {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    height: 320px;
    width: 440px;
}

.top-access p {
    text-align: center;
}

@media screen and (max-width: 680px) {

    .top-access {
        padding: 120px 0 0 0;
    }

    .top-access__list {
        flex-direction: column;
        row-gap: 12vw;
    }

    .top-access__box {
        width: 100%;
    }

    .top-access__box iframe {
        height: 80vw;
        width: 100%;
    }

    .top-access__txt p br {
        display: block;
    }

}

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

instagram

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

.top-instagram {
    padding: 120px 0 80px 0;
}

.top-instagram-list {
    padding-top: 40px;
}

.top-instagram .common-top-subtitle h3 a {
    margin-left: 8px;
}

.top-instagram .common-top-subtitle h3 a svg {
    font-size: 22px;
}


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

splash

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


/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: #0a0a0a;
    text-align: center;
}


/* Loading画像中央配置　*/

#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Loading アイコンの大きさ設定　*/

#splash_logo img {
    width: 80px;
}


/* fadeUpをするアイコンの動き */

.fadeUp {
    animation-name: fadeInAnime;
    animation-duration: 3s;
    animation-fill-mode: backwards;
    animation-timing-function: ease;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}