/* ============================================ */
/* Reset / Base                                 */
/* ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #ffffff;
}

/* ============================================ */
/* Page Wrapper                                 */
/* ============================================ */
.page {
  width: 100%;
  min-height: 100vh;
}

/* ============================================================ */
/*                                                              */
/*  Site Header — Desktop Only (768px+)                         */
/*  固定ヘッダー：ロゴ左・ナビ右                                 */
/*                                                              */
/* ============================================================ */

/* モバイルではヘッダー非表示 */
.site-header {
  display: none;
}

/* ============================================================ */
/*  Tablet Header (768px — 1199px)                              */
/*  コンパクトヘッダー：ナビのみ右寄せ・ロゴなし                  */
/* ============================================================ */
.tablet-header {
  display: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tablet-header {
    display: block;
    position: sticky;
    position: sticky;
    --sticky-top: 60px;
    top: var(--sticky-top);
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  .tablet-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px;
    height: 64px;
  }
  .tablet-header__nav {
    display: flex;
    align-items: center;
  }
  .tablet-header__nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 74.8px;
    height: 52px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-radius: 8px;

  }
  .tablet-header__nav-item:hover {
    background-color: rgba(0, 199, 221, 0.3);

  }
  .tablet-header__nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .tablet-header__nav-icon--topics {
    width: 32px;
    height: 30px;
  }
  .tablet-header__nav-icon--report {
    width: 32px;
    height: 30px;
  }
  .tablet-header__nav-icon--explore {
    width: 28px;
    height: 30px;
  }
  .tablet-header__nav-icon--about {
    width: 21px;
    height: 30px;
  }
  .tablet-header__nav-icon--park {
    width: 25px;
    height: 30px;
  }
  .tablet-header__nav-icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .tablet-header__nav-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.2;
    color: #666666;
    text-align: center;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .site-header {
    display: block;
    position: sticky;
    --sticky-top: 60px;
    top: var(--sticky-top);
    z-index: 1000;
    background-color: rgba(255, 255, 255);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 32px;
    min-height: 80px;
  }

  /* ---- Logo ---- */
  .site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .site-header__logo-img {
    height: 69px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  /* ---- Navigation ---- */
  .site-header__nav {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .site-header__nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 124px;
    height: 80px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-radius: 8px;

  }

  .site-header__nav-item:hover {
    background-color: rgba(0, 199, 221, 0.3);

  }

  /* ---- Nav Icon ---- */
  .site-header__nav-icon {
    display: block;
    object-fit: contain;
    height: 42px;
    width: auto;
  }

  .site-header__nav-icon--topics {
    height: 47px;
  }

  .site-header__nav-icon--report {
    height: 47px;
    width: 52px;
    object-fit: cover;
  }

  .site-header__nav-icon--explore {
    height: 47px;
  }

  .site-header__nav-icon--about {
    height: 47px;
  }

  .site-header__nav-icon--park {
    height: 47px;
  }

  /* ---- Nav Label ---- */
  .site-header__nav-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #666666;
    text-align: center;
    white-space: nowrap;
  }
}

/* ---- scroll-padding for sticky header ---- */
@media (min-width: 768px) and (max-width: 1199px) {
  html {
    scroll-padding-top: 72px;
  }
}
@media (min-width: 1200px) {
  html {
    scroll-padding-top: 136px;
  }
}

/* ============================================ */
/* Hero Section                                 */
/* ============================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ============================================ */
/* Background Illustration                      */
/* ============================================ */
.hero__bg {
  pointer-events: none;
  user-select: none;
}

.hero__bg-img {
  display: block;
  max-width: none;
}

/* ============================================ */
/* Content Overlay                              */
/* ============================================ */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ============================================ */
/* Logo                                         */
/* ============================================ */
.hero__logo {
  display: flex;
  align-items: center;
}

.hero__logo-inner {
  position: relative;
  flex-shrink: 0;
}

.hero__logo-img {
  position: absolute;
  inset: 0;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ============================================ */
/* Heading                                      */
/* ============================================ */
.hero__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #333333;
  white-space: pre-wrap;
}

/* ============================================ */
/* Sub Heading                                  */
/* ============================================ */
.hero__subheading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #00c7dd;
  letter-spacing: 0.32px;
}

/* ============================================ */
/* Body Text                                    */
/* ============================================ */
.hero__body--mobile {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #333333;
  font-style: normal;
  white-space: pre-wrap;
}
.hero__body--desktop {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #333333;
  font-style: normal;
  white-space: pre-wrap;
}

/* ============================================ */
/* CTA Button                                   */
/* ============================================ */
.hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #00c7dd;
  border-radius: 29.5px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s ease;
}

.hero__btn:hover {
  transform: scale(1.05);
  cursor: pointer;
  transition: transform 300ms ease;   
}

.hero__btn:active {
  transform: scale(0.98);
}

.hero__btn-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.32px;
  white-space: nowrap;
  line-height: 1;
}

.hero__btn-arrow {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.hero__btn-arrow-svg {
  display: block;
  width: 100%;
  height: 100%;
}


/* ============================================================ */
/*                                                              */
/*  MOBILE (default — < 768px)                                  */
/*  モバイル版：画像上部 + コンテンツ下部の縦積みレイアウト       */
/*                                                              */
/* ============================================================ */

/* --- Hero --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
}

/* --- Background (モバイル: 上部に表示、幅に追従) --- */
.hero__bg {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 268;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__bg-img {
  position: absolute;
  height: 125.33%;
  left: -76.41%;
  top: -0.14%;
  width: 176.39%;
}

/* --- Content (モバイル: フル幅) --- */
.hero__content {
  width: 100%;
  gap: 0;
}

/* --- Logo (モバイル: 幅に追従) --- */
.hero__logo {
  padding: 0 8.2%;
  width: 100%;
  flex-shrink: 0;
}

.hero__logo-inner {
  height: auto;
  width: 100%;
  max-width: 329px;
  aspect-ratio: 329 / 53;
}

/* --- Heading (モバイル: 幅に追従) --- */
.hero__heading {
  font-size: clamp(16px, 5.13vw, 20px);
  line-height: 1.75;
  padding: 4.1% 8.2% 0;
}

/* --- Sub Heading (モバイル: 幅に追従) --- */
.hero__subheading {
  font-size: clamp(13px, 4.1vw, 16px);
  line-height: 1.7;
  padding: 2% 8.2% 0;
}

.hero__subheading--desktop {
  display: none;
  white-space: nowrap;
}

.hero__subheading--mobile {
  display: block;
}

/* --- Body Text (モバイル: 幅に追従) --- */
.hero__body--mobile {
  font-size: clamp(12px, 3.59vw, 14px);
  line-height: 1.6;
  letter-spacing: 0.28px;
  padding: 2% 8.2% 0;
}

/* --- Button (モバイル: フル幅、幅に追従) --- */
.hero__btn {
  width: calc(100% - 16.4%);
  height: 56px;
  margin: 32px 8.2% 8.2%;
}

.hero__btn-label {
  font-size: 16px;
}


/* ============================================================ */
/*                                                              */
/*  DESKTOP (768px+)                                            */
/*  デスクトップ版：全幅背景 + 左寄せテキストオーバーレイ        */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  /* --- Hero (タブレット: 自動高さ、背景オーバーレイ) --- */
  .hero {
    display: block;
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    max-height: none;
    overflow: hidden;
  }

  /* --- Background (全面背景) --- */
  .hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .hero__bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center right;
  }

  /* --- Content (左寄せオーバーレイ) --- */
  .hero__content {
    position: relative;
    z-index: 1;
    max-width: none;
    width: auto;
    padding: 108px 80px;
    gap: 0;
    height: auto;
    justify-content: flex-start;
  }

  /* --- Logo (タブレット: Figma 431×69) --- */
  .hero__logo {
    height: 69px;
    padding: 0;
    width: auto;
    margin-bottom: 17px;
  }

  .hero__logo-inner {
    height: 69px;
    width: 431px;
    max-width: none;
    aspect-ratio: auto;
  }

  /* --- Heading (タブレット: 40px, フル幅で自然折り返し) --- */
  .hero__heading {
    font-size: 40px;
    line-height: 1.35;
    padding: 0;
    margin-top: 0;
    margin-bottom: 38px;
    max-width: none;
  }

  /* --- Sub Heading (タブレット: 28px シアン) --- */
  .hero__subheading--desktop {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.28px;
    padding: 0;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .hero__subheading--desktop {
    display: block;
  }

  .hero__subheading--mobile {
    display: none;
  }

  /* --- Body Text (タブレット: 24px) --- */
  .hero__body--desktop {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.32px;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.48px;
    margin-top: 0;
    margin-bottom: 56px;
    max-width: none;
  }

  /* --- Button (タブレット: 自動幅) --- */
  .hero__btn {
    width: auto;
    height: 56px;
    margin: 0;
    padding: 17px 46px;
    align-self: flex-start;
  }

  .hero__btn-label {
    font-size: 16px;
  }
}


/* ============================================================ */
/*                                                              */
/*  LARGE DESKTOP (1200px+)                                     */
/*  デスクトップ：全幅ヒーロー + フォント拡大                     */
/*                                                              */
/* ============================================================ */
@media (min-width: 1200px) {
  .hero {
    min-height: 600px;
    height: 100vh;
    max-height: 800px;
  }
  .hero__content {
    padding: 80px 120px;
     height: 100%;
    justify-content: center;
  }
  .hero__logo {
    height: 53.127px;
    margin-bottom: 32px;
  }
  .hero__logo-inner {
    height: 53px;
    width: 329px;
    max-width: none;
    aspect-ratio: auto;
  }
  .hero__heading {
    font-size: 32px;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 800px;
  }
    .hero__subheading {
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.32px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .hero__subheading--desktop {
    margin-bottom: 16px;
  }
  .hero__body--desktop {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0.32px;
    margin-top: 0;
    margin-bottom: 32px;
    max-width: 500px;
  }
  .hero__btn {
    width: 280px;
    margin-top: 0;
    align-self: auto;
  }
}

/* ============================================================ */
/*                                                              */
/*  Topics Section — Common Styles                              */
/*                                                              */
/* ============================================================ */
.topics {
  background-color: #F9F9F9;
  width: 100%;
}

.topics__en-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: rgba(128, 190, 52, 0.4);
  line-height: 1;
}

.topics__ja-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #666666;
}

.topics__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  white-space:pre-line ;
}


/* ============================================================ */
/*                                                              */
/*  Topics — MOBILE (default < 768px)                           */
/*  左寄せ・コンパクト表示                                       */
/*                                                              */
/* ============================================================ */
.topics__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.topics__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.topics__en-title {
  font-size: 60px;
  letter-spacing: 0.96px;
  text-align: left;
  line-height: 0.6;
}

.topics__ja-title {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: left;
}

.topics__description {
  font-size: 14px;
  letter-spacing: 0.28px;
  text-align: left;
  margin-top: 8px;
}


/* ============================================================ */
/*                                                              */
/*  Topics — DESKTOP (768px+)                                   */
/*  中央寄せ・大きめ表示                                         */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .topics__inner {
    max-width: none;
    padding: 100px 32px 0px;
    align-items: center;
    gap: 32px;
  }

  .topics__heading-group {
    align-items: center;
  }

  .topics__en-title {
    font-size: 96px;
    letter-spacing: 1.92px;
    text-align: center;
  }

  .topics__ja-title {
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0.36px;
    text-align: center;
  }

  .topics__description {
    font-size: 22px;
    letter-spacing: 0.44px;
    text-align: center;
    margin-top: 0;
  }
}

/* ============================================================ */
/*  Topics — LARGE DESKTOP (1200px+)                            */
/* ============================================================ */
@media (min-width: 1200px) {

  .topics__inner {
    padding: 140px 80px 56px;
  }
}


/* ============================================================ */
/*                                                              */
/*  Report Section — Common Styles                              */
/*                                                              */
/* ============================================================ */
.report {
  background-color: #ffffff;
  width: 100%;
}

.report__en-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: rgba(213, 20, 44, 0.2);
  line-height: 1;
}

.report__ja-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #666666;
}

.report__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  white-space: pre-line;
}


/* ============================================================ */
/*                                                              */
/*  Report — MOBILE (default < 768px)                           */
/*  左寄せ・コンパクト表示                                       */
/*                                                              */
/* ============================================================ */
.report__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.report__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.report__en-title {
  font-size: 60px;
  letter-spacing: 0.96px;
  text-align: left;
  line-height: 0.6;
}

.report__ja-title {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: left;
}

.report__description {
  font-size: 14px;
  letter-spacing: 0.28px;
  text-align: left;
  margin-top: 8px;
}


/* ============================================================ */
/*                                                              */
/*  Report — DESKTOP (768px+)                                   */
/*  中央寄せ・大きめ表示                                         */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .report__inner {
    max-width: none;
    padding: 100px 32px 40px;
    align-items: center;
    gap: 32px;
  }

  .report__heading-group {
    align-items: center;
  }

  .report__en-title {
    font-size: 96px;
    letter-spacing: 1.92px;
    text-align: center;
  }

  .report__ja-title {
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0.36px;
    text-align: center;
  }

  .report__description {
    font-size: 22px;
    letter-spacing: 0.44px;
    text-align: center;
    margin-top: 0;
  }
}

/* ============================================================ */
/*  Report — LARGE DESKTOP (1200px+)                            */
/* ============================================================ */
@media (min-width: 1200px) {

  .report__inner {
    padding: 140px 80px 56px;
  }
}


/* ============================================================ */
/*                                                              */
/*  Card List Section — Common Styles                           */
/*                                                              */
/* ============================================================ */
.card-list-topics {
  background-color:#F9F9F9;
  width: 100%;
}
.card-list-report {
  background-color:#FFFFFF;
  width: 100%;
}

.card-list__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Card --- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 300ms ease;
}

.card:hover {
  transform: scale(1.05);
}

.card__image-area {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
}

.card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  border-radius: 0 0 16px 16px;
}

.card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #333333;
  white-space: pre-wrap;
}

.card__chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

/* --- Chip (共通) --- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px 4px 12px;
  border-radius: 8px;
  border: 1px solid;
  white-space: nowrap;
}

.chip__icon {
  display: block;
  flex-shrink: 0;
}

.chip__icon--pin {
  width: 12px;
  height: 16px;
}

.chip__icon--book {
  width: 16px;
  height: 16px;
}

.chip__text {
  font-family: 'Hiragino Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
}

.chip--park {
  background-color: rgba(0, 160, 149, 0.1);
  border-color: #00a095;
}

.chip--park .chip__text {
  color: #00a095;
}

.chip--report {
  background-color: rgba(240, 111, 17, 0.1);
  border-color: #f06f11;
}

.chip--report .chip__text {
  color: #f06f11;
}
.chip--notice {
  background-color: rgba(0, 199, 221, 0.05);
  border-color: #00c7dd;
}

.chip--notice .chip__text {
  color: #00c7dd;
}

/* ベルアイコン: モバイル/デスクトップ切替 */
.chip__icon--bell-mobile {
  display: block;
  width: 14px;
  height: 14px;
}
.chip__icon--bell-desktop {
  display: none;
  width: 17px;
  height: 17px;
}



/* --- NEW Tag --- */
.card__new-tag {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

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

/* --- List Button (共通) --- */
.card-list__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #00c7dd;
  border-radius: 29.5px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s ease;
}

.card-list__btn:hover {
  transform: scale(1.05);
  cursor: pointer;
  transition: transform 300ms ease;  
}

.card-list__btn:active {
  transform: scale(0.98);
}

.card-list__btn-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.32px;
  white-space: nowrap;
  line-height: 1;
  font-size: 16px;
}

.card-list__btn-arrow {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.card-list__btn-arrow-svg {
  display: block;
  width: 100%;
  height: 100%;
}


/* ============================================================ */
/*                                                              */
/*  Card List — MOBILE (default < 768px)                        */
/*  縦積み・フル幅カード                                         */
/*                                                              */
/* ============================================================ */
.card-list__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0 48px 32px;
}

.card-list__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.card {
  width: 100%;
}

.card__image-area {
  aspect-ratio: 253 / 86.44;
}

.card__body {
  padding: 8px 16px 16px;
}

.card__title {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.28px;
  padding-top: 4px;
}

.chip__text {
  font-size: 12px;
  letter-spacing: 0.24px;
  line-height: 1;
}

.chip__icon--pin {
  width: 12px;
  height: 16px;
}

.chip__icon--book {
  width: 14px;
  height: 14px;
}

.chip {
  padding: 4px 16px 4px 12px;
}

.card__new-tag {
  width: 48px;
  height: 48px;
}

/* --- Button (モバイル: フル幅) --- */
.card-list__action {
  width: 100%;
  padding: 32px 0 0;
}

.card-list__btn {
  width: 100%;
  height: 56px;
}

/* ============================================================ */
/*                                                              */
/*  Card List — TABLET (768px+)                                */
/*  横3列グリッド・中央寄せ                                      */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .card-list__inner {
    max-width: 1200px;
    padding: 0 24px 48px;
  }

  .card-list__grid {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    width: 100%;
    align-items:center;
  }

  .card {
    width: 346px;
    flex-shrink: 0;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  }

  .card__image-area {
    height: 118px;
    aspect-ratio: auto;
  }

  .card__body {
    padding: 16px 24px 24px;
    flex: 1;
  }

  .card__title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.4px;
    padding-top: 4px;
  }

  .chip__text {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  .chip__icon--book {
    width: 16px;
    height: 16px;
  }
  /* デスクトップ: ベルアイコン切替 */
  .chip__icon--bell-mobile {
    display: block;
  }
  .chip__icon--bell-desktop {
    display: block;
  }
  .chip {
    padding: 8px 16px 8px 12px;
    min-height: 32px;
  }

  .card__new-tag {
    width: 60px;
    height: 60px;
  }

  /* --- Button (デスクトップ: 自動幅・中央) --- */
  .card-list__action {
    width: auto;
    padding: 48px 0 0;
  }

  .card-list__btn {
    width: auto;
    height: 49px;
    padding: 17px 46px;
  }
}



/* ============================================================ */
/*                                                              */
/*  Card List — DESKTOP (1200px+)                                */
/*  横3列グリッド・中央寄せ                                      */
/*                                                              */
/* ============================================================ */
@media (min-width: 1200px) {

  .card-list__inner {
    max-width: 1200px;
    padding: 0 24px 48px;
  }

  .card-list__grid {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    width: 100%;
    align-items:normal;
  }

  .card {
    width: 346px;
    flex-shrink: 0;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  }

  .card__image-area {
    height: 118px;
    aspect-ratio: auto;
  }

  .card__body {
    padding: 16px 24px 24px;
    flex: 1;
  }

  .card__title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.4px;
    padding-top: 4px;
  }

  .chip__text {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  .chip__icon--book {
    width: 16px;
    height: 16px;
  }
  /* デスクトップ: ベルアイコン切替 */
  .chip__icon--bell-mobile {
    display: block;
  }
  .chip__icon--bell-desktop {
    display: block;
  }
  .chip {
    padding: 8px 16px 8px 12px;
    min-height: 32px;
  }

  .card__new-tag {
    width: 60px;
    height: 60px;
  }

  /* --- Button (デスクトップ: 自動幅・中央) --- */
  .card-list__action {
    width: auto;
    padding: 48px 0 0;
  }

  .card-list__btn {
    width: auto;
    height: 49px;
    padding: 17px 46px;
  }
}


/* ============================================================ */
/*                                                              */
/*  Explore Section — Common Styles                             */
/*                                                              */
/* ============================================================ */
.explore {
  background-color: #F9F9F9;
  width: 100%;
}

.explore__en-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: rgba(244, 232, 39, 0.6);
  line-height: 1;
}

.explore__ja-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #666666;
}

.explore__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  white-space: pre-line;
}

/* デスクトップ用改行：モバイルでは非表示 */
.explore__br-desktop {
  display: none;
}


/* ============================================================ */
/*                                                              */
/*  Explore — MOBILE (default < 768px)                          */
/*  左寄せ・コンパクト表示                                       */
/*                                                              */
/* ============================================================ */
.explore__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.explore__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.explore__en-title {
  font-size: 60px;
  letter-spacing: 0.96px;
  text-align: left;
  line-height: 0.6;
}

.explore__ja-title {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: left;
}

.explore__description {
  font-size: 14px;
  letter-spacing: 0.24px;
  text-align: left;
  margin-top: 8px;
}


/* ============================================================ */
/*                                                              */
/*  Explore — DESKTOP (768px+)                                  */
/*  中央寄せ・大きめ表示                                         */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .explore__inner {
    max-width: none;
    padding: 40px 32px;
    align-items: center;
    gap: 32px;
  }

  .explore__heading-group {
    align-items: center;
  }

  .explore__en-title {
    font-size: 96px;
    letter-spacing: 1.92px;
    text-align: center;
  }

  .explore__ja-title {
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0.36px;
    text-align: center;
  }

  .explore__description {
    font-size: 22px;
    letter-spacing: 0.44px;
    text-align: center;
    margin-top: 0;
  }

  .explore__br-desktop {
    display: inline;
  }
}

/* ============================================================ */
/*  Explore — LARGE DESKTOP (1200px+)                           */
/* ============================================================ */
@media (min-width: 1200px) {

  .explore__inner {
    padding: 140px 80px 56px;
  }
}


/* ============================================================ */
/*                                                              */
/*  Category Section — Common Styles                            */
/*                                                              */
/* ============================================================ */
.category {
  background-color: #F9F9F9;
  width: 100%;
}

.category__inner {
  margin: 0 auto;
}

.category__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ---- Category Header (icon + name) ---- */
.category__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
}

.category__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #00c7dd;
  text-align: center;
  line-height: 1.7;
  margin: 0;
}

/* ---- Category Icon Containers ---- */
.category__icon {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.category__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* アクティビティ: 恐竜キャラ (30×47 Figma) */
.category__icon--activity {
  width: 45px;
  height: 47px;
}

/* なぞとき: はてなマーク鳥 (42×42 Figma) */
.category__icon--nazotoki {
  width: 42px;
  height: 42px;
}

/* 防災クイズ: ヘルメット (50×40 Figma) */
.category__icon--bousai {
  width: 50px;
  height: 50px;
}

/* 自然にふれる: 木 (42×34 Figma) */
.category__icon--nature {
  width: 50px;
  height: 40px;
}

/* スポット巡りピンアイコン（デスクトップ専用） */
.category__icon--spot {
  width: 42px;
  height: 47px;
}

/* ---- Responsive Show/Hide Utility ---- */
.category__show-desktop {
  display: none !important;
}

.category__show-mobile {
  display: flex;
}

/* ---- Items Container ---- */
.category__items {
  display: flex;
  width: 100%;
}

/* ---- Single Item ---- */
.category__item {
  display: flex;
}

.category__item-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #f5f5f5;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

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

.category__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.category__item-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  color: #333333;
  white-space: pre-wrap;
}

/* spot グループ: デスクトップでは通常のnatureアイコンを非表示 */
/* (desktopName が設定されているグループ用) */


/* ============================================================ */
/*                                                              */
/*  Category — MOBILE (default < 768px)                         */
/*  単一カラム・横並びリスト表示                                  */
/*                                                              */
/* ============================================================ */
.category__inner {
  max-width: 390px;
  padding: 0px 32px 60px;
}

.category__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category__name {
  font-size: 20px;
  letter-spacing: 0.4px;
}

/* Items: 縦積みリスト */
.category__items {
  flex-direction: column;
  gap: 16px;
}

/* Item: 横並び (画像左 + 情報右) */
.category__item {
  flex-direction: row;
  align-items: flex-start;
}

.category__item-img {
  width: 88px;
  height: 88px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.category__item-body {
  flex: 1;
  padding: 8px 12px 16px 24px;
}

.category__item-title {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.28px;
  padding-top: 4px;
}


/* ============================================================ */
/*                                                              */
/*  Category — DESKTOP (768px+)                                 */
/*  2カラムグリッド・カード形式表示                               */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .category__inner {
    max-width: 1200px;
    padding: 40px 32px;
  }

  .category__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px 40px;
  }

  .category__group {
    gap: 24px;
    align-items: center;
  }

  /* ヘッダー: 縦積み（アイコン上・名前下） */
  .category__header {
    flex-direction: column;
    gap: 8px;
  }

  .category__name {
    font-size: 24px;
    letter-spacing: 0.48px;
  }

  /* アイコン拡大 */
  .category__icon--activity {
    width: 80px;
    height: 80px;
  }

  .category__icon--nazotoki {
    width: 80px;
    height: 80px;
  }

  .category__icon--bousai {
    width: 80px;
    height: 80px;
  }

  .category__icon--nature {
    width: 80px;
    height: 80px;
  }

  .category__icon--spot {
    width: 80px;
    height: 80px;
  }

  /* Show/Hide切り替え */
  .category__show-desktop {
    display: flex !important;
  }

  .category__show-mobile {
    display: none !important;
  }

  /* Items: 横2列 */
  .category__items {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }

  /* Item: 縦積みカード */
  .category__item {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
  }

  .category__item-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .category__item-body {
    padding: 8px 0 0;
    flex: none;
    width: 100%;
  }

  .category__item-title {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.28px;
    padding-top: 0;
  }
}


/* ============================================================ */
/*  Category — LARGE DESKTOP (1200px+)                          */
/* ============================================================ */
@media (min-width: 1200px) {

  .category__inner {
    padding: 8px 80px 56px;
  }

  .category__grid {
    gap: 64px 80px;
  }

  .category__name {
    font-size: 28px;
    letter-spacing: 0.56px;
  }

  .category__item-title {
    font-size: 18px;
    letter-spacing: 0.32px;
  }
}


/* ============================================================ */
/*                                                              */
/*  About Section — Common Styles                               */
/*                                                              */
/* ============================================================ */
.about {
  background-color: #ffffff;
  width: 100%;
}

.about__en-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: rgba(213, 20, 44, 0.2);
  line-height: 1;
  white-space: pre-wrap;
  line-height: 0.6;
}

.about__ja-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #666666;
  line-height: 1.4;
  margin-left: -10px; /* 左に10pxずらす */  
}

.about__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  white-space: pre-line;
}

.about__description p {
  margin: 0;
}


/* ============================================================ */
/*                                                              */
/*  About — MOBILE (default < 768px)                            */
/*  左寄せ・コンパクト表示（Topics / Report と同パターン）        */
/*                                                              */
/* ============================================================ */
.about__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.about__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.about__en-title {
  font-size: 60px;
  letter-spacing: 0.96px;
  text-align: left;
}

.about__ja-title {
  font-size: 20px;
  letter-spacing: 0.2px;
  text-align: left;
}

.about__description {
  font-size: 14px;
  letter-spacing: 0.24px;
  text-align: left;
}


/* ============================================================ */
/*                                                              */
/*  About — DESKTOP (768px+)                                    */
/*  中央寄せ・大きめ表示                                         */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .about__inner {
    max-width: none;
    padding: 100px 32px 40px;
    align-items: center;
    gap: 32px;
  }

  .about__heading-group {
    align-items: center;
  }

  .about__en-title {
    font-size: 96px;
    letter-spacing: 1.92px;
    text-align: center;
  }

  .about__ja-title {
    font-size: 36px;
    letter-spacing: 0.36px;
    text-align: center;
  }

  .about__description {
    font-size: 22px;
    letter-spacing: 0.44px;
    text-align: center;
  }
}


/* ============================================================ */
/*  About — LARGE DESKTOP (1200px+)                             */
/* ============================================================ */
@media (min-width: 1200px) {

  .about__inner {
    padding: 140px 80px 56px;
  }
}


/* ============================================================ */
/*                                                              */
/*  About List Section — Common Styles                          */
/*  新デザイン: 画像上部 + 番号バッジ + 見出し + 説明の縦積み           */
/*                                                              */
/* ============================================================ */
.about-list {
  background-color: #ffffff;
  width: 100%;
}

/* ---- Card ---- */
.about-list__card {
  position: relative;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ---- Image Area (画像 + 番号バッジ) ---- */
.about-list__card-img-area {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.about-list__card-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
}

/* ---- Info Area (見出し + 説明) ---- */
.about-list__card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  width: 100%;
}

/* ---- Heading ---- */
.about-list__card-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  color: #333333;
  text-align: center;
  width: 100%;
  margin: 0;
  line-height: 1.4;
}

/* ---- Description ---- */
.about-list__card-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  white-space: pre-line;
}

.about-list__card-desc p {
  margin: 0;
}



/* ============================================================ */
/*                                                              */
/*  About List — MOBILE (default < 768px)                       */
/*  縦1列・フル幅カード                                            */
/*                                                              */
/* ============================================================ */
.about-list__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-list__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

/* Info section */
.about-list__card-info {
  gap: 12px;
}

.about-list__card-heading {
  font-size: 18px;
  letter-spacing: 0px;
}

.about-list__card-desc {
  font-size: 14px;
  letter-spacing: 0.28px;
  min-height: 68px;
}

/* Bottom section */
.about-list__card-bottom {
  flex: 1;
  min-height: 0;
}

.about-list__card-img-wrap {
  width: 182px;
  height: 128px;
}


/* ============================================================ */
/*                                                              */
/*  About List — TABLET (768px+)                               */
/*  2×2グリッド・552px固定幅カード（Figma準拠）                  */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .about-list__inner {
    padding: 64px 120px;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-list__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
  }

  .about-list__card {
    width: 552px;
  }

   /* Info section */
  .about-list__card-info {
    gap: 24px;
    padding: 0 16px;
  }

  .about-list__card-heading {
    font-size: 32px;
    letter-spacing: 0.36px;
  }

  .about-list__card-desc {
    font-size: 22px;
    letter-spacing: 0.48px;
    height: auto;
  }
}
/* ============================================================ */
/*                                                              */
/*  About List — DESKTOP (768px+)                               */
/*  2×2グリッド・552px固定幅カード（Figma準拠）                  */
/*                                                              */
/* ============================================================ */
@media (min-width: 1200px) {

  .about-list__inner {
    padding: 64px 120px;
    max-width: none;
    justify-content: center;
  }

  .about-list__grid {
    display: inline-grid;
    grid-template-columns: repeat(2, auto);
    gap: 48px;
    width: auto;
  }

  .about-list__card {
    width: 552px;
  }

   /* Info section */
  .about-list__card-info {
    gap: 24px;
    padding: 0 16px;
  }

  .about-list__card-heading {
    font-size: 32px;
    letter-spacing: 0.36px;
  }

  .about-list__card-desc {
    font-size: 22px;
    letter-spacing: 0.48px;
    height: auto;
  }
}

/* ============================================================ */
/*                                                              */
/*  About Text Section — Common Styles                          */
/*                                                              */
/* ============================================================ */
.about-text {
  background-color: #ffffff;
  width: 100%;
}

/* ---- Item ---- */
.about-text__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

/* ---- Header (バー + ラベル) ---- */
.about-text__header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-text__bar {
  display: block;
  width: 7px;
  height: 36px;
  background-color: #00c7dd;
  flex-shrink: 0;
}

.about-text__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

/* ---- Value (説明テキスト) ---- */
.about-text__value {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  width: 100%;
}

.about-text__value p {
  margin: 0;
}


/* ============================================================ */
/*                                                              */
/*  About Text — MOBILE (default < 768px)                       */
/*  左寄せ・コンパクト表示                                       */
/*                                                              */
/* ============================================================ */
.about-text__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 32px;
}

.about-text__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: flex-start;
}

.about-text__item {
  padding: 8px 0;
}

.about-text__label {
  font-size: 16px;
  letter-spacing: 0.32px;
}

.about-text__value {
  font-size: 14px;
  letter-spacing: 0.28px;
}


/* ============================================================ */
/*                                                              */
/*  About Text — DESKTOP (768px+)                               */
/*  中央寄せ・大きめ表示                                         */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .about-text__inner {
    max-width: 1200px;
    padding: 0px 100px 100px 100px;
  }

  .about-text__label {
    font-size: 24px;
    letter-spacing: 0.48px;
  }

  .about-text__value {
    font-size: 22px;
    letter-spacing: 0.44px;
  }
}


/* ============================================================ */
/*  About Text — LARGE DESKTOP (1200px+)                        */
/* ============================================================ */
@media (min-width: 1200px) {

  .about-text__inner {
    padding: 24px 120px 100px 100px;
  }
}


/* ============================================================ */
/*                                                              */
/*  Store Badge Section — Common Styles                         */
/*                                                              */
/* ============================================================ */
.store-badge {
  background-color: #F9F9F9;
  width: 100%;
}

.store-badge__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.store-badge__item a {
  display: block;
  transition: transform 300ms ease;
}
.store-badge__item a:hover {
  transform: scale(1.05); 
}


/* ============================================================ */
/*                                                              */
/*  Store Badge — MOBILE (default < 768px)                      */
/*  縦並び・中央寄せ                                             */
/*                                                              */
/* ============================================================ */
.store-badge__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 48px 88px;
}

.store-badge__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.store-badge__item {
  position: relative;
  width: 100%;
}


/* ============================================================ */
/*                                                              */
/*  Store Badge — DESKTOP (768px+)                              */
/*  横並び・中央寄せ                                             */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .store-badge__inner {
    max-width: 1200px;
    padding: 64px 120px;
  }

  .store-badge__grid {
    flex-direction: row;
    gap: 60px;
    justify-content: center;
  }

  .store-badge__item {
    width: auto;
    flex-shrink: 0;
  }

  .store-badge__item:first-child {
    width: 268px;
    height: 89px;
  }

  .store-badge__item:last-child {
    width: 298px;
    height: 89px;
  }
}


/* ============================================================ */
/*                                                              */
/*  Park Section — Common Styles                                */
/*                                                              */
/* ============================================================ */
.parks {
  background-color: #ffffff;
  width: 100%;
}

.park__en-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: rgba(128, 190, 52, 0.3);
  line-height: 0.6;
}

.park__ja-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #666666;
  margin: 0;
}

.park__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  white-space: pre-line;
}

/* ---- Responsive Show/Hide ---- */
.park__show-desktop {
  display: none !important;
}

.park__show-mobile {
  display: block;
}


/* ============================================================ */
/*                                                              */
/*  Park — MOBILE (default < 768px)                             */
/*  左寄せ・コンパクト表示                                       */
/*                                                              */
/* ============================================================ */
.park__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.park__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.park__en-title {
  font-size: 60px;
  letter-spacing: 0.96px;
  text-align: left;
}

.park__ja-title {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: left;
}

.park__description {
  font-size: 14px;
  letter-spacing: 0.24px;
  text-align: left;
  margin-top: 8px;
}


/* ============================================================ */
/*                                                              */
/*  Park — DESKTOP (768px+)                                     */
/*  中央寄せ・大きめ表示                                         */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .park__inner {
    max-width: none;
    padding: 100px 32px 40px;
    align-items: center;
    gap: 32px;
  }

  .park__heading-group {
    align-items: center;
  }

  .park__en-title {
    font-size: 96px;
    letter-spacing: 1.92px;
    text-align: center;
  }

  .park__ja-title {
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0.36px;
    text-align: center;
  }

  .park__description {
    font-size: 22px;
    letter-spacing: 0.44px;
    text-align: center;
    margin-top: 0;
  }

  /* Show/Hide切り替え */
  .park__show-desktop {
    display: block !important;
  }

  .park__show-mobile {
    display: none !important;
  }
}

/* ============================================================ */
/*  Park — LARGE DESKTOP (1200px+)                              */
/* ============================================================ */
@media (min-width: 1200px) {

  .park__inner {
    padding: 140px 80px 56px;
  }
}


/* ============================================================ */
/*                                                              */
/*  Park List Section — Common Styles                           */
/*                                                              */
/* ============================================================ */
.park-list {
  background-color: #ffffff;
  width: 100%;
}

/* ---- 仮名グループ行 ---- */
.park-list__group {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* ---- 仮名バッジ ---- */
.park-list__kana-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.park-list__kana-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #666666;
  flex-shrink: 0;
}

.park-list__kana {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.7;
  text-align: center;
}

/* ---- チップ群 ---- */
.park-list__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  align-content: flex-start;
}

/* ---- 個別チップ ---- */
.park-list__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 160, 149, 0.1);
  border: 1px solid #00a095;
  border-radius: 8px;
  white-space: nowrap;
}

.park-list__chip-icon {
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 16px;
}

.park-list__chip-text {
  font-family: 'Hiragino Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #00a095;
  line-height: 1;
  white-space: nowrap;
}


/* ============================================================ */
/*                                                              */
/*  Park List — MOBILE (default < 768px)                        */
/*  縦一列、各グループ横並び（badge + チップ列）                  */
/*                                                              */
/* ============================================================ */
.park-list__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0 32px 32px;
}

.park-list__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.park-list__group {
  gap: 12px;
}

.park-list__kana-badge {
  width: 29px;
  height: 30px;
  border-radius: 8px;
}

.park-list__kana {
  font-size: 14px;
  letter-spacing: 0.28px;
}

.park-list__chips {
  flex: 1;
  min-width: 0;
  gap: 8px;
}

.park-list__chip {
  padding: 4px 16px 4px 12px;
}

.park-list__chip-text {
  font-size: 12px;
  letter-spacing: 0.24px;
}


/* ============================================================ */
/*                                                              */
/*  Park List — DESKTOP (768px+)                                */
/*  横幅広め、flex-wrap でチップが横に並ぶ                       */
/*                                                              */
/* ============================================================ */
@media (min-width: 768px) {

  .park-list__inner {
    max-width: 1200px;
    padding: 0 100px 48px;
  }

  .park-list__grid {
    gap: 24px;
  }

  .park-list__group {
    gap: 24px;
  }

  .park-list__kana-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .park-list__kana {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  .park-list__chips {
    gap: 16px;
  }

  .park-list__chip {
    padding: 8px 16px 8px 12px;
    min-height: 32px;
  }

  .park-list__chip-text {
    font-size: 16px;
    letter-spacing: 0.32px;
  }
}


/* ============================================================ */
/*  Park List — LARGE DESKTOP (1200px+)                         */
/* ============================================================ */
@media (min-width: 1200px) {

  .park-list__inner {
    padding: 0 80px 64px;
  }
}


/* ============================================================ */
/*                                                              */
/*  Mobile Header Navigation — Mobile Only (< 768px)           */
/*  画面上部に固定されるヘッダーナビ                              */
/*                                                              */
/* ============================================================ */

.mobile-header-nav {
  display: block;
  position: sticky;
  --sticky-top: 60px;
  top: var(--sticky-top);
  /*position: fixed;
  bottom: 0;*/
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: rgba(255,255,255);;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 8px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  width: 100%;
}

.mobile-header-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  flex: 1;
  min-width: 0;
  padding: 4px 0;
  transition: background-color 0.2s ease;
  border-radius: 8px;
}

.mobile-header-nav__item:hover {
  background-color: rgba(0, 199, 221, 0.3);
}

/* ---- Icon Container ---- */
.mobile-header-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 30px;
  flex-shrink: 0;
}

/* トピックス SVGアイコン */
.mobile-header-nav__icon--topics {
  width: 28px;
  height: 28px;
}

.mobile-header-nav__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* 画像アイコン */
.mobile-header-nav__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* アプリ概要アイコン（少し縦長） */
.mobile-header-nav__icon-img--about {
  width: 21px;
  height: 30px;
  object-fit: contain;
}

/* ---- Label ---- */
.mobile-header-nav__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.2;
  color: #666666;
  text-align: center;
  white-space: nowrap;
}

/* ---- page底余白: フッターに被らない ---- */
.page {
  padding-bottom: 72px;
}

/* ---- デスクトップではフッター非表示 & 底余白リセット ---- */
@media (min-width: 768px) {

  .mobile-header-nav {
    display: none;
  }

  .page {
    padding-bottom: 0;
  }
}
.park__link {
  transition: transform 300ms ease;
}

.park__link:hover {
  transform: scale(1.05);
  cursor: pointer; /* 指マーク（リンク）に変更する場合 */
}

/*
.tpp__dialog__disp:hover {
  transform: scale(1.05);
  cursor: pointer;
  transition: transform 300ms ease;   
}
*/
.tpp__link{
  transition: transform 300ms ease;
}

.tpp__link:hover {
  transform: scale(1.05);
  cursor: pointer; /* 指マーク（リンク）に変更する場合 */
}

.card:hover {
  cursor: pointer; /* 指マーク（リンク）に変更する場合 */
}

.tpp__anchor{
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}

@media (min-width: 1200px) {
  .tpp__anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
  }
}  