@charset "utf-8";

html {
    scroll-behavior: smooth;
    background: #2D2F35;
    max-width: 1920px;
    margin: 0 auto;
}

body {
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6rem;
    letter-spacing: 0.1em;
    color: #EBEBEB;
    /*    background: #2D2F35;*/
    /*    background: #75a5d5;*/
    /*    background: #00A8FC;*/
    background: #3572B7;
}


@media screen and (min-width: 768px) {
    body {
        font-size: 18px;
        line-height: 1.8rem;
    }
}

a {
    transition: 0.3s;
}

a:hover {
    transition: 0.3s;
}

body.active {
    height: 100%;
    overflow: hidden;
}

main {
    background: #fff;
}

/*----------------------------------------
共通
----------------------------------------*/
main {
    overflow: hidden;
}

.wrap {
    padding: 0 5%;
    margin: 0 auto;
}

.left {
    text-align: left;
}

.top_text {
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    color: #000;
    text-shadow: 2px 2px 3px #fff;
    font-weight: 600;
}

.reserve_fix {
    position: absolute;
    right: 0;
    top: 17%;
    display: table-cell;
    width: 55px;
    height: 220px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    /*    background-color: #977C64;*/
    background-color: #6c81c7;
    vertical-align: middle;
    text-align: center;
    z-index: 999;
}

.reserve_fix a {
    display: block;
}

.reserve_fix a span.text {
    font-size: 20px;
    letter-spacing: 0.5em;
    position: absolute;
    top: 29px;
    left: 0;
    right: 15px;
    margin: auto;
}

.reserve_fix a span.icon {
    letter-spacing: 0.5em;
    position: absolute;
    bottom: 0;
    background-color: #2D2F35;
    display: block;
    width: 55px;
    height: 55px;
}

.reserve_fix a span.icon svg {
    margin-right: 12px;
}


@media screen and (min-width: 768px) {
    .reserve_fix {
        top: 30%;
    }

    .top_text {
        font-size: 18px;
        line-height: 46px;
        color: #000;
    }

    .reserve_fix {
        position: fixed;
    }
}

/*----------------------------------------
アニメーション
----------------------------------------*/
.eachTextAnime span {
    opacity: 0;
}

.eachTextAnime.appeartext span {
    animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*じわっ*/
.blur {
    animation-name: blurAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }

    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.sa {
    opacity: 0;
    transition: all 1.5s ease;
}

.sa.show {
    opacity: 1;
    transform: none;
}

.sa--up {
    transform: translate(0, 100px);
}

.sa--lr {
    transform: translate(-100px, 0);
}

.sa--rl {
    transform: translate(100px, 0);
}


/*左からシャッ*/

/*背景色が伸びて出現 共通*/
.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 1.5rem;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

/*--------- 左から --------*/
.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 70px;
    background: -webkit-linear-gradient(0deg, rgba(80, 150, 204, 0.5), rgba(151, 97, 222, 0.5));
    bottom: 0;
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

.bgappearTrigger {
    opacity: 0;
}



/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #2D2F35;
    text-align: center;
    color: #fff;
    display: none;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
    width: 200px;
    display: none;
}

@media screen and (min-width: 1280px) {
    #splash_logo svg {
        width: 300px;
        display: none;
    }
}

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
    fill-opacity: 0;
    /*最初は透過0で見えない状態*/
    transition: fill-opacity .5s;
    /*カラーがつく際のアニメーション0.5秒で変化*/
    fill: none;
    /*塗りがない状態*/
    stroke: #EBEBEB;
    /*線の色*/
}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path {
    fill: #EBEBEB;
    /*塗りの色*/
    fill-opacity: 1;
    /*透過1で見える状態*/
    stroke: none;
    /*線の色なし*/
}


/*========= ページ遷移 ===============*/
.fadein_wrap {
    animation: fadein 3s forwards;
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

/*----------------------------------------
サークルボタン
----------------------------------------*/
.circle_btn {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    color: #EBEBEB;
    position: relative;
    width: 170px;
    line-height: 1;
}

.circle_btn a {
    text-align: left;
    font-size: 23px;
    letter-spacing: 0.2em;
    display: block;
    height: 50px;
}

.circle_btn a span.btn {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
}

.circle_btn a span.btn::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 5px;
    /*
    border-bottom: solid 1px #EBEBEB;
    border-right: solid 1px #EBEBEB;
*/
    /*
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
*/
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: skew(45deg);
    transition: 0.3s;
    margin-bottom: 4px;
    margin-left: 15px;
}

.circle_btn a span.circle {
    content: '';
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    /*    border: solid 1px #EBEBEB;*/
    /*    border: solid 1px #000;*/
    border: 1px solid #fff;
    border-radius: 50%;
    top: 0;
    right: 15px;
}

.circle_btn.access_btn a span.circle {
    right: 0;
}

.circle_btn.access_btn a:hover::after {
    right: -10px;
}

@media screen and (min-width: 768px) {
    .circle_btn a:hover span.btn::after {
        margin-left: 25px;
    }

    .circle_btn a:hover::after {
        content: '';
        display: inline-block;
        width: 50px;
        height: 50px;
        background-color: #EBEBEB;
        border-radius: 50%;
        position: absolute;
        top: 0px;
        right: 5px;
        opacity: 0.5;
    }
}


/*----------------------------------------
ヘッダー
----------------------------------------*/
header {
    position: relative;
}

h1 {
    width: 140px;
    position: absolute;
    top: 20px;
    left: 25px;
}

h1 a {
    display: block;
    z-index: 10;
    position: relative;
}

h1 img {
    width: 150px;
}

@media screen and (min-width: 1280px) {
    header {
        width: 100%;
        margin: 0 auto;
        height: 150px;
        position: fixed;
        inset: 0;
        margin: auto;
        margin-top: 0;
        z-index: 99;
        overflow: hidden;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0));
        background: -webkit-linear-gradiesnt(top, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0));
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0));
        transition: all .4s;
        color: #ffffff;
    }

    header .header_detail {
        max-width: 1280px;
        height: 150px;
        margin: 0 auto;
    }

    h1 {
        width: 194px;
        position: unset;
    }

    h1 a {
        z-index: 10000;
    }

    h1 img {
        width: 200px;
        margin-top: 10px;
        margin-left: 10px;
    }

    .top_header #g-nav ul li {}

    .other_header #g-nav ul li {}

    .top_header .change-color #g-nav ul li {}
}

/*----------------------------------------
フッター
----------------------------------------*/
footer {
    padding: 70px 7% 30px;
    text-align: center;
}

.footer_wrap .left {
    text-align: center;
}

.footer_logo {
    width: 200px;
}

footer .name {
    font-size: 18px;
    margin: 40px 0;
    line-height: 2;
}

footer .address {
    /*    font-size: 14px;*/
    font-size: 20px;
    line-height: 2;
    margin-bottom: 40px;
}

footer .access_btn {
    margin: 0 auto;
    margin-bottom: 40px;
}

.sns_wrap ul {
    width: 210px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}

.sns_wrap ul li.insta {
    width: 50px;
    height: 40px;
    /*    background: #72675E;*/
    background: #586c9b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sns_wrap ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
}

.sns_wrap ul li.insta img {
    width: 20px;
    height: 20px;
}

.sns_wrap ul li.mail {
    width: 140px;
    height: 40px;
    /*    background: #72675E;*/
    background: #586c9b;
    display: flex;
}

.sns_wrap ul li.mail img {
    height: 18px;
    margin-right: 10px;
}

footer small {
    display: block;
    font-size: 10px;
    margin-top: 40px;
}

footer .vip_and_owner_wrap {
    display: block;
    width: 210px;
    margin: 0 auto;
    margin-top: 30px;
}

footer .vip_and_owner_wrap p a {
    display: inline-block;
    font-size: 14px;
    padding: 10px;
    /*    border: 1px solid #977C64;*/
    border: 1px solid #242f4d;
    width: 210px;
}

footer .vip_and_owner_wrap p.vip {
    margin-bottom: 20px;
}


@media screen and (min-width: 768px) {
    .footer_wrap {
        display: flex;
        justify-content: center;
    }

    .footer_wrap .left {
        margin-right: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer_logo {
        width: 300px;
    }

    footer .name {
        text-align: left;
    }

    footer .address {
        text-align: left;
    }

    footer .access_btn {
        margin: unset;
    }

    footer small {
        margin-top: 40px;
    }

    .sns_wrap {
        margin-top: 30px;
    }

    footer .sns_wrap ul {
        width: unset;
        justify-content: unset;
    }

    .sns_wrap ul li.insta {
        margin-right: 20px;
    }

    footer .vip_and_owner_wrap {
        display: flex;
        width: 490px;
        margin-top: 60px;
    }

    footer .vip_and_owner_wrap p.vip {
        margin-right: 30px;
    }

    footer .vip_and_owner_wrap p a {
        width: 230px;
    }

    footer .vip_and_owner_wrap p a:hover {
        /*        background: #977C64;*/
        background: #242f4d;
        color: #fff;
    }

}

/*----------------------------------------
ハンバーガーメニュー
----------------------------------------*/
.openbtn {
    /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: fixed;
    margin: 15px 25px 0 auto;
    cursor: pointer;
    width: 50px;
    height: 65px;
    border-radius: 5px;
    z-index: 10000;
    right: 0;
}

#g-nav .nav_footer {
    display: none;
}

#g-nav.panelactive .nav_footer {
    display: block;
}

@media screen and (max-width: 1279px) {
    #g-nav #g-nav-list {
        display: none;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
    }

    #g-nav.panelactive h1 {
        display: none;
    }
}


/*ボタン内側*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 1px;
    /*	background: #977C64;*/
    background: #000;
    width: 37px;
}


.openbtn span:nth-of-type(1) {
    top: 12px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 34px;
}

.openbtn span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -2px;
    /*	color: #977C64;*/
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 37px;
    background: #EBEBEB;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 37px;
    background: #EBEBEB;
}

.openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 10px;
    left: 14px;
    color: #EBEBEB;
}

#g-nav {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    position: fixed;
    z-index: 1000;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    /*動き*/
    transition: all 0.6s;
    opacity: 0.95;
}

/*--webp対応ブラウザの場合--*/
.webp #g-nav {
    /*
    background: url('../img/nuv_sp_BG.webp') no-repeat top;
    background-size: cover;
*/
    background: #3572B7;
}

/*--webp非対応ブラウザの場合--*/
.no-webp #g-nav {
    /*
    background: url('../img/nuv_sp_BG.jpg') no-repeat top;
    background-size: cover;
*/
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul.menu {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 320px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

#g-nav ul.menu li {
    position: relative;
    height: 43px;
    border-bottom: 1px solid #EBEBEB;
    margin-bottom: 16px;
}

#g-nav ul.menu li::after {
    content: "";
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    border-top: 0.5px solid #EBEBEB;
    border-right: 0.5px solid #EBEBEB;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
    right: 7px;
}

#g-nav ul.menu li a span:nth-child(1) {
    font-size: 24px;
    letter-spacing: 0.25em;
}

#g-nav ul.menu li a span:nth-child(2) {
    font-size: 14px;
    display: block;
    width: 50%;
    margin-left: auto;
    margin-top: -26px;
    letter-spacing: 0.2em;
}

/*ハンバーガー内フッター*/
.nav_footer {
    width: 80%;
    margin: 0 auto;
    margin-top: 580px;
    text-align: center;
    margin-bottom: 100px;
}

.nav_footer .reserve {
    position: relative;
    margin: 0 auto;
    width: 200px;
    height: 45px;
    background-color: #586c9b;
    font-size: 18px;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 25px;
}

.nav_footer .reserve a {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: inline-block;
}

.nav_footer .reserve a span {
    content: '';
    display: block;
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #2D2F35;
    top: 0;
    right: 0;
}

.nav_footer .reserve a span svg {
    display: block;
    margin: 0 auto;
    margin-top: 11px;
}

.nav_footer .hotelname {
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

.nav_footer .vip_and_owner_wrap_spmenu {
    margin-top: 20px;
    font-size: 13px;
}

.nav_footer .vip_and_owner_wrap_spmenu a {
    /*    color: #977C64;*/
    color: #fff;
    /*    border-bottom: 1px solid #977C64;*/
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
}

.nav_footer .vip_and_owner_wrap_spmenu p.vip {
    margin-bottom: 10px;
}

#g-nav-list .circle_btn {
    margin: 0 auto;
}

#g-nav li.menu_insta {
    display: none;
}

#g-nav li.menu_mail {
    display: none;
}


@media screen and (min-width: 1280px) {
    .openbtn {
        display: none;
    }

    #g-nav {
        position: relative;
    }

    .webp #g-nav {
        background: none;
        height: 150px;
        margin-top: 30px;
    }

    .no-webp #g-nav {
        background: none;
    }

    .nav_footer {
        display: none;
    }

    #g-nav-list {
        position: relative;
    }

    #g-nav ul.menu {
        display: flex;
        transform: unset;
        position: absolute;
        right: 0;
        left: unset;
        justify-content: flex-end;
        top: 0;
        width: unset;
        /*        margin-top: 60px;*/
        margin-top: 125px;
    }

    #g-nav ul.menu li {
        border-bottom: none;
        left: 0;
        transform: unset;
        width: 100px;
        height: unset;
        position: unset;
        margin-bottom: unset;
    }

    #g-nav ul.menu li::after {
        display: none;
    }

    .btntextchange li a {
        display: block;
        position: relative;
        /*テキストの基点とするためrelativeを指定*/
        text-align: center;
        text-decoration: none;
        outline: none;
        /*アニメーションの指定*/
        transition: all .2s;
    }

    .btntextchange li a span {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
        /*アニメーションの指定*/
        transition: all .5s;
        /*ブロック要素にしてテキスト折り返しなし*/
        display: block;
        white-space: nowrap;
    }

    /*差し替わるテキストの設定*/
    .btntextchange li a span:nth-child(2) {
        opacity: 0;
        /*透過0に*/
    }

    /*hoverするとテキストが入れ替わる設定*/
    .btntextchange li a:hover span:nth-child(1) {
        opacity: 0;
        /*透過0に*/
    }

    .btntextchange li a:hover span:nth-child(2) {
        opacity: 1;
        /*不透明に*/
    }

    #g-nav ul.menu li a span:nth-child(1) {
        font-size: 17px;
        letter-spacing: 0.2em;
    }

    #g-nav ul.menu li a span:nth-child(2) {
        width: unset;
        margin-top: 1px;
        letter-spacing: 0.1em;
        font-size: 13px;
    }

    #g-nav ul.menu li.access {
        display: block;
    }

    #g-nav ul.menu li.menu_insta {
        width: 20px;
        margin-right: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4px;
        margin-left: 20px;
    }

    #g-nav ul.menu li.menu_insta a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #g-nav ul.menu li.menu_mail {
        width: 20px;
        display: flex;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4px;
    }

    #g-nav ul.menu li.menu_mail a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #g-nav ul.menu li.menu_insta img {
        width: 20px;
        height: 20px;
    }

    #g-nav ul.menu li.menu_mail img {
        height: 18px;
        margin-right: 10px;
    }

}

/*----------------------------------------
ファーストビュー
----------------------------------------*/
#FV {
    height: 100vh;
}

#FV figure {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#FV .FV_logo {
    display: block;
    max-width: 250px;
}

#FV .info {
    position: absolute;
    width: 80%;
    background: #2D2F35;
    opacity: 0.9;
    bottom: 7vh;
    padding: 15px;
    z-index: 2;
}

#FV .info p {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 0.2em;
    border-bottom: 0.5px solid #EBEBEB;
    ;
    margin-bottom: 4px;
    padding-bottom: 6px;
}

#FV .info dl {
    display: flex;
}

#FV .info dl dt {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    margin-right: 1rem;
}

#FV .info dl dd {
    font-size: 13px;
    letter-spacing: 0;
}

/*========= FV スライダー ===============*/
@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
    animation: zoomUp 7s linear 0s normal both;
}

.swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

#concept .swiper-slide img {
    height: unset;
}


#FV .swiper-pagination-bullet-active {
    background: rgba(151, 124, 100, 0.7);
}


@media screen and (min-width: 1280px) {
    #FV .FV_logo {
        max-width: 300px;
    }

    #FV {
        margin-top: unset;
    }

    #FV .info {
        width: 40%;
        padding: 20px 40px;
    }

    #FV .info p {
        font-size: 23px;
        margin-bottom: 4px;
        padding-bottom: 6px;
    }

    #FV .info dl {
        display: flex;
    }

    #FV .info dl dt {
        font-size: 25px;
    }

    #FV .info dl dd {
        font-size: 15px;
        margin-top: 3px;
    }

    #FV .reserve_fix {
        width: 66px;
        height: 250px;
    }

    #FV .reserve_fix a span.icon {
        width: 66px;
        height: 66px;
    }

    #FV .reserve_fix a span.text {
        top: 37px;
        right: 18px;
    }

    #FV .reserve_fix a span.icon svg {
        margin-right: 15px;
    }

}

@media screen and (min-width: 1280px) {
    .swiper-slide img {
        height: unset;
    }
}

/*----------------------------------------
共通見出し
----------------------------------------*/
h2 {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    line-height: 70px;
    letter-spacing: 0.2em;
}

h2.top {
    font-size: 55px;
}

@media screen and (min-width: 768px) {
    h2.top {
        font-size: 78px;
    }
}

h2.main {
    font-size: 55px;
    letter-spacing: 0.15em;
}


@media screen and (min-width: 768px) {
    h2.main {
        font-size: 78px;
    }
}


/*----------------------------------------
トップ コンセプト
----------------------------------------*/
#top_concept {
    padding-top: 100px;
}

#top_concept .top_01 {
    width: 93%;
    margin-bottom: 40px;
}

#top_concept .title_area {
    position: relative;
    height: 240px;
    width: 90%;
}

#top_concept h2 {
    color: #242f4d;
    /*    color: #fff;*/
    width: 90%;
    margin: 0 auto;
    margin-top: 60px;
}

#top_concept h3 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 25px;
    line-height: 50px;
    letter-spacing: 0.35em;
    position: absolute;
    top: -110px;
    right: 11px;
    color: #000;
}

#top_concept h3::before {
    content: '';
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    opacity: 0;
    display: block;
    width: 1px;
    height: 130px;
    margin-top: -142px;
    position: absolute;
    right: 23px;
}

#top_concept h3 .second {
    margin-top: 103px;
}

#top_concept .text_area {
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
}

#top_concept .circle_btn {
    margin-left: auto;
    margin-right: 20px;
    color: #000;
}

@media screen and (min-width: 768px) {
    #top_concept h2 {
        line-height: 1.2;
        width: 100%;
    }

    #top_concept h2 p {
        display: inline;
    }

    #top_concept .top_01 {
        width: 70%;
        max-width: 1000px;
    }

    h2.top br {
        display: none;
    }

    h2.top br.second {
        display: block;
    }

    #top_concept .title_area {
        height: 200px;
        margin-bottom: 30px;
    }

    #top_concept .text_area {
        width: 70%;
        max-width: 780px;
        margin: unset;
    }

    #top_concept h3 {
        font-size: 30px;
        line-height: 70px;
        letter-spacing: 0.5em;
        top: -360px;
    }

    #top_concept h3::before {
        content: '';
        /*        border: 0.5px solid #EBEBEB;*/
        border: 0.5px solid #000;
        display: block;
        width: 1px;
        height: 220px;
        position: absolute;
        right: 104px;
        transform: rotate(45deg);
        top: 50px;
    }

    #top_concept h3::after {
        content: '';
        /*        border: 0.5px solid #EBEBEB;*/
        border: 0.5px solid #000;
        display: block;
        width: 1px;
        height: 130px;
        position: absolute;
        right: 104px;
        bottom: -130px;
    }

    #top_concept .concept_wrap {
        margin-left: 15%;
    }
}

@media screen and (min-width: 1280px) {
    h2.top br.second {
        display: none;
    }

    #top_concept h3 {
        font-size: 35px;
        top: -460px;
        right: 5rem;
    }

    #top_concept h3::before {
        top: -60px;
        height: 300px;
    }

    #top_concept .top_01 {
        margin-bottom: 70px;
    }

    #top_concept .title_area {
        height: 150px;
        max-width: 1280px;
    }
}

/*写真エリア*/
/*
.webp #top_concept .photo_area {
    background: url('../img/bg-water.jpeg') no-repeat top;
    background-size: cover;
}
*/

.no-webp #top_concept .photo_area {
    background: url('../img/bg-water.jpeg') no-repeat top;
    background-size: cover;
}

#top_concept .photo_area {
    padding: 1px 0;
    margin-top: 50px;
    padding-bottom: 120px;
}

#top_concept .photo_area .top_02 {
    display: block;
    width: 85%;
    margin-left: auto;
    margin-bottom: 50px;
}

#top_concept .photo_area .top_03 {
    display: block;
    width: 85%;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    #top_concept .photo_area {
        position: relative;
        margin-top: 140px;
        padding: 0 0 150px 0;
    }

    #top_concept .photo_area .top_02 {
        position: absolute;
        top: -30px;
        right: 0;
        width: 53%;
    }

    #top_concept .photo_area .top_03 {
        position: relative;
        padding-top: 60px;
        width: 52%;
        z-index: 2;
    }
}

@media screen and (min-width: 1440px) {
    #top_concept h3 {
        right: 20%;
    }
}


/*----------------------------------------
トップ ルーム
----------------------------------------*/
#top_room {
    /*    background-color: #72675E;*/
    background-color: #EBEBEB;
    padding-left: 10%;
    padding-bottom: 70px;
    color: #145DA0;
}

#top_room figure.top_04_wrap {
    position: relative;
    text-align: right;
}

#top_room .top_04 {
    width: 100%;
    margin-top: -70px;
}

#top_room h2.top {
    padding-top: 40px;
    margin-bottom: 30px;
}

#top_room h2.top::before {
    content: '';
    border: 0.5px solid #EBEBEB;
    ;
    display: block;
    width: 1px;
    height: 160px;
    transform: rotate(-45deg);
    margin-top: -160px;
    margin-left: 12%;
}

#top_room .top_text {
    margin-right: 1rem;
    color: #000;
}

#top_room .circle_btn {
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    #top_room {
        padding-left: 15%;
        padding-bottom: 120px;
    }

    #top_room h2.top {
        padding-top: 60px;
        margin-bottom: 60px;
    }

    #top_room .top_04 {
        max-width: 1000px;
    }

    #top_room figure.top_04_wrap {
        width: 90%;
        margin-left: auto;
    }

    #top_room h2.top::before {
        height: 220px;
        margin-top: -206px;
        margin-left: 22%;
    }

    #top_room .top_text_area {
        max-width: 1000px;
    }
}

@media screen and (min-width: 1000px) {
    #top_room .circle_btn {
        margin: unset;
        margin-left: auto;
        margin-right: 2rem;
        margin-top: -100px;
    }
}


/*----------------------------------------
トップ ファシリティ
----------------------------------------*/
#top_facility {
    padding: 140px 7% 55px 7%;
}

/*
.webp #top_facility {
    background: url('../img/bg-sea.jpg') no-repeat top;
    background-size: cover;
}
*/

.no-webp #top_facility {
    background: url('../img/bg-sea.jpg') no-repeat top;
    background-size: cover;
}

#top_facility h2.top {
    margin-bottom: 140px;
}

#top_facility .circle_btn {
    margin-left: auto;
}

@media screen and (min-width: 1000px) {
    #top_facility {
        padding: 600px 10% 100px 0;
    }

    #top_facility .facility_wrap {
        width: 600px;
        margin-left: auto;
    }

    #top_facility h2.top {
        margin-bottom: 40px;
        position: relative;
    }

    #top_facility h2.top::before {
        content: '';
        display: block;
        position: absolute;
        top: 34px;
        width: 200px;
        height: 1px;
        border: 0.5px solid #EBEBEB;
        ;
        margin-left: -240px;
    }
}

@media screen and (min-width: 1440px) {
    #top_facility .facility_wrap {
        margin-right: 10%;
    }
}

/*----------------------------------------
トップ アクティビティ
----------------------------------------*/
/*
.webp #top_activity {
    background: url('../img/bg-water.jpeg') no-repeat top;
    background-size: cover;
}
*/

.no-webp #top_activity {
    background: url('../img/bg-water.jpeg') no-repeat top;
    background-size: cover;
}

#top_activity {
    padding: 50px 7% 70px 7%;
}

#top_activity .top_06 {
    width: 100%;
}

#top_activity h2.top {
    text-align: center;
    margin: 30px 0;
}

#top_activity .circle_btn {
    margin: 0 auto;
}

@media screen and (min-width: 1000px) {
    #top_activity {
        padding: 100px 10% 100px 10%;
    }

    #top_activity .top_06 {
        max-width: 750px;
        width: 70%;
    }

    #top_activity .activity_wrap {
        display: flex;
        margin-top: 80px;
    }

    #top_activity .activity_wrap h2.top {
        margin-right: 120px;
    }

    #top_activity .circle_btn {
        margin: unset;
        margin-left: auto;
    }
}


/*----------------------------------------
トップ 各部屋の詳細
----------------------------------------*/
#top_room_detail {
    padding: 40px 0 70px 5%;
    color: #000;
    display: block;
}

#top_room_detail h2.top {
    margin-bottom: 40px;
    padding-left: 5%;
    position: relative;
    top: 10px;
    color: #000;
}

#top_room_detail h2.top::before {
    content: '';
    display: block;
    position: absolute;
    top: 104px;
    width: 100px;
    height: 1px;
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    left: 230px;
}

#top_room_detail h2.top::after {
    content: 'お部屋の詳細';
    white-space: pre;
    position: absolute;
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    display: block;
    color: #242f4d;
    line-height: 2;
    top: 150px;
    color: #000;
}

#top_room_detail .plan_list li {
    padding-top: 15vh;
}

#top_room_detail .plan_list li .plan_thum {
    width: 90%;
    margin-top: 100px;
    max-width: 700px;
}

@media screen and (min-width: 700px) {
    #top_room_detail .plan_list li figure {
        text-align: center;
    }
}

#top_room_detail .plan_list li h3 {
    font-size: 45px;
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    top: 100px;
    width: 100%;
    text-align: center;
    margin-left: -20px;
    color: #000;
}

#top_room_detail .plan_list li h3::after {
    content: '';
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    display: inline-block;
    width: 100%;
    margin-top: 35px;
}

#top_room_detail .plan_list li p {
    font-size: 16px;
    width: 90%;
    margin-top: 35px;
    margin-bottom: 1rem;
}

#top_room_detail .plan_list li p br {
    display: none;
}

#top_room_detail .area {
    overflow: hidden;
}

#top_room_detail .wrap {
    display: flex;
}

#top_room_detail .item {
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: bold;
    color: #EBEBEB;
    ;
}


#top_room_detail .top_text {
    margin-bottom: 0;
    color: #000;
}

#top_room_detail .circle_btn {
    margin: 0 auto;
    color: #000;
}



@media screen and (min-width: 500px) {
    #top_room_detail .plan_list li h3 {
        top: 110px;
    }

    #top_room_detail .plan_list li .plan_thum {
        margin-top: 100px;
    }
}

@media screen and (min-width: 768px) {
    #top_room_detail h2.top {
        top: 70px;
    }

    #top_room_detail h2.top::before {
        width: 150px;
        left: 620px;
        top: 35px;
    }

    #top_room_detail h2.top::after {
        content: 'お部屋の詳細';
        /*        font-size: 35px;*/
        font-size: 30px;
        /*        top: 110px;*/
        top: 56px;
    }

    #top_room_detail .plan_list li h3 {
        top: 100px;
    }

    #top_room_detail .plan_list li .plan_thum {
        max-height: 50vh;
        width: auto;
    }

    #top_room_detail .plan_list li p br {
        display: block;
    }

    #top_room_detail .plan_list li p {
        text-align: center;
        margin-bottom: 2rem;
    }

}

@media screen and (min-width: 1024px) {
    #top_room_detail h2.top::before {
        left: 660px;
    }

    #top_room_detail .plan_list li {
        padding-top: 0;
        display: flex;
        padding-right: 2%;
    }

    #top_room_detail .plan_list li h3 {
        font-size: 60px;
    }

    #top_room_detail .plan_list li .plan_thum {
        margin-right: 20px;
        margin-top: 40px;
    }

    #top_room_detail .plan_list li p {
        margin-top: 80px;
        width: unset;
        text-align: left;
    }
}

@media screen and (min-width: 1200px) {
    #top_room_detail .plan_list li .plan_thum {
        margin-top: 240px;
        max-width: unset;
        margin-right: 3rem;
    }

    #top_room_detail .plan_list li p {
        margin-top: 270px;
        width: 100%;
        margin-bottom: 3rem;
    }

    #top_room_detail .plan_list li h3 {
        top: 180px;
    }

    #top_room_detail .circle_btn {
        margin: unset;
        margin-left: auto;
    }
}

@media screen and (orientation: landscape) and (max-height: 767px) {
    #top_room_detail h2.top {
        display: none;
    }

    #top_room_detail .plan_list li {
        display: flex;
    }

    #top_room_detail .plan_list li h3 {
        top: 40px;
    }

    #top_room_detail .plan_list li .plan_thum {
        margin-top: -60px;
    }

    #top_room_detail .plan_list li p {
        text-align: left;
        margin-left: 2rem;
        margin-top: -30px;
    }
}


/*----------------------------------------
トップ お知らせ
----------------------------------------*/
#top_news {
    /*    background-color: #72675E;*/
    background-color: #EBEBEB;
    color: #145DA0 !important;
    padding: 50px 0;
}

#top_news h2.top {
    text-align: center;
}

#top_news ol {
    width: 85%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 50px;
}

#top_news ol li {
    border-bottom: 1px solid #EBEBEB;
    ;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 10px;
}

#top_news ol li::before {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    right: 3px;
    bottom: -19px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-top: 1px solid #EBEBEB;
    ;
    border-right: 1px solid #EBEBEB;
    ;
}

#top_news ol li .dt {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 7px;
    display: block;
}

#top_news ol li .dd {
    font-size: 16px;
    letter-spacing: 0.05em;
    display: block;
    padding-right: 1rem;
}

#top_news .circle_btn {
    margin: 0 auto;
}

@media screen and (min-width: 1000px) {
    #top_news {
        padding: 100px 0;
    }

    #top_news ol {
        width: 70%;
        max-width: 900px;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    #top_news ol li {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    #top_news ol li a {
        display: flex;
    }

    #top_news ol li .dt {
        display: block;
        font-size: 28px;
        margin-right: 40px;
        letter-spacing: 0.1em;
    }

    #top_news ol li .dd {
        display: block;
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    #top_news ol li::before {
        width: 13px;
        height: 13px;
        bottom: 16px;
    }

}


/*----------------------------------------
コンセプトページ
----------------------------------------*/
#concept .FV {
    height: 50vh;
}

.webp #concept .FV {
    background: url('../img/img-01.jpg') no-repeat center;
    background-size: cover;
}

.no-webp #concept .FV {
    background: url('../img/concept_FV.jpg') no-repeat center;
    background-size: cover;
}

#concept .block_01 {
    position: relative;
}

#concept h2 {
    position: relative;
    text-align: right;
    width: 95%;
    margin-top: 30px;
    color: #000;
}

#concept h2::before {
    content: '';
    display: block;
    position: absolute;
    top: 34px;
    width: 100px;
    height: 1px;
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    right: 270px;
}

#concept .main_catch {
    position: relative;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 50px;
    letter-spacing: 0.35em;
    position: absolute;
    top: 170px;
    left: 1rem;
    font-size: 20px;
    text-shadow: 0 0 5px #2D2F35;
    height: 340px;
    z-index: 10;
    font-weight: 700;
}

#concept .main_catch br {
    display: none;
}

#concept .main_catch::after {
    content: '';
    border: 0.5px solid #EBEBEB;
    display: block;
    width: 1px;
    height: 110px;
    position: absolute;
    bottom: -7rem;
    left: 1.5rem;
    text-shadow: 0 0 5px #2D2F35;
}

/*
.webp #concept .photo_area::after {
    background: url('../img/bg-water.jpeg') no-repeat center;
    background-size: cover;
}
*/

.no-webp #concept .photo_area::after {
    background: url('../img/bg-water.jpeg') no-repeat center;
    background-size: cover;
}

#concept .photo_area::after {
    content: '';
    display: block;
    width: 100%;
    height: 370px;
    position: absolute;
    top: 180px;
}

.concept_01 {
    display: block;
    width: 80%;
    max-width: 335px;
    margin-left: auto;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.concept_02 {
    display: block;
    position: relative;
    width: 80%;
    max-width: 335px;
    margin-right: auto;
    z-index: 1;
}

#concept .sub_catch {
    /*    background: #72675E;*/
    background: #EBEBEB;
    color: #145DA0;
    padding: 20px;
    width: 80%;
    margin-left: auto;
    margin-top: 40px;
    font-size: 18px;
    line-height: 2;
}

#concept .block_02 {
    margin-top: 50px;
    padding: 100px 7%;
}

/*
.webp #concept .block_02 {
    background: url('../img/img-04.jpeg') no-repeat center;
    background-size: cover;
}
*/

.no-webp #concept .block_02 {
    background: url('../img/img-04.jpeg') no-repeat center;
    background-size: cover;
}

#concept .block_02 h3 {
    font-size: 25px;
    margin-bottom: 4rem;
}

#concept .block_02 p {
    font-size: 16px;
    line-height: 35px;
}

#concept .swiper_area {
    margin-top: 60px;
    margin-bottom: 60px;
}

#concept .swiper {
    width: 100%;
}

#concept .swiper .swiper-wrapper {
    transition-timing-function: linear;
}

#concept .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
}

@media screen and (min-width: 768px) {
    #concept h2 {
        width: 90%;
        margin-top: 90px;
    }

    #concept h2::before {
        right: 380px;
        left: unset;
        width: 200px;
        top: 37px;
    }

    #concept .main_catch {
        font-size: 35px;
        height: 460px;
        left: 10%;
        line-height: 2.1;
    }

    #concept .main_catch br {
        display: block;
    }

    #concept .main_catch span {
        position: absolute;
        top: 100px;
        font-weight: 700;
        text-shadow: 2px 2px 2px #000;
    }

    #concept .main_catch::after {
        height: 200px;
        bottom: -190px;
        left: -38px;
    }

    .concept_01 {
        max-width: 900px;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .concept_02 {
        max-width: 1024px;
    }

    .webp #concept .photo_area::after {
        width: 80%;
        left: 0;
        right: 0;
        margin: auto;
        height: 640px;
        top: 420px;
    }

    #concept .sub_catch {
        font-size: 30px;
        padding: 70px;
        line-height: 2.3;
        margin-top: -100px;
        z-index: 100;
        position: relative;
        width: 80%;
        max-width: 700px;
        letter-spacing: 0.2em;
    }

    .webp #concept .block_02 {
        height: 750px;
        margin-top: 100px;
    }

    #concept .block_02 h3 {
        font-size: 35px;
        letter-spacing: 0.3em;
        margin-top: 100px;
    }

    #concept .block_02 p {
        font-size: 18px;
        line-height: 2.5;
    }

    #concept .swiper_area {
        /*        margin-top: 130px;*/
        /*        margin-bottom: -130px;*/
        margin-top: 80px;
        margin-bottom: 80px;
    }

    #concept .swiper-slide {
        width: 515px;
        height: 333px;
    }
}

@media screen and (min-width: 1280px) {
    #concept .FV {
        margin-top: unset;
        height: 716px;
    }

    #concept .main_catch {
        left: 20%;
        font-weight: 700;
        text-shadow: 2px 2px 2px #000;
    }
}

/*----------------------------------------
Roomページ
----------------------------------------*/
#room .FV {
    height: 50vh;
}

.webp #room .FV {
    background: url('../img/namioto_room_banner.png') no-repeat center;
    background-size: cover;
}

.no-webp #room .FV {
    background: url('../img/img-02.jpg') no-repeat center;
    background-size: cover;
}

#room .block_01 {
    position: relative;
}

#room h2 {
    position: relative;
    text-align: right;
    width: 95%;
    padding-top: 30px;
    color: #000;
}

#room h2::before {
    content: '';
    display: block;
    position: absolute;
    top: 64px;
    width: 100px;
    height: 1px;
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    right: 190px;
}

.webp #room .block_01 {
    background: url('../img/bg-water.jpeg') no-repeat center;
    background-size: cover;
    background-position: bottom 0px left 40vw;
    padding-bottom: 80px;
}

.no-webp #room .block_01 {
    background: url('../img/bg-water.jpeg') no-repeat center;
    background-size: cover;
    background-position: bottom 0px left 40vw;
    padding-bottom: 70px;
}

#room .block_01 .point {
    width: 85%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 20px;
}


#room .room_00 {
    width: 100%;
    margin-bottom: 40px;
}

#room .block_01 .point h3 {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 40px;
    color: #145DA0;
}

#room .block_01 .point h3 span {
    font-size: 30px;
}

#room .block_01 .point p {
    font-size: 16px;
    line-height: 2;
    color: #145DA0;
}

#room .block_01 .room_01 {
    width: 75%;
}

#room .block_01 .point2 p {
    margin: 0 auto;
    width: 85%;
    font-size: 16px;
    line-height: 2;
    margin-top: 40px;
}

#room .block_02 {
    /*    background: #72675E;*/
    background: #EBEBEB;
    color: #145DA0;
    padding-bottom: 40px;
}

#room .block_02 figure {
    text-align: right;
    margin-bottom: -20px;
}

#room .block_02 .room_02 {
    width: 90%;
    position: relative;
    top: -50px;
    z-index: 1;
}

#room .block_02 .point3 {
    width: 85%;
    margin: 0 auto;
    line-height: 2;
}

#room .block_03 .room_03 {
    width: 100%;
}

#room .block_03 .point4 {
    width: 85%;
    margin: 0 auto;
    line-height: 2;
    margin-top: 30px;
}

#room #room_101 {
    margin-top: 100px;
    margin-bottom: 100px;
}

#room #room_101 figure.room_101_wrap,
#room #room_101 figure.room_102_wrap {
    text-align: right;
}

#room #room_101 figure.room_201_wrap,
#room #room_101 figure.room_202_wrap {
    text-align: left;
}

#room .room_img {
    width: 100%;
    height: auto;
}

#room h4.room_no {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    margin-bottom: 30px;
    text-align: center;
    height: 100px;
    position: relative;
    margin-left: -100px;
    color: #000;
}

#room h4.room_no span {
    font-size: 65px;
    position: absolute;
    bottom: 20px;
    margin-left: 20px;
}

#room h4.room_no span::before {
    content: '';
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    display: block;
    position: relative;
    width: 1px;
    height: 100px;
    transform: rotate(45deg);
    top: 30px;
}

#room .room_point {
    /*    background: #72675E;*/
    background: #EBEBEB;
    color: #145DA0;
    width: 90%;
    padding: 20px;
    line-height: 2;
    margin-top: -40px;
    z-index: 1;
    position: relative;
    font-size: 14px;
}

#room #room_201 .room_point,
#room #room_202 .room_point {
    margin-left: auto;
}

#room .room_point .dl_wrap p {
    margin-bottom: 20px;
}

#room .room_point .dl_wrap dl {
    display: flex;
    margin-bottom: 15px;
    line-height: 1.5;
}


#room .room_point .dl_wrap dl:last-child {
    margin-bottom: 0;
}

#room .room_point .dl_wrap dl dt {
    width: 35%;
}

#room .room_point .dl_wrap dl dd {
    width: 65%;
}

#room figure.room_figure_wrap {
    text-align: center;
}

#room .room_figure {
    width: 90%;
    margin-top: 30px;
}

#room a.zoom {
    display: block;
    padding: 7px;
    background-color: #72675E;
    color: #EBEBEB;
    width: 220px;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
}

#room #room_102,
#room #room_202 {
    margin-top: 100px;
}

.webp #room .room_datails {
    background: url('../img/bg-water.jpeg') no-repeat center;
    background-size: cover;
    padding: 60px 0;
    margin-top: 50px;
}

.no-webp #room .room_datails {
    background: url('../img/bg-water.jpeg') no-repeat center;
    background-size: cover;
    padding: 60px 0;
    margin-top: 50px;
}

#room .room_datails h4 {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 50px;
    margin-bottom: 60px;
    line-height: 1.5;
}

#room .room_datails dl {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
    margin-top: 25px;
}

#room figure.room_102_wrap {
    text-align: right;
}

#room #room_101 .swiper_wrap,
#room #room_102 .swiper_wrap {
    width: 95%;
    margin-left: auto;
}

#room #room_201 .swiper_wrap,
#room #room_202 .swiper_wrap {
    width: 95%;
    margin-right: auto;
}

#room .swiper-wrapper {
    width: 100%;
}

#room .swiper-button-next,
#room .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: rgba(151, 124, 100, 0.7);
    border-radius: 50%;
}

#room .swiper-button-next:after,
#room .swiper-button-prev:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 50%;
    right: 13px;
    bottom: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
}

#room .swiper-button-next:after {
    transform: rotate(45deg);
}

#room .swiper-button-prev:after {
    transform: rotate(-135deg);
    right: unset;
    left: 12px;
}

#room .swiper-pagination-bullet-active {
    background: rgba(151, 124, 100, 0.7);
}


@media screen and (min-width: 768px) {
    #room h2 {
        width: 90%;
        margin-top: unset;
    }

    #room h2::before {
        right: 270px;
        left: unset;
        width: 200px;
        top: 67px;
    }

    #room .block_01 {
        padding-top: 70px;
    }

    .webp #room .block_01 {
        background-position: bottom 0px left 60vw;
        padding-bottom: 260px;
    }

    .no-webp #room .block_01 {
        background-position: bottom 0px left 60vw;
    }

    #room .block_01 .point {
        padding: 60px 0;
    }

    #room .block_01 .point h3 {
        font-size: 30px;
    }

    #room .block_01 .point h3 span {
        font-size: 50px;
    }

    #room .block_01 .point p {
        font-size: 18px;
        line-height: 2.5;
    }

    #room .room_00 {
        margin-bottom: 100px;
    }

    #room .block_01 .room_01 {
        max-width: 580px;
    }

    #room .block_01 .point2 {
        display: flex;
        align-items: flex-end;
        font-size: 14px;
    }

    #room .block_01 .point2 figure {
        margin-right: 50px;
        width: 50%;
        max-width: 690px;
    }

    #room .block_01 .point2 figure img {
        width: 100%;
    }

    #room .block_01 .point2 p {
        font-size: 18px;
        width: 45%;
        line-height: 2.5;
        margin: unset;
        padding-bottom: 3rem;
        margin-right: 2rem;
    }

    #room .block_02 {
        position: relative;
    }

    #room .block_02 .room_02 {
        max-width: 500px;
        top: -190px;
        width: 50%;
    }

    #room .block_02 .point3 {
        position: absolute;
        top: -170px;
        width: 40%;
    }

    #room .room_02_wrap {
        padding: 0px 5% 100px;
        margin: 0 auto;
        max-width: 1400px;

    }

    #room .block_03 {
        /*        background: #72675E;*/
        background: #EBEBEB;
        color: #145DA0;
    }

    #room .block_03 .room_03 {
        width: 70%;
        max-width: 780px;
        margin-top: -400px;
        z-index: 1;
        position: relative;
        left: 0;
    }

    #room .room_03_wrap {
        padding: 0px 5% 70px;
        margin: 0 auto;
        max-width: 1400px;
    }

    #room .block_03 .point4 {
        width: 65%;
        margin: unset;
        margin-left: auto;
        margin-top: 70px;
    }

    #room h4.room_no {
        font-size: 65px;
        width: 90%;
        margin: 0 auto;
        text-align: left;
        margin-bottom: 40px;
    }

    #room h4.room_no span {
        font-size: 85px;
    }

    #room h4.room_no span::before {
        height: 150px;
        top: 60px;
    }

    #room #room_201 h4.room_no,
    #room #room_202 h4.room_no {
        text-align: right;
        padding-right: 130px;
    }

    #room #room_102,
    #room #room_201,
    #room #room_202 {
        margin-bottom: -100px;
        margin-top: 0;
    }

    #room #room_102,
    #room #room_202 {
        margin-top: 0;
    }

    #room #room_101 {
        margin-bottom: 0;
        margin-bottom: -100px;
    }

    #room #room_101 .room_101_img {
        width: 100%;
    }

    #room .room_img {
        width: 100%;
    }

    #room .room_point {
        width: 50%;
        padding: 3% 3%;
        line-height: 2.5;
        top: -270px;
        font-size: 14px;
    }

    #room .room_point .dl_wrap p {
        font-size: 16px;
    }

    #room .room_point h4 {
        font-size: 25px;
    }

    #room .room_point span {
        font-size: 16px;
    }

    #room .room_figure_wrap {
        margin-top: -230px;
        margin-bottom: 250px;
    }

    #room .room_figure {
        max-width: 1000px;
    }

    #room #room_202 .room_point {
        margin-bottom: 50px;
    }

    .webp #room .room_datails {
        padding: 100px 0 120px;
        margin-top: 0;
    }

    #room .room_datails h4 {
        font-size: 60px;
        position: relative;
    }

    #room .room_datails .dl_wrap {
        display: flex;
        width: 90%;
        margin: 0 auto;
        justify-content: space-between;
    }

    #room .room_datails .dl_wrap .left,
    #room .room_datails .dl_wrap .right {
        width: 48%;
    }

    #room .room_datails h4::after {
        content: '';
        /*        border: 0.5px solid #EBEBEB;*/
        border: 0.5px solid #000;
        display: block;
        width: 1px;
        height: 200px;
        position: absolute;
        left: 50%;
        right: 50%;
        top: 140px;
    }

    #room a.zoom {
        display: none;
    }

    #room .room_figure {
        margin-top: 0;
    }

    #room #room_101 .swiper_wrap,
    #room #room_102 .swiper_wrap,
    #room #room_201 .swiper_wrap,
    #room #room_202 .swiper_wrap {
        width: 70%;
        max-width: 1000px;
    }

    #room .swiper-button-next,
    #room .swiper-button-prev {
        width: 40px;
        height: 40px;
        position: absolute;
        bottom: 40px;
        top: unset;
    }

    #room .swiper-button-next {
        right: 40%;
    }

    #room .swiper-button-prev {
        left: 40%;
    }

    #room .swiper-button-next:after #room .swiper-button-prev:after {
        width: 13px;
        height: 13px;
    }

    #room .swiper-button-next:after {
        right: 17px;
    }

    #room .swiper-button-prev:after {
        left: 16px;
    }

    #room .swiper-pagination {
        bottom: 45px;
    }

    #room .swiper-slide img {
        height: unset;
    }
}

@media screen and (min-width: 1000px) {
    #room #room_101 {
        margin-top: 100px;
    }

    #room .room_point {
        width: 52%;
        padding: 3% 4%;
        line-height: 2.5;
        top: -380px;
        font-size: 16px;
        margin-bottom: -30px;
    }

    #room .room_datails .dl_wrap {
        width: 80%;
    }

    #room .room_datails .dl_wrap .left,
    #room .room_datails .dl_wrap .right {
        width: 40%;
    }

}

@media screen and (min-width: 1200px) {
    #room #room_101 {
        margin-top: 0;
    }

    #room h4.room_no {
        top: 250px;
        width: 95%;
        max-width: 1300px;
    }

    #room .room_point {
        top: -270px;
        margin-bottom: 30px;
    }

    #room_201 {
        margin-top: 60px;
    }

    #room .room_figure_wrap {
        margin-bottom: 140px;
    }

    .webp #room .room_datails {
        margin-top: 200px;
    }
}

@media screen and (min-width: 1280px) {
    #room .FV {
        margin-top: unset;
        height: 716px;
    }

    #room .main_catch {
        left: 20%;
    }
}

/*----------------------------------------
Accessページ
----------------------------------------*/
#access .FV {
    height: 50vh;
}

/*
.webp #access .FV {
    background: url('../img/img-bridge.jpeg') no-repeat center;
    background-size: cover;
}
*/

.no-webp #access .FV {
    background: url('../img/img-bridge.jpeg') no-repeat center;
    background-size: cover;
}

#access .block_01 {
    position: relative;
}

#access h2 {
    position: relative;
    text-align: right;
    width: 95%;
    padding-top: 30px;
    color: #000;
}

#access h2::before {
    content: '';
    display: block;
    position: absolute;
    top: 64px;
    width: 100px;
    height: 1px;
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    right: 210px;
}

#access .address_area {
    margin-bottom: 50px;
}

#access .address_area .address_wrap {
    margin: 0 auto;
    width: 85%;
    margin-top: 30px;
}

#access .address_area .address_wrap .name {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    display: block;
    /*    color: #977C64;*/
    color: #242f4d;
}

#access .address_area .address_wrap .address {
    font-size: 14px;
    color: #000;
}

#access .address_area iframe {
    width: 100%;
    height: 300px;
    margin-top: 30px;
}

#access section.car,
#access section.bus,
#access section.rental {
    width: 85%;
    margin: 0 auto;
    margin-top: 20px;
    border-bottom: 1px solid #977C64;
}

#access section h3 {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3rem;
    font-size: 40px;
    /*    color: #977C64;*/
    /*    color: #242f4d;*/
    color: #145EA0;
    position: relative;
    transition: all .5s ease;
    margin-bottom: 30px;
    line-height: 1.4;
}

#access section h3 span {
    font-size: 18px;
    /*    color: #EBEBEB;*/
    letter-spacing: 0.2rem;
    display: block;
    margin-top: 20px;
    color: #000;
}

#access section h3::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 5px;
    width: 15px;
    height: 15px;
    z-index: 100;
    right: 0;
    /*
    border-top: 1px solid #977C64;
    border-right: 1px solid #977C64;
*/
    border-top: 1px solid #145EA0;
    border-right: 1px solid #145EA0;
    transform: rotate(135deg);
    transition: all 0.3s;
}

#access section h3.close::before {
    transform: rotate(-45deg);
    bottom: -7px;
}

/*アコーディオンで現れるエリア*/
.detail_box {
    display: none;
}

#access .ol_wrap {
    /*    border-left: 1px solid #977C64;*/
    border-left: 1px solid #242f4d;
    padding-left: 25px;
    margin-bottom: 40px;
    margin-right: 10px;
    color: #000;
}

#access .ol_wrap:last-child {
    margin-right: 0;
}

#access h4 {
    /*    color: #977C64;*/
    color: #242f4d;
    font-size: 16px;
    margin-bottom: 15px;
}

#access ol_wrap ol li {
    font-size: 14px;
    color: #000;
}

#access .place ol li {
    margin-bottom: 36px;
    position: relative;
}

#access .place ol li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 20px;
    background: #EBEBEB;
    position: absolute;
    bottom: -27px;
    left: 50px;
}

#access .place ol li::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 5px;
    background: #EBEBEB;
    position: absolute;
    bottom: -27px;
    left: 52px;
    transform: rotate(-135deg);
}

#access .place ol li:last-child {
    margin-bottom: 0;
}

#access .place ol li:last-child::before,
#access .place ol li:last-child::after {
    display: none;
}

#access .route ol li {
    margin-bottom: 75px;
    position: relative;
}

#access .route ol li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 50px;
    background: #EBEBEB;
    position: absolute;
    bottom: -61px;
    left: 50px;
}

#access .route ol li::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 5px;
    background: #EBEBEB;
    position: absolute;
    bottom: -61px;
    left: 52px;
    transform: rotate(-135deg);
}

#access .route ol li:last-child {
    margin-bottom: 0;
}

#access .route ol li:last-child::before,
#access .route ol li:last-child::after {
    display: none;
}

#access .route ol li .time {
    display: block;
    position: absolute;
    font-size: 13px;
    /*    color: #977C64;*/
    color: #242f4d;
    left: 80px;
    top: 48px;
}

#access .ol_wrap p.attention {
    font-size: 13px;
    /*    color: #977C64;*/
    color: #242f4d;
    margin-top: 20px;
}

#access .rental_shop {
    padding: 20px;
    /*    border: 1px solid #977C64;*/
    ;
    border: 1px solid #242f4d;
    font-size: 14px;
    color: #000;
}

#access .rental_shop h5 {
    /*    color: #977C64;*/
    color: #242f4d;
    font-size: 16px;
    margin-bottom: 20px;
}

#access .rental_shop li {
    margin-bottom: 15px;
    color: #000;
}

#access .rental_shop li span {
    display: inline-block;
}

#access .map {
    border-bottom: none;
    width: 85%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 50px;
}

#access section.map h3::before {
    content: none;
}

#access .map img {
    width: 100%;
}

#access .map .btn {
    display: block;
    padding: 7px;
    background-color: #977C64;
    color: #EBEBEB;
    width: 160px;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
}

@media screen and (min-width: 768px) {
    #access h2 {
        width: 90%;
        margin-top: unset;
        margin-bottom: 50px;
    }

    #access h2::before {
        right: 310px;
        left: unset;
        width: 200px;
        top: 67px;
    }

    #access .address_area {
        padding-top: 50px;
    }

    #access .address_area .address_wrap .name {
        font-size: 20px;
    }

    #access .address_area .address_wrap .address {
        font-size: 16px;
    }

    #access .address_area iframe {
        height: 670px;
        margin-top: 70px;
    }

    #access section h3 {
        font-size: 70px;
        display: flex;
        margin-bottom: 70px;
    }

    #access .detail_box {
        display: flex;
        justify-content: space-between;
    }

    #access section.car,
    #access section.bus,
    #access section.rental {
        border-bottom: none;
        margin-top: 80px;
    }

    #access section h3 span {
        font-size: 30px;
        margin-left: 30px;
        margin-top: 40px;
    }

    #access section h3::before {
        display: none;
    }

    #access section h3::after {
        content: '';
        display: block;
        position: absolute;
        top: 53px;
        width: 30%;
        height: 1px;
        /*        border: 0.5px solid #EBEBEB;*/
        border: 0.5px solid #000;
        right: 0;
    }

    #access h4 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    #access .place ol li {
        font-size: 16px;
    }

    #access .place ol li::before {
        left: 63px;
        top: unset;
        bottom: -26px;
    }

    #access .place ol li::after {
        left: 65px;
        top: unset;
        bottom: -26px;
    }

    #access .route ol li .time,
    #access .ol_wrap p.attention {
        font-size: 14px;
    }

    #access .route ol li.eol::before {
        top: unset;
        bottom
    }

    #access .bus .detail_box {
        display: flex;
        justify-content: flex-start;
    }

    #access .bus .detail_box .ol_wrap:first-child {
        margin-right: 50px;
    }

    #access .rental .detail_box {
        display: flex;
        justify-content: flex-start;
    }

    #access .rental .detail_box .ol_wrap:first-child {
        margin-right: 100px;
    }

    #access .rental_shop h5 {
        margin-bottom: 15px;
    }

    #access .rental_shop li {
        margin-bottom: 10px;
    }

    #access .rental_shop li:last-child {
        margin-bottom: 0;
    }

    #access .rental_shop {
        height: fit-content;
    }

    #access .map figure {
        text-align: center;
    }

    #access .map img {
        max-width: 987px;
    }

    #access .map .btn {
        display: none;
    }

    #access .rental h3::after {
        width: 27%;
    }

    #access .rental h3 {
        display: block;
    }

    #access .rental h3 span {
        margin-left: 0;
        margin-top: 10px;
    }

}

@media screen and (min-width: 1000px) {
    #access section h3::after {
        width: 47%;
    }

    #access .rental h3::after {
        width: 40%;
    }
}

@media screen and (min-width: 1280px) {
    #access .FV {
        margin-top: unset;
        height: 716px;
    }

    #access .rental h3 {
        display: flex;
    }

    #access .rental h3 span {
        margin-left: 30px;
        margin-top: 40px;
    }

    #access .rental h3::after {
        width: 30%;
    }

    #access section h3::after {
        width: 58%;
    }
}

/*----------------------------------------
Newsページ
----------------------------------------*/
#news .FV {
    height: 50vh;
}

.webp #news .FV {
    background: url('../img/news01.jpeg') no-repeat center;
    background-size: cover;
}

.no-webp #news .FV {
    background: url('../img/news01.jpeg') no-repeat center;
    background-size: cover;
}

#news h2 {
    position: relative;
    text-align: right;
    width: 95%;
    padding-top: 30px;
    color: #000;
}

#news h2::before {
    content: '';
    display: block;
    position: absolute;
    top: 64px;
    width: 100px;
    height: 1px;
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    right: 170px;
}

#news .news_wrap {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
}

#news .news_wrap li {
    margin-bottom: -10px;
    line-height: 1.7;
    /*    border-bottom: 1px solid #EBEBEB;*/
    border-bottom: 1px solid #000;
    padding: 20px 0;
    position: relative;
    color: #000;
}

#news .news_wrap li .day {
    display: block;
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 5px;
}

#news .news_wrap li .text {
    font-size: 14px;
    letter-spacing: 0.05em;
    display: block;
    padding-right: 1rem;
}

#news .news_wrap li::after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    right: 3px;
    bottom: -12px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-top: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
}

#news .pagenation {
    width: fit-content;
    margin: 0 auto;
    display: flex;
}

#news .pagenation p {
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#news .pagenation p a {
    display: block;
    width: 30px;
    height: 30px;
    background: #977C64;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#news .pagenation p a:hover {
    opacity: 0.5;
}


#news .pagenation p.now {
    width: 30px;
    height: 30px;
    text-align: center;
    background: #EBEBEB;
    color: #977C64;
}

#news .pagenation p.old a {
    background: none;
}

#news .pagenation p.old a::before,
#news .pagenation p.old a::after {
    content: "";
    position: absolute;
    margin: auto;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-top: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
    top: 0;
    bottom: 0;
}

#news .pagenation p.old a::before {
    right: -20px;
}

#news .pagenation p.old a::after {
    right: -13px;
}


@media screen and (min-width: 768px) {
    #news h2 {
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #news h2::before {
        right: 260px;
        left: unset;
        width: 200px;
        top: 67px;
    }

    #news .news_wrap {
        max-width: 1000px;
        margin-bottom: 70px;
    }

    #news .news_wrap li {
        margin-bottom: 0;
    }

    #news .news_wrap li a {
        display: flex;
    }

    #news .news_wrap li .day {
        font-size: 25px;
        margin-right: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #news .news_wrap li .text {
        font-size: 16px;
        margin-top: 11px;
        padding-right: 3rem;
    }

    #news .pagenation p {
        margin-right: 20px;
    }
}

@media screen and (min-width: 1280px) {
    #news .FV {
        margin-top: unset;
        height: 716px;
    }

    #news .rental h3 {
        display: flex;
    }

    #news .rental h3 span {
        margin-left: 30px;
        margin-top: 40px;
    }

    #news .rental h3::after {
        width: 30%;
    }

    #news section h3::after {
        width: 58%;
    }
}

/*----------------------------------------
ブログ記事
----------------------------------------*/
#news article {
    width: 85%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 150px;
    margin-bottom: 50px;
    color: #000;
}

#news article time {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    display: block;
    margin-bottom: 30px;
    color: #00;
}

#news article h3 {
    font-size: 22px;
    line-height: 2;
    margin-bottom: 2rem;
    /*    border-bottom: 1px solid #977C64;*/
    border-bottom: 1px solid #145DA0;
    padding-bottom: 2rem;
}

#news article figure img {
    margin: 30px 0;
}

#news article .detail {
    font-size: 14px;
    color: #000;
}

#news .detail_pagenation {
    width: 85%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #000;
}

#news .detail_pagenation p {
    position: relative;
    width: 80px;
    color: #000;
}

#news .detail_pagenation p.new {
    margin-left: 30px;
    color: #000;
}

#news .detail_pagenation p.old {
    margin-right: 30px;
    text-align: right;
    color: #000;
}

#news .detail_pagenation p.new a::before,
#news .detail_pagenation p.new a::after,
#news .detail_pagenation p.old a::before,
#news .detail_pagenation p.old a::after {
    content: "";
    position: absolute;
    margin: auto;
    width: 8px;
    height: 8px;
    /*
    border-top: 1px solid #EBEBEB;
    border-right: 1px solid #EBEBEB;
*/
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    top: 0;
    bottom: 0;
}

#news .detail_pagenation p.new a::before,
#news .detail_pagenation p.new a::after {
    transform: rotate(-135deg);
}

#news .detail_pagenation p.old a::before,
#news .detail_pagenation p.old a::after {
    transform: rotate(45deg);
}

#news .detail_pagenation p.new a::before {
    left: -13px;
}

#news .detail_pagenation p.new a::after {
    left: -20px;
}

#news .detail_pagenation p.old a::before {
    right: -20px;
}

#news .detail_pagenation p.old a::after {
    right: -13px;
}

#news .detail_pagenation p.list {
    border-bottom: 1px solid #EBEBEB;
    text-align: center;
}

#news .detail_pagenation p a:hover {
    opacity: 0.5;
}

#news article a {
    color: #977C64;
    border-bottom: 1px solid #977C64;
    padding-bottom: 5px;
}

@media screen and (min-width: 1024px) {
    #news article {
        margin-top: 200px;
        margin-bottom: 100px;
    }

    #news article time {
        font-size: 30px;
    }

    #news article h3 {
        font-size: 25px;
    }

    #news article figure img {
        margin: 50px 0;
    }

    #news article .detail {
        font-size: 16px;
        line-height: 2;
    }

    #news .detail_pagenation {
        font-size: 16px;
    }

    #news .detail_pagenation p {
        width: 100px;
    }

}


/*----------------------------------------
Facilityページ
----------------------------------------*/
#facility .FV {
    height: 50vh;
}

/*
.webp #facility .FV {
    background: url('../img/img-equip01.jpg') no-repeat center;
    background-size: cover;
}
*/

.no-webp #facility .FV {
    background: url('../img/img-equip01.jpg') no-repeat center;
    background-size: cover;
}

#facility h2 {
    position: relative;
    text-align: right;
    width: 95%;
    padding-top: 30px;
    color: #000;
}

#facility h2::before {
    content: '';
    display: block;
    position: absolute;
    top: 64px;
    width: 70px;
    height: 1px;
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    right: 250px;
}

#facility .facility_area {
    text-align: center;
    color: #000;
}

#facility .facility_area ul {
    width: 85%;
    margin: 0 auto;
    margin-top: 50px;
}

#facility .facility_area ul li {
    display: block;
    padding-bottom: 40px;
    /*    border-bottom: 1px solid #72675E;*/
    border-bottom: 1px solid #586c9b;
    margin-top: 40px;
    color: #000;
}

#facility .facility_area ul li h3 {
    font-family: cormorant-garamond, serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3rem;
    font-size: 35px;
    /*    color: #977C64;*/
    color: #242f4d !important;
    margin-bottom: 30px;
}

#facility .facility_area ul li h3 span {
    display: block;
    font-family: shippori-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    /*    color: #EBEBEB;*/
    margin-top: 15px;
    letter-spacing: 0.08rem;
    color: #000;
}

#facility .facility_area img {
    width: 100%;
    margin-bottom: 30px;
}

#facility .facility_area ul p {
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    #facility .facility_area {
        padding-top: 50px;
    }

    #facility h2 {
        width: 90%;
        margin-top: unset;
        margin-bottom: 50px;
    }

    #facility h2::before {
        right: 360px;
        left: unset;
        width: 200px;
        top: 67px;
    }

    #facility .facility_area ul {
        margin-top: 100px;
    }

    #facility .facility_area ul li {
        margin-top: 80px;
        padding-bottom: 80px;
    }

    #facility .facility_area ul li h3 {
        font-size: 50px;
        margin-bottom: 50px;
    }

    #facility .facility_area ul li h3 span {
        font-size: 20px;
        margin-top: 30px;
    }

    #facility .facility_area img {
        margin-bottom: 50px;
    }

    #facility .facility_area ul p {
        font-size: 18px;
        line-height: 2;
    }
}

@media screen and (min-width: 1024px) {
    #facility .facility_area ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 50px;
    }

    #facility .facility_area ul li {
        width: 48%;
    }
}

@media screen and (min-width: 1280px) {
    #facility .FV {
        margin-top: unset;
        height: 716px;
    }

}

/*----------------------------------------
Activityページ
----------------------------------------*/
#activity .FV {
    height: 50vh;
}

/*
.webp #activity .FV {
    background: url('../img/img-activity02.jpg') no-repeat center;
    background-size: cover;
}
*/

.no-webp #activity .FV {
    background: url('../img/img-activity02.jpg') no-repeat center;
    background-size: cover;
}

#activity h2 {
    position: relative;
    text-align: right;
    width: 95%;
    padding-top: 30px;
    color: #000;
}

#activity h2::before {
    content: '';
    display: block;
    position: absolute;
    top: 64px;
    width: 70px;
    height: 1px;
    /*    border: 0.5px solid #EBEBEB;*/
    border: 0.5px solid #000;
    right: 250px;
}

#activity .activity_area {
    text-align: center;
}

#activity .activity_detail {
    width: 85%;
    margin: 0 auto;
    margin-top: 30px;
}

#activity .activity_detail img {
    width: 100%;
    margin-bottom: 30px;
}

#activity .activity_detail p {
    font-size: 14px;
    text-align: left;
    color: #000;
}




@media screen and (min-width: 768px) {
    #activity .activity_area {
        padding-top: 50px;
        margin-bottom: 50px;
    }

    #activity h2 {
        width: 90%;
        margin-top: unset;
        margin-bottom: 50px;
    }

    #activity h2::before {
        right: 360px;
        left: unset;
        width: 200px;
        top: 67px;
    }

    #activity .activity_detail {
        margin-top: 100px;
    }

    #activity .activity_detail img {
        margin-bottom: 70px;
    }

    #activity .activity_detail p {
        font-size: 18px;
    }

}

@media screen and (min-width: 1024px) {
    #activity .activity_detail {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding-bottom: 100px;
    }

    #activity .activity_detail figure {
        width: 48%;
    }

    #activity .activity_detail img {
        margin-bottom: 0;
    }

    #activity .activity_detail p {
        width: 48%;
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

/*=== Custom ===*/
.img-activity {
    position: relative;
    width: 42% !important;
}

.txt-black-shadow {
    color: #fff !important;
    text-shadow: 2px 2px 3px lightgrey !important;
    font-weight: 600;
}

#room .txt-black-shadow {
    color: #000 !important;
    text-shadow: 2px 2px 3px lightgrey !important;
    font-weight: 600;
}

.txt-black {
    color: #000;
    text-shadow: 2px 2px 3px lightgrey !important;
    font-weight: 600;
}

#room .room_datails h4::after {
    color: #000;
}

#gallery {
    margin: 1rem;
}

#gallery img {
    margin: 2.4rem 0.7rem;
}

#yt {
    display: block;
    text-align: center;
    min-height: 200px;
    padding-top: 60px;
    color: #000;
    /*    background: #3572b7;*/
}

.txt-black {
    color: #000 !important;
    z-index: 999;
    padding-bottom: 80px;
}

#top_room_detail h2.top {
    display: inline-block;
}

.yt-video img {
    width: 50%;
    height: auto;
    margin-top: 10px;
}

#top_room .circle_btn a span.btn,
#top_activity .circle_btn a span.btn,
#top_news .circle_btn a span.btn {
    color: #000;
}

#top_room .circle_btn a span.circle,
#top_activity .circle_btn a span.circle,
#top_news .circle_btn a span.circle {
    border: 1px solid #000;
}

#top_room .circle_btn a span.btn::after,
#top_activity .circle_btn a span.btn::after,
#top_news .circle_btn a span.btn::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 5px;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    transform: skew(45deg);
    transition: 0.3s;
    margin-bottom: 4px;
    margin-left: 15px;
}

.ft-title span {
    position: relative;
}

.ft-title span::before {
    content: "あいが";
    position: absolute;
    top: -14px;
    left: 0;
    font-size: 10px;
}

.swiper-wrapper {
    /*    height: 50%!important;*/
    height: 38% !important;
}

.sec-editor {
    color: #000;
}

.mgb-20 {
    margin-bottom: 20px;
}

.pdb-20 {
    padding-bottom: 20px;
}

.mgt-20 {
    margin-top: 20px;
}

.pdt-20 {
    padding-top: 20px;
}

.thanks {
    padding: 100px 0;
    min-height: 500px;
}

.contact_detail {
    width: 85%;
    margin: 100px auto 20px;
}

#privacy-policy {
    color: #000;
    padding-top: 20px;
}

#personal-info {
    color: #000;
    margin-top: 60px;
}

#contact-form {
    color: #000;
    margin-top: 60px;
}

.txt-privacy,
.txt-personal-info {
    text-align: left;
    margin-top: 60px;
    line-height: 2.2em;
}

.activity_area h2 {
    color: #000;
}

.title-jp,
.title-jp2,
.title-jp3 {
    font-size: 30px;
    text-align: center;
    margin-top: 50px;
    font-weight: 700;
}

.title-jp2 {
    width: 94%;
    margin: 70px auto 50px;
    text-align: center;
    font-size: 25px;
    border-bottom: double 5px #b99b4b;
    border-top: double 5px #b99b4b;
    padding: 10px 0;
}

.title-jp3 {
    margin-top: 70px;
}

.title-en,
.title-en3 {
    display: block;
    font-size: 15px;
    font-family: cinzel;  
    text-align: center;
    margin-top: 15px;
    color: #b99b4b;
    text-transform: uppercase;
}

.contact-info {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Contact--------------------- */

.contact-form-st1 {
    width: 100%;
}

.contact-form-st1 tr td {
    background-color: #F6F6F6;
    background-color: #FDF9F6;
    border: 1px solid #FFF;
    font-size: 13px;
    padding: 20px 20px;
    color: #000;
}

.contact-form-st1 tr td:first-child {
    width: 30%;
    max-width: 250px;
    background: #F8ECE0;
    background-color: #EEF1F7;
    background-color: #f7f4ee;
    border: 1px solid #FFF;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

.contact-form-st1 tr td .form-group {
    margin-bottom: 0;
}

.contact-form-st1 tr td input[type=text],
.contact-form-st1 tr td input[type=email],
.contact-form-st1 tr td textarea {
    width: 100%;
    float: left;
    border: none;
    border-radius: 0;
    border: 1px #E6E6E6 solid;
    padding: 10px;
    box-shadow: none;
}

.contact-form-st1 tr td input[type=text],
.contact-form-st1 tr td input[type=email] {
    height: 37px;
}

.contact-form-st1 tr td textarea {
    height: 140px;
    resize: none;
}

.contact-form-st1 tr td select {
    width: 100%;
    box-shadow: none !important;
    border-radius: 0;
}

.contact-form-st1 tr.tr_btn td,
.contact-form-st1 tr.agree_check td {
    text-align: center;
    background: none;
}

.btn_submit {
    background-color: #3572b7;
    border-color: #3572b7;
    color: #FFF;
    padding: 6px 30px;
    box-shadow: none;
    border: 0;
    width: 120px;
    margin-right: 15px;
}

.btn_reset {
    background-color: #F8ECE0;
    border-color: #ccc;
    color: #000;
    padding: 6px 30px;
    box-shadow: none;
    border: 0;
    width: 120px;
}

.contact-note {
    float: right;
    display: inline-block;
    width: 44px;
    height: 20px;
    line-height: 17px;
    background-color: #3572b7;
    color: #FFF;
    font-size: 10px;
    font-weight: normal;
    text-align: center;
    margin: 0 0 0 10px;
}

#download {
    margin: 20px auto 60px;
    text-align: center;
}

.btn-download {
    background: #6c81c7;
    color: #fff;
    padding: 15px 30px;
    width: fit-content;
    display: block;
    margin: 0 auto;
    font-size: 20px;
}


@media screen and (max-width: 767px) {
    .contact-form-st1 tr td {
        width: 100% !important;
        float: left;
    }
    .contact-form-st1 tr td:first-child {
        max-width: inherit;
    }
    
    .title-jp, .title-jp2, .title-jp3 {
        font-size: 22px;
    }
}

/* End contact-------------- */

@media screen and (min-width: 1280px) {
    #activity .FV {
        margin-top: unset;
        height: 716px;
    }

}

@media screen and (max-width: 1024px) {
    #activity .activity_detail {
        padding-bottom: 150px;
    }

    #concept .swiper_area {
        margin-bottom: -210px;
    }
}

@media screen and (max-width: 834px) {
    .img-activity {
        width: 100% !important;
    }

    #concept .swiper_area {
        margin-bottom: -120px;
    }
}

@media screen and (max-width: 768px) {
    #concept .swiper_area {
        margin-bottom: -20px;
    }
}

@media screen and (max-width: 767px) {
    #concept .swiper_area {
        margin-bottom: -130px;
    }

    h1 img {
        width: 230px;
        -webkit-filter: invert(100%);
        /* Safari/Chrome */
        filter: invert(100%);
    }

    #room .block_01 .point h3 {
        color: #000;
    }

    #room .block_01 .point p {
        color: #000;
    }

    #top_concept .text_area {
        margin-top: 130px;
    }

    #top_concept h3::before {
        height: 80px;
        margin-top: -87px;
    }

    #top_concept h3 {
        top: -6px;
        height: 350px;
    }


}