@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

body {
    font-size: 1.2rem;
    line-height: 1.7;
    background-color: #fff;
    color: #333;
    z-index: 900;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-style: normal;
    font-weight: 400;


}

li {
    list-style: none;
    display: inline-block;
}

a {
    text-decoration: none;
    display: inline-block;
    color: #333;
    display: block;
}

img {
    max-width: 100%;
    line-height: 1px;
}

p {
    text-align: justify;
}


.more-btn {
    width: 50%;
    height: 50px;
    display: flex;
    align-items: baseline;
    font-size: 1.3rem;
    text-align: center;
    justify-content: center;
    line-height: 50px;
    color: #f5f3f2;
    margin: 0 auto;
    border: solid 1px #333;
    transition: 0.3s;
    font-family: 'PT Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
}

.more-btn::after {
    content: "";
    width: 30px;
    height: 5px;
    position: relative;
    border-bottom: solid 2px;
    border-right: solid 2px;
    transform: skew(45deg);
    color: #333;
    position: relative;
    left: -60px;
}

.more-btn:hover {
    background: rgb(243, 177, 78);
    border: none;
}


.more-btn a {
    width: 100%;
    margin-right: 5px;

}

.more-btn::after:hover {
    color: #fff;
}

.mainvisual_img_pc {
    position: fixed;
    top: 5vh;
    left: 0;
    right: 0;
    width: 95%;
    height: 90vh;
    line-height: 1px;
    vertical-align: bottom;
    z-index: -5;
    margin: auto;
    align-items: center;
}

.mainvisual_img_pc img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*----header----*/
.flex-box {
    width: 100%;
    height: 90px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 10px 3%;
    background-color: rgba(255, 255, 255, 0);

}

#header .logo img {
    height: 70px;
    line-height: 70px;
}

#header .logo a {
    display: block;
    height: 70px;
}

#header .sp-navi ul {
    display: flex;
    justify-content: flex-end;
    font-size: 1.4rem;
    line-height: 70px;
    margin: 0;
}

#header .sp-navi ul li {
    margin-right: 30px;
    font-family: 'PT Sans', sans-serif;
    font-style: normal;
    font-weight: 700;

}

#header .sp-navi ul li:hover {
    opacity: 0.7;
    transition: 0.5s;
}

#header .sp-navi ul li:last-child {
    margin-right: 0;
}


/*ハンバーガー*/
#header .hamburger {
    position: absolute;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 20px;
    right: 5%;
    z-index: 160;
    cursor: pointer;
    transition: 0.3s;
    opacity: 1;
}

.hamburger:hover {
    opacity: 0.7;
}


/* ハンバーガーメニューの線の設定（メニューが閉じている時） */
#header .hamburger span {
    display: block;
    width: 40px;
    height: 2px;
    background: #333;
    transition: 0.5s ease-in-out;

}

/* 1本目の線の位置を設定 */
#header .hamburger span:nth-child(1) {
    display: block;
    position: absolute;
    top: 7px;

}

/* 2本目の線の位置を設定 */
#header .hamburger span:nth-child(2) {
    position: absolute;
    top: 19px;
}

/* 3本目の線の位置を設定 */
#header .hamburger span:nth-child(3) {
    position: absolute;
    bottom: 7px;
}



/*
メニューの設定
最初は閉じている状態なので、「opacity: 0;」「visibility: hidden;」
で要素を非表示にしておく
*/
#navi {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    color: #333;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 140;
    text-align: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: hidden;
    padding: 100px 30px 0;
    opacity: 1;
    visibility: visible;
}

#navi ul {
    text-align: center;
}

#navi ul li {
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5;
    display: block;
    font-size: 1.5rem;
    font-family: 'PT Sans', sans-serif;
    font-style: normal;
    font-weight: 700;

}

#navi ul li a {
    display: block;
}

#header #navi {
    opacity: 0;
    visibility: hidden;
}

#header .hamburger {
    opacity: 0;
    visibility: hidden;
}





/*----footer----*/
#footer {
    background-color: rgb(236, 236, 236);
    line-height: 1px;
    padding: 80px 8%;

}


#footer .footer-flex {
    align-items: center;
    height: auto;
    display: flex;
    justify-content: center;
}

#footer .logo {
    width: 20%;
    text-align: left;
    height: auto;
    line-height: 1px;
    color: #fff;
}

#footer .sns {
    display: flex;
    justify-content: center;
    height: 80px;
}

#footer .sns a img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

#footer .sns a {
    display: inline-block;
    margin-left: 15px;
}

/*スライドイン*/
.fadeIn_up {
    opacity: 0;
    transform: translate(0, 0);
    transition: 1.5s;
}

.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.table,
.contents,
.anime_wrapper {
    opacity: 0;
    transition: 1.5s;
}

.table.is-show,
.contents.is-show,
.anime_wrapper.is-show {
    opacity: 1;
}


body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* 背景カラー */
    z-index: 9999;
    /* 一番手前に */
    pointer-events: none;
    /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
    opacity: 0;
    /* 初期値 : 透過状態 */
    -webkit-transition: opacity .8s ease;
    /* アニメーション時間は 0.8秒 */
    transition: opacity .8s ease;
}


body.fadeout::after {
    opacity: 1;
}

/*--トップへ戻るボタン--*/
/*
右下に固定で配置
表示・非表示の切り替えはjQueryで行うため、詳細は「main.js」のコメントを参照
*/
#to-top {
    width: 110px;
    height: 110px;
    position: fixed;
    right: 30px;
    bottom: 60px;
}

#to-top img {
    width: 100%;
    height: auto;
    object-fit: contain;
}




@media screen and (min-width: 601px) and (max-width: 1023px) {

    /*共通*/

    .site-bg .top-text {
        font-size: 1.9rem;
        text-align: center;
        font-weight: bold;
        align-items: center;
        position: absolute;
        top: 44%;
        left: 0;
        right: 0;
    }


    #main {
        width: 100%;
        display: block;
        background-color: #fff;
        padding: 200px 0;
    }


    /*about-contact*/

    #about,
    #contact {
        display: flex;
        justify-content: center;
        margin-bottom: 200px;
    }

    #about .about-left,
    #contact .contact-left {
        width: 40%;
        align-items: center;
        padding: 0 3% 0 0;
    }

    #about .about-left .sec-title,
    #contact .contact-left .sec-title {
        font-size: 4.0rem;
        border-bottom: solid 3px rgb(237, 126, 0);
        line-height: 1;
        margin-bottom: 80px;
        font-family: 'PT Sans', sans-serif;
        font-style: normal;
        font-weight: 700;

    }

    #about .about-left .sec-text,
    #contact .contact-left .sec-text {
        overflow-wrap: break-word;
        margin-bottom: 80px;
        font-size: 1.0rem;
        letter-spacing: 0.06em;
        line-height: 1.2;
        padding: 0 5%;

    }

    #about .about-right,
    #contact .contact-right {
        width: 45%;
        text-align: right;

    }

    #about .about-right img,
    #contact .contact-right img {
        line-height: 1px;
        width: auto;
        height: 100%;
        vertical-align: bottom;
        object-fit: cover;

    }

    #contact {
        margin-bottom: 0;
    }



    /*like*/

    #like {
        width: 80%;
        display: flex;
        justify-content: center;
        margin: 0 auto 0;
        align-items: flex-start;
    }

    .contents {
        -webkit-transform: rotate(3deg) translate3d(0, 0, 0);
        margin-left: -25%;
        position: relative;
        transform: rotate(3deg) translate3d(0, 0, 0);
        width: 150%;
        background: rgb(237, 126, 0);
        padding: 100px 5%;
        margin-bottom: 200px;
    }

    .contents_inner {
        -webkit-transform: rotate(-3deg) translate3d(0, 0, 0);
        color: #fff;
        margin: 0 auto;
        max-width: 100%;
        transform: rotate(-3deg) translate3d(0, 0, 0);
        width: 1000px;
    }


    #like .like-right {
        width: 44%;
        align-items: center;
        padding: 0 0 0 3%;
    }

    #like .like-right .sec-title {
        font-size: 4.0rem;
        border-bottom: solid 3px #fff;
        line-height: 1;
        margin-bottom: 80px;
        color: #fff;
    }

    #like .like-right .sec-text {
        overflow-wrap: break-word;
        margin-bottom: 80px;
        font-size: 1.0rem;
        letter-spacing: 0.06em;
        line-height: 1.2;
        color: #fff;
        padding: 0 5%;

    }

    #like .like-left {
        width: 45%;

    }

    #like .like-left img {
        line-height: 1px;
        width: auto;
        height: 100%;
        position: relative;
        left: 0;
        vertical-align: bottom;
        object-fit: cover;

    }

    .more-btn {
        width: 65%;
    }



    .more-btn a {
        width: 100%;
        margin-right: 5px;

    }

    .more-btn::after:hover {
        color: #fff;
    }

    .contents .more-btn {
        width: 58%;
        height: 50px;
        display: flex;
        align-items: baseline;
        font-size: 1.3rem;
        text-align: center;
        justify-content: center;
        line-height: 50px;
        color: #f5f3f2;
        margin: 0 auto;
        border: solid 1px #fff;
        transition: 0.5s;

    }

    .contents .more-btn:hover {
        background: #fff;
        border: none;
    }


    .contents .more-btn a {
        width: 100%;
        margin-right: 5px;
        color: #fff;
    }

    .contents .more-btn a:hover {
        color: rgb(237, 126, 0);
    }

    .contents .more-btn::after {
        content: "";
        width: 30px;
        height: 5px;
        position: relative;
        border-bottom: solid 2px;
        border-right: solid 2px;
        transform: skew(45deg);
        color: #fff;
        position: relative;
    }

    .contents .more-btn:hover::after {
        color: rgb(237, 126, 0);
    }






    /*----------like----------*/
    .wrap {
        display: flex;
        align-items: center;
        height: auto;
        overflow: hidden;
        position: relative;
        top: -18px;
        margin-bottom: -18px;
    }

    #like_main .contents .contents_inner .sauna_wrapper,
    #like_main .anime_wrapper {
        margin-bottom: 150px;
    }

    #like_main .contents .contents_inner .sauna_wrapper h2 {
        margin-bottom: 100px;
        display: block;
        border-bottom: solid 3px #fff;
        font-size: 3.5rem;
        line-height: 1.5;
        color: #fff;
        font-weight: bold;
    }

    #like_main .contents .contents_inner .sauna_wrapper .recomend {
        width: 100%;
        text-align: center;
        margin: 50px auto 50px;
        display: block;
        font-size: 2.4rem;
        border: none;
        line-height: 1;
        color: #fff;
        font-weight: bold;
        position: relative;
        display: inline-block;
        padding: 0 50px;
    }

    #like_main .contents .contents_inner .sauna_wrapper .recomend::before {
        content: "";
        width: 180px;
        height: 5px;
        background-color: #fff;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 15%;
        background: linear-gradient(-90deg, #fff, transparent);
    }

    #like_main .contents .contents_inner .sauna_wrapper .recomend::after {
        content: "";
        width: 180px;
        height: 5px;
        background-color: #fff;
        color: #fff;
        position: absolute;
        top: 50%;
        display: inline-block;
        right: 15%;
        background: linear-gradient(90deg, #fff, transparent);

    }


    #like_main .contents .contents_inner .sauna_wrapper .go {
        width: 100%;
        text-align: center;
        margin: 150px auto 50px;
        display: block;
        font-size: 2.4rem;
        border: none;
        line-height: 1;
        color: #fff;
        font-weight: bold;
        position: relative;
        display: inline-block;
        padding: 0 50px;

    }

    #like_main .contents .contents_inner .sauna_wrapper .go::before {
        content: "";
        width: 180px;
        height: 5px;
        background-color: #fff;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 15%;
        background: linear-gradient(-90deg, #fff, transparent);
    }

    #like_main .contents .contents_inner .sauna_wrapper .go::after {
        content: "";
        width: 180px;
        height: 5px;
        background-color: #fff;
        color: #fff;
        position: absolute;
        top: 50%;
        display: inline-block;
        right: 15%;
        background: linear-gradient(90deg, #fff, transparent);

    }


    #like_main .anime_wrapper h2 {
        text-align: right;
        border-bottom: solid 3px rgb(237, 126, 0);
        color: #333;
        margin-bottom: 100px;
        display: block;
        font-size: 3.5rem;
        line-height: 1.5;
        color: rgb(243, 155, 23);
        font-weight: bold;
    }



    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex,
    #like_main .anime_wrapper .anime_flex {
        display: flex;
        justify-content: space-between;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li {
        width: 31%;
        text-align: center;
        color: #fff;
    }

    #like_main .anime_wrapper .anime_flex li {
        width: 31%;
        text-align: center;
        color: #333;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li h3,
    #like_main .anime_wrapper .anime_flex li h3 {
        font-size: 1.3rem;
        line-height: 1;
        margin-top: 20px;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li h3 span,
    #like_main .anime_wrapper .anime_flex li h3 span {
        font-size: 1.0rem;
        margin-top: 10px;
    }


    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .crown {
        width: 100px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .list_img {
        width: 200px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
        object-position: 50% 50%;
        /*-webkit-filter: grayscale(100%);*/
        box-shadow: 2px 2px 14px rgba(39, 39, 39, 0.4);

    }

    #like_main .anime_wrapper .anime_flex li .list_img {
        width: 200px;
        height: 130px;
        object-fit: cover;
        border-radius: 5%;
        object-position: 50% 50%;
        /*-webkit-filter: grayscale(100%);*/
        box-shadow: 2px 2px 14px rgba(39, 39, 39, 0.4);

    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .list_img:hover,
    #like_main .anime_wrapper .anime_flex li .list_img:hover {
        transform: scale(1.1);
        transition: 0.5s;
        /*-webkit-filter: grayscale(0);*/

    }



    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .list_text,
    #like_main .anime_wrapper .anime_flex li .list_text {
        overflow-wrap: break-word;
        padding: 20px 30px;
        font-size: 1.0rem;
        line-height: 1.3;
        border: solid 2px #fff;
        margin-top: 30px;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li h3.margin {
        margin-top: 36px;
        font-size: 1.3rem;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .tenperture,
    #like_main .anime_wrapper .anime_flex li .tenperture {
        text-align: center;
        font-size: 0.9rem;

    }

    .credit {
        font-size: 0.6rem;
        text-align: center;
        color: #fff;
    }

    #like_main .contents {
        -webkit-transform: rotate(0) translate3d(0, 0, 0);
        margin-left: -25%;
        position: relative;
        transform: rotate(0) translate3d(0, 0, 0);
        width: 150%;
        background: rgb(237, 126, 0);
        padding: 100px 0;
        margin-bottom: 200px;
    }

    #like_main .contents_inner {
        -webkit-transform: rotate(0) translate3d(0, 0, 0);
        color: #fff;
        margin: 0 auto;
        max-width: 100%;
        transform: rotate(0) translate3d(0, 0, 0);
        width: 67%;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .point {
        width: 90px;
        height: auto;
        display: block;
        margin: 0 auto 20px;
    }

    #like_main .anime_wrapper .title {
        border-bottom: solid 3px #fff;
    }




}






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

    /*-----header-----*/
    .back{
        width: 60%;
        height: 35px;
        line-height: 35px;
        margin: 20px auto;
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #333;
        border: solid 1px #333;
    }

    #header .logo a {
        display: block;
        height: auto;
        width: 100px;
    }

    #header .logo img {
        height: auto;
        width: 100%;
        line-height: 40px;
    }


    .flex-box {
        width: 95%;
        height: 80px;
        padding: 5px 0;
        position: fixed;
        top: 0;
        z-index: 150;
        line-height: 1px;
        align-items: center;

    }

    #header .sp-navi {
        opacity: 0;
        visibility: hidden;
    }

    #navi {
        opacity: 1;
        visibility: visible;
    }


    #header .hamburger {
        opacity: 1;
        visibility: visible;
    }

    /*
  ハンバーガーメニューの線の設定（メニューが開いている時）
  1本目の線を-45度回転
  */
    #header .hamburger.active span:nth-child(1) {
        top: 24px;
        left: 0;
        background: #333;
        transform: rotate(-230deg);
    }

    /* 2本目と3本目は重ねて45度回転 */
    #header .hamburger.active span:nth-child(2),
    #header .hamburger.active span:nth-child(3) {
        top: 24px;
        background: #333;
        transform: rotate(230deg);
    }



    /*
     ハンバーガーメニューがクリックされた際に、jQueryで#naviにactiveクラスを追加して、
     メニューを表示させる。
     */
    #header #navi.active {
        opacity: 1;
        visibility: visible;
    }

    /*----footer----*/
    #footer {
        background-color: rgb(236, 236, 236);
        line-height: 1px;
        padding: 30px 3%;

    }


    #footer .footer-flex {
        align-items: center;
        height: auto;
        flex-direction: column;
        justify-content: space-between;
    }

    #footer .logo {
        width: 30%;
        text-align: center;
        margin: 0 auto 20px;
        height: auto;
        line-height: 1px;
        color: #fff;
    }

    #footer .sns {
        display: flex;
        justify-content: center;
        height: 30px;
    }

    #footer .sns a img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    #footer .sns a {
        display: inline-block;
        margin-left: 5px;
        position: relative;
        left: -5px;
    }

    /*--トップへ戻るボタン--*/
    /*
右下に固定で配置
表示・非表示の切り替えはjQueryで行うため、詳細は「main.js」のコメントを参照
*/
    #to-top {
        width: 70px;
        height: 90px;
        position: fixed;
        right: 15px;
        bottom: 15px;
    }

    #to-top img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }




    /*----画面遷移----*/
    .site-bg {
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1100;
        position: fixed;
        top: 0;
        left: 0;
    }

    .site-bg .top-text {
        font-size: 1.0rem;
        text-align: center;
        font-weight: bold;
        align-items: center;
        position: absolute;
        top: 44%;
        left: 0;
        right: 0;
    }

    /*アニメーション要素のスタイル*/
    .site-bg .top-text {
        opacity: 0;
        transform: translate(0, 30%);
        transition: 1.5s;
    }

    /*アニメーション要素までスクロールした時のスタイル*/
    .site-bg .top-text.active {
        transform: translate(0, 0);
        opacity: 1;
    }

    .more-btn {
        font-size: 1.0rem;
    }

    .more-btn::after {
        content: "";
        width: 20px;
        height: 5px;
        position: relative;
        border-bottom: solid 1px;
        border-right: solid 1px;
        transform: skew(45deg);
        color: #333;
        position: relative;
        left: -35px;
    }



    .contents .more-btn a {
        font-size: 0.9rem;
        width: 100%;
        margin-right: 5px;
        color: #fff;
    }

    .contents .more-btn a:hover {
        color: rgb(237, 126, 0);
    }

    .contents .more-btn::after {
        content: "";
        width: 21px;
        height: 5px;
        position: relative;
        border-bottom: solid 2px;
        border-right: solid 2px;
        transform: skew(45deg);
        color: #fff;
        position: relative;
    }

    .contents .more-btn:hover::after {
        color: rgb(237, 126, 0);
    }


    /*----main----*/
    .site-bg .top-text {
        font-size: 1.0rem;
        text-align: center;
        font-weight: bold;
        align-items: center;
        position: absolute;
        top: 44%;
        left: 0;
        right: 0;
    }

    .fade-in {
        overflow-y: auto;
    }



    /*共通*/
    #main {
        width: 100%;
        display: block;
        background-color: #fff;
        padding: 150px 0;
        overflow-x: hidden;
        overflow-y: hidden;
    }


    /*about-contact*/

    #about,
    #contact {
        flex-direction: column-reverse;
        margin-bottom: 150px;
    }

    #about .about-left,
    #contact .contact-left {
        width: 100%;
        align-items: center;
        padding: 0 10%;
    }

    #about .about-left .sec-title,
    #contact .contact-left .sec-title {
        font-size: 2.0rem;
        padding-bottom: 5px;
        text-align: center;
        border-bottom: solid 3px rgb(243, 155, 23);
        line-height: 1;
        margin-bottom: 30px;
    }

    #about .about-left .sec-text,
    #contact .contact-left .sec-text {
        overflow-wrap: break-word;
        margin-bottom: 30px;
        font-size: 1.0rem;
        letter-spacing: 0.06em;
        line-height: 1.2;
        padding: 0 5%;

    }

    #about .about-right,
    #contact .contact-right {
        width: 94%;
        margin: 0 auto 30px;
    }

    #about .about-right img,
    #contact .contact-right img {
        line-height: 1px;
        width: 100%;
        height: auto;
        vertical-align: bottom;

    }

    #contact {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .visionText {
        display: block;
        font-weight: 500;
        font-size: 1.0rem;
        text-align: center;
    }





    /*like*/

    .contents #like {
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 150px;
        overflow-x: hidden;
        overflow-y: hidden;
        display: flex;
        justify-content: space-between;
        margin-bottom: 0;

    }

    .contents {
        -webkit-transform: rotate(3deg) translate3d(0, 0, 0);
        margin-left: -25%;
        position: relative;
        transform: rotate(3deg) translate3d(0, 0, 0);
        width: 150%;
        background: rgb(237, 126, 0);
        padding: 100px 0;
        margin-bottom: 150px;
        overflow-x: hidden;
        overflow-y: hidden;
        display: inline-block;
    }

    .contents_inner {
        -webkit-transform: rotate(-3deg) translate3d(0, 0, 0);
        color: #fff;
        margin: 0 auto;
        max-width: 100%;
        transform: rotate(-3deg) translate3d(0, 0, 0);
        width: 100%;
        overflow-y: hidden;

    }

    .contents #like .like-right {
        width: 80%;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        padding: 0 14%;
    }

    .contents #like .like-right .sec-title {
        font-size: 2.0rem;
        padding-bottom: 5px;
        text-align: center;
        border-bottom: solid 3px rgb(243, 155, 23);
        line-height: 1;
        margin-bottom: 30px;
    }

    .contents #like .like-right .sec-text {
        overflow-wrap: break-word;
        margin-bottom: 30px;
        font-size: 1.0rem;
        letter-spacing: 0.06em;
        line-height: 1.2;
        padding: 0 5%;

    }

    .contents #like .like-left {
        width: 62%;
        margin: 0 auto 30px;
    }

    .contents #like .like-left img {
        line-height: 1px;
        width: 100%;
        height: auto;
        vertical-align: bottom;
    }


    /*----------about----------*/
    #about_main {
        padding: 100px 7%;
    }

    #about_main .main-title {
        font-size: 3.0rem;
        text-align: center;
        line-height: 1;
    }

    #about_main .aboutText {
        text-align: center;
        font-size: 1.2rem;
        overflow-wrap: break-word;
        margin-bottom: 150px;
        padding: 0 7%;
    }

    #about_main .aboutText {
        text-align: center;
        font-size: 1.2rem;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 50px;
    }

    #about_main .about_mainvisual {
        text-align: center;
        margin-bottom: 100px;
        max-width: 100%;
        margin: 0 auto;
    }

    #about_main .about_mainvisual img {
        width: 100%;
        height: auto;
        object-fit: cover;
        vertical-align: bottom;
        line-height: 1px;
    }

    #about_main .about_mainvisual .mainvisual_text {
        width: 100%;
        margin: 0 auto 100px;
        background-color: rgb(246, 252, 215);
        text-align: left;
        padding: 30px 7%;
        position: relative;
        top: -5px;
    }

    #about_main .about_mainvisual .mainvisual_text h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    #about_main .about_mainvisual .mainvisual_text h3,
    #about_main .about_mainvisual .mainvisual_text h3.vision {
        font-size: 1.4rem;
        font-weight: 800;
    }

    #about_main .about_mainvisual .mainvisual_text h2 span {
        font-size: 0.7rem;
    }

    #about_main .about_mainvisual .mainvisual_text p {
        overflow-wrap: break-word;
        line-height: 1.3;
        font-size: 1.0rem;
    }


    .table {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 100px;
    }

    .table dt {
        width: 25%;
        text-align: left;
        position: relative;
        border-right: solid 2px rgb(237, 126, 0);
        font-weight: 600;
        font-size: 1.0rem;
    }

    .table dt::after {
        content: "●";
        position: absolute;
        right: -0.55em;
        top: 1px;
        font-size: 18px;
        color: rgb(237, 126, 0);
    }


    .table dd {
        width: calc(100% - 25%);
        padding: 0 0 100px 20px;
    }

    .table dd:last-child {
        padding-bottom: 0;
    }

    .table .flex {
        display: flex;
        align-items: flex-start;
    }

    .table .flex .flexLeft {
        width: 100%;
        padding-right: 0;
    }

    .table .flex .flexLeft h2 {
        line-height: 1;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .table .flex .flexLeft p {
        overflow-wrap: break-word;
        font-size: 1.0rem;
        line-height: 1.4;
    }

    .table .flex .flexRight {
        width: 100%;
        height: auto;
    }

    .table .flex .flexRight img {
        width: 100%;
        height: auto;
        object-fit: cover;
        vertical-align: bottom;
        border-radius: 8px;

    }

    .table .flex .flexRight img.ceremony {
        object-position: normal;
    }

    .mainvisual_gif {
        margin-top: 30px;
        width: 100%;
        height: auto;
    }



    /*----------like----------*/
    #like_main {
        padding: 0 4% 0;
        overflow-x: hidden;
    }

    #about_main .main-title {
        font-size: 3.0rem;
        text-align: center;
        line-height: 1;
    }

    .title_contain .main-title span {
        background: linear-gradient(transparent 50%, #ff6 60%);
    }


    .title_contain .likeText {
        text-align: center;
        font-size: 1.2rem;
        overflow-wrap: break-word;
        margin-bottom: 80px;
        padding: 0 7%;
    }


    /*スライドショー*/
    .content {
        width: 200px;
        height: 150px;
        object-fit: cover;
        line-height: 1px;
    }

    .content img {
        object-fit: cover;
        line-height: 1px;
    }

    .slideshow {
        width: 100vh;
        display: flex;
        animation: loop-slide 20s infinite linear 1s both;

    }

    @keyframes loop-slide {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }





    .wrap {
        display: flex;
        align-items: center;
        height: auto;
        overflow: hidden;
        position: relative;
        top: -18px;
        margin-bottom: -18px;
    }

    #like_main .contents {
        -webkit-transform: rotate(0) translate3d(0, 0, 0);
        margin-left: -25%;
        position: relative;
        transform: rotate(0) translate3d(0, 0, 0);
        width: 150%;
        background: rgb(237, 126, 0);
        padding: 100px 7%;
        margin-bottom: 100px;
    }

    #like_main .contents .contents_inner {
        -webkit-transform: rotate(0) translate3d(0, 0, 0);
        color: #fff;
        margin: 0 auto;
        max-width: 100%;
        transform: rotate(0) translate3d(0, 0, 0);
        width: 67%;
    }

    #like_main .contents .contents_inner .sauna_wrapper,
    #like_main .anime_wrapper {
        margin-bottom: 150px;
        overflow-x: hidden;

    }

    #like_main .contents .contents_inner .sauna_wrapper {
        text-align: center;
        overflow-x: hidden;
    }

    #like_main .anime_wrapper {
        margin-bottom: 70px;
    }

    #like_main .contents .contents_inner .sauna_wrapper h2,
    #like_main .anime_wrapper h2 {
        margin-bottom: 60px;
        display: block;
        border-bottom: solid 3px #fff;
        font-size: 2.5rem;
        line-height: 1.5;
        color: "#333";
        font-weight: bold;
    }

    #like_main .anime_wrapper h2 {
        text-align: center;
        margin-bottom: 60px;
        color: rgb(243, 155, 23);
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex,
    #like_main .anime_wrapper .anime_flex {
        flex-direction: column;
        justify-content: space-between;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li,
    #like_main .anime_wrapper .anime_flex li {
        width: 100%;
        text-align: center;
        margin-bottom: 80px;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li {
        color: #333;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li:last-child {
        margin-bottom: 0;
    }

    #like_main .contents .contents_inner .anime_wrapper .anime_flex li:last-child {
        margin-bottom: 0;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li h3,
    #like_main .anime_wrapper .anime_flex li h3 {
        font-size: 1.5rem;
        line-height: 1;
        margin-top: 20px;
        color: #333;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li h3 {
        color: #fff;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li h3 span,
    #like_main .anime_wrapper .anime_flex li h3 span {
        font-size: 1.0rem;
    }


    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .crown,
    #like_main .anime_wrapper .anime_flex li .crown {
        width: 150px;
        height: auto;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .list_img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        object-position: 50% 50%;
    }

    #like_main .anime_wrapper .anime_flex li .list_img {
        width: 85%;
        height: 250px;
        border-radius: 5%;
        object-fit: cover;
        object-position: 50% 50%;
    }


    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .list_text,
    #like_main .anime_wrapper .anime_flex li .list_text {
        overflow-wrap: break-word;
        padding: 10px 30px;
        font-size: 1.1rem;
        line-height: 1.5;
        color: #333;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .list_text {
        color: #fff;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .tenperture,
    #like_main .anime_wrapper .anime_flex li .tenperture {
        text-align: center;
        font-size: 1.1rem;
        color: #333;
    }

    #like_main .contents .contents_inner .sauna_wrapper .sauna_flex li .tenperture {
        color: #fff;
    }

    #like_main .contents .contents_inner .sauna_wrapper .recomend {
        width: 100%;
        text-align: center;
        margin: 50px auto 50px;
        display: block;
        font-size: 1.5rem;
        border: none;
        line-height: 1;
        color: #fff;
        font-weight: bold;
        position: relative;
        display: inline-block;
        padding: 0 50px;
    }

    #like_main .contents .contents_inner .sauna_wrapper .recomend::before {
        content: "";
        width: 80px;
        height: 5px;
        background-color: #fff;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 10%;
        background: linear-gradient(-90deg, #fff, transparent);
    }

    #like_main .contents .contents_inner .sauna_wrapper .recomend::after {
        content: "";
        width: 80px;
        height: 5px;
        background-color: #fff;
        color: #fff;
        position: absolute;
        top: 50%;
        display: inline-block;
        right: 10%;
        background: linear-gradient(90deg, #fff, transparent);

    }


    #like_main .contents .contents_inner .sauna_wrapper .go {
        width: 100%;
        text-align: center;
        margin: 100px auto 50px;
        display: block;
        font-size: 1.5rem;
        border: none;
        line-height: 1;
        color: #fff;
        font-weight: bold;
        position: relative;
        display: inline-block;
        padding: 0 50px;

    }

    #like_main .contents .contents_inner .sauna_wrapper .go::before {
        content: "";
        width: 80px;
        height: 5px;
        background-color: #fff;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 10%;
        background: linear-gradient(-90deg, #fff, transparent);
    }

    #like_main .contents .contents_inner .sauna_wrapper .go::after {
        content: "";
        width: 80px;
        height: 5px;
        background-color: #fff;
        color: #fff;
        position: absolute;
        top: 50%;
        display: inline-block;
        right: 10%;
        background: linear-gradient(90deg, #fff, transparent);
    }



    /*----------contact----------*/
    /*#contact_main {
        padding: 100px 7% 0;
    }

    #contact_main .main-title {
        font-size: 3.0rem;
        text-align: center;
        line-height: 1;
    }

    #contact_main .aboutText {
        text-align: center;
        font-size: 1.2rem;
        overflow-wrap: break-word;
        margin-bottom: 150px;
        padding: 0 7%;
    }


    #form {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        max-width: 1000px;
        margin: 0 auto;
        margin-bottom: 150px;
        text-align: center;
    }

    #form #message,
    #form .input {
        width: 100%;
    }

    #name,
    #email,
    #text,
    #message {
        width: 100%;
        height: 100%;
        border: none;
    }

    #form dl {
        flex-direction: column;
    }

    #form dl dt {
        width: 100%;
        margin-bottom: 7px;
        text-align: left;
        padding-right: 20px;
        line-height: 1;
    }

    #form dl dd {
        width: 100%;
        border: solid 1px #333;
        margin-bottom: 30px;
    }

    #form dl dd:last-child {
        width: 100%;
        border: none;
        margin-bottom: 30px;
    }

    #submit-btn {
        margin-top: 30px;
        width: 50%;
        height: 50px;
        border-radius: 5px;
        color: #fff;
        font-size: 1.2rem;
        border: none;
        background: #333;
    }*/

    #contact_main .contactText {
        margin-bottom: 60px;
    }

    .contact-form {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-form .formTable {
        text-align: center;
    }

    .contact-form p {
        flex-direction: column;
        justify-content: left;
        margin-bottom: 15px;
    }

    .contact-form input[type="text"] {
        display: block;
        width: 100%;
        height: 30px;
        border: solid 0.5px #333;
        margin-bottom: 7px;
    }

    .contact-form input[type="email"] {
        display: block;
        width: 100%;
        height: 30px;
        border: solid 0.5px #333;
        margin-bottom: 5px;
    }

    .contact-form textarea {
        display: block;
        width: 100%;
        height: 250px;
        border: solid 0.5px #333;

    }

    .contact-form label {
        width: 100%;
        font-size: 1.2rem;
        color: #444;
        font-weight: 400;
        text-align: left;
        padding-right: 30px;
        margin-bottom: 7px;
        line-height: 1;
    }

    .contact-form label.check span {
        font-size: 0.8rem;
    }

    input[type="submit"] {
        display: block;
        width: 100%;
        border-radius: 5px;
        height: 50px;
        margin: 80px auto 80px;
        color: #fff;
        font-size: 1.3rem;
        font-weight: 400;
        background-color: #333;
        border: solid 0.5px #333;
        transform: 0.4s;
    }

    input[type="submit"]:hover {
        color: #333;
        font-size: 1.3rem;
        font-weight: 400;
        background-color: #fff;
        border: solid 0.5px #333;
    }



}