@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Quicksand:wght@500;600;700&family=Caveat:wght@600;700&display=swap");

/* ==========================================================================
   guest house Holoholo ｜ デザイン共通スタイル
   テーマ：石垣島 × ゆんたく × ねこ。白背景・足あとの小道・手描きの温度感
   配色：海の青／水色／木の茶／白（差し色：やわらかい黄・テラコッタ）
========================================================================== */

:root {
  --sea: #186fa4;
  --sea-d: #135c88;
  --sea-dd: #0d466a;
  --sky: #609bc7;
  --sky-soft: #dde9f4;
  --sky-bg: #cfe7f4;
  --cream: #f8f4e9;
  --cream-d: #efe7d4;
  --paper: #fff;
  --beige: #f9f6f0;
  --wood: #7a5648;
  --wood-d: #4f3936;
  --terra: #186fa4;
  --terra-d: #135c88;
  --yellow: #f4d35e;
  --yellow-mk: #bfe0f3;
  --ink: #4f3936;
  --ink-soft: #897a70;
  --line: #e7ded0;
  --shadow: 0 22px 46px -26px rgba(31, 83, 101, 0.36);
  --shadow-sm: 0 12px 26px -18px rgba(31, 83, 101, 0.4);
  --radius: 20px;
  --radius-lg: 32px;
  --maxw: 1300px;
  /* 右下/下部固定の宿泊・暮らすボタン（.floating-cta）の高さ目安。フッター下部余白の計算に使用（実測値に応じて要調整） */
  --floating-cta-h: 200px;
  /* 和文＝丸ゴシック（明朝は不使用）／欧文＝Quicksandで全面統一 */
  --ff-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --ff-body: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --ff-en: "Quicksand", "Zen Maru Gothic", "Hiragino Maru Gothic ProN",
    sans-serif;
  --ff-hand: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --ff-marker: "Quicksand", "Zen Maru Gothic", "Hiragino Maru Gothic ProN",
    sans-serif;
  --ff-script: "Caveat", "Zen Maru Gothic", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--beige);
  color: var(--ink);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  /* SP：自動改行（<br>のない箇所）の折り返し位置を意味の区切りで自然に */
  body {
    word-break: auto-phrase;
    overflow-wrap: anywhere;
  }
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3 {
  font-family: var(--ff-round);
  font-weight: 700;
  line-height: 1.5;
  color: var(--wood-d);
}

p {
  margin-bottom: 0.4em;
}

strong {
  font-weight: 700;
}

/* 黄色マーカー風ハイライト */
.u-marker {
  background: linear-gradient(transparent 58%, var(--yellow-mk) 58%);
  padding: 0 0.12em;
  border-radius: 2px;
}

/* 足あとの小道（区切り） */
/* .ashiato {
   height: clamp(120px, 12vw, 170px);
   max-width: 920px;
   margin: 10px auto;
   background: url("images/ashiato02.svg") center/contain no-repeat;
} */

.ashiato--sm {
  height: 62px;
  max-width: 420px;
}

/* 全幅の白背景（ベージュ地と波型で切り替え） */
section.sect--white {
  position: relative;
  padding-block: clamp(80px, 9vw, 120px);
}

.sect--white::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 0 L1440 0 L1440 40 C1080 96 960 -8 600 26 C360 48 200 84 0 44 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      top center/100% 70px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 80 L1440 80 L1440 38 C1080 -16 960 88 600 54 C360 32 200 -4 0 36 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      bottom center/100% 70px no-repeat,
    #fff;
}

/* 複数セクションをまとめて1枚の白背景に（上下に波型区切り） */
.sect--white-group {
  position: relative;
}

.sect--white-group::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 0 L1440 0 L1440 40 C1080 96 960 -8 600 26 C360 48 200 84 0 44 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      top center/100% 70px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 80 L1440 80 L1440 38 C1080 -16 960 88 600 54 C360 32 200 -4 0 36 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      bottom center/100% 70px no-repeat,
    #fff;
}

/* 波型の水色帯（全幅・上下に波） */
section.sect-band {
  position: relative;
  padding-block: clamp(80px, 9vw, 120px);
}

.sect-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 0 L1440 0 L1440 40 C1080 96 960 -8 600 26 C360 48 200 84 0 44 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      top center/100% 70px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 80 L1440 80 L1440 38 C1080 -16 960 88 600 54 C360 32 200 -4 0 36 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      bottom center/100% 70px no-repeat,
    var(--sky-bg);
}

/* ねこ装飾の汎用 */
.deco-neko {
  display: block;
}

/* ==========================================================================
   レイアウト基本
========================================================================== */
section[class^="p-"] {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 120px) clamp(20px, 5vw, 52px);
  background: transparent;
  position: relative;
}

.l-page {
  max-width: none;
  padding-top: clamp(92px, 10vw, 124px);
}

.l-page > section {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* セクションラベル（EN） */
[class$="__label"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
  border: none;
  padding: 0;
}

[class$="__label"]::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
}

section[class^="p-"] > h2 {
  font-size: clamp(22px, 3vw, 31px);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

section[class^="p-"] > h2 + p,
.p-page-head__lead {
  color: var(--ink-soft);
}

/* ==========================================================================
   ボタン（角丸ピル）
========================================================================== */
a[class$="__btn"],
a[class$="__cta"],
a[class*="__btn--"],
button[class$="__btn"],
.p-page-cta__btn,
.p-booking__btn,
.p-cs-booking__btn,
.p-detail-sns__link,
.p-sns__item-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  border-radius: 999px;
  background: var(--sky);
  border: none;
  color: #fff;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: 0.25s;
  cursor: pointer;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

a[class$="__btn"]:hover,
a[class$="__cta"]:hover,
a[class*="__btn--"]:hover,
button[class$="__btn"]:hover,
.p-booking__btn:hover,
.p-cs-booking__btn:hover {
  transform: translateY(-2px);
  background: #4f8cbb;
}

a[class$="--primary"],
button[type="submit"] {
  background: var(--sea);
  border: none;
  color: #fff;
}

a[class$="--primary"]:hover {
  background: var(--sea-d);
}

/* ==========================================================================
   ヘッダー
========================================================================== */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border: none;
  max-width: none;
  margin: 0;
  padding: 0;
}

.l-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 52px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-template-rows: auto auto;
  gap: 8px 24px;
}

.l-header__logo {
  grid-row: 1;
  grid-column: 1;
  font-size: 21px;
}

.l-header__logo a {
  font-family: var(--ff-en);
  font-weight: 700;
  color: var(--sea-d);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}

.l-header__logo a::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--sea);
  font-size: 20px;
  line-height: 1;
}

.l-header__utility {
  grid-row: 1;
  grid-column: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.l-header__lang {
  font-size: 11px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--cream);
}

.l-header__tel {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  color: var(--sea-d);
  display: inline-flex;
  align-items: center;
}

.l-header__cta {
  background: var(--terra);
  color: #fff;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 16px;
  font-family: var(--ff-round);
  font-weight: 700;
  transition: 0.25s;
  box-shadow: 0 8px 18px -8px rgba(24, 111, 164, 0.6);
  display: inline-flex;
  align-items: center;
}

.l-header__cta::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 7px;
  font-size: 16px;
}

.l-header__cta:hover {
  background: var(--terra-d);
  transform: translateY(-1px);
}

.l-header__nav {
  grid-row: 2;
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.l-header__nav-list {
  display: flex;
  gap: clamp(14px, 3vw, 40px);
  justify-content: center;
  flex-wrap: wrap;
}

.l-header__nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 4px 2px;
  position: relative;
}

.l-header__nav-en {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  color: var(--sea-d);
}

.l-header__nav-jp {
  font-size: 10.5px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.l-header__nav-list a::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2.5px;
  background: var(--terra);
  border-radius: 2px;
  transition: 0.25s;
}

.l-header__nav-list a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ==========================================================================
   FV / Hero（TOP）— 左：白地テキスト＋手描き要素／右：ちぎれた縁の写真
========================================================================== */
.p-hero {
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(96px, 10vw, 128px) 0 clamp(48px, 6vw, 80px) !important;
  position: relative;
  overflow: hidden;
  background-color: var(--sky-bg) !important;
}

.p-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(540px, 70vw, 960px);
  z-index: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 460' preserveAspectRatio='none'%3E%3Cpath d='M0 460 L1440 460 L1440 330 C1110 408 980 150 640 168 C380 182 240 36 0 96 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
    bottom center/100% 100% no-repeat;
}

.p-hero__fv-label,
.p-hero__fv-text,
.p-hero__fv-note {
  display: none;
}

.p-fv {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: clamp(28px, 4vw, 60px); */
  align-items: center;
  min-height: min(82vh, 700px);
  position: relative;
  background: transparent;
  z-index: 2;
}

/* FV背景：ashiato03（足跡トレイル）を斜めに薄く */
.p-fv::before {
  content: "";
  position: absolute;
  left: auto;
  right: 2%;
  bottom: -3%;
  width: min(58%, 760px);
  height: clamp(230px, 32vw, 470px);
  background: url("images/ashiato03.svg") right bottom/contain no-repeat;
  z-index: 1;
  pointer-events: none;
}

.p-fv__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 0;
  z-index: 2;
}

/* 歩く猫＋肉球の散らし */
.p-fv__deco-cat {
  position: relative;
  height: 160px;
  margin: -12px 0 14px;
}

.p-fv__deco-cat img {
  width: 155px;
  height: auto;
}

.p-hero__sub {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--ink);
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 8px;
}

.p-hero__sub::before,
.p-hero__sub::after {
  content: none;
}

.p-hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 2px 0 26px;
  line-height: 1;
}

.p-hero__title-eyebrow {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 21px);
  letter-spacing: 0.4em;
  color: var(--ink);
  margin-bottom: 4px;
  padding-left: 0.45em;
}

.p-hero__title-main {
  font-family: var(--ff-script);
  font-weight: 700;
  font-size: clamp(74px, 11vw, 140px);
  color: var(--wood-d);
  line-height: 0.82;
  position: relative;
  padding-bottom: 34px;
  letter-spacing: 0.01em;
}

/* Holoholo下線：line.svg（手描き波線） */
.p-hero__title-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: clamp(16px, 1.8vw, 26px);
  background: url("images/line2.svg") center/100% 100% no-repeat;
}

.p-hero__lead {
  font-size: 16px;
  color: var(--ink);
  line-height: 2.05;
  margin-bottom: 32px;
  font-weight: 500;
}

.p-hero__cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

a.p-hero__cta,
.p-hero a.p-hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: 212px;
  height: auto;
  padding: 34px 30px 18px;
  border: 2px solid var(--sea);
  border-radius: 20px;
  background: #fff;
  color: var(--sea-d);
  box-shadow: none;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  transition: 0.22s;
}

a.p-hero__cta::before {
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--sea);
  line-height: 1;
}

a.p-hero__cta::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
}

a.p-hero__cta--primary,
.p-hero a.p-hero__cta--primary {
  background: var(--sea);
  border-color: var(--sea);
  color: #fff;
}

a.p-hero__cta--primary::before {
  content: "Guest House";
  color: rgba(255, 255, 255, 0.92);
}

a.p-hero__cta:not(.p-hero__cta--primary) {
  background: var(--sky);
  border-color: var(--sky);
  color: #fff;
}

a.p-hero__cta:not(.p-hero__cta--primary)::before {
  content: "Share House";
  color: rgba(255, 255, 255, 0.92);
}

a.p-hero__cta:hover {
  transform: translateY(-2px);
}

a.p-hero__cta--primary:hover {
  background: var(--sea-d);
  border-color: var(--sea-d);
}

a.p-hero__cta:not(.p-hero__cta--primary):hover {
  background: #4f8cbb;
  border-color: #4f8cbb;
}

.p-hero__notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--sea-d);
  box-shadow: none;
  padding: 0;
  transform: none;
  align-self: flex-start;
  background: none;
}

.p-hero__notice::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  flex: 0 0 auto;
  color: var(--sea);
  font-size: 16px;
  line-height: 1;
}

.p-fv__botanical {
  position: absolute;
  left: clamp(8px, 2.5vw, 40px);
  bottom: 18px;
  width: clamp(52px, 6vw, 84px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}

/* 右：ちぎれた縁の写真 */
.p-fv__photo {
  position: relative;
  margin: 0;
  height: clamp(440px, 64vh, 600px);
  background: transparent;
}

/* .p-fv__photo::before {
   content: "";
   position: absolute;
   top: -20px;
   right: -26px;
   width: 88%;
   height: 82%;
   z-index: 0;
   background: url("images/ashirai02.svg") center/100% 100% no-repeat;
} */

.p-fv__photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 76%;
  object-fit: cover;
  -webkit-clip-path: url(#fvClip1);
  clip-path: url(#fvClip1);
  z-index: 1;
}

.p-fv__photo-sub {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 46%;
  object-fit: cover;
  -webkit-clip-path: url(#fvClip2);
  clip-path: url(#fvClip2);
  z-index: 2;
}

@media (max-width: 920px) {
  .p-fv {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .p-fv__photo {
    order: -1;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .p-fv__photo-main {
    position: static;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    -webkit-clip-path: url(#fvClip1);
    clip-path: url(#fvClip1);
  }

  .p-fv__photo-sub {
    position: absolute;
    left: -10px;
    bottom: -18px;
    width: 34%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    -webkit-clip-path: url(#fvClip2);
    clip-path: url(#fvClip2);
  }

  .p-fv__text {
    padding-top: 38px;
    padding-bottom: 44px;
    align-items: flex-start;
    position: relative;
  }

  .p-fv__botanical {
    display: none;
  }

  /* SP：猫イラストを右側（キラキラのあった位置）へ移動し、テキストの流れから外す。
     「直接予約が一番おトクです」との重なりはこれで解消される。 */
  .p-fv__deco-cat {
    position: absolute;
    top: -100px;
    right: 6px;
    left: auto;
    height: auto;
    margin: 0;
    z-index: 2;
  }

  .p-fv__deco-cat img {
    width: auto;
    height: 90px;
    max-width: none;
  }

  /* キラキラは猫の上・写真の下端に重なるよう、さらに上へ移動して最前面に */
  .p-hero__stars {
    top: -128px;
    right: -10px;
    width: 64px;
    height: 90px;
    z-index: 3;
  }
}

@media (max-width: 920px) {
  /* SP：.p-hero::before（nekoN03、右下の猫＋毛糸）は
     notice テキストと重なるため非表示にする */
  .p-hero::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .p-hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  a.p-hero__cta,
  .p-hero a.p-hero__cta {
    width: 100%;
  }

  .p-fv__deco-cat::after {
    width: 150px;
  }
}

/* ==========================================================================
   汎用：写真フレーム
========================================================================== */
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   空室情報
========================================================================== */
.p-vacancy__box {
  position: relative;
  border: 2px dashed var(--sky);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 38px) clamp(20px, 3vw, 42px);
  background: #fff;
}

.p-vacancy__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 14px;
}

.p-vacancy__label {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--sky);
  margin-bottom: 2px;
}

.p-vacancy__box h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 0;
}

.p-vacancy__deco {
  display: none;
}

.p-vacancy__list {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-vacancy__item {
  border: none;
  border-top: 1px solid var(--line);
}

.p-vacancy__link {
  display: grid;
  grid-template-columns: 150px 1.5fr 1.15fr auto;
  align-items: center;
  gap: 18px;
  padding: 17px 6px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  transition: 0.2s;
}

.p-vacancy__link:hover {
  transform: none;
  background: rgba(96, 155, 199, 0.07);
}

.p-vacancy__date {
  font-family: var(--ff-en);
  font-size: 16px;
  color: var(--sky);
  letter-spacing: 0.06em;
  font-weight: 600;
}

.p-vacancy__facility {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.p-vacancy__status {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 500;
  background: none;
  border-radius: 0;
  padding: 0;
  display: inline;
}

.p-vacancy__more {
  font-size: 16px;
  color: var(--sky);
  font-weight: 600;
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .p-vacancy__link {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 15px 4px;
  }

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

  .p-vacancy__deco {
    display: none;
  }
}

/* ==========================================================================
   About — 散りばめ写真コラージュ
========================================================================== */
.p-about {
  overflow: visible;
}

.p-about::after {
  content: "";
  position: absolute;
  left: -3%;
  bottom: -1%;
  width: min(61%, 740px);
  height: clamp(80px, 11vw, 320px);
  background: url("images/ashiato02.svg") left center/contain no-repeat;
  z-index: 0;
  pointer-events: none;
  transform: rotate(6deg);
}

.p-about__grid {
  position: relative;
  z-index: 1;
}

.p-about .u-marker {
  background: linear-gradient(transparent 58%, rgba(247, 214, 110, 0.6) 58%);
  border-radius: 0;
  padding: 0 0.08em;
}

.p-about__label {
  position: relative;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.24em;
  color: var(--sky);
  padding-left: 46px;
  margin-bottom: 14px;
}

.p-about__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--sky);
}

.p-about__title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: var(--wood-d);
  margin: 0 0 22px;
}

.p-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 4vw, 60px) clamp(36px, 5vw, 70px);
  align-items: center;
}

.p-about__text {
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  margin: 0;
}

.p-about__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: stretch;
}

.p-about__ph {
  position: relative;
  margin: 0;
}

.p-about__ph img {
  width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow);
}

.p-about__pair .p-about__ph {
  height: 100%;
}

.p-about__pair .p-about__ph img {
  height: 100%;
  min-height: clamp(200px, 22vw, 260px);
}

.p-about__ph--a img {
  border-radius: 44px 16px 40px 16px;
}

.p-about__ph--b img {
  border-radius: 16px 44px 16px 40px;
}

.p-about__ph--c img {
  height: clamp(230px, 25vw, 310px);
  border-radius: 50px 16px 48px 16px;
}

.p-about__ph--d img {
  height: clamp(230px, 25vw, 310px);
  border-radius: 16px 50px 16px 48px;
}

.p-about__ph--a::before,
.p-about__ph--c::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 22px;
  width: 78px;
  height: 22px;
  background: rgba(214, 193, 150, 0.55);
  transform: rotate(-5deg);
  z-index: 2;
  border-radius: 2px;
}

.p-about__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 46px);
  margin-top: clamp(54px, 6vw, 90px);
  position: relative;
  z-index: 1;
}

.p-about__point {
  position: relative;
  text-align: left;
}

.p-about__point-num {
  display: block;
  width: clamp(76px, 8vw, 94px);
  margin-bottom: 12px;
}

.p-about__point-num img {
  width: 100%;
  display: block;
}

.p-about__point-title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 8px;
}

.p-about__point-text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}

.p-about__point-photo {
  margin: 0;
  width: 100%;
}

.p-about__point-photo img {
  width: 100%;
  height: clamp(180px, 17vw, 220px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  display: block;
}

@media (max-width: 820px) {
  .p-about__grid {
    grid-template-columns: 1fr;
  }

  .p-about__points {
    grid-template-columns: 1fr;
  }

  .p-about__points::before {
    display: none;
  }
}

/* ==========================================================================
   Intro
========================================================================== */
.p-intro .u-marker,
.p-recommend .u-marker {
  background: linear-gradient(transparent 58%, rgba(247, 214, 110, 0.6) 58%);
  border-radius: 0;
  padding: 0 0.08em;
}

.p-intro__label,
.p-recommend__label {
  position: relative;
  display: inline-block;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--sky);
  padding-left: 46px;
  margin-bottom: 14px;
  text-transform: none;
}

.p-intro__label::before,
.p-recommend__label::before {
  content: "";
  font-family: var(--ff-en);
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--sky);
}

.p-intro__head h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0;
}

.p-intro__lead {
  margin: 18px 0 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 2;
}

.p-intro__head--center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.p-intro__head--center .p-intro__label,
.p-intro__head--center .p-recommend__label {
  padding-left: 0;
}

.p-intro__head--center .p-intro__label::before,
.p-intro__head--center .p-recommend__label::before {
  display: none;
}

.p-intro__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(34px, 4vw, 54px);
}

.p-intro__gallery figure {
  margin: 0;
}

.p-intro__gallery img {
  width: 100%;
  height: clamp(168px, 16vw, 212px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  display: block;
}

@media (max-width: 720px) {
  .p-intro__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .p-intro__gallery img {
    height: clamp(140px, 42vw, 220px);
  }
}

.p-intro__line {
  height: 46px;
  margin: clamp(30px, 4vw, 50px) auto 0;
  max-width: 620px;
  background: url("images/ashiato02.svg") center/contain no-repeat;
}

.p-intro__fit {
  margin-top: clamp(58px, 7vw, 100px);
}

.p-recommend__lead {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}

.p-recommend__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}

.p-recommend__item {
  padding: 20px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}

.p-recommend__item-num {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.p-recommend__item-icon {
  flex: 0 0 auto;
  width: 32px;
  text-align: center;
  font-size: 25px;
  color: var(--sky);
}

.p-recommend__foot {
  height: 138px;
  /* margin-top: clamp(34px, 4vw, 54px); */
  background: url("images/nekoN04.svg") right bottom/auto 160px no-repeat;
}

/* ==========================================================================
   Culture（GH / SH）
========================================================================== */
.p-ghculture__lead,
.p-shculture__lead {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.p-ghculture__list,
.p-shculture__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.p-ghculture__item,
.p-shculture__item {
  padding: 30px 26px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.p-ghculture__item::before,
.p-shculture__item::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--sky-soft);
  color: var(--sea);
  font-size: 19px;
}

.p-ghculture__item-title,
.p-shculture__item-title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--sea-d);
  margin-bottom: 10px;
}

.p-ghculture__item-text,
.p-shculture__item-text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ==========================================================================
   バナー（Stay / Live / CarShare）
========================================================================== */
.p-banner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.p-live .p-banner__cat {
  color: var(--sky);
}

.p-live .p-banner__feature {
  border-color: var(--sky);
}

.p-banner__visual {
  min-height: 380px;
  border: none;
  background: var(--sky-soft);
  font-size: 0;
}

.p-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-banner--reverse .p-banner__visual {
  order: 2;
  border: none;
}

.p-banner__body {
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-banner__cat {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--terra);
  margin-bottom: 12px;
}

.p-banner__title {
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: 16px;
  line-height: 1.5;
}

.p-banner__lead {
  margin-bottom: 22px;
  font-size: 16px;
  color: var(--ink-soft);
}

.p-banner__features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.p-banner__feature {
  padding: 6px 15px;
  background: #fff;
  border: 1px solid var(--sky);
  border-radius: 999px;
  font-size: 16px;
  color: var(--sea-d);
  font-weight: 500;
}

.p-banner__btn {
  align-self: flex-start;
}

/* ==========================================================================
   GUEST HOUSE 統合ブロック（.p-gh*）
========================================================================== */
.p-gh__hero {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
}

.p-gh__eyebrow {
  position: relative;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.24em;
  color: var(--sky);
  padding-left: 46px;
  margin-bottom: 4px;
}

.p-gh__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--sky);
}

.p-gh__wordmark {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.9;
  color: var(--sky-soft);
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}

.p-gh__title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 31px);
  color: var(--sea-d);
  line-height: 1.5;
  margin: 0 0 4px;
}

.p-gh__sub {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 23px);
  color: var(--sky);
  margin: 0 0 16px;
}

.p-gh__lead {
  font-size: 16px;
  color: var(--ink);
  line-height: 2;
  margin: 0;
}

.p-gh__photos {
  position: relative;
  min-height: clamp(310px, 36vw, 440px);
}

.p-gh__photo {
  margin: 0;
  position: absolute;
  box-shadow: var(--shadow);
}

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

.p-gh__photo--1 {
  top: 0;
  right: 4%;
  width: 80%;
  height: 74%;
}

.p-gh__photo--1 img {
  border-radius: 42px 16px 40px 16px;
}

.p-gh__photo--2 {
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
}

.p-gh__photo--2 img {
  border-radius: 16px 40px 16px 38px;
  border: 6px solid #fff;
}

.p-gh__photo--1::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 30px;
  width: 86px;
  height: 22px;
  background: rgba(214, 193, 150, 0.55);
  transform: rotate(-5deg);
  z-index: 2;
  border-radius: 2px;
}

.p-gh__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
  margin-top: clamp(52px, 6vw, 88px);
}

.p-gh__feature {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}

.p-gh__feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.p-gh__feature-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sky-soft);
  color: var(--sea);
  font-size: 21px;
}

.p-gh__feature-title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 17px;
  color: var(--sea-d);
  line-height: 1.5;
  margin: 0;
}

.p-gh__feature-photo {
  margin: 0 0 16px;
}

.p-gh__feature-photo img {
  width: 100%;
  height: clamp(150px, 15vw, 178px);
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.p-gh__feature-text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin: 0;
}

.p-gh__banner {
  position: relative;
  margin-top: clamp(52px, 6vw, 86px);
  padding: clamp(30px, 4vw, 50px) clamp(28px, 4vw, 56px);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(26px, 3vw, 52px);
  align-items: center;
}

.p-gh__banner-title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--sea-d);
  line-height: 1.5;
  margin: 0 0 14px;
}

.p-gh__banner-lead {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.95;
  margin: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.p-gh__banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.p-gh__banner-items {
  display: flex;
  gap: 0;
}

.p-gh__banner-items li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 0 clamp(16px, 2vw, 30px);
  font-size: 16px;
  font-weight: 500;
  color: var(--sea-d);
  white-space: nowrap;
}

.p-gh__banner-items li + li {
  border-left: 1px dashed var(--line);
}

.p-gh__banner-items i {
  font-size: 27px;
  color: var(--sky);
}

.p-gh__banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 280px;
  padding: 18px 40px;
  border-radius: 999px;
  background: var(--sea);
  color: #fff;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}

.p-gh__banner-btn::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
}

.p-gh__banner-btn:hover {
  background: var(--sea-d);
  transform: translateY(-2px);
}

.p-gh__banner::after {
  content: "";
  position: absolute;
  right: clamp(10px, 2vw, 28px);
  bottom: -8px;
  width: clamp(120px, 13vw, 170px);
  height: clamp(90px, 10vw, 128px);
  background: url("images/nekoN05.svg") right bottom/contain no-repeat;
  pointer-events: none;
}

@media (max-width: 880px) {
  .p-gh__hero {
    grid-template-columns: 1fr;
  }

  .p-gh__photos {
    min-height: 46vw;
  }

  .p-gh__features {
    grid-template-columns: 1fr;
  }

  .p-gh__banner {
    grid-template-columns: 1fr;
  }

  .p-gh__banner-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 0;
  }
}

@media (max-width: 600px) {
  /* SP：2列×2行の折り返しをやめて縦1列に。各アイテムはアイコン→テキストの横並びを維持 */
  .p-gh__banner-items {
    align-self: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .p-gh__banner-items li {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 4px;
    white-space: normal;
  }

  .p-gh__banner-items li + li {
    border-left: none;
    border-top: 1px dashed var(--line);
  }
}

/* SHARE HOUSE 統合ブロック（.p-gh* を水色アクセントで再利用） */
.p-sh .p-gh__title {
  color: var(--sky);
}

.p-sh .p-gh__feature-icon {
  background: var(--sky-soft);
  color: var(--sky);
}

.p-sh .p-gh__feature-title {
  color: var(--sky);
}

.p-sh__banner {
  position: relative;
  margin-top: clamp(52px, 6vw, 86px);
  padding: clamp(30px, 4vw, 50px) clamp(28px, 4vw, 56px);
  background: #e8f1fa;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(26px, 3vw, 48px);
  align-items: center;
  overflow: hidden;
}

.p-sh__banner-eyebrow {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--sky);
  margin-bottom: 10px;
}

.p-sh__banner .p-gh__banner-title {
  color: var(--sky);
}

.p-sh__banner .p-gh__banner-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: start;
  gap: 18px 30px;
  margin: 20px 0 24px;
}

.p-sh__banner .p-gh__banner-items li {
  padding: 0;
  flex-direction: row;
  gap: 10px;
  white-space: normal;
  min-width: 0;
}

.p-sh__banner .p-gh__banner-items li + li {
  border-left: none;
}

.p-sh__banner .p-gh__banner-items i {
  color: var(--sky);
}

.p-sh__banner .p-gh__banner-btn {
  background: var(--sky);
}

.p-sh__banner .p-gh__banner-btn:hover {
  background: #4f8cbb;
}

.p-sh__banner-photo {
  margin: 0;
}

.p-sh__banner-photo img {
  width: 100%;
  height: clamp(230px, 25vw, 310px);
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}

@media (max-width: 880px) {
  .p-sh__banner {
    grid-template-columns: 1fr;
  }

  .p-sh__banner .p-gh__banner-items {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  /* SP：2列×2行をやめて縦1列に。各アイテムはアイコン→テキストの横並び＋縦中央揃え */
  .p-sh__banner .p-gh__banner-items {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 14px;
    margin: 20px 0 24px;
  }

  .p-sh__banner .p-gh__banner-items li {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 4px;
  }

  .p-sh__banner .p-gh__banner-items li + li {
    border-top: 1px dashed var(--line);
  }
}

/* ==========================================================================
   LIFE 統合ブロック（.p-life-*）
========================================================================== */
.p-life-eyebrow {
  position: relative;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.24em;
  color: var(--sky);
  padding-left: 46px;
  margin-bottom: 12px;
}

.p-life-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--sky);
}

.p-life-opt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.p-life-opt__head {
  grid-column: 1 / -1;
}

.p-life-opt__title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  color: var(--wood-d);
  line-height: 1.5;
  margin: 0;
}

.p-life-opt__title .u-marker {
  background: linear-gradient(transparent 58%, rgba(247, 214, 110, 0.6) 58%);
  padding: 0 0.1em;
}

.p-life-opt__photo {
  margin: 0;
}

.p-life-opt__photo img {
  width: 100%;
  height: clamp(280px, 32vw, 400px);
  object-fit: cover;
  border-radius: 50px 16px 48px 16px;
  box-shadow: var(--shadow);
  display: block;
}

.p-life-opt__body {
  position: relative;
}

.p-life-opt__intro {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--sea-d);
  margin: 0 0 16px;
}

.p-life-opt__text {
  font-size: 16px;
  color: var(--ink);
  line-height: 2;
  margin: 0 0 22px;
}

.p-life-opt__note {
  font-size: 16px;
  color: var(--ink-soft);
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  margin: 0 0 22px;
}

.p-life-opt__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: none;
  border-radius: 999px;
  background: var(--sea);
  color: #fff;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}

.p-life-opt__btn::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
}

.p-life-opt__btn:hover {
  background: var(--sea-d);
  transform: translateY(-2px);
}

.p-life-opt__cats {
  height: 140px;
  margin-top: 30px;
  background: url("images/nekoN02.svg") left bottom/auto 160px no-repeat,
    url("images/nekoN08.svg") 180px bottom/auto 124px no-repeat;
}

.p-life-flow {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  margin-top: clamp(56px, 7vw, 96px);
}

.p-life-flow__title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 40px);
  color: var(--sky);
  line-height: 1.5;
  margin: 0 0 22px;
}

.p-life-flow__text {
  font-size: 16px;
  color: var(--ink);
  line-height: 2;
  margin: 0;
}

.p-life-flow__photo {
  margin: 0;
}

.p-life-flow__photo img {
  width: 100%;
  height: clamp(300px, 34vw, 420px);
  object-fit: cover;
  border-radius: 48% 52% 46% 54%/54% 50% 50% 46%;
  box-shadow: var(--shadow);
  display: block;
}

.p-life-slider {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin-top: clamp(44px, 5vw, 68px);
  overflow: hidden;
}

.p-life-slider__track {
  display: flex;
  gap: clamp(14px, 1.6vw, 20px);
  width: max-content;
  animation: lifeSlide 45s linear infinite;
}

.p-life-slider:hover .p-life-slider__track {
  animation-play-state: paused;
}

.p-life-slider__track figure {
  margin: 0;
  flex: 0 0 auto;
}

.p-life-slider__track img {
  width: clamp(280px, 26vw, 380px);
  height: clamp(200px, 19vw, 260px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: block;
}

@keyframes lifeSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.p-life-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 4vw, 52px);
}

.p-life-more a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 999px;
  background: var(--sky);
  color: #fff;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}

.p-life-more a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
}

.p-life-more a:hover {
  background: #4f8cbb;
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .p-life-opt,
  .p-life-flow {
    grid-template-columns: 1fr;
  }

  .p-life-flow__photo {
    order: -1;
  }

  .p-life-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   CAR SHARE 統合ブロック（.p-carshare__*）
========================================================================== */
.p-carshare__title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  color: var(--wood-d);
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0 0 clamp(28px, 4vw, 46px);
}

.p-carshare__title .u-marker,
.p-carshare__lead-title .u-marker {
  background: linear-gradient(transparent 58%, rgba(247, 214, 110, 0.6) 58%);
  padding: 0 0.08em;
}

.p-carshare__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.p-carshare__photo {
  position: relative;
  margin: 0;
}

.p-carshare__photo img {
  width: 100%;
  height: clamp(320px, 38vw, 470px);
  object-fit: cover;
  border-radius: 30px 90px 80px 30px;
  box-shadow: var(--shadow);
  display: block;
}

.p-carshare__script {
  position: absolute;
  top: 16%;
  left: 54%;
  transform: translateX(-50%);
  font-family: var(--ff-script);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
  text-align: center;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.p-carshare__info {
}

.p-carshare__eyebrow {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: var(--sky);
  margin: 0 0 12px;
}

.p-carshare__lead-title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(23px, 3vw, 33px);
  color: var(--sea-d);
  line-height: 1.5;
  margin: 0 0 24px;
}

.p-carshare__features {
  display: flex;
  gap: 0;
  margin: 0 0 24px;
}

.p-carshare__features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(16px, 2.4vw, 34px);
  font-size: 16px;
  font-weight: 500;
  color: var(--sea-d);
  white-space: nowrap;
}

.p-carshare__features li + li {
  border-left: 1px dashed var(--line);
}

.p-carshare__features i {
  font-size: 30px;
  color: var(--sky);
}

.p-carshare__text {
  font-size: 16px;
  color: var(--ink);
  line-height: 2;
  margin: 0 0 28px;
}

.p-carshare__btn {
  background: var(--sea-dd);
}

.p-carshare__btn:hover {
  background: #0a3a57;
}

@media (max-width: 880px) {
  .p-carshare__body {
    grid-template-columns: 1fr;
  }

  .p-carshare__features {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  /* SP：横並び／折り返しをやめて縦1列に。各アイテムはアイコン→テキストの横並びを維持 */
  .p-carshare__features {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .p-carshare__features li {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 4px;
    white-space: normal;
  }

  .p-carshare__features li + li {
    border-left: none;
    border-top: 1px dashed var(--line);
  }
}

/* ==========================================================================
   LIFE（TOPギャラリー）— 角丸＋影＋わずかな傾き
========================================================================== */
.p-life__lead {
  margin-bottom: 30px;
  font-size: 16px;
  color: var(--ink-soft);
}

.p-life__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.p-life__gallery-img {
  min-height: 0;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sky-soft);
  box-shadow: var(--shadow);
  font-size: 0;
  transition: 0.25s;
}

.p-life__gallery-img:nth-child(odd) {
  transform: rotate(-2deg);
}

.p-life__gallery-img:nth-child(even) {
  transform: rotate(2deg);
}

.p-life__gallery-img:hover {
  transform: rotate(0) scale(1.05);
}

.p-life__gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-life__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 14px 32px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--sea);
  color: var(--sea-d);
  font-family: var(--ff-round);
  font-weight: 500;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}

.p-life__more::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  margin-left: 8px;
}

.p-life__more:hover {
  transform: translateY(-2px);
  background: var(--sky-soft);
}

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

/* ==========================================================================
   Helper teaser
========================================================================== */
.p-helperteaser__body,
.p-sh-helper__body,
.p-life-helper__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 0;
}

.p-helperteaser__visual,
.p-sh-helper__visual,
.p-life-helper__visual {
  height: clamp(300px, 30vw, 400px);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sky-soft);
  box-shadow: var(--shadow);
  font-size: 0;
}

.p-helperteaser__visual img,
.p-sh-helper__visual img,
.p-life-helper__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-helperteaser__lead {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 20px;
  color: var(--sea-d);
  margin-bottom: 16px;
}

.p-helperteaser__text,
.p-sh-helper__text,
.p-life-helper__text {
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--ink-soft);
}

.p-helperteaser__note,
.p-sh-helper__note,
.p-life-helper__note {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.p-helperteaser__btn,
.p-sh-helper__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--sea);
  color: var(--sea-d);
  font-family: var(--ff-round);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}

.p-helperteaser__btn:hover,
.p-sh-helper__btn:hover {
  transform: translateY(-2px);
  background: var(--sky-soft);
}

/* ==========================================================================
   Tour
========================================================================== */
.p-tour__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.p-tour__card {
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}

.p-tour__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.p-tour__card-link {
  display: block;
  padding: 0 0 22px;
  color: inherit;
  text-decoration: none;
}

.p-tour__card-img {
  height: clamp(180px, 18vw, 210px);
  border: none;
  border-radius: 0;
  margin: 0;
  background: var(--sky-soft);
  font-size: 0;
}

.p-tour__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-tour__card-link > *:not(.p-tour__card-img) {
  margin-left: 22px;
  margin-right: 22px;
}

.p-tour__card-date {
  font-family: var(--ff-en);
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 18px;
  letter-spacing: 0.08em;
}

.p-tour__card-cat {
  display: inline-block;
  font-size: 16px;
  color: var(--sea-d);
  font-weight: 500;
  background: var(--sky-soft);
  border-radius: 999px;
  padding: 4px 14px;
  margin-top: 8px;
}

.p-tour__card-title {
  font-family: var(--ff-round);
  font-weight: 700;
  margin: 10px 0 8px;
  font-size: 17px;
  color: var(--sea-d);
}

.p-tour__card-text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 0;
}

.p-tour__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 46px);
}

/* ==========================================================================
   Contact CTA — やわらかいクリーム面＋破線＋ねこ
========================================================================== */
.p-contact-cta {
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: var(--maxw);
}

.p-contact-cta::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 10px;
  width: clamp(140px, 16vw, 200px);
  height: clamp(140px, 16vw, 200px);
  background: url("images/nekoN07.svg") center bottom/contain no-repeat;
}

.p-contact-cta__label {
  justify-content: center;
}

.p-contact-cta > h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.p-contact-cta__lead {
  color: var(--ink-soft);
  margin: 12px auto 28px;
  max-width: 620px;
}

.p-contact-cta__btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

a.p-contact-cta__btn {
  min-width: 240px;
  padding: 18px 40px;
  border-radius: 999px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 18px;
  background: var(--sky);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-sm);
}

a.p-contact-cta__btn:hover {
  transform: translateY(-2px);
  background: #4f8cbb;
}

a.p-contact-cta__btn--primary {
  background: var(--sea);
  color: #fff;
}

a.p-contact-cta__btn--primary:hover {
  background: var(--sea-d);
}

@media (max-width: 767px) {
  /* SP：猫がoverflow:hiddenで切れて見えなくならないよう、
     押し出すのではなくセクション下部の余白を広げて置き場所を確保する */
  .p-contact-cta {
    padding-bottom: 150px;
  }

  .p-contact-cta::after {
    width: clamp(90px, 24vw, 130px);
    height: clamp(90px, 24vw, 130px);
    right: 12px;
    bottom: 10px;
    z-index: 1;
  }
}

/* フッター上：海底イラスト帯 */
.l-seabed {
  width: 100%;
  height: clamp(120px, 14vw, 200px);
  /* margin-top: clamp(40px, 5vw, 72px); */
  background: url("images/umi02.svg") center bottom/cover no-repeat;
}

/* ==========================================================================
   施設カード
========================================================================== */
.p-facility-cards__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.p-facility-cards__list--three {
  grid-template-columns: repeat(3, 1fr);
}

.p-facility-card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}

.p-facility-card:hover {
  transform: translateY(-4px);
}

.p-facility-card__img {
  height: clamp(200px, 18vw, 250px);
  border: none;
  border-radius: 0;
  margin: 0;
  background: var(--sky-soft);
  font-size: 0;
}

.p-facility-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-facility-card__body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-facility-card__cat {
  font-family: var(--ff-en);
  font-size: 11px;
  color: var(--terra);
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 8px;
}

.p-facility-card__name {
  font-size: 19px;
  margin-bottom: 10px;
}

.p-facility-card__catch {
  font-size: 16px;
  font-weight: 700;
  color: var(--wood-d);
  margin-bottom: 12px;
}

.p-facility-card__text {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.85;
}

.p-facility-card__features {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.p-facility-card__feature {
  padding: 5px 13px;
  background: var(--sky-soft);
  border: none;
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--sea-d);
}

.p-facility-card__price {
  font-family: var(--ff-round);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--terra-d);
}

.p-facility-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ==========================================================================
   予約導線
========================================================================== */
.p-booking__lead,
.p-cs-booking__lead {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.p-booking__btn-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.p-booking__btn-row .p-booking__btn {
  height: 58px;
  border-radius: 14px;
  margin: 0;
  font-size: 16px;
}

.p-cs-booking__btn-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.p-cs-booking__btn {
  height: 58px;
  border-radius: 14px;
}

/* 物件詳細ページ：電話ボタンだけ目立たせる */
a.p-booking__btn--tel {
  background: var(--yellow);
  color: var(--wood-d);
  box-shadow: 0 14px 26px -14px rgba(191, 150, 30, 0.7);
}

a.p-booking__btn--tel::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

a.p-booking__btn--tel:hover {
  background: #efc23f;
  color: var(--wood-d);
}

/* ==========================================================================
   サブページ共通
========================================================================== */
.p-breadcrumb {
  background: transparent;
  padding: 20px clamp(20px, 5vw, 52px) 0;
  max-width: var(--maxw);
  margin: 0 auto;
  border: none;
}

.p-breadcrumb ul {
  display: flex;
  gap: 8px;
  font-size: 16px;
  color: var(--ink-soft);
  font-family: var(--ff-en);
}

.p-breadcrumb a {
  color: var(--sea);
}

.p-breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--sky);
  margin-left: 8px;
}

.p-page-head {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.p-page-head__label {
  justify-content: center;
}

.p-page-head > h1 {
  font-family: var(--ff-marker);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 72px);
  color: var(--wood-d);
  line-height: 1.04;
  margin-bottom: 16px;
}

.p-page-head__lead {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 16px;
}

.p-gh-concept > h2,
.p-gh-first > h2,
.p-facility-cards > h2,
.p-booking > h2,
.p-sh-merit > h2,
.p-sh-flow > h2,
.p-sh-apply > h2,
.p-sh-helper > h2,
.p-sh-rule > h2,
.p-cs-info > h2,
.p-cs-booking > h2,
.p-cs-license > h2,
.p-cs-rule > h2,
.p-cs-caution > h2,
.p-cs-safety > h2,
.p-cs-access > h2,
.p-cs-form > h2,
.p-life-day > h2,
.p-life-season > h2,
.p-life-helper > h2,
.p-contact-tel > h2,
.p-contact-form > h2 {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

.p-gh-concept > h2::after,
.p-gh-first > h2::after,
.p-facility-cards > h2::after,
.p-sh-merit > h2::after,
.p-sh-flow > h2::after,
.p-life-day > h2::after,
.p-life-season > h2::after,
.p-cs-info > h2::after,
.p-cs-rule > h2::after,
.p-cs-access > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 46px;
  height: 3px;
  background: var(--terra);
  border-radius: 3px;
}

.p-gh-concept__body,
.p-gh-first__body,
.p-cs-info__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.p-gh-concept__visual,
.p-gh-first__visual,
.p-cs-info__visual {
  height: clamp(320px, 30vw, 430px);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sky-soft);
  box-shadow: var(--shadow);
  font-size: 0;
}

.p-gh-concept__visual img,
.p-gh-first__visual img,
.p-cs-info__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-gh-concept p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--ink);
  line-height: 2;
}

.p-gh-concept__note {
  font-size: 16px;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 16px;
}

.p-gh-first p {
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--ink);
}

.p-gh-first .p-cs-caution__list {
  margin-top: 16px;
}

.p-gh-first .p-cs-caution__list li {
  padding-left: 26px;
  font-size: 16px;
  margin-bottom: 8px;
}

.p-gh-first .p-cs-caution__list li::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: 0;
  top: 3px;
  color: var(--sea);
  font-size: 16px;
  background: none;
  width: auto;
  height: auto;
}

/* SH メリット */
.p-sh-merit__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.p-sh-merit__item {
  padding: 24px 16px;
  border: 1.5px solid var(--sky);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--sea-d);
  line-height: 1.5;
}

.p-sh-merit__item i {
  font-size: 30px;
  color: var(--sky);
}

.p-sh-merit__note {
  margin-top: 20px;
  font-size: 16px;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 18px;
  line-height: 1.9;
}

/* SH 入居の流れ */
.p-sh-flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: flow;
}

.p-sh-flow__item {
  padding: 34px 18px 26px;
  border: 2px solid var(--sky-soft);
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
  text-align: center;
  position: relative;
  counter-increment: flow;
}

.p-sh-flow__item::before {
  content: counter(flow, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 23px;
  box-shadow: 0 10px 20px -8px rgba(96, 155, 199, 0.75);
}

.p-sh-flow__item:not(:last-child)::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sky);
  font-size: 18px;
  font-weight: 900;
  z-index: 2;
}

.p-sh-flow__num {
  font-family: var(--ff-en);
  font-weight: 700;
  color: var(--sky);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.p-sh-flow__step {
  font-size: 16px;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 700;
}

/* フォーム共通 */
.p-sh-apply__form,
.p-cs-form__form,
.p-contact-form__form {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
}

.p-sh-apply__row,
.p-cs-form__row,
.p-contact-form__row {
  display: grid;
  gap: 8px;
  min-width: 0;
}

label {
  display: block;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--sea-d);
  margin-bottom: 2px;
}

label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  background: var(--terra);
  color: #fff;
  font-size: 10.5px;
  font-weight: 500;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: 0.2s;
}

/* iOS Safariのネイティブ日付ピッカーは独自の最小幅を持ち、
   width:100%だけでは効かず横にはみ出すことがあるため個別に上限を指定 */
input[type="date"] {
  padding-right: 6px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: #fff;
  box-shadow: 0 0 0 3px var(--sky-soft);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input[type="file"] {
  font-size: 16px;
  padding: 10px;
  background: var(--cream);
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  width: 100%;
}

.p-sh-apply__radio {
  font-size: 16px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.p-cs-form__note {
  font-size: 11.5px;
  color: var(--ink-soft);
}

.p-cs-form__privacy,
.p-contact-form__privacy {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--terra);
  width: 17px;
  height: 17px;
}

.p-sh-apply__submit,
.p-cs-form__submit,
.p-contact-form__submit {
  text-align: center;
  margin-top: 8px;
}

button[type="submit"] {
  border: none;
  border-radius: 999px;
  padding: 16px 52px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: var(--terra);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}

button[type="submit"]:hover {
  background: var(--terra-d);
  transform: translateY(-2px);
}

.p-cs-form,
.p-contact-form {
  text-align: center;
}

.p-cs-form__lead,
.p-contact-form__lead {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 10px auto 28px;
  max-width: 600px;
}

/* SH ルール */
.p-sh-rule__block {
  margin-bottom: 18px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--line);
}

.p-sh-rule__sub,
.p-cs-rule__sub {
  border-left: 4px solid var(--terra);
  padding-left: 12px;
  margin-bottom: 14px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--sea-d);
}

.p-sh-rule__list li {
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  margin-bottom: 8px;
}

.p-sh-rule__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
}

.p-sh-rule__note {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.9;
}

/* Car Share ご利用案内 */
.p-cs-info__list {
  border: none;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 6px 24px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--line);
}

.p-cs-info__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.p-cs-info__row:last-child {
  border-bottom: none;
}

.p-cs-info__label {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--sea-d);
  letter-spacing: 0.1em;
}

.p-cs-info__value {
  font-size: 16px;
  margin: 0;
  color: var(--ink);
}

.p-cs-info__note {
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* Car Share rules */
.p-cs-rule__list,
.p-cs-caution__list,
.p-cs-safety__list {
  margin-bottom: 14px;
}

.p-cs-rule__list li,
.p-cs-caution__list li,
.p-cs-safety__list li {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.85;
}

.p-cs-rule {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: 1.5px solid var(--line);
}

.p-cs-rule__list {
  counter-reset: cs;
}

.p-cs-rule__list li::before {
  counter-increment: cs;
  content: counter(cs);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--terra);
  color: #fff;
  border-radius: 50%;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-cs-caution__list li::before,
.p-cs-safety__list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
}

/* Car Share License */
.p-cs-license__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.p-cs-license__list li {
  padding: 26px;
  border: none;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.p-cs-license__title {
  font-family: var(--ff-round);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--sea-d);
}

.p-cs-license__text {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* Car Share Access */
.p-cs-access__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.p-cs-access__item {
  padding: 26px;
  border: none;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--line);
}

.p-cs-access__item-name {
  font-family: var(--ff-round);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--sea-d);
}

.p-cs-access__add,
.p-cs-access__note {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.p-cs-access__map {
  position: relative;
  min-height: 200px;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 8px;
  background: var(--sky-soft);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--sea-d);
  font-size: 11px;
  padding: 12px;
}
/*
.p-cs-access__map::before {
   content: "\f3c5";
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   color: var(--sea);
   font-size: 38px;
   position: absolute;
   top: 44%;
   left: 50%;
   transform: translate(-50%, -50%);
}*/

/* Life */
.p-life-gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.p-life-gallery__item {
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.p-life-gallery__item:nth-child(odd) {
  transform: rotate(-1.2deg);
}

.p-life-gallery__item:nth-child(even) {
  transform: rotate(1.2deg);
}

.p-life-gallery__img {
  min-height: 0;
  aspect-ratio: 4/3;
  border: none;
  border-radius: 0;
  margin: 0;
  background: var(--sky-soft);
  font-size: 0;
}

.p-life-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-life-day__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.p-life-day__item {
  padding: 26px 16px;
  border: none;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1.5px solid var(--line);
}

.p-life-day__time {
  font-family: var(--ff-marker);
  font-weight: 700;
  font-size: 30px;
  color: var(--sky);
}

.p-life-day__step {
  font-size: 16px;
  margin-top: 8px;
  color: var(--ink);
}

.p-life-season__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.p-life-season__item {
  padding: 24px 20px;
  border: none;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--sky);
}

.p-life-season__item:nth-child(2) {
  border-top-color: var(--sea);
}

.p-life-season__item:nth-child(3) {
  border-top-color: var(--wood);
}

.p-life-season__item:nth-child(4) {
  border-top-color: var(--wood-d);
}

.p-life-season__season {
  font-family: var(--ff-round);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--sea-d);
}

.p-life-season__text {
  font-size: 16px;
  color: var(--ink-soft);
}

/* Contact TEL */
.p-contact-tel {
  text-align: center;
}

.p-contact-tel__lead {
  margin: 10px auto 22px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 600px;
}

.p-contact-tel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 74px;
  padding: 0 48px;
  background: var(--terra);
  color: #fff;
  font-family: var(--ff-en);
  font-size: 28px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
  transition: 0.25s;
}

.p-contact-tel__btn::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.p-contact-tel__btn:hover {
  background: var(--terra-d);
  transform: translateY(-2px);
}

.p-contact-tel__hours {
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-soft);
}

/* ==========================================================================
   フッター
========================================================================== */
.l-footer {
  background: var(--sea-dd);
  color: #dbe9ec;
  max-width: none;
  margin: 0;
  padding: 64px clamp(20px, 5vw, 52px) 30px;
  /* 固定CTA（.floating-cta）に最下部コンテンツが隠れないよう、その高さ分を追加で確保 */
  padding-bottom: calc(30px + var(--floating-cta-h) + env(safe-area-inset-bottom, 0px));
  position: relative;
}

.l-footer .l-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.l-footer * {
  color: #dbe9ec;
}

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

.l-footer__logo {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

.l-footer__brand p {
  margin-bottom: 6px;
  font-size: 16px;
  color: #a9c4ca;
}

.l-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.l-footer__nav-col li {
  margin-bottom: 8px;
  font-size: 16px;
}

.l-footer__nav-head {
  font-family: var(--ff-round);
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.l-footer__copy {
  grid-column: 1/-1;
  font-family: var(--ff-en);
  font-size: 11px;
  color: #7fa0a8;
  text-align: center;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

/* 右下：追従の宿泊/暮らすリンク */
.floating-cta {
  position: fixed;
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(12px, 2vw, 22px);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 26px 15px 22px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 28px -12px rgba(13, 70, 106, 0.55);
  transition: 0.25s;
}

.floating-cta__btn i {
  font-size: 22px;
  width: 24px;
  text-align: center;
}

.floating-cta__btn b {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  display: block;
}

.floating-cta__btn small {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.95;
  display: block;
}

.floating-cta__btn--gh {
  background: var(--sea);
}

.floating-cta__btn--sh {
  background: var(--sky);
}

.floating-cta__btn:hover {
  transform: translateX(-3px);
}

@media (max-width: 560px) {
  .floating-cta {
    flex-direction: row;
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .floating-cta__btn {
    padding: 10px 16px;
  }

  .floating-cta__btn small {
    display: none;
  }

  /* SPでは横並び1段になり高さが低くなるため縮小（実測値に応じて要調整） */
  :root {
    --floating-cta-h: 90px;
  }
}

/* 追加のねこあしらい（提供SVG） */
/* FV右下：猫＋毛糸を大きめに2つ並べて配置（写真には被せない） */
.p-hero::before {
  content: "";
  position: absolute;
  right: clamp(24px, 1.5vw, 76px);
  bottom: clamp(40px, 3vw, 72px);
  width: clamp(240px, 22vw, 330px);
  height: clamp(140px, 15vw, 200px);
  z-index: 4;
  pointer-events: none;
  background: url("images/nekoN03.svg") center bottom/contain no-repeat;
}

.p-intro {
  position: relative;
}

.p-ghculture {
  position: relative;
}

/* ===== ヘッダー：ハンバーガー（MENUボタン＋全画面オーバーレイ） ===== */
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 52px);
}

.l-nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.l-header__ctrl {
  position: fixed;
  top: clamp(14px, 2.2vw, 22px);
  right: clamp(14px, 3vw, 40px);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 12px;
}

.l-burger {
  box-sizing: border-box;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 26px -10px rgba(13, 70, 106, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.25s;
  padding-bottom: 8px;
}

.l-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 0;
  padding: 0;
  background: var(--sea-d);
  border-radius: 2px;
  transition: 0.3s;
}

.l-burger em {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  text-align: center;
  font-style: normal;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--sea-d);
}

.l-burger:hover {
  transform: translateY(-2px);
}

.l-nav-toggle:checked ~ .l-header__ctrl .l-burger {
  padding-bottom: 0;
}

.l-nav-toggle:checked ~ .l-header__ctrl .l-burger em {
  display: none;
}

.l-nav-toggle:checked ~ .l-header__ctrl .l-burger span:nth-of-type(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.l-nav-toggle:checked ~ .l-header__ctrl .l-burger span:nth-of-type(2) {
  opacity: 0;
}

.l-nav-toggle:checked ~ .l-header__ctrl .l-burger span:nth-of-type(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.l-navpanel {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--beige);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.l-nav-toggle:checked ~ .l-navpanel {
  opacity: 1;
  visibility: visible;
}

.l-navpanel__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.l-navpanel__list li {
  margin: clamp(8px, 1.8vh, 20px) 0;
}

.l-navpanel__list a {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.l-navpanel__list b {
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--wood-d);
  line-height: 1;
  transition: 0.2s;
}

.l-navpanel__list small {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
}

.l-navpanel__list a:hover b {
  color: var(--sea);
}

.l-navpanel__util {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.l-navpanel__util a {
  font-family: var(--ff-en);
  font-weight: 700;
  color: var(--sea-d);
  font-size: 19px;
}

.l-navpanel__lang {
  font-size: 16px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  background: #fff;
}

.l-navpanel::before {
  content: "";
  position: absolute;
  left: 7%;
  top: 12%;
  width: clamp(110px, 12vw, 160px);
  height: clamp(110px, 12vw, 160px);
  background: url("images/nekoN06.svg") center/contain no-repeat;
}

.l-navpanel::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 9%;
  width: clamp(180px, 26vw, 380px);
  height: 84px;
  background: url("images/ashiato02.svg") center/contain no-repeat;
}

@media (max-width: 767px) {
  /* SP：メニュー中央のリストと猫が被らないよう、少し小さくして左上の隅寄りに調整 */
  .l-navpanel::before {
    left: 4%;
    top: 6%;
    width: clamp(70px, 20vw, 100px);
    height: clamp(70px, 20vw, 100px);
  }
}

/* SP：ロゴ／お問い合わせ／Google翻訳／ハンバーガーの重なりを解消
   .l-header__ctrl は position:fixed で常時右上に固定されるが、
   PC用サイズ（翻訳ウィジェット＋CTAボタン＋ハンバーガー）のままだと
   スマホ幅では合計幅が画面をはみ出し、左上のロゴと重なってしまう。
   SPでは各要素を縮小し、Contactボタンはハンバーガーメニュー内の
   Contactリンク（l-navpanel__list）に集約して非表示にする。 */
@media (max-width: 767px) {
  .l-header__inner {
    padding: 12px clamp(16px, 4vw, 22px);
  }

  .l-header__logo {
    font-size: 16px;
  }

  .l-header__ctrl {
    top: 10px;
    right: 10px;
    gap: 8px;
  }

  a.l-header__cta {
    display: none;
  }

  .l-header__trans summary {
    padding: 8px 12px;
    font-size: 12px;
  }

  .l-header__trans i {
    font-size: 14px;
  }

  .l-header__trans-menu {
    min-width: 150px;
  }

  .l-burger {
    width: 48px;
    height: 48px;
    padding-bottom: 6px;
  }

  .l-burger span {
    width: 20px;
  }
}

/* ==========================================================================
   レビュー用ページナビ
========================================================================== */
.wf-pagenav {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  right: auto;
  background: rgba(22, 59, 73, 0.92);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 8px 12px;
  z-index: 9999;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--ff-en);
  font-size: 11px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  max-width: 94vw;
  justify-content: center;
}

.wf-pagenav__label {
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.1em;
}

.wf-pagenav__label::before {
  display: none;
}

.wf-pagenav a {
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  background: transparent;
  transition: 0.2s;
}

.wf-pagenav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.wf-pagenav a.is-current {
  background: var(--terra);
  color: #fff;
}

body {
  padding-top: 0;
}

/* ==========================================================================
   レスポンシブ
========================================================================== */
@media (max-width: 920px) {
  .p-about__body,
  .p-banner,
  .p-helperteaser__body,
  .p-sh-helper__body,
  .p-life-helper__body,
  .p-gh-concept__body,
  .p-gh-first__body,
  .p-cs-info__body,
  .l-footer .l-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .p-banner--reverse .p-banner__visual {
    order: 0;
  }

  .p-intro__group,
  .p-vacancy__list,
  .p-recommend__list,
  .p-cs-license__list,
  .p-cs-access__list {
    grid-template-columns: 1fr;
  }

  .p-about__points,
  .p-ghculture__list,
  .p-shculture__list,
  .p-tour__list,
  .p-sh-merit__list,
  .p-life-gallery__list,
  .p-life-season__list,
  .p-facility-cards__list--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-life__gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-sh-flow__list,
  .p-life-day__list,
  .p-booking__btn-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-sh-flow__item:not(:last-child)::after {
    display: none;
  }

  .p-about__body::after {
    right: 0;
    bottom: -30px;
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .l-header__inner {
    grid-template-columns: 1fr auto;
  }

  .l-header__logo {
    font-size: 18px;
  }

  .l-header__utility .l-header__lang {
    display: none;
  }

  .p-facility-cards__list,
  .p-about__points,
  .p-ghculture__list,
  .p-shculture__list,
  .p-tour__list,
  .p-sh-merit__list,
  .p-life-season__list,
  .p-facility-cards__list--three,
  .p-sh-flow__list,
  .p-life-day__list,
  .p-booking__btn-row,
  .p-cs-booking__btn-row {
    grid-template-columns: 1fr;
  }

  .p-life__gallery,
  .p-life-gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-hero__snap--2,
  .p-hero__snap--4 {
    display: none;
  }

  .ashiato {
    height: 54px;
  }
}

/* ねこをたくさん配置（新テイスト） */
.p-vacancy {
  position: relative;
}

.p-vacancy::after {
  content: "";
  position: absolute;
  right: clamp(8px, 2vw, 30px);
  bottom: clamp(-6px, 1vw, 14px);
  width: clamp(120px, 12vw, 130px);
  height: clamp(120px, 12vw, 170px);
  background: url("images/nekoN08.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: 3;
}

.p-intro::after {
  content: "";
  position: absolute;
  left: clamp(10px, 3vw, 48px);
  bottom: clamp(10px, 2vw, 34px);
  width: clamp(150px, 15vw, 210px);
  height: clamp(150px, 15vw, 210px);
  background: url("images/nekoN06.svg") center/contain no-repeat;
  pointer-events: none;
}

.p-shculture::after {
  content: "";
  position: absolute;
  right: clamp(8px, 2vw, 34px);
  bottom: clamp(10px, 2vw, 34px);
  width: clamp(150px, 15vw, 210px);
  height: clamp(150px, 15vw, 210px);
  background: url("images/nekoN04.svg") center/contain no-repeat;
  pointer-events: none;
}

.p-tour::after {
  content: "";
  position: absolute;
  right: clamp(8px, 2vw, 34px);
  top: clamp(4px, 2vw, 22px);
  width: clamp(140px, 14vw, 200px);
  height: clamp(140px, 14vw, 200px);
  background: url("images/nekoN02.svg") center/contain no-repeat;
  pointer-events: none;
}

.p-carshare::after {
  content: "";
  position: absolute;
  right: clamp(10px, 3vw, 48px);
  bottom: clamp(-26px, -1vw, -6px);
  width: clamp(150px, 15vw, 210px);
  height: clamp(150px, 15vw, 210px);
  background: url("images/nekoN03.svg") center/contain no-repeat;
  pointer-events: none;
}

/* お問い合わせ：電話〜フォームまで白背景（波なし） */
.sect--plainwhite {
  position: relative;
}

.sect--plainwhite::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #fff;
  z-index: -1;
}

/* 星空キラキラ装飾（star01-05 / #2b6f86） */
.p-hero__stars {
  position: absolute;
  top: 8px;
  right: -8px;
  width: clamp(80px, 10vw, 128px);
  height: clamp(110px, 13vw, 170px);
  background: url("images/star04.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: 3;
}

.p-gh__wordmark {
  position: relative;
  display: inline-block;
}

.p-gh__wordmark::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -100px;
  width: clamp(58px, 7vw, 92px);
  height: clamp(70px, 8vw, 108px);
  background: url("images/star04.svg") center/contain no-repeat;
  pointer-events: none;
}

.p-sh .p-gh__wordmark::after {
  background-image: url("images/star04.svg");
}

.p-about__head {
  position: relative;
}

.p-about__head::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 6%;
  width: clamp(66px, 8vw, 104px);
  height: clamp(78px, 9vw, 118px);
  background: url("images/star04.svg") center/contain no-repeat;
  pointer-events: none;
}

.p-intro__fit .p-intro__head {
  position: relative;
}

.p-intro__fit .p-intro__head::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: clamp(58px, 9vw, 160px);
  height: clamp(66px, 10vw, 160px);
  background: url("images/star02.svg") center/contain no-repeat;
  pointer-events: none;
}

.p-carshare__script::after {
  content: "";
  position: absolute;
  top: -46px;
  left: 8px;
  width: clamp(80px, 9vw, 120px);
  height: clamp(46px, 5vw, 66px);
  background: url("images/star03.svg") center/contain no-repeat;
  pointer-events: none;
}

section.p-vacancy {
  padding-top: 0;
}

/* Share House 応募フォーム：タイトル中央 */
.p-sh-apply {
  text-align: center;
}

.p-sh-apply > h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.p-sh-apply__form {
  text-align: left;
}

/* 物件詳細ページ */
.p-detail__hero {
  max-width: var(--maxw);
  margin: 0 auto clamp(22px, 3vw, 36px);
}

.p-detail__hero img {
  width: 100%;
  height: clamp(300px, 40vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

.p-detail__chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.p-detail__chip {
  background: var(--sky-soft);
  color: var(--sea-d);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 16px;
  font-weight: 500;
}

.p-detail__price {
  text-align: center;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 20px;
  color: var(--terra-d);
  margin-top: 14px;
}

.p-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-detail__gallery figure {
  margin: 0;
}

.p-detail__gallery img {
  width: 100%;
  height: clamp(190px, 18vw, 250px);
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: block;
}

@media (max-width: 720px) {
  .p-detail__gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* ヘッダー 言語切り替えボタン：クリックでGoogle翻訳のページを別タブで開く（埋め込みウィジェットは不安定なため不使用） */
.l-header__trans {
  position: relative;
}

.l-header__trans summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--sea-d);
  border: 1.5px solid var(--sky);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 18px -10px rgba(13, 70, 106, 0.4);
  transition: 0.25s;
  cursor: pointer;
  list-style: none;
}

.l-header__trans summary::-webkit-details-marker {
  display: none;
}

.l-header__trans summary:hover {
  background: var(--sky-soft);
}

.l-header__trans i {
  font-size: 16px;
  color: var(--sky);
}

.l-header__trans-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  margin: 0;
  background: #fff;
  border: 1.5px solid var(--sky);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  list-style: none;
  z-index: 500;
}

.l-header__trans-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--sea-d);
  font-family: var(--ff-round);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.l-header__trans-menu a:hover {
  background: var(--sky-soft);
}

.l-navpanel__util a {
  font-size: 26px;
}

.l-navpanel__util a i {
  font-size: 22px;
  margin-right: 6px;
}

.p-breadcrumb {
  text-align: right;
  padding: 14px clamp(20px, 5vw, 52px) 0;
  margin-top: -6px;
}

.p-breadcrumb ul {
  justify-content: flex-end;
}

/* メニュー内 電話ボタンに枠線 */
.l-navpanel__util a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--sky);
  border-radius: 999px;
  padding: 12px 28px;
  background: #fff;
  box-shadow: 0 10px 22px -12px rgba(13, 70, 106, 0.4);
}

/* パンくずをタイトルの右下に */
.p-page-head {
  position: relative;
}

.p-page-head .p-breadcrumb {
  text-align: right;
  margin: 18px 0 0;
  padding: 0;
  max-width: none;
}

.p-page-head .p-breadcrumb ul {
  justify-content: flex-end;
}

/* 連続白ブロック用：上だけ波 / 下だけ波 / 両方波（ベージュ地と波型で接続） */
.sect--wtop,
.sect--wbottom,
.sect--wboth {
  position: relative;
  padding-block: clamp(80px, 9vw, 120px);
}

.sect--wtop::before,
.sect--wbottom::before,
.sect--wboth::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
  background: #fff;
}

.sect--wtop::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 0 L1440 0 L1440 40 C1080 96 960 -8 600 26 C360 48 200 84 0 44 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      top center/100% 70px no-repeat,
    #fff;
}

.sect--wbottom::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 80 L1440 80 L1440 38 C1080 -16 960 88 600 54 C360 32 200 -4 0 36 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      bottom center/100% 70px no-repeat,
    #fff;
}

.sect--wboth::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 0 L1440 0 L1440 40 C1080 96 960 -8 600 26 C360 48 200 84 0 44 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      top center/100% 70px no-repeat,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 80 L1440 80 L1440 38 C1080 -16 960 88 600 54 C360 32 200 -4 0 36 Z' fill='%23f9f6f0'/%3E%3C/svg%3E")
      bottom center/100% 70px no-repeat,
    #fff;
}

/* ==========================================================================
   物件詳細（GH / SH）
========================================================================== */
.p-gh-detail,
.p-sh-detail {
  max-width: var(--maxw);
  margin: 0 auto;
}

.p-gh-detail__mv,
.p-sh-detail__mv {
  margin-bottom: clamp(30px, 4vw, 52px);
}

.p-gh-detail__mv-img,
.p-sh-detail__mv-img {
  height: clamp(300px, 42vw, 520px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sky-soft);
}

.p-gh-detail__mv-img img,
.p-sh-detail__mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-gh-detail__mv-head,
.p-sh-detail__mv-head {
  text-align: center;
  margin-top: 24px;
}

.p-gh-detail__cat {
  font-family: var(--ff-en);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sky);
  font-size: 14px;
  margin-bottom: 6px;
}

.p-gh-detail__name,
.p-sh-detail__name {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--sea-d);
  margin: 0 0 6px;
}

.p-gh-detail__catch,
.p-sh-detail__catch {
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
}

.p-gh-detail__overview,
.p-sh-detail__overview {
  max-width: 840px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.p-gh-detail__overview p,
.p-sh-detail__overview p {
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 1em;
}

.p-gh-detail__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.p-gh-detail__points li {
  background: var(--sky-soft);
  color: var(--sea-d);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
}

.p-gh-detail__sub,
.p-sh-detail__sub {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 27px);
  color: var(--sea-d);
  text-align: center;
  margin: clamp(50px, 6vw, 82px) 0 26px;
  letter-spacing: 0.04em;
}

.p-gh-detail__room-feature-note {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 26px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
}

.p-gh-detail__room-feature-note small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.p-gh-detail__room-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p-sh-detail__room-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.p-gh-detail__room-card,
.p-sh-detail__room-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.p-gh-detail__room-img,
.p-sh-detail__room-img {
  height: clamp(180px, 20vw, 280px);
  background: var(--sky-soft);
}

.p-gh-detail__room-img img,
.p-sh-detail__room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-gh-detail__room-name,
.p-sh-detail__room-name {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 19px;
  color: var(--sea-d);
  margin: 18px 22px 2px;
}

.p-gh-detail__room-spec,
.p-sh-detail__room-spec {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 22px 12px;
}

.p-gh-detail__room-price-table {
  width: auto;
  margin: 0 22px 14px;
  border-collapse: collapse;
  font-size: 15px;
}

.p-gh-detail__room-price-table th {
  text-align: left;
  padding: 6px 14px 6px 0;
  color: var(--sea-d);
  font-weight: 700;
  white-space: nowrap;
  vertical-align: top;
}

.p-gh-detail__room-price-table td {
  padding: 6px 0;
  color: var(--ink);
}

.p-gh-detail__room-warn {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 22px 20px;
  line-height: 1.75;
}

.p-sh-detail__room-price {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 18px;
  color: var(--terra-d);
  margin: 0 22px 8px;
}

.p-sh-detail__room-status {
  display: inline-block;
  margin: 0 22px 20px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: var(--line);
  color: var(--ink-soft);
}

.p-sh-detail__room-note {
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 18px;
}

.p-gh-detail__cancel-policy {
  background: #fff;
  border: 1.5px dashed var(--sky);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 26px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
}

.p-gh-detail__cancel-policy strong {
  display: block;
  color: var(--sea-d);
  margin-bottom: 6px;
}

.p-gh-detail__shared-list,
.p-sh-detail__shared-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.p-gh-detail__shared-list li,
.p-sh-detail__shared-list li {
  text-align: center;
}

.p-gh-detail__shared-img,
.p-sh-detail__shared-img {
  height: clamp(140px, 17vw, 320px);
  border-radius: 14px;
  overflow: hidden;
  background: var(--sky-soft);
  margin-bottom: 8px;
}

.p-gh-detail__shared-img img,
.p-sh-detail__shared-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-gh-detail__shared-list p,
.p-sh-detail__shared-list p {
  font-size: 15px;
  color: var(--ink);
}

/* ==========================================================================
   ライトボックス（画像クリックで拡大表示）
========================================================================== */
.js-lightbox {
  cursor: pointer;
}

.c-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 60px);
  background: rgba(13, 26, 33, 0.88);
}

.c-lightbox.is-active {
  display: flex;
}

.c-lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: block;
}

.c-lightbox__close {
  position: absolute;
  top: clamp(14px, 3vw, 26px);
  right: clamp(14px, 3vw, 26px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--sea-d);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.p-gh-detail__spec-list,
.p-sh-detail__spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  max-width: 880px;
  margin: 0 auto;
}

.p-gh-detail__spec-list li,
.p-sh-detail__spec-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
}

.p-gh-detail__spec-list li::before,
.p-sh-detail__spec-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--sky);
  font-size: 13px;
}

.p-gh-detail__access-add,
.p-sh-detail__access-add {
  text-align: center;
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--ink);
}

.p-gh-detail__access-map,
.p-sh-detail__access-map {
  height: clamp(260px, 30vw, 360px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sky-soft);
}

.p-gh-detail__access-map iframe,
.p-sh-detail__access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* SNS */
.p-detail-sns-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

.p-detail-sns {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 40px) clamp(20px, 4vw, 44px);
  background: var(--paper);
  border: 1.5px solid var(--sky-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.p-detail-sns__title {
  font-family: var(--ff-round);
  font-weight: 700;
  font-size: 18px;
  color: var(--sea-d);
  margin-bottom: 18px;
}

.p-detail-sns__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

/* SNS バナー（Instagram／TikTok 共通レイアウト） */
.p-detail-sns__link--ig,
.p-detail-sns__link--tt {
  width: 100%;
  max-width: none;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 24px;
  border-radius: 16px;
  color: #fff;
  text-align: left;
  font-size: 16px;
}

.p-detail-sns__link--ig {
  background: linear-gradient(
    95deg,
    #feda75 0%,
    #fa7e1e 26%,
    #d62976 56%,
    #962fbf 80%,
    #4f5bd5 100%
  );
  box-shadow: 0 16px 30px -16px rgba(214, 41, 118, 0.62);
}

.p-detail-sns__link--tt {
  background: #010101;
  box-shadow: 0 16px 30px -16px rgba(1, 1, 1, 0.55);
}

.p-detail-sns__link--ig .fa-instagram,
.p-detail-sns__link--tt .fa-tiktok {
  font-size: 30px;
  line-height: 1;
  flex: 0 0 auto;
}

.p-detail-sns__link--tt .fa-tiktok {
  color: #25f4ee;
}

.p-detail-sns__link-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.2;
}

.p-detail-sns__link-text b {
  font-family: var(--ff-en);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-detail-sns__link-text small {
  font-size: 13px;
  opacity: 0.92;
}

.p-detail-sns__link-arrow {
  margin-left: auto;
  font-size: 15px;
  opacity: 0.9;
  transition: transform 0.25s;
}

.p-detail-sns__link--ig:hover,
.p-detail-sns__link--tt:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.p-detail-sns__link--tt:hover {
  background: #1d1d1d;
}

.p-detail-sns__link--ig:hover .p-detail-sns__link-arrow,
.p-detail-sns__link--tt:hover .p-detail-sns__link-arrow {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .p-gh-detail__room-list,
  .p-sh-detail__room-list,
  .p-gh-detail__shared-list,
  .p-sh-detail__shared-list,
  .p-gh-detail__spec-list,
  .p-sh-detail__spec-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .p-gh-detail__room-list,
  .p-sh-detail__room-list,
  .p-gh-detail__spec-list,
  .p-sh-detail__spec-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ブログレイアウト（1カラム・中央寄せ）
   ========================================== */
.blog-container {
  max-width: 800px; /* 読みやすい最適な横幅 */
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 記事ヘッダー */
.blog-header {
  margin-bottom: 40px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: #777777;
  margin-bottom: 15px;
}

.blog-category {
  background-color: #e5f2f7; /* 既存サイトの淡いブルー */
  color: #4a7c93; /* 既存サイトのブルー */
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.blog-title {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 25px 0;
  color: #222222;
}

/* アイキャッチ画像 */
.blog-eyecatch {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-eyecatch img {
  width: 100%;
  display: block;
}

/* ==========================================
   記事本文のスタイリング
   ========================================== */
.blog-content {
  font-size: 1rem;
  color: #444444;
}

/* 段落の余白 */
.blog-content p {
  margin: 0 0 24px 0;
}

/* 太字 */
.blog-content strong {
  font-weight: bold;
  color: #111111;
  background: linear-gradient(
    transparent 60%,
    #fff3b3 60%
  ); /* 優しい黄色のマーカー線 */
}

/* 見出し H3 */
.blog-content h3 {
  font-size: 1.4rem;
  position: relative;
  margin: 48px 0 24px 0;
  padding-bottom: 10px;
  color: #222222;
  border-bottom: 2px solid #e0dbd3; /* 馴染む細い下線 */
}

/* 見出し H4 */
.blog-content h4 {
  font-size: 1.15rem;
  margin: 36px 0 16px 0;
  color: #4a7c93; /* アクセントのブルー */
  display: flex;
  align-items: center;
}

.blog-content h4::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1.15rem;
  background-color: #4a7c93; /* 左側の小さな縦線アクセント */
  margin-right: 10px;
  border-radius: 2px;
}

/* 箇条書き（リスト） */
.blog-content ul {
  margin: 0 0 24px 0;
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 8px;
  position: relative;
  list-style-type: square; /* シンプルな四角いドット */
}

/* ==========================================
   記事フッター（ボタン）
   ========================================== */
.blog-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e0dbd3;
  text-align: center;
}

.btn-back {
  display: inline-block;
  background-color: #4a7c93; /* サイトのボタンカラー */
  color: #ffffff;
  text-decoration: none;
  padding: 12px 36px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(74, 124, 147, 0.2);
}

.btn-back:hover {
  background-color: #386175;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(74, 124, 147, 0.3);
}

/* レスポンシブ対応（スマホ表示） */
@media (max-width: 600px) {
  .blog-container {
    margin: 30px auto;
  }
  .blog-title {
    font-size: 1.4rem;
  }
  .blog-content h3 {
    font-size: 1.25rem;
  }
}
