@charset "UTF-8";

/* font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --font-base: 'Noto Serif JP', serif;
  --font-ttl: 'Cormorant', serif;
}

html {
  font-size: 16px;
  font-family: var(--font-base);
  scroll-behavior: smooth;
}

/* --------------------------------
                base
-------------------------------- */
.base {
  position: relative;
  overflow: clip;
}

.base::after {
  content: '';
  display: block;
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: no-repeat center top / cover url(../images/bg.webp);
}

/*--------------------------------
	modal
--------------------------------*/

html:has(dialog[open]) {
  overflow: hidden;
}

dialog:has(.modal) {
  padding: 0;
  max-width: 62.5rem;
  width: fit-content;
  background: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s,
    transform 0.5s,
    overlay 1s allow-discrete,
    display 1s allow-discrete;
}

dialog[open] {
  opacity: 1;
  transform: translateY(0);
}

dialog::backdrop {
  background: #ffffffad;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition:
    opacity 0.5s ease-out,
    overlay 1s allow-discrete,
    display 1s allow-discrete;
}

dialog[open]::backdrop {
  opacity: 1;
}

.modal {
  padding: 40px;
  border-image: url(../images/frame-corner.svg) 50 / 40px / 0px repeat;
  z-index: 20;
  top: 50%;
  left: 50%;
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
  max-height: 90dvh;
  overflow: hidden;
}

.modal--simple-border {
  background: #fff;
  padding: 0;
  border: 1px solid #a6925d;
  @media (max-width: 768px) {
    border: 0;
  }
}

.modal__inner {
  background: #fff;
  width: 100%;
  max-width: 500px;
  max-height: calc(90vh - 100px);
  max-height: calc(90dvh - 100px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.modal__close-btn {
  -webkit-appearance: none;
  /* ネイティブスタイルを無効化 */
  appearance: none;
  display: flex;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  color: #806c49;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid #806c49;
  background: #fff;
  position: sticky;
  bottom: 0;

  &::before {
    content: '';
    width: 1em;
    height: 1em;
    background: no-repeat center / contain url(../images/icon-close-line.svg);
  }
}

.modal__close-btn:focus,
.modal__close-btn:focus-visible {
  outline: 1px solid #806c49;
}

@starting-style {
  dialog[open] {
    opacity: 0;
    transform: translateY(20px);
  }

  dialog[open]::backdrop {
    opacity: 0;
  }
}

/* --------------------------------
          modal-slide-view
-------------------------------- */

.modal-slide-view-wrap {
  max-height: 100%;
  max-width: 100%;
}

.modal-slide-view {
  width: 100vw;
  height: 100dvh;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  overflow: hidden;
}

.modal-slide-view__container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-100%);
  overflow: hidden;
}

.modal-slide-view__container--next {
  transform: translateX(100%);
}

.modal-slide-view__container--active {
  transform: translateX(0%);
}

/*--------------------------------------------------
pagination
  --------------------------------------------------*/

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.4375rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #25b7ab;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
  font-size: 0.75rem;
  box-sizing: border-box;
}

.pagination__link:hover {
  opacity: 0.8;
}

.pagination__link--arrow {
  padding: 8px;
}

.pagination__link--current {
  background-color: #fff;
  color: #25b7ab;
  border: 1px solid #25b7ab;
}

.pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  color: #25b7ab;
  font-weight: bold;
}

/*--------------------------------
	benefit-modal
--------------------------------*/
.benefit-modal {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #403934;
}

.benefit-modal__picture {
  width: 100%;
  aspect-ratio: 500/372;
  border: 1px solid #c9c4b9;
}

.benefit-modal__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.benefit-modal__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-modal__detail-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-modal__detail-item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid #c9c4b9;
}

.benefit-modal__ttl {
  font-size: 1rem;
  font-weight: 700;
}

.benefit-modal__price {
  text-align: right;
  font-weight: 700;
  font-size: 1rem;
}

.benefit-modal__text {
  font-size: 0.8125rem;
}

/*--------------------------------
	goods-modal
--------------------------------*/

.modal:has(.goods-modal) {
  width: 90vw;
  max-width: 500px;
}
.goods-modal {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #403934;
  width: 100%;
}

.goods-modal__slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.goods-modal__slider-content {
  position: relative;
  overflow: hidden;
}

.goods-modal__slider-arrow {
  position: absolute;
  width: 32px;
  aspect-ratio: 1/1;
  background: #0000002e;
  top: calc(50% - 16px);
}

.goods-modal__slider-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.goods-modal__slider-arrow--prev {
  left: 0;
  mask-image: url(../images/page-nation-previous.svg);
  mask-position: center;
  mask-size: contain;
}

.goods-modal__slider-arrow--next {
  right: 0;
  mask-image: url(../images/page-nation-next.svg);
  mask-position: center;
  mask-size: contain;
}

.goods-modal__picture {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1/1;
  border: 1px solid #c9c4b9;
  margin-inline: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.goods-modal__picture.is-visible {
  display: block;
  opacity: 1;
}

/* 1枚のみの時に非表示にするためのクラス */
.is-hidden {
  display: none !important;
}

.goods-modal__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.goods-modal__slider-tmb-list {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.goods-modal__slider-tmb {
  max-width: 32px;
  aspect-ratio: 1/1;
  border: 1px solid #e4e1db;
}

.goods-modal__tmb-btn {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.goods-modal__tmb-btn.is-active {
  outline: 1px solid #a6925d;
  opacity: 1;
}

.goods-modal__tmb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.goods-modal__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.goods-modal__detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.goods-modal__detail-item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid #c9c4b9;
}

.goods-modal__ttl {
  font-size: 1rem;
  font-weight: 700;
}

.goods-modal__specification {
  font-size: 0.625rem;
  font-weight: 500;
}

.goods-modal__work-ttl {
  font-size: 0.625rem;
}

.goods-modal__work-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.625rem;
}

.goods-modal__work-author::after {
  content: '|';
  padding-left: 6px;
}

.goods-modal__price {
  text-align: right;
  font-weight: 700;
  font-size: 1rem;
}

/*--------------------------------
	ttl
--------------------------------*/

.ttl {
  display: flex;
  flex-direction: column;
  color: #989286;
  font-weight: 500;
  line-height: 1;
  gap: 8px;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.ttl__main {
  text-transform: uppercase;
  font-size: 4.375rem;
  font-family: var(--font-ttl);
}

.ttl__sub {
  font-family: var(--font-base);
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .ttl__main {
    font-size: 1.875rem;
  }

  .ttl__sub {
    font-size: 0.875rem;
  }
}

/*--------------------------------
	sub-ttl
--------------------------------*/
.sub-ttl {
  color: #989286;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  gap: 6px;
  align-items: center;
}

.sub-ttl::before {
  content: '';
  display: block;
  width: 0.75em;
  height: 1.6em;
  flex: 0 0 auto;
  background: no-repeat center / contain url(../images/icon-star-twinkle.svg);
}

.sub-ttl__attention {
  color: #403934;
  font-size: 0.8125rem;
  padding-left: 24px;
}

/* --------------------------------
     text-block
-------------------------------- */
.text-block {
  color: #403934;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.065rem;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --------------------------------
     text-link
-------------------------------- */
.text-link {
  text-decoration: underline;
      word-break: break-all;
}
.text-link:hover {
  text-decoration: none;
}

/* --------------------------------
               btn
-------------------------------- */
.btn {
  width: 100%;
  max-width: 270px;
  aspect-ratio: 270/57.976;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  filter: drop-shadow(0 4px 8px rgba(70, 61, 56, 0.16));
  color: #806c49;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  background: no-repeat center center/contain url(../images/btn-bg.svg);
  justify-content: center;
}

.btn--invalid {
  pointer-events: none;
  opacity: 0.4;
}

.btn--secondary {
  color: #108279;
  background: no-repeat center center/contain url(../images/btn-bg-secondary.svg);
}

.btn:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .btn--center-sp {
    margin-inline: auto;
  }
}

/* --------------------------------
               section
-------------------------------- */

.section {
  position: relative;
}

.section--septenary {
  padding-block: 60px;

  background: linear-gradient(90deg, #f2fde5 0%, #e7fdfd 100%);
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.section__inner--gap-s {
  gap: 32px;
}

.section__inner--ambassador {
  gap: 24px;
}

.section__block{
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media (max-width: 768px) {
  .section--septenary {
    padding: 40px 24px;
  }

  .section__inner {
    gap: 32px;
  }

  .section__inner--gap-s {
    gap: 24px;
  }

  .section__inner--ambassador {
    gap: 40px;
  }
}

/* --------------------------------
       section-column
-------------------------------- */
.section-column-wrap {
  display: grid;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

@media (min-width: 769px) {
  .section-column-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-column-wrap {
    gap: 32px;
    grid-template-columns: 1fr;
  }
}

.section-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 769px) {
  .section-column {
    padding-inline: 32px;
    &:nth-of-type(odd) {
      border-right: 1px dashed #806c49;
    }
  }
}

@media (max-width: 768px) {
  .section-column {
    gap: 32px;
    width: 100%;
    max-width: 270px;
    margin-inline: auto;
    &:nth-of-type(odd) {
      border-bottom: 1px dashed #806c49;
      padding-bottom: 40px;
    }
  }
}

/* --------------------------------
               bg
-------------------------------- */

/* bg-effect */
.bg-effect {
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  pointer-events: none;
}

.bg-effect span {
  width: 1vmin;
  height: 1vmin;
  border-radius: 1vmin;
  backface-visibility: hidden;
  position: absolute;
  animation: move;
  animation-duration: 26;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bg-effect span:nth-child(0) {
  color: #ffffff;
  top: 92%;
  left: 93%;
  animation-duration: 129s;
  animation-delay: -172s;
  transform-origin: 19vw -4vh;
  box-shadow: -2vmin 0 0.9594978094416368vmin currentColor;
}

.bg-effect span:nth-child(1) {
  color: #ffffff;
  top: 1%;
  left: 64%;
  animation-duration: 158s;
  animation-delay: -198s;
  transform-origin: -13vw 3vh;
  box-shadow: -2vmin 0 0.8702969743588364vmin currentColor;
}

.bg-effect span:nth-child(2) {
  color: #ffffff;
  top: 60%;
  left: 97%;
  animation-duration: 127s;
  animation-delay: -211s;
  transform-origin: 5vw 5vh;
  box-shadow: 2vmin 0 0.6002542173716157vmin currentColor;
}

.bg-effect span:nth-child(3) {
  color: #ffffff;
  top: 44%;
  left: 76%;
  animation-duration: 177s;
  animation-delay: -75s;
  transform-origin: 24vw -10vh;
  box-shadow: 2vmin 0 0.32649537132839834vmin currentColor;
}

.bg-effect span:nth-child(4) {
  color: #ffffff;
  top: 49%;
  left: 89%;
  animation-duration: 193s;
  animation-delay: -28s;
  transform-origin: -6vw 19vh;
  box-shadow: -2vmin 0 0.40204437402429505vmin currentColor;
}

.bg-effect span:nth-child(5) {
  color: #ffffff;
  top: 65%;
  left: 81%;
  animation-duration: 33s;
  animation-delay: -186s;
  transform-origin: 19vw 11vh;
  box-shadow: 2vmin 0 1.191396188956057vmin currentColor;
}

.bg-effect span:nth-child(6) {
  color: #ffffff;
  top: 74%;
  left: 49%;
  animation-duration: 133s;
  animation-delay: -206s;
  transform-origin: 0vw -19vh;
  box-shadow: 2vmin 0 0.46586052517470644vmin currentColor;
}

.bg-effect span:nth-child(7) {
  color: #ffffff;
  top: 34%;
  left: 46%;
  animation-duration: 200s;
  animation-delay: -33s;
  transform-origin: 2vw -16vh;
  box-shadow: 2vmin 0 1.2318709306840447vmin currentColor;
}

.bg-effect span:nth-child(8) {
  color: #ffffff;
  top: 36%;
  left: 75%;
  animation-duration: 151s;
  animation-delay: -55s;
  transform-origin: 6vw 4vh;
  box-shadow: -2vmin 0 0.5109908962603472vmin currentColor;
}

.bg-effect span:nth-child(9) {
  color: #ffffff;
  top: 28%;
  left: 49%;
  animation-duration: 31s;
  animation-delay: -62s;
  transform-origin: 18vw -8vh;
  box-shadow: 2vmin 0 0.6429099920406183vmin currentColor;
}

.bg-effect span:nth-child(10) {
  color: #ffffff;
  top: 80%;
  left: 71%;
  animation-duration: 208s;
  animation-delay: -157s;
  transform-origin: -1vw 20vh;
  box-shadow: -2vmin 0 0.6975761571170807vmin currentColor;
}

.bg-effect span:nth-child(11) {
  color: #ffffff;
  top: 89%;
  left: 29%;
  animation-duration: 51s;
  animation-delay: -163s;
  transform-origin: 15vw -22vh;
  box-shadow: -2vmin 0 0.9674753482242291vmin currentColor;
}

.bg-effect span:nth-child(12) {
  color: #ffffff;
  top: 85%;
  left: 62%;
  animation-duration: 211s;
  animation-delay: -175s;
  transform-origin: 10vw -20vh;
  box-shadow: 2vmin 0 0.4754797890721373vmin currentColor;
}

.bg-effect span:nth-child(13) {
  color: #ffffff;
  top: 3%;
  left: 77%;
  animation-duration: 187s;
  animation-delay: -144s;
  transform-origin: 9vw 9vh;
  box-shadow: 2vmin 0 1.0148888541896204vmin currentColor;
}

.bg-effect span:nth-child(14) {
  color: #ffffff;
  top: 57%;
  left: 15%;
  animation-duration: 96s;
  animation-delay: -184s;
  transform-origin: -14vw -18vh;
  box-shadow: -2vmin 0 0.7128481116819133vmin currentColor;
}

.bg-effect span:nth-child(15) {
  color: #ffffff;
  top: 26%;
  left: 7%;
  animation-duration: 226s;
  animation-delay: -91s;
  transform-origin: -4vw -8vh;
  box-shadow: -2vmin 0 1.1874537247245305vmin currentColor;
}

.bg-effect span:nth-child(16) {
  color: #ffffff;
  top: 54%;
  left: 18%;
  animation-duration: 79s;
  animation-delay: -218s;
  transform-origin: 18vw -12vh;
  box-shadow: 2vmin 0 0.911029852628312vmin currentColor;
}

.bg-effect span:nth-child(17) {
  color: #ffffff;
  top: 28%;
  left: 41%;
  animation-duration: 139s;
  animation-delay: -209s;
  transform-origin: 25vw -3vh;
  box-shadow: 2vmin 0 0.49849399289165597vmin currentColor;
}

.bg-effect span:nth-child(18) {
  color: #ffffff;
  top: 26%;
  left: 67%;
  animation-duration: 208s;
  animation-delay: -146s;
  transform-origin: 8vw 19vh;
  box-shadow: -2vmin 0 0.9287535926878249vmin currentColor;
}

.bg-effect span:nth-child(19) {
  color: #ffffff;
  top: 4%;
  left: 55%;
  animation-duration: 112s;
  animation-delay: -143s;
  transform-origin: 22vw 9vh;
  box-shadow: 2vmin 0 0.3535149516678977vmin currentColor;
}

@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

/* bg-decoration */

@media (min-width: 769px) {
  .bg-decoration {
    position: fixed;
    width: 14.8%;
    height: 80dvh;
  }

  .bg-decoration--l {
    left: 0;
    top: 0;
    background: no-repeat top left / contain url(../images/bg-flower-left.webp);
  }

  .bg-decoration--r {
    right: 0;
    bottom: 0;
    background: no-repeat bottom right / contain url(../images/bg-flower-right.webp);
  }
}

@media screen and (min-resolution: 192dpi) {
  .bg-decoration--l {
    background-image: url(../images/bg-flower-left@2x.webp);
  }

  .bg-decoration--r {
    background-image: url(../images/bg-flower-right@2x.webp);
  }
}

/* ----------------------------------------
                nav
---------------------------------------- */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 1rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-end;

  &::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 20.19%, rgba(255, 255, 255, 0) 95%);
    backdrop-filter: blur(3px);
    mask-image: linear-gradient(180deg, rgb(255, 255, 255) 20.19%, rgba(255, 255, 255, 0) 95%);
  }
}

.main-nav__logo {
  width: 120px;
  display: block;
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 8px #fff);
}

.main-nav__logo-img {
  width: 100%;
  height: auto;
}

.main-nav__contents {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav__link {
  text-decoration: none;
  color: #403934;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.main-nav__link:hover {
  opacity: 0.7;
}

.main-nav__sns {
  display: block;
  width: 2rem;
  height: 2rem;
}

.main-nav__sns:hover {
  opacity: 0.7;
}

.main-nav__sns img {
  width: 100%;
  height: 100%;
}

.main-nav__hamburger {
  cursor: pointer;
  width: 40px;
  aspect-ratio: 1/1;
}

.main-nav__hamburger-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#nav-toggle {
  display: none;
}

[id^='n-'] {
  scroll-margin-top: 64px;
}

@media (min-width: 769px) {
  .main-nav__logo {
    position: fixed;
    top: 1rem;
    left: 1rem;
  }

  .main-nav__link-sub {
    display: none;
  }

  .main-nav__close {
    display: none;
  }

  .main-nav__hamburger {
    display: none;
  }
}

@media (max-width: 768px) {
  html:has(#nav-toggle:checked) {
    overflow: hidden;
  }

  .main-nav {
    padding: 12px 16px;
  }

  .main-nav:has(#nav-toggle:checked) {
    backdrop-filter: none;
  }

  .main-nav__logo {
    position: relative;
    width: 73px;
    margin-right: auto;
  }

  .main-nav__contents {
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: #ffffffad;
    backdrop-filter: blur(3px);
    opacity: 0;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    transition: opacity 0.3s ease;
    z-index: 99;
    pointer-events: none;
    padding-block: 64px;
  }

  #nav-toggle:checked ~ .main-nav__contents {
    opacity: 1;
    pointer-events: all;
  }

  .main-nav__close {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: 60px;
    aspect-ratio: 1/1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main-nav__list {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    height: 100%;
    justify-content: center;
  }

  .main-nav__link {
    display: grid;
    grid-template-columns: 107px auto;
    padding-block: 0.625em;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    min-height: 2.25em;
    justify-items: start;
  }

  .main-nav__link-sub {
    color: #806c49;
    text-transform: capitalize;
  }
}

/* --------------------------------
               page-top-btn
-------------------------------- */
.page-top-btn {
  display: flex;
  padding: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  position: fixed;
  bottom: 3vw;
  right: 3vw;
  border: 1.5px solid #25b7ab;
  color: #25b7ab;
  background: #fff;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;

  z-index: 50;

  &::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 8/3;
    background: no-repeat center top / contain url(../images/icon-arrow-top.svg);
  }

  &:hover {
    opacity: 0.8;
  }
}

.page-top-btn--show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .page-top-btn {
    padding: 12px;
    gap: 3px;
    font-size: 0.625rem;
  }
}

/* --------------------------------
               main
-------------------------------- */

.main {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

/* mv無い場合padding-top設定 */
.main:has(:not(.hero)) {
  padding-top: 80px;
}

.main--gap-none {
  gap: 0;
}

@media (max-width: 768px) {
  .main {
    gap: 64px;
  }
}

/*--------------------------------
	hero
--------------------------------*/
.hero {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

@media (max-width: 768px) {
  .hero {
    gap: 64px;
  }
}

/*--------------------------------
	mv
--------------------------------*/
.mv-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 4vmin;
}

.mv {
  position: relative;
  width: 85vh;
  max-width: 100%;
  aspect-ratio: 119/117;
}

.mv__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.mv__frame-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mv__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25% 19% 11%;
  height: 100%;
  width: 100%;
  gap: 8vmin;
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 1.5s ease-out,
    filter 1.5s ease-out;
  transition-delay: 0.5s;

  /* フレームの後に開始 */
  img {
    width: 100%;
    height: auto;
  }
}

/* アニメーション開始用のクラス（JSで付与） */
.js-mv-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-mv-animate.is-visible {
  opacity: 1;
  filter: blur(0);
}

.mv__logo {
  width: 100%;
  position: relative;
  z-index: 1;

  &::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: #ffffff;
    filter: blur(25px);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }
}

.mv__info {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  color: #25b7ab;
  font-size: 1.94vmin;
  text-align: center;
}

.mv__sns-btn {
  position: absolute;
  bottom: 4vmin;
  right: 0;
  display: block;
  width: 9.5vmin;
  padding: 1vmin;
  aspect-ratio: 1 / 1;
}

.mv__sns-btn::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: no-repeat center/contain url(../images/x-circle-txt.svg);
  animation: circle-spin 20s linear infinite;
}

@keyframes circle-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.mv__sns-btn:hover {
  opacity: 0.7;
}

.mv__sns-btn-img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .mv-wrap {
    padding-bottom: 30px;
    padding-inline: 1vmin;
  }

  .mv__content {
    padding-inline: 13%;
  }

  .mv__info {
    font-size: 2.9vmin;
  }

  .mv__sns-btn {
    top: calc(100% - (23vmin / 2));
    bottom: auto;
    width: 23vmin;
    padding: 2.5vmin;
    right: 4.3vmin;
  }
}

/*--------------------------------
	news
--------------------------------*/
.news {
  display: flex;
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
}

@media (min-width: 769px) {
  .news {
    gap: 48px;
  }

  .news__ttl {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .news {
    padding-inline: 20px;
    flex-direction: column;
    gap: 8px;
  }
}

/* news-list */
.news-list {
  display: flex;
  flex-direction: column;
  font-size: 0.8125rem;
  max-height: calc(60px * 3);
  overflow-y: auto;
  flex: 1;
}

.news-list::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: transparent;
}

.news-list::-webkit-scrollbar-track {
  background-color: transparent;
}

.news-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #806c49;
}

/* news-item */
.news-item-link:hover {
  opacity: 0.7;
}

.news-item {
  padding: 1em 5px;
  display: flex;
  gap: 14px;
  align-items: center;
  border-bottom: 1px dashed #806c49;
}

.news-item:has(a)::after {
  content: '';
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  margin-left: auto;
  background: no-repeat center/contain url(../images/icon-arrow-line-right.svg);
}

.news-item__inner {
  display: flex;
  gap: 1em;
  flex: 1;
}

.news-item__detail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-item__date {
  min-width: 5em;
  color: #108279;
  flex: 0 0 auto;
}

.news-item__link {
  color: #108279;
  &:not(:last-child)::after {
    content: '/';
    color: #403934;
    margin-left: 16px;
  }
}

.news-item__link:hover {
  color: #10847ab3;
}

@media (min-width: 769px) {
  .news-item {
    min-height: 60px;
  }
}

/* --------------------------------
               frame-block
-------------------------------- */

.frame-block {
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
  padding: 50px;
  border-image: url(../images/frame-corner.svg) 50 / 50px / 0px repeat;
  filter: drop-shadow(15px 15px 30px rgba(70, 61, 56, 0.16));
}

.frame-block__inner {
  background: #fff;
  flex-direction: column;
  align-items: center;
  display: flex;
  padding: 30px;
  gap: 59px;
}

@media (max-width: 768px) {
  .frame-block {
    border-image-width: 30px;
    padding: 30px 20px;
  }

  .frame-block__inner {
    gap: 32px;
    padding: 0;
  }
}

/*--------------------------------
	event
--------------------------------*/

.event {
  display: flex;
  gap: 40px;
  max-width: 819px;
  margin-inline: auto;
}

.event__info-item {
  padding: 16px 5px;
  display: flex;
  gap: 1em;
  font-size: 0.8125rem;
  color: #403934;

  &:not(:last-child) {
    border-bottom: 1px dashed #806c49;
  }
}

.event__info-ttl {
  width: 4em;
  font-weight: 700;
  flex: 0 0 auto;
}

.event__info-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event__text-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.event__map {
  max-width: 260px;
  aspect-ratio: 1/1;

  iframe {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .event {
    flex-direction: column;
    align-items: center;
  }

  .event__info-item {
    gap: 8px;
  }
}

/*--------------------------------
	simple-frame-block
--------------------------------*/
:root {
  --simple-frame-position: max(0.8vw, 5px);
  --simple-frame-size: min(30vw, 140px);
}

.simple-frame-block {
  display: flex;
  width: 90%;
  max-width: 1000px;
  padding: 60px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-inline: auto;
  border: 1px solid #a6925d;
  background:
    no-repeat bottom var(--simple-frame-position) right var(--simple-frame-position) / var(--simple-frame-size)
      url(../images/decoration-corner-bottom-r.svg),
    no-repeat bottom var(--simple-frame-position) left var(--simple-frame-position) / var(--simple-frame-size)
      url(../images/decoration-corner-bottom-l.svg),
    no-repeat top var(--simple-frame-position) right var(--simple-frame-position) / var(--simple-frame-size)
      url(../images/decoration-corner-top-r.svg),
    no-repeat top var(--simple-frame-position) left var(--simple-frame-position) / var(--simple-frame-size)
      url(../images/decoration-corner-top-l.svg),
    #ffffff66;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .simple-frame-block {
    padding: 40px 14px;
  }
}

/*--------------------------------
	info
--------------------------------*/

.info {
  width: 100%;
  color: #403934;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 40px;
}

.info__item--gap-s {
  gap: 24px;
}

.info__item:not(:last-child) {
  border-bottom: 1px dashed #806c49;
}

.info__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info__block--inline-padding {
  padding-inline: 20px;
}

.info__block:not(:last-child, .info__block--none-border) {
  border-bottom: 1px solid #e9e7e4;
  padding-bottom: 24px;
}

.info__text {
  font-size: 0.8125rem;
}

.info__picture {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .info__item {
    gap: 24px;
  }
}

/*--------------------------------
	ticket-buy
--------------------------------*/
.ticket-buy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ticket-buy__ttl {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .ticket-buy__link {
    display: flex;
    justify-content: center;
  }

  .ticket-buy {
    padding-inline: 8px;
  }
}

/*--------------------------------
	overview-list
--------------------------------*/

.overview-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #403934;
}

.overview-list--ttl-wide .overview-item__ttl {
  width: 7em;
}

.overview-item {
  padding-inline: 20px;
  display: flex;
  gap: 24px;
}

.overview-item--1column {
  flex-direction: column;
}

.overview-item:not(:last-child) {
  padding-bottom: 24px;
}

.overview-item:not(:last-child, .overview-item--border-none) {
  border-bottom: 1px solid #e9e7e4;
}

.overview-item--bottom-padding {
  padding-bottom: 24px;
}

.overview-item__ttl {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25rem;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
}

.overview-list--ttl-w-l .overview-item__ttl {
  min-width: 5.5em;
}

.overview-item__ttl--center {
  align-items: center;
}

.overview-item__detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
  justify-content: center;
}

.overview-item__text--size-s {
  font-size: 0.8125rem;
}

.overview-item__tax {
  font-size: 0.6875rem;
}

@media (max-width: 768px) {
  .overview-item {
    padding-inline: 8px;
  }

  .overview-item__detail {
    gap: 24px;
  }

  .overview-list--ttl-wide .overview-item__ttl {
    width: 4em;
  }
}

/*--------------------------------
	ticket-detail
--------------------------------*/
.ticket-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: baseline;
}

.ticket-detail__price-label {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: baseline;
}

.ticket-detail__tax {
  font-size: 0.6875em;
}

.ticket-detail_attention {
  font-size: 0.8125em;
  line-height: 1;
}

@media (max-width: 768px) {
  .ticket-detail {
    gap: 8px 24px;
    flex-direction: column;
  }

  .ticket-detail__date {
    font-size: 0.8125rem;
  }
}

/*--------------------------------
	attention
--------------------------------*/
.attention-container{
  width: 100%;
max-width: 1000px;
margin-inline: auto;
  display: flex;
  flex-direction: column;
  padding-inline:20px;
gap: 16px;
}

.attention-container__block{
    display: flex;
  flex-direction: column;  
gap: 6px;
}

.attention {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  line-height: 1.2;
}

.attention--size-s {
  font-size: 0.6875rem;
}

.attention__text {
  display: flex;
  gap: 0.3em;
}

.attention__text::before {
  content: '※';
}

.attention__text-list{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/*--------------------------------
	benefit-goods
--------------------------------*/
.benefit-goods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-goods__ttl {
  font-size: 1rem;
  line-height: 1.25;
}

/*--------------------------------
	target-list
--------------------------------*/
.target-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.8125rem;
}

.target-list__item:not(:last-child)::after {
  content: '/';
  padding-left: 16px;
}

/*--------------------------------
	picture-zoom-btn
--------------------------------*/
.picture-zoom-btn {
  width: fit-content;
  position: relative;

  img {
    width: 100%;
    max-width: 375px;
    height: auto;
    border: 1px solid #c9c4b9;
  }

  &:hover {
    opacity: 0.7;
  }
}

.picture-zoom-btn::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: no-repeat center/contain url(../images/icon-zoom.svg);
}

/*--------------------------------
	accordion-contents
--------------------------------*/
.accordion-contents {
  border: 1px solid #c9c4b9;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;

  align-items: center;
}

.accordion-contents__hide-area {
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  height: 180px;

  &::after {
    content: '';
    background: linear-gradient(0deg, #fff, transparent);
    width: 100%;
    height: min(100%, 180px);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    transition: all 0.3s ease;
  }
}

.accordion-contents__hide-area--active::after {
  opacity: 0;
}

.accordion-contents__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.accordion-contents__ttl {
  color: #806c49;
  font-size: 0.8125rem;
  font-weight: 700;
}

.accordion-contents__btn {
  position: relative;
  display: flex;
  width: 80%;
  max-width: 108px;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid #806c49;
  background: #fff;
  color: #806c49;
  font-size: 0.6875rem;
  font-weight: 500;
}

.accordion-contents__btn::before {
  content: 'もっと見る';
}

.accordion-contents__btn::after {
  content: '';
  height: 6px;
  aspect-ratio: 7/3;
  background: no-repeat center/contain url(../images/icon-arrow-bottom-secondary.svg);
  transform: rotateX(0);
}

.accordion-contents__btn--close::before {
  content: '閉じる';
}

.accordion-contents__btn--close::after {
  transform: rotateX(180deg);
}

/*--------------------------------
	ambassador
--------------------------------*/
.ambassador {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ambassador__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  text-align: center;
}

.ambassador__designer-name {
  font-size: 1rem;
}

.ambassador__copyright {
  font-size: 0.625rem;
}

@media (max-width: 768px) {
  .ambassador__designer-name {
    font-size: 0.8125rem;
  }
}

/*--------------------------------
	character-intro-list
--------------------------------*/
.character-intro-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-inline: 20px;
}

@media (max-width: 768px) {
  .character-intro-list {
    gap: 40px;
  }
}

/*--------------------------------
	character-intro
--------------------------------*/
.character-intro {
  display: grid;
  gap: clamp(24px, calc(24px + (64 - 24) * (100vw - 375px) / (765 - 375)), 64px)
    clamp(10px, calc(10px + (80 - 10) * (100vw - 375px) / (765 - 375)), 80px);
  margin-inline: auto;
  max-width: 765px;
  grid-template-columns: auto 43%;
  grid-template-rows: auto;
  align-items: center;
}

.character-intro--layout-secondary {
  grid-template-columns: 43% auto;

  .character-intro__main-img {
    grid-column: 2/3;
  }

  .character-intro__profile {
    padding-inline: calc((100% - 293px) / 2);
  }
}

.character-intro__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.character-intro__main-img {
  grid-row: 1/3;

  .character-intro__img {
    aspect-ratio: 38/91;
  }
}

.character-intro__sub-img {
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  aspect-ratio: 1/1;
}

.character-intro__profile {
  padding-block: 60px;
  padding-inline: calc((100% - 240px) / 2);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background:
    no-repeat top center / 100% auto url(../images/profile-frame-top.svg),
    no-repeat bottom center / 100% auto url(../images/profile-frame-bottom.svg);
}

.character-intro__ttl {
  color: #403934;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
}

.character-intro__text-block {
  color: #403934;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.065rem;
}

.character-intro__item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.character-intro__item {
  display: flex;
  gap: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  align-items: center;
}

.character-intro__item-ttl {
  display: flex;
  width: 100px;
  padding: 6px 8px;
  border: 1px solid #a6925d;
  color: #806c49;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 768px) {
  .character-intro {
    gap: 24px 10px;
    grid-template-columns: auto min(58%, 193px);
  }

  .character-intro--layout-secondary {
    grid-template-columns: min(60%, 222px) auto;
    .character-intro__main-img .character-intro__img {
      aspect-ratio: 23/76;
    }
  }

  .character-intro__profile {
    padding-block: 35px;
    gap: 16px;
    background:
      no-repeat top center / auto 11px url(../images/profile-frame-top.svg),
      no-repeat bottom center / auto 11px url(../images/profile-frame-bottom.svg);
  }

  .character-intro__text-block {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%;
  }

  .character-intro__item-list {
    gap: 8px;
  }

  .character-intro__item {
    font-size: 0.625rem;
    gap: 8px;
  }

  .character-intro__item-ttl {
    width: 84px;
  }
}

/*--------------------------------
	intro-decoration
--------------------------------*/
.intro-decoration-wrap {
  position: relative;
  width: 100%;
}

.intro-decoration {
  width: 90%;
  max-width: 1000px;
  pointer-events: none;
}

.intro-decoration img {
  height: 100%;
  width: 100%;
  object-position: bottom;
  object-fit: contain;
}

.intro-decoration__01,
.intro-decoration__02 {
  filter: drop-shadow(8px 8px 15px rgba(70, 61, 56, 0.16));
}

@media (min-width: 769px) {
  .intro-decoration {
    position: absolute;
    height: 125%;
    top: -12.5%;
    left: calc(50% - min(calc(90% / 2), 500px));
    z-index: 1;
  }

  .intro-decoration__01,
  .intro-decoration__02 {
    position: absolute;
    bottom: 0;
  }

  .intro-decoration__01 {
    width: 29%;
    max-height: 700px;
    aspect-ratio: 18/43;
    left: -17%;
  }

  .intro-decoration__02 {
    width: 21.8%;
    max-height: 730px;
    aspect-ratio: 52/171;
    right: -11%;
  }
}

@media (max-width: 768px) {
  .intro-decoration {
    position: relative;
    width: 79%;
    display: grid;
    grid-template-columns: 55% 45%;
    margin-inline: auto;
    align-items: flex-end;
    margin-top: -50px;
  }

  .intro-decoration__01 {
    height: 95%;
  }

  .intro-decoration__02 {
    height: 100%;
  }
}

/*--------------------------------
	ticket-decoration
--------------------------------*/
.section:has(.ticket-decoration-wrap) {
  z-index: 1;
}
.ticket-decoration-wrap {
  position: relative;
}

.ticket-decoration {
  position: absolute;
  width: 100%;
  height: calc(101% + 280px);
  top: calc((0.5% + 140px) * -1);
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.ticket-decoration img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.ticket-decoration__01,
.ticket-decoration__02 {
  position: absolute;
  filter: drop-shadow(8px 8px 15px rgba(70, 61, 56, 0.16));
}

.ticket-decoration__01 {
  top: 0;
  left: -11.7%;
  width: 22.8%;
}

.ticket-decoration__02 {
  top: 44.4%;
  right: -15%;
  width: 26%;
}

@media (max-width: 768px) {
  .ticket-decoration {
    height: calc(100% + 128px + 10px);
    top: calc((5px + 64px) * -1);
  }

  .ticket-decoration__01 {
    top: 0;
    left: -3%;
    max-width: 98px;
    width: 30%;
  }

  .ticket-decoration__02 {
    right: -3%;
    top: calc(100% - min(41vw, 156px));
    max-width: 122px;
    width: 40%;
  }
}
/*--------------------------------
	preparation-text
--------------------------------*/

.preparation-text {
  color: #989286;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

/*--------------------------------
	sign-event
--------------------------------*/
.sign-event {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sign-event__info {
  display: flex;
  padding: 6px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border: 1px solid #a6925d;
  background: #f5fffb;
}

.sign-event__info-ttl {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-self: stretch;
  border: 1px solid #a6925d;
  background: #d7f3e7;
  color: #989286;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
  min-height: 46px;
  position: relative;
  align-items: center;
  &::after {
    content: '';
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    top: -1px;
    left: -1px;
    border: 1px solid #a6925d;
    border-radius: 999px;
  }
}

.sign-event__info-ttl-inner {
  width: 100%;
  text-align: center;
  padding-inline: calc(12px + 0.5em);
  background:
    no-repeat center left/12px auto url(../images/icon-star-twinkle.svg),
    no-repeat center right/12px auto url(../images/icon-star-twinkle.svg);
}

/*--------------------------------
	sign-event-list
--------------------------------*/

.sign-event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  padding-bottom: 16px;
}

@media (max-width: 768px) {
  .sign-event-list {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}

/*--------------------------------
	sign-event-item
--------------------------------*/
.sign-event-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-inline: 24px;
}

.sign-event-item__date {
  padding-block: 4px;
  text-align: center;
  color: #fff;
  background: #ce826f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 125%;
}

.sign-event-item__date--secondary {
  background: #5d7ca6;
}

.sign-event-item__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--, #403934);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 125%;
}

.sign-event-item__target-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.sign-event-item__target-picture {
  width: 88px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  border: 1px solid #c9c4b9;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

.sign-event-item__target-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #403934;
  font-size: 0.8125rem;
}

.sign-event-item__target-header {
  font-weight: 700;
}

.sign-event-item__target-ttl {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 3px;
}

.sign-event-item__btn-area .btn {
  margin-inline: auto;
}

@media (min-width: 769px) {
  .sign-event-item {
    grid-template-rows: subgrid;
    grid-row: 4 span;
  }
  .sign-event-item:last-child {
    border-left: 1px solid #c9c4b9;
  }
}

@media (max-width: 768px) {
  .sign-event-item:last-child {
    border-top: 1px solid #c9c4b9;
    padding-top: 24px;
  }
}


/* --------------------------------
                exhibition-map
-------------------------------- */
.exhibition-map{
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

.map-swiper{
  width: 100%;
  img{
    width: 100%;
    height: 100%;
  }  
  .swiper-slide{
    border:1px solid #A6925D;
  }
}

.map-swiper-tmb{ 
  width: 100%;
  img{
    width: 100%;
    height: 100%;
  }
  .swiper-slide{
    cursor: pointer;
  }
  .swiper-slide.swiper-slide-active{
    border:1px solid #A6925D;
  }
} 

/*--------------------------------
	footer
--------------------------------*/
.footer {
  position: relative;
  display: flex;
  padding-block: 160px 80px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  background: linear-gradient(0deg, #fff calc(100% - 160px), rgba(255, 255, 255, 0) 100%);
}

.footer__sns-btn {
  display: block;
  width: 60px;
  aspect-ratio: 1/1;

  &:hover {
    opacity: 0.7;
  }
}

.footer__logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  max-width: 1000px;
  margin-inline: auto;
  align-self: stretch;
  flex-wrap: wrap;
}

.footer__logo {
  display: block;
  width: auto;
  height: 40px;
}

a.footer__logo:hover {
  opacity: 0.7;
}

.footer__logo-img {
  height: 100%;
  width: auto;
}

.footer__melon-logo {
  display: block;
  width: auto;
  height: 49px;

  &:hover {
    opacity: 0.7;
  }
}

.footer__melon-logo-img {
  height: 100%;
  width: auto;
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  align-self: stretch;
}

@media (max-width: 768px) {
  .footer {
    padding-block: 80px 64px;
    background: linear-gradient(0deg, #fff calc(100% - 80px), rgba(255, 255, 255, 0) 100%);
  }

  .footer__logo-list {
    gap: 40px;
    padding-inline: 20px;
  }
}

/*--------------------------------
	link-blank
--------------------------------*/
.link-blank {
  display: flex;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #108279;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}

.link-blank::after {
  content: '';
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background: no-repeat center/contain url(../images/icon-external-link-line.svg);
}

/*--------------------------------
	copyright-list
--------------------------------*/
.copyright-list {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #403934;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
}

.copyright-list__item:not(:last-child)::after {
  content: '/';
  padding-left: 6px;
}

/*--------------------------------
	list-wrap
--------------------------------*/
.list-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.list-wrap__attention {
  text-align: right;

  color: #403934;
  font-size: 0.6875rem;

  font-weight: 500;
}

/*--------------------------------
	title-list
--------------------------------*/
.title-list {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(min(calc((100% - 25px) / 2), 282px), 1fr));
  gap: 0 24px;
}

@media (max-width: 768px) {
  .title-list {
    gap: 0 10px;
  }
}

/*--------------------------------
	item-card
--------------------------------*/
.item-card {
  border-bottom: 1px dashed #8b6e4b;
  padding: 20px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #403934;
}

.item-card__title {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: 2em;
  display: flex;
  align-items: center;
}

.item-card__info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  line-height: 1.2;
}

.item-card__divider {
  display: block;
  width: 1px;
  height: 0.8em;
  background: #403934;
  opacity: 0.5;
}

/* タグセクション */
.item-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.item-card__tag {
  display: inline-block;
  padding: 0.2em 0.4em 0.3em;
  font-size: 0.625rem;
  border-radius: 3px;
  border: 1px solid currentColor;
  background-color: transparent;
}

/* タグのカラーバリエーション */
.item-card__tag--picture {
  color: #157e74;
}

.item-card__tag--panel {
  color: #3a6bc5;
}

.item-card__tag--sign-board {
  color: #9b51ad;
}

.item-card__tag--goods {
  color: #c96a4d;
}

@media (max-width: 768px) {
  .item-card__title {
    min-height: 4em;
  }

  .item-card__divider {
    display: none;
  }

  .item-card__info {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*--------------------------------------------------
goods-tag-list
--------------------------------------------------*/
:root {
  --goods-tag-text: #403934;
  --goods-tag-border: #403934;
  --goods-tag-bg: transparent;
}
.goods-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.goods-tag {
  text-align: center;
  width: fit-content;
  min-height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 4px;
  border: 1px solid var(--goods-tag-border);
  background: var(--goods-tag-bg);
  color: var(--goods-tag-text);
  font-size: 0.625rem;
  border-radius: 3px;
}
.goods-tag--new {
  --goods-tag-text: #fff;
  --goods-tag-border: #e63f3f;
  --goods-tag-bg: #e63f3f;
}
.goods-tag--order {
  --goods-tag-text: #108279;
  --goods-tag-border: #108279;
  --goods-tag-bg: transparent;
}
.goods-tag--newly-drawn {
  --goods-tag-text: #cc5d37;
  --goods-tag-border: #cc5d37;
  --goods-tag-bg: transparent;
}

/*--------------------------------------------------
goods-list
--------------------------------------------------*/

.goods-list-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 95%;
}

.goods-list {
  margin-inline: auto;
  max-width: 1200px;
  display: grid;
  gap: 40px 24px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  width: 100%;
}

@media (max-width: 768px) {
  .goods-list-container {
    gap: 24px;
  }

  .goods-list {
    gap: 32px 10px;
    padding-inline: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*--------------------------------------------------
goods-card
--------------------------------------------------*/

.goods-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  color: #403934;
  &:hover {
    opacity: 0.7;
  }
}

.goods-card__tag-list {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
}

.goods-card__sample {
  position: relative;
  border: 1px solid #c9c4b9;
}

.goods-card__sample::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: no-repeat center/contain url(../images/icon-zoom.svg);
}
.goods-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.goods-card__detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline: 6px;
  font-weight: 500;
}
.goods-card__ttl {
  font-size: 1rem;
  font-weight: 700;
  max-height: 2lh;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.goods-card__work-ttl {
  font-size: 0.625rem;
  font-weight: 500;
  max-height: 2lh;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.goods-card__work-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.625rem;
}

.goods-card__price {
  font-size: 1rem;
}
.goods-card__price-unit {
  font-size: 0.6875rem;
}

@media (min-width: 769px) {
  .goods-card__work-author::after {
    content: '|';
    padding-left: 6px;
  }
}

@media (max-width: 768px) {
  .goods-card__detail {
    gap: 10px;
  }

  .goods-card__work-info {
    flex-direction: column;
  }
}

/* --------------------------------
          グッズ検索
-------------------------------- */

.search-form-area {
  display: flex;
  align-items: center;
  width: 95%;
  max-width: 1200px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .search-form-area {
    padding-inline: 20px;
  }
}

.search-count {
  color: #403934;
  font-size: 0.8125rem;
  font-weight: 500;
}

.search-open-btn {
  color: #806c49;
  display: flex;
  width: 120px;
  padding: 8px 10px;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  background: #fff;
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 500;
  &::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    background: no-repeat center/contain url(../images/icon-search.svg);
  }
}

/* --------------------------------
       グッズ検索モーダル
-------------------------------- */

@media (min-width: 769px) {
  .modal:has(.search-modal) {
    max-width: 500px;
    max-height: 600px;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .modal:has(.search-modal) {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
  }
  dialog:has(.search-modal) {
    width: 100vw;
    max-width: 100vw;
    max-height: 100dvh;
  }
}

.search-modal {
  display: flex;
  width: 100%;
  flex-direction: column;
  max-height: 100%;
  height: 100%;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .search-modal {
    padding: 24px;
  }
}

.search-modal__header {
  display: flex;
  width: 100%;
  padding: 20px;
  justify-content: center;
  align-items: center;
  color: #806c49;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #c9c4b9;
  position: relative;
  min-height: 66px;
}

.search-modal__ttl {
  font-size: 0.8125rem;
}

.search-modal__close {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 20px;
  right: 20px;
  background: no-repeat center / contain url(../images/icon-close-line.svg);
  &:hover {
    opacity: 0.7;
  }
}

.search-modal__back {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 20px;
  left: 20px;
  background: no-repeat center / contain url(../images/icon-arrow-left-filled.svg);
  &:hover {
    opacity: 0.7;
  }
}

.search-modal__footer {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .search-modal__footer {
    padding-block: 24px;
  }
}

/* --------------------------------
       グッズ絞り込み項目
-------------------------------- */

.specified-btn-list {
  display: flex;
  flex-direction: column;
}

.specified-btn {
  display: flex;
  padding: 16px calc(16px + 16px + 8px) 16px 16px;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  color: #403934;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 500;
  border-bottom: 1px solid #c9c4b9;
  position: relative;
  &::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: calc(50% - 0.5em);
    right: 16px;
    background: no-repeat center / contain url(../images/icon-arrow-right-filled.svg);
  }
}

.specified-btn-header {
  display: flex;
  gap: 8px;
}

.specified-btn-overview {
  margin-left: auto;
}

.specified-btn-setting {
  font-size: 0.6875rem;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  white-space: nowrap;
  &:empty {
    display: none;
  }
}

/* --------------------------------
       グッズ絞り込み指定
-------------------------------- */
/* 五十音順タブ */
.syuon-btn-list {
  display: flex;
  padding: 16px;
  flex-wrap: nowrap;
  gap: 8px;
  overflow: auto;
  max-width: 100%;
  scroll-padding: 16px;
  scroll-snap-type: x mandatory;
}
.syuon-btn {
  scroll-snap-align: start;
  cursor: pointer;
  display: flex;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #806c49;
  color: #806c49;
  font-size: 0.75rem;
  font-weight: 600;
  flex: 0 0 auto;
}

.syuon-btn--active {
  pointer-events: none;
  color: #fff;
  background: #806c49;
}

/* 指定リスト */
:root {
  --dialog-size: 600px;
  --border-size: 2px;
  --dialog-gap-size: 24px;
  --dialog-padding: 48px;
  --ttl-size: 66px;
  --syuon-size: 64px;
  --btn-area-size: 57px;
}

@media (max-width: 768px) {
  :root {
    --dialog-size: 100dvh;
    --border-size: 0px;
    --dialog-gap-size: 0px;
    --dialog-padding: 0px;
    --btn-area-size: 105px;
  }
}

.selection-list {
  display: flex;
  flex-direction: column;
  max-height: calc(
    var(--dialog-size) - var(--border-size) - var(--dialog-padding) - var(--ttl-size) - var(--syuon-size) -
      var(--btn-area-size) - var(--dialog-gap-size)
  );
  overflow-y: auto;
}

/* スクロールバー指定 */
.selection-list::-webkit-scrollbar {
  width: 5px;
}

.selection-list::-webkit-scrollbar-track {
  background: transparent;
}

.selection-list::-webkit-scrollbar-thumb {
  background: #806c49;
}

@supports not selector(::-webkit-scrollbar) {
  .selection-list {
    scrollbar-color: #806c49 transparent;
  }
}

.selection-item {
  display: flex;
  padding: 16px;
  gap: 6px;
  color: #403934;
  font-size: 0.8125rem;
  font-weight: 500;
  align-items: center;
  border-bottom: 1px solid #c9c4b9;
  cursor: pointer;
  &::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    background: no-repeat center / contain url(../images/icon-check-box.svg);
  }
}

.selection-item:has(:checked)::before {
  background: no-repeat center / contain url(../images/icon-check-box-active.svg);
}

.selection-item__inner {
  max-width: 100%;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* --------------------------------
       リセットボタン
-------------------------------- */
.search-control-area{
    display: flex;   
    align-items: center;
    width: 100%;
    padding-inline: 24px;
    justify-content: center;
}

 @media (min-width: 769px) {
  .search-control-area{
     gap: 24px;
  }
 }
  @media (max-width: 768px) {
    .search-control-area{
      justify-content: space-evenly;
    }
  }
 

.search-reset-btn{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  color: #806C49;
text-align: center;
font-size: 0.6875rem;
min-width: 6em;
font-weight: 500;
}

/* --------------------------------
       絞り込み対象なし
-------------------------------- */
.goods-list:has(.select-none) {
  grid-template-columns: 1fr;
}
.select-none {
  width: 100%;
  text-align: center;
}

/*--------------------------------
	レスポンシブ対応
--------------------------------*/
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
