/* top.css - トップページ固有スタイル */

/* ============================================================
   ヒーロー (MV)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  width: 100%;
  height: 895px; /* nav高さ(126px) + 画像高さ(769px) */
}

/* 背景写真：navの高さ分下から開始（logoがその上に重なる） */
.hero__bg {
  position: absolute;
  top: 126px;
  left: 0;
  right: 0;
  bottom: 0;
  isolation: isolate;
}

.hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__bg-img--active {
  opacity: 1;
}

/* 右側ダークグラデーションオーバーレイ（画像と同じ範囲） */
.hero__overlay {
  position: absolute;
  top: 0; /* hero__bg内なので既に126pxオフセット済み */
  right: 0;
  width: 62%; /* 891/1440 ≈ 62% */
  height: 100%;
  background: linear-gradient(to left, rgba(21,42,43,0.9) 0%, rgba(21,42,43,0.45) 60%, rgba(21,42,43,0) 100%);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 100%);
}

/* 縦書きテキスト共通 */
.hero__text {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 44.444px;
  line-height: 1.4;
  white-space: nowrap;
  color: var(--color-font-white-01);
  margin: 0;
}

/* 列1: 心ひろがる（最右列） top = Figma:180px */
.hero__text--col1 {
  right: 253px;
  top: 180px;
}

/* 列2: ひょうご北摂（中右列） top = Figma:261px */
.hero__text--col2 {
  right: 346px;
  top: 261px;
}

.hero__text--white { color: var(--color-font-white-01); }
.hero__text--green { color: var(--color-font-keycolor-light); }

/* 列3: めぐり（中列） top = Figma:558px */
.hero__text--col3 {
  right: 440px;
  top: 558px;
}

/* 縦線デコレーション */
.hero__vline {
  position: absolute;
  display: block;
}

.hero__vline--1 {
  right: 248px;
  top: 195px; /* Figma:195px */
  height: 343px;
  width: 2px;
}

.hero__vline--2 {
  right: 341px;
  top: 276px; /* Figma:276px */
  height: 419px;
  width: 2px;
}

.hero__vline--3 {
  right: 435px;
  top: 575px; /* Figma:575px */
  height: 196px;
  width: 2px;
}

/* 都市名テキスト */
.hero__cities {
  position: absolute;
  right: 238px;
  top: 582px; /* Figma:582px */
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--fontsize-text-medium);
  color: var(--color-font-keycolor-light);
  line-height: 1.54;
  letter-spacing: 0.54px;
  margin: 0;
}

.hero__cities p {
  margin: 0;
}

/* Find Journey! スクロール（Figma: top=645px, h=203px → bottom=895-645-203=47px） */
.hero__scroll {
  position: absolute;
  left: calc(83.33% + 15.46px);
  right: auto;
  bottom: 47px;
  width: 203px;
  height: 203px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hero__scroll:hover {
  opacity: 0.85;
}

.hero__scroll:focus {
  outline: 2px solid var(--color-border-white-01);
  outline-offset: 4px;
  border-radius: 50%;
}

.hero__scroll-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__scroll-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--fontsize-text-large);
  color: var(--color-font-white-01);
  letter-spacing: 1.2px;
  margin-top: 16px;
}

.hero__scroll-arrow {
  position: relative;
  z-index: 1;
  width: 6px;
  height: 32px;
  object-fit: contain;
}

/* 波形装飾 */
.hero__wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.hero__wave-img {
  position: absolute;
  opacity: 0.4;
  max-width: none;
}

.hero__wave-img--1 { bottom: -88px; left: -12.98%; width: 133.08%; }
.hero__wave-img--2 { bottom: -39px; left: -32.19%; width: 133.08%; transform: scaleY(-1); }
.hero__wave-img--3 { bottom: -80px; left: 12.98%; width: 102.17%; transform: scaleY(-1); }

/* スライダーUI（左下） */
.hero__slider-ui {
  position: absolute;
  left: 21px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ドットインジケーター */
.hero__slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--color-border-white-01);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.hero__slider-dot--active {
  background: var(--color-font-white-01);
}

/* 停止ボタン */
.hero__slider-stop {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* ============================================================
   トラベルレポート
   ============================================================ */
.travel-report {
  padding: var(--margin-block-04) 0 var(--margin-block-03);
  border-bottom: 1px solid var(--color-border-gray-01);
}

.travel-report__inner {
  padding: 0 var(--container-medium);
}

.travel-report__desc {
  text-align: center;
  font-size: var(--fontsize-text-normal);
  line-height: 2;
  color: var(--color-font-black-01);
  letter-spacing: 0.16px;
  margin-bottom: var(--margin-block-02);
}

.travel-report__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px dashed var(--color-border-black-01);
  margin-bottom: var(--margin-block-02);
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
  border-left: 1px dashed var(--color-border-black-01);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.news-card:hover {
  opacity: 0.8;
}

.news-card:focus {
  outline: 2px solid var(--color-border-key);
  outline-offset: 2px;
}

.news-card__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-nml);
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__thumb img {
  transform: scale(1.04);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fontsize-text-small);
  line-height: 1.5;
  white-space: nowrap;
}

.news-card__date {
  font-family: var(--font-date);
  font-weight: 400;
  color: var(--color-font-gray-02);
}

.news-card__cat {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-bg-keycolor-02);
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: var(--fontsize-text-medium);
  font-weight: 500;
  color: var(--color-font-black-01);
  line-height: 1.6;
}

.news-card__excerpt {
  font-size: var(--fontsize-text-small);
  color: var(--color-font-black-01);
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.travel-report__btn-wrap {
  display: flex;
  justify-content: center;
}

/* ============================================================
   やること（Things To Do）
   ============================================================ */
.things-to-do {
  padding: var(--margin-block-04) 0 var(--margin-block-03);
}

.things-to-do__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-medium);
}

.things-to-do__content-wrap {
  width: 100%;
  padding: 0 var(--container-medium);
}

/* ---- Enjoy ブロック ---- */
.enjoy-block {
  margin-bottom: var(--margin-block-03);
}

.enjoy-block__inner {
  position: relative;
  border-radius: var(--radius-nml);
  padding: var(--margin-block-04) var(--container-medium);
  overflow: hidden;
}

.enjoy-block__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, var(--color-bg-keycolor-light) 0%, var(--color-bg-keycolor-02) 25.12%, var(--color-bg-keycolor-dark-02) 55.82%);
  z-index: 0;
}

.enjoy-block__head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--margin-block-03);
  align-items: center;
}

.enjoy-block__photos {
  display: flex;
  gap: 13px;
  flex-shrink: 0;
}

.enjoy-block__photo {
  width: 191px;
  height: 383px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.enjoy-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enjoy-block__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--margin-block-01);
}

.enjoy-block__text-ttl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.enjoy-block__en {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--fontsize-text-medium);
  color: #ddd;
  letter-spacing: 2.7px;
}

.enjoy-block__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fontsize-heading-top-01);
  color: var(--color-font-white-01);
  line-height: 1.6;
  letter-spacing: 2.88px;
}

.enjoy-block__desc {
  font-family: var(--font-heading);
  font-size: var(--fontsize-text-normal);
  color: var(--color-font-white-01);
  line-height: 2;
}

/* ジャンルカード */
.genre-list {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--space-03);
  padding-top: var(--margin-block-03);
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.genre-card {
  flex: 1;
}

.genre-card__link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
}

.genre-card__link:hover .genre-card__img img {
  transform: scale(1.04);
}

.genre-card__link:focus {
  outline: 2px solid var(--color-border-white-01);
  outline-offset: 2px;
}

.genre-card__img {
  height: 224px;
  overflow: hidden;
  border-radius: 8px;
}

.genre-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.genre-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-white-01);
}

.genre-card__label {
  flex: 1;
  font-family: var(--font-heading);
  font-size: var(--fontsize-text-medium);
  color: var(--color-font-white-01);
  line-height: 1.6;
  letter-spacing: 0.18px;
}

.genre-card__arrow {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.genre-card__arrow-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.genre-card__arrow-icon {
  position: absolute;
  top: 37%;
  left: 41%;
  width: 18%;
  height: 26%;
  object-fit: contain;
}

/* ---- Feature Blocks ---- */
.feature-blocks {
  margin: 0 calc(-1 * var(--container-medium));
  display: flex;
  flex-direction: column;
}

.feature-block {
  display: flex;
  align-items: stretch;
}

.feature-block__head {
  position: relative;
  width: 328px;
  flex-shrink: 0;
  padding: 40px 40px 40px 80px;
  background: var(--color-bg-gray-03);
  border-right: 1px dashed var(--color-border-black-01);
  overflow: hidden;
}

.feature-block__head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("images/44429849-bd58-4386-b423-05d4f8e957c5.png");
  background-size: 1024px 1024px;
  background-position: top left;
  mix-blend-mode: overlay;
  opacity: 0.15;
  pointer-events: none;
}

.feature-block__cat {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.feature-block__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.feature-block__en {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--fontsize-text-medium);
  color: var(--color-font-keycolor);
  letter-spacing: 1.8px;
  white-space: nowrap;
}

.feature-block__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fontsize-text-xxlarge);
  color: var(--color-font-black-01);
  letter-spacing: 1.3px;
  line-height: normal;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.feature-block__desc {
  font-family: var(--font-heading);
  font-size: var(--fontsize-text-small);
  color: var(--color-font-black-01);
  line-height: 2;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.feature-block__scroll-area {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  display: flex;
  align-items: center;
}

.feature-block__cards {
  display: flex;
  gap: var(--space-03);
  padding-left: 30px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.feature-block__btn {
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.feature-block__btn circle {
  fill: white;
}

.feature-block__btn:hover {
  opacity: 0.7;
}

.purpose-card {
  width: calc((100vw - 528px) / 3);
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.purpose-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
}

.purpose-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.purpose-card:hover .purpose-card__img img {
  transform: scale(1.04);
}

.purpose-card:focus {
  outline: 2px solid var(--color-border-key);
  outline-offset: 2px;
}

.purpose-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 0.8px solid var(--color-border-gray-01);
  width: 100%;
}

.purpose-card__label {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fontsize-text-medium);
  color: var(--color-font-black-01);
  line-height: 1.6;
}

.purpose-card__arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-base-keycolor);
  border: none;
  border-radius: 50%;
  position: relative;
}

.purpose-card__arrow::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid white;
  border-top: 1.5px solid white;
  transform: rotate(45deg) translateX(-1px);
}

/* ---- Deeper Journey ---- */
.deeper-journey {
  padding-top: var(--margin-block-03);
  margin-top: var(--margin-block-03);
}

.deeper-journey__inner {
  background: linear-gradient(to bottom, #405315, #375134);
  border-radius: var(--radius-nml);
  padding: var(--margin-block-03) var(--container-medium);
}

.section-ttl--invert .section-ttl__sub--light {
  color: var(--color-font-keycolor-light);
}

.deeper-journey__inner .section-ttl {
  align-items: flex-start;
  text-align: left;
}

.section-ttl__main--white {
  color: var(--color-font-white-01);
}

.deeper-journey__cards {
  display: flex;
  gap: 40px;
  margin: var(--margin-block-01) 0;
}

.deeper-card {
  flex: 1;
  text-decoration: none;
  position: relative;
  border-radius: var(--radius-nml);
  overflow: hidden;
}

.deeper-card__media {
  position: relative;
  height: 320px;
  border-radius: var(--radius-nml);
  overflow: hidden;
}

.deeper-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.deeper-card:hover .deeper-card__media img {
  transform: scale(1.04);
}

.deeper-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.deeper-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
  text-align: center;
  font-family: var(--font-heading);
  color: var(--color-font-white-01);
}

.deeper-card__sub {
  font-size: var(--fontsize-text-medium);
  letter-spacing: 0.36px;
  line-height: 1.6;
}

.deeper-card__main {
  font-size: var(--fontsize-text-xxxlarge);
  letter-spacing: 0.56px;
  line-height: 1.6;
}

.deeper-card__arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-base-keycolor);
  border-radius: 50%;
  position: relative;
}

.deeper-card__arrow::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid white;
  border-top: 1.5px solid white;
  transform: rotate(45deg) translateX(-1px);
}

.deeper-card:focus {
  outline: 2px solid var(--color-border-white-01);
  outline-offset: 4px;
}

.deeper-journey-btn {
  padding-top: var(--margin-block-02);
  text-align: center;
}

/* ============================================================
   エリアの楽しみ方（Enjoy）
   ============================================================ */
.enjoy {
  background-color: var(--color-bg-keycolor);
  padding: var(--margin-block-04) 0;
  color: var(--color-font-white-01);
}

.enjoy__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-medium);
}

.enjoy__section-ttl .section-ttl__lead,
.enjoy__section-ttl .section-ttl__main {
  color: var(--color-font-white-01);
}

.enjoy__section-ttl .section-ttl__sub {
  color: var(--color-font-keycolor-light);
}

.enjoy__section-ttl .section-ttl__lead-deco {
  filter: brightness(10);
}

.enjoy__cards {
  display: flex;
  flex-direction: column;
  gap: var(--margin-block-02);
}

.enjoy__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--margin-block-01);
  align-items: center;
  background-color: rgba(255,255,255,0.06);
  border-radius: var(--radius-nml);
  overflow: hidden;
}

.enjoy__card--reverse {
  direction: rtl;
}

.enjoy__card--reverse .enjoy__card-body {
  direction: ltr;
}

.enjoy__card-imgs {
  direction: ltr;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 400px;
}

.enjoy__card-imgs--single {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.enjoy__card-img {
  overflow: hidden;
}

.enjoy__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.enjoy__card-img:hover img {
  transform: scale(1.04);
}

.enjoy__card-img--large {
  grid-row: span 2;
}

.enjoy__card-body {
  padding: var(--space-03);
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
}

.enjoy__card-region {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--fontsize-text-medium);
  color: var(--color-font-keycolor-light);
  letter-spacing: 1px;
}

.enjoy__card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fontsize-text-xxxlarge);
  color: var(--color-font-white-01);
  line-height: 1.4;
}

.enjoy__card-desc {
  font-size: var(--fontsize-text-normal);
  line-height: 2;
  color: rgba(255,255,255,0.85);
}

.enjoy__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-01);
}

.enjoy__card-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-rounded);
  font-size: var(--fontsize-text-xsmall);
  color: rgba(255,255,255,0.8);
}

.enjoy__spot-grid {
  margin-top: var(--margin-block-02);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.enjoy__spot-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.enjoy__spot-card:hover {
  opacity: 0.85;
}

.enjoy__spot-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-nml);
}

.enjoy__spot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.enjoy__spot-card:hover .enjoy__spot-thumb img {
  transform: scale(1.04);
}

.enjoy__spot-name {
  font-size: var(--fontsize-text-normal);
  font-weight: 500;
  color: var(--color-font-white-01);
  line-height: 1.5;
}

/* ============================================================
   最新のお知らせ（Info）
   ============================================================ */
.info {
  padding: var(--margin-block-04) 0;
  border-top: 1px solid var(--color-border-gray-01);
  border-bottom: 1px solid var(--color-border-gray-01);
}

.info__inner {
  padding: 0 var(--container-medium);
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--margin-block-01);
  align-items: flex-start;
}

.info__side {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-02);
}

.info__side-ttl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info__side-sub {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--fontsize-text-medium);
  color: var(--color-font-keycolor);
  letter-spacing: 1.8px;
}

.info__side-main {
  font-family: var(--font-heading);
  font-size: var(--fontsize-heading-top-01);
  font-weight: 500;
  color: var(--color-font-black-01);
  line-height: 1.4;
  letter-spacing: 1.8px;
}

.info__list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px dashed var(--color-border-black-01);
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
  border-left: 1px dashed var(--color-border-black-01);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.info-card:hover {
  opacity: 0.8;
}

.info-card__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-nml);
  background-color: var(--color-bg-green-01);
}

.info-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.info-card:hover .info-card__thumb img {
  transform: scale(1.04);
}

.info-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fontsize-text-small);
  white-space: nowrap;
}

.info-card__date {
  font-family: var(--font-date);
  color: var(--color-font-gray-02);
}

.info-card__cat {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-bg-keycolor-02);
}

.info-card__title {
  font-family: var(--font-heading);
  font-size: var(--fontsize-text-medium);
  font-weight: 500;
  color: var(--color-font-black-01);
  line-height: 1.6;
}

.info-card__date-info {
  font-size: var(--fontsize-text-small);
  color: var(--color-font-black-01);
  line-height: 1.8;
}

.info__btn-wrap {
  display: flex;
  justify-content: flex-start;
}

.info__btn-wrap--mobile {
  display: none; /* PC では非表示 */
  width: 100%;
}

/* ============================================================
   About（ひょうご北摂について）
   ============================================================ */
.about {
  position: relative;
  min-height: clamp(580px, calc(502.5px + 20.66vw), 800px);
  overflow: hidden;
}

.about__map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* SVG画像を横幅全体に配置（アスペクト比維持） */
.about__map-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.about__text {
  position: absolute;
  left: clamp(20px, calc(-1px + 5.63vw), 80px);
  top: clamp(60px, calc(-8px + 18.22vw), 254px);
  width: clamp(320px, calc(250px + 21.13vw), 560px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-03);
}

.about__ttl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__ttl-sub {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--fontsize-text-medium);
  color: var(--color-font-keycolor);
  letter-spacing: 2.7px;
}

.about__ttl-main {
  font-family: var(--font-heading);
  font-size: clamp(28px, calc(25.2px + 0.75vw), 36px);
  font-weight: 500;
  color: var(--color-font-black-01);
  letter-spacing: 1.8px;
  line-height: 1.7;
}

.about__body {
  font-size: var(--fontsize-text-normal);
  line-height: 2;
  color: var(--color-font-black-01);
  letter-spacing: 0.16px;
}

/* ============================================================
   エリア紹介（Area）
   ============================================================ */
.area {
  padding: 0 0 var(--margin-block-04);
  background-color: var(--color-bg-gray-03);
}

.area__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.area__section-ttl {
  padding: 0 var(--container-medium);
  margin-bottom: var(--margin-block-02);
}

/* ----- Area Carousel ----- */
.area__carousel {
  position: relative;
}

.area__track-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.area__track-wrapper::-webkit-scrollbar { display: none; }

.area__track {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.area__slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
}
.area__slide:first-child { margin-left: calc(50vw - 560px); }
.area__slide:last-child  { margin-right: calc(50vw - 560px); }
.area__slide--ghost { pointer-events: none; }
.area__track > .area__slide--clone:first-child { margin-left: 0; }
.area__track > .area__slide--clone:last-child  { margin-right: 0; }

/* ----- Area Card ----- */
.area-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 1120px;
  padding: 40px 40px 40px 64px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-gray-01);
  border-radius: var(--radius-nml);
}
.area-card__content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
}
.area-card__ttl {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.area-card__tagline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--fontsize-text-normal);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.16px;
  color: var(--color-font-black-01);
}
.area-card__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-card__pin {
  width: 21px;
  height: 28px;
  flex-shrink: 0;
}
.area-card__name {
  font-family: var(--font-heading);
  font-size: var(--fontsize-text-xxxlarge);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 1.4px;
  color: var(--color-font-black-01);
}
.area-card__summary {
  font-family: var(--font-body);
  font-size: var(--fontsize-text-normal);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.16px;
  color: var(--color-font-black-01);
  margin-top: 16px;
}
.area-card__btn { margin-top: 24px; }

/* ----- Card Images ----- */
.area-card__imgs {
  position: relative;
  flex-shrink: 0;
  width: 614px;
  height: 320px;
}
.area-card__img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
}
.area-card__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area-card__img-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-bg-white);
  z-index: 1;
}
.area-card__img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Nav Buttons ----- */
.area__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.area__nav-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.area__nav-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 14px;
}
.area__nav-arrow--prev {
  transform: translate(-50%, -50%) rotate(180deg);
}
.area__nav--prev { left: calc(50vw - 580px); }
.area__nav--next { right: calc(50vw - 580px); }
.area__nav[disabled] { opacity: 0.3; pointer-events: none; }

/* ----- Btn fill-medium (card内) ----- */
.btn--fill-medium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 15px 30px;
  background: var(--color-bg-keycolor-02);
  color: var(--color-font-white-01);
  border-radius: var(--radius-rounded);
  font-family: var(--font-heading);
  font-size: var(--fontsize-text-normal);
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
}
.btn__icon-circle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
}
.btn__icon-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.btn__icon-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 10px;
}

/* ============================================================
   レスポンシブ（PC: 1200px〜）
   ============================================================ */
@media (min-width: 1200px) {
  .travel-report__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   ミドル対応（max: 1200px）
   ============================================================ */
@media (max-width: 1200px) {
  .hero__inner {
    height: 726px; /* 126 + 600 */
  }

  .hero__text {
    font-size: 36px;
  }

  .hero__text--col1 {
    right: 180px;
    top: 166px; /* 126+40 */
  }

  .hero__text--col2 {
    right: 250px;
    top: 226px; /* 126+100 */
  }

  .hero__text--col3 {
    right: 320px;
    top: 476px; /* 126+350 */
  }

  .hero__vline--1 {
    right: 175px;
    top: 181px; /* 126+55 */
    height: 270px;
  }

  .hero__vline--2 {
    right: 245px;
    top: 241px; /* 126+115 */
    height: 340px;
  }

  .hero__vline--3 {
    right: 315px;
    top: 491px; /* 126+365 */
    height: 160px;
  }

  .hero__cities {
    right: 160px;
    top: 506px; /* 126+380 */
    font-size: var(--fontsize-text-small);
  }

  .hero__scroll {
    bottom: 80px;
    width: 160px;
    height: 160px;
  }

  .hero__wave-img--1 { top: 573px; bottom: auto; }
  .hero__wave-img--2 { top: 613px; bottom: auto; }
  .hero__wave-img--3 { top: 663px; bottom: auto; }
}

/* ============================================================
   モバイル対応（max: 767px） — トップページ固有部分
   ============================================================ */
@media (max-width: 767px) {
  .hero__inner {
    height: 626px; /* 92 + 534 */
  }

  /* ヒーロー背景をモバイルヘッダー高さ(92px)に合わせる */
  .hero__bg {
    top: 92px;
  }

  .hero__text {
    font-size: 28px;
  }

  .hero__text--col1 {
    right: 71px;
    top: 138px;
  }

  .hero__text--col2 {
    right: 141px;
    top: 191px;
  }

  .hero__text--col3 {
    right: 211px;
    top: 388px;
  }

  .hero__vline--1 {
    right: 56px;
    top: 148px;
    height: 227px;
  }

  .hero__vline--2 {
    right: 125px;
    top: 201px;
    height: 278px;
  }

  .hero__vline--3 {
    right: 196px;
    top: 399px;
    height: 130px;
  }

  .hero__cities {
    display: block;
    left: auto;
    right: 5px;
    top: 404px;
    font-size: 12px;
    letter-spacing: 0.36px;
    line-height: normal;
  }

  .hero__scroll {
    left: auto;
    right: 20px;
    top: 490px;
    bottom: auto;
    width: 120px;
    height: 120px;
  }

  .hero__scroll-text {
    font-size: var(--fontsize-text-normal);
    margin-top: 8px;
  }

  .hero__scroll-arrow {
    height: 20px;
  }

  /* オーバーレイ幅をモバイル向けに拡張 */
  .hero__overlay {
    width: 80%;
  }

  .hero__wave-img--1 { top: 494px; bottom: auto; }
  .hero__wave-img--2 { top: 529px; bottom: auto; }
  .hero__wave-img--3 { top: 571px; bottom: auto; }

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

  .travel-report__list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    border-right: 1px dashed var(--color-border-black-01);
    scrollbar-width: none;
  }

  .travel-report__list::-webkit-scrollbar {
    display: none;
  }

  .news-card {
    flex-shrink: 0;
    width: 240px;
    border-left: 1px dashed var(--color-border-black-01);
    border-bottom: none;
    padding: 0 16px;
  }

  /* enjoy-block モバイル */
  .enjoy-block__inner {
    border-radius: 0;
    padding: var(--margin-block-01) 0;
  }

  .enjoy-block__head {
    flex-direction: column-reverse;
    padding: 0 var(--container-medium);
  }

  .enjoy-block__photos {
    gap: 8px;
    width: 100%;
  }

  .enjoy-block__photo {
    flex: 1;
    width: auto;
    height: auto;
    aspect-ratio: 1 / 2;
  }

  .genre-list {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-top: var(--margin-block-01);
    padding-left: var(--container-medium);
    padding-right: var(--container-medium);
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    scrollbar-width: none;
    box-sizing: border-box;
  }

  .genre-list::-webkit-scrollbar {
    display: none;
  }

  .genre-card {
    flex: none;
    width: calc((100vw - 40px) / 1.3);
  }

  /* feature-blocks モバイル */
  .feature-block {
    flex-direction: column;
  }

  .feature-block__head {
    width: 100%;
    padding: 40px var(--container-medium);
  }

  .feature-block__scroll-area {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 24px 0;
  }

  .feature-block__scroll-area::-webkit-scrollbar {
    display: none;
  }

  .feature-block__cards {
    padding: 0 var(--container-medium);
    gap: 12px;
    transform: none !important;
  }

  .purpose-card {
    flex: none;
    width: calc((100vw - 40px) / 1.3);
  }

  .feature-block__btn {
    display: none;
  }

  /* deeper-journey モバイル */
  .deeper-journey {
    padding: var(--margin-block-01) 0;
  }

  .deeper-journey__inner {
    border-radius: 0;
    padding: var(--margin-block-01) var(--container-medium);
  }

  .deeper-journey__cards {
    flex-direction: column;
    gap: 16px;
  }

  .deeper-card__media {
    height: 240px;
  }

  .enjoy__card {
    grid-template-columns: 1fr;
  }

  .enjoy__card--reverse {
    direction: ltr;
  }

  .enjoy__card-imgs {
    height: 240px;
  }

  .enjoy__spot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info__inner {
    flex-direction: column;
    padding: 0;
    column-gap: 0;
  }

  .info__side {
    width: 100%;
    padding: 0 var(--container-medium);
  }

  .info__list {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: var(--container-medium);
    border-right: 1px dashed var(--color-border-black-01);
    width: 100%;
    box-sizing: border-box;
    margin-top: var(--margin-block-01);
  }

  .info__list::-webkit-scrollbar {
    display: none;
  }

  .info-card {
    flex-shrink: 0;
    width: calc((100vw - 40px) / 1.3);
    border-left: 1px dashed var(--color-border-black-01);
    border-bottom: none;
    padding: 0 16px;
  }

  .info__btn-wrap--desktop {
    display: none; /* モバイルでは非表示 */
  }

  .info__btn-wrap--mobile {
    display: flex;
    justify-content: center;
    padding: var(--margin-block-02) var(--container-medium) 0;
  }

  /* about モバイル - background-image方式 */
  .about__map-bg {
    display: none;
  }

  .about__map {
    background-image: url('images/map_m.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: left top;
  }

  /* ===== Area Carousel モバイル ===== */

  /* navボタン非表示 */
  .area__nav { display: none; }

  /* トラック gap を 8px に */
  .area__track { gap: 8px; }

  /* スライド幅: 中央1枚 + 左右ちょい見せ */
  .area__slide {
    width: calc(100vw - 70px);
  }

  /* 先頭・末尾の実スライドにセンタリング用マージン */
  .area__slide:first-child { margin-left: 35px; }
  .area__slide:last-child  { margin-right: 35px; }

  /* カード: 縦レイアウトに変更 */
  .area-card {
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }

  /* 画像セクションを上に並べ替え */
  .area-card__imgs {
    order: -1;
    position: relative;
    width: 100%;
    height: 180px;   /* 144px画像 + 36px 円形画像はみ出し分 */
    padding: 20px 20px 0;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  /* メイン画像: 87%幅 × 144px */
  .area-card__img-main {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(87% - 10px);
    height: 144px;
    border-radius: 8px;
    right: auto;
    bottom: auto;
  }

  /* 円形画像: 74×74px、右寄せ、メイン画像と重なる */
  .area-card__img-circle {
    position: absolute;
    top: 105px;   /* 20px(card pt) + 85px(Figma offset) */
    right: 20px;
    width: 74px;
    height: 74px;
    border: 3px solid var(--color-bg-white);
    border-radius: 50%;
    z-index: 1;
  }

  /* コンテンツセクション */
  .area-card__content {
    padding: 12px 20px 30px;
    box-sizing: border-box;
    width: 100%;
    flex: none;
  }

  /* サマリーの上マージン調整 */
  .area-card__summary { margin-top: 8px; }

  /* ボタンの上マージン調整 */
  .area-card__btn { margin-top: 16px; }
}
