@charset "utf-8";
/* CSS Document */
@import url("html5doctor_reset.css");

body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.1em;
    font-size: 16px;
    overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
}

.jost400 {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.noto-serif-jp300 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.noto-serif-jp500 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.pc{
display: block;
}

.sp{
display: none;
}

.small {
    font-size: 13px;
}

.menu-toggle,
.sp-menu,
.sp-menu-overlay,
.menu-close{
display: none;
}

.space40 {
    height: 40px;
}

.space10 {
    height: 10px;
}

.weight {
    font-weight: 600;
}

/*==========================header=========================================*/

header {
    position: absolute;
    z-index: 1000;
    width: 100%;
    font-size: 14px;
    background: none;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* ← 黒背景の高さ */
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}

.header-box {
    position: relative;
    width: 70%;
    min-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;
}

.headerlogo {
    width: auto;
    height: 150px;
    display: block;
    flex-shrink: 0;
}

.header-menu {
    margin-left: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100px;
}

.header-nav li {
    margin: 0;
    padding: 0;
}

.header-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    line-height: 1.1;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.header-nav li a:hover {
    opacity: 0.75;
}

.header-nav .en {
    display: block;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 4px;
}

.header-nav .ja {
    display: block;
    font-size: 12px;
    letter-spacing: 0;
    white-space: nowrap;
}


/*==========================mainvisual slider=========================================*/

#visual {
overflow: hidden;
}

.mainvisual {
position: relative;
width: 100%;
line-height: 0;
overflow: hidden;
margin: 0;
padding: 0;
background: #000;
}

.slider {
position: relative;
width: 100%;
height: auto;
line-height: 0;
background: #000;
overflow: hidden;
}

.slide {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 1.2s ease-in-out;
z-index: 0;
pointer-events: none;
}

.slide.is-active {
position: relative;
opacity: 1;
z-index: 1;
}

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

.mainvisual img {
display: block;
width: 100%;
max-width: 100%;
height: auto;
}

.reserve_mainvisual {
background-image: url("../images/mainvisual_under.webp");
background-repeat: repeat;
background-position: center center;
background-size: 1300px auto;
height: 120px;
display: flex;
align-items: center;
justify-content: center;
}

.reserve_mainvisual_inner {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.reserve_btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 400px;
height: 50px;
color: #fff;
text-decoration: none;
font-size: 18px;
font-weight: 600;
line-height: 1;
transition: opacity 0.3s ease;
background: linear-gradient(to bottom, #f7933a 0%, #f07a2f 100%);
}

.reserve_btn:hover {
opacity: 0.85;
}

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

/*==========================top_about=========================================*/

.top_about {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.top_about::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 75%;
    background-color: #f3f3f3;
    z-index: -1;
}

.top_about_inner {
    width: 1000px;
    margin: 0 auto;
}

.top_about_heading {
    text-align: center;
    margin-bottom: 40px;
}

.top_about_en {
    font-size: 50px;
    line-height: 1;
    color: #cfcfcf;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.top_about_ja {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
}

.top_about_textbox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    padding: 0 40px;
}

.top_about_copy {
    width: 400px;
}

.top_about_copy p {
    font-size: 38px;
    line-height: 1.55;
    color: #ef7c3a;
    letter-spacing: 0.08em;
}

.top_about_text {
    width: 600px;
    padding-top: 10px;
}

.top_about_text p {
    font-size: 16px;
    line-height: 2.2;
    color: #555;
}

.top_about_images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.top_about_image {
    width: calc((100% - 40px) / 3);
}

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

/*==========================top common sections=========================================*/

.top_room,
.top_dining,
.top_bath,
.top_service {
    position: relative;
    overflow: hidden;
    padding: 0 0 120px;
}

.top_room {
    padding-top: 60px;
}

.top_room_inner,
.top_dining_inner,
.top_bath_inner,
.top_service_inner {
    position: relative;
    width: 1000px;
    height: 620px;
    margin: 0 auto;
}

/* 背景 */
.top_room_inner::before,
.top_bath_inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc((100vw - 1000px) / -2);
    width: calc((100vw - 1000px) / 2 + 1000px);
    height: 100%;
    background-color: #f3f3f3;
    z-index: 0;
}

.top_dining_inner::before,
.top_service_inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: calc((100vw - 1000px) / -2);
    width: calc((100vw - 1000px) / 2 + 1000px);
    height: 100%;
    background-color: #f3f3f3;
    z-index: 0;
}

/* 画像 */
.top_room_image,
.top_bath_image,
.top_dining_image,
.top_service_image {
    position: absolute;
    top: 80px;
    height: calc(100% - 160px);
    z-index: 1;
}

.top_room_image,
.top_bath_image {
    left: calc((100vw - 1000px) / -2);
    width: calc((100vw - 1000px) / 2 + 500px);
}

.top_dining_image {
    right: calc((100vw - 1000px) / -2);
    width: calc((100vw - 1000px) / 2 + 500px);
}

.top_service_image {
    right: calc((100vw - 1000px) / -2);
    width: calc((100vw - 1000px) / 2 + 420px);
}

.top_room_image img,
.top_bath_image img,
.top_dining_image img,
.top_service_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* テキスト枠 */
.top_room_content,
.top_bath_content,
.top_dining_content,
.top_service_content {
    position: absolute;
    top: 80px;
    width: 450px;
    z-index: 2;
    box-sizing: border-box;
}

.top_room_content,
.top_bath_content {
    right: 0;
}

.top_dining_content,
.top_service_content {
    left: 50px;
}

/* 英字見出し */
.top_room_en,
.top_dining_en,
.top_bath_en,
.top_service_en {
    font-size: 50px;
    line-height: 1;
    color: #cfcfcf;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

/* 日本語小見出し */
.top_room_ja,
.top_dining_ja,
.top_service_ja {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
    margin-bottom: 40px;
}

.top_bath_ja {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* オレンジ見出し */
.top_room_title,
.top_dining_title,
.top_bath_title,
.top_service_title {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.6;
    color: #ef7c3a;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    white-space: nowrap;
}

/* 本文枠 */
.top_room_text,
.top_dining_text,
.top_bath_text,
.top_service_text {
    width: 310px;
}

.top_room_text p,
.top_dining_text p,
.top_bath_text p,
.top_service_text p {
    font-size: 15px;
    line-height: 2.35;
    color: #666;
    margin-bottom: 40px;
}

/* ボタン */
.top_room_btn,
.top_dining_btn,
.top_bath_btn,
.top_service_btn {
    width: 196px;
    height: 40px;
    border: 1px solid #ef7c3a;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-decoration: none;
    color: #ef7c3a;
    font-size: 14px;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.top_room_btn span,
.top_dining_btn span,
.top_bath_btn span,
.top_service_btn span {
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: -1px;
}

.top_room_btn:hover,
.top_dining_btn:hover,
.top_bath_btn:hover,
.top_service_btn:hover {
    background-color: #ef7c3a;
    color: #fff;
}

/*==========================top_experiences=========================================*/

.top_experiences {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.top_experiences::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("../images/top_experiences.webp") center center / cover no-repeat;
    z-index: 0;
}

.top_experiences_inner {
    position: relative;
    z-index: 1;
    width: 1000px;
    height: 100%;
    margin: 0 auto;
}

.top_experiences_title {
    padding-top: 40px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
}

.top_experiences_sub {
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

.top_experiences_bnr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.top_experiences_bnr a {
    display: block;
    width: 270px;
    transition: opacity 0.3s ease;
}

.top_experiences_bnr a:hover {
    opacity: 0.85;
}

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

/*==========================top_access=========================================*/

.top_access {
    position: relative;
    padding: 0 0 80px;
    overflow: hidden;
}

.top_access_inner {
position: relative;
width: 1000px;
height: 400px;
margin: 0 auto;
}

.top_access_image {
position: absolute;
top: 0;
left: calc((100vw - 1000px) / -2);
right: calc(300px + 200px + 100px);
height: 360px;
z-index: 1;
overflow: hidden;
}

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

.top_access_content {
position: absolute;
top: 40px;
right: 200px;
width: 300px;
z-index: 2;
}

.top_access_en {
    font-size: 50px;
    line-height: 1;
    color: #cfcfcf;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.top_access_ja {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
    margin-bottom: 42px;
}

.top_access_text {
    width: 305px;
}

.top_access_text p {
    font-size: 14px;
    line-height: 2.25;
    color: #555;
    margin-bottom: 28px;
}

.top_access_btn {
    width: 160px;
    height: 34px;
    border: 1px solid #ef7c3a;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #ef7c3a;
    font-size: 12px;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.top_access_btn span {
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: -1px;
}

.top_access_btn:hover {
    background-color: #ef7c3a;
    color: #fff;
}

/*==========================top_news=========================================*/

.top_news {
    margin-bottom: 120px;
}

.top_news_inner {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f5f5f5;    
}

.top_news_heading {
    width: 190px;
    padding: 80px 0 40px 80px;
}

.top_news_en {
    font-size: 50px;
    line-height: 1;
    color: #cfcfcf;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.top_news_ja {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.top_news_body {
    width: 600px;
    padding: 80px 80px 80px 40px;
}

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

.top_news_list li {
    border-bottom: 1px solid #cfcfcf;
}

.top_news_list a {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 0;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s ease;
}

.top_news_list a:hover {
    opacity: 0.75;
}

.top_news_list .date {
    width: 90px;
    font-size: 14px;
    color: #777;
}

.top_news_list .text {
    flex: 1;
    font-size: 14px;
    color: #555;
}

.top_news_list .arrow {
    width: 18px;
    text-align: right;
    font-size: 18px;
    color: #777;
}

.top_news_more {
    margin-top: 22px;
    text-align: right;
}

.view_all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ef7c3a;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.06em;
}

.view_all span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #ef7c3a;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}

/*==========================footer=========================================*/

.footer {
    background-image: url("../images/mainvisual_under.webp");
    background-repeat: repeat;
    background-position: center center;
    background-size: 1300px auto;
    color: #fff;
}

.footer_inner {
    width: 1000px;
    margin: 0 auto;
    padding-top: 46px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 36px;
}

.footer_logo_area {
    width: 240px;
}

.footer_logo {
    display: block;
    width: 210px;
    height: auto;
}

.footer_info {
    width: 360px;
    padding-top: 8px;
}

.footer_name {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer_address {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 20px;
}

.footer_reserve_btn {
    width: 305px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: opacity 0.3s ease;
    background: linear-gradient(to bottom, #f7933a 0%, #f07a2f 100%);
    border: none;
}

.footer_reserve_btn span {
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: -1px;
}

.footer_reserve_btn:hover {
    opacity: 0.85;
}

.footer_nav {
    width: 240px;
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
}

.footer_nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer_nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.8;
    transition: opacity 0.3s ease;
}

.footer_nav a:hover {
    opacity: 0.75;
}

.footer_bottom {
    width: 100%;
    background-color: #2f3b48;
    padding: 14px 0 18px;
    text-align: center;
    font-size: 11px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.footer_copyright {
    margin: 0;
}


/* 追随ボタン */
.floating_reserve {
position: fixed;
right: 0;
top: 20%;
transform: translateY(-50%);
z-index: 9999;
background: linear-gradient(to bottom, #f7933a 0%, #f07a2f 100%);
padding: 10px 6px;
display: block;
text-decoration: none;
box-shadow: -4px 0 12px rgba(0,0,0,0.15);
}

/* 縦書き */
.floating_reserve span {
writing-mode: vertical-rl;
text-orientation: upright;
color: #fff;
font-size: 16px;
letter-spacing: 0.2em;
border: 1px solid #fff;
padding: 18px 10px;
display: block;
font-weight: 600;
}

/* ホバー */
.floating_reserve:hover {
opacity: 0.85;
}

/* =========================
sub page common
========================= */
.sub_mainvisual {
    position: relative;
    height: 420px;
    overflow: hidden;
}

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

.sub_mainvisual_title {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    width: 1000px;
    color: #fff;
}

.sub_mainvisual_en {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
}

.sub_mainvisual_ja {
    font-size: 18px;
    font-weight: normal;
}

/* =========================
dining page
========================= */
.dining_intro,
.morning_intro {
    padding: 100px 0;
    background-color: #fff;
}

.dining_detail {
    padding: 90px 0;
    background-color: #f3f3f3;
}

.dining_intro_inner,
.dining_detail_inner,
.morning_intro_inner {
    width: 1000px;
    margin: 0 auto;
}

.dining_section_title {
    text-align: center;
    font-size: 52px;
    line-height: 1;
    color: #ef7c3a;
    letter-spacing: 0.06em;
    margin-bottom: 30px;
}

.dining_section_text {
    text-align: center;
    font-size: 14px;
    line-height: 2.4;
    color: #666;
    margin-bottom: 60px;
}

.dining_intro_image {
    width: 760px;
    margin: 0 auto;
}

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

.dining_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    margin-bottom: 50px;
    padding: 40px;
}

.dining_block.reverse {
    flex-direction: row-reverse;
}

.dining_block_image {
    width: 470px;
}

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

.dining_block_text {
    width: 360px;
}

.dining_block_text h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.8;
    color: #EF7C3A;
    margin-bottom: 24px;
}

.dining_block_text p {
    font-size: 14px;
    line-height: 2.3;
    color: #666;
}

.dining_gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.dining_gallery div {
    width: calc((100% - 40px) / 3);
}

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

.morning_intro_image {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 760px;
    margin: 0 auto;
}

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

/* =========================
room page
========================= */
.gray_bg {
    background-color: #f3f3f3;
}

.room_intro {
    padding: 90px 0 40px;
    background-color: #fff;
}

.room_intro_inner,
.room_detail_inner {
    width: 1000px;
    margin: 0 auto;
}

.room_page_title {
    text-align: center;
    font-size: 42px;
    line-height: 1.4;
    color: #ef7c3a;
    font-weight: 300;
    margin-bottom: 10px;
}

.room_page_subtitle {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 22px;
}

.room_page_text {
    text-align: center;
    font-size: 14px;
    line-height: 2.2;
    color: #666;
}

.room_detail {
    padding: 0 0 80px;
}

.room_block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}

.room_block_main {
    display: block;
    margin-bottom: 100px;
}

.room_block_main_image {
    width: 760px;
    margin: 0 auto 40px;
}

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

.room_block_main_lower {
    width: 760px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.room_block_sub_image {
    width: 360px;
}

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

.room_block_image {
    width: 550px;
}

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

.room_spec {
    width: 400px;
}

.room_name_en {
    font-size: 12px;
    color: #bbb;
    margin-bottom: 8px;
}

.room_name_ja {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    color: #EF7C3A;    
    margin-bottom: 24px;
}

.room_spec_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.room_spec_table th,
.room_spec_table td {
    border-top: 1px solid #ddd;
    padding: 14px 0;
    font-size: 13px;
    line-height: 2;
    vertical-align: top;
    color: #666;
}

.room_spec_table th {
    width: 100px;
    font-weight: normal;
    color: #999;
    padding-right: 20px;
}

/* =========================
bath page
========================= */
.bath_intro {
    padding: 100px 0 60px;
    background-color:  #fff;
}

.bath_lounge {
    padding: 100px 0;
    background-color:#f3f3f3;
}

.bath_detail {
    padding: 0 0 100px;
    background-color: #fff;
}

.bath_intro_inner,
.bath_detail_inner,
.bath_lounge_inner {
    width: 1000px;
    margin: 0 auto;
}

.bath_section_title {
    text-align: center;
    font-size: 52px;
    line-height: 1;
    color: #ef7c3a;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.bath_section_sub {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 28px;
}

.bath_section_text {
    text-align: center;
    font-size: 14px;
    line-height: 2.4;
    color: #666;
    margin-bottom: 0;
}

.bath_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.bath_block.reverse {
    flex-direction: row-reverse;
}

.bath_block_image {
    width: 550px;
}

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

.bath_block_text {
    width: 400px;
}

.bath_block_text h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.8;
    color: #EF7C3a;
    margin-bottom: 24px;
}

.bath_block_text p {
    font-size: 14px;
    line-height: 2.3;
    color: #666;
}

.bath_info_box {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    background-color: #f7f7f7;
    border: 1px solid #e5e5e5;
}

.bath_info_col {
    width: 50%;
    padding: 34px 40px;
    box-sizing: border-box;
    text-align: center;
}

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

.bath_info_col h4 {
    font-size: 22px;
    font-weight: 300;
    color: #666;
    margin-bottom: 18px;
}

.bath_info_col p {
    font-size: 13px;
    line-height: 2.1;
    color: #666;
}

.bath_lounge_image {
    width: 760px;
    margin: 60px auto 0;
}

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

/* =========================
service page
========================= */
.service_intro {
    padding: 100px 0;
    background-color: #fff;
}

.service_detail {
    padding: 0 0 100px;
    background-color: #f3f3f3;
    padding-top: 90px;
}

.service_intro_inner,
.service_detail_inner {
    width: 1000px;
    margin: 0 auto;
}

.service_section_title {
    text-align: center;
    font-size: 52px;
    line-height: 1;
    color: #ef7c3a;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.service_section_sub {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-bottom: 28px;
}

.service_section_text {
    text-align: center;
    font-size: 14px;
    line-height: 2.4;
    color: #666;
    margin-bottom: 60px;
}

.service_intro_image {
    width: 760px;
    margin: 0 auto;
}

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

.service_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.service_block_image {
    width: 550px;
}

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

.service_block_text {
    width: 400px;
}

.service_block_text h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.8;
    color: #EF7C3A;
    margin-bottom: 20px;
}

.service_block_text p {
    font-size: 14px;
    line-height: 2.3;
    color: #666;
}

.service_info_box {
    margin-top: 80px;
    padding: 60px 50px;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
}

.service_info_title {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    color: #666;
    margin-bottom: 40px;
}

.service_info_grid {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.service_info_item {
    width: 50%;
    box-sizing: border-box;
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.service_info_item h4 {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin-bottom: 12px;
}

.service_info_item p {
    font-size: 13px;
    line-height: 2;
    color: #666;
}

.service_info_other {
    border: 1px solid #ddd;
    border-top: none;
    text-align: center;
    padding: 28px 20px;
}

.service_info_other h4 {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin-bottom: 12px;
}

.service_info_other p {
    font-size: 13px;
    line-height: 2;
    color: #666;
}

/* =========================
access page
========================= */

.access_intro {
    padding: 100px 0 40px;
    text-align: center;
}

.access_title {
    font-size: 48px;
    color: #ef7c3a;
    margin-bottom: 10px;
}

.access_sub {
    font-size: 14px;
    margin-bottom: 20px;
    color: #999;
}

.access_text {
    font-size: 14px;
    line-height: 2.2;
    color: #666;
}

/* MAP */
.access_map {
    padding: 40px 0 80px;
    text-align: center;
}

.access_map_box {
    width: 800px;
    height: 400px;
    margin: 0 auto 30px;
    background: #eee;
}

.access_map_box iframe {
    width: 100%;
    height: 100%;
}

.access_address {
    font-size: 13px;
    color: #666;
}

/* 詳細 */
.access_detail {
    padding: 60px 0 100px;
    background-color: #f3f3f3;
}

.access_detail_inner {
    width: 1000px;
    margin: 0 auto;
}

.access_table {
    border-top: 1px solid #d9d9d9;
}

.access_row {
    display: flex;
    border-bottom: 1px solid #d9d9d9;
}

.access_head {
    width: 300px;
    padding: 28px 40px 28px 100px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    color: #666;
}

.access_body {
    flex: 1;
    padding: 28px 40px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 2;
    color: #666;
}

/* =========================
news page
========================= */
.news_archive {
    padding: 100px 0 120px;
    background-color: #fff;
}

.news_archive_inner {
    width: 1000px;
    margin: 0 auto;
}

.news_archive_list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ddd;
}

.news_archive_list li {
    border-bottom: 1px solid #ddd;
}

.news_archive_list a {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 28px 0;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s ease;
}

.news_archive_list a:hover {
    opacity: 0.7;
}

.news_archive_list time {
    width: 120px;
    flex-shrink: 0;
    font-size: 14px;
    color: #777;
}

.news_archive_title {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.news_pager {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.news_pager a {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.news_pager a.is-current {
    background-color: #ef7c3a;
    border-color: #ef7c3a;
    color: #fff;
}

/* =========================
news detail page
========================= */
.news_detail {
    padding: 100px 0 120px;
    background-color: #fff;
}

.news_detail_inner {
    width: 800px;
    margin: 0 auto;
}

.news_detail_head {
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

.news_detail_date {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
}

.news_detail_title {
    font-size: 34px;
    line-height: 1.6;
    font-weight: 300;
    color: #333;
}

.news_detail_body p {
    font-size: 16px;
    line-height: 2.2;
    color: #555;
    margin-bottom: 1.8em;
}

.news_detail_back {
    margin-top: 50px;
    text-align: center;
}

.news_detail_back a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 44px;
    padding: 0 24px;
    border: 1px solid #ef7c3a;
    color: #ef7c3a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news_detail_back a:hover {
    background-color: #ef7c3a;
    color: #fff;
}

/* =========================
page top button
========================= */
.pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #2f3640;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.pagetop img {
    width: 20px;
    height: auto;
}

.pagetop.show {
    opacity: 1;
    visibility: visible;
}

/* =========================
reserve
========================= */

.reserve_page{
  padding: 120px 0 80px;
  text-align: center;
}

.reserve_inner{
  width: calc(100% - 40px);
  max-width: 600px;
  margin: 0 auto;
}

.reserve_title{
  font-size: 36px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.reserve_sub{
  font-size: 14px;
  margin-bottom: 40px;
}

.reserve_message{
  margin-bottom: 40px;
}

.reserve_message p{
  font-size: 18px;
  margin-bottom: 10px;
}

.reserve_small{
  font-size: 13px;
  color: #777;
}

.reserve_back{
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #333;
  text-decoration: none;
  font-size: 14px;
}