/* リセット */
:where(html, body, main) {
    margin: 0;
    padding: 0;
}
* {
    font-family: 'Noto Sans JP', sans-serif;
}

/* 
グローバル
*/
:root {
    --color-brand: linear-gradient(#FC9714, #DA620F, #FF722C);
    --color-dark: #1D1D1D;
    --color-secondary: #141111;
    --color-background: #E9E9E9;
    --color-background-light: #f8f8f8;
    --font-family-base: 'Helvetica Neue', Arial, sans-serif;
    --color-primary: #2800dc;
    --header-h: 64px;
    /* ヘッダーの高さ */
    --hero-h: clamp(280px, 55svh, 520px);
    /* ヒーローの高さ */
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.left {
    margin-left: 0;
    margin-right: auto;
}

.right {
    margin-left: auto;
    margin-right: 0;
}

.wrapper {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
}

.wrapper-100 {
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
}

/* .area-access {
    position: relative;
    min-height: 600px;
    width: auto;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    padding: 60px 40px;
    overflow: hidden;
} */

.area-access {
    position: relative;
    min-height: 600px;
    width: auto;
    background-color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    padding: 60px 40px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.area-access-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* .area-access-title {
    padding: 40px;
    color: white;
    z-index: 2;
} */

.area-access-title {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 18px 0 24px 0;
    padding: 5px 20px;
    color: white;
}


/* 背景の暗いオーバーレイ */
.area-access::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}
/* .area-access::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
} */

@media screen and (max-width: 769px) {
    .area-access {
        min-height: 0;
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
        aspect-ratio: 16/9;
    }
    .area-access-bg {
        padding: 6vh 0;
    }
    .area-access-title {
        position: absolute;
        top: 16px;
        left: 16px;
        margin: 0;
    }
    .area-access-title .section-title__ja {
        font-size: 1.15rem;
        margin: -0.6em 0 0;
    }
}

/* ローディング */
/* 画面全体のローダー */
#rb-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease, visibility .4s ease;
}

/* 消すとき用 */
#rb-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* 中身のコンテナ（サイズは好みで調整） */
.rb-loader-inner {
  position: relative;
  width: 260px;  /* フルロゴに合わせた横幅 */
  height: 80px;
}

/* 両方のロゴを中央に重ねる */
.rb-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* アニメーション開始中だけ動かす */
#rb-loader.rb-playing .rb-logo--full {
  animation: rb-logo-full 2.2s forwards;
}

#rb-loader.rb-playing .rb-logo--mark {
  animation: rb-logo-mark 2.2s forwards .8s;
}

@keyframes rb-logo-full {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(8px);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  /* 40% {
    opacity: 1;
  } */
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-8px);
  }
}

@keyframes rb-logo-mark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.7);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  /* 70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  } */
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5);
  }
}

.hover-cta {
  position: fixed;
  right: 2.76rem;
  bottom: 3.8rem;
  z-index: 9999;
  /* transition: opacity .25s ease, transform .25s ease; */
}

.hover-cta.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events:initial;
}

.hover-cta__pill {
  /* display: flex; */
  background: linear-gradient(#FC9714, #DA620F, #FF722C) !important;
  color: #000;
  border-radius: .5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  padding: .9rem 1.1rem;

  /* width: 25vw; */
  /* min-width: 160px; はもう不要なら消してOK */

  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}


/* hoverで展開 */
.hover-cta:hover .hover-cta__pill {
  /* width: 25vw; */
  background: #fff;
}

/* テキスト・リンク */
.hover-cta__text {
	color:#fff;
  font-size: 1.25rem;
  flex: 1 1 auto;
}
.hover-cta__link {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto;
}
.hover-cta__link:hover {
  text-decoration: underline;
}

@media (max-width: 769px) {
  .hover-cta {
    right: 1rem;
	left: 1rem;
    bottom: 1.75rem;
  }
  .hover-cta__pill {
    width: auto;
    text-align: center;
  }
  .hover-cta:hover .hover-cta__pill {
    width: auto;
  }
  .hover-cta__text {
	flex: inherit;
    font-size: 1rem;
  }
  .hover-cta__link {
    font-size: 1rem;
  }
}

/* h3見出し - 右側に斜線パターン */
.section-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 18px 0 24px 0;
    padding: 5px 20px;
    line-height: 1.5;
    position: relative;
    background: linear-gradient(135deg,
            transparent 0%,
            transparent 45%,
            #e8e8e8 45%,
            #e8e8e8 47%,
            transparent 47%,
            transparent 52%,
            #e8e8e8 52%,
            #e8e8e8 54%,
            transparent 54%,
            transparent 59%,
            #e8e8e8 59%,
            #e8e8e8 61%,
            transparent 61%,
            transparent 66%,
            #e8e8e8 66%,
            #e8e8e8 68%,
            transparent 68%,
            transparent 73%,
            #e8e8e8 73%,
            #e8e8e8 75%,
            transparent 75%,
            transparent 80%,
            #e8e8e8 80%,
            #e8e8e8 82%,
            transparent 82%,
            transparent 87%,
            #e8e8e8 87%,
            #e8e8e8 89%,
            transparent 89%,
            transparent 94%,
            #e8e8e8 94%,
            #e8e8e8 96%,
            transparent 96%,
            transparent 100%);
}

@media screen and (max-width: 769px) {
    .content-body h2.wp-block-heading {
        font-size: 20px;
    }

    .section-title h3 {
        font-size: 18px;
    }

    .content-body p {
        font-size: 14px;
        line-height: 2.0;
    }
}

.section-title h3.text-black {
    color: #000;
}

.content-body h3.wp-block-heading:first-child {
    margin-top: 0;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

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

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

.text-right {
    text-align: right;
}

.bg-white {
    background-color: #fff;
}

.bg-black {
    background-color: #000;
}

.bg-brand {
    background-image: var(--color-brand);
}

.bg-color-brand {
    background-color: var(--color-brand);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-bg {
    background-color: var(--color-background);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .15s ease;
}

.l-main.main-padding {
    /* padding-top: calc(10vh + 72px); */
    padding-top: calc(5vh + 72px);
}

@media screen and (max-width: 769px) {
    .l-main.main-padding {
        padding-top: calc(10vh + 30px);
    }
}

/* END グローバル */
/* =========================
   Header (transparent gradient)
   ========================= */
.l-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    /* height: var(--header-h); */
    /* 透過の縦グラデーション（上=黒→下=白へフェード） */
    background: linear-gradient(to bottom, rgba(0, 0, 0, .9) 0%, rgba(255, 255, 255, 0) 60%);
    -webkit-backdrop-filter: saturate(120%) blur(0.5px);
    backdrop-filter: saturate(120%) blur(0.5px);
}

.l-header.dark {
    background: var(--color-dark);
}

.l-header__wrap {
    max-width: 90vw;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10vh;
}

@media screen and (max-width: 769px) {
    .l-header__wrap {
        padding: 18px 24px;
    }
}

/* Logo */
.l-header-logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.l-header-logo img {
    max-height: 40px;
    display: block;
}

@media screen and (max-width: 769px) {
    .l-header-logo img {
        max-height: 30px;
    }
}

/* ===== パンくず ===== */
/* パンくずリスト */
.breadcrumb {
    background-color: #fff;
    padding: 25px 18px;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
}

.breadcrumb__item::after {
    content: ">";
    margin: 0 8px;
    color: #999;
}

.breadcrumb__item:last-child::after {
    display: none;
}

.breadcrumb__item a {
    color: #333;
    text-decoration: none;
}

.breadcrumb__item a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 769px) {
    .breadcrumb {
        background-color: #fff;
        padding: 15px 8px;
    }

    .breadcrumb ul {
        font-size: 0.72rem;
    }
}

/* ===== END パンくず ===== */

/* =========================
   Nav
   ========================= */
/* ===== Nav (Font Awesome icons) ===== */
.l-header-nav__nav {
    display: flex;
    align-items: center;
    gap: 56px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.l-header-nav__link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: .06em;
    font-size: 14px;
    line-height: 1.2;
    min-width: 56px;
}

.l-header-nav__link i {
    font-size: 22px;
    line-height: 1;
    display: block;
}

@media screen and (max-width: 769px) {
    .l-header-nav__nav li:not(:nth-child(6)) {
        display: none;
    }
}

/* ハンバーガー(4番目は <i> なし想定) */
.nav__open {
    width: 42px;
    height: 42px;
    font-size: 0;
    position: relative;
    min-width: auto;
}

.nav__open::before,
.nav__open::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.nav__open::before {
    top: 12px;
    box-shadow: 0 8px 0 0 currentColor;
}

.nav__open::after {
    top: 28px;
}

/* Hover/focus */
.l-header-nav__link:hover,
.l-header-nav__link:focus {
    opacity: .85;
}

/* Responsive */
@media (max-width:960px) {
    .l-header-nav__nav {
        gap: 28px;
    }

    .l-header-nav__link {
        font-size: 12px;
    }

    .l-header-nav__link i {
        font-size: 20px;
    }
}

@media (max-width:640px) {
    .l-header-nav__nav {
        gap: 18px;
    }

    .l-header-nav__link {
        min-width: 48px;
    }
}

.fullscreen-nav__header {
    width: 90vw;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10vh;
}

.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-dark);
    z-index: 2000;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-nav.active {
    height: 80vh;
}

.fullscreen-nav__container {
    display: flex;
    height: 100%;
    position: relative;
    flex-direction: column;
}

/* 閉じるボタン */
.fullscreen-nav__close {
    /* position: absolute;
    top: 2rem;
    right: 2rem; */
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10;
}

.fullscreen-nav__close:hover {
    transform: rotate(90deg);
}

/* ロゴエリア */
.fullscreen-nav__logo {
    /* position: absolute;
    top: 2rem;
    left: 2rem; */
    z-index: 10;
}

.fullscreen-nav__logo img {
    max-height: 40px;
    display: block;
}

.fullscreen-nav__logo .logo-text {
    color: #ff7f32;
    font-size: 32px;
}

/* メニューコンテンツ */
.fullscreen-nav__content {
    display: flex;
    flex-direction: column;
    /* padding: 100px 4rem 4rem; */
    height: 100%;
    overflow-y: auto;
}

/* 行レイアウト */
.nav-row {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 0.5rem;
    padding: 2rem 0;
    margin: 0 auto;
}

.nav-row:not(:last-child) {
    border-bottom: 1px solid #868686;
}

/* ボーダー */
.nav-border {
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 0;
}

/* カラム */
.nav-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
    text-align: left;
}

.nav-column a {
    color: #fff;
    font-size: 1.55rem;
}

/* タイトルリンク */
.nav-title {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-title:hover {
    opacity: 0.8;
}

/* サブリンクリスト */
.nav-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.nav-column ul li {
    margin-bottom: 0.8rem;
}

.nav-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-column ul li a:hover {
    color: #fff;
}

/* タグスタイル（目的別用） */
.tag-more {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.tag-more a {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #555;
    color: #999;
    font-size: 12px;
    border-radius: 3px;
    transition: all 0.3s;
}

.tag-more a:hover {
    border-color: #ff7f32;
    color: #ff7f32;
}

/* 複数のナビタイトルを含むカラム */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* お問い合わせボタンエリア */
.nav-footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 2rem;
}

/* お問い合わせボタン */
.contact-button {
    display: inline-block;
    padding: 14px 48px;
    background: #ff7f32;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s;
}

.contact-button:hover {
    background: #ff6a1a;
}

@media (max-width: 769px) {

    /* 全画面ナビ本体 */
    .fullscreen-nav {
        height: 0;
        overflow: hidden;
    }

    .fullscreen-nav.active {
        height: 100dvh;
    }

    /* 全面展開 */
    .fullscreen-nav__container {
        height: 100%;
    }

    /* ヘッダー（ロゴ・閉じる） */
    .fullscreen-nav__header {
        width: 92vw;
        margin: 0 auto;
        padding: 18px 0;
        height: auto;
    }

    .fullscreen-nav__logo img {
        max-height: 28px;
    }

    .fullscreen-nav__close {
        font-size: 28px;
    }

    /* コンテンツ */
    .fullscreen-nav__content {
        padding: 12px 4vw 56px;
        height: 100%;
        overflow-y: auto;
    }

    /* 各行は1カラム縦積み＋太めの下線 */
    .nav-row {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 80vw;
        margin: 10px 10px;
        padding: clamp(38px, 10vw, 58px) 0;
        border-bottom: 1px solid #5c5c5c;
    }

    .nav-row:last-child {
        border-bottom: none;
    }

    /* カラム内：見出しリンクを大きく */
    .nav-column {
        gap: 26px;
        margin: 0 5px;
    }

    .nav-column>a {
        display: block;
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        font-size: clamp(22px, 7vw, 32px);
        letter-spacing: .02em;
    }

    /* 同一カラムに見出しが複数あるケース（お知らせ/お問合せ）の間隔 */
    .nav-column>a+a {
        margin-top: 10px;
    }
    /* サブリンク（エリア名・目的タグ）を横並び & 仕切り線 */
    .nav-column ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        row-gap: clamp(14px, 4vw, 20px);
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-column ul li {
        margin: 0;
        display: flex;
        align-items: center;
        font-size: clamp(13px, 3.8vw, 18px);
    }

    .nav-column ul li a {
        color: #fff;
        text-decoration: none;
        font-size: inherit;
    }

    /* 「｜」の見た目を擬似要素で再現（1pxの縦線） */
    .nav-column ul li:not(:first-child) {
        position: relative;
        padding-left: clamp(14px, 4vw, 22px);
        margin-left: clamp(14px, 4vw, 22px);
    }

    .nav-column ul li:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 1px;
        height: 0.95em;
        background: #868686;
        transform: translateY(-50%);
    }
}


/* =========
  ベース
========= */
.fullscreen-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 0; /* 初期は閉じる */
    background: var(--color-dark, #151515);
    z-index: 2100;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: height .45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* JSで .active を付けて開く想定 */
.fullscreen-panel.active {
    height: 80vh;
}

@media (max-width: 769px) {
    .fullscreen-panel.active {
        height: 100dvh;
    }
}

/* =========
  ヘッダー部（ロゴ＋閉じる）
========= */
.fullscreen-panel__header {
    width: 90vw;
    margin: 0 auto;
    padding: 32px 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.fullscreen-panel__logo img {
    max-height: 40px;
    display: block;
}

.fullscreen-panel__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: transform .25s ease;
}
.fullscreen-panel__close:hover {
    transform: rotate(90deg);
}

/* =========
  中身
========= */
.fullscreen-panel__inner {
    width: 90vw;
    margin: 0 auto;
    padding: 12px 0 36px;
    flex: 1;
    overflow-y: auto;
}

.fullscreen-panel__title {
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 26px;
    font-weight: 600;
}

/* =========
  カードグリッド
  PC: 3カラムまで
========= */
.area-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

@media (max-width: 1100px) {
    .area-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .area-card-grid {
        grid-template-columns: 1fr;
    }
}

/* 言語切り替え */
.lang-wrapper {
    position: relative;
    display: block;
}

.lang-menu {
    position: absolute;
    /* top: 100%; */
    left: 80%;
    margin-top: 12.1vh;
    min-width: 15vw;
    background: #000;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 4px 0;
    display: none;
    z-index: 1000;
}

.lang-menu.is-open {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.lang-menu a:hover {
    background: #222;
}


/* =========
  カード本体
  画像の上にテキスト
  右上だけ大きく丸める
========= */
.area-card {
    position: relative;
    background: #777; /* 画像がないときの下地 */
    border-radius: 18px 60px 16px 16px;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    isolation: isolate;
    transition: transform .2s ease, box-shadow .2s ease;
}
.area-card::after {
    /* うっすらオーバーレイ */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(0,0,0,.35), rgba(0,0,0,.2));
    z-index: 0;
}
.area-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(.1);
    opacity: .85;
    z-index: -1;
}
.area-card__name {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(18px, 1.75vw, 36px);
    font-weight: 600;
    letter-spacing: .08em;
    text-align: center;
    padding: 0 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.area-card:hover .area-card__bg {
    opacity: 1;
}

/* スマホ時はカードを少し縦長に */
@media (max-width: 640px) {
    .area-card {
        min-height: 150px;
        border-radius: 16px 46px 14px 14px;
    }
}

/* 開いている間スクロールを止めたい場合に使うクラス */
body.is-panel-open {
    overflow: hidden;
}




/* =========================
   Hover / focus
   ========================= */
.l-header-nav__link:hover,
.l-header-nav__link:focus {
    opacity: .85;
}

/* ===== Section ===== */
.section-title {
    padding: 56px 0 24px;
}

.section-title__en {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .8;
}

.section-title__en::before {
    /* 小さなブックマーク風アイコン */
    content: "";
    inline-size: 10px;
    block-size: 14px;
    border-radius: 2px 2px 0 0;
    background: #E06B26;
    display: inline-block;
}

.section-title__ja {
    margin: .4em 0 0;
    font-size: clamp(24px, 3.2vw, 36px);
    line-height: 1.3;
    font-weight: 800;
}

/* ===== END SECTION ===== */
/* ===== Pickup Carousel ===== */
.pickup-carousel {
    /* 3枚固定表示 */
    --visible: 3;
    --gap: clamp(16px, 2.5vw, 28px);
    position: relative;
    overflow: hidden;
    padding: 8px 0 28px;
    /* 背景との馴染み用: 任意 */
    /* background: transparent; */
}

/* スライドを横一列に並べるトラック */
.pickup-track {
    display: flex;
    gap: var(--gap);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* 個々のカードは等幅で3分割 */
.pickup-card {
    flex: 0 0 calc((100% - var(--gap) * (var(--visible) - 1)) / var(--visible));
    position: relative;
    border-radius: 10px;
    border-top-right-radius: 48px;
    overflow: hidden;
    isolation: isolate;
    background: #222;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .06);
    aspect-ratio: 1 / 1.311;
}

@media screen and (max-width: 769px) {
    .pickup-card {
        flex: 0 0 calc((100% - var(--gap) * (2 - 1)) / 1);
    }

}

/* カード内サムネイル敷き詰め */
.pickup-thumbnail,
.pickup-thumbnail img {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    object-position: center;
}

.pickup-thumbnail img {
    filter: saturate(.95) contrast(.95) brightness(.9);
}

/* 下部を濃くするグラデで文字可読性UP */
.pickup-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .58) 50%,
            rgba(0, 0, 0, .32) 95%);
    z-index: 1;
}

.pickup-post-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    color: #fff;
    z-index: 1;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.pickup-taxonomy-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-weight: 600;
}

.pickup-pref-name {
    font-size: 14px;
    opacity: .9;
}

.pickup-city-name {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: .06em;
}

.pickup-title {
    margin: .6em 0 0;
    font-size: 14px;
    font-weight: 500;
    opacity: .9;
}

/* 中央の再生ボタン（装飾） */
.pickup-play-button {
    position: absolute;
    inset: 0;
    margin: auto;
    inline-size: 96px;
    block-size: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 2px solid rgba(255, 255, 255, .65);
    display: grid;
    place-items: center;
    z-index: 1;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.pickup-play-button::before {
    content: "";
    margin-left: 4px;
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
}

.pickup-card:hover .pickup-play-button {
    transform: scale(1.04);
    background: rgba(255, 255, 255, .22);
    border-color: #fff;
}

.pickup-card:hover .pickup-thumbnail img {
    filter: saturate(1) contrast(1) brightness(.95);
}

/* ナビゲーション */
.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    padding: 6px 4px 60px;
}
.carousel-nav.is-disabled {
    display: none;
}

.carousel-prev-button,
.carousel-next-button {
    inline-size: 54px;
    block-size: 34px;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
    opacity: .8;
    transition: opacity .15s ease, transform .15s ease;
}

.carousel-prev-button::before,
.carousel-next-button::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    inline-size: 24px;
    block-size: 24px;
    border-right: 2px solid rgba(255, 255, 255, .9);
    border-bottom: 2px solid rgba(255, 255, 255, .9);
    transform: rotate(135deg);
    /* ← */
}

.carousel-next-button::before {
    transform: rotate(-45deg);
    /* → */
}

.carousel-prev-button:hover,
.carousel-next-button:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* 黒矢印版（白背景用） */
.carousel-prev-button.black::before,
.carousel-next-button.black::before {
    border-right: 2px solid rgba(0, 0, 0, 0.9);
    border-bottom: 2px solid rgba(0, 0, 0, 0.9);
}


/* 動画モーダル全体 */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.video-modal.is-open {
    display: flex;
}

/* オーバーレイ（背景） */
.video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.95);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.is-open .video-modal__overlay {
    opacity: 1;
}

.video-modal.is-closing .video-modal__overlay {
    opacity: 0;
}

/* モーダルコンテナ */
.video-modal__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: scale(0.7);
}

@keyframes modalBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.70);
    }

    60% {
        opacity: 1;
        transform: scale(1.03);
    }

    100% {
        opacity: 1;
        transform: scale(1.00);
    }
}

@keyframes modalBounceOut {
    0% {
        opacity: 1;
        transform: scale(1.00);
    }

    100% {
        opacity: 0;
        transform: scale(0.70);
    }
}

/* 開くアニメーション - にゅんっと */
.video-modal.is-open .video-modal__container {
    opacity: 1;
    transform: scale(1);
    animation: modalBounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* 閉じるアニメーション */
.video-modal.is-closing .video-modal__container {
    animation: modalBounceOut 0.3s ease-in forwards;
}

/* 閉じるボタン */
.video-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 10px 20px;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.video-modal__close:hover {
    opacity: 0.7;
}

/* 動画コンテンツエリア */
.video-modal__content {
    width: 100%;
    max-width: 435px;
    aspect-ratio: 9 / 16;
    background-color: #e8e8e8;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 769px) {
    .video-modal__content {
        width: 80%;
    }
}

/* 動画プレイヤー */
.video-modal__player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #000;
}

/* CTAボタン */
.video-modal__cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
    color: #fff;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.video-modal__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* body スクロール防止 */
body.video-modal-open {
    overflow: hidden;
}

/* ===== END Pickup Carousel ===== */

/* ===== Area ===== */
/* ===== Section Title ===== */
.area-contents {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.6vw, 28px);
    padding: clamp(6px, 1vw, 12px) 0 clamp(56px, 6vw, 80px);
}

.area-card {
    position: relative;
    inline-size: 100%;
    border-radius: 10px;
    border-top-right-radius: 48px;
    overflow: hidden;
    background: #e6e6e6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .01);
    isolation: isolate;
    aspect-ratio: 1 / 0.585;
}

@media screen and (max-width: 769px) {
    .area-contents {
        grid-template-columns: repeat(1, 1fr);
    }

    .area-card {
        border-radius: 10px 30px 10px 10px;
    }
}

/* サムネイル全面 */
.area-thumbnail,
.area-thumbnail img {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    object-position: center;
}

.area-thumbnail img {
    filter: saturate(.98) contrast(.98) brightness(.92);
    transition: transform .35s ease, filter .25s ease;
}

/* 暗いグラデのオーバーレイ（前回継承） */
.area-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(0deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .58) 50%,
            rgba(0, 0, 0, .32) 95%);
    pointer-events: none;
}

/* 中央のテキスト & ピル */
.area-info {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
    padding: 0 16px;
}

.area-name {
    margin: 0;
    font-weight: 800;
    letter-spacing: .08em;
    font-size: clamp(18px, 2.6vw, 32px);
    line-height: 1.2;
}

.pref-name {
    display: inline-block;
    padding: 6px 12px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}

/* Hover：軽いズーム */
.area-card:hover .area-thumbnail img {
    transform: scale(1.04);
    filter: saturate(1) contrast(1) brightness(.96);
}

/* 角の丸みの視覚強調 */
/* .area-card {
    border: 1px solid rgba(0, 0, 0, .04);
} */

/* area detail card */
.area-detail__card {
    max-width: 90vw;
    margin: clamp(24px, 5vw, 72px) auto;
    padding-inline: clamp(16px, 2vw, 24px);
    background: #fff;
}

.area-detail__card-container {
    display: flex;
    align-items: center;
    /* 画像と本文を中央揃え（画像の中央と本文の行頭が揃う） */
    gap: clamp(12px, 4vw, 45px);
    padding: 45px;
}

/* thumbnail */
.area-detail__thumbnail {
    flex: 0 0 min(56%, 640px);
    /* PCは画像をやや大きめに */
    width: 100%;
    max-width: 40vw;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    /* 余白除去 */
    border-radius: 24px;
    /* 画像の大きめ角丸 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* text */
.area-detail__content {
    flex: 1;
    min-width: 0;
}

.area-detail__content p {
    margin: 0;
    color: #1f2937;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 2.5;
    /* 行間ゆったり */
    letter-spacing: .03em;
    word-break: break-word;
}

@media screen and (max-width: 769px) {
    .area-detail__card-container {
        flex-direction: column;
        padding: 15px;
    }

    .area-detail__thumbnail {
        flex: none;
        max-width: 70vw;
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 7px;
    }

    .area-detail__card {
        padding-inline: 0;
    }

}

/* ===== END Area ====== */

/* ===== Recomend ryokan ===== */
.p-front-page__mv {
  position: relative;
  overflow: hidden;
  background: #000;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-front-page__mv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: none;
}

@media screen and (max-width: 769px) {
  .p-front-page__mv-bg {
    object-fit: contain;
  }
    
}

.p-front-page__mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.p-front-page__mv-content {
  position: relative;
  z-index: 2;
  /* width: min(70vw, 1050px); */
  width: min(90vw, 1440px);
  height: auto;
  /* aspect-ratio: 16 / 9; */
}

.p-front-page__mv-titleset {
    /* padding: 500px 0 0 0; */
    padding: 40vh 0 0 0;
    text-shadow: 0 3.5px 30px rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: transform .85s ease-out, opacity .85s ease-out, visibility 0s .45s;
}

.p-front-page__mv-titleset.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform .85s ease-out, opacity .85s ease-out, visibility 0s;
}

.p-front-page__mv-titleset h2 {
    font-size: 3.5rem;
}
.p-front-page__mv-titleset p {
    font-size: 1.275rem;
}

.p-front-page__mv-titleset a {
    border-radius: 999px !important;
    background: linear-gradient(#FC9714, #DA620F, #FF722C) !important;
    color: #fff !important;
    padding: 20px 48px !important;
    font-size: 1.0rem !important;
    border: none !important;
}

@media screen and (max-width: 769px) {
    .p-front-page__mv-titleset {
        padding: 65vh 0 0 0;
    }
    .p-front-page__mv-titleset h2 {
        font-size: 1.5rem;
    }
    .p-front-page__mv-titleset p {
        font-size: 1.005rem;
    }
    .p-front-page__mv-titleset a {
        padding: 10px 38px !important;
        font-size: 0.78rem !important;
    }
    
}

.p-front-page__mv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-front-page__mv-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  white-space: nowrap;
  line-height: 1.1;
  pointer-events: none;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
}

/* SP表示 */
.p-front-page__mv-img--pc {
  display: block;
}

.p-front-page__mv-sp {
  display: none;
}

/* SP表示だけ差し替え */
@media (max-width: 769px) {
  .p-front-page__mv-content{
    width:90vw;
    height:auto;
    aspect-ratio:auto;
  }

  .p-front-page__mv-img--pc{ 
    display:none; 
}

  .p-front-page__mv-sp{
    position:absolute;
    inset:0;
    display:block;
  }

  .p-front-page__mv-sp-img{
    position:absolute;
    top:50%;
    left:50%;
    /* width:clamp(220px, 72vw, 360px); */
    width: clamp(110px, 72vw, 185px);
    aspect-ratio:3 / 4.12;
    object-fit:cover;
    transform:translate(-50%, -50%);
  }

  .p-front-page__mv-sp-img--1{
    transform:translate(-40%, -55%) translate(-22vw, -8vh);
    z-index:2;
  }

  .p-front-page__mv-sp-img--2{
    transform:translate(-60%, -55%) translate(22vw, 8vh);
    z-index:1;
  }

  .p-front-page__mv-title{
    font-size:clamp(1.27rem, 4.5vw, 2.2rem);
    z-index:3;
  }
}


.p-front-page__recommend-ryokan {
    position: relative;
    min-height: clamp(460px, 72vh, 1020px);
    color: #fff;
    display: grid;
    /* 下寄せのため */
    align-items: end;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 暗いグラデ・オーバーレイ（左→右） */
.p-front-page__recommend-ryokan::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(0deg,
            rgba(0, 0, 0, .90) 0%,
            rgba(0, 0, 0, .58) 50%,
            rgba(0, 0, 0, .32) 95%);
}

.recommend-ryokan-info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    /* 下寄せ */
    padding: clamp(24px, 10vw, 80px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.recommend-ryokan-titleset {
    max-width: min(520px, 90vw);
}

.recommend-ryokan-name {
    margin: 0 0 .4em;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 56px);
    /* MVより少し大きめ */
    line-height: 1.2;
    letter-spacing: .02em;
}

.recommend-ryokan-description {
    margin: 0 0 1.2em;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.9;
    opacity: .95;
}

/* ボタン：MVと同一 */
.recommend-ryokan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9em 1.4em;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
    transition: transform .12s ease, filter .12s ease;
}

.recommend-ryokan-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* ===== END Recomend ryokan ===== */

/* ===== PURPOSE ===== */
/* Grid */
.purpose-contents {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.6vw, 28px);
    padding: clamp(6px, 1vw, 12px) 0 clamp(56px, 6vw, 80px);
}

@media (max-width: 1024px) {
    .purpose-contents {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .purpose-contents {
        grid-template-columns: 1fr;
    }
}

/* Card */
.purpose-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #e9eaec;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    isolation: isolate;

    /* 読みやすさ調整用（濃さは必要に応じて変更） */
    --ov-bottom: .60;
    /* 下の濃さ */
    --ov-mid: .30;
    /* 中間の濃さ */
    --ov-top: .10;
    /* 上側の残し */
    --ov-stop: 70%;
    /* フェード位置 */
}

/* 比率：画像は横長（16:9相当） */
@supports (aspect-ratio: 1 / 1) {
    .purpose-card {
        aspect-ratio: 16 / 9;
    }
}

@supports not (aspect-ratio: 1 / 1) {
    .purpose-card::after {
        content: "";
        display: block;
        padding-bottom: 56.25%;
    }
}

/* サムネイル */
.purpose-thumbnail,
.purpose-thumbnail img {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    object-position: center;
}

.purpose-thumbnail img {
    filter: saturate(.98) contrast(.98) brightness(.92);
    transition: transform .35s ease, filter .25s ease;
}

/* 暗いグラデーションのオーバーレイ（前パートと同じエッセンス） */
.purpose-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* 全体をうっすら暗く＋下側を強め */
    background:
        linear-gradient(0deg,
            rgba(0, 0, 0, var(--ov-bottom)) 0%,
            rgba(0, 0, 0, var(--ov-mid)) 40%,
            rgba(0, 0, 0, var(--ov-top)) var(--ov-stop),
            rgba(0, 0, 0, 0) 100%);
}

/* テキスト（中央） */
.purpose-info {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.purpose-name {
    margin: 0;
    font-weight: 800;
    letter-spacing: .08em;
    font-size: clamp(16px, 2.2vw, 22px);
    line-height: 1.2;
}

/* Hover エフェクト */
.purpose-card:hover .purpose-thumbnail img {
    transform: scale(1.03);
    filter: saturate(1) contrast(1) brightness(.96);
}

/* 角の丸みの視覚強調（薄い枠） */
.purpose-card {
    border: 1px solid rgba(0, 0, 0, .05);
}

/* END PURPOSE */

/* ===== KEYWORD TAG ===== */

/* タイトル */
.section-title-keyword {
    margin: clamp(24px, 6vw, 64px) 0 14px;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 700;
    color: #1b1d1a;
}

/* タグ群（左寄せ・複数行折返し） */
.keyword-contents {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    /* 行間・列間 */
    padding: 6px 0 clamp(40px, 6vw, 64px);
}

/* タグ（淡いグリーンのピル） */
.keyword-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .35em;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1;
    color: #2b2f28;
    /* やや濃いグレー */
    background: #e6ede2;
    /* 淡いグリーン寄りグレー */
    border: 1px solid #d6decf;
    /* うっすら枠 */
    border-radius: 999px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}

/* “#” はCSSで付与（HTMLはそのまま） */
.keyword-tag::before {
    content: "#";
    opacity: .9;
}

/* ホバー状態（少し持ち上がる） */
.keyword-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
    background: #dde6d7;
}

/* キーボード操作用フォーカス */
.keyword-tag:focus-visible {
    outline: 2px solid #a7c29a;
    outline-offset: 2px;
}

/* モバイルは余白を少し詰める */
@media (max-width: 640px) {
    .keyword-contents {
        gap: 10px 12px;
    }

    .keyword-tag {
        padding: 7px 10px;
        font-size: 12px;
    }
}

/* ===== END KEYWORD TAG ===== */

/* ===== BLOG SECTION ===== */

.p-front-page__blog {
    padding: 30px 0;
}

/* Grid */
.blog-contents {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(18px, 2.6vw, 28px);
    row-gap: clamp(24px, 3vw, 36px);
    padding: clamp(8px, 1.2vw, 16px) 0 clamp(40px, 6vw, 72px);
}

@media (max-width: 1100px) {
    .blog-contents {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-contents {
        grid-template-columns: 1fr;
    }
}

/* Card（箱感は付けず、要素のまとまりだけ整える） */
/* .blog-card{} */

/* Thumbnail（16:9・角丸・薄影） */
.blog-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #eef0f2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.blog-thumbnail a {
    display: block;
}

@supports (aspect-ratio: 16 / 9) {
    .blog-thumbnail {
        aspect-ratio: 16/9;
    }
}

@supports not (aspect-ratio: 16 / 9) {
    .blog-thumbnail::before {
        content: "";
        display: block;
        padding-bottom: 56.25%;
    }
}

.blog-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.blog-thumbnail:hover img {
    transform: scale(1.02);
}

/* ---- テキスト部 ---- */
.blog-post-info {
    padding: 10px 4px 0;
}

/* メタ行（左：カテゴリ／右：日付） */
.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.blog-category-name {
    display: inline-block;
    padding: .42em .7em;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #1b1d1a;
    background: #f1f5ec;
    /* 淡いグリーン */
    border: 1px solid #dfe9d1;
    /* うっすら枠 */
    border-radius: 6px;
}

.blog-post-date {
    font-size: 12px;
    font-weight: 600;
    color: #8a9097;
}

/* タイトル（= 本文抜粋の見た目に寄せる。3行で省略） */
.blog-title {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    color: #4c4f52;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
}

/* ==== 一覧ボタン（中央配置・矢印付き） ==== */
.common-archive-button {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto;
    margin-bottom: clamp(64px, 8vw, 96px); */
    margin: clamp(14px, 8vw, 66px) auto clamp(14px, 8vw, 66px) auto;
    width: fit-content;
    padding: .9em 1.4em;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
    transition: transform .12s ease, filter .12s ease;
}

.common-archive-button::after {
    content: "\2192";
    margin-left: .6em;
}

.common-archive-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}


/* ===== END BLOG SECTION ===== */


/* ===== NEWS ===== */

/* レイアウト：左（見出し＋ボタン）/ 右（一覧） */
.news-list-wrapper {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    column-gap: clamp(28px, 7vw, 88px);
    align-items: start;
    padding: clamp(24px, 6vw, 80px) 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 80vw;
}

/* ---- 左カラム（タイトル） ---- */
.news-list-wrapper .section-title {
    color: #0E0F10;
}

.news-list-wrapper .section-title__en {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9aa0a6;
}

/* .news-list-wrapper .section-title__en::before {
    content: "";
    inline-size: 12px;
    block-size: 16px;
    border-radius: 3px 3px 0 0;
    background: #E06B26;
} */
 .section-title__en::before {
    content: "";
    inline-size: 32px; /* 画像の横幅に合わせて調整 */
    block-size: 32px;  /* 画像の高さに合わせて調整 */
    background: url("/jp/wp-content/themes/ryokanbook/assets/img/common/logo-simple.png") center/contain no-repeat;
    display: inline-block;
}
 /* .news-list-wrapper .section-title__en::before {
    content: "";
    inline-size: 32px;
    block-size: 32px;
    background: url("/wp-content/themes/ryokanbook/assets/img/common/logo-simple.png") center/contain no-repeat;
    display: inline-block;
} */
/* ../../assets/img/common/logo-simple.png */

.news-list-wrapper .section-title__ja {
    margin: .5em 0 .9em;
    font-size: clamp(28px, 4.4vw, 56px);
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.2;
}

/* 一覧ボタン（白地＋枠、→付き） */
.news-list-button {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    padding: 14px 18px;
    border-radius: 12px;
    background: #fff !important;
    /* 他のユーティリティより優先 */
    color: #1b1d1a !important;
    border: 1px solid rgba(0, 0, 0, .14);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
    text-decoration: none;
    transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.news-list-button::after {
    content: "\2192";
}

/* → */
.news-list-button:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, .22);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

/* ---- 右カラム（一覧） ---- */
.news-list-contents {
    width: 100%;
}

/* 行（カード）: 左に横長サムネ、右に日付＋タイトル。行間に薄い区切り線 */
.news-list-card {
    --thumb-w: clamp(240px, 30vw, 360px);
    display: grid;
    grid-template-columns: var(--thumb-w) 1fr;
    column-gap: clamp(16px, 3vw, 28px);
    align-items: center;
    padding: clamp(14px, 2vw, 22px) 0;
}

.news-list-card+.news-list-card {
    border-top: 1px solid rgba(0, 0, 0, .08);
}

/* サムネイル：強め角丸・うっすら影・横長比率 */
.news-list-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #eef0f2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

@supports (aspect-ratio: 16 / 7) {
    .news-list-thumbnail {
        aspect-ratio: 16/7;
    }
}

@supports not (aspect-ratio: 16 / 7) {
    .news-list-thumbnail::before {
        content: "";
        display: block;
        padding-bottom: 43.75%;
    }
}

.news-list-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 右側のテキスト */
.news-list-post-info {
    display: block;
}

.news-list-post-date {
    display: block;
    margin-bottom: .6em;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #8a9097;
}

.news-list-title {
    margin: 0;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 800;
    line-height: 1.5;
    color: #0E0F10;
    /* 1行～2行で切る（はみ出し防止） */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* ---- レスポンシブ ---- */
@media (max-width: 980px) {
    .news-list-wrapper {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .news-list-card {
        grid-template-columns: 1fr;
        row-gap: 12px;
        align-items: start;
    }

    .news-list-card+.news-list-card {
        border-top: 1px solid rgba(0, 0, 0, .08);
    }
}

/* ===== END NEWS ===== */

/* ===== SOCIAL LINKS ===== */
/* --- Grid layout --- */
.social-links-contents {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3.2vw, 36px);
    padding: clamp(20px, 4vw, 48px) clamp(12px, 1.5vw, 16px);
    border-radius: 12px;
}

/* --- Card --- */
.social-links-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: clamp(150px, 28vh, 210px);
    padding: clamp(18px, 3.4vw, 36px);
    background: #fff;
    /* 右上だけ大きく丸める */
    border-radius: 18px 48px 18px 18px;
    border: 1px solid rgba(0, 0, 0, .06);
}

/* 上段：アイコン＋サービス名（左右に離して配置） */
.social-links-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: clamp(14px, 2.2vw, 28px);
    color: #161616;
    /* デフォは黒文字 */
}

.social-links-container.bg-dark {
    color: #fff;
}

.social-links-container.bg-color-brand {
    background: var(--color-brand);
}

.social-links-icon {
    display: grid;
    place-items: center;
    /* inline-size: clamp(28px, 4.6vw, 54px);
  block-size: clamp(48px, 4.6vw, 54px); */
    /* max-height:100px; */
}

.social-links-icon img {
    /* height:100%; */
    height: 30px;
    /* max-height:100%; */
    display: block;
}

.social-links-service-name {
    margin-left: auto;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    font-size: 0.5em;
    letter-spacing: .02em;
}

/* 下段：大CTAボタン（カード幅いっぱい、角丸強め） */
.social-links-button-container {
    margin-top: clamp(16px, 2.6vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8em;
    padding: clamp(12px, 1.6vw, 18px) clamp(16px, 2vw, 22px);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background: #1f1f1f;
    /* デフォは黒 */
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12) inset,
        0 6px 18px rgba(0, 0, 0, .10);
    transition: transform .12s ease, filter .12s ease;
}

.social-links-button-container:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.social-links-button-container.bg-color-brand {
    background: var(--color-brand);
}

/* ボタンのラベル & 右矢印 */
.social-links-button {
    font-weight: 800;
    letter-spacing: .16em;
    font-size: clamp(12px, 1.3vw, 16px);
}

.social-links-right-arrow-icon {
    position: relative;
    inline-size: 22px;
    block-size: 22px;
}

/* 矢印（アイコンが無い場合のCSS描画） */
.social-links-right-arrow-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    inline-size: 12px;
    block-size: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .social-links-contents {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 769px) {
    .social-links-contents {
        grid-template-columns: 1fr;
    }

    .social-links-card {
        min-height: 120px;
        border-radius: 10px 30px 10px 10px;
    }
}

/* ===== END SOCIAL LINKS ===== */


/* ===== FOOTER ===== */
/* =========================
   Footer (match provided HTML)
   ========================= */
.l-footer {
    color: #fff;
    font-feature-settings: "palt";
}

.l-footer a {
    color: #fff;
    text-decoration: none;
}

.l-footer .wrapper {
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer (PC & SP 共通) ===== */
.l-footer.bg-dark {
    background: var(--color-dark, #0a0a0a);
    color: #fff;
}

.l-footer .wrapper {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 40px 0 56px;
}

.footer__logo {
    display: flex;
    justify-content: center;
    /* 横中央 */
    margin: 0 0 24px;
    /* 既存 */
}

.footer__logo img {
    max-height: 36px;
    display: block;
}

.footer-nav-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 36px;
    padding: 36px 0;
}

.footer-nav-row:not(:last-child) {
    border-bottom: 1px solid #5c5c5c;
}

/* カラムと見出しリンク */
.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-column>a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.25;
    font-size: 28px;
}

.footer-nav-column>a+a {
    margin-top: 28px;
}

/* お知らせ / お問合せの間隔 */

/* サブリンク（横並び＋縦線セパレータ） */
.footer-nav-column ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-column ul li {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.footer-nav-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: inherit;
}

.footer-nav-column ul li:not(:first-child) {
    position: relative;
    padding-left: 22px;
    margin-left: 22px;
}

.footer-nav-column ul li:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0.95em;
    background: #868686;
    transform: translateY(-50%);
}

/* コピーライト */
.footer__copyright {
    margin-top: 40px;
    text-align: center;
    color: #bdbdbd;
    font-size: 14px;
}

.footer__legal-links {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 10px;
}
.footer__legal-links a {
    color: #bdbdbd;
    text-decoration: none;
}

@media (max-width:769px) {

    .l-footer {
        background: var(--color-dark, #111);
        color: #fff;
    }

    .l-footer .wrapper {
        width: 92vw;
        margin: 0 auto;
        padding: 40px 0 20px;
    }

    /* ロゴ */
    .footer__logo {
        margin: 8px 0 12px;
    }

    .footer__logo img {
        height: 28px;
        width: auto;
        display: block;
    }

    /* ナビ全体 */
    .footer-nav__content {
        margin-top: 4px;
    }

    /* 行：太めの下線＆広めの上下余白 */
    .footer-nav-row {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: clamp(28px, 8vw, 48px) 0;
        border-bottom: 1px solid #5c5c5c;
    }

    .footer-nav-row:last-child {
        border-bottom: none;
    }

    /* 見出しリンク（大） */
    .footer-nav-column {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer-nav-column>a {
        display: block;
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        font-size: clamp(22px, 7vw, 32px);
        letter-spacing: .02em;
    }

    /* 同一カラムで見出しが複数ある場合（お知らせ／お問合せ） */
    .footer-nav-column>a+a {
        margin-top: 10px;
    }

    /* サブリンク：横並び＋「｜」区切り */
    .footer-nav-column ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        row-gap: clamp(14px, 4vw, 20px);
    }

    .footer-nav-column ul li {
        margin: 0;
        display: flex;
        align-items: center;
        font-size: clamp(13px, 3.8vw, 18px);
    }

    .footer-nav-column ul li a {
        color: #fff;
        text-decoration: none;
        font-size: inherit;
    }

    .footer-nav-column ul li:not(:first-child) {
        position: relative;
        padding-left: clamp(14px, 4vw, 22px);
        margin-left: clamp(14px, 4vw, 22px);
    }

    .footer-nav-column ul li:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 1px;
        height: 0.95em;
        background: #868686;
        transform: translateY(-50%);
    }

    /* コピーライト */
    .footer__copyright {
        /* margin: clamp(32px, 10vw, 56px) 0 0; */
        /* padding-top: clamp(16px, 4vw, 20px); */
        /* border-top: 1px solid #5c5c5c; */
        /* text-align: left; */
        margin-top: 16px;
    }

    .footer__legal-links {
        flex-direction: column;
        align-items: start;
        gap: 12px;

    }
}


/* ===== END FOOTER ===== */

/* ===== グローバルカルーセル ===== */
/* カルーセルコンテナ */
.global-ryokan-card-container {
    /* max-width: 1400px; */
    margin: 80px auto;
    padding: 0 20px;
    position: relative;
}

/* カルーセル本体 */
.global-ryokan-card-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 5px 0 30px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.global-ryokan-card-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* カードアイテム */
.global-ryokan-card-item {
    flex: 0 0 auto;
    width: 600px;
    height: 350px;
    position: relative;
    border-radius: 10px;
    border-top-right-radius: 48px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 769px) {
    .global-ryokan-card-item {
        width: 80vw;
        height: 30vh;
    }
}

.global-ryokan-card-item:hover {
    transform: translateY(-5px);
}

/* サムネイル画像 */
.global-ryokan-card__thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.global-ryokan-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 暗いオーバーレイ */
.global-ryokan-card__thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* タイトルセット */
.global-ryokant-card__titleset {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 35px;
    z-index: 2;
    color: #fff;
}

/* タイトルラッパー */
.global-ryokan-card__title-wrapper {
    margin-bottom: 15px;
}

/* タイトル */
.global-ryokan-card__title {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

/* エリア情報 */
.global-ryokant-card__area-info {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* タグリスト */
.global-ryokan-card__tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* タグアイテム */
.global-ryokan-card__tag-item {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}

/* ナビゲーション */
.global-ryokant-card-carousel-nav {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.global-ryokan-card-carousel-nav__prev,
.global-ryokan-card-carousel-nav__next {
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #333;
}

.global-ryokan-card-carousel-nav__prev:hover,
.global-ryokan-card-carousel-nav__next:hover {
    background-color: #333;
    color: #fff;
}

.global-ryokan-card-carousel-nav__prev:disabled,
.global-ryokan-card-carousel-nav__next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===== END ===== */

.vk_balloon {
    background-color: transparent !important;
    border: 1px solid #000000;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 左配置 */
.vk_balloon-position-left {
    flex-direction: row;
}

/* 右配置（必要に応じて） */
.vk_balloon-position-right {
    flex-direction: row-reverse;
}

/* アイコン部分 */
.vk_balloon_icon {
    flex-shrink: 0;
}

.vk_balloon_icon figure {
    margin: 0;
    text-align: center;
}

.vk_balloon_icon_image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 8px;
}

.vk_balloon_icon_name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: block;
}

/* コンテンツ部分 */
.vk_balloon_content_outer {
    flex: 1;
    min-width: 0;
}

.vk_balloon_content {
    position: relative;
    background: transparent !important;
}

/* 吹き出しの矢印を非表示（カード型デザインのため） */
.vk_balloon_content_before,
.vk_balloon_content_after {
    display: none !important;
}

.vk_balloon_content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 769px) {

    .vk_balloon {
        padding: 11px;
        margin: 0;
        display: flex;
        gap: 0;
        align-items: flex-start;
    }

    .vk_balloon_content p {
        font-size: 10px;
    }

    .vk_balloon_icon_image {
        width: 60px;
        height: 60px;
    }

    .vk_balloon_icon_name {
        font-size: 14px;
        font-weight: bold;
        color: #333;
        display: block;
    }

    .vk_balloon.vk_balloon-position-left.vk_balloon-type-speech .vk_balloon_icon {
        margin-right: 0;
        margin-top: 10px;
    }

}

.vk_balloon_content p:last-child {
    margin-bottom: 0;
}

/* アニメーション設定を無効化 */
.vk_balloon-animation-none {
    animation: none;
}

.p-single-spot__content .wp-block-liquid-speech-balloon {
    padding: 30px 10px !important;
}

/* ページネーション */
.p-news__pagination {
  padding: 24px 0;
  text-align: center;
}

.cm-nav-paginate {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cm-nav-paginate__page > a,
.cm-nav-paginate__page > span,
.cm-nav-paginate__ctrl > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid #e2e6ef;
  background: #fff;
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
}

.cm-nav-paginate__ctrl a svg {
  width: 20px;
  height: 20px;
}
.cm-nav-paginate__page > a:hover,
.cm-nav-paginate__ctrl > a:not(.is-disabled):hover {
  border-color: #d0d5e5;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.cm-nav-paginate__page.is-current > span,
.cm-nav-paginate__page.is-current > a {
  background: var(--color-brand);
  border-color: #e5453a;
  color: #fff;
  cursor: default;
}

.cm-nav-paginate a.is-disabled {
  color: #c4cad8;
  border-color: #e2e6ef;
  background: #fff;
  pointer-events: none;
}

.cm-nav-paginate a.is-disabled svg {
  opacity: 0.5;
}

@media screen and (max-width: 769px) {
  .p-news__pagination {
    padding: 12px 0;
  }

  .cm-nav-paginate__page > a,
    .cm-nav-paginate__page > span,
    .cm-nav-paginate__ctrl > a {
        border-radius: 6px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}