@charset "UTF-8";
/* ==========================================================================
  @layer
========================================================================== */
@layer reset, base, component, utility, pages;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }
  body {
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
  }
  img, picture, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
  }
}

@layer base {
/* ==========================================================================
  :root 変数
========================================================================== */
  :root {
    --primary-color: #3B9DCA;
    --text-color: #3B3B3B;
    --bg-color-white: #fff;
    --bg-color-gray: #F6F6F6;
    --bg-color-blue: #ECF4F8;
    --bg-color-blue2: #DEEFF6;
    --bg-color-yellow: #F9F7E6;
    --bg-color-green: #e9f5e6;
    --bg-color-orange: #F9F2E6;
    --color-yellow: #EBCE2B;
    --color-green: #4FA33A;
    --color-orange: #e6981a;
    --border-color: #6c6969;
    --logo-gray: #514f4f;
    --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --font-en: "Alegreya Sans SC", sans-serif;
    --fs-base: 1rem;
    --fs-h1: clamp(1.75rem, 5vw + 1rem, 2rem);
    --fs-h2: clamp(1.5rem, 3vw + 1rem, 2rem);
    --fs-pill: 1rem;
    --lh-base: 1.8;
    --fw-regular: 400;
    --fw-bold: 700;
    --ls-body: 0.04em;
    --ls-ui: 0.05em;
    --radius-xxs: 4px;
    --radius-xs: 10px;
    --radius-s: 20px;
    --radius-m: 30px;
    --container-max-width: 1560px;
    --container-padding: clamp(1rem, 5vw, 2.5rem);
    --space-unit: 8px;
    --space-xs: calc(var(--space-unit) * 1);    /* 8px */
    --space-s: calc(var(--space-unit) * 2);     /* 16px */
    --space-m:  calc(var(--space-unit) * 3.5);  /* 28px (S * 1.75) */
    --space-l:  clamp(30px,6.25vw,48px);    /* 48px (M * 1.7) */
    --space-xl: clamp(48px,10.417vw,80px);   /* 80px (L * 1.6) */
    --space-xxl: clamp(64px,16.667vw,128px);   /* 128px (XL * 1.6) */

    --head-text-size: clamp(1.2rem, 2.917vw, 1.4rem);

    --recent-carousel-breakpoint: 640px;
  
  }

  body {
    background-color: var(--bg-color-white);
    color: var(--text-color);
    font-family: var(--font-jp);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    letter-spacing: var(--ls-body);
    font-feature-settings: "palt";
    line-height: 1.8;
    line-break: strict;
    position: relative;
  }
  @media (max-width: 767px) {
    body {
      letter-spacing: 0.02em;
    }
  }

  a {
    text-underline-offset: 0.3em;
    text-decoration-thickness: 1px;
    color: var(--primary-color);
    transition: color .3s, text-decoration-color .3s;
  }

  ul, ol {
    /* padding-inline-start: 1.25em; */
  }
  li {
    /* margin-block: 0.5em; */
  }
  input, textarea, select, button {
    font: inherit;
  }
  input, textarea, select {
    padding: 0.5em 0.75em;
  }

  @media (min-width: 599px) {
  .prose {
    word-break: auto-phrase;
    text-wrap: pretty;
  }
    .prose {
    line-break: strict;
    word-break: normal;
    overflow-wrap: anywhere;
    }
  }
    .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }


/* =======================================================
   skip-link
======================================================== */
  .skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;

    background-color: #0055ff;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  .skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 15px 25px;
    clip: auto;
    clip-path: none;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

/* =======================================================
   section
======================================================== */
  .section {
    padding-block: clamp(60px,7.813vw,80px); /*1024*/
  }
  .page-sub .section:last-of-type:not(.spot-detail-top) {
    margin-bottom: clamp(60px,11.1vw,110px);/*991*/
  }
  .area-sections:nth-of-type(odd),
  .bg-blue {
  background: var(--bg-color-blue);
  border-radius: 30px;
  }
  .section.howto__panel {
    margin-block-start: clamp(60px, 7.813vw, 80px);
  }
  .section.spot-detail-top {
    padding-block-start: 0;
  }
  .section.about-split + .section.about-split {
    border-top: 1px dashed #999;
  }
  .bg-gray {
    background: var(--bg-color-gray);
  }
  .bg-stripe {
        background: repeating-linear-gradient(
        45deg,
        rgba(222,239,246, 0.6) 0,
        rgba(222,239,246, 0.6) 4px,
        rgba(242, 248, 251, 0.6) 4px,
        rgba(242, 248, 251, 0.6) 6px
      );
  }
  
/* =======================================================
   container
======================================================== */
.container {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  width: 100%;
  box-sizing: border-box;
}
  .-center {
    text-align: center;
  }

/* =======================================================
   h1,h2
======================================================== */
  h1:not(.logo) {
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
    line-height: 1.3;
    margin-block-end: var(--space-m);
    letter-spacing: -0.01em;
  }

  h1.logo {
    font-size: 0;
    line-height: 0;
    margin: 0;
    width: 100%;
    max-width: clamp(120px, 18.229vw, 140px);
  }
  .logo a {
    display: block;
  }
  .logo-paths path {
    fill-rule: nonzero;
  }
  .logo-main {
    fill: var(--logo-gray);
  }
  .logo-accent {
    fill: var(--primary-color);
  }
  .logo-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 46.6px;
    fill: var(--logo-gray);
  }

  h2 {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    margin-block-start: 0;
    margin-block-end: var(--space-l);
  }
}/*end @layer base*/


/* =======================================================
   @layer component
======================================================== */
@layer component {
  
/* =======================================================
   btn
======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  background: var(--text-color);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding-block: 1em;
  padding-inline: clamp(1.4em,2.745vw,2.8em);
  border: 1px solid currentColor;
  border-radius: var(--radius-xs);
  transition: all .3s;
  margin-inline: auto;
  gap:1rem;
}
.icon-btn {
  font-size: 0.9rem;
}
.btn__arrow-wrap {
  position: relative;
  width: 14px;
  height: 13px;
}
.btn__arrow {
    position: absolute;
    top: 2px;
    /* inset: 0; */
    transition: opacity .3s;
}
.btn__arrow.is-black {
  opacity: 0;
}

.btn:hover {
  background: #fff;
  color: var(--text-color);
  border: 1px solid var(--text-color)
}
.btn:hover .btn__arrow.is-white { opacity: 0; }
.btn:hover .btn__arrow.is-black { opacity: 1; }

  
  button.btn {
    appearance: none;
    -webkit-appearance: none;
    background: var(--text-color);
    border: 1px solid currentColor;
    cursor: pointer;
    font: inherit;
  }

/*======== icon-btn ==========================*/
.btn__icon {
  width: 16px;
  height: 20px;
}
.area-icon .btn__icon {
  width: 18px;
  height: 21px;
}
.theme-icon .btn__icon {
  width: 23px;
  height: 16px;
}
.about-icon .btn__icon {
  width: 18px;
  height: 26px;
}


  /* =======================================================
     header
  ======================================================== */
  .global-header {
    padding-inline: max(20px,2vw);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .header-inner {
    background-color: #fff;
    backdrop-filter: blur(8px);
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: clamp(10px, 2.143vw, 30px);
  }
  @media (max-width: 1024px) {
    .header-inner {
      height: 60px;
    }
  }
  
  /*======== global-nav ==========================*/
  .global-nav {
    font-size: 0.95rem;
  }
  .global-nav ul {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .global-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-ui);
    display: flex;
    align-items: center;
    height: 64px;
  }
  .global-nav a:hover {
    color: var(--primary-color);
  }

  /*======== current ==========================*/
  .global-nav a.current {
    color: var(--primary-color)
  }
  /*======== icon-mail ==========================*/
  .icon-mail {
    width: 44px;
    height: 44px;
  }
  @media (max-width: 1024px) {
    .icon-mail {
      margin-inline: auto;
    }
  }

  /* =======================================================
     menu
  ======================================================== */
  .menu-button {
    display: none;
  }
  .nav-list {
    display: flex;
    gap: var(--space-s);
    align-items: center;
  }
  
  @media(max-width: 1024px) {
    .menu-button {
      display: block;
      position: relative;
      z-index: 1001;
      width: 44px;
      height: 44px;
      background: none;
      border: none;
      cursor: pointer;
    }
  
    .bar {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--text-color);
      margin: 6px auto;
      position: relative;
      z-index: 1001;
      transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .global-nav {
      position: fixed;
      top: 0;
      right: calc(max(20px,2vw) * -1);
      width: calc(100% + (max(20px,2vw) * 2));
      height: 100vh;
      height: 100dvh;
      background-color: rgba(255, 255, 255, 0.98);
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transform: translateX(20px);
      transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      pointer-events: none;
    }
  
    #menu-toggle[aria-expanded="true"] + #global-nav {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      pointer-events: auto;
    }
  
    #menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    #menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
      opacity: 0;
    }
    #menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    .global-nav ul {
      gap: 0;
      margin-top: 60px;
    }
    .nav-list {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
      width: 80%;
      max-width: 600px;
      padding:  30px;
      background: var(--bg-color-blue);
      border: 3px solid var(--primary-color);
      border-radius: var(--radius-s)
    }
    .nav-list li {
      width: 100%;
    }
    .nav-list li:not(:last-child) a {
      border-bottom: 1px dashed var(--text-color);
    }
    .nav-list a {
      font-size: 1.15rem;
      font-weight: var(--fw-regular);
      display: block;
      padding-block: 1em;
      width: 100%;
      height: auto;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .global-nav, .bar {
      transition: none;
    }
  }


  /* =======================================================
     section-heading
  ======================================================== */
  .section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    letter-spacing: 0.06em;
  }
  .section-heading__en {
    font-family: var(--font-en);
    font-size: clamp(2.4rem,6.25vw,3rem);
    text-box-trim: trim-both;
    line-height: 1;
    position: relative;
    z-index: 1;
  }
  .section-heading__ja {
    font-size: var(--head-text-size);
    color: var(--primary-color)
  }
  
@media (max-width: 640px)
{
  .section-heading,
  .section-lead{
    text-align: left;
  }
}


  /* =======================================================
   area-search
  ======================================================== */
  .area-search-head {
    position: relative;
  }
  .area-search-lemon {
    width: clamp(50px,9.615vw,150px);
    height: auto;
    pointer-events: none;
    position: absolute;
    top: 30px;
    transform: translateY(-50%) rotate(340deg);
    right: 0;
  }
  @media (max-width: 1024px) {
    .area-search-lemon {
      width: clamp(100px,14.127vw,140px);
      top: 10px;
      opacity: 0.2;
      /* z-index: -1; */
    }
  }


  /* =======================================================
     area-grid
  ======================================================== */
  .page-sub .areas-nav {
    margin-bottom: clamp(60px,7.813vw,80px); /*1024*/
  }
  .area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
    gap: var(--space-m);
    padding-block-start: var(--space-l);
  }
  .page-sub .area-grid {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: var(--space-s)
  }
  .area-card {
    background-color: #fff;
    border: 3px solid var(--border-color);
    border-radius: var(--radius-xs);
    overflow:hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .page-sub .area-card {
    position: relative;
  }
  .area-card:hover,
  .area-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  }
  .area-card a {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .area-figure {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
  }
  .page-sub .area-figure {
    aspect-ratio: 16 / 9;
    max-height: 164px;
  }
  
  .area-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .area-pill {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 16px 10px 24px;
    border-radius: 14px 0 0 14px;
    white-space: nowrap;
    text-align: center;
    z-index: 2;
  }
  .page-sub .area-pill {
    right: auto;
    left: 50%;
    transform: translate(-50%,50%);
    border-radius: var(--radius-xs);
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .area-pill h3 {
    margin: 0;
    font-size: var(--fs-pill);
    font-weight: var(--fw-regular);
    line-height: 1.2;
  }
  .area-body {
    padding: calc(var(--space-m) + 0.4em) var(--space-s) var(--space-s);
    text-align: left;
  }
  .area-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
  }
  .page-sub .area-body p {
    padding-block-end: 10px;
    line-height: 1.4;
  }
  .page-sub .areas-nav .area-body {
    text-align: center;
  }
  .page-sub .area-body p::before {
    content:"";
    width:.55em;
    height:.55em;
    border-top:2px solid currentColor;
    border-right:2px solid currentColor;
    margin-left:-.35em;
    position: absolute;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%) rotate(135deg)
  }
  
  /****** media query ******/
  @media (max-width: 1024px) {
    .page-sub .area-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .page-sub .area-card a {
      display: grid;
      grid-template-columns: 28% 1fr;
      column-gap: var(--space-s);
      align-items: center;
    }
    .page-sub .area-figure {
      display: contents;
    }
    .page-sub .area-figure img {
      grid-column: 1;
      grid-row: 1 / span 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-height: 88px;
    }
    .page-sub .area-pill {
      position: static;
      transform: none;
      grid-column: 2;
      grid-row: 1;
      padding: 0;
      background: transparent;
      color: inherit;
      white-space: normal;
      text-align: left;
      color: var(--primary-color);
    }
    .page-sub .area-pill h3 {
      font-weight: 600;
      padding-block: var(--space-s) var(--space-xs)
    }
    .page-sub .area-body {
      grid-column: 2;
      grid-row: 2;
      padding: 0 var(--space-s) var(--space-s) 0;
    }
    .page-sub .area-body p {
      padding-block-end: 0;
      text-align: left;
    }
    .page-sub .area-body p::before {
      top: 50%;
      left: auto;
      right: 0.8rem;
      bottom: auto;
      transform: translateX(-50%) rotate(135deg);
    }
  }
  /****** media query ******/
  @media (max-width: 613px)
  {
    .page-home .area-grid {
      gap: var(--space-s);
      grid-template-columns: 1fr;
    }
    .page-home .area-card a {
      display: grid;
      grid-template-columns: 28% 1fr;
      column-gap: var(--space-s);
      align-items: center;
    }
    .page-home .area-figure {
      display: contents;
    }
    .page-home .area-figure img {
      grid-column: 1;
      grid-row: 1 / span 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .page-home .area-pill {
      position: static;
      transform: none;
      grid-column: 2;
      grid-row: 1;
      padding: 0;
      background: transparent;
      color: inherit;
      white-space: normal;
      text-align: left;
      color: var(--primary-color);
    }
    .page-home .area-pill h3 {
      font-weight: 600;
      padding-block: var(--space-s) var(--space-xs)
    }
   .page-home  .area-body {
      grid-column: 2;
      grid-row: 2;
      padding: 0 var(--space-s) var(--space-s) 0;
    }
      /****** media query ******/
    @media (max-width: 500px) {
      .area-grid {
        grid-template-columns: 1fr;
      }
    }
    /****** media query ******/
    @media (prefers-reduced-motion: reduce) {
      .area-card {
        transition: none;
      }
      .area-card:hover,
      .area-card:focus-within {
        transform: none;
      }
    }

  }

  /*======== section-footer ==========================*/
  .section-footer {
    margin-top: var(--space-xl);
  }


  /* =======================================================
   theme-search
  ======================================================== */
  .theme-search-head {
    position: relative;
  }
  .theme-search-momiji {
    width: clamp(50px,10.897vw,170px); /*1560*/
    height: auto;
    pointer-events: none;
    position: absolute;
    top: 30px;
    transform: translateY(-50%) rotate(340deg);
    left: 0;
  }
  @media (max-width: 1024px) {
    .theme-search-momiji {
      width: clamp(120px,16.145vw,160px); /*991*/
      top: 10px;
      opacity: 0.2;
    }
  }
  @media (max-width: 640px) {
    .theme-search-momiji {
      left: auto;
      right: 0;
    }
  }

  /* =======================================================
   theme-card
======================================================== */
  .theme-grid-wrapper {
    container-type: inline-size;
    container-name: theme-container;
  }
  .theme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px,1.75vw,var(--space-m));
    padding-block-start: var(--space-l);
  }

  .theme-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xs);
  }
  .theme-card__link {
    position: relative;
    display: block;
    height: 100%;
    color: #fff;
    text-decoration: none;
    border: 6px solid #fff;
    border-radius: var(--radius-xs);
  }
  .theme-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xs);
  }
  .theme-card__link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
    transition: all .3s;
    border-radius: var(--radius-xs);
  }
  .theme-card__content {
    position: relative;
    z-index: 2;
    padding: clamp(30px,2.667vw,48px) clamp(20px,2.667vw,48px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .theme-card__title {
    margin: 0 0 var(--space-l);
    font-size: clamp(1.1rem,1.5vw,1.4rem);
    line-height: 1.2;
    letter-spacing: var(--ls-ui);
  }
  .theme-card__title .en {
    display: block;
    font-family: var(--font-en);
    font-size: 2rem;
  }
  .theme-card__title .ja {
    font-size: 0.8em;
  }
  .theme-card__desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .theme-card__link:hover::before,
  .theme-card__link:link:focus-visible::before {
    background: rgba(0,0,0,0.75);
  }
  .theme-card__link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -2px;
  }

  @media (max-width: 1024px) {
    .theme-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 559px) {
    .theme-grid {
      grid-template-columns: 1fr;
    }
  }

  /* =======================================================
   recent spots
======================================================== */
  .recent-spots-head {
    position: relative;
  }
  .recent-spots-torii {
    width: 200px;
    height: auto;
    pointer-events: none;
    position: absolute;
    top: 60px;
    transform: translateY(-50%);
    right: 0;
  }
  @media (max-width: 1024px) {
    .recent-spots-torii {
      width: clamp(120px,15.625vw,160px);
      top: 30px;
      opacity: 0.2;
      /* z-index: -1; */
    }
  }

  .recent-spots-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    padding-block-start: var(--space-l);
    position: relative;
  }
  @media (min-width: 1025px) {
    .recent-spots-list::before {
      content:'';
      position: absolute;
      top: -131px;
      left: 0;
      width: 140px;
      height: 183px;
      background: url(../img/illust/deer.svg) left center no-repeat;
    }
  }

  .recent-spots-item {
    margin: 0;
  }

  /*======== card base ==========================*/
  .spot-card {
    height: 100%;
    background: #fff;
    border-radius: var(--radius-s);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .spot-card:hover,
  .spot-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  }
  .spot-card__link {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.75rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-s);
    overflow: clip;
    position: relative;
    background: transparent;
    border: 3px solid var(--border-color);
    text-align: left;
  }
  .spot-card__link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
  }
  .spot-card__figure {
    margin: 0;
    position: relative;
  }
  .spot-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .page-home .spot-card__area {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(50%);
    padding: 8px 20px;
    border-radius: 10px 0 0 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.3;
  }
  .spot-card__title {
    margin: var(--space-s) 0 var(--space-xs) 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .spot-card__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .spot-card__tag {
    position: relative;
    padding: 0.25rem 0.5rem;
    padding-inline-start: 1.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 1.3;
    background: rgba(0,0,0,0.06);
  }
  .spot-card__tag::before {
    content: '#';
    position: absolute;
    inset-inline-start: 0.55rem;
    inset-block-start: 0.25rem;
  }
  .spot-card__desc {
    margin: var(--space-xs) 0 var(--space-xs);
  }

  /*======== badge ==========================*/
  .spot-card__badge {
    position: absolute;
    inset-inline-start: 0.75rem;
    inset-block-start: 0.75rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    backdrop-filter: blur(2px);
    z-index: 1;
  }

  @media (max-width: 1400px) {
    .recent-spots-list {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
    @media (max-width: 1024px) {
    .recent-spots-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .recent-spots-list {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(330px,66%);
      grid-template-columns: unset;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 1rem;
      padding-inline: 0.25rem;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 0.25rem;
      -webkit-overflow-scrolling: touch;
    }
    .recent-spots-item {
      scroll-snap-align: start;
    }
    .spot-card__link {
      border-radius: 18px;
    }
  }
  @media (max-width: 1024px) {
    .recent-spots.is-carousel-md .recent-spots-list {
      display: grid;
      grid-auto-flow: column;
      grid-auto-column: minmax(52%, 1fr);
      grid-template-columns: unset;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 1rem;
      padding-inline: 0.25rem;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 0.25rem;
      -webkit-overflow-scrolling: touch;
    }
    .recent-spots.is-carousel-md .recent-spots-item {
      scroll-snap-align: start;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .recent-spots-list {
      scroll-behavior: auto !important;
    }
  }

  /* =======================================================
   feature-slab
======================================================== */
  .feature-slab-list {
    display: flex;
    flex-direction: column;
    gap:40px;
    margin-block-start: var(--space-l);
    width: 100%;
    max-width: 100%;
  }
  .feature-slab-item {
    width: 100%;
    max-width: 980px;
    align-self: flex-start;
  }
  .feature-slab-item.is-reverse {
    align-self: flex-end;
  }
  @media (max-width: 1024px) {
    .feature-slab-item,
    .feature-slab-item.is-reverse {
      max-width: 100%;
      align-self: stretch;
    }
  }
  @media (max-width: 599px) {
    .feature-slab-list {
      gap: 60px;
      margin-block-start: 40px;
    }
  }
  .feature-slab-card {
    border-radius: 18px;
    padding: clamp(40px,4.883vw,50px) clamp(30px,4.883vw,50px); /*1024*/
    background: repeating-linear-gradient(
        45deg,
        rgba(222,239,246, 1) 0,
        rgba(222,239,246, 1) 4px,
        rgba(242, 248, 251, 1) 4px,
        rgba(242, 248, 251, 1) 6px
      );
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .feature-slab-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    background: #fff;
    z-index: 0;
  }
  .feature-slab-card > * {
    position: relative;
    z-index: 1;
  }
  /*======== bg-stripe ==========================*/
  .bg-stripe .feature-slab-card {
    background: #fff;
    padding: clamp(20px,3.906vw,40px);
  }
  .bg-stripe .feature-slab-card::before {
    display: none;
  }

  @media (max-width: 859px) {
    .feature-slab-card {
      flex-direction: column;
    }
  }

  /*== p-plan ================*/
  .p-plan .feature-slab-item {
    margin-inline: auto;
  }

  /*======== feature-slab-head ==========================*/
  .feature-slab-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    padding-block-end: 8px;
    width:  100%;
    margin-block-end: clamp(20px,2.857vw,40px);
    margin-block-end: clamp(20px,2vw,28px);
  }
  .feature-slab-no {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--primary-color);
    letter-spacing: 0.02em;
  }
  .feature-slab-title {
    margin: 0;
    font-size: clamp(1.1rem,3.205vw,1.2rem);
    line-height: 1.2;
    letter-spacing: var(--ls-ui);
  }
  @media (max-width: 599px) {
    .feature-slab-head {
      display: block;
      position: relative;
    }
    .feature-slab-no {
      position: absolute;
      top: 0;
      right: 0;
      transform: translateY(calc(-100% - 20px));
      font-size: 3rem;
    }
  }
  /*======== feature-slab-media ==========================*/
  .feature-slab-media {
    position: relative;
    width: 30%;
  }
  .feature-slab-media img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width:  100%;
    height: 100%;
    object-fit: contain;
  }
  .is-reverse .feature-slab-media {
    order: 2;
  }
  @media (max-width: 859px) {
    .feature-slab-media {
      width: 100%;
      height: clamp(200px,32.596vw,280px);
    }
    .is-reverse .feature-slab-media {
      order: 1;
    }
  }

  /*======== feature-slab-body ==========================*/
  .feature-slab-body {
    width: 70%;
    text-align: left;
    padding-inline-start: 40px;
  }
  .no-image .feature-slab-body {
    width: 100%;
    padding-inline-start: 0;
  }
  .is-reverse .feature-slab-body {
    padding-inline: 0 40px;
  }
  @media (max-width: 859px) {
    .feature-slab-body {
      width: 100%;
      max-width: 100%;
      order: 2;
      margin-block-start: 40px;
    }
    .feature-slab-body,
    .is-reverse .feature-slab-body {
      padding-inline: 0;
    }
  }

  /*======== bg-stripe ==========================*/
  .bg-stripe .feature-slab-contents {
    width: 70%;
    order: 1;
    padding-inline-end: 40px;
  }
  .bg-stripe .feature-slab-media {
    width: 30%;
    order: 2;
  }
  .bg-stripe .feature-slab-media img {
    object-fit: cover;
    border-radius: var(--radius-xs)
  }
  .bg-stripe .feature-slab-body {
    width: 100%;
    padding-inline-start: 0;
  }
  @media (max-width: 859px) {
    .bg-stripe .feature-slab-contents {
      width: 100%;
      padding: 0;
      margin-block-end: clamp(20px, 2.857vw, 40px);
    }
    .bg-stripe .feature-slab-body {
      margin-block-start: 0;
    }
    .bg-stripe .feature-slab-media {
      width: 100%;
    }
  }
  @media (max-width: 599px) {
    .bg-stripe .feature-slab-no {
      transform: translateY(calc(-100% - 10px));
    }
  }

  
  /*======== feature-slab-toggle ==========================*/
  .feature-slab-toggle {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .feature-slab-more-body {
    display: block;
    margin-block-start: var(--space-m);
  }
  .feature-slab-more-btn {
    display: none;
  }
  .feature-slab-more-body p + p {
    margin-block-start: var(--space-m);
  }


  @media (max-width: 640px) {
    .feature-slab-more-body {
      display: none;
      margin-block-start: var(--space-m);
      text-align: left;
    }
    .feature-slab-toggle:checked ~ .feature-slab-more-body {
      display: block;
    }

    .feature-slab-more-btn {
      display: flex;
      width: fit-content;
      margin-inline-start: auto;

      align-items: center;
      gap: 0.35rem;
      margin-block-start: 0.5rem;
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      color: var(--text-color);
      border-bottom: 1px dashed var(--text-color);
      cursor: pointer;
    }
    .feature-slab-more-btn__text {
      display: none;
    }
    .feature-slab-more-btn::after {
      font-size: 0.7rem;
      font-weight: 600;
    }
    .feature-slab-more-btn::before {
      content:'MORE';
      font-weight: 600;
    }
    .feature-slab-more-btn::after {
      content:'↓';
    }
    .feature-slab-toggle:checked ~ .feature-slab-more-btn::before {
      content:"CLOSE";
      font-weight: 600;
    }
    .feature-slab-toggle:checked ~ .feature-slab-more-btn::after {
      content:"↑";
    }
  }

  /* =======================================================
   footer
======================================================== */
  .global-footer {
    background: var(--bg-color-blue2);
    color: var(--text-color);
    padding-block: var(--space-xl) var(--space-s);
    font-size: 0.9rem;
    position: relative;
    /* z-index: 0; */
  }

  .global-footer a {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
  }
  .global-footer a:hover {
    text-decoration: underline;
  }
  .global-footer a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    column-gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
  }

  .footer-meta {
    text-align: left;
  }
  .footer-logo img,
  .footer-logo svg {
    display: block;
    width: clamp(170px,17.143vw,240px);
    height: auto;
  }
  
/*======== policy-links ==========================*/
  .policy-links {
    list-style: none;
    padding: 0;
    margin: var(--space-l) 0 0;
    display: grid;
    gap: 0.65rem;
  }
  .policy-links li {
    display: grid;
    grid-template-columns: 1.2em 1fr;
    align-items: baseline;
    column-gap: 0.6em;
  }
  .policy-links li::before {
    content: "+";
    opacity: 0.85;
  }

  /*======== footer-nav ==========================*/
  .footer-nav {
    display: grid;
    row-gap: var(--space-l);
    padding-left: clamp(1.5rem, 3vw, 3rem);
    border-left: 1px dotted rgba(43, 47, 51, 0.35);
  }

  .nav-column {
    display: grid;
    gap: 0.8rem;
  }
/*======== parent-link ==========================*/
  .parent-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .parent-link::before {
      content: "";
      color: #5aa6d6;
      font-size: 0.85em;
      background: var(--primary-color);
      width: 5px;
      height: 8px;
      clip-path: polygon(0 0, 100% 50%, 0 100%);
  }

/*======== children-link ==========================*/
  .nav-column ul {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: -0.3rem 0 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.1rem;
  }
  .nav-column ul li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
  }
  .nav-column ul li::before {
    content: "";
    width: 0.7rem;
    height: 1px;
    background: var(--text-color);
    display: inline-block;
  }

/*======== other-links ==========================*/
  .other-links {
    list-style: none;
    padding: 0;
    margin: 0;
    grid-column: 1 / -1;
    display: grid;
    gap: 0.9rem;
  }
  .other-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    font-weight: 600;
  }
  .other-links a::before {
      content: "";
      color: #5aa6d6;
      font-size: 0.85em;
      background: var(--primary-color);
      width: 5px;
      height: 8px;
      clip-path: polygon(0 0, 100% 50%, 0 100%);
  }

/*======== copyright ==========================*/
  .copyright {
    margin-top: var(--space-xl);
    text-align: center;
    font-family: var(--font-en);
  }
  .copyright small {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }

  .footer-illust {
    position: absolute;
    top: clamp(4px,0.714vw,10px);
    left: 50%;
    transform: translate(-50%,-100%);
    max-width: 1000px;
    width: 90%;
    /* background: #333; */
    vertical-align: baseline;
  }
  
/*======== max-width: 1024 ==========================*/
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: 30% 70%;
    }
    
  }
/*======== max-width: 900 ==========================*/
  @media (max-width: 900px) {
    .footer-nav {
      grid-template-columns: 1fr;
    }
    .other-links {
      grid-column: auto;
    }
  }
/*======== max-width: 640 ==========================*/
  @media (max-width: 640px) {
    .footer-grid {
      grid-template-columns: 1fr;
      row-gap: var(--space-l);
    }
    .footer-meta{
      text-align: center;
    }
    .footer-logo-link svg {
      margin-inline: auto;
    }
    .footer-nav {
      display: none;
    }
    .policy-links {
      display: inline-grid;
      text-align: left;
      margin-top: var(--space-l);
    }
    .footer-meta nav::before {
      content: "";
      display: block;
      border-top: 1px dotted rgba(43, 47, 51, 0.35);
      margin: var(--space-l) auto 0;
      width: min(520px, 90%);
    }
    .copyright {
      margin-top: var(--space-l);
    }
  }

}/*end @layer component*/


/* =======================================================
   @layer pages
======================================================== */
@layer pages {

  /* =======================================================
     page-home / hero
  ======================================================== */
  .page-home .hero {
    background: var(--bg-color-blue2);
    width: calc(100vw - max(20px,2vw));
    margin-inline: auto;
    margin-top: 1vw;
    padding-top: calc(64px - 1vw);
  }
  .page-home .hero-inner {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 70vh, 720px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 1vw;
  }
  .page-home .hero-inner::after {
    content: '';
    position: absolute;
    width: clamp(200px,28.571vw,400px);
    height: 539px;
    bottom: -2px;
    right: 50%;
    background: url(../img/hiroshima-castle.svg) center bottom no-repeat;
    opacity: 0.3;
  }
  @media (max-width: 1024px)
  {
    .page-home .hero {
      padding-bottom: clamp(20px,2.93vw,30px);
    }
    .page-home .hero-inner {
      grid-template-columns: 1fr;
      grid-template-rows: auto 1fr;
      min-height: auto;
    }
    .page-home .hero-inner::after {
      right: 0;
    }
  }
  
  /*======== hero__content ==========================*/
  .page-home .hero__content {
    grid-column: 1;
    position: relative;
    z-index: 1;
    padding: clamp(24px, 4vw, 56px);
    padding-left: clamp(24px, 6.25vw, 120px);
    align-self: center;
  }
  @media (max-width: 1024px) {
    .page-home .hero__content {
      text-align: center;
      grid-row: 2;
    }
  }
  
  .page-home h2.hero-copy {
    margin: 0;
    font-weight: var(--fw-regular);
    letter-spacing: 0.1em;
    font-size: clamp(1.6rem,2.971vw,2.6rem);
    line-height: 1.4;
    margin-bottom: var(--space-m);
  }
  .page-home h2.hero-copy span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: clamp(2rem,3.429vw,3rem);
    position: relative;
    top: 2px;
    display: inline-block;
    padding-inline: 8px;
  }
  @media (max-width: 1024px)
  {
    .page-home .hero__content {
      padding: 0;
    }
    .page-home .hero-copy {
      padding-top: var(--space-m)
    }
    .page-home .btn-spot {
      margin-bottom: var(--space-m)
    }
  }
  
  .page-home .hero-description {
    margin-bottom: var(--space-l);
  }
  @media (max-width: 640px) {
    .page-home .hero-description {
      text-align: left;
      padding-inline: var(--container-padding);
    }
  }
  @media (max-width: 499px) {
    .page-home .hero-description {
      padding: 0 12px;
    }
    .page-home .hero-description br.sp-none {
      display: none;
    }
  }
  
  /*======== hero__media ==========================*/
  .page-home .hero__media {
    grid-column: 2;
    position: relative;
    overflow: hidden;
    margin-right: calc(max(20px,2vw) / 2 );
    border-radius: 20px;
  }
  @media (max-width: 1024px) {
    .page-home .hero__media {
      margin-left: calc(max(20px,2vw) / 2 );
    }
  }
  
  .page-home .hero__img {
    position :absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 900ms ease;
    will-change: opacity;
  }
  .page-home .hero__img.is-active {
    opacity: 1;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .page-home .hero__img { transition: none; }
  }
  @media (max-width: 1024px)
  {
    .page-home .hero__media {
      grid-column: 1;
      grid-row: 1;
      min-height: 260px;
    }
  }

  /* =======================================================
   page-sub / hero
  ======================================================== */
  .page-sub .hero {
    background: var(--bg-color-blue2);
    width: calc(100vw - max(20px,2vw));
    margin-inline: auto;
    margin-top: 1vw;
    padding-top: calc(64px - 1vw);
  }
  .page-sub .hero-inner {
    position: relative;
    overflow: hidden;
    display: grid;
    /* gap: 2vw; */
    grid-template-columns: 30% 70%;
    padding-block: 1vw;
  }
  @media (max-width: 1024px)
  {
    .page-sub .hero-inner {
      grid-template-columns: 1fr;
      grid-template-rows: auto 1fr;
      min-height: auto;
    }
    .page-sub .hero-inner::after {
      right: 0;
    }
  }

  /*======== hero-title ==========================*/
  .hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    letter-spacing: var(--ls-ui);
    gap: 10px;
  }
  .hero-title__en {
    font-family: var(--font-en);
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .hero-title__ja {
    font-size: clamp(1.4rem,2.656vw,1.7rem);
    color: var(--primary-color)
  }
  @media (max-width: 1024px)
  {
    .page-sub .hero-title {
      align-items: center;
      margin-block-end: clamp(28px,3.711vw,38px);
      gap: 6px;
    }
  }


  /*======== hero-media ==========================*/
  .page-sub .hero__media {
    overflow: hidden;
    margin-right: calc(max(20px,2vw) / 2 );
    margin-left: 2vw;
    border-radius: 20px;
    max-height: 300px;
  }
  .page-sub .hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .page-sub .hero__media img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
  }

  /*======== page-intro ==========================*/
  .page-intro {
    padding-block-start: clamp(40px, 5.859vw, 60px);
  }
  @media (max-width: 1024px) {
    .page-intro__lead {
      text-align: left;
    }
  }
  @media (max-width: 499px) {
    .page-intro__lead .sp-none {
      display: none;
    }
  }
  
  /*======== pages/archive-spots : filter ==========================*/
  .section.filter {
    padding-block: clamp(20px,5.859vw,60px);
  }
  .filter-inner {
    background: var(--bg-color-blue2);
    border-radius: var(--radius-s);
    padding: clamp(20px,3.646vw,28px) clamp(20px,3.646vw,28px) clamp(12px,2.083vw,16px) clamp(20px,3.646vw,28px);
    max-width: 1200px;
    margin-inline: auto;
    position: relative;
  }
  .result-illust {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(180px, 17.857vw, 250px);
    height: auto;
    transform: translateY(-100%);
    pointer-events: none;
  }
  @media (max-width: 640px) {
    .result-illust {
      display: none;
    }
  }
  .filter-head {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: var(--ls-ui);
    margin: 0;
    position: relative;
    border-bottom: 1px dashed var(--primary-color);
    padding-bottom: 4px;
    font-size: 1rem;
  }
  .filter-head__icon {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
  }
  .filter-head__icon svg {
    width: 25px;
    height: auto;
  }
  .filter-panel {
    padding-block-start: clamp(16px,3.646vw,28px);
  }

  /* PC: chips visible, selects hidden */
  .filter-grid--chips {
    display: grid;
    gap: var(--space-m);
  }
  .filter-grid--select {
    display: none;
  }
  .filter-group {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
    display: block;
  }
  .filter-label {
    float: left;
    padding: 0;
    margin: 0 var(--space-s) 0 0;
    width: 120px;
    white-space: nowrap;
    text-align: right;
  }
  .filter-group__inner {
    display: flex;
    align-items: flex-start;
    margin-inline-start: calc(140px + 14px);
    min-width: 0;
  }
  .chipset {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
  }
  .filter-group::after {
    content: "";
    display: table;
    clear: both;
  }

  /* chip base */
  .chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    padding: 6px 16px;
    line-height: 1;
    background: #fff;
    cursor: pointer;
    user-select: none;
  }
  .chip__input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .chip__text {
    font-size: 0.85rem;
    letter-spacing: var(--ls-ui);
    white-space: nowrap;
  }
  .chip:has(.chip__input:focus-visible) {
    outline: 3px solid rgba(0, 0, 0, 0.35);
    outline-offset: 2px;
  }

  /* color variants */
  /* .chip--blue {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  .chip--green {
    border-color: var(--color-green);
    color: var(--color-green);
  }
  .chip--orange {
    border-color: var(--color-orange);
    color: var(--color-orange);
  }
  .chip--yellow {
    border-color: var(--color-yellow);
    color: var(--color-yellow);
  } */

  /* selected state */
  /* .chip:has(.chip__input:checked) {
    color: #fff;
  }
  .chip--blue:has(.chip__input:checked) {
    background: var(--primary-color);
  }
  .chip--green:has(.chip__input:checked) {
    background: var(--color-green);
  }
  .chip--orange:has(.chip__input:checked) {
    background: var(--color-orange);
  }
  .chip--yellow:has(.chip__input:checked) {
    background: var(--color-yellow);
  } */

  .chip {
    border-color: #bbbbbb;
    color: var(--text-color)
  }

  /* stars */
  .chip--star .chip__text {
    letter-spacing: 0.14em;
  }
  .chip:has(.chip__input:checked) {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color)
  }
  
  /* actions */
  .filter-actions {
    display: grid;
    place-items: center;
    margin-top: var(--space-m);
  }
  .filter-submit {
    border: 0;
    letter-spacing: 0.09em;
    font-size: 0.9rem;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 500;
    background: var(--text-color);
    color: #fff;
    cursor: pointer;
    min-width: 200px;
    transition: all .3s;
    border: 1px solid var(--text-color);
  }
  .filter-submit:focus-visible,
  .filter-submit:hover {
    background: #fff;
    color: var(--text-color)
  }
  /*======== filter-note ==========================*/
  .filter-note {
    margin-top: var(--space-l);
    line-height: 1.4;
      text-align: left;
    display: flex;
    
  }
  .filter-note__text {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.85;
  }
  .filter-note__icon {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #9C9C9C;
    font-size: 0.75rem;
    line-height: 1;
    margin-right: 6px;
  }
  .filter-note .sp-only {
    display: none;
  }
  .filter-note__sep {
    display: inline-block;
    padding-left: 1rem;
  }
  .filter-more { display: none; }
  @media (max-width:800px) {
    .filter-note__sep {
      display: block;
      padding-left: 0;
    }
    .filter-note__sep:first-child {
      margin-top:2px;
    }
  }

  /* =========================
     Tablet <= 1024px 
  ========================= */
  @media (max-width: 1024px) {
    .filter-grid--chips {
      display: none;
    }
    .filter-grid--select {
      display: block;
    }
    .select-row {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 16px;
      align-items: center;
    }
    .select-row--more {
      margin-top: 14px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    /*======== select-field ==========================*/
    .select-field {
      display: grid;
      grid-template-columns: 120px 1fr;
      align-items: center;
      gap: 10px;
      background: transparent;
    }
    .select-label {
      white-space: nowrap;
    }

    .select-field select {
      width: 100%;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, 0.25);
      background: #fff;
      min-width: 210px;
    }

    .select-field select:focus-visible {
       outline-color: var(--primary-color);
    }
    /* .select-field--blue select {
      border-color: var(--primary-color);
      color: var(--primary-color);
    }
    .select-field--green select {
      border-color: var(--color-green);
      color: var(--color-green);
    }
    .select-field--orange select {
      border-color: var(--color-orange);
      color: var(--color-orange);
    }
    .select-field--yellow select {
      border-color: var(--color-yellow);
      color: var(--color-yellow);
    }
    .select-field--blue select:focus-visible {
       outline-color: var(--primary-color);
    }
    .select-field--green select:focus-visible {
       outline-color: var(--color-green);
    }
    .select-field--orange select:focus-visible {
       outline-color: var(--color-orange);
    }
    .select-field--yellow select:focus-visible {
       outline-color: var(--color-yellow);
    } */

    .filter-more {
      border: 0;
      background: transparent;
      cursor: pointer;
      opacity: 0.9;
      padding: 10px 6px;
      white-space: nowrap;
    }

    .filter-submit {
      min-width: 240px;
    }
  }

  /* =========================
     Tablet-Mobile 641px<= 830px
  ========================= */
  @media (max-width: 830px)
  {
    .select-row {
      grid-template-columns: 1fr;
      justify-items: stretch;
    }
    .filter-note .sp-only {
      display: block;
    }
  }

  /* =========================
     Mobile <= 640px
  ========================= */
  @media (max-width: 640px) {
    .filter-more {
      display: inline-block;
    }
    .select-row--more {
      display: none;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .filter-grid--select.is-open .select-row--more {
      display: grid;
    }
    .filter-more {
      justify-self: end;
      padding: 0;
      color: var(--text-color);
    }
    .select-field {
      grid-template-columns: 1fr;
      gap: 8px;
      text-align: left;
    }
    .select-label {
      opacity: 0.9;
    }
    .filter-actions {
      margin-top: var(--space-l);
    }
    .filter-submit {
      width: 100%;
      min-width: 0;
    }
  }

  /* =======================================================
   results
  ======================================================== */
  .section.results {
    padding-block: 0;
  }
  .result-wrapper {
    background: var(--bg-color-gray);
    padding: clamp(20px,4.036vw,40px);
    border-radius: var(--radius-m)
  }
  @media (max-width: 640px) {
    .results .container {
      padding-inline: 0;
    }
    .result-wrapper {
      border-radius: 0;
    }
  }
  /*======== results-active ==========================*/
  .results-active {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    padding: var(--space-m) 14px 16px 0;
    margin-bottom: var(--space-s);
    border-top: 1px dotted var(--border-color);
    font-size: 0.9rem;
  }
  @media (max-width: 640px) {
    .results-active {
      padding-inline: clamp(20px,4.036vw,40px)
    }
  }
  .results-active__label {
    margin: 0;
    white-space: nowrap;
  }
  .results-active__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .active-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #c3c2c2;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    line-height: 1;
  }
  /*======== result-heading ==========================*/
  .results-heading {
    text-align: left;
    margin: 0 0 18px;
    font-size: var(--head-text-size);
    line-height: 1.3;
  }
  .results-heading__count {
    font-weight: 800;
    opacity: 0.85;
    font-size: 0.95em;
  }


.p-spot-archive__empty {
  margin-block: 40px 20px;
}

  /*======== spot-grid ==========================*/
  .spot-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding-block: clamp(20px,2.825vw,28px);
    position: relative;
  }
  .area-sections .spot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-block-end: clamp(40px,9.375vw,60px);
  }
  @media (max-width: 1024px) {
    .spot-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }
    .area-sections .spot-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .area-sections .spot-grid,
    .spot-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }

  /*======== spot-card ==========================*/
  .spot-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  .spot-card__body {
    padding: 14px 14px 16px;
    display: grid;
    gap: 14px;
  }

  .spot-card__title {
    margin: 0;
  }
  .spot-card__lead {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #747474;
    letter-spacing: var(--ls-ui);
  }
  .spot-card__meta {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.85rem;
    border-top: 1px dotted var(--border-color);
    padding-top: 8px;
    align-items: center;
  }
  .spot-card__area::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 0.8rem;
    background: #8e8e8e;
    margin-inline: 0.8rem;
    position: relative;
    top: 2px;
  }
  .spot-card__tags {
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .spot-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.10);
    font-weight: 700;
    font-size: 0.86rem;
    white-space: nowrap;
  }
  /*======== spot-card__deep ==========================*/
    .spot-card__deep {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1;
  }
  .spot-card__deep-label {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .spot-card__deep-value {
    display: block;
    text-align: left;
    width: auto;
  }
  .deep-icon {
    height: 1rem;
    width: auto;
    min-width: 0;
    max-width: min-content;
    object-fit: contain;
    object-position: left;
    display: block;
  }
    .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  @media (max-width: 640px) {
    .spot-card {
      gap: 12px;
    }
    .page-sub .spot-card__link:not(.area-sections .spot-card__link) {
      display: grid;
      grid-template-columns: 96px 1fr;
      column-gap: 12px;
      row-gap: 12px;
      align-items: center;
    }
    .page-sub .spot-card__media:not(.area-sections .spot-card__media) {
      grid-column: 1;
      grid-row: 1;
    }
    .page-sub .spot-card__title:not(.area-sections .spot-card__title) {
      grid-column: 2;
      grid-row: 1;
      margin: 0;
      padding-right:  12px;
    }
    .page-sub .spot-card__body:not(.area-sections .spot-card__body) {
      grid-column: 1 / -1;
      display: contents;
    }
    .page-sub .spot-card__lead:not(.area-sections .spot-card__lead),
    .page-sub .spot-card__meta,
    .page-sub .spot-card__tags,
    .page-sub .spot-card__deep {
      grid-column: 1 / -1;
      padding-inline: 12px;
    }
    .page-sub .spot-card__img {
      aspect-ratio: 4 / 3;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .page-sub .spot-card__deep {
      margin-bottom: 16px;
    }
    /*======== area-sections ==========================*/

    .area-sections .spot-card__link {
      display: flex;
      column-gap: 12px;
      row-gap: 6px;
      align-items: stretch;
      padding: 0;
    }
    .area-sections .spot-card__media {
      flex: 0 0 31.25vw;
      /* width: 31.25vw; */
      display: flex;
    }
    .page-sub .area-sections .spot-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .area-sections .spot-card__body {
      display: flex;
      flex-direction: column;
    }
    .area-sections .spot-card__meta,
    .area-sections .spot-card__tags,
    .area-sections .spot-card__deep {
      display: none;
    }

  }

  /* =======================================================
   detour
  ======================================================== */
  .detour .section-heading__en {
    font-size: clamp(1.3rem,2.813vw,1.8rem);
  }

  .detour-cards {
    padding-block-start: clamp(20px,2.825vw,28px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
  }
  .detour-card {
    border-radius: 18px;
    padding: 30px;
    background: repeating-linear-gradient(
        45deg,
        rgba(222,239,246, 1) 0,
        rgba(222,239,246, 1) 4px,
        rgba(242, 248, 251, 1) 4px,
        rgba(242, 248, 251, 1) 6px
      );
    position: relative;
    line-height: 1.6;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    row-gap: 10px;
    align-items: end;
  }
  .detour-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 14px;
    background: #fff;
    z-index: 0;
  }
  .detour-card > * {
    position: relative;
    z-index: 1;
  }

  .detour-card__title {
    color: var(--primary-color);
    letter-spacing: var(--ls-ui);
    margin-block-end: 20px;
  }
  .detour-card__text {
    margin-block-end: 20px;
    text-align: left;
  }
  
  /****** media query ******/
  @media (min-width: 641px) and  (max-width: 1024px) {
    .detour-cards {
      grid-template-columns: 1fr;
    }
    .detour-card {
      grid-template-columns: 1fr auto;
      grid-template-rows: auto 1fr;
      grid-template-areas:
        "title btn"
        "text btn";
      column-gap: 16px;
      row-gap: 12px;
      align-items: start;
    }
    .detour-card__title {
      grid-column: 1;
      grid-row: 1;
      text-align: left;
      margin-block-end: 0;
      grid-area: title;
    }
    .detour-card__text {
      grid-column: 1;
      grid-row: 2;
      margin-block-end: 0;
      grid-area: text;
    }
  }
  @media (max-width: 640px) {
    .detour-cards {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .detour-block__lead {
      text-align: left;
    }
  }

  /****** media query ******/
  @media (min-width: 641px) and (max-width: 1024px) {
    .detour__btn {
      grid-column: 2;
      grid-row: 2;
      justify-self: end;
      align-self: center;
      white-space: nowrap;
      margin-top: 0;
      grid-area: btn;
    }
  }

  /*==.area-more ================*/
  .area-more.noicon__btn img {
    width: 14px;
    height: 14px;
    margin-top: 1px;
  }

  /* =======================================================
   area-section（theme-heading）
  ======================================================== */
  .area-sections,
  .theme-sections {
  padding-block-start: 0;
  }
  .area-sections:nth-of-type(odd) {
    background: var(--bg-color-blue);
  }
  .area-heading,
  .theme-heading {
    max-width: var(--container-max-width);
    margin-inline: auto;
    padding-inline: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
    padding-block-start: 60px;
  }
  .area-heading__title,
  .theme-heading__title {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
  }
    .areas-icon{
    display:block;
    width:44px;
    height:33px;
    flex:0 0 auto;
  }
  .area-heading .section-heading__ja {
    font-size: var(--head-text-size);
  }
  .area-heading__desc {
    margin-top: var(--space-s);
    margin-bottom: 0;
  }

  /* =======================================================
   theme-section
  ======================================================== */
  .theme-section .theme-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 980px;
    margin-inline: auto;
    text-align: left;
  }
  .theme-section .theme-card {
    display: flex;
    gap: 24px;
    padding: 18px 20px;
    border: 3px solid #6c6969;
    background: #fff;
  }
  .theme-section .theme-card__media {
    flex: 0 0 30%;
    border-radius: 6px;
    overflow: hidden;
  }
  .theme-section .theme-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .theme-section .theme-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .theme-section .theme-card__title {
    margin: 0;
    line-height: 1.2;
    letter-spacing: var(--ls-ui);
  }
  .theme-section .theme-card__title-en {
    font-family: var(--font-en);
    font-size: clamp(1.6rem,5vw,2rem);
    color: var(--primary-color);
    line-height: 1;
  }
  .theme-section .theme-card__title-ja {
    font-size: clamp(1rem,3vw,1.2rem);
    position: relative;
    top: -1px;
  }
  .theme-section .theme-card__title-sep {
    display: inline-block;
    margin-inline: 10px;
  }

  .theme-section .theme-card__desc {
    margin: 0;
  }
  .theme-section .theme-card .btn {
    margin-top: auto;
    margin-inline: 0;
    align-self: flex-end;
  }

  @media (max-width: 640px) {
    .theme-section .theme-card {
      flex-direction: column;
    }
    .theme-section .theme-card__media {
      max-height: 300px;
    }
  }
  .theme-section .theme-card .btn {
    margin-inline: auto;
    margin-block-start: 20px;
  }

  /* =======================================================
   p-plan
  ======================================================== */
  .p-plan-links__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(16px,2.2vw, 24px);
    max-width: 1400px;
    margin: 0 auto;
  }
  .plan-link {
    display: flex;
    width: 100%;
    margin-left: 0;
    max-width: 980px;
    align-items: center;
    gap: 40px;
    padding: 30px;
    border-radius: var(--radius-xs);
    background: var(--bg-color-blue);
    transform: translateX(var(--offset));
  }
  .plan-link--step1 { margin-left: 0px; }
  .plan-link--step2 { margin-left: 140px; }
  .plan-link--step3 { margin-left: 280px; }
  .plan-link--step4 { margin-left: 140px; }

  @media (max-width: 1399px) {
    .plan-link {
      margin: 0 auto;
    }
  }

  /*======== plan-link__icon ==========================*/
  .plan-link__icon {
    flex: 0 0 auto;
    width: clamp(72px,6vw,96px);
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .plan-link__icon img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 140px;
    max-height: 120px;
  }
  /*======== plan-link__body ==========================*/
  .plan-link__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .plan-link__title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-block-end: 30px;
  }
  .plan-link__btn {
    margin-inline: auto 0;
    margin-block-start: 30px;
  }
  
  @media (max-width: 640px) {
    .plan-link {
      flex-direction: column;
    }
    .plan-link__icon {
      width: 100%;
    }
    .plan-link__btn {
      margin-inline: auto;
    }
  }
  /*======== p-next ==========================*/
  .p-next__title {
    letter-spacing: 0.1em;
    font-size: 1.6rem;
  }
  .p-next-grid {
    display: flex;
    gap: 22px;
  }
  .next-card {
    position: relative;
    flex: 1 1 0;
    border-radius: var(--radius-xs);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    min-height: clamp(108px, 11vw, 140px);
    min-height: 250px;
    transform: translateZ(0);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }
  .next-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #333;
    opacity: 0.4;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 1;
  }
  .next-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    align-items: center;
    justify-content: center;
    min-height: 250px;
  }
  .next-card__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .next-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 280ms ease;
    display: block;
  }
  @media (hover: hover) and (pointer: fine) {
    .next-card:hover::before {
      opacity: 0.8;
    }
  }

  .next-card__title {
    letter-spacing: 0.1em;
    font-size: 1.3rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ffffffa1;
    margin-bottom: 1rem;
    width: 80%;
  }
  .next-card__text {
    opacity: 0.9;
    font-size: 1rem;
    letter-spacing: var(--ls-ui);
  }

  @media (max-width: 839px) {
    .p-next-grid {
      flex-direction: column;
    }
    .next-card,
    .next-card__body {
      min-height: 180px;
    }
  }

  /* =======================================================
   howto
  ======================================================= */
  .howto__section-title {
    font-size: var(--head-text-size);
    color: var(--primary-color)
  }
  /*======== timeline ==========================*/
  .howto__timeline {
    display: grid;
    gap: 40px;
  }
  .howto__timeline-item {
    display: inline-flex;
    align-items: flex-start;
    text-align: left;
  }
  .howto__timeline-label {
    background: var(--text-color);
    color: #fff;
    letter-spacing: 0.1em;
    border-radius: 4px;
    padding: 4px clamp(20px,2.857vw,40px);
    white-space: nowrap;
    flex: 0 0 clamp(100px,10vw,140px);
    text-align: center;
  }
  .howto__timeline-title {
    font-size: 1.1rem;
    letter-spacing: var(--ls-ui);
    flex: 0 0 350px;
    position: relative;
    z-index: 1;
    background: #fff;
    display: flex;
    align-items: center;
  }
  .howto__timeline-card {
    flex: 1 1 auto;
    background: var(--bg-color-blue);
    border-radius: var(--radius-xs);
    padding: clamp(20px,2vw,28px);
    position: relative;
    z-index: 1;
  }
  @media (min-width: 1025px) {
    .howto__timeline-title::after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateX(100%);
      margin-inline-start: 40px;
      width: 90px;
      height: 1px;
      background: var(--border-color);
      z-index: 0;
    }
    .howto__timeline-title {
      padding-inline: 40px 0;
      margin-inline-end: 80px;
    }
  }
  @media (max-width: 1024px) {
    .howto__timeline-item {
      flex-wrap: wrap;
      gap: 20px
    }
  }

  /*== p-plan ================*/
  .p-plan .howto__timeline-label {
    
display: inline-block;
    
font-size: 0.9rem;
    
margin-block: 30px 10px;
  }

  /* =======================================================
   about-split
  ======================================================== */
  .about-split__body {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin: 0 auto;
    text-align: left;
  }
  .about-split__media {
    width: 40%;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .about-split__media img,
  .guide-owner__media img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
    object-fit: cover;
    border-radius: var(--radius-xs);
  }
  .about-split__caption,
  .guide-owner__caption {
    font-size: 0.875rem;
    color: #999;
    margin-block-start: 0.4em;
  }
  .about-split__panel {
    width: 70%;
    position: relative;
    z-index: 2;
    margin-inline-start: -8%;
    margin-top: 150px;
  }
  .about-split__panel-inner {
    background-color: rgb(248 244 244 / 83%);
    border-radius: var(--radius-xs);
    padding: clamp(20px,2.857vw,40px);
  }
  .about-split__panel p + p,
  .guide-owner__panel p + p {
    margin-block-start: 2em;
  }
  .about-split__list {
    list-style: none;
    margin-block: 2em;
  }
  @media (max-width: 1024px) {
    .about-split__body {
      flex-direction: column;
      align-items: center;
    }
    .about-split__media {
      width: 100%;
      margin-inline: auto;
      margin-bottom: 0;
    }
    .about-split__media img {
      max-height: 300px;
    }
    .about-split__panel {
      width: 100%;
      margin-inline-start: 0;
      margin-block-start: 20px;
    }
    .about-split__caption {
      text-align: right;
    }
  }

  /* =======================================================
   guide-owner
  ======================================================== */
  .guide-owner .container {
    background: var(--bg-color-gray);
    border-radius: var(--radius-s);
    padding: 60px;
  }
  .guide-owner__body {
    display: flex;
    gap: 40px;
    text-align: left;
  }
  .guide-owner__media {
    width: 30%;
    position: relative;
  }

  .guide-owner__panel {
    width: 70%;
  }
  .guide__list {
    padding-inline-start: 1.3em;
    margin-block: 2em
  }
  @media (max-width: 1024px) {
    .guide-owner__body {
      flex-direction: column;
    }
    .guide-owner__media,
    .guide-owner__panel {
      width: 100%;
    }
    .guide-owner__media img {
      max-height: 300px;
    }
    .guide-owner__caption {
      text-align: right;
    }
  }

  /* =======================================================
   contact-panel
  ======================================================== */
    .contact-panel {
      max-width: 980px;
      margin: 0 auto 140px;
    border-radius: 18px;
    padding: clamp(40px,4.883vw,50px) clamp(30px,4.883vw,50px); /*1024*/
    background: repeating-linear-gradient(
        45deg,
        rgba(222,239,246, 1) 0,
        rgba(222,239,246, 1) 4px,
        rgba(242, 248, 251, 1) 4px,
        rgba(242, 248, 251, 1) 6px
      );
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .contact-panel::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    background: #fff;
    z-index: 0;
  }
  .contact-panel > * {
    position: relative;
    z-index: 1;
  }

  .contact-panel__title {
    font-size: var(--head-text-size);
    color: var(--primary-color);
    line-height: 1.4;
  }
  @media (max-width: 399px) {
    .contact-panel__body .btn__icon {
      display: none;
    }
  }

  /* =======================================================
   p-contact
  ======================================================== */
  .p-contact .contact-heading {
    font-size: var(--head-text-size);
  }
  .p-contact .contact-lead {
    padding-block: clamp(1.5rem, 4vw, 2.5rem);
    border-bottom: 1px dotted var(--border-color);
  }
  .p-contact .contact-lead__cta {
    margin-top: 1rem;
  }
  .p-contact .contact-lead__btn .btn__arrow-wrap {
    transform: rotate(90deg);
  }
  @media (min-width: 640px) {
    .p-contact .contact-lead {
      display: none;
    }
  }
  
  /*======== details toggle ==========================*/
  .p-contact .contact-details {
    padding-block: clamp(2rem, 5vw, 3rem);
    max-width: 980px;
    margin-inline: auto;
  }
  .p-contact .contact-details__toggle {
    margin-top: 1rem;
  }
  .p-contact .contact-details__summary {
    list-style: none;
    cursor: pointer;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
  }
  .p-contact .contact-details__summary::-webkit-details-marker {
    display: none;
  }
  .p-contact .contact-details__summary::before {
    content: "▼";
    font-size: .6em;
    transform: translateY(1px);
  }
  .p-contact .contact-details__toggle[open] .contact-details__summary::before {
    content: "▲";
  }
  .p-contact .contact-details__body {
    margin-top: 1rem;
  }
  /*======== from section layout ==========================*/
  .p-contact .contact-form {
    background: var(--bg-color-gray);
    padding-block: clamp(2.5rem, 6vw, 4rem);
  }
  .p-contact .contact-form__layout {
    margin-top: 1.5rem;
  }
  .p-contact .contact-form__card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-s);
    padding: clamp(1.25rem, 3vw, 2rem);
    max-width: 980px;
    margin-inline: auto;
  }
  .p-contact .form__rows {
    display: flex;
    flex-direction: column;
  }
  .p-contact .form-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-block: 1rem;
    border-top: 1px dotted #c9cdd3;
  }
  .p-contact .form-row:first-child {
    border-top: 0;
  }

  .p-contact .form-row__label {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 0 0 190px; /* PC：ラベル幅固定 */
  }

  .p-contact .form-row__control {
    flex: 1 1 auto;
    min-width: 0; /* flexの仕様上、はみ出し防止に必要 */
  }

  .p-contact .form-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    padding: .2rem .35rem .3rem;
    border-radius: 4px;
    border: 1px solid #C40707;
    color: #C40707;
    font-size: .75rem;
    line-height: 1;
  }
  .p-contact .form-badge.is-optional {
    border-color: #b9bec6;
    color: #7a828c;
  }

  .p-contact .form-row__control input,
  .p-contact .form-row__control select,
  .p-contact .form-row__control textarea {
    width: 100%;
    border: 1px solid #e3e6eb;
    border-radius: .25rem;
    padding: .75rem .9rem;
    font: inherit;
    background: #fff;
  }

  .p-contact .form-row--agree {
    border-top: 1px dotted #c9cdd3;
    padding-top: 1rem;
  }
  .p-contact .form-row--agree .form-row__control {
    flex: 1 1 auto;
  }
  .p-contact .form-check {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    line-height: 1.6;
    min-width: 400px;
  }
  .p-contact .form-check input {
    margin-top: .2em;
    width: 20px;
  }
  .p-contact .form-check a {
    text-decoration: underline;
  }

  .p-contact .form-actions {
    display: flex;
    justify-content: center;
    padding-top: 1.25rem;
  }
  .p-contact .form-submit {
    appearance: none;
    border: 0;
    border-radius: var(--radius-xs);
    padding-block: 0.8em;
    padding-inline: clamp(1.4em,2.745vw,2.8em);
    background: var(--text-color);
    color: #fff;
    font: inherit;
    letter-spacing: .08em;
    cursor: pointer;
    border: 1px solid var(--text-color)
  }
  .p-contact .form-submit:hover {
    background: #fff;
    color: var(--text-color);
    border: 1px solid var(--text-color)
  }
  .p-contact .form-row__control ::placeholder {
    color: rgba(0, 0, 0, 0.35);
  }

  /* Safari */
  .p-contact .form-row__control ::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.35);
  }

  /* Firefox */
  .p-contact .form-row__control ::-moz-placeholder {
    color: rgba(0, 0, 0, 0.35);
    opacity: 1;
  }

  @media (max-width: 640px) {
    .p-contact .form-row {
      flex-direction: column;
      gap: .75rem;
    }
    .p-contact .form-row__label {
      flex-basis: auto;
      justify-content: center;
    }
    .p-contact .form-row__control {
      width: 100%;
    }
    .p-contact .form-row__control input,
    .p-contact .form-row__control textarea {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  }

  /* =======================================================
   policy
  ======================================================== */
  .policy-body .container {
    max-width: 1200px;
  }
  .policy-body section {
    margin-top: 60px;
  }
  .policy-body section h2 {
    font-size: 1.4rem;
    padding-block-end: 10px;
    border-bottom: 1px dashed var(--text-color);
    margin-block-end: 20px;
  }
  .policy-footer {
    text-align: right;
    margin-block-start: 40px;
    
  }

  /* =======================================================
   spot detail
  ======================================================== */
  .p-spot__meta-updated {
  margin: 0.5rem 0;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: right;
  /* position: absolute; */
  /* top: -1.8rem; */
  /* right: 3px; */
}

  .spot-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px,4.036vw,40px) clamp(20px,4.036vw,40px) 20px;
  }
  .spot-hero-title span {
    display: block;
    text-align: center;
  }
  .spot-hero-title__en {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    margin-block-end: 6px;
  }
  .spot-hero-title__ja {
    color: var(--primary-color);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }

  /*======== hero-meta ==========================*/
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 20px;
    font-size: 0.9rem;
  }
  .badge {
    font-family: var(--font-en);
    border: 1px solid currentColor;
    border-radius: 4px;
    padding: 4px 7px 2px;
    line-height: 1;
    background: #fff;
  }
  .badge--major {
    color: var(--color-orange);
  }
  .badge--deep {
    color: var(--color-green);
  }
  .hero-meta__link {
    color: var(--primary-color);
  }
  .hero-meta__link:hover {
    color: var(--text-color)
  }
  .after-line {
    display: flex;
    align-items: center;
  }
  .after-line::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1rem;
    background: #5e5e5e;
    margin-inline-start: 20px;
    transform: translateY(2px) rotate(
27deg);
  }

  /*======== spot-detail-article ==========================*/
  .spot-detail-article {
    margin-top: clamp(20px,3.571vw,50px);
  }
  
  /*======== spot-detail-top ==========================*/
  .spot-detail-top {
    max-width: 980px;
    margin-inline: auto;
    position: relative;
  }
  
  /*======== spot-detail-card ==========================*/
  .spot-detail-top__img {
    border-radius: var(--radius-s);
    max-height: 50vh;
    height: 480px;
    object-fit: cover;
    margin-block-end: 40px;
  }
  
  /*======== spot-detail-info ==========================*/
  .spot-detail-info {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px dotted #c9c9c9;
    margin-block-start: 20px;
  }

  .spot-detail-info__label,
  .spot-detail-info__value {
    padding: 14px 0;
  }
  .spot-detail-info__label {
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .spot-detail-info__label {
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--text-color);
    border-radius: 4px;
    width: 120px;
    text-align: center;
    max-height: 30px;
    margin-block-start: 14px;
  }
  .spot-detail-info__value {
    flex: 1 1 calc(100% - 140px);
    position: relative;
    padding-inline-start: 28px;
  }

  .spot-detail-info__value::after {
    content: '';
    position: absolute;
    left: calc(-140px - 28px);
    right: 0;
    bottom: 0;
    border-bottom: 1px dotted #c9c9c9;
  }
  .spot-detail-info__note {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0a0a0;
  }

  @media (max-width: 640px) {
    .spot-detail-info {
      flex-direction: column;
      flex-wrap: nowrap;
    }
    .spot-detail-info__label {
      flex: 1 1 auto;
      width: 100px;
    }
    .spot-detail-info__value {
      padding-block-start: 10px;
      padding-inline-start:  0;
    }
  }

  /*======== official-links ==========================*/
  .spot-detail-info__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .spot-detail-linkbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    min-width: 120px;
    padding: 0 14px;
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    transition: all .3s;
  }
  .spot-detail-linkbtn:hover {
    background: var(--bg-color-gray);
    color: var(--text-color);
    border-color: var(--text-color)
  }

  /*======== feature tags ==========================*/
  .spot-detail-tags {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .spot-detail-tags__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid #d9dde2;
    border-radius: 2px;
    background: #f4f6f8;
    font-size: 0.8rem;
    line-height: 1.2;
  }
  .spot-detail-tags__item {
    position: relative;
    padding: 0.35rem 0.85rem;
    padding-inline-start: 1.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 1.3;
    background: rgba(0,0,0,0.06);
  }
  .spot-detail-tags__item::before {
    content: '#';
    position: absolute;
    inset-inline-start: 0.55rem;
    inset-block-start: 0.25rem;
  }

  /* =======================================================
   tel-link
======================================================== */
  .tel-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
  }
  .tel-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }
  @media (hover: none) and (pointer:coarse) {
    .tel-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 6px 20px;
      border: 1px solid var(--primary-color);
      border-radius: 4px;
      text-decoration: none;
      color: var(--primary-color);
    }
  }

  /* =======================================================
   spot-detail-section
======================================================== */
  .section.spot-detail-section {
    max-width: 1200px;
    margin-inline: auto;
    padding-block: clamp(40px,7.813vw,60px) 0;
  }
  .spot-detail-section .container {
    background: #fff;
    border-radius: var(--radius-s);
    padding: clamp(30px,4.036vw,40px) clamp(20px,4.036vw,40px);
  }

  /*======== spot-detail-section__head ==========================*/
  .spot-detail-section__title {
    font-size: 1.4rem;
    border-bottom: 1px solid currentColor;
    margin-block-end: 30px;
  }
  .spot-detail-section__title::before {
    content: "＃";
    color:var(--text-color);
    display: inline-block;
    margin-inline-end: 10px;
  }
  .spot-detail--enjoy .spot-detail-section__title::before {
    color: var(--primary-color);
  }
  .spot-detail--points .spot-detail-section__title::before {
    color: var(--color-green);
  }
  .spot-detail--access .spot-detail-section__title::before {
    color: var(--color-yellow);
  }
  .spot-detail--memo .spot-detail-section__title::before {
    color: var(--color-orange);
  }
  .spot-detail-chip {
    font-size: 1rem;
    margin-block: 30px 16px;
    background: var(--primary-color);
    display: inline-block;
    padding: 4px 20px;
    color: #fff;
    font-weight: var(--fw-regular);
    border-radius: var(--radius-xxs);
    letter-spacing: var(--ls-ui);
  }
  .spot-detail-list {
    list-style: none;
  }
  .spot-detail-list li {
    display: flex;
    align-items: flex-start;
  }
  .spot-detail-list li + li {
    margin-block-start: 10px;
  }
  .spot-detail-list .check_icon {
    width: 1em;
    height: 1em;
    transform: translateY(7px);
    margin-inline-end: 0.5em;
  }

  .spot-detail-meter__row {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .spot-detail-meter__row + .spot-detail-meter__row {
    margin-block-start: 10px;
  }

  /*======== spot-detail-steps ==========================*/
  .spot-detail-steps {
    list-style: none;
    margin-block-start: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .spot-detail-steps__item {
    background: var(--bg-color-green);
    padding: clamp(20px,3.027vw,30px) clamp(20px,3.027vw,36px);
    border-radius: 4px;
  }
  .spot-detail-steps__title {
    border-bottom: 1px dashed var(--color-green);
    font-size: 1.15rem;
    letter-spacing: var(--ls-ui);
    padding-block-end: 8px;
    line-height: 1.2;
    display: flex;
    align-items: center;
  }
  .spot-detail-steps__no {
    font-family: var(--font-en);
    color: var(--color-green);
    font-size: 1.8rem;
    font-weight: 500;
    margin-right: 10px;
    line-height: 1;
  }
  .spot-detail-steps__text {
    margin-block-start: 12px;
  }

  .spot-detail-steps__memo-list {
    background: #ffffff;
    margin-block: 1.8em 0;
    padding: 20px 20px 20px 40px;
    font-size: 0.9rem;
    color: #529641;
  }
  .spot-detail-steps__memo-list li {
    list-style: disc;
    line-height: 1.4
  }
  .spot-detail-steps__memo-list li + li {
    margin-block-start: 10px;
  }

  /*======== map ==========================*/
  .spot-detail-map {
    width: 100%;
    margin-block-start: 30px;
  }
  .spot-detail-map__iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
  }
  @media (max-width: 1024px) {
    .spot-detail-map__iframe {
      height: 360px;
    }
  }

  /*======== accesslist ==========================*/
  .spot-detail-access__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .spot-detail-accesslist {
    list-style: none;
    margin-block-start: 30px;
  }
  .spot-detail-accesslist__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-block: 10px;
  }
  .spot-detail-accesslist__icon {
    width: 16px;
    height: 16px;
    margin-top: 0.35em;
    flex: 0 0 auto;
  }
  .spot-detail-accesslist__label {
    white-space: nowrap;
    flex: 0 0 auto;
    background: var(--color-yellow);
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 2px 10px;
  }
  .spot-detail-accesslist__text {
    flex: 1 1 auto;
    min-width: 0;
  }
  @media (max-width: 640px) {
    .spot-detail-accesslist__item {
      flex-wrap: wrap;
    }
    .spot-detail-accesslist__text {
      width: 100%;
    }
  }

  /*======== spot-detail--memo ==========================*/
  .spot-detail--memo .guide__list {
    margin-block-end: 0;
  }

  /*======== spot-detail-note ==========================*/
  .spot-detail-note {
    background: var(--bg-color-yellow);
    padding: 20px clamp(20px,4.688vw,30px);
    border-radius: 4px;
    margin-block-start: 30px;
    border: 1px solid var(--color-yellow)
  }
  .spot-detail-note__title {
    margin: 0 0 12px;
    font-size: 0.98rem;
    border-bottom: 1px dashed var(--color-yellow);
    padding-block-end: 4px;
  }


  
}/*end @layer pages*/