@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.75;
  font-size: 13px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 641px) {
  body {
    font-size: 18px;
    min-width: calc(var(--content-w) + var(--side-margin) * 2);
  }
}

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

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

.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;
}

/* ----------------------------
  Container（固定幅）
---------------------------- */
.container {
  padding: 0 var(--side-margin);
}
@media screen and (min-width: 641px) {
  .container {
    width: calc(var(--content-w) + (var(--side-margin)));
    margin: 0 auto;
    padding: 0 var(--side-margin);
  }
  .container--narrow {
    width: var(--narrow-w);
  }
}

/* ----------------------------
  Header / FV background wrapper
---------------------------- */
.site-header {
  position: relative;
}
.site-header__sticky {
  position: absolute;
  top: 0;
  top: 40px;
  left: 27px;
  /* width: 100%; */
  z-index: 5;
}
@media screen and (min-width: 641px) {
  .site-header__sticky {
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 1520px;
    padding: 0 40px;
    top: 70px;
  }
}

.site-logo {
  display: inline-block;
  width: 46px;
}
@media screen and (min-width: 641px) {
  .site-logo {
    width: 98px;
  }
}

.site-logo img {
  width: 100%;
}

.fv {
  overflow: hidden;
  padding: 60px 0 10px;
  position: relative;
}
@media screen and (min-width: 641px) {
  .fv {
    padding: 90px 0 44px;
    width: calc(var(--content-w) + var(--side-margin) * 2);
    margin: 0 auto;
  }
}
.fv__bg {
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 640px) {
  .fv__bg {
    width: 100%;
    left: 0;
  }
  .fv__bg img {
    width: 100%;
  }
}
@media screen and (min-width: 641px) {
  .fv__bg {
    top: -90px;
    width: 964px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fv__inner {
  margin: 30px auto 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .fv__inner {
    max-width: var(--content-w);
    margin: 50px auto 0px;
  }
}
.fv__image {
  display: block;
}
.fv__image img {
  max-width: 74.8717948718vw;
}
@media screen and (min-width: 641px) {
  .fv__image img {
    width: auto;
  }
}
.fv__button {
  margin-top: 40px;
}
@media screen and (min-width: 641px) {
  .fv__button {
    margin-top: 150px;
  }
}
.fv__button a {
  display: block;
  background-image: url(../img/fv-button-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  gap: 4px;
}
@media screen and (min-width: 641px) {
  .fv__button a {
    width: 190px;
    height: 55px;
    font-size: initial;
    gap: 8px;
  }
}
.fv__button a::before {
  content: "";
  display: block;
  background-image: url(../img/icon-instagram-white.svg);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 641px) {
  .fv__button a::before {
    width: 30px;
    height: 30px;
  }
}
.fv__text {
  margin-top: 46px;
}
@media screen and (min-width: 641px) {
  .fv__text {
    margin-top: 96px;
  }
}

/* ----------------------------
  EVENT CONTENTS（見出し・ボタン文字は画像）
---------------------------- */
.event-contents {
  position: relative;
  background-color: var(--color-primary);
  padding: 36px 0 40px;
  overflow: hidden;
  background-image: url(../img/event-contents-bg-sp.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 641px) {
  .event-contents {
    background-image: url(../img/event-contents-bg-pc.svg);
    padding: 124px 0 60px;
  }
}
.event-contents__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .event-contents__title {
    margin: 0 0 30px;
  }
  .event-contents__title img {
    width: 150px;
  }
}
@media screen and (min-width: 641px) {
  .event-contents__title {
    margin: 0 0 104px;
  }
}
.event-contents__buttons {
  position: relative;
  z-index: 1;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(2, 140px);
  gap: 14px;
}
@media screen and (min-width: 641px) {
  .event-contents__buttons {
    grid-template-columns: repeat(2, 460px);
    gap: 40px;
  }
}

.event-btn {
  background: var(--color-bg);
  border-radius: 9px;
  display: grid;
  place-items: center;
  -webkit-transition: 0.4s -webkit-box-shadow ease, 0.2s -webkit-filter ease;
  transition: 0.4s -webkit-box-shadow ease, 0.2s -webkit-filter ease;
  transition: 0.4s box-shadow ease, 0.2s filter ease;
  transition: 0.4s box-shadow ease, 0.2s filter ease, 0.4s -webkit-box-shadow ease, 0.2s -webkit-filter ease;
}
.event-btn img {
  width: 100%;
}
.event-btn:hover {
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.16);
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}

/* ----------------------------
  Page
---------------------------- */
.page {
  padding: 50px 0 30px;
}

/* ----------------------------
  Section wrap（外側背景）
---------------------------- */
.section {
  margin-bottom: 80px;
}
.section__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 0 16px;
}
.section__lead {
  text-align: center;
  margin: 0 0 60px;
  color: var(--color-primary);
}
.section__button:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.section__button {
  margin: -60px auto;
  margin-bottom: 40px;
  text-align: center;
  font-size: 0.8em;
}
@media screen and (min-width: 641px) {
  .section__button {
    margin: -50px auto;
    margin-bottom: 100px;
  }
}
.section__button a {
  display: block;
  width: 200px;
  height: 45px;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .section__button a {
    width: 330px;
    height: 70px;
  }
}

/* ----------------------------
  Titles / lead
---------------------------- */
/* =========================================================
  Frame（屋根SVG 前提）
========================================================= */
.frame::before, .frame::after {
  content: "";
  display: block;
  width: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.frame::before {
  background-image: url(../img/frame-header-sp.png);
  background-position: center top;
}
@media screen and (max-width: 640px) {
  .frame::before {
    aspect-ratio: 373/62;
  }
}
@media screen and (min-width: 641px) {
  .frame::before {
    background-image: url(../img/frame-header-pc.png);
    height: 207px;
  }
}
.frame::after {
  background-image: url(../img/frame-footer-sp.png);
  aspect-ratio: 373/35;
  background-position: center top;
}
@media screen and (min-width: 641px) {
  .frame::after {
    background-image: url(../img/frame-footer-pc.png);
    height: 90px;
  }
}
.frame__inner {
  background-image: url(../img/frame-body-sp.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  padding: 12px 25px 0;
}
@media screen and (min-width: 641px) {
  .frame__inner {
    background-image: url(../img/frame-body-pc.png);
    padding: 1px 56px 0;
  }
}

/* =========================================================
  Tabs（Doggy Market）
========================================================= */
.tabs {
  margin-top: 8px;
}
.tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-bottom: 43px;
}
@media screen and (min-width: 641px) {
  .tabs__list {
    gap: 40px;
    margin-bottom: 83px;
  }
}

.tab {
  background-color: #cccccc;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  border-radius: 10px;
  width: 90px;
}
@media screen and (min-width: 641px) {
  .tab {
    width: auto;
  }
}
.tab.is-active, .tab[aria-selected=true] {
  background-color: #1eaa39;
}

.tab:focus-visible {
  outline: 2px solid rgba(33, 164, 67, 0.6);
  outline-offset: 3px;
}

.tabs__panel {
  -webkit-animation: tabFade 0.16s ease-out;
          animation: tabFade 0.16s ease-out;
}

@-webkit-keyframes tabFade {
  from {
    opacity: 0.6;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes tabFade {
  from {
    opacity: 0.6;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ----------------------------
  Doggy Market grid
---------------------------- */
@media screen and (min-width: 641px) {
  .doggy-market .section__title {
    margin-top: -40px;
  }
}
@media screen and (max-width: 640px) {
  .doggy-market .section__title img {
    width: 174px;
  }
}
@media screen and (max-width: 640px) {
  .doggy-market .section__lead {
    margin-bottom: 40px;
  }
}

.doggy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 641px) {
  .doggy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}

.vendor {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 641px) {
  .vendor {
    gap: 14px;
  }
}
.vendor__thumb {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background-color: #f6eac7;
}
.vendor__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vendor__meta {
  display: grid;
  grid-template-columns: 1fr 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  gap: 10px;
  padding: 0 0 0 14px;
}
@media screen and (min-width: 641px) {
  .vendor__meta {
    padding: 0 0 0 22px;
    grid-template-columns: 1fr 24px;
  }
}
.vendor__meta::before {
  background-image: url(../img/icon-paw.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 0;
  content: "";
  width: 12px;
  height: 13px;
  top: 4px;
}
@media screen and (min-width: 641px) {
  .vendor__meta::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }
}
.vendor__name {
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 11px;
}
@media screen and (min-width: 641px) {
  .vendor__name {
    font-size: 14px;
  }
}
.vendor__ig {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vendor__ig:focus-visible {
  outline: 2px solid rgba(33, 164, 67, 0.6);
  outline-offset: 2px;
}

/* ===== 2枚フェード切替（CSSのみ） ===== */
.swap {
  position: relative;
  aspect-ratio: 293/250;
}

.swap__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Aは常時表示（ベース） */
.swap__img--a {
  opacity: 1;
}

/* Bがフェードで出たり消えたり */
.swap__img--b {
  opacity: 0;
  -webkit-animation: swapFade var(--swap-duration) var(--swap-ease) infinite;
          animation: swapFade var(--swap-duration) var(--swap-ease) infinite;
  -webkit-animation-delay: var(--swap-delay, 0s);
          animation-delay: var(--swap-delay, 0s);
}

/* 1周期の中で “表示→保持→非表示→保持” */
@-webkit-keyframes swapFade {
  0% {
    opacity: 0;
  }
  18% {
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  68% {
    opacity: 1;
  }
  92% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes swapFade {
  0% {
    opacity: 0;
  }
  18% {
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  68% {
    opacity: 1;
  }
  92% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ホバーで止めたい場合（任意）：PCだけ */
@media (hover: hover) {
  .swap:hover .swap__img--b {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
}
/* ----------------------------
  Buddy Activity
---------------------------- */
@media screen and (min-width: 641px) {
  .buddy-activity .section__title {
    margin-top: -100px;
  }
}
@media screen and (max-width: 640px) {
  .buddy-activity .section__title {
    margin-top: -20px;
  }
  .buddy-activity .section__title img {
    width: 204px;
  }
}

.activity-cards {
  display: grid;
  gap: 70px;
}
@media screen and (min-width: 641px) {
  .activity-cards {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
    gap: 90px;
  }
}

.activity-card {
  gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 641px) {
  .activity-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.activity-card--wave {
  padding-top: 20px;
}
@media screen and (min-width: 641px) {
  .activity-card--wave {
    padding-top: 80px;
  }
}
.activity-card--wave::before {
  background-image: url(../img/wave-sp.svg);
  background-position: center top;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 13px;
  top: 0;
  left: 0;
}
@media screen and (min-width: 641px) {
  .activity-card--wave::before {
    background-image: url(../img/wave_pc.svg);
  }
}
.activity-card__title {
  margin: 0 0 10px;
}
@media screen and (min-width: 641px) {
  .activity-card__title {
    margin-bottom: 20px;
  }
}
.activity-card__title img {
  height: 64px;
  width: auto;
}
@media screen and (min-width: 641px) {
  .activity-card__title img {
    height: 104px;
  }
}
.activity-card__title--3line img {
  height: 170px;
}
@media screen and (min-width: 641px) {
  .activity-card__title--3line img {
    height: 275px;
  }
}
.activity-card--3line {
  padding-top: 20px;
}
.activity-card__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.activity-card__desc {
  color: var(--color-primary);
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .activity-card:nth-child(odd) .activity-card__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .activity-card:nth-child(odd) .activity-card__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.activity-card:nth-child(odd) .has-badge::before {
  right: -10px;
}
@media screen and (min-width: 641px) {
  .activity-card:nth-child(odd) .has-badge::before {
    right: -50px;
  }
}
.activity-card:nth-child(even) .activity-card__text {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.activity-card:nth-child(even) .has-badge::before {
  left: -10px;
}
@media screen and (min-width: 641px) {
  .activity-card:nth-child(even) .has-badge::before {
    left: -50px;
  }
}
.activity-card__media {
  position: relative;
}
@media screen and (min-width: 641px) {
  .activity-card__media {
    width: 480px;
  }
}
.activity-card__media.has-badge::before {
  content: "入場券\a対象";
  white-space: pre;
  position: absolute;
  top: -10px;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 8px;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  z-index: 2;
}
@media screen and (min-width: 641px) {
  .activity-card__media.has-badge::before {
    font-size: 18px;
    line-height: 1.3;
    width: 100px;
    height: 100px;
    top: -30px;
  }
}
.activity-card__clip {
  overflow: hidden;
}
.activity-card__clip img {
  width: 100%;
  border-radius: 16px;
}
@media screen and (min-width: 641px) {
  .activity-card__clip img {
    border-radius: 30px;
  }
}

/* ----------------------------
  Gourmet
---------------------------- */
@media screen and (max-width: 640px) {
  .gourmet .section__title img {
    height: 33px;
  }
}
.gourmet .frame__inner {
  padding-bottom: 32px;
}

.gourmet-cards {
  display: grid;
  gap: 70px;
  /* width: 300px; */
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .gourmet-cards {
    width: 940px;
  }
}

.gourmet-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 641px) {
  .gourmet-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width: 641px) {
  .gourmet-card:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.gourmet-card:nth-child(even) .gourmet-card__text {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 641px) {
  .gourmet-card__media {
    width: 480px;
  }
}
.gourmet-card__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.gourmet-card__title {
  margin: 0 0 10px;
}
@media screen and (min-width: 641px) {
  .gourmet-card__title {
    margin-bottom: 20px;
  }
}
.gourmet-card__title img {
  height: 64px;
  width: auto;
}
@media screen and (min-width: 641px) {
  .gourmet-card__title img {
    height: 104px;
  }
}
.gourmet-card__title--3line {
  margin: 0 0 10px;
}
.gourmet-card__title--3line img {
  height: 96px;
  width: auto;
}
@media screen and (min-width: 641px) {
  .gourmet-card__title--3line img {
    height: 145px;
    margin-bottom: 20px;
  }
}
.gourmet-card__title--2line {
  margin: 0 0 10px;
}
.gourmet-card__title--2line img {
  height: 47px;
  width: auto;
}
@media screen and (min-width: 641px) {
  .gourmet-card__title--2line img {
    height: 75px;
    margin-bottom: 20px;
  }
}
.gourmet-card__title--2lineplus {
  margin: 0 0 10px;
}
.gourmet-card__title--2lineplus img {
  height: 72px;
  width: auto;
}
@media screen and (min-width: 641px) {
  .gourmet-card__title--2lineplus img {
    height: 119px;
    margin-bottom: 20px;
  }
}
.gourmet-card__stores {
  position: relative;
  margin-top: 40px;
}
.gourmet-card__stores-label {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 2px;
  font-size: 14px;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  top: -18px;
  left: 40px;
  margin: 0;
}
.gourmet-card__desc {
  color: var(--color-primary);
  line-height: 1.5;
}
.gourmet-card__desc.caption {
  margin-top: 8px;
  color: var(--color-primary);
}
@media screen and (min-width: 641px) {
  .gourmet-card__desc.caption {
    font-size: 0.8em;
  }
}
.gourmet-card__clip {
  overflow: hidden;
}
.gourmet-card__clip img {
  width: 100%;
  border-radius: 16px;
  /* border: 1px solid rgba(0, 0, 0, .06); */
}
@media screen and (min-width: 641px) {
  .gourmet-card__clip img {
    border-radius: 30px;
  }
}
.gourmet-card__button {
  margin-top: 10px;
  /* margin-bottom: 20px; */
  width: 162px;
  /* height: 35px; */
}
@media screen and (min-width: 641px) {
  .gourmet-card__button {
    margin-top: 10px;
    width: 215px;
    height: 58px;
  }
}
.gourmet-card__button a img {
  width: 100%;
}
.gourmet-card__button a img:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
@media screen and (min-width: 641px) {
  .gourmet-card__button a img {
    width: 100%;
  }
}

.gourmet__collage img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------
  Workshop
---------------------------- */
@media screen and (min-width: 641px) {
  .workshop .section__title {
    margin-top: -40px;
  }
}
@media screen and (max-width: 640px) {
  .workshop .section__title img {
    width: 145px;
  }
}

.workshop-cards {
  display: grid;
  gap: 70px;
  /* width: 300px; */
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .workshop-cards {
    width: 940px;
  }
}

.workshop-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 641px) {
  .workshop-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width: 641px) {
  .workshop-card:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.workshop-card:nth-child(even) .workshop-card__text {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 641px) {
  .workshop-card__media {
    width: 480px;
  }
}
.workshop-card__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.workshop-card__title {
  margin: 0 0 10px;
}
@media screen and (min-width: 641px) {
  .workshop-card__title {
    margin-bottom: 20px;
  }
}
.workshop-card__title img {
  height: 64px;
  width: auto;
}
@media screen and (min-width: 641px) {
  .workshop-card__title img {
    height: 104px;
  }
}
.workshop-card__desc {
  color: var(--color-primary);
  line-height: 1.5;
  margin: 0;
}
.workshop-card__clip {
  overflow: hidden;
}
.workshop-card__clip img {
  width: 100%;
  border-radius: 16px;
  /* border: 1px solid rgba(0, 0, 0, .06); */
}
@media screen and (min-width: 641px) {
  .workshop-card__clip img {
    border-radius: 30px;
  }
}
.workshop-card__button {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 162px;
  height: 35px;
}
@media screen and (min-width: 641px) {
  .workshop-card__button {
    margin-top: 20px;
    width: 215px;
    height: 58px;
  }
}
.workshop-card__button a img {
  width: 100%;
}
.workshop-card__button a img:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
@media screen and (min-width: 641px) {
  .workshop-card__button a img {
    width: 100%;
  }
}

/* ----------------------------
  Map
---------------------------- */
@media screen and (min-width: 641px) {
  .map {
    margin-top: 160px;
  }
}
.map .section__title {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .map .section__title img {
    height: 30px;
  }
}
@media screen and (max-width: 640px) {
  .map .container {
    padding: 0 20px;
  }
}
.map__box {
  background-color: #fff;
  max-width: 100%;
  height: 350px;
  position: relative;
  margin-top: -15px;
  padding: 60px 20px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 641px) {
  .map__box {
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .map__box {
    height: 400px;
    padding: 20px 20px;
    overflow: scroll;
    scrollbar-width: auto;
    scrollbar-color: #888 #eee;
  }
  .map__box::-webkit-scrollbar {
    height: 16px;
  }
}
.map__box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map__box img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .map__box img {
    width: auto;
    height: 360px;
    aspect-ratio: 2401/557;
    max-width: none;
  }
}

/* ----------------------------
  Attention
---------------------------- */
@media screen and (min-width: 641px) {
  .attention {
    margin-top: 160px;
  }
}
.attention__box {
  position: relative;
  background: var(--color-bg);
  border: 3px solid var(--color-primary);
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 24px;
}
@media screen and (min-width: 641px) {
  .attention__box {
    border-width: 10px;
    padding-bottom: 64px;
    border-radius: 36px;
  }
}
.attention__box .section__title {
  background-color: var(--color-bg);
  width: 276px;
  position: relative;
  margin: -20px auto 20px;
}
@media screen and (min-width: 641px) {
  .attention__box .section__title {
    width: 840px;
    margin-top: -60px;
    margin-bottom: 56px;
  }
}
.attention__box .section__title::before, .attention__box .section__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 3px;
  border-radius: 9px;
  background-color: var(--color-primary);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -3.5px;
}
@media screen and (min-width: 641px) {
  .attention__box .section__title::before, .attention__box .section__title::after {
    height: 10px;
    width: 20px;
    margin-top: -3px;
  }
}
.attention__box .section__title:before {
  left: -6px;
}
.attention__box .section__title:after {
  right: -6px;
}
@media screen and (max-width: 640px) {
  .attention__box .section__title img {
    width: 174px;
  }
}
.attention__lists {
  width: 90%;
}
@media screen and (min-width: 641px) {
  .attention__lists {
    /* grid-template-columns: repeat(2, 1fr); */
    width: 840px;
    /* gap: 50px; */
  }
}
.attention__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.attention__list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.75;
  width: 100%;
}
.attention__list li:nth-of-type(-n + 4) {
  font-size: 1.2em;
  font-weight: 900;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 641px) {
  .attention__list li:nth-of-type(-n + 4):nth-of-type(odd) {
    width: 40%;
  }
  .attention__list li:nth-of-type(-n + 4):nth-of-type(even) {
    width: 60%;
  }
}
.attention__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.footer {
  background-color: #dde8be;
}
.footer__inner {
  padding: 50px 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 641px) {
  .footer__inner {
    padding: 58px 0 38px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__info {
  margin-bottom: 36px;
  max-width: 330px;
}
@media screen and (min-width: 641px) {
  .footer__info {
    max-width: none;
    margin-bottom: 26px;
  }
}
.footer__info img {
  width: 100%;
}
.footer__image {
  max-width: 315px;
  margin-bottom: 42px;
}
@media screen and (min-width: 641px) {
  .footer__image {
    max-width: none;
    margin-bottom: 0;
    left: 537px;
    top: 76px;
    position: absolute;
  }
}
.footer__image img {
  width: 100%;
}
.footer__note {
  font-size: 9px;
  padding: 0;
}
@media screen and (max-width: 640px) {
  .footer__note {
    margin: 0 auto;
    width: 100%;
    max-width: 330px;
  }
}
@media screen and (min-width: 641px) {
  .footer__note {
    font-size: 11px;
  }
}
.footer__copyright {
  font-size: 9px;
  margin-top: 16px;
}
@media screen and (min-width: 641px) {
  .footer__copyright {
    font-size: 11px;
  }
}

/* utility */
@media screen and (max-width: 640px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp_only {
    display: none !important;
  }
}

.attention_color {
  color: #ea5225;
}

/* ============================
  PAGE TOP
============================ */
.pagetop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  color: var(--color-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  /*  border: 1px solid rgba(0, 0, 0, 0.12); */
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12); */
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.pagetop:focus-visible {
  outline: 2px solid rgba(33, 164, 67, 0.6);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .pagetop {
    right: 40px;
    bottom: 12px;
    font-size: 13px;
    padding: 9px 11px;
  }
}
.fadeIn {
  -webkit-transform: translate3d(0, 30px, 0);
          transform: translate3d(0, 30px, 0);
  -webkit-transition: 0.75s;
  transition: 0.75s;
  opacity: 0;
}

.fadeIn.animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}