@charset "utf-8";

/* =========================
1000px以下
========================= */

body {
overflow-x: hidden;
}

* {
max-width: 100%;
}

body{
font-size: 15px;
line-height: 1.9;
}

body.menu-open{
overflow: hidden;
}

.pc{
display: none;
}

.sp{
display: block;
}

.menu-toggle{
display: flex;
}

img{
max-width: 100%;
height: auto;
}

/* 共通幅 */
.header-box,
.top_about_inner,
.top_room_inner,
.top_dining_inner,
.top_bath_inner,
.top_service_inner,
.top_experiences_inner,
.top_access_inner,
.top_news_inner,
.footer_inner{
width: calc(100% - 40px);
min-width: unset;
margin: 0 auto;
}

/* header */
header{
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
}

.header-box{
display: flex;
align-items: flex-start;
justify-content: space-between;
padding-top: 12px;
}

.headerlogo{
width: 92px;
height: auto;
}

.subpage .headerlogo {
    display: none;
}

.header-menu{
display: none;
}

header::before {
        display: none;
}

/* ハンバーガー */
.menu-toggle{
display: flex;
flex-direction: column;
justify-content: space-between;
width: 42px;
height: 34px;
padding: 6px;
background: none;
border: none;
cursor: pointer;
z-index: 1003;
position: relative;
margin-top: 15px;
}

.menu-toggle span{
display: block;
width: 100%;
height: 2px;
background-color: #fff;
transition: all 0.3s ease;
}

/* これを消す
.menu-toggle.is-open{
opacity: 0;
pointer-events: none;
}
*/

.menu-toggle.is-open span:nth-child(1){
transform: translateY(10px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
opacity: 0;
}

.menu-toggle.is-open span:nth-child(3){
transform: translateY(-10px) rotate(-45deg);
}

.sp-menu{
display: block; /* ← これだけ追加 */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(34,45,57,0.96);
z-index: 1002;
padding: 90px 24px 40px;
box-sizing: border-box;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
overflow-y: auto;
}

.sp-menu.is-open{
opacity: 1;
visibility: visible;
}

.sp-menu-list{
list-style: none;
margin: 0;
padding: 0;
}

.sp-menu-list li{
border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sp-menu-list a{
display: block;
padding: 16px 0;
color: #fff;
text-decoration: none;
font-size: 16px;
line-height: 1.6;
}

.sp-menu-overlay{
display: block; /* ← これだけ追加 */
position: fixed;
inset: 0;
background: rgba(0,0,0,0.35);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
z-index: 1001;
}

.sp-menu-overlay.is-open{
opacity: 1;
visibility: visible;
}

.menu-close{
display: block; /* ← これだけ追加 */
position: absolute;
top: 22px;
right: 22px;
width: 34px;
height: 34px;
background: none;
border: none;
cursor: pointer;
z-index: 1003;
}

.menu-close::before,
.menu-close::after{
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 30px;
height: 2px;
background: #fff;
}

.menu-close::before{
transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after{
transform: translate(-50%, -50%) rotate(-45deg);
}

/* 追随ボタン */
/*.floating_reserve{
display: none;
}
*/

.floating_reserve span {
    font-size: 14px;
    padding: 10px 5px;
}

/* メインビジュアル */

.mainvisual{
width: 100%;
overflow: hidden;
}

.slider{
width: 100%;
}

.slide img,
.slide picture{
display: block;
width: 100%;
height: auto;
}

.reserve_mainvisual{
height: 90px;
background-size: 900px auto;
}

.reserve_btn{
width: calc(100% - 40px);
max-width: 420px;
height: 44px;
font-size: 14px;
letter-spacing: 0.04em;
}

/* 共通見出し */
.top_about_en,
.top_room_en,
.top_dining_en,
.top_bath_en,
.top_service_en,
.top_access_en,
.top_news_en{
font-size: 34px;
margin-bottom: 10px;
}

.top_about_ja,
.top_room_ja,
.top_dining_ja,
.top_bath_ja,
.top_service_ja,
.top_access_ja,
.top_news_ja{
font-size: 14px;
}

.top_room_title,
.top_dining_title,
.top_bath_title,
.top_service_title{
font-size: 24px;
line-height: 1.5;
white-space: normal;
margin-bottom: 16px;
}

/* ABOUT */
.top_about{
padding: 60px 0;
}

.top_about::before{
height: 90%;
}

.top_about_heading{
margin-bottom: 32px;
}

.top_about_textbox{
display: block;
margin-bottom: 22px;
padding: 0;
}

.top_about_copy,
.top_about_text{
width: 100%;
}

.top_about_copy{
margin-bottom: 24px;
}

.top_about_copy p{
font-size: 30px;
line-height: 1.55;
}

.top_about_text{
padding-top: 0;
}

.top_about_text p{
font-size: 14px;
line-height: 2;
}

.top_dining_inner{
display: flex;
flex-direction: column;
}

.top_dining_content{
order: 1;
}

.top_dining_images{
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.top_dining_image{
  flex: 1;
  overflow: hidden;
}

.top_dining_image img{
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.top_about_images{
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.top_about_image{
  flex: 1;
}

.top_about_image img{
  display: block;
  width: 100%;
  height: auto;
}

/* 4セクション共通 */
.top_room,
.top_dining,
.top_bath,
.top_service{
padding: 0 0 70px;
}

.top_room{
padding-top: 30px;
}

.top_room_inner,
.top_dining_inner,
.top_bath_inner,
.top_service_inner{
width: calc(100% - 40px);
height: auto;
display: flex;
flex-direction: column;
}

.top_room_inner::before,
.top_bath_inner::before,
.top_dining_inner::before,
.top_service_inner::before{
display: none;
}

.top_room_image,
.top_dining_image,
.top_bath_image,
.top_service_image{
position: relative!important;
top: auto;
left: auto;
right: auto;
width: 100%;
height: auto;
margin-bottom: 24px;
}

.top_room_image img,
.top_dining_image img,
.top_bath_image img,
.top_service_image img{
width: 100%;
height: auto;
aspect-ratio: 4 / 3;
object-fit: cover;
}

.top_room_content,
.top_dining_content,
.top_bath_content,
.top_service_content{
position: relative;
top: auto;
left: auto;
right: auto;
width: 100%;
padding: 0;
}

.top_room_text,
.top_dining_text,
.top_bath_text,
.top_service_text{
width: 100%;
}

.top_room_text p,
.top_dining_text p,
.top_bath_text p,
.top_service_text p{
font-size: 14px;
line-height: 2;
margin-bottom: 24px;
}

.top_room_btn,
.top_dining_btn,
.top_bath_btn,
.top_service_btn{
width: 170px;
height: 38px;
font-size: 12px;
gap: 12px;
}

/*=========================
共通：SP縦レイアウト完成版
=========================*/

.top_room_inner,
.top_dining_inner,
.top_bath_inner,
.top_service_inner{
width: calc(100% - 40px);
height: auto;
display: block; /* ←ここ重要 */
}

/* 背景装飾削除 */
.top_room_inner::before,
.top_bath_inner::before,
.top_dining_inner::before,
.top_service_inner::before{
display: none;
}

/* 画像 */
.top_room_image,
.top_dining_image,
.top_bath_image,
.top_service_image{
position: relative;
width: 100%;
margin-bottom: 28px;
}

.top_room_image img,
.top_dining_image img,
.top_bath_image img,
.top_service_image img{
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
display: block;
}

/* コンテンツ */
.top_room_content,
.top_dining_content,
.top_bath_content,
.top_service_content{
position: relative;
width: 100%;
padding: 0;
}

/* ★これが不足している部分 */
.top_room_en,
.top_dining_en,
.top_bath_en,
.top_service_en{
font-size: 34px;
margin-bottom: 10px;
}

.top_room_ja,
.top_dining_ja,
.top_bath_ja,
.top_service_ja{
font-size: 14px;
margin-bottom: 20px;
}

.top_room_title,
.top_dining_title,
.top_bath_title,
.top_service_title{
font-size: 24px;
line-height: 1.6;
margin-bottom: 20px;
white-space: normal;
}

/* テキスト */
.top_room_text p,
.top_dining_text p,
.top_bath_text p,
.top_service_text p{
font-size: 14px;
line-height: 2;
margin-bottom: 24px;
}

/* ボタン */
.top_room_btn,
.top_dining_btn,
.top_bath_btn,
.top_service_btn{
width: 170px;
height: 40px;
font-size: 12px;
}

.menu-toggle{
position: fixed;
top: 0px;
right: 10px;
z-index: 9999;
}

/* EXPERIENCES */
.top_experiences{
height: auto;
padding: 50px 0;
}

.top_experiences_inner{
width: calc(100% - 40px);
}

.top_experiences_title{
padding-top: 0;
font-size: 34px;
margin-bottom: 10px;
}

.top_experiences_sub{
font-size: 14px;
margin-bottom: 24px;
}

.top_experiences_bnr{
flex-direction: column;
gap: 12px;
}

.top_experiences_bnr a{
width: 100%;
max-width: 420px;
}

/* ACCESS */
.top_access{
padding: 0 0 70px;
}

.top_access_inner{
width: calc(100% - 40px);
height: auto;
}

.top_access_image{
position: relative;
top: auto;
left: auto;
right: auto;
height: auto;
margin-bottom: 24px;
overflow: hidden;
}

.top_access_image img{
width: 100%;
height: auto;
object-fit: cover;
object-position: center center;
}

.top_access_content{
position: relative;
top: auto;
right: auto;
width: 100%;
}

.top_access_text{
width: 100%;
}

.top_access_text p{
font-size: 14px;
line-height: 2;
margin-bottom: 24px;
}

/* NEWS */
.top_news{
margin-bottom: 70px;
}

.top_news_inner{
width: calc(100% - 40px);
display: block;
}

.top_news_heading{
width: 100%;
padding: 50px 20px 20px;
box-sizing: border-box;
}

.top_news_body{
width: 100%;
padding: 0 20px 40px;
box-sizing: border-box;
}

.top_news_list a{
gap: 18px;
padding: 18px 0;
}

.top_news_list .date{
width: 82px;
font-size: 13px;
}

.top_news_list .text{
font-size: 13px;
}

.top_news_more{
margin-top: 18px;
}

/* footer */
.footer{
background-size: 900px auto;
}

.footer_inner{
width: calc(100% - 40px);
padding-top: 36px;
}

.footer_top{
display: block;
padding-bottom: 28px;
}

.footer_logo_area,
.footer_info,
.footer_nav{
width: 100%;
}

.footer_logo{
width: 160px;
}

.footer_info{
padding-top: 0;
margin-bottom: 28px;
}

.footer_name{
font-size: 16px;
margin-bottom: 8px;
}

.footer_address{
font-size: 14px;
line-height: 1.9;
margin-bottom: 16px;
}

.footer_reserve_btn{
width: 100%;
max-width: 320px;
height: 42px;
font-size: 13px;
}

.footer_nav{
display: flex;
flex-wrap: wrap;
gap: 20px 40px;
}

.footer_nav ul{
width: calc(50% - 20px);
}

.footer_nav li{
margin-bottom: 8px;
}

.footer_nav a{
font-size: 14px;
}

.footer_bottom{
font-size: 10px;
padding: 12px 20px 14px;
}


/* DINING & SERVICE 画像 → テキスト */
.top_dining_inner,
.top_service_inner{
display: flex;
flex-direction: column;
}

.top_dining_image,
.top_service_image{
order: 1;
}

.top_dining_content,
.top_service_content{
order: 2;
}


.top_experiences_bnr img {
    width: 60%;
    margin: 0 auto;
}

.top_access_ja {
    margin-bottom: 20px;
}

/* ACCESS画像だけ画面幅いっぱい */
.top_access_image{
width: 100vw;
margin-left: calc(50% - 50vw);
}

.top_access_image img{
width: 100%;
height: auto;
display: block;
}

/* footer中央揃え */
.footer{
text-align: center;
}

.footer_inner{
text-align: center;
}

/* ロゴ中央 */
.footer_logo_area{
text-align: center;
}

/* 情報中央 */
.footer_info{
text-align: center;
}

/* ナビ中央 */
.footer_nav{
justify-content: center;
text-align: center;
}

.footer_nav ul{
padding: 0;
}

.footer_nav li{
text-align: center;
}

.footer_nav {
    display: none;
}

.footer_logo_area{
text-align: center;
}

.footer_logo{
margin: 0 auto;
display: block;
}

.header-box{
padding-top: 0px;
}

.menu-toggle{
width: 38px;
height: 30px;
padding: 6px;
background-color: #2f3b48;
}


/* =========================
sub page / dining
========================= */
.sub_mainvisual {
    height: auto;
}

.sub_mainvisual_image img {
    height: auto;
}

.sub_mainvisual_title {
    width: calc(100% - 40px);
    bottom: 15px;
}

.sub_mainvisual_en {
    font-size: 34px;
    margin-bottom: 0px;
}

.sub_mainvisual_ja {
    font-size: 14px;
}

.dining_intro,
.dining_detail,
.morning_intro {
    padding: 60px 0;
}

.dining_intro_inner,
.dining_detail_inner,
.morning_intro_inner {
    width: calc(100% - 40px);
}

.dining_section_title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.dining_section_text {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 30px;
}

.dining_intro_image,
.morning_intro_image {
    width: 100%;
}

.dining_block,
.dining_block.reverse {
    display: block;
    padding: 20px;
    margin-bottom: 24px;
}

.dining_block_image,
.dining_block_text {
    width: 100%;
}

.dining_block_image {
    margin-bottom: 20px;
}

.dining_block_text h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.dining_block_text p {
    font-size: 13px;
    line-height: 2;
}

.morning_intro_image{
  display: flex;
  gap: 0;
  width: 100%;
  margin: 0;
}

.morning_intro_image img{
  display: block;
  width: 50%;
  height: auto;
}

.dining_gallery{
  display: flex;
  width: 100%;
  margin: 20px 0 0;
  gap: 0;
}

.dining_gallery div{
  flex: 1;
  margin: 0;
  padding: 0;
}

.dining_gallery img{
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
sub page / room
========================= */

.room_intro {
    padding: 60px 0 30px;
    background-color: #fff;
}

.room_intro_inner,
.room_detail_inner {
    width: calc(100% - 40px);
    margin: 0 auto;
}

/* タイトル */
.room_page_title {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: center;
}

.room_page_subtitle {
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

.room_page_text {
    font-size: 13px;
    line-height: 2;
    text-align: center;
}

/* 全体 */
.room_detail {
    padding: 30px 0 0px;
    background-color: #fff;
}

.gray_bg {
    background-color: #f3f3f3;
}

/* ブロック */
.room_block,
.room_block_main_lower {
    display: block;
}

.room_block,
.room_block_main {
    margin-bottom: 60px;
}

/* メイン画像 */
.room_block_main_image {
    width: 100%;
    margin: 0 0 20px;
}

.room_block_main_image img {
    width: 100%;
    display: block;
}

/* 下段（画像＋表） */
.room_block_main_lower {
    width: 100%;
}

/* サブ画像 */
.room_block_sub_image {
    width: 100%;
    margin-bottom: 20px;
}

.room_block_sub_image img {
    width: 100%;
    display: block;
}

/* 通常ブロック画像 */
.room_block_image {
    width: 100%;
    margin-bottom: 20px;
}

.room_block_image img {
    width: 100%;
    display: block;
}

/* テキスト */
.room_spec {
    width: 100%;
}

/* 英語 */
.room_name_en {
    font-size: 11px;
    margin-bottom: 6px;
    color: #bbb;
}

/* 日本語 */
.room_name_ja {
    font-size: 22px;
    margin-bottom: 18px;
    line-height: 1.4;
}

/* テーブル */
.room_spec_table {
    width: 100%;
}

.room_spec_table th,
.room_spec_table td {
    font-size: 12px;
    line-height: 1.9;
    padding: 10px 0;
}

.room_spec_table th {
    padding-right: 14px;
}

/* =========================
sub page / bath
========================= */
.bath_intro,
.bath_lounge {
    padding: 60px 0;
}

.bath_detail {
    padding: 0 0 70px;
}

.bath_intro_inner,
.bath_detail_inner,
.bath_lounge_inner {
    width: calc(100% - 40px);
}

.bath_section_title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.bath_section_sub {
    font-size: 13px;
    margin-bottom: 18px;
}

.bath_section_text {
    font-size: 13px;
    line-height: 2;
}

.bath_block,
.bath_block.reverse {
    display: block;
    margin-bottom: 50px;
}

.bath_block_image,
.bath_block_text,
.bath_lounge_image {
    width: 100%;
}

.bath_block_image {
    margin-bottom: 20px;
}

.bath_block_text h3 {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.bath_block_text p {
    font-size: 13px;
    line-height: 2;
}

.bath_info_box {
    display: block;
    margin-top: 20px;
}

.bath_info_col {
    width: 100%;
    padding: 24px 20px;
}

.bath_info_col + .bath_info_col {
    border-left: none;
    border-top: 1px solid #e5e5e5;
}

.bath_info_col h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.bath_info_col p {
    font-size: 12px;
    line-height: 2;
}

.bath_lounge_image {
    margin-top: 30px;
}

/* =========================
sub page / service
========================= */
.service_intro {
    padding: 60px 0;
}

.service_detail {
    padding: 60px 0 60px;
}

.service_intro_inner,
.service_detail_inner {
    width: calc(100% - 40px);
}

.service_section_title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.service_section_sub {
    font-size: 13px;
    margin-bottom: 18px;
}

.service_section_text {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 30px;
}

.service_intro_image,
.service_block_image,
.service_block_text {
    width: 100%;
}

.service_block {
    display: block;
    margin-bottom: 40px;
}

.service_block_image {
    margin-bottom: 20px;
}

.service_block_text h3 {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.service_block_text p {
    font-size: 13px;
    line-height: 2;
}

.service_info_box {
    margin-top: 50px;
    padding: 30px 20px;
}

.service_info_title {
    font-size: 24px;
    margin-bottom: 24px;
}

.service_info_grid {
    display: block;
    border-left: none;
}

.service_info_item {
    width: 100%;
    padding: 20px 10px;
    border-left: 1px solid #ddd;
}

.service_info_item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.service_info_item p,
.service_info_other p {
    font-size: 12px;
    line-height: 1.9;
}

.service_info_other {
    padding: 20px 10px;
}

.service_info_other h4 {
    font-size: 16px;
    margin-bottom: 8px;
}


/* =========================
access SP
========================= */

.access_intro {
    padding: 60px 0 20px;
}

.access_title {
    font-size: 28px;
}

.access_text {
    font-size: 13px;
    line-height: 2;
}

/* MAP */
.access_map_box {
    width: 100%;
    height: 250px;
}

.access_detail_inner {
    width: calc(100% - 40px);
}

.access_row {
    display: block;
}

.access_head {
    width: 100%;
    padding: 18px 0 8px;
    font-size: 14px;
}

.access_body {
    padding: 0 0 18px;
    font-size: 12px;
    line-height: 1.9;
}

/* =========================
sub page / news
========================= */
.news_archive {
    padding: 60px 0 70px;
}

.news_archive_inner {
    width: calc(100% - 40px);
}

.news_archive_list a {
    display: block;
    padding: 18px 0;
}

.news_archive_list time {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-size: 12px;
}

.news_archive_title {
    display: block;
    font-size: 14px;
    line-height: 1.8;
}

.news_pager {
    margin-top: 30px;
    gap: 8px;
}

.news_pager a {
    width: 34px;
    height: 34px;
    font-size: 12px;
}

/* =========================
sub page / news detail
========================= */
.news_detail {
    padding: 60px 0 70px;
}

.news_detail_inner {
    width: calc(100% - 40px);
}

.news_detail_head {
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.news_detail_date {
    font-size: 12px;
    margin-bottom: 10px;
}

.news_detail_title {
    font-size: 24px;
    line-height: 1.6;
}

.news_detail_body p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 1.5em;
}

.news_detail_back {
    margin-top: 36px;
}

.news_detail_back a {
    min-width: 150px;
    height: 40px;
    font-size: 13px;
}

.pagetop {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
}

.pagetop img {
    width: 16px;
}

/* =========================
767px以下
========================= */
@media screen and (max-width: 767px){

body{
font-size: 14px;
line-height: 1.85;
}

.header-box,
.top_about_inner,
.top_room_inner,
.top_dining_inner,
.top_bath_inner,
.top_service_inner,
.top_experiences_inner,
.top_access_inner,
.top_news_inner,
.footer_inner{
width: calc(100% - 24px);
}


.headerlogo{
width: 92px;
}

.sp-menu-list a{
display: block;
font-size: 15px;
padding: 14px 0;
position: static;
}

.reserve_mainvisual{
height: 76px;
}

.reserve_btn{
width: calc(100% - 24px);
height: 40px;
font-size: 13px;
}

.top_about{
padding: 48px 0;
}

.top_about_heading{
margin-bottom: 24px;
}

.top_about_en,
.top_room_en,
.top_dining_en,
.top_bath_en,
.top_service_en,
.top_access_en,
.top_news_en{
font-size: 28px;
}

.top_about_ja,
.top_room_ja,
.top_dining_ja,
.top_bath_ja,
.top_service_ja,
.top_access_ja,
.top_news_ja{
font-size: 13px;
}

.top_about_copy p{
font-size: 24px;
}

.top_room_title,
.top_dining_title,
.top_bath_title,
.top_service_title{
font-size: 20px;
}

.top_room,
.top_dining,
.top_bath,
.top_service,
.top_access{
padding-bottom: 80px;
}

.top_room_text p,
.top_dining_text p,
.top_bath_text p,
.top_service_text p,
.top_access_text p{
font-size: 13px;
line-height: 1.9;
}

.top_room_btn,
.top_dining_btn,
.top_bath_btn,
.top_service_btn,
.top_access_btn{
width: 150px;
height: 36px;
font-size: 11px;
}

.top_experiences{
padding: 40px 0;
}

.top_experiences_title{
font-size: 28px;
}

.top_experiences_sub{
font-size: 13px;
margin-bottom: 40px;
}

.top_news{
margin-bottom: 56px;
}

.top_news_heading{
padding: 36px 16px 16px;
}

.top_news_body{
padding: 0 16px 30px;
}

.top_news_list a{
flex-wrap: wrap;
gap: 8px 12px;
padding: 16px 0;
}

.top_news_list .date{
width: 100%;
font-size: 12px;
}

.top_news_list .text{
width: calc(100% - 24px);
font-size: 12px;
}

.top_news_list .arrow{
margin-left: auto;
}

.view_all{
font-size: 12px;
}

.footer{
background-size: 700px auto;
}

.footer_inner{
padding-top: 28px;
}

.footer_logo{
width: 130px;
}

.footer_name{
font-size: 15px;
}

.footer_address{
font-size: 13px;
}

.footer_reserve_btn{
max-width: 100%;
font-size: 12px;
}


.footer_nav ul{
width: 100%;
}

.footer_bottom{
font-size: 9px;
line-height: 1.6;
}

.top_room_ja, .top_dining_ja, .top_service_ja {
    margin-bottom: 20px;
}

    .sub_mainvisual_title,
    .dining_intro_inner,
    .dining_detail_inner,
    .morning_intro_inner {
        width: calc(100% - 24px);
    }

    .dining_section_title {
        font-size: 26px;
    }

    .dining_block_text h3 {
        font-size: 20px;
    }

    .room_intro_inner,
    .room_detail_inner {
        width: calc(100% - 24px);
    }

    .room_page_title {
        font-size: 22px;
    }

    .room_name_ja {
        font-size: 20px;
    }

    .bath_intro_inner,
    .bath_detail_inner,
    .bath_lounge_inner {
        width: calc(100% - 24px);
    }

    .bath_section_title {
        font-size: 26px;
    }

    .bath_block_text h3 {
        font-size: 20px;
    }

    .service_intro_inner,
    .service_detail_inner {
        width: calc(100% - 24px);
    }

    .service_section_title {
        font-size: 26px;
    }

    .service_block_text h3 {
        font-size: 20px;
    }

    .service_info_title {
        font-size: 22px;
    }
    
    .news_detail_inner {
        width: calc(100% - 24px);
    }

    .news_detail_title {
        font-size: 21px;
    }

    .news_detail_body p {
        font-size: 13px;
    }

    .news_archive_inner {
        width: calc(100% - 24px);
    }



}