/* Base color palette
    Blue (Button color): #337bae
    Pure White: #FFFFFF
    Soft Gray: #F1FAEE
    Charcoal: #2C2C2C
*/



/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;    background-color: #FFF;
    color: #2C2C2C;
    line-height: 1.6;
    overflow-x: hidden;
}

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

}

/* flex内で横スクロールが出るのを防ぐ保険 */
.mainvisual-inner,
.room-card,
.info-layout {
    min-width: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 60px 20px;
}


address {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal; /* addressの斜体を解除 */
    font-size: 16px;
    line-height: 1.7;
    margin-top: 12px;
}


/** -----------------------------------
    ボタン
-------------------------------------**/
.btn-primary {
    display: block;
    width: 198px;
    height: 50px;
    background-color: #f5a75d;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.03em;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    transition: opacity 0.25s ease;
}

.btn-primary:hover {
    opacity: 0.85;
}

.reserve-btn-main {
    display: flex;
    width: 300px;
    height: 60px;
    background-color: #f5a75d;
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.03em;
    font-weight: bold;
    border-radius: 15px;
    justify-content: center; 
    align-items: center;
    margin-top: 12px;
    margin-bottom: 24px;
    align-self: flex-start;   
    transition: opacity 0.25s ease;
}


.reserve-btn-main:hover {
    opacity: 0.85;

}




/** -----------------------------------
    ヘッダー
-------------------------------------**/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFF;
    z-index: 100;
    transition: box-shadow 0.25s ease;
    
}

/* スクロール後に付くクラス */
header.is-scrolled {
    border-bottom: 1px solid #e6e9ee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1280px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    
}

/* ヘッダーの予約ボタン */
/* header .btn-primary {
    background-color: #f5a75d;
    transition: opacity 0.25s ease;
} */




.gnav-pc-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

ul.gnav-pc li {
    display: inline;
    margin-right: 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    width: 170px;
}

.header-logo a {
    display: flex;
}



nav a {
    letter-spacing: 0.13em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}



nav a:focus-visible::after {
    transform: scaleX(1);
}

.gnav-pc a {
    position: relative;
}

.gnav-pc a:hover {
    color: #337bae;
}

.gnav-pc a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #337bae;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.gnav-pc a:hover::after {
    transform: scaleX(1);
}



/* 現在地 */
.gnav-pc a.is-active {
    color: #337bae;
}

.gnav-pc a.is-active::after {
    transform: scaleX(1);
}

section[id] {
  scroll-margin-top: 100px; /* header 高さに合わせて微調整 */
}

.mainvisual {
    padding-top: 30px;
    min-height: 80vh;
    background: linear-gradient(
        to right,
        #f4f8fb 0%,
        #f4f8fb 60%,
        #ffffff 100%
    );
    position: relative;
    align-items: center;

}

.mainvisual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: #e6e9ee;
}

.mainvisual-inner {
    max-width: 1280px; 
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    min-width: 0;    
    justify-content: space-between;
    gap: 32px;
}

/* heroの画像枠 */
.hero-slider {
    position: relative;
    width: auto;
    flex: 6;
    height: 80vh;        
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 70px; 
    aspect-ratio: 16 / 9;  
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(44,111,163,0.25),
        rgba(44,111,163,0.08),
        rgba(255,255,255,0)
    );
}


/* 画像を重ねる */
.hero-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease; 
}

/* 表示中 */
.hero-slider img.is-active {
    opacity: 1;
}



.main-text {
    display: flex;
    flex-direction: column;
    width: auto; 
    flex: 4;      /* 4:6 の比率 */
    min-width:0;
    
}

.main-text address p {
    margin-bottom: 6px;
}

.main-text address {
    margin-top: 0;
}

.main-catch {
    font-size: 36px;      
    font-weight: 600;     
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-top: 40px;
}

.main-catch .highlight {
    display: flex; 
    font-weight: 700;
    font-size: 16px;
    padding-top: 20px;
}

.highlight-leaf {
    display: inline-flex;
    align-items: baseline;
}


.highlight-text {
    color: #337bae;
    white-space: nowrap;
    padding: 0 5px;
}

.leaf {
    width: 16px;   /* 14〜18pxで微調整OK */
    height: auto;
}

.leaf-left {
    transform: translateY(3px);
}

.leaf-right {
    transform: translateY(4px);
}


.main-catch-sub {
    color:#333;
    font-size: 24px;
    display: block;
}



.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 2px solid #1d3557;
    border-bottom: 2px solid #1d3557;
    transform: rotate(45deg);
    animation: scrollArrow 1.6s infinite;
    opacity: 0.7;
}

@keyframes scrollArrow {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: 0;
    }
    40% {
        opacity: 0.7;
    }
    80% {
        transform: translateY(10px) rotate(45deg);
        opacity: 0;
    }
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
}

.section-title span {
    display: block;
    font-weight: 700;
}

.intro {
    text-align: left;
}
.intro h2 {
    text-align: left;
    margin-bottom: 16px;
}

.intro-image {
    display: block;
    margin: 16px 0;
}

.intro-image img {  
    width: 100%;
    border-radius: 6px;
}

.intro-image figcaption {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}


.room-card {
    display: flex;
    margin-bottom: 48px;
    gap: 32px;
    /* background-color: #ffffff; */
    background: #f7f8fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.room-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


/* 左の画像エリアをスライダーに */
.room-slider {
    width: 55%;           
    height: auto    ;        
    position: relative;
    overflow: hidden;
    background: #eee;
}

/* 横に並べてスライド */
.room-slides {
    display: flex;
    height: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}

.room-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 0 0 100%;
}

/* 矢印 */
.room-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.85);
    cursor: pointer;
    line-height: 36px;
    font-size: 20px;
}

.room-nav.prev { left: 10px; }
.room-nav.next { right: 10px; }

/* ドット */
.room-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.room-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}

.room-dots button.is-active {
    background: rgba(255,255,255,0.95);
}



.room-card-body {
    background: #f7f8fa;
    padding: 20px 24px;
    flex: 4;
}

.room-card-body h3 {
    padding-top: 8px;
    font-size: 20px;
    margin-bottom: 8px;
}

.room-card-body li {
    margin-bottom: 6px;
    font-size: 15px;
}


.room-card-body p {
    font-size: 15px;

}

.renewal {
    margin-top: 24px;
}

.room-facility, .room-amenity {
    background-color: #337bae;
    margin-top: 10px;
    margin-bottom: 4px;
    /* border: 1px solid #2C2C2C; */
    color: #FFF;
    border-radius: 20px;
    width: fit-content;
    padding: 2px 15px;
}

.room-spec-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 20px;
    margin-top: 6px;
    padding-left: 0;
}

.room-spec-list li {
    position: relative;
    padding-left: 1em;
    font-size: 14px;
    line-height: 1.5;

}

.room-spec-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #337bae;
}



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

.section-cta {
    margin: 40px auto 0;
}

/* .facilities {
    background-color: #f8f9fb;
} */

.facilities h2 {
    font-size: 24px;
    margin-bottom: 32px;
}

.facilities-list {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 40px;
    margin-left: 0;
    list-style: none;
    padding-left: 0;
}

.facilities-list li {
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    /* padding-left: 1.2em; */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.facility-img{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}


.facility-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .facility-img {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .facility-img{
        grid-template-columns: 1fr;
    }
}

.facilities .section-inner {
    align-items: flex-start;
}

.section {
    padding: 60px 20px;
}

.section-inner {
    max-width: 1000px; 
    margin: 0 auto;
}

.section-inner.narrow {
    max-width: 800px;
}

.info {
    background-color: #f8f9fb;
}

.info-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.info-text {
    width: 40%;
    font-size: 16px;
    line-height: 1.8;
    font-style: normal;
}

.info-text p {
  margin: 0;              /* いったんリセット */
  padding: 6px 0;         /* ← 行間の代わりに“行の余白”で調整 */
  line-height: 1.75;      /* 文章が2行になっても読みやすい */
}

/* 重要行は少し強く区切る（任意） */
.info-text .access-highlight {
    padding: 10px 0;
}

/* TELはタップしやすさも兼ねて少し厚め（任意） */
.info-text .tel-info a {
    display: inline-block;
    padding: 6px 0;
}


.access-highlight {
    font-weight: 600;
    margin: 12px 0;
}
.tel-info a {
    font-weight: 600;
    color: #2c6fa3;
    text-decoration: none;
}

.tel-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .tel-info a {
        display: inline-block;
        padding: 6px 0;
    }
}

.info-map {
    width: 60%;
}

.info-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 6px;
}

.map-link {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 5px 10px;
    margin-top: 8px;
    font-size: 14px;
    color: #333;
    position: relative;
    z-index: 1;
    transition: .3s;
}


.map-link:hover {
    color: #fff;
    background-color: #337bae;
    border: none;
}
.map-link:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.map-link::after {
    content: " →";
}

/* 周辺マップ */
.gourmet-map img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gourmet-lead {
    margin-top: 24px;
}


.cta-final {
    /* background-color: #f4f8fb; */
    background-color: #285fac;
    padding: 80px 20px;
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-message {
    font-size: 18px;
    margin-bottom: 24px;
    color: #FFF;
}

.cta-center {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .info-layout {
        flex-direction: column;
    }

    .info-text,
    .info-map {
        width: 100%;
    }

    .info-map iframe {
        height: 240px;
    }
}


/* スマホ用固定CTA */
.fixed-cta {
    display: none;
}

@media (max-width: 768px) {
    .fixed-cta {
        display: flex;
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 12px;
        z-index: 999;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 8px 18px rgba(0,0,0,0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .fixed-cta.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .fixed-cta-badge {
        width: 38%;
        background: #7a5a2c;
        color: #fff;
        padding: 12px 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fixed-cta-badge-top {
        font-size: 11px;
        letter-spacing: 0.06em;
        margin-bottom: 4px;
    }

    .fixed-cta-badge-main {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.3;
    }

    .fixed-cta-button {
        width: 62%;
        background: linear-gradient(90deg, #f5a75d, #f08c3a);
        color: #fff;
        font-size: 16px;
        line-height: 1.4;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 16px 10px;
        box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
    }

}






/** -----------------------------------
    フッター
-------------------------------------**/
.footer {
    background: #1d3557;
    color: #fff;
    text-align: center;
    padding: 20px;
}


@media (max-width: 768px) {

  /* === Header：PCナビを消す（ボタンだけ残す） === */
    .gnav-pc { display: none; }
    .btn-primary {
        width: 160px;
        height: 44px;
        line-height: 44px;
        font-size: 14px;
    }

    /* === Hero：縦積み === */
    .mainvisual-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .main-text {
        width: 100%;
    }

    .reserve-btn-main {
        width: 100%;
        max-width: 320px;
    }

    /* .hero-slider {
        width: 100%;
        height: 45vh;
        margin-top: 16px;
    } */

    .highlight-leaf {
        flex-wrap: wrap;
    }
    .highlight-text {
        white-space: normal;
        text-align: center;
    }
    .main-catch .highlight {
        display: flex;
    }

  /* === Rooms：縦積み === */
    .room-card {
        flex-direction: column;
        gap: 0;
    }
    .room-slider {
        width: 100%;
        height: 220px; /* スマホで縦取りすぎ防止 */
        touch-action: pan-y;
    }

    /* === Facilities：4列→2列 === */
    .facilities-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* === Info：縦積み === */
    .info-layout {
        flex-direction: column;
    }
    .info-text,
    .info-map {
        width: 100%;
    }
    .info-map iframe {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .facilities-list {
        grid-template-columns: 1fr;
    }
}

/* ===== ハンバーガー（PCは非表示） ===== */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #333;
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

/* メニュー本体（PCは何もしない） */
.sp-menu {
    display: none;
}


/* PCのロゴは大きめ */
@media (min-width: 1025px) {
    .header-logo {
        width: 220px;   /* ← 好みで 200〜240px くらい */
    }
}

/* ========== Tablet (<=1024px) ========== */
@media (max-width: 1024px) {

  /* 余白を少し詰める */
    .section { padding: 56px 20px; }
    address p{
        font-size: 1rem;
    }

  /* ===== Header ===== */
  /* PCナビの文字が詰まりやすいので間隔を縮める */
    ul.gnav-pc li { margin-right: 24px; }

  /* ロゴ少し小さく（スマホは別で維持される） */
    .header-logo { width: 150px; }

  /* ===== Hero ===== */
  /* タブレットは縦積み */

    .mainvisual {
        padding-top: 20px;
    }

    .mainvisual-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding: 32px 20px 48px;
    }

    .hero-slider {
        order: -1;
        width: 100%;
        height: 52vh;
        min-height: 360px;
        margin: 0;
        border-radius: 10px;
    }

    .main-text {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    .main-catch {
        margin-top: 0;
        font-size: 34px;
        line-height: 1.45;
    }

    .main-catch-sub {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .main-catch .highlight {
        justify-content: center;
        padding-top: 16px;
    }

    .highlight-text {
        font-size: 16px;
    }

    .reserve-btn-main {
        align-self: center;
        margin-top: 16px;
        margin-bottom: 24px;
    }

    .hotel-info-main {
        text-align: left;
        align-self: stretch;
        max-width: 480px;
        margin: 0 auto;
    }

    .hotel-info-main p {
        margin-bottom: 8px;
        line-height: 1.8;
    }

  /* ===== Rooms ===== */


  /* ===== Facilities ===== */
  /* 4列 → 2列が現実的 */
    .facilities-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 24px;
    }

    /* ===== Info ===== */
    .info-layout {
        flex-direction: column;
    }
    .info-text, .info-map { width: 100%; }
    .info-map iframe { height: 280px; }
}


@media (max-width: 970px) {
    .pc-nav {
        display: none;
    }

    .hamburger {
        display: inline-block;
        order: 2;
    }

    .pc-cta {
        display: inline-block;
        width: 150px;
        height: 42px;
        line-height: 42px;
        font-size: 14px;
        order: 1;
        margin-right: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .gnav-pc-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
    }

}

/*  */
@media (max-width: 970px) {
  /* ハンバーガー */
  /* PCの横ナビは消す（sp-menu内のulは表示したいので sp-menuの中で復活させる） */
    .gnav-pc-wrap > .gnav-pc { display: none; }

    .hamburger {
        display: inline-block;
    }
    .pc-nav {
        display: none;
    }

  /* ドロワー（右上から出る） */
    .sp-menu {
        display: block;
        position: fixed;
        top: 70px;                 /* ヘッダー高さに合わせて微調整 */
        right: 0;
        width: min(86vw, 360px);
        height: calc(100vh - 70px);
        background: #fff;
        border-left: 1px solid #eee;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        padding: 20px 18px;
        transform: translateX(100%);
        transition: transform .25s ease;
        z-index: 200;
    }

    .sp-menu .gnav-pc {
        display: block;            /* ←ここでSP内は表示 */
        padding: 0;
        margin: 0;
    }

    .sp-menu .gnav-pc li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .sp-menu .gnav-pc a {
        display: block;
        padding: 14px 6px;
    }

    .sp-cta {
        width: 100%;
        margin-top: 16px;
    }

  /* 開いた状態 */
    body.menu-open .sp-menu {
        transform: translateX(0);
    }

    /* ハンバーガー × 変形 */
    body.menu-open .hamburger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
    body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
    body.menu-open .hamburger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }



}


/* ===== SP（768px以下） ===== */
@media (max-width: 768px) {

    .pc-cta { 
        display: none;
    }
    .mainvisual-inner{
        display: flex;
        flex-direction: column;
    }
    address p {
        font-size: 1rem;
    }

    .hero-slider{
        order: -1;
        display: block;        /* ← 保険 */
        position: relative;    /* ← absolute画像の親として必須 */
        width: 100%;
        height: 60vh;
        height: 60svh;
        min-height: 320px;
        margin: 0 0 16px;
        overflow: hidden;
    }
    .hero-slider img{
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .main-text {
        order: 1;
        width: 100%;
    }
    .main-catch {
        font-size: 32px;
        margin-top: 20px;
    }
}

.fixed-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fixed-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}


