*,
*::before,
*::after {
  min-width: 0px;
  min-height: 0px;
}

html {
  /* 最小値13pxを保証し、1200px未満では最大22pxまでフォントサイズが流動する */
  font-size: clamp(13px, var(--font-size-base), 22px);

  @media screen and (min-width: 1200px) {
    font-size: clamp(0.1rem, var(--font-size-base), 24px);
  }
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--light-beige);
  letter-spacing: 0.04em;
  font-weight: 500;
}

#root {
  margin: 0 auto;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: inherit;
}

img, iframe {
  max-width: 100%;
}
iframe {
  border: none;
  box-shadow: none;
}

a, a:hover {
  color: var(--ink);
}

[id] {
  scroll-margin-top: 3.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

button {
  position: relative;
  appearance: none;
  cursor: pointer;
  box-shadow: none;
  border: 0;
  outline: none;
  background: none;
  padding: 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.5rem;
  list-style: disc outside none;

  & > p {
    margin: 0;
    display: list-item;
  }
}

.webgene-pagination {
  & ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 0;
    margin: 0;

    & li {
      & a {
        display: inline-block;
        width: 3rem;
        line-height: 3rem;
        text-align: center;
        &:hover {
          text-decoration: none;
        }
      }

      &.selected {
        & a {
          &:hover {}
        }
      }
    }
  }
}

.webgene-no-items {
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
}

.thumbnail {
  position: relative;

  &.thumbnail--16x9 {
    padding-top: 56.25%;
  }

  & img,
  &:empty::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &:empty::before {
    content: "";
    background-image: url("/system_panel/uploads/images/ogp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.article-body {
  & > p {
    margin: 1em 0;
  }

  & > h1,
  & > h2,
  & > h3,
  & > h4,
  & > h5,
  & > h6 {
    margin: 2em 0 1em;
  }

  & > *:first-child {
    margin-top: 0;
  }

  & > *:last-child {
    margin-bottom: 0;
  }

  & a,
  & a:hover {
    color: var(--blue);
    text-decoration: underline;
  }
}

.backdrop-object {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.__mat.__mat--processed {
  word-break: keep-all;
  word-wrap: break-word;
}

.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 10rem 1.25rem 5rem;
  height: 25rem;
  @media (min-width: 768px) {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  @media (min-width: 1024px) {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
    height: 28rem;
  }
  @media (min-width: 1200px) {
    padding-right: 5rem;
    padding-left: 5rem;
    height: 32.5rem;
  }
  
  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  &::before {
    aspect-ratio: 1031 / 333;
    width: 128.875%;
    min-width: 128.875rem;
    top: 0;
    left: 50%;
    transform: translate(calc(-52%), -3.1531531532%);
    background-image: url(/system_panel/uploads/images/green-wind-1.svg);
  }
  &::after {
    aspect-ratio: 160 / 177;
    width: 7.5rem;
    top: 5rem;
    right: -1rem;
    transform: rotate(-120deg);
    background-image: url(/system_panel/uploads/images/page-hero-annual-ring.png);
    @media (min-width: 768px) {
      width: 30%;
      max-width: 30rem;
      top: 0;
      right: 0;
      transform: translate(5%, 13.5%) rotate(-120deg);
    }
  }
  
  & .page-hero__title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 67.5rem;
    margin-right: auto;
    margin-left: auto;
    & .page-hero__title-en {
      line-height: 1;
      letter-spacing: 0;
      font-family: var(--font-display-1);
      font-weight: 400;
      font-size: 2.5rem;
    }
    & .page-hero__title-ja {
      line-height: 1.25;
      font-weight: 700;
      font-size: 1.25rem;
    }
    @media (min-width: 768px) {
      & .page-hero__title-en {
        font-size: 3.5rem;
      }
      & .page-hero__title-ja {
        font-size: 1.5rem;
      }
    }
    @media (min-width: 1024px) {
      & .page-hero__title-en {
        font-size: 4rem;
      }
    }
    @media (min-width: 1200px) {
      & .page-hero__title-en {
        font-size: 5rem;
      }
      & .page-hero__title-ja {
        font-size: 1.75rem;
      }
    }
  }
}

.button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  font-family: var(--font-display-1);
  font-size: 1.5rem;
  padding-bottom: 8px;
  transition: opacity ease 200ms;
  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: url(/system_panel/uploads/images/carbon-line-ink.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  &::after {
    content: "";
    aspect-ratio: 5 / 3;
    width: 1.25rem;
    background-image: url(/system_panel/uploads/images/button-arrow-ink.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  &:hover {
    text-decoration: none;
    color: var(--ink);
    opacity: 85%;
  }
  
  &.button--green {
    color: var(--green);
    &::before {
      background-image: url(/system_panel/uploads/images/carbon-line-green.png);
    }
    &::after {
      background-image: url(/system_panel/uploads/images/button-arrow-green.svg);
    }
    &:hover {
      color: var(--green);
    }
  }
  &.button--snow {
    color: var(--snow);
    &::before {
      background-image: url(/system_panel/uploads/images/carbon-line-snow.png);
    }
    &::after {
      background-image: url(/system_panel/uploads/images/button-arrow-snow.svg);
    }
    &:hover {
      color: var(--snow);
    }
  }
  &.button--no-icon::after {
    content: none;
  }
  
  &.button--google-maps {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background-color: #4D392B;
    box-shadow: var(--elevation-2);
    color: var(--snow);
    &::before {
      content: none;
    }
    &::after {
      content: "";
      aspect-ratio: 1 / 1;
      width: 2rem;
      background-image: url(/system_panel/uploads/images/google-maps.svg);
    }
    &:hover {
      color: var(--snow);
    }
  }
}

.contact-bg-dec {
  position: absolute;
  & img {
    width: 100%;
  }
  &.contact-bg-dec--1 {
    aspect-ratio: 840.67 / 596.2;
    width: clamp(20rem, 52.5%, 52.5rem);
    top: 0;
    left: 0;
    transform: translate(-27.619047619%, 57.2147651007%);
  }
  &.contact-bg-dec--2 {
    aspect-ratio: 637 / 608;
    width: clamp(15rem, 39.8125%, 39.8125rem);
    right: 0;
    bottom: 0;
    transform: translate(19.4662480377%, 20.3947368421%);
  }
}

.bg-fill-text {
  position: relative;
  padding: 0.375em 0.5em;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 900;
  color: var(--snow);
  background-color: var(--green);
  border-radius: 1rem;
}

.shiritai-bubble {
  position: absolute;
  top: -5.5rem;
  right: -8rem;
  @media (min-width: 768px) {
    top: -5rem;
    right: -9.25rem;
  }
  @media (min-width: 1024px) {
    top: -4.5rem;
  }
  @media (min-width: 1200px) {
    right: -8.75rem;
  }
}

.nutrition-illust {
  position: absolute;
  &.nutrition-illust--1 {
    width: 13rem;
    top: -3rem;
    left: -4rem;
  }
  &.nutrition-illust--2 {
    width: 10rem;
    top: -2.5rem;
    left: -2.5rem;
  }
  &.nutrition-illust--3 {
    width: 11.25rem;
    top: -2rem;
    left: -2rem;
  }
  @media (min-width: 768px) {
    &.nutrition-illust--1 {
      top: -2.75rem;
      left: -1rem;
    }
    &.nutrition-illust--2 {
      left: -0rem;
    }
    &.nutrition-illust--3 {
      top: -1.25rem;
      left: -1rem;
    }
  }
}

.nutrition-bg-typo {
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-display-1);
  font-weight: 400;
  font-size: 4rem;
  color: var(--snow);
  position: absolute;
  top: 0.5166666667em;
  right: 0.3em;
  @media (min-width: 768px) {
    font-size: 7.5rem;
  }
}

.nutrition-bg-illust {
  width: 5rem;
  position: absolute;
  right: -1rem;
  bottom: -6rem;
  z-index: 2;
  @media (min-width: 768px) {
    width: 7.5rem;
    top: 8rem;
    right: -1rem;
    bottom: auto;
  }
  @media (min-width: 1024px) {
    width: 8.75rem;
    right: 2rem;
  }
  @media (min-width: 1200px) {
    z-index: 0;
    top: -14rem;
    right: 5rem;
  }
}

.news-list {
  & .webgene-blog {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  & .webgene-no-items, & .webgene-pagination {
    margin-top: 1.5rem;
  }
}
.category-list {
  text-align: center;
  & .webgene-blog {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
}

.title-wind-dec {
  position: relative;
  padding-bottom: 2rem;
  &::before {
    content: "";
    width: 100%;
    height: 4rem;
    background: url("/system_panel/uploads/images/snow-wind.png") no-repeat 0% 0% / 100% 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  &.title-wind-dec--green::before {
    background-image: url("/system_panel/uploads/images/green-wind-3.png");
  }
  &.title-wind-dec--opacity-30::before {
    opacity: 30%;
  }
}

.rental-space-intro-image {
  width: 119.2307692308%;
  aspect-ratio: 31 / 22;
  & img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    mask-image: url("/system_panel/uploads/images/mask-ellipse-rental-space-intro.png");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
  }
  @media (min-width: 768px) {
    width: 105%;
    margin-left: 7.5rem;
  }
  @media (min-width: 1024px) {
    width: 119.2307692308%;
    margin-left: 0;
  }
}

.section-wave {
  &::before {
    pointer-events: none;
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 3.75rem;
    background: url("/system_panel/uploads/images/wave-beige-1.png") no-repeat 0% 0% / 100% 100%;
    @media (min-width: 768px) {
      height: 6rem;
    }
    @media (min-width: 1200px) {
      height: 10rem;
    }
  }
  &.section-wave--light-beige::before {
    background-image: url("/system_panel/uploads/images/wave-light-beige.png");
  }
  &.section-wave--ink::before {
    background-image: url("/system_panel/uploads/images/wave-ink.png");
  }
  &.section-wave--beige-2::before {
    top: auto;
    bottom: -1px;
    background-image: url("/system_panel/uploads/images/wave-beige-2.png");
  }
}

.scene-counter-reset {
  counter-reset: scene-counter;
}
.scene-counter-increment {
  counter-increment: scene-counter;
}
.scene-num {
  z-index: 1;
  position: absolute;
  inset: -1px -1px auto -1px; 
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  background-color: hsl(0deg 0% 100% / 30%);
  backdrop-filter: blur(4px);
  padding: 2rem 1.25rem 1rem;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--snow);  
  &::before {
    content: "Scene" counter(scene-counter, decimal-leading-zero);
    position: absolute;
    top: -0.4em;
    left: 0.75rem;
    letter-spacing: 0;
    text-shadow: var(--text-shadow);
    color: var(--snow);
    font-family: var(--font-display-2);
    font-weight: 400;
    font-size: 2.5rem;
  }
  @media (min-width: 768px) {
    padding: 4rem 1.5rem 2rem;
    font-size: 1.5rem;
    &::before {
      left: 1.25rem;
      font-size: 4rem;
    }
  }
  @media (min-width: 1024px) {
    padding: 3.5rem 2rem 1.5rem;
    font-size: 1.5rem;
    &::before {
      left: 1.25rem;
      font-size: 4rem;
    }
  }
  @media (min-width: 1200px) {
    padding-top: 4.5rem;
    font-size: 2rem;
    &::before {
      font-size: 6.25rem;
    }
  }
}

.scene-image {
  position: relative;
  &::after {
    pointer-events: none;
    content: "";
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.09) 21.15%, rgba(0, 0, 0, 0.00) 100%);
  }
  & img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 2.5rem;
    box-shadow: var(--elevation-1);
  }
}

.rental-space-intro-illust {
  position: absolute;
  width: 5rem;
  top: -1.25rem;
  left: 1.25rem;
  @media (min-width: 768px) {
    width: 7.5rem;
    top: -8rem;
    right: 5rem;
    left: auto;
  }
  @media (min-width: 1024px) {
    width: 6rem;
    top: -2.5rem;
    right: auto;
    left: 2.5rem;
  }
  @media (min-width: 1200px) {
    width: 7.5rem;
    top: -2.5rem;
    left: 2.5rem;
  }
  & img {
    width: 100%;
  }
}

.scenes-title-illust {
  position: absolute;
  width: 3rem;
  bottom: -1.25rem;
  right: 1.25rem;
  @media (min-width: 768px) {
    width: 6.25rem;
    bottom: -2.5rem;
    right: 2.5rem;
  }
  & img {
    width: 100%;
  }
}

.amenities-title-illust {
  position: absolute;
  width: 3rem;
  bottom: -0.75rem;
  right: 1.25rem;
  @media (min-width: 768px) {
    width: 4rem;
    bottom: -1.875rem;
    right: 10rem;
  }
  @media (min-width: 1024px) {
    width: 4rem;
    right: 0;
  }
  @media (min-width: 1200px) {
    width: 6.25rem;
    right: 2.5rem;
  }
  & img {
    width: 100%;
  }
}

.amenities-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  & .amenities-card {
    aspect-ratio: 1 / 1;
    width: 9rem;
    padding: 1.25rem 0.75rem;
    background-color: var(--snow);
    border-radius: 1rem;
    box-shadow: var(--elevation-2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    line-height: 1;
    font-size: 0.875rem;
    font-weight: 700;
    & img {
      width: 5rem;
      margin-right: auto;
      margin-left: auto;
    }
  }
}

.information-illust {
  position: absolute;
  width: 4rem;
  bottom: -1rem;
  right: 0.625rem;
  @media (min-width: 768px) {
    width: 5rem;
    bottom: -2.5rem;
    right: 2rem;
  }
  @media (min-width: 1024px) {
    width: 4rem;
    bottom: -3.5rem;
    right: -2rem;
  }
  @media (min-width: 1200px) {
    width: 5rem;
    bottom: -2.5rem;
    right: 0.625rem;
  }
  & img {
    width: 100%;
  }
}

.concept-intro-title {
  writing-mode: vertical-rl;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: auto;
  margin-left: 6rem;
  & p:last-child {
    margin-top: 1em;
    position: relative;
    &::before {
      content: "";
      display: block;
      aspect-ratio: 59 / 35;
      width: 7.375rem;
      background: url("/system_panel/uploads/images/sekaihatsu-bubble.svg") no-repeat 0% 0% / 100% 100%;
      position: absolute;
      top: -3.875rem;
      left: -6.625rem;
    }
  }
  @media (min-width: 768px) {
    font-size: 2rem;
  }
  @media (min-width: 1024px) {
    margin-left: 3rem;
  }
}

.concept-intro-illust {
  position: absolute;
  width: 5rem;
  top: -4rem;
  left: 0;
  @media (min-width: 768px) {
    width: 6.25rem;
    top: -4rem;
    left: 0;
  }
  @media (min-width: 1024px) {
    width: 6.25rem;
    top: -3.75rem;
    left: -2rem;
  }
  & img {
    width: 100%;
  }
}

.about-illust {
  position: absolute;
  width: 4rem;
  bottom: -1rem;
  right: 0.625rem;
  @media (min-width: 768px) {
    width: 5rem;
    bottom: -2.5rem;
    right: 2rem;
  }
  @media (min-width: 1024px) {
    width: 4rem;
    bottom: -3.5rem;
    right: -2rem;
  }
  @media (min-width: 1200px) {
    width: 5rem;
    bottom: -3.75rem;
    right: -1.25rem;
  }
  & img {
    width: 100%;
  }
}

.image-filter-black-50 {
  &::after {
    overflow: hidden;
    content: "";
    position: absolute;
    inset: 0;
    background-color: hsl(0deg 0% 0% / 50%);
  }
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.story-title-illust {
  position: absolute;
  width: 3rem;
  top: -5rem;
  right: 1.25rem;
  @media (min-width: 768px) {
    width: 4rem;
    top: -6rem;
    right: 2.5rem;
  }
  @media (min-width: 1024px) {
    width: 5rem;
    top: -5rem;
  }
  @media (min-width: 1200px) {
    width: 6.25rem;
    top: auto;
    bottom: -2rem;
    right: 0;
  }
  & img {
    width: 100%;
  }
}

.story-counter-reset {
  counter-reset: story-counter;
}
.story-counter-increment {
  counter-increment: story-counter;
}
.story-num {
  z-index: 1;
  position: absolute;
  inset: -1px -1px auto -1px; 
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  background-color: hsl(0deg 0% 100% / 30%);
  backdrop-filter: blur(4px);
  padding: 1.75rem 1.25rem 1rem;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--snow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  & h3 {
    font-size: 1.5rem;
  }
  &::before {
    content: counter(story-counter, decimal-leading-zero) ".";
    position: absolute;
    top: -0.4em;
    left: 0.75rem;
    letter-spacing: 0;
    text-shadow: var(--text-shadow);
    color: var(--snow);
    font-family: var(--font-display-2);
    font-weight: 400;
    font-size: 4rem;
  }
  @media (min-width: 768px) {
    padding: 2rem 1.5rem 2rem;
    font-size: 1.5rem;
    & h3 {
      font-size: 2rem;
    }
    &::before {
      left: 1.25rem;
      font-size: 8rem;
    }
  }
  @media (min-width: 1024px) {
    padding: 1.5rem 2rem 1.5rem;
    &::before {
      left: 1.25rem;
      font-size: 6rem;
    }
  }
  @media (min-width: 1200px) {
    padding-top: 3rem;
    font-size: 1.75rem;
    & h3 {
      font-size: 2.25rem;
    }
    &::before {
      font-size: 8rem;
    }
  }
}

.concept-intro-dec-circle {
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  opacity: 40%;
  background-color: var(--beige);
  width: clamp(20rem, 35%, 35rem);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-25%, 28.5714285714%);
}

.story-bg-dec-ellipse {
  position: absolute;
  & img {
    width: 100%;
  }
  &.story-bg-dec-ellipse--1 {
    width: 83.25%;
    top: 0;
    left: 0;
    transform: translate(-16.5165165165%, -10.3448275862%);
  }
  &.story-bg-dec-ellipse--2 {
    width: 115%;
    top: 0;
    left: 0;
    transform: translate(-8.152173913%, -17.7248677249%);
  }
}

.menu-intro-slider {
  mask-image: url("/system_panel/uploads/images/menu-intro-mask-ellipse.png");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  aspect-ratio: 5 / 3;
  width: 100%;
  & .swiper-slide {
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

.swiper:not(.swiper-initialized) {
  & .swiper-wrapper {
    display: flex;
    overflow: auto;
  }
  & .swiper-slide {
    min-width: 90%;
  }
}

.menu-intro-text {
  writing-mode: vertical-rl;
  z-index: 2;
  position: absolute;
  color: var(--snow);
  background-color: var(--green);
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 900;
  border-radius: 1rem;
  font-size: 1rem;
  padding: 0.5rem 0.375rem;
  
  &.menu-intro-text--left {
    top: 3.75rem;
    left: 1rem;
  }
  &.menu-intro-text--right {
    top: 0rem;
    right: 1rem;
  }
  
  @media (min-width: 768px) {
    font-size: 2rem;
  
    &.menu-intro-text--left {
      left: 2rem;
    }
    &.menu-intro-text--right {
      top: -1rem;
      right: 2rem;
    }
  }
  @media (min-width: 1024px) {
    font-size: 3rem;
    padding: 1rem 0.75rem;
  
    &.menu-intro-text--left {
      left: 2.5rem;
    }
    &.menu-intro-text--right {
      top: -2.5rem;
      right: 2.5rem;
    }
  }
  @media (min-width: 1200px) {
    font-size: 3.5rem;
  }
}

.menu-intro-links {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 3rem;
  row-gap: 1.5rem;
  z-index: 2;
  padding: 4rem 1.25rem 2.5rem;
  margin-top: -3rem;
  @media (min-width: 1024px) {
    margin-top: -8rem;
  }
  @media (min-width: 1200px) {
    margin-top: -10rem;
  }
  
  &::before {
    content: "";
    position: absolute;
    background-image: url("/system_panel/uploads/images/20260330090147715502.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 160 / 73;
    width: 60rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  & > a {
    width: 15rem;
    position: relative;
    
    @media (min-width: 768px) {
      width: 18.75rem;
    }
  }
}

.menu-heading-image {
  position: absolute;
  top: -8rem;
  left: -1rem;
  width: 12.5rem;
  filter: drop-shadow(0 4px 16px rgba(0 0 0 / 30%));
  display: block;
    
  @media (min-width: 1024px) {
    width: 18.75rem;
    top: -9.375rem;
    left: 1%;
  }
    
  @media (min-width: 1200px) {
    left: 9%;
  }
}

.menu-flow-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;

  & .menu-flow-image__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  &.menu-flow-image--1 {
    & .menu-flow-image__container {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
  &.menu-flow-image--2 {
    padding-inline: 1.5rem;
    & .menu-flow-image__container {
      position: absolute;
      width: calc(100% - 3rem);
      height: 100%;
      top: 0;
      left: 1.5rem;
      & .swiper {
        height: 100%;
      }
      & img {
        aspect-ratio: 3 / 2;
        object-fit: cover;
        border-radius: 1.5rem;
      }

      & .swiper-initialized {
        & .swiper-wrapper {
          transition-timing-function: linear;
        }
        & .swiper-slide {
          height: unset;
          width: calc(100% - 3rem);
        }
        & .swiper-slide--left {
          margin-left: 3rem;
        }
        & .swiper-slide--right {
          margin-right: 3rem;
        }
      }
    }
  }
  &.menu-flow-image--3 {
    & .menu-flow-image__container {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: repeat(2, minmax(0, 1fr));
      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
  
  @media (min-width: 1024px) {
    aspect-ratio: unset;
    
    &.menu-flow-image--2 {
      max-width: 33.75rem;
    }
  }
}

.menu-lineup-header {
  aspect-ratio: 30 / 17;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  mask-image: url("/system_panel/uploads/images/mask-menu-lineup-header.png");
  mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  
  & > h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0.375rem 0.75rem;
    background-color: hsla(from var(--snow) h s l / 60%);
    backdrop-filter: blur(8px);
    font-weight: bold;
    font-size: 1.25rem;
    white-space: nowrap;
    
    @media (min-width: 768px) {
      font-size: 1.5rem;
    }
    @media (min-width: 1024px) {
      font-size: 2rem;
      padding: 0.75rem 1.5rem;
    }
    @media (min-width: 1200px) {
      font-size: 2.25rem;
    }
  }
}

.recipe-intro-image {
  position: relative;
  width: 150%;
  align-self: center;
  z-index: 0;
  
  & > .recipe-intro-image__img {
    aspect-ratio: 48 / 35;
    object-fit: cover;
    mask-image: url("/system_panel/uploads/images/mask-recipe-intro.png");
    mask-position: center;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    width: 100%;
    position: relative;
  }
  
  &::before {
    content: "";
    background-image: url("/system_panel/uploads/images/20260330140413910458.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    aspect-ratio: 403 / 509;
    position: absolute;
    bottom: 0.3%;
    right: 8%;
    width: 40.22450889%;
  }
  
  @media (min-width: 1200px) {
    align-self: flex-end;
  }
}

.recipe-intro-illust {
  position: absolute;
  z-index: 1;
  
  &.recipe-intro-illust--1 {
    top: 0;
    left: 8%;
    width: 10%;
  }
  
  &.recipe-intro-illust--2 {
    bottom: 2rem;
    right: 4.5%;
    width: 7.5%;
  }
}

.recipe-list-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.84) 18.27%, #FFF 100%);
  mask-position: center;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  background-color: var(--snow);
  z-index: -1;
  overflow: hidden;
  
  & > img {
    position: absolute;
    &:first-child {
      top: 0;
      right: -12.5%;
      width: 25%;
      min-width: 13.75rem;
    }
    &:last-child {
      bottom: 1rem;
      left: 0.5%;
      width: 22%;
      min-width: 12rem;
    }
  }
  
  &::before {
    aspect-ratio: 1031 / 333;
    width: 128.875%;
    min-width: 128.875rem;
    top: 50%;
    left: 50%;
    transform: translate(calc(-52%), -50%);
    background-image: url(/system_panel/uploads/images/green-wind-1.svg);
    content: "";
    display: block;
    position: absolute;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.recipe-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.recipe-tag {
  line-height: 1.25;
  font-size: 0.875rem;
  padding: 0.25rem 0.625rem;
  background-color: var(--beige);
  color: var(--ink);
  font-weight: 500;
  border-radius: 0.375rem;
}

.home-hero {
  padding-top: 5rem;
  position: relative;
  display: flex;
  flex-direction: column;

  & .home-hero-kv {
    width: clamp(50rem, 100%, 80rem);
    padding-top: 5rem;
    padding-bottom: 7.5rem;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  & .home-hero-text {
    position: relative;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-end;
    filter: drop-shadow(0 4px 4px rgba(0 0 0 / 25%));
    color: var(--snow);
    z-index: 2;
    
    & .home-hero-text__label {
      position: absolute;
      top: 1rem;
      left: -7rem;
    }
    
    & > h1 {
      letter-spacing: 0.15em;
      line-height: 1.15;
      font-size: 3rem;
      font-weight: 900;
    }
    & > p {
      letter-spacing: 0.25em;
      line-height: 1.8;
      font-size: 1rem;
      font-weight: 700;
      padding-bottom: 5rem;
    }
  }
  
  @media (min-width: 768px) {
    & .home-hero-kv {
      padding-top: 6.25rem;
      padding-bottom: 10rem;
    }
    & .home-hero-text {
      & > h1 {
        font-size: 3rem;
      }
      & > p {
        font-size: 1.25rem;
      }
      & .home-hero-text__label {
        top: -1rem;
        left: -9rem;
      }
    }
  }
  @media (min-width: 1200px) {
    & .home-hero-kv {
      padding-top: 7.5rem;
      padding-bottom: 12.5rem;
    }
  }
}

.home-hero-slider {
  mask-image: url("/system_panel/uploads/images/mask-home-hero-slider.png");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  & .swiper-slide {
    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

.home-hero {
  &::before, &::after {
    aspect-ratio: 1031 / 333;
    width: 128.875%;
    min-width: 128.875rem;
    top: 50%;
    left: 50%;
    background-image: url(/system_panel/uploads/images/green-wind-1.svg);
    content: "";
    display: block;
    position: absolute;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
  }
  &::before {
    transform: translate(-50%, -85%) rotate(-7deg);
  }
  &::after {
    transform: translate(-50%, 15%);
  }
}

.home-concept {
  isolation: isolate;
  color: var(--snow);

  position: relative;
  &::before, &::after {
    content: "";
    position: absolute;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  &::before {
    top: -10rem;
    left: -4rem;
    background-image: url("/system_panel/uploads/images/20260330171006265219.png");
    width: 30rem;
    aspect-ratio: 120 / 137;
    z-index: -1;
  }
  &::after {
    bottom: -6rem;
    left: -13.5rem;
    background-image: url("/system_panel/uploads/images/20260330171006550203.png");
    width: 43.75rem;
    aspect-ratio: 175 / 207;
    z-index: -2;
  }
  @media (min-width: 768px) {
    &::before {
      left: 17rem;
    }
  }
  @media (min-width: 1200px) {
    &::before {
      width: 42.5rem;
      left: 23rem;
      top: -17rem;
      z-index: -2;
    }
    &::after {
      left: -10.5rem;
      z-index: -1;
    }
  }
}

.home-concept-illust {
  position: absolute;
  width: 7.5rem;
  bottom: 1.25rem;
  right: 0;
  
  @media (min-width: 768px) {
    bottom: 8rem;
    right: 3rem;
  }
  @media (min-width: 1200px) {
    bottom: 21rem;
    right: 18rem;
  }
}

.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(16, minmax(0, 1fr));
  gap: 1rem;
  
  & > img {
    border-radius: 0.75rem;
    aspect-ratio: 2 / 3;
    grid-column: span 1 / span 1;
    object-fit: cover;

    &:nth-of-type(1) {
      grid-row: 1 / 7;
    }
    &:nth-of-type(2) {
      grid-row: 3 / 9;
    }
    &:nth-of-type(3) {
      grid-row: 5 / 11;
    }
    &:nth-of-type(4) {
      grid-row: 7 / 13;
    }
    &:nth-of-type(5) {
      grid-row: 9 / 15;
    }
    &:nth-of-type(6) {
      grid-row: 11 / 17;
    }
  }
  
  @media (min-width: 768px) {
    gap: 1.5rem;
  }
}
.home-menu-wrapper {
  position: relative;
}
.home-menu-heading {
  position: absolute;
  top: -3rem;
  right: 0.5rem;
  font-family: var(--font-display-1);
  font-size: 4rem;
  line-height: 1;
  color: var(--snow);
  filter: drop-shadow(0 4px 4px rgba(0 0 0 / 25%));
  
  @media (min-width: 768px) {
    top: 4rem;
    font-size: 6rem;
    right: -1.5rem;
  }
  @media (min-width: 1024px) {
    top: 12rem;
    font-size: 7.5rem;
  }
}

.home-menu-illust {
  position: absolute;
  &.home-menu-illust--1 {
    top: 27%;
    left: 20%;
    width: 16%;
  }
  &.home-menu-illust--2 {
    bottom: 22%;
    right: -6%;
    width: 18%;
  }
  &.home-menu-illust--3 {
    bottom: -1rem;
    left: 2rem;
    width: 20%;
    @media (min-width: 1024px) {
      bottom: 16rem;
      left: -4rem;
    }
    @media (min-width: 1200px) {
      left: -8rem;
    }
  }
}

.home-menu-textbox {
  @media (min-width: 1024px) {
    position: absolute;
    width: 50rem;
    bottom: 2.5rem;
    left: -4rem;
  }
  @media (min-width: 1200px) {
    left: -7.5rem;
  }
}

.home-rental-space-heading {
  font-family: var(--font-display-1);
  font-size: 2.875rem;
  line-height: 1;
  color: var(--snow);
  filter: drop-shadow(0 4px 4px rgba(0 0 0 / 25%));
  
  @media (min-width: 768px) {
    top: 4rem;
    font-size: 6rem;
    right: -1.5rem;
  }
  @media (min-width: 1024px) {
    top: 12rem;
    font-size: 7.5rem;
    margin-left: -9rem;
  }
}

.home-rental-space-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (min-width: 1024px) {
    mask-image: url("/system_panel/uploads/images/mask-home-rental.png");
    mask-position: center;
    mask-size: 100% 100%;
    width: 90%;
    height: calc(100% - 4.5rem);
    left: 50%;
    top: 4.5rem;
    transform: translateX(-50%);
  }
}

.home-rental-space-illust {
  position: absolute;
  width: 5rem;
  bottom: 0;
  right: 1rem;
  
  @media (min-width: 1200px) {
    width: 8rem;
    right: 34rem;
  }
}

.home-business-image {
  aspect-ratio: 28 / 25;
  position: relative;
  & img {
    position: absolute;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    
    &:first-child {
      width: 78.57%;
      top: 0;
      left: 0;
    }
    &:last-child {
      width: 57.14%;
      bottom: 0;
      right: 0;
    }
  }
}


.home-business {
  position: relative;
  
  &::before, &::after {
    content: "";
    position: absolute;
    aspect-ratio: 1 / 1;
    background-color: rgba(255 255 255 / 10%);
  }
  &::before {
    top: 2.5rem;
    left: 75%;
    transform: translateX(-50%);
    width: 30rem;
  }
  &::after {
    top: 21rem;
    left: 60%;
    transform: translateX(-50%);
    width: 22.5rem;
  }
}

.insta-list {
  & .webgene-blog {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.25rem;
    @media (min-width: 768px) {
      gap: 0.75rem;
    }
  }
  & .webgene-no-items {
    grid-column: span 4 / span 4;
  }
  & .webgene-item {
    & img {
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 0.25rem;
    }

    @media (min-width: 768px) {
      border-radius: 0.75rem;
    }
    
    & .thumbnail {
      padding-top: 100%;
    }
  }
}

.home-insta-illust {
  position: absolute;
  top: 11.25rem;
  right: 1.25rem;
  width: 3.75rem;
  
  @media (min-width: 1024px) {
    right: 12rem;
    width: 6rem;
  }
}

.home-about-illust {
  position: absolute;
  top: 11.25rem;
  right: 1.25rem;
  width: 3.75rem;
  
  @media (min-width: 1024px) {
    right: unset;
    left: 6rem;
    width: 7.5rem;
  }
}

.about-map {
  width: 100%;
  aspect-ratio: 2 / 1;
  position: relative;
  border-radius: 0.75rem;
  box-shadow: 16px 16px 0 0 #F3E1C4;
  
  & iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
  }
  
  & iframe {
  }
}

.about-map__link {
  display: none;
  padding: 1rem 2rem;
  font-family: var(--font-display-1);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--snow);
  background: #4D392B;
  border-radius: 0.5rem;
  box-shadow: var(--elevation-2);
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  bottom: 2.5rem;
  right: -6rem;
  
  &:hover {
    color: var(--snow);
  }
  
  @media (min-width: 1024px) {
    display: flex;
  }
}


.home-news {
  display: none;
}
@media (min-width: 1024px) {
  .home-news {
    position: absolute;
    bottom: 3rem;
    left: 2.5rem;
    width: 35rem;
    background-color: rgba(255 255 255 / 80%);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    z-index: 3;

    &::before {
      content: "News";
      font-family: var(--font-display-1);
      line-height: 1;
      font-size: 1.5rem;
      color: var(--green);
    }
  }
}
