@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap";
@layer foundation, vendor, layout, component, project, page, utilities;
:root {
  --sans-serif:
  	"Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans",
  	"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --serif: "Noto Serif JP", serif;
  --zen-kaku-gothic-antique: "Zen Kaku Gothic Antique", sans-serif;
  --en-sans: "", sans-serif;
  --en-serif: "", serif;
  --base: #fff;
  --main: #011111;
  --color-red: #a54a4a;
  --color-skyblue: #84cbff;
  --color-blue: #336bc6;
  --color-beige: #fcf7e8;
  --color-cream: #f0e7cb;
  --color-gray: #babdc4;
  --container-w: 62.5rem;
  --container-space: 4rem;
}
@media screen and (max-width: 1284px) {
  :root {
    --header-h: 5rem;
  }
}
@media (width <= 600px) {
  :root {
    --container-space: 2rem;
    --header-h: 3.75rem;
  }
}

@layer foundation {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  dl,
  dt,
  dd,
  ol,
  ul,
  figure {
    all: unset;
    display: revert;
  }
  body {
    line-height: 1;
  }
  ol,
  ul {
    list-style: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  img {
    vertical-align: middle;
  }
}
@layer foundation {
  html {
    height: 100%;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
  }
  body {
    min-width: 320px;
    font-family: var(--sans-serif);
    line-height: 1.8;
    color: var(--main);
    background: var(--color-skyblue);
    text-size-adjust: 100%;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  :focus-visible {
    outline: 2px solid blue;
  }
  img,
  svg,
  iframe,
  video,
  picture {
    max-width: 100%;
  }
  img {
    height: auto;
    font-size: 12px;
    letter-spacing: 0;
  }
  a {
    word-break: break-all;
  }
  @media screen and (min-width: 768px) {
    a[href^="tel:"] {
      display: inline-block;
      pointer-events: none;
    }
  }
  small {
    font-size: 80%;
  }
  button,
  input[type=button],
  input[type=submit] {
    font: inherit;
    cursor: pointer;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }
  label {
    display: inline-block;
    cursor: pointer;
  }
}
@layer foundation {
  .js-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
  }
  .js-fade-in.is-active {
    opacity: 1;
    transform: translateY(0);
  }
  .js-fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
  }
  .js-fade-in-right.is-active {
    opacity: 1;
    transform: translateX(0);
  }
  .js-fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
  }
  .js-fade-in-left.is-active {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ========================================
  サイト共通のフッター
======================================== */
@layer layout {
  .l-footer {
    position: relative;
    z-index: 2;
    background-color: var(--main);
  }
  .l-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.125rem;
    padding-inline: 1.5rem;
  }
  @media screen and (max-width: 1284px) {
    .l-footer__inner {
      flex-direction: column;
      width: min(100% - var(--container-space), 30.625rem);
      padding-block: 3.5625rem 1.25rem;
      padding-inline: 0;
      margin-inline: auto;
    }
  }
  .l-footer__banners {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
  }
  @media screen and (min-width: 1285px) {
    .l-footer__banners {
      display: none;
    }
  }
  @media screen and (max-width: 1284px) {
    .l-footer__banners li {
      width: calc(50% - 0.625rem);
    }
  }
  .l-footer__banners li a {
    display: block;
  }
  @media (any-hover: hover) {
    .l-footer__banners li a {
      transition: 0.3s;
      transition-property: transform;
    }
    .l-footer__banners li a:hover {
      transform: scale(1.05);
    }
  }
  .l-footer__ttl {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
  }
  @media screen and (max-width: 1284px) {
    .l-footer__ttl {
      margin-top: 1.5625rem;
    }
  }
  .l-footer__copyright {
    font-size: 0.5625rem;
    font-weight: 300;
    color: #fff;
  }
  @media screen and (max-width: 1284px) {
    .l-footer__copyright {
      margin-top: 0.4375rem;
    }
  }
}
/* ========================================
  サイト共通のヘッダー
======================================== */
@layer layout {
  .l-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-block: 2.5rem;
  }
  @media screen and (max-width: 1284px) {
    .l-header {
      padding-block: 0;
      background-color: #fff;
    }
  }
  .l-header__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .l-header__visual a {
    display: block;
  }
  @media (any-hover: hover) {
    .l-header__visual a {
      transition: 0.3s;
      transition-property: transform;
    }
    .l-header__visual a:hover {
      transform: scale(1.05);
    }
  }
  .l-header__info {
    padding: 1.125rem 1.4375rem;
    margin-top: 1.875rem;
    background-color: #fff;
    border-radius: 0.75rem;
  }
  @media screen and (max-width: 1284px) {
    .l-header__info {
      width: min(100% - var(--container-space), 31.25rem);
      padding: 1.375rem 3.125rem;
      margin-inline: auto;
      margin-top: 1.25rem;
      background-color: var(--color-beige);
    }
  }
  .l-header__info-ttl {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
  }
  @media screen and (max-width: 1284px) {
    .l-header__info-ttl {
      font-size: 1.5rem;
    }
  }
  @media (width <= 500px) {
    .l-header__info-ttl {
      font-size: clamp(1.125rem, 15.8873239437px + 0.5633802817vw, 1.5rem);
    }
  }
  .l-header__info-desc {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 2.1;
  }
  @media screen and (max-width: 1284px) {
    .l-header__info-desc {
      font-size: 1rem;
      line-height: 1.8;
    }
  }
  @media (width <= 500px) {
    .l-header__info-desc {
      font-size: clamp(0.875rem, 13.2957746479px + 0.1877934272vw, 1rem);
    }
  }
  .l-header__info-date {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-blue);
  }
  @media screen and (max-width: 1284px) {
    .l-header__info-date {
      font-size: 1.125rem;
    }
  }
  @media (width <= 500px) {
    .l-header__info-date {
      font-size: clamp(1rem, 15.2957746479px + 0.1877934272vw, 1.125rem);
    }
  }
}
/* ========================================
  メインコンテンツ
======================================== */
@layer layout {
  .l-main {
    padding-bottom: 2.5rem;
    background-color: var(--color-beige);
  }
  @media screen and (max-width: 1284px) {
    .l-main {
      padding-bottom: 4.875rem;
    }
  }
  .shops .l-main, .detail .l-main {
    height: 100%;
  }
  @media screen and (max-width: 1284px) {
    .shops .l-main, .detail .l-main {
      height: calc(100% - var(--header-h));
      margin-top: var(--header-h);
    }
  }
  .shops .l-main {
    padding-top: 0.625rem;
  }
  .detail .l-main {
    padding-top: 0.625rem;
  }
}
/* ========================================
  ヘッダーのナビゲーション（グローバルナビ）
======================================== */
@layer layout {
  .l-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-block: 2.5rem;
  }
  @media screen and (max-width: 1284px) {
    .l-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--header-h);
      padding-block: 0.625rem;
      background-color: #fff;
    }
  }
  @media screen and (max-width: 1284px) {
    .l-nav.is-expanded .l-nav__body {
      visibility: visible;
      opacity: 1;
    }
  }
  @media screen and (min-width: 1285px) {
    .l-nav__logo {
      display: none;
    }
  }
  @media screen and (max-width: 1284px) {
    .l-nav__logo {
      text-align: center;
    }
  }
  @media screen and (max-width: 1284px) {
    .l-nav__logo img {
      aspect-ratio: 199/63;
    }
  }
  @media (width <= 600px) {
    .l-nav__logo img {
      width: auto;
      height: 2.5rem;
    }
  }
  .l-nav__btn {
    position: relative;
    display: none;
    padding: 0;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__btn {
      position: absolute;
      top: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: var(--header-h);
      height: var(--header-h);
      padding: 0;
      margin: 0;
      background-color: transparent;
      border: none;
    }
  }
  @media screen and (min-width: 1285px) {
    .l-nav__close-btn {
      display: none;
    }
  }
  @media screen and (max-width: 1284px) {
    .l-nav__close-btn {
      position: absolute;
      top: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: var(--header-h);
      height: var(--header-h);
      padding: 0;
      margin: 0;
      background-color: transparent;
      border: none;
    }
  }
  .l-nav__close-btn .l-nav__line {
    background-color: #fff;
  }
  .l-nav__close-btn .l-nav__line.is-1 {
    transform: rotate(30deg);
  }
  .l-nav__close-btn .l-nav__line.is-2 {
    transform: rotate(-30deg);
  }
  .l-nav__lines {
    position: relative;
    display: block;
    width: 55%;
    height: 55%;
  }
  @media (width <= 600px) {
    .l-nav__lines {
      width: 40%;
      height: 40%;
    }
  }
  .l-nav__line {
    position: absolute;
    inset-block: 0;
    display: block;
    width: 100%;
    height: 2px;
    margin-block: auto;
    background-color: #ccae46;
  }
  .l-nav__line.is-1 {
    transform: translateY(-0.9375rem);
  }
  @media (width <= 600px) {
    .l-nav__line.is-1 {
      transform: translateY(-0.4375rem);
    }
  }
  .l-nav__line.is-3 {
    transform: translateY(0.9375rem);
  }
  @media (width <= 600px) {
    .l-nav__line.is-3 {
      transform: translateY(0.4375rem);
    }
  }
  .l-nav__body {
    padding-block: 1.5rem 1.625rem;
    background-color: #fff;
    border-radius: 1.125rem;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__body {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 99;
      display: block;
      visibility: hidden;
      width: 100%;
      max-height: 100%;
      padding-block: 5rem 3.4375rem;
      overflow: auto;
      overscroll-behavior-y: contain;
      background: #00a8dd;
      border-radius: 0;
      opacity: 0;
      transition: 0.3s;
      transition-property: transform, visibility, opacity;
    }
  }
  @media screen and (max-width: 1284px) {
    .l-nav__bg {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 98;
      visibility: hidden;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.5);
      opacity: 0;
      backdrop-filter: blur(10px);
      transition: 0.3s;
      transition-property: opacity, visibility;
    }
  }
  .l-nav.is-expanded .l-nav__bg {
    visibility: visible;
    opacity: 1;
  }
  .l-nav__nav-ttl {
    font-weight: 700;
    line-height: 1;
    color: var(--color-red);
    text-align: center;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__nav-ttl {
      display: none;
    }
  }
  .l-nav__list {
    margin-top: 0.625rem;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__list {
      width: min(100% - var(--container-space), 31.25rem);
      margin-inline: auto;
    }
  }
  .l-nav__item {
    position: relative;
    counter-increment: nav-item;
  }
  .l-nav__item::before, .l-nav__item::after {
    position: absolute;
    display: block;
    width: calc(100% - 2.75rem);
    height: 2px;
    margin-inline: auto;
    content: "";
    background: url("../img/common/line.svg") repeat-x left bottom/4px 2px;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__item::before, .l-nav__item::after {
      width: 100%;
      height: 4px;
      background: url("../img/common/line_white.svg") repeat-x left bottom/8px 4px;
    }
  }
  .l-nav__item::before {
    display: none;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__item::before {
      top: 0;
      display: block;
    }
  }
  .l-nav__item::after {
    inset-inline: 0;
    bottom: -1px;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__item::after {
      bottom: 0;
    }
  }
  .l-nav__item:not(:first-child)::before {
    display: none;
  }
  .l-nav__item:last-child::after {
    display: none;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__item:last-child::after {
      display: block;
    }
  }
  .l-nav__link {
    position: relative;
    display: block;
    padding: 0.6875rem 1.375rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--main);
  }
  @media screen and (max-width: 1284px) {
    .l-nav__link {
      padding: 1.9375rem 3.125rem;
      font-size: 1.5rem;
      color: #fff;
      text-align: center;
    }
  }
  @media (width <= 600px) {
    .l-nav__link {
      padding: 1.25rem;
      font-size: clamp(1.125rem, 15.8873239437px + 0.5633802817vw, 1.5rem);
    }
  }
  .l-nav__item .l-nav__link::before {
    margin-right: 0.4375rem;
    content: counter(nav-item, decimal-leading-zero);
  }
  @media screen and (max-width: 1284px) {
    .l-nav__item .l-nav__link::before {
      position: absolute;
      inset-block: 0;
      left: 0;
      height: 1em;
      margin-block: auto;
      font-size: 2.1875rem;
      line-height: 1;
    }
  }
  @media (width <= 600px) {
    .l-nav__item .l-nav__link::before {
      font-size: clamp(1.25rem, 14.7183098592px + 1.4084507042vw, 2.1875rem);
    }
  }
  @media (any-hover: hover) {
    .l-nav__link {
      transition: 0.3s;
      transition-property: background-color;
    }
    .l-nav__link:hover {
      background-color: #e6dbdc;
    }
  }
  @media screen and (min-width: 1285px) {
    .l-nav__menu-img {
      display: none;
    }
  }
  @media screen and (max-width: 1284px) {
    .l-nav__menu-img {
      width: min(100% - 5rem, 24rem);
      margin-inline: auto;
      margin-top: 2.1875rem;
      text-align: center;
    }
  }
  .l-nav__btn-wrap {
    margin-top: 1.875rem;
    text-align: center;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__btn-wrap {
      display: none;
    }
  }
  .l-nav__banners {
    display: grid;
    gap: 0.625rem;
    margin-top: 1.875rem;
  }
  @media screen and (max-width: 1284px) {
    .l-nav__banners {
      display: none;
    }
  }
  .l-nav__banners li a {
    display: block;
  }
  @media (any-hover: hover) {
    .l-nav__banners li a {
      transition: 0.3s;
      transition-property: transform;
    }
    .l-nav__banners li a:hover {
      transform: scale(1.05);
    }
  }
}
/* ========================================
  コンテンツ（メインコンテンツとサイドバーのラッパー）
======================================== */
@layer layout {
  .l-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template: "header .. main .. nav" 1fr/20.375rem 1.625rem 1fr 1.625rem 15.375rem;
    width: min(100% - 3rem, 80rem);
    margin-inline: auto;
  }
  @media screen and (max-width: 1284px) {
    .l-content {
      grid-template: "nav" "header" "main" 1fr/100%;
      width: min(100% - 3rem, 56.25rem);
    }
    .shops .l-content, .detail .l-content {
      grid-template: "nav" "main" 1fr/100%;
    }
  }
  @media screen and (max-width: 767px) {
    .l-content {
      width: 100%;
    }
  }
  .l-content__header {
    grid-area: header;
  }
  @media screen and (max-width: 1284px) {
    .home .l-content__header {
      margin-top: var(--header-h);
    }
  }
  @media screen and (max-width: 1284px) {
    .shops .l-content__header, .detail .l-content__header {
      display: none;
    }
  }
  .l-content__main {
    grid-area: main;
  }
  .l-content__nav {
    grid-area: nav;
  }
}
/* ========================================
  ページ全体のレイアウト
======================================== */
@layer layout {
  .l-page {
    display: grid;
    grid-template-rows: 1fr auto;
    width: 100%;
    min-height: 100vh;
    margin-inline: auto;
    overflow: clip;
  }
  .l-page__bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
  }
  @media screen and (min-width: 768px) {
    .l-page__bg.l-page__bg--cloud {
      background: url("../img/common/bg_cloud.webp") repeat-y center top/1480px 1080px;
    }
  }
  @media screen and (min-width: 768px) {
    .l-page__bg.l-page__bg--fruit-01 {
      background: url("../img/common/bg_fruit_01.webp") no-repeat left -1.125rem center/460px 760px;
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    }
    .is-loaded .l-page__bg.l-page__bg--fruit-01 {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @media screen and (min-width: 768px) {
    .l-page__bg.l-page__bg--fruit-02 {
      background: url("../img/common/bg_fruit_02.webp") no-repeat right -4.5625rem center/460px 760px;
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    }
    .is-loaded .l-page__bg.l-page__bg--fruit-02 {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@layer component {
  .c-btn {
    position: relative;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    width: min(100% - 2.375rem, 11.875rem);
    min-height: 3rem;
    padding: 0.3125rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: var(--main);
    border: 1px solid var(--main);
    border-radius: 0.75rem;
  }
  .c-btn.c-btn--search::before {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    background: url("../img/common/icon/icon_glass.png") no-repeat center center/contain;
  }
  .c-btn.c-btn--blank::after {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    background: url("../img/common/icon/icon_blank.png") no-repeat center center/contain;
  }
  .c-btn.c-btn--back {
    color: var(--main);
    background: transparent;
  }
  .c-btn.c-btn--back::before {
    position: absolute;
    inset-block: 0;
    left: 1.0625rem;
    display: block;
    width: auto;
    height: 0.5rem;
    aspect-ratio: 1;
    margin-block: auto;
    content: "";
    border-bottom: 2px solid var(--main);
    border-left: 2px solid var(--main);
    transform: rotate(45deg);
  }
  .c-btn.c-btn--size-md {
    width: min(100% - 2.375rem, 13.4375rem);
  }
  .c-btn.c-btn--size-lg {
    width: min(100% - 2.375rem, 20rem);
  }
  @media (any-hover: hover) {
    .c-btn {
      transition: 0.3s;
      transition-property: color, background;
    }
    .c-btn:hover {
      color: var(--main);
      background-color: #fff;
    }
    .c-btn:hover.c-btn--search::before {
      background: url("../img/common/icon/icon_glass_main.png") no-repeat center center/contain;
    }
    .c-btn:hover.c-btn--blank::after {
      background: url("../img/common/icon/icon_blank_main.png") no-repeat center center/contain;
    }
  }
  .c-btn__txt {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
  }
  @media (width <= 600px) {
    .c-btn__txt {
      font-size: clamp(0.875rem, 13.2957746479px + 0.1877934272vw, 1rem);
    }
  }
}
@layer component {
  .c-container {
    width: min(100% - var(--container-space), var(--container-w));
    margin-inline: auto;
  }
}
@layer component {
  .c-icon-search, .c-icon-pin, .c-icon-arrow {
    display: inline-block;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
  }
}
@layer component {
  .c-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.625rem;
    min-height: 1.4375rem;
    padding: 0.125rem 0.625rem;
    font-size: 0.625rem;
    font-weight: 500;
    text-align: center;
    background: #fff;
    border-radius: 1.25rem;
  }
  .c-badge.c-badge--lg {
    min-width: 4.5625rem;
    min-height: 1.8125rem;
    padding: 0.25rem 0.875rem;
    font-size: 0.75rem;
  }
  .c-badge.c-badge--bg-main {
    color: #fff;
    background: var(--main);
  }
  .c-badge.c-badge--bg-sticker {
    color: #fff;
    background: #b81d23;
  }
  .c-badge.c-badge--bg-pin-back-button {
    color: #fff;
    background: #ee7800;
  }
  .c-badge.c-badge--pin {
    gap: 0.25rem;
  }
  .c-badge.c-badge--pin::before {
    display: block;
    width: 0.6875rem;
    height: 1rem;
    content: "";
    background: url("../img/common/icon/icon_pin.png") no-repeat center center/contain;
  }
}
@layer component {
  .c-skip-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    color: var(--color-red);
    background: var(--color-beige);
    transform: translateY(-100%);
    transition: transform 0.2s ease;
  }
  .c-skip-link:focus {
    transform: translateY(0);
  }
}
@layer project {
  a {
    text-decoration: none;
  }
  a:not(.c-btn, .l-nav__link) {
    color: inherit;
  }
}
@layer project {
  .p-card {
    background: var(--base);
    border: 1px solid var(--color-gray);
  }
  .p-card.p-card--related {
    border: none;
  }
  @media (any-hover: hover) {
    .p-card {
      transition: 0.5s;
      transition-property: box-shadow;
    }
    .p-card .p-card__thumb {
      overflow: hidden;
    }
    .p-card .p-card__thumb img {
      transition: 0.5s;
      transition-property: transform;
    }
    .p-card .p-card__footer::after {
      transition: 0.5s;
      transition-property: transform;
    }
    .p-card:hover {
      box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
    }
    .p-card:hover .p-card__thumb img {
      transform: scale(1.05);
    }
    .p-card:hover .p-card__footer::after {
      transform: translateX(5px);
    }
  }
  .p-card__link {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
  }
  .p-card__thumb {
    position: relative;
    aspect-ratio: 284/180;
  }
  .p-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
  }
  .p-card--related .p-card__badge {
    min-width: 2.8125rem;
    min-height: 1.1875rem;
    padding: 0.125rem;
    font-size: 0.75rem;
    line-height: 1;
  }
  .p-card__body {
    display: flex;
    flex-direction: column;
    padding: 1.375rem 1.375rem 1.625rem;
  }
  .p-card--related .p-card__body {
    padding: 0.625rem 0.75rem 0.875rem;
  }
  .p-card__name {
    font-weight: 700;
    line-height: 1.5;
  }
  .p-card--related .p-card__name {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .p-card__shop {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-red);
  }
  .p-card--related .p-card__shop {
    flex-grow: 1;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .p-card__desc {
    display: -webkit-box;
    margin-top: 0.3125rem;
    margin-bottom: 1.375rem;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.65;
    -webkit-box-orient: vertical;
  }
  .p-card__footer {
    position: relative;
    padding-top: 1.375rem;
    padding-right: 1.875rem;
    margin-top: auto;
    border-top: 1px solid #e0e0e0;
  }
  .p-card__footer::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1.4375rem;
    height: 1.4375rem;
    content: "";
    background: url("../img/common/icon/icon_circle_arrow.png") no-repeat center center/contain;
  }
  .p-card--related .p-card__footer {
    gap: 0.25rem;
    padding-top: 0;
    padding-right: 0;
    margin-top: 0.75rem;
    border-top: none;
  }
  .p-card--related .p-card__footer::after {
    display: none;
  }
  .p-card__novelty {
    position: relative;
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  .p-card__novelty::before {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    background: url("../img/common/icon/icon_present.png") no-repeat center center/contain;
  }
  .p-card__novelty + .p-card__place {
    margin-top: 0.625rem;
  }
  .p-card__place {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.75rem;
    font-weight: 300;
  }
  .p-card__place::before {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 1.1875rem;
    height: 1.6875rem;
    margin-block: auto;
    content: "";
    background: url("../img/common/icon/icon_pin.png") no-repeat center center/contain;
  }
  .p-card--related .p-card__place {
    padding-left: 1.375rem;
  }
  .p-card--related .p-card__place::before {
    width: 0.75rem;
    height: 1.125rem;
  }
  .p-card__arrow {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
    color: var(--base);
    background: var(--main);
    border-radius: 50%;
  }
}
@layer project {
  .p-ttl {
    margin-bottom: 3rem;
    text-align: center;
  }
  .p-ttl.p-ttl--size-sm {
    margin-bottom: 1.25rem;
  }
  .p-ttl__en {
    margin-bottom: 0.625rem;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--color-red);
    letter-spacing: 0.03em;
  }
  @media (width <= 500px) {
    .p-ttl__en {
      font-size: clamp(1.375rem, 19.8873239437px + 0.5633802817vw, 1.75rem);
    }
  }
  .p-ttl--size-md .p-ttl__en {
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .p-ttl--size-sm .p-ttl__en {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .p-ttl__main {
    font-family: var(--zen-kaku-gothic-antique);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
  @media (width <= 500px) {
    .p-ttl__main {
      font-size: clamp(2rem, 27.7746478873px + 1.1267605634vw, 2.75rem);
    }
  }
  .p-ttl--size-md .p-ttl__main {
    line-height: 1.4;
  }
  .p-ttl--size-sm .p-ttl__main {
    font-size: 1.625rem;
  }
  .p-ttl__lead {
    margin-top: 0.8125rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
  }
  @media (width <= 500px) {
    .p-ttl__lead {
      font-size: clamp(0.875rem, 13.2957746479px + 0.1877934272vw, 1rem);
    }
  }
  .p-ttl--size-md .p-ttl__lead {
    margin-top: 1.25rem;
    font-weight: 300;
  }
  .p-ttl--size-sm .p-ttl__lead {
    margin-top: 0;
    font-size: 1rem;
  }
}
@layer project {
  .p-tab__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .p-tab__btn {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--main);
    background: var(--base);
    border: 1px solid var(--main);
    border-radius: 62.4375rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .p-tab__btn[aria-selected=true] {
    color: var(--base);
    background: var(--main);
  }
  .p-tab__panel {
    display: none;
  }
  .p-tab__panel.is-visible {
    display: block;
  }
}
@layer project {
  .p-filter {
    padding: 1.5625rem 1.4375rem;
    background: #fff;
    border: 2px solid var(--color-gray);
    border-radius: 0.75rem;
  }
  .p-filter__group {
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    gap: 0.625rem 1.875rem;
    min-width: 0;
    padding: 0;
    border: none;
  }
  .p-filter__group + .p-filter__group {
    margin-top: 0.875rem;
  }
  .p-filter__group-wrap + .p-filter__group-wrap {
    margin-top: 0.875rem;
  }
  .p-filter__group-wrap:has(fieldset) {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.625rem 1.875rem;
    min-width: 0;
    padding: 0;
    border: none;
  }
  .p-filter__group-wrap:has(fieldset) fieldset {
    display: contents;
  }
  .p-filter__label {
    padding-top: 0.5lh;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .p-filter__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5625rem;
  }
  .p-filter__input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
  }
  .p-filter__input:checked + .p-filter__btn {
    color: #fff;
    background: var(--main);
  }
  .p-filter__input:focus-visible + .p-filter__btn {
    outline: 2px solid var(--main);
    outline-offset: 2px;
  }
  .p-filter__btn {
    display: block;
    min-width: 4.5625rem;
    min-height: 1.8125rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background: #f7f1df;
    border: 1px solid var(--color-gray);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
  }
  @media (any-hover: hover) {
    .p-filter__btn:hover {
      color: #fff;
      background: var(--main);
    }
  }
}
@layer project {
  .p-hero {
    position: relative;
  }
  .p-hero__head {
    padding-bottom: 33.625rem;
    background: linear-gradient(to bottom, var(--color-cream) 50%, transparent 50%), url("../img/home/content_bg.webp") no-repeat center bottom/cover;
  }
  @media screen and (max-width: 1284px) {
    .p-hero__head {
      padding-top: 2.5rem;
      padding-bottom: 85%;
      background-image: url("../img/home/content_bg_sp.webp");
      background-position: center bottom;
      background-size: cover;
    }
  }
  @media (width <= 625px) {
    .p-hero__head {
      padding-bottom: 95%;
    }
  }
  .p-hero__head-img {
    padding: 1.25rem 2.5rem 0;
  }
  @media screen and (max-width: 1284px) {
    .p-hero__head-img {
      display: none;
    }
  }
  .p-hero__head-copy {
    padding: 1.25rem;
    margin-top: 2.625rem;
    font-size: 1.6875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-red);
    text-align: center;
    background-color: #fff;
    border-radius: 0.75rem;
  }
  @media screen and (max-width: 1284px) {
    .p-hero__head-copy {
      margin-top: 0;
    }
  }
  @media (width <= 625px) {
    .p-hero__head-copy {
      padding: 0.625rem 0.9375rem;
      font-size: clamp(1.125rem, 14.8309859155px + 0.8450704225vw, 1.6875rem);
    }
  }
  .p-hero__head-ttl {
    margin-top: 1.4375rem;
    font-family: var(--zen-kaku-gothic-antique);
    font-size: 4.3125rem;
    font-weight: 900;
    line-height: 1.45;
  }
  @media (width <= 625px) {
    .p-hero__head-ttl {
      font-size: clamp(2.625rem, 32.4929577465px + 2.5352112676vw, 4.3125rem);
    }
  }
  .p-hero__head-ttl .line-1,
  .p-hero__head-ttl .line-2,
  .p-hero__head-ttl .line-3 {
    display: block;
  }
  .p-hero__head-ttl .line-1 {
    padding-left: 2.0625rem;
  }
  @media (width <= 625px) {
    .p-hero__head-ttl .line-1 {
      padding-left: 1.375rem;
    }
  }
  .p-hero__head-ttl .line-2 {
    color: var(--color-red);
  }
  .p-hero__head-ttl .line-2-moji {
    margin-left: -0.3em;
    color: var(--main);
  }
  .p-hero__head-ttl .line-3 {
    padding-left: 2.5rem;
  }
  @media (width <= 625px) {
    .p-hero__head-ttl .line-3 {
      padding-left: 1.6875rem;
    }
  }
  .p-hero__body {
    width: 50%;
    padding-left: 2rem;
    margin-top: -27.75rem;
  }
  @media screen and (max-width: 1284px) {
    .p-hero__body {
      padding-bottom: 5%;
      margin-top: -60%;
    }
  }
  @media (width <= 625px) {
    .p-hero__body {
      width: 100%;
      padding-inline: var(--container-space);
      padding-bottom: 0;
      margin-top: -20%;
    }
  }
  .p-hero__sttl {
    font-family: var(--zen-kaku-gothic-antique);
    font-size: 2.125rem;
    font-weight: 900;
    line-height: 1.7;
  }
  @media (width <= 625px) {
    .p-hero__sttl {
      font-size: clamp(1.75rem, 25.8873239437px + 0.5633802817vw, 2.125rem);
    }
  }
  .p-hero__txt {
    margin-top: 0.875rem;
    font-weight: 500;
    line-height: 1.68;
    text-align: left;
  }
  .p-hero__btn-wrap {
    margin-top: 1.6875rem;
  }
  .p-hero__dl {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-top: 0.625rem;
  }
  .p-hero__dl dt {
    font-weight: 700;
  }
  .p-hero__dl dt::after {
    content: "：";
  }
}
@layer project {
  .p-about {
    position: relative;
    z-index: 2;
    padding: 1.875rem 1.25rem 4.0625rem;
    margin-top: 3.125rem;
    background-color: #fff;
    border: 2px solid var(--color-gray);
    border-radius: 0.75rem;
  }
  .p-about__ttl {
    font-size: clamp(1.375rem, 19.8873239437px + 0.5633802817vw, 1.75rem);
    font-weight: 700;
    color: var(--color-red);
    text-align: center;
  }
  .p-about__txt {
    margin-top: 0.9375rem;
    font-weight: 500;
    line-height: 1.875;
  }
  .p-about__txt .indent {
    text-indent: 1em;
  }
  .p-about__data {
    margin-top: 1.125rem;
  }
  .p-about__data div {
    display: grid;
    grid-template-columns: 32.5% 1fr;
  }
  .p-about__data div:nth-child(even) {
    background-color: var(--color-beige);
  }
  .p-about__data div:nth-child(odd) {
    background-color: var(--color-cream);
  }
  .p-about__data div + div {
    border-top: 1px solid #fff;
  }
  .p-about__data div dt,
  .p-about__data div dd {
    padding-block: 0.25rem;
    padding-inline: 0.625rem 0.3125rem;
    font-weight: 600;
  }
  .p-about__data div dt {
    border-right: 1px solid #fff;
  }
  .p-about__badge {
    width: min(100%, 24.4375rem);
    margin-inline: auto;
    margin-top: 3.75rem;
  }
  .p-about__badge img {
    width: 100%;
    height: auto;
  }
  @media (any-hover: hover) {
    .p-about__badge {
      transition: 0.3s;
      transition-property: transform;
    }
    .p-about__badge:hover {
      transform: scale(1.05);
    }
  }
}
@layer project {
  .p-shops {
    position: relative;
    padding-block: 3.5rem 0;
  }
  .p-shops::before {
    position: absolute;
    top: -4.375rem;
    left: 0;
    display: block;
    width: 100%;
    height: 31.25rem;
    content: "";
    background: url("../img/home/deco_ichigo.webp") no-repeat left -10px top/9.1875rem, url("../img/home/deco_orange.webp") no-repeat right 25px top 32px/13.75rem, url("../img/home/deco_lemon.webp") no-repeat left 2px bottom -10px/11.875rem;
  }
  @media (width <= 600px) {
    .p-shops::before {
      background: url("../img/home/deco_ichigo.webp") no-repeat left -10px top/7.5rem, url("../img/home/deco_orange.webp") no-repeat right 5px top 32px/10.625rem, url("../img/home/deco_lemon.webp") no-repeat left 2px bottom -10px/8.75rem;
    }
  }
  .p-shops::after {
    position: absolute;
    bottom: -3.125rem;
    left: 0;
    display: block;
    width: 100%;
    height: 18.75rem;
    content: "";
    background: url("../img/home/deco_suika.webp") no-repeat right 17px top -24px/12.5rem, url("../img/home/deco_ramen.webp") no-repeat left 3px bottom 20px/13.125rem;
  }
  @media (width <= 600px) {
    .p-shops::after {
      background: url("../img/home/deco_suika.webp") no-repeat right 5px top -24px/10.625rem, url("../img/home/deco_ramen.webp") no-repeat left 3px bottom 40px/10rem;
    }
  }
  .p-shops .c-container {
    position: relative;
    z-index: 1;
  }
  .shops .p-shops {
    padding-block: 0.625rem 0;
  }
  .shops .p-shops::before, .shops .p-shops::after {
    display: none;
  }
  .p-shops__status {
    position: relative;
    display: inline-flex;
    gap: 0.625rem;
    place-items: center;
    padding: 0.4375rem 3.0625rem 0.4375rem 1.625rem;
    font-size: 0.875rem;
    font-weight: 400;
    background-color: #fff;
    border: 1px solid var(--color-gray);
    border-radius: 100vmax;
  }
  .p-shops__status-icon {
    position: relative;
    display: block;
    width: 1rem;
    height: 1rem;
    background: #efebdf;
    border-radius: 50%;
  }
  .p-shops__status-icon::before {
    position: absolute;
    inset: 0;
    width: 0.5rem;
    height: 0.5rem;
    margin: auto;
    content: "";
    background: var(--color-red);
    border-radius: 50%;
  }
  .p-shops__filter {
    margin-top: 1.5625rem;
  }
  .p-shops__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16.875rem, 1fr));
    gap: 1.5rem;
    margin-top: 0.9375rem;
  }
  .p-shops__item {
    overflow: hidden;
    background: var(--base);
    border: 1px solid var(--color-gray);
  }
  @media (any-hover: hover) {
    .p-shops__item:hover {
      box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
      transform: translateY(-2px);
    }
  }
  .p-shops__item .p-shops__item-link {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
  }
  .p-shops__item .p-shops__item-thumb {
    position: relative;
    aspect-ratio: 284/180;
  }
  .p-shops__item .p-shops__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-shops__item .p-shops__item-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
  }
  .p-shops__item .p-shops__item-body {
    display: flex;
    flex-direction: column;
    padding: 1.375rem 1.375rem 1.625rem;
  }
  .p-shops__item .p-shops__item-name {
    font-weight: 700;
  }
  .p-shops__item .p-shops__item-shop {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--color-red);
  }
  .p-shops__item .p-shops__item-desc {
    display: -webkit-box;
    flex-grow: 1;
    margin-top: 0.3125rem;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.65;
    -webkit-box-orient: vertical;
  }
  .p-shops__item .p-shops__item-footer {
    position: relative;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.375rem;
    padding-right: 1.875rem;
    margin-top: 1.375rem;
    border-top: 1px solid #e0e0e0;
  }
  .p-shops__item .p-shops__item-footer::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1.4375rem;
    height: 1.4375rem;
    content: "";
    background: url("../img/common/icon/icon_circle_arrow.png") no-repeat center center/contain;
  }
  .p-shops__item .p-shops__item-place {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.75rem;
    font-weight: 300;
  }
  .p-shops__item .p-shops__item-place::before {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 1.1875rem;
    height: 1.6875rem;
    margin-block: auto;
    content: "";
    background: url("../img/common/icon/icon_pin.png") no-repeat center center/contain;
  }
  .p-shops__item .p-shops__item-arrow {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
    color: var(--base);
    background: var(--main);
    border-radius: 50%;
  }
  .p-shops__count {
    margin-top: 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
  }
  .shops .p-shops__count {
    margin-top: 0.9375rem;
    font-size: 0.625rem;
    text-align: left;
  }
  .p-shops__empty {
    padding: 0.625rem;
    margin-top: 2.5rem;
    font-weight: 500;
    text-align: center;
  }
  .p-shops__empty[hidden] {
    display: none;
  }
  .p-shops__btn-wrap {
    margin-top: 0.625rem;
    text-align: center;
  }
  .p-shops__note {
    padding: 0.625rem;
    margin-top: 2.5rem;
    font-weight: 500;
    color: var(--color-red);
    text-align: center;
    letter-spacing: 0.04em;
    background: #fff;
    border: 2px solid var(--color-red);
  }
  @media (width <= 600px) {
    .p-shops__note {
      font-size: clamp(0.875rem, 13.2957746479px + 0.1877934272vw, 1rem);
    }
  }
  .p-shops__coming-soon {
    margin-top: 2.5rem;
    text-align: center;
  }
  .p-shops__coming-soon img {
    width: 100%;
  }
}
@layer project {
  .p-events {
    position: relative;
    padding-block: 4.4375rem 0;
  }
  .p-events::before {
    position: absolute;
    top: -4.375rem;
    left: 0;
    display: block;
    width: 100%;
    height: 31.25rem;
    content: "";
    background: url("../img/home/deco_manju.webp") no-repeat right 20px top 85px/14.375rem, url("../img/home/deco_tomato.webp") no-repeat left 12px bottom 92px/14.375rem;
  }
  @media (width <= 600px) {
    .p-events::before {
      background: url("../img/home/deco_manju.webp") no-repeat right 5px top 85px/11.25rem, url("../img/home/deco_tomato.webp") no-repeat left 5px bottom 92px/11.25rem;
    }
  }
  .p-events::after {
    position: absolute;
    bottom: -9.375rem;
    left: 0;
    display: block;
    width: 100%;
    height: 18.75rem;
    content: "";
    background: url("../img/home/deco_fish.webp") no-repeat right -3px bottom -44px/18.125rem;
  }
  .p-events .c-container {
    position: relative;
    z-index: 1;
  }
  .p-events__item {
    background-color: #fff;
    border: 2px solid var(--color-gray);
  }
  .p-events__img {
    aspect-ratio: 592/330;
  }
  .p-events__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-events__body {
    padding: 2.8125rem 2.5rem;
  }
  @media (width <= 600px) {
    .p-events__body {
      padding: 1.5625rem 1.25rem;
    }
  }
  .p-events__status {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: -2.5rem;
  }
  @media (width <= 600px) {
    .p-events__status {
      margin-left: -1.25rem;
    }
  }
  .p-events__status span {
    padding: 0.4375rem 1.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-red);
  }
  @media (width <= 600px) {
    .p-events__status span {
      padding: 0.4375rem 1.25rem;
      font-size: clamp(1rem, 15.2957746479px + 0.1877934272vw, 1.125rem);
    }
  }
  .p-events__status time {
    font-size: 1.125rem;
    font-weight: 600;
  }
  @media (width <= 600px) {
    .p-events__status time {
      font-size: clamp(1rem, 15.2957746479px + 0.1877934272vw, 1.125rem);
    }
  }
  .p-events__name {
    margin-top: 1.25rem;
    font-family: var(--zen-kaku-gothic-antique);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media (width <= 600px) {
    .p-events__name {
      font-size: clamp(1.5rem, 21.1830985915px + 0.7511737089vw, 2rem);
    }
  }
  .p-events__txt {
    margin-top: 1.0625rem;
    font-weight: 400;
    line-height: 1.875;
  }
  @media (width <= 600px) {
    .p-events__txt {
      font-size: clamp(0.875rem, 13.2957746479px + 0.1877934272vw, 1rem);
    }
  }
  .p-events__list {
    margin-top: 0.625rem;
    counter-reset: list;
  }
  .p-events__list > div {
    position: relative;
    padding-left: 1.5em;
    counter-increment: list;
  }
  .p-events__list > div + div {
    margin-top: 0.3125rem;
  }
  .p-events__list > div::before {
    position: absolute;
    left: 0;
    font-weight: 700;
    content: "(" counter(list) ")";
  }
  .p-events__list dt {
    font-weight: 700;
  }
  .p-events__list dt::after {
    content: "：";
  }
  .p-events__btn-wrap {
    padding-top: 1.875rem;
    margin-top: 1.875rem;
    text-align: center;
    border-top: 1px solid var(--color-gray);
  }
}
@layer project {
  .p-cta {
    position: relative;
    z-index: 2;
    padding-block: 3.125rem 16.5625rem;
    margin-top: 3.125rem;
    text-align: center;
    background: #01a6dd url("../img/home/cta_kumamon.webp") no-repeat center bottom/25.6875rem 22rem;
    border-radius: 0.75rem;
  }
  @media (width <= 600px) {
    .p-cta {
      padding-block: 1.875rem 15.625rem;
    }
  }
  .p-cta__en {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
  }
  @media (width <= 600px) {
    .p-cta__en {
      font-size: clamp(1.5rem, 22.5915492958px + 0.3755868545vw, 1.75rem);
    }
  }
  .p-cta__ttl {
    margin-top: 1.125rem;
    font-family: var(--zen-kaku-gothic-antique);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.45;
    color: #fff;
  }
  @media (width <= 600px) {
    .p-cta__ttl {
      font-size: clamp(2rem, 27.7746478873px + 1.1267605634vw, 2.75rem);
    }
  }
  .p-cta__txt {
    margin-top: 1.75rem;
    font-weight: 500;
    color: #fff;
  }
  @media (width <= 600px) {
    .p-cta__txt {
      font-size: clamp(0.875rem, 13.2957746479px + 0.1877934272vw, 1rem);
    }
  }
  .p-cta__btn-wrap {
    margin-top: 1.6875rem;
    text-align: center;
  }
}
@layer project {
  .p-form__input input[type=checkbox] + label,
  .p-form__input input[type=radio] + label {
    cursor: pointer;
  }
  .p-form__input input[type=checkbox]:focus + label,
  .p-form__input input[type=radio]:focus + label {
    text-decoration: underline;
  }
  .p-form__input input[type=checkbox]:disabled + label,
  .p-form__input input[type=radio]:disabled + label {
    cursor: not-allowed;
    color: #ccc;
  }
}
@layer project {
  .p-page-top {
    position: sticky;
    bottom: 3.75rem;
    z-index: 10;
    height: 0;
    margin-top: -3.75rem;
    text-align: right;
  }
  .is-main-nav-expanded .p-page-top {
    opacity: 0;
  }
  .p-page-top__btn {
    position: relative;
    top: 0;
    right: 1.5rem;
    display: inline-grid;
    place-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    margin: 0;
    background: url("../img/common/icon/icon_arrow_up_blue.png") center center/contain no-repeat;
    background-color: transparent;
    border: none;
    transform: translateY(300%);
    transition: transform 0.3s;
  }
  .p-page-top__btn.is-show {
    transform: translateX(0);
  }
  @media (hover: hover) {
    .p-page-top__btn:hover {
      transform: scale(1.1);
    }
  }
}
@layer project {
  .p-shop-detail__head {
    position: relative;
    margin-top: 0.625rem;
  }
  .p-shop-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-shop-detail__badge-list {
    position: absolute;
    top: 0.8125rem;
    left: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5625rem;
  }
  .p-shop-detail__body {
    padding-block: 1.25rem;
  }
  .p-shop-detail__shop {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-red);
  }
  .p-shop-detail__name {
    font-size: 1.75rem;
    font-weight: 700;
  }
  .p-shop-detail__price {
    gap: 0.625rem;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .p-shop-detail__tax {
    font-size: 0.7em;
  }
  .p-shop-detail__desc {
    padding-top: 1.6875rem;
    margin-top: 1.6875rem;
    font-weight: 300;
    line-height: 1.875;
    border-top: 1px solid #707070;
  }
  .p-shop-detail__novelty {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.3125rem;
    align-items: center;
    padding-top: 1.6875rem;
    margin-top: 1.6875rem;
    border-top: 1px solid #707070;
  }
  .p-shop-detail__novelty dt {
    font-weight: 300;
  }
  .p-shop-detail__novelty dt::after {
    content: ":";
  }
  .p-shop-detail__novelty dd {
    font-weight: 300;
    line-height: 1.875;
  }
  .p-shop-detail__info {
    padding: 1.25rem 1.75rem;
    margin-top: 2.5rem;
    background: #fff;
  }
  .p-shop-detail__place {
    display: grid;
    grid-template-columns: 2em 1fr;
    gap: 3.9375rem;
  }
  .p-shop-detail__floor-img {
    margin-top: 0.9375rem;
  }
  .p-shop-detail__floor-img img {
    width: 100%;
  }
  .p-shop-detail__btn-wrap {
    margin-top: 1.25rem;
    text-align: center;
  }
  .p-shop-detail__link {
    display: block;
    margin-bottom: 2rem;
  }
  .p-shop-detail__link a {
    color: var(--color-red);
  }
  .p-shop-detail__back {
    text-align: center;
  }
}
@layer project {
  .p-related {
    margin-top: 2.1875rem;
  }
  .p-related__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
  }
}
@layer project {
  .p-page-links {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    padding-top: 3.125rem;
    margin-top: 2.8125rem;
    border-top: 1px solid var(--color-gray);
  }
}
@layer project {
  .p-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.625rem;
  }
  .p-breadcrumb li {
    position: relative;
    font-weight: 500;
  }
  .p-breadcrumb li:not(:last-child) {
    margin-right: 8px;
  }
  .p-breadcrumb li:not(:last-child)::after {
    margin-left: 8px;
    content: "/";
  }
  @media (any-hover: hover) {
    .p-breadcrumb a:hover {
      text-decoration: underline;
    }
  }
}
@layer project {
  .p-novelty {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
  }
  .p-novelty__card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.125rem 1.5rem;
    background: #fff;
    border: 2px solid var(--color-red);
    border-radius: 0.75rem;
  }
  .p-novelty__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--color-red);
  }
  .p-novelty__body {
    flex: 1;
  }
  .p-novelty__txt {
    font-family: var(--zen-kaku-gothic-antique);
    font-size: clamp(0.9375rem, 13.9436619718px + 0.2816901408vw, 1.125rem);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-red);
    letter-spacing: 0.03em;
  }
  .p-novelty__tag {
    display: inline-block;
    padding: 0.125rem 0.6875rem;
    margin-left: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    vertical-align: middle;
    color: #fff;
    letter-spacing: 0.06em;
    background: var(--color-red);
    border-radius: 2rem;
  }
  .p-novelty__note {
    margin-top: 0.1875rem;
    font-size: 0.8125rem;
    color: #666;
  }
}
@layer utilities {
  @media screen and (max-width: 767px) {
    .u-hidden-ltSP {
      display: none;
    }
  }
  @media screen and (max-width: 991px) {
    .u-hidden-ltTAB {
      display: none;
    }
  }
  @media screen and (min-width: 768px) {
    .u-hidden-gtTAB {
      display: none;
    }
  }
  @media screen and (min-width: 992px) {
    .u-hidden-gtPC {
      display: none;
    }
  }
}
@layer utilities {
  .screen-reader-text,
  .u-screen-reader {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal;
  }
}
@layer utilities {
  .u-ta-left {
    text-align: left;
  }
  .u-ta-center {
    text-align: center;
  }
  .u-ta-right {
    text-align: right;
  }
  @media screen and (max-width: 767px) {
    .u-SP-ta-left {
      text-align: left;
    }
    .u-SP-ta-center {
      text-align: center;
    }
    .u-SP-ta-right {
      text-align: right;
    }
  }
}
@layer utilities {
  .u-br {
    display: block;
  }
  @media screen and (min-width: 768px) {
    .u-br-pc {
      display: block;
    }
  }
  @media screen and (max-width: 767px) {
    .u-br-sp {
      display: block;
    }
  }
}
@layer utilities {
  .u-txt-upper {
    text-transform: uppercase;
  }
}
@layer utilities {
  .u-color-white {
    color: #fff;
  }
  .u-color-beige {
    color: var(--color-beige);
  }
  .u-color-cream {
    color: var(--color-cream);
  }
  .u-color-gray {
    color: var(--color-gray);
  }
  .u-color-red {
    color: var(--color-red);
  }
  .u-color-blue {
    color: var(--color-blue);
  }
}
@layer utilities {
  .u-ff-sans-serif {
    font-family: var(--sans-serif);
  }
  .u-ff-zen-kaku-gothic-antique {
    font-family: var(--zen-kaku-gothic-antique);
  }
}