/* 共通 */
:root {
    --txt_ja: "Noto Serif JP", serif;
    --txt_en: "Cormorant Infant", serif;
    --fw_bold: bold;
    --fw_md: 500;
    --main_color: #FFE9B0;
    --accent_color: #FB9804;
    --font_color: #352722;
    --bg_color: #1D1C1C;
}

body {
    font-family: "Noto Serif JP", serif;
    color: var(--main_color);
    margin: 0;
    padding: 0;
    background-color: #1D1C1C;
}

h1,
h2,
h3,
p,
ul {
    font-family: "Noto Serif JP", serif;
    margin: 0;
    padding: 0;
}

a {
    font-family: "Noto Serif JP", serif;
    text-decoration: none;
}

a:hover {
    color: var(--main_color);
    opacity: 0.7;
}

li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

*:hover {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.inner {
    max-width: 1200px;
    min-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.txt_br_sp {
    display: none;
}

.glonav_open {
    overflow: hidden;
}

.is_close {
    opacity: 0;
}

.reveal-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* 黒いマスクのように左→右へ開く演出 */
.reveal-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg_color); /* 背景色に合わせる（サイトの背景色に変更） */
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

/* 画面に入ったらマスクを右へ移動 → テキストが見えてくる */
.reveal-text.is-visible::after {
  transform: translateX(100%);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -webkit-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* 表示トリガー後 */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media only screen and (max-width: 1200px) {
    .inner {
        max-width: 1000px;
        min-width: 1000px;
    }
}
@media only screen and (max-width: 1000px) {
    .inner {
        max-width: 750px;
        min-width: 750px;
    }
}

@media only screen and (max-width: 768px) {
    .inner {
        padding-left: 15px;
        padding-right: 15px;
        min-width: unset;
    }
    .txt_br_pc {
        display: none;
    }
    .txt_br_sp {
        display: block;
    }
}

/* fv */
.fv_box {
    position: relative;
    width: 100vw;
    height: 100vh;
}
.kv_splide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}
.fv_img {
    width: 100vw;
    height: 100vh;
}
.fv_inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.fv_logo {
    width: min(10.8vw, 180px);
    height: auto;
    padding-top: min(1.9vw, 31px);
}
.fv_link_box {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--bg_color);
    z-index: 12;
    border-left: 1px solid var(--main_color);
}
.fv_link_top {
    display: flex;
}
.fv_link_top>a {
    position: relative;
    z-index: 3;
    display: block;
    width: 182px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 21px;
    text-align: center;
    color: var(--main_color);
    background-color: var(--bg_color);
}
.fv_link_top>a>span:first-child {
    display: block;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: calc(16px * (4 / 100));
    margin-bottom: 4px;
}
.fv_link_top>a>span:last-child {
    display: block;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: calc(12px * (4 / 100));
}
.fv_link_top>a:nth-child(n+2){
    border-left: 1px solid #3B3830;
}
.fv_link_top>a:after {
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    content: '';
    width: 96%;
    height: 6px;
    margin-left: auto;
    margin-right: auto;
}
.fv_link_top>a:first-child:after {
    background-color: #AC1914;
}
.fv_link_top>a:nth-child(2):after {
    background-color: #3D90B0;
}
.fv_link_top>a:nth-child(3):after {
    background-color: #B19629;
}
.fv_link_top>a:last-child:after {
    background-color: #50AD4C;
}

.fv_link_bottom {
    /* margin-top: 27px;
    margin-right: 22px; */
}
.fv_link_bottom_box1 {
    position: relative;
    /* display: flex;
    align-items: center;
    justify-content: end; */
    z-index: 11;
}
.fv_link_tel {
    font-family: var(--txt_en);
    font-size: 24px;
    line-height: 140%;
    letter-spacing: calc(24px * (4 / 100));
    margin-right: 40px;
}
.fv_link_btn {
    position: relative;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: calc(16px * (4 / 100));
    color: var(--main_color);
    padding: 6px 16px 6px 42px;
    margin-right: 9px;
    background-color: #090909;
}
.fv_link_btn::after {
    position: absolute;
    top: 50%;
    left: 16px;
    content: '';
    width: 12px;
    height: 1px;
    background-color: var(--main_color);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.change_lang {
    display: block;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: calc(16px * (4 / 100));
    color: var(--main_color);
    padding: 6px 12px;
    background-color: #090909;
}
.change_lang_en {
    margin-top: 9px;
}
.change_lang.active {
    color: #000;
    background-color: #fff;
}

.fv_link_bottom_box2 {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 24px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.fv_link_bottom_box2>a:nth-child(n+2){
    margin-left: 32px;
}
.fv_link_bottom_box3 {
    display: flex;
    justify-content: end;
    margin-top: 24px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.fv_link_bottom_box3>a {
    font-family: var(--txt_en);
    font-size: 16px;
    line-height: 140%;
    letter-spacing: calc(16px * (4 / 100));
    color: #1D1C1C;
    padding: 12px 24px;
    /* background-color: #D9D9D9; */
    background-image: linear-gradient(120deg, rgba(246, 244, 239, 1), rgba(235, 228, 210, 1) 26%, rgba(219, 211, 192, 1) 90%);
    border: 1px solid #1D1C1C;
}
.fv_link_bottom_box3>a>span {
    display: block;
}
.fv_link_bottom_box3>a>span:first-child {
    font-size: 20px;
    line-height: 100%;
    letter-spacing: calc(20px * (4 / 100));
    margin-bottom: 10px;
}
.fv_link_bottom_box3>a>span:nth-child(2) {
    font-size: 26px;
    line-height: 100%;
    letter-spacing: calc(26px * (4 / 100));
    margin-bottom: 10px;
}
.fv_link_bottom_box3>a>span:last-child {
    font-size: 18px;
    line-height: 120%;
    letter-spacing: calc(18px * (4 / 100));
    margin-bottom: 0;
}

.fv_link_tel_icon {
    display: block;
    width: 42px;
    height: 42px;
    margin-left: 20px;
}
.fv_link_reserve_btn {
    display: flex;
    align-items: center;
    width: 60px;
    padding: 34px 0px 19px;
    margin: 0;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
}
.fv_link_reserve_btn::after {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.fv_link_box .pc_hamburger {
    width: 60px;
    height: 60px;
}
.fv_link_box .fv_link_tel_icon {
    width: 60px;
    height: 60px;
    margin: 0;
}

.fv_link_bottom_lang_box {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--main_color);
}
.fv_link_bottom_lang_box .change_lang {
    width: 32px;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 0px;
    font-size: 12px;
    text-align: center;
    letter-spacing: calc(12px * (4 / 100));
}
.fv_link_bottom_lang_box .change_lang.active {
    background-color: var(--main_color);
    color: var(--font_color);
}

@media only screen and (max-width: 1200px) {
    .fv_inner {
        max-width: 1000px;
    }
}
@media only screen and (max-width: 1000px) {
    .fv_inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .fv_box {
        height: 548px;
    }
    .fv_img {
        height: 548px;
    }
    .fv_inner {
        display: none;
        width: 160px;
        padding: 0;
        margin: unset;
        z-index: 1001;
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
}
    .fv_inner.close {
        opacity: 0;
    }
    .fv_logo {
        width: 160px;
        height: auto;
        padding-top: 0;
    }
    .fv_link_box {
        display: none;
    }
}

/* トップページ */
.top_news {
    position: relative;
    z-index: 2;
    margin-top: -30px;
}
.top_news_link {
    display: flex;
    border-bottom: 1px solid #3B3830;
    background-color: var(--bg_color);
}
.top_news_link>a:first-child {
    display: flex;
    align-items: center;
    width: 88%;
    height: auto;
    color: var(--main_color);
    padding: 9px 20px;
}
.top_news_link>a:first-child>span:first-child {
    display: inline-block;
    font-family: var(--txt_en);
    font-size: 18px;
    line-height: 200%;
    letter-spacing: calc(18px * (4 / 100));
    margin-right: 48px;
}
.top_news_link>a:first-child>span:last-child {
    display: inline-block;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
}
.top_news_link>a:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12%;
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    color: var(--main_color);
    text-align: center;
    padding: 9px 0px;
    border-left: 1px solid #3B3830;
}
.top_news_link2 {
    display: flex;
}
.top_news_link2>a {
    display: block;
    width: 20%;
    height: auto;
    color: var(--main_color);
    text-align: center;
    padding-top: 27px;
    padding-bottom: 27px;
    background-color: var(--bg_color);
    border: 1px solid #3B3830;
    border-top: none;
}
.top_news_link2>a:nth-child(n+2){
    border-left: none;
}
.top_news_link2>a.active {
    border-top: 2px solid var(--main_color);
}
.top_news_link2>a>span:first-child {
    display: block;
    font-family: var(--txt_en);
    font-size: 20px;
    line-height: 140%;
    letter-spacing: calc(20px * (4 / 100));
    margin-bottom: 10px;
}
.top_news_link2>a>span:last-child {
    display: block;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: calc(20px * (4 / 100));
}

.english_page .top_news_link2>a>span:first-child {
    margin-bottom: 0px;
}

.top_owned_media {
    margin-top: 80px;
}
.top_owned_media_ttl_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 57px;
}
.top_owned_media_ttl {
    font-family: var(--txt_en);
    font-size: 30px;
    line-height: 140%;
    letter-spacing: calc(30px * (4 / 100));
    color: var(--main_color);
}
/* .top_owned_media_alllink {
    display: block;
    width: 231px;
    height: auto;
    font-family: var(--txt_en);
    font-size: 14px;
    line-height: 140%;
    letter-spacing: calc(14px * (4 / 100));
    color: #000000;
    text-align: center;
    padding: 16px 0;
    background-color: #D9D9D9;
} */
.top_owned_media_alllink {
    display: flex;
    width: 256px;
    height: auto;
    font-family: var(--txt_en);
    color: #1D1C1C;
    padding: 8px 16px;
    /* background-color: #D9D9D9; */
    background-image: linear-gradient(120deg, rgba(246, 244, 239, 1), rgba(235, 228, 210, 1) 26%, rgba(219, 211, 192, 1) 90%);
}
.top_owned_media_alllink>div:first-child {
    width: 45%;
    border-right: 1px solid rgba(29, 28, 28, 0.3);
}
.top_owned_media_alllink>div:first-child>span:first-child {
    display: block;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: calc(14px * (4 / 100));
    margin-bottom: 6px;
}
.top_owned_media_alllink>div:first-child>span:last-child {
    display: block;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: calc(20px * (4 / 100));
}
.top_owned_media_alllink>div:last-child {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 55%;
}
.top_owned_media_alllink>div:last-child>span {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: calc(14px * (4 / 100));
}
.top_owned_media_alllink:hover {
    color: #000000;
}
.top_owned_media_alllink_sp {
    display: none;
}
.top_owned_media_list {
    display: flex;
    align-items: normal;
    justify-content: space-between;
    flex-wrap: wrap;
}
.top_owend_media_splide {
    display: none;
}
.top_owned_media_list>li {
    width: 30%;
    height: auto;
}
.top_owned_media_list>li>a {
    display: block;
}
.top_owned_media_list>li>a>img {
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 5;
}
.top_owned_media_list>li>a>h3 {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: calc(20px * (4 / 100));
    color: var(--main_color);
    margin-top: 30px;
    margin-bottom: 20px;
}
.top_owned_media_list>li>a>p {
    font-size: 14px;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    color: var(--main_color);
}







.top_concept {
    padding-right: 40px;
    margin-top: 68px;
}
.top_concept_box {
    position: relative;
}
.top_concept_img_box {
    width: 71.5vw;
    height: auto;
    margin-left: auto;
}
.top_concept_txt_wrap {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.top_concept_txt_box {
    width: 476px;
    background-color: var(--bg_color);
    padding: 30px 24px;
}
.top_concept_txt_box>h2 {
    font-family: var(--txt_en);
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: calc(36px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 40px;
}
.top_concept_txt_box>p:nth-of-type(1) {
    font-size: 16px;
    font-weight: bold;
    line-height: 180%;
    letter-spacing: calc(16px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 40px;
}
.top_concept_txt_box>p:nth-of-type(2) {
    font-size: 14px;
    font-weight: 300;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    color: var(--main_color);
}











.top_concept2 {
    padding-left: 40px;
    margin-top: 80px;
}
.top_concept2_box {
    position: relative;
}
.top_concept2_img_box {
    width: 71.5vw;
    height: auto;
    margin-right: auto;
}
.top_concept2_txt_wrap {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.top_concept2_txt_box {
    width: 476px;
    background-color: var(--bg_color);
    padding: 30px 24px;
    margin-left: auto;
}
.top_concept2_txt_box>h2 {
    font-family: var(--txt_en);
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: calc(36px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 40px;
}
.top_concept2_txt_box>p:nth-of-type(1) {
    font-size: 16px;
    font-weight: bold;
    line-height: 180%;
    letter-spacing: calc(16px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 40px;
}
.top_concept2_txt_box>p:nth-of-type(2) {
    font-size: 14px;
    font-weight: 300;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    color: var(--main_color);
}


.top_onsen {
    margin-top: 200px;
}

.top_rooms {
    margin-top: 143px;
}
.top_rooms_box {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
}
.top_rooms_txt_box {
    width: 41%;
}
.top_rooms_img {
    width: 56%;
}
.top_rooms_ttl {
    font-family: var(--txt_en);
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: calc(36px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 84px;
}
.top_rooms_txt1 {
    font-size: 16px;
    font-weight: bold;
    line-height: 180%;
    letter-spacing: calc(16px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 49px;
}
.top_rooms_txt2 {
    font-size: 14px;
    font-weight: 300;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 72px;
}
.top_room_flex {
    display: flex;
    justify-content: space-between;
}
.top_room_flex_sp {
    display: none;
}
.top_room_flex_sp2 {
    display: none;
}
.top_room_flex_ttl_box {
    width: 20%;
}
.top_room_flex_ttl_en {
    font-family: var(--txt_en);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: calc(20px * (2 / 100));
    color: var(--main_color);
    margin-bottom: 7px;
}
.top_room_flex_ttl_ja {
    font-size: 20px;
    font-weight: bold;
    line-height: 180%;
    letter-spacing: calc(20px * (2 / 100));
    color: var(--main_color);
    margin-bottom: 64px;
}
.top_room_flex_arrow_box {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.top_room_flex_arrow_box>img {
    width: 48%;
    height: auto;
}
.top_room_flex_img {
    width: 28%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.top_room_flex_img>img {
    -o-object-fit: contain;
       object-fit: contain;
}
.top_room_flex_txt {
    width: 40%;
}
.top_room_flex_txt>p {
    font-size: 14px;
    font-weight: 300;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    color: var(--main_color);
}


.english_page .top_onsen {
    margin-top: 400px;
}
.english_page .top_rooms {
    margin-top: 300px;
}



.gallery {
    margin-top: 62px;
    padding-bottom: 154px;
}
.gallery_ttl {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--txt_en);
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: calc(36px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 32px;
}
.gallery_inner {
    max-width: 1469px;
    margin-left: auto;
    margin-right: auto;
}
.gallery_box {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.gallery_img_box {
    /* width: 70%; */
    width: 62%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    aspect-ratio: 103 / 56 ;
}
.gallery_txt_wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.gallery_txt_box {
    width: 476px;
    background-color: var(--bg_color);
    padding: 30px 24px;
    margin-left: auto;
}
.gallery_txt_box>h2 {
    font-family: var(--txt_en);
    font-size: 36px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: calc(36px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 40px;
}
.gallery_txt_box>p:nth-of-type(1) {
    font-size: 16px;
    font-weight: bold;
    line-height: 180%;
    letter-spacing: calc(16px * (4 / 100));
    color: var(--main_color);
    margin-bottom: 40px;
}
.gallery_txt_box>p:nth-of-type(2) {
    font-size: 14px;
    font-weight: 300;
    line-height: 200%;
    letter-spacing: calc(14px * (4 / 100));
    color: var(--main_color);
}

.gallery_img_list {
    /* max-width: 1200px;
    margin-left: auto;
    margin-right: auto; */
    /* margin-top: 41px; */
    width: 36%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.gallery_img_list>img {
    width: 100px;
    height: auto;
}

@media only screen and (max-width: 768px) {
    .top_news {
        margin-top: 0;
    }
    .top_news .inner {
        padding-left: 0;
        padding-right: 0;
    }
    .top_news_link {
        display: block;
    }
    .top_news_link>a:first-child {
        display: block;
        width: 100%;
        padding: 10px 26px 20px;
    }
    .top_news_link>a:first-child>span:first-child {
        margin-right: 0;
    }
    .top_news_link>a:last-child {
        width: 100%;
        padding: 8px 0;
        text-align: center;
        border-top: 1px solid #3B3830;
    }
    .top_news_link2 {
        display: block;
    }
    .top_news_link2>a {
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: row-reverse;
        width: 100%;
        border-right: none;
        padding: 20px 30px;
    }
    .top_news_link2>a>span:first-child {
        margin-bottom: 0;
        margin-left: 10px;
    }
    .top_owned_media {
        margin-top: 72px;
    }
    .top_owned_media .inner {
        padding-left: 0;
        padding-right: 0;
    }
    .top_owned_media_ttl_box {
        justify-content: center;
        margin-bottom: 33px;
    }
    .top_owned_media_alllink {
        display: none;
    }
    /* .top_owned_media_alllink_sp {
        display: block;
        width: 231px;
        height: auto;
        font-family: var(--txt_en);
        font-size: 14px;
        line-height: 140%;
        letter-spacing: calc(14px * (4 / 100));
        color: #000000;
        text-align: center;
        padding: 16px 0;
        margin-left: auto;
        margin-right: auto;
        background-color: #D9D9D9;
    } */
    .top_owned_media_alllink_sp {
        display: flex;
        width: 256px;
        height: auto;
        font-family: var(--txt_en);
        color: #1D1C1C;
        padding: 8px 16px;
        margin-left: auto;
        margin-right: auto;
        background-image: linear-gradient(120deg, rgba(246, 244, 239, 1), rgba(235, 228, 210, 1) 26%, rgba(219, 211, 192, 1) 90%);
    }
    .top_owned_media_alllink_sp>div:first-child {
        width: 45%;
        border-right: 1px solid rgba(29, 28, 28, 0.3);
    }
    .top_owned_media_alllink_sp>div:first-child>span:first-child {
        display: block;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: calc(14px * (4 / 100));
        margin-bottom: 6px;
    }
    .top_owned_media_alllink_sp>div:first-child>span:last-child {
        display: block;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: calc(20px * (4 / 100));
    }
    .top_owned_media_alllink_sp>div:last-child {
        display: flex;
        align-items: center;
        justify-content: end;
        width: 55%;
    }
    .top_owned_media_alllink_sp>div:last-child>span {
        font-size: 14px;
        line-height: 120%;
        letter-spacing: calc(14px * (4 / 100));
    }
    .top_owned_media_list {
        display: none;
    }
    .top_owend_media_splide {
        display: block;
        margin-bottom: 50px;
    }
    .top_owend_media_splide a {
        display: block;
    }
    .top_owend_media_splide a>img {
        width: 100%;
        height: auto;
        aspect-ratio: 7 / 5;
    }
    .top_owend_media_splide a>h3 {
        font-size: 20px;
        line-height: 32px;
        letter-spacing: calc(20px * (4 / 100));
        color: var(--main_color);
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .top_owend_media_splide a>p {
        font-size: 14px;
        line-height: 200%;
        letter-spacing: calc(14px * (4 / 100));
        color: var(--main_color);
    }
    .top_concept {
        margin-top: 116px;
        padding-right: 0;
    }
    .top_concept_img_box {
        width: 90%;
    }
    .top_concept_txt_wrap {
        position: unset;
        width: 100%;
    }
    .top_concept_txt_box {
        width: 100%;
        padding: 30px 20px 0;
    }
    .top_concept2 {
        padding-left: 0;
        margin-top: 150px;
    }
    .top_concept2_img_box {
        width: 90%;
    }
    .top_concept2_txt_wrap {
        position: unset;
        width: 100%;
    }
    .top_concept2_txt_box {
        width: 100%;
        padding: 30px 20px 0;
    }
    .top_onsen {
        margin-top: 150px;
    }
    .top_rooms {
        margin-top: 150px;
    }
    .top_rooms_box {
        display: block;
        width: 100%;
    }
    .top_rooms_txt_box {
        width: 100%;
    }
    .top_rooms_ttl {
        margin-left: 20px;
        margin-right: 20px;
        padding-top: 30px;
        margin-bottom: 60px;
        border-top: 1px solid #3B3830;
    }
    .top_rooms_txt1 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .top_rooms_txt2 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .top_room_flex {
        display: none;
    }
    .top_room_flex_sp {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 20px;
    }
    .top_rooms_img {
        display: none;
    }
    .top_room_flex_img {
        width: 25%;
    }
    .top_rooms_img_sp {
        width: 60%;
    }
    .top_room_flex_sp2 {
        display: flex;
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 43px;
    }
    .top_room_flex_ttl_box {
        width: 25%;
    }
    .top_room_flex_txt {
        width: 61%;
    }
    .top_room_flex_arrow_box>img {
        width: 42%;
    }
    .gallery {
        margin-top: 162px;
    }
    .gallery_box {
        display: block;
    }
    .gallery_ttl {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 62px;
    }
    .gallery_txt_wrap {
        position: unset;
        margin-bottom: 62px;
        transform: unset;
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
    }
    .gallery_txt_box {
        width: 100%;
        padding: 0 20px;
    }
    .gallery_img_box {
        width: 100%;
    }
    .gallery_img_list {
        width: 100%;
        padding-right: 42px;
        padding-left: 42px;
        margin-top: 32px;
    }
    .gallery_img_list>img {
        width: 30%;
    }
}