/* リセット */
:where(html, body) {
    margin: 0;
    padding: 0;
}

/* 
グローバル
*/
: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: 100%;
  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;
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
} */

.area-access-title {
    padding: 40px; /* テキストの余白を調整 */
    color: white;
    z-index: 2; /* 背景画像の上に表示 */
}

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

/* タイトルセクション */
.area-access-title {
  /* position: relative; */
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 18px 0 24px 0;
  padding: 5px 20px;

}

/* 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%);
}
.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);
}

/* 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;
}

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

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

/* ===== パンくず ===== */
/* パンくずリスト */
.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;
}
/* ===== 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;
}

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

.l-header-nav__nav li:nth-child(4) .l-header-nav__link::before,
.l-header-nav__nav li:nth-child(4) .l-header-nav__link::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.l-header-nav__nav li:nth-child(4) .l-header-nav__link::before {
    top: 12px;
    box-shadow: 0 8px 0 0 currentColor;
}

.l-header-nav__nav li:nth-child(4) .l-header-nav__link::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;
    }
}

/* =========================
   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;
}

/* カード内サムネイル敷き詰め */
.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-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;
}

/* 動画プレイヤー */
.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;
}

/* サムネイル全面 */
.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%;
  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;
}

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

/* ===== Recomend Hotel ===== */
.p-front-page__recommend-hotel {
    position: relative;
    min-height: clamp(460px, 72vh, 820px);
    color: #fff;
    display: grid;
    /* 下寄せのため */
    align-items: end;
    background: url("http://ryokanbook.local/wp-content/themes/ryokanbook/assets/img/dev/AdobeStock_633384822_Preview.png") center/cover no-repeat;
    overflow: hidden;
}

/* 暗いグラデ・オーバーレイ（左→右） */
.p-front-page__recommend-hotel::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-hotel-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-hotel-titleset {
    max-width: min(520px, 90vw);
}

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

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

/* ボタン：MVと同一 */
.recommend-hotel-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-hotel-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* ===== END Recomend Hotel ===== */

/* ===== 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 ===== */

/* 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;
}

/* ==== 一覧ボタン（中央配置・矢印付き） ==== */
.blog-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(64px, 8vw, 96px);
    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;
}

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

.blog-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;
    /* ブックマーク風の小さな橙色 */
}

.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: 620px){
  .social-links-contents{ grid-template-columns: 1fr; }
  .social-links-card{ min-height: 150px; }
}

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


/* ===== FOOTER ===== */
/* =========================
   Footer (match provided HTML)
   ========================= */
.l-footer {
  color: #fff;
  font-feature-settings: "palt";
}
.l-footer .wrapper {
    max-width: 70vw;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Top NAV ---------- */
.footer__nav {
  padding: 72px 0 40px;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.footer__nav-item {
  text-align: center;
}
.footer__nav-item > a {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  text-decoration: none;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.footer__sub-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  justify-content: center;
}
.footer__sub-nav-item a {
  display: inline-block;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: #cfcfcf;
  text-decoration: none;
}
.footer__nav-item a:hover,
.footer__sub-nav-item a:hover {
  opacity: .8;
}

/* thin divider between nav and bottom area */
.footer__other {
  border-top: 1px solid rgba(255,255,255,.16);
  padding: 36px 0 60px;
  text-align: center;
}

/* logo */
.footer__logo {
  margin: 0 0 22px;
}
.footer__logo a { display: inline-block; }
.footer__logo img {
  height: clamp(36px, 5.2vw, 60px);
  width: auto;
  vertical-align: middle;
  filter: none; /* 画像は白ロゴ想定 */
}

/* legal links */
.footer__legal-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: inline-flex;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__legal-item a {
  color: #cfcfcf;
  font-size: clamp(12px, 1.1vw, 16px);
  text-decoration: none;
}
.footer__legal-item a:hover { opacity: .85; }

/* copyright */
.footer__copyright {
  margin: 0;
  color: #b5b5b5;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: .02em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__nav-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .footer__nav { padding: 48px 0 28px; }
  .footer__nav-list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__nav-item > a { margin-bottom: 10px; }
  .footer__other { padding: 28px 0 44px; }
}
@media (max-width: 420px) {
  .footer__nav-list { grid-template-columns: 1fr 1fr; }
  .footer__legal-list { gap: 14px; }
}

/* ===== 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;
}

.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 ===== */