@charset "UTF-8";
/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
:root {
  --color-main: #fff000;
  --color-accent: #d80c18;
  --color-bg: #fff;
  --color-bg-gray: #e6e6e6;
  --color-text: #1e1210;
  --color-text2: #333;
  --color-text-light: #727171;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Base & layout */
html {
  scroll-behavior: smooth;
}

body.lp-body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  background-image: url("../img/bg-pattern.png");
  background-attachment: fixed;
}

* {
  box-sizing: border-box;
}

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

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

a {
  transition: all 0.5s ease-out;
  opacity: 1;
}
a:hover {
  opacity: 0.7;
}
a[href="#"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.3;
}

.lp-container {
  max-width: 1324px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 64px;
}
@media (min-width: 640px) {
  .lp-container {
    grid-template-columns: 260px 1fr;
    padding-top: 0;
    min-width: 1324px;
  }
}
.lp-container::before {
  content: "";
  width: calc((100% - 1324px) / 2);
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.6);
  position: fixed;
  left: 0;
  top: 0;
}
.lp-container::after {
  content: "";
  width: calc((100% - 1324px) / 2);
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.6);
  position: fixed;
  right: 0;
  top: 0;
}

.lp-main {
  max-width: 1064px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-main {
    max-width: 640px;
    overflow: hidden;
  }
}

.lp-header {
  position: fixed;
  width: 100%;
  height: 64px;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  padding: 5px 12px 0 15px;
}
@media (min-width: 640px) {
  .lp-header {
    display: none;
  }
}

.lp-logo {
  margin: 0;
  padding: 10px 0;
  font-weight: 700;
  font-size: 18px;
}

/* Header inner + Burger */
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-burger {
  position: relative;
  width: 36px;
  height: 18px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.lp-burger__line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.lp-burger__line + .lp-burger__line {
  margin-top: 3px;
}

/* Mobile Nav Panel */
.lp-mnav {
  position: fixed;
  inset: 64px 0 auto 0;
  background: #fff;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 1102;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

.lp-mnav__inner {
  padding: 40px 16px;
}

.lp-mnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

/* サイドメニューの見た目を流用（クローンして埋め込む） */
.lp-mnav .lp-sidenav__list {
  gap: 16px;
}

.lp-mnav .lp-sidenav__item {
  text-align: center;
}

.lp-mnav .lp-sidenav__link {
  display: inline-block;
}

.lp-mnav .lp-sidenav__link::before {
  width: 36px;
  height: 4px;
  margin: 0 auto 2px;
}

.lp-mnav .lp-sidenav__children {
  margin: 8px 0 0;
  gap: 0;
}

.lp-mnav .lp-sidenav__sublink {
  font-size: 14px;
}

/* header/footer clones */
.lp-mnav .lp-sidenav__head {
  text-align: center;
  margin: 0 0 40px;
}

.lp-mnav .lp-sidenav__logo img {
  width: 160px;
  height: auto;
  margin: 0 auto;
}

.lp-mnav .lp-sidenav__footer {
  margin-top: 40px;
  text-align: center;
}

.lp-mnav .lp-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.lp-mnav .lp-sns__icon {
  width: 30px;
  height: 30px;
}

.lp-mnav .lp-sns__icon.-youtube {
  width: 32px;
  height: 22px;
}

.lp-mnav .lp-copy {
  display: block;
  margin: 20px 0 40px;
}

/* Open state */
.lp-header.is-open + .lp-mnav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lp-header.is-open .lp-burger__line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.lp-header.is-open .lp-burger__line:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

body.is-menu-open {
  overflow: hidden;
}

/* Sections */
.lp-section {
  margin: 28px 0;
}

/* Generic section heading with yellow bar */
.lp-section__heading {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 20px;
  position: relative;
  padding-top: 10px;
}
.lp-section__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 4px;
  background: var(--color-main);
}

/* Placeholder */
.lp-placeholder {
  padding: 40px;
  border: 2px dashed #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
  color: var(--color-text-light);
  text-align: center;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-inview {
  opacity: 1;
  transform: none;
}

/* Footer */
.lp-footer {
  margin-top: 40px;
  border-top: 1px solid #eee;
}
.lp-footer small {
  display: block;
  padding: 16px;
  color: var(--color-text-light);
}

/* Icon */
.icon--more::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  margin-right: 8px;
  background-image: url("../img/icon-arrow-right-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.icon--blank::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url("../img/icon-blank.svg") no-repeat center/contain;
  vertical-align: middle;
  position: relative;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Sticky side menu (PC only) — acts as header on desktop */
.lp-sidenav {
  display: none;
  width: 260px;
  background-color: #fff;
  /* サイドカラム全体を白で満たす */
  height: 100%;
  min-height: 100vh;
  /* show from SP and up */
  /* inner content wrapper */
  /* SNS icons area inside sidenav */
}
@media (min-width: 640px) {
  .lp-sidenav {
    display: block;
    /* sticky要素がグリッド内で機能するよう、アイテム自体を先頭に寄せる */
    align-self: start;
  }
}
.lp-sidenav__container {
  /* JSで付与されるモディファイアで固定位置を切替（グリッドアイテム自身をsticky化） */
}
@media (min-width: 640px) {
  .lp-sidenav__container {
    /* デフォルトは固定しない（自由スクロール） */
    position: relative;
    padding: 40px 10px;
    /* align-self は親（.lp-sidenav）側で指定 */
    position: sticky;
    top: 0;
  }
}
.lp-sidenav__head {
  text-align: center;
  margin-bottom: 30px;
}
.lp-sidenav__logo {
  display: inline-block;
}
.lp-sidenav__brand {
  font-weight: 700;
}
.lp-sidenav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.lp-sidenav__item {
  text-align: center;
}
.lp-sidenav__link {
  display: inline-block;
  padding: 0 6px;
  font-weight: 700;
}
.lp-sidenav__link::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  background: var(--color-main);
  margin: 0 auto 2px;
}
.lp-sidenav__children {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 0px;
}
.lp-sidenav__sublink {
  display: inline-block;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 14px;
}
.lp-sidenav__footer {
  margin-top: 36px;
  text-align: center;
}
.lp-sidenav .lp-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}
.lp-sidenav .lp-sns__icon {
  width: 30px;
  height: 30px;
}
.lp-sidenav .lp-sns__icon.-youtube {
  width: 32px;
  height: 22px;
}
.lp-sidenav .lp-copy {
  display: block;
  color: var(--color-text-light);
  font-size: 12px;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Hero */
.lp-hero {
  position: relative;
}
.lp-hero__figure {
  margin: 0;
  overflow: hidden;
}
.lp-hero__btn img {
  display: block;
  height: auto;
}
.lp-hero__btn--ticket {
  position: absolute;
  right: 0;
  top: 723px;
  width: 282px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-hero__btn--ticket {
    top: 175vw;
    max-width: 236px;
  }
}
.lp-hero__btn--map {
  position: absolute;
  left: 322px;
  top: 831px;
}
.lp-hero__btn--map img {
  width: 62px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-hero__btn--map {
    top: 194vw;
    left: 77vw;
  }
}
.lp-hero__texts {
  display: block;
  position: absolute;
  left: 40px;
  top: 986px;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-hero__texts {
    left: 16px;
    right: 16px;
    top: 259vw;
  }
}
.lp-hero__texts a {
  text-decoration: underline;
}
@media (min-width: 640px) {
  .lp-hero__btn--ticket img {
    width: 282px;
  }
  .lp-hero__btn--map img {
    width: 62px;
  }
}

/* Floating ticket button: fixed at bottom with 40px gap. Uses .reveal for fade. */
.lp-floatTicket {
  position: fixed;
  bottom: 40px;
  z-index: 1100;
  display: inline-block;
  pointer-events: none; /* hidden state shouldn't capture clicks */
  right: 0; /* SP: コンテンツ余白に合わせる */
  /* PC: コンテンツ幅（コンテナ）の右端に合わせる */
}
@media (min-width: 640px) {
  .lp-floatTicket {
    right: calc((100% - 1324px) / 2);
  }
}
.lp-floatTicket.is-inview {
  pointer-events: auto;
}
.lp-floatTicket picture, .lp-floatTicket img {
  display: block;
  width: min(60vw, 282px);
  height: auto;
}
@media (min-width: 1324px) {
  .lp-floatTicket picture, .lp-floatTicket img {
    width: 282px;
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-floatTicket {
    position: fixed;
    left: auto;
    right: 0;
    bottom: 5vw;
  }
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* News */
.lp-news {
  background-color: #fff;
  margin: 0;
  padding: 56px 40px 25px;
  /* More toggle */
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-news {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.lp-news__heading {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.lp-news__heading::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 36px;
  height: 6px;
  border-radius: 4px;
  background: var(--color-main);
}
.lp-news__body {
  position: relative;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.lp-news__body.is-collapsed::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 80%);
  pointer-events: none;
}
.lp-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-news__item {
  border-bottom: 1px solid var(--color-bg-gray);
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 12px 2px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-news__item {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
}
.lp-news__date {
  flex: 0 0 auto;
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
  font-family: "Roboto", "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  font-style: normal;
  position: relative;
  left: -2px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-news__date {
    left: 0;
  }
}
.lp-news__title {
  flex: 1;
  min-width: 0;
  position: relative;
  top: 2px;
}
.lp-news__title a {
  text-decoration: underline;
}
.lp-news__footer {
  display: flex;
  justify-content: flex-end;
}
.lp-news__more {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  padding: 18px 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.lp-news__moreText::before {
  transition: all 0.25s ease-out;
  transform-origin: center center;
}
.lp-news__more:hover .lp-news__moreText::before {
  transform: rotate(90deg);
}
.lp-news__more.is-open .lp-news__moreText::before {
  transform: rotate(-90deg);
}
.lp-news__more.is-open .lp-news__moreText {
  content: "閉じる";
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
.lp-embed {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}
.lp-embed--16x9 {
  aspect-ratio: 16/9;
}
.lp-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
.lp-stage {
  margin: 0;
  padding: 48px 40px 41px;
  background: var(--color-main);
  /* Pet Step */
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-stage {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.lp-stage .lp-section__heading {
  font-size: 16px;
  margin-bottom: 33px;
}
.lp-stage .lp-section__heading::before {
  background-color: #fff;
  top: -8px;
}
.lp-stage__heading { /* stage top banner */
  display: flex;
  justify-content: center;
  margin: 8px 0 -44px;
}
.lp-stage__heading img {
  width: 672px;
  height: auto;
}
.lp-stage__grid {
  position: relative;
  display: grid;
  grid-template-columns: 76px auto;
  align-items: start;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-stage__grid {
    padding-top: 50px;
  }
}
.lp-stage__timeline {
  margin: 0;
  position: relative;
  top: 120px;
}
.lp-stage__timeline img {
  display: block;
  width: 76px;
  max-width: 100%;
  height: auto;
}
.lp-stage__scheduleWrap {
  position: relative;
  justify-self: start;
}
.lp-stage__balloon {
  position: absolute;
  right: -16px;
  top: 180px;
  width: 160px;
  height: auto;
  display: block;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.lp-stage__balloon.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 640px) {
  .lp-stage__balloon {
    display: none;
  }
}
.lp-stage__scheduleScroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: pan-x;
  cursor: grab;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-stage__scheduleScroller {
    width: calc(100vw - 76px - 16px);
  }
}
.lp-stage__scheduleScroller::-webkit-scrollbar {
  display: none;
}
.lp-stage__scheduleScroller.is-dragging {
  cursor: grabbing;
}
.lp-stage__scheduleScroller img {
  display: block;
  width: 931px;
  max-width: none;
  height: auto;
}
.lp-stage__subheading {
  display: flex;
  justify-content: center;
  margin: 59px 0 13px;
}
.lp-stage__subheading img {
  width: 673px;
  height: auto;
}
.lp-stage__note {
  text-align: center;
  color: var(--color-accent);
  font-weight: 700;
  margin: 8px 0 14px;
  text-decoration: underline;
}

.lp-petsteps {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .lp-petsteps {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-petstep {
  margin: 0;
}
.lp-petstep picture, .lp-petstep img {
  display: block;
  width: 100%;
  height: auto;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Panel-like section (light gray bg + bottom yellow strip) */
.lp-panel {
  margin: 0;
  position: relative;
  background: var(--color-bg-gray);
  padding: 40px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.lp-panel .lp-section__heading {
  font-size: 16px;
  padding-top: 17px;
  padding-bottom: 21px;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* About section */
.lp-about {
  margin: 0;
  padding: 48px 40px 40px;
  background-image: url("../img/bg-about.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-about {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.lp-about .lp-section__heading {
  font-size: 16px;
  margin-bottom: 33px;
}
.lp-about .lp-section__heading::before {
  background-color: #fff;
  top: -8px;
}
.lp-about__logo {
  margin: 8px 0 15px;
  text-align: center;
}
.lp-about__logo img {
  display: inline-block;
  height: auto;
}
.lp-about__lead {
  margin: 0 auto 50px;
  text-align: left;
}
.lp-about__banner {
  display: flex;
  justify-content: center;
  margin: 10px 0 14px;
}
.lp-about__banner img {
  width: min(100%, 672px);
  height: auto;
}
@media (min-width: 640px) {
  .lp-about__banner img {
    width: 672px;
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-about__banner picture {
    width: 100%;
  }
}
.lp-about__visual {
  max-width: 553px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.lp-about__visual img {
  width: min(100%, 720px);
  height: auto;
}

/* Cards (white blocks) */
.lp-aboutCards { /* container for cards below the banner (reserved for future hooks) */
  margin: 0;
}

.lp-card__list {
  display: grid;
  gap: 33px;
  padding: 39px 40px 32px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  margin-top: -104px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-card__list {
    margin-top: -70px;
  }
}
@media (min-width: 640px) {
  .lp-card__list {
    gap: 33px 80px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a d" "b e" "c c";
  }
  .lp-card__list > :nth-child(1) {
    grid-area: 1/1;
  }
  .lp-card__list > :nth-child(2) {
    grid-area: 2/1;
  }
  .lp-card__list > :nth-child(3) {
    grid-area: 3/1;
  }
  .lp-card__list > :nth-child(4) {
    grid-area: 1/2;
  }
  .lp-card__list > :nth-child(5) {
    grid-area: 2/2;
  }
  .lp-card__list::before {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    background-color: #ddd;
    transform: translateX(-50%);
  }
}
.lp-card__item {
  text-align: left;
}
.lp-card__title {
  margin: 0 0 13px;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  text-align: center;
  line-height: 1.4;
}
.lp-card__title::after {
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--color-main);
  margin: 10px auto 0;
}
.lp-card__text {
  font-size: 14px;
  margin: 0;
  color: var(--color-text-light);
}
.lp-card__label2 {
  margin-left: 1em;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-card__label2 {
    display: block;
    margin-left: 0;
  }
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Tenants (shops) */
.lp-tenants {
  margin-top: 45px;
}
.lp-tenants__heading {
  display: flex;
  justify-content: center;
  margin: 6px 0 8px 22px;
}
.lp-tenants__heading img {
  width: min(100%, 640px);
  height: auto;
}
@media (min-width: 640px) {
  .lp-tenants__heading img {
    width: 673px;
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-tenants__heading {
    margin: 6px 0;
  }
  .lp-tenants__heading picture {
    width: 100%;
  }
}
.lp-tenants__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .lp-tenants__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-tenant {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 25px;
  min-height: 292px;
  box-sizing: border-box;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-tenant {
    padding: 20px;
    min-height: 262px;
  }
}
.lp-tenant__figure {
  margin: 0 0 10px;
}
.lp-tenant__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.lp-tenant__menu {
  list-style: none;
  margin: 0px 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 10px;
}
.lp-tenant__menu::before {
  content: "menu";
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-light);
  height: 24px;
}
.lp-tenant__menuItem {
  font-size: 14px;
  line-height: 1.6;
  vertical-align: middle;
  margin: 0;
}
.lp-tenant__menuItem::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 999px;
  background: var(--color-main);
  margin-right: 3px;
  position: relative;
  top: 2px;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Otomo (ごはんのおとも) section */
.lp-otomo {
  text-align: center;
  margin-top: 61px;
  margin-bottom: 0;
}
.lp-otomo__heading {
  display: flex;
  justify-content: center;
  margin: 6px 0 20px;
}
.lp-otomo__heading img {
  width: min(100%, 674px);
  height: auto;
}
@media (min-width: 640px) {
  .lp-otomo__heading img {
    width: 674px;
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-otomo__heading picture {
    width: 100%;
  }
}
.lp-otomo__visual {
  margin: 0;
  display: flex;
  justify-content: center;
}
.lp-otomo__visual img {
  border-radius: 20px;
}
.lp-otomo__note {
  margin: 14px 0 13px;
  text-align: left;
}
.lp-otomo__menus {
  display: grid;
  gap: 10px;
}
@media (min-width: 640px) {
  .lp-otomo__menus {
    grid-template-columns: 1fr 1fr; /* PC: 2カラム */
  }
}
.lp-otomo__menu {
  margin: 0;
}
.lp-otomo__menu img {
  display: block;
  width: 100%;
  height: auto;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Ticket section */
.lp-ticket {
  margin: 0;
  padding: 48px 40px 32px;
  background: #fff;
  position: relative;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-ticket {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.lp-ticket .lp-section__heading {
  font-size: 16px;
  margin-bottom: 52px;
}
.lp-ticket .lp-section__heading::before {
  top: -8px;
}
.lp-ticket__visual {
  margin: 0 0 60px;
  overflow: hidden;
  position: relative;
}
.lp-ticket__visual picture, .lp-ticket__visual img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-ticket__visual {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.lp-ticket__image {
  max-width: 190px;
  display: block;
  position: absolute;
  top: 245px;
  left: 160px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-ticket__image {
    top: 107.5vw;
    left: 4.5vw;
    width: 30.5vw !important;
  }
}
.lp-ticket__subheading {
  margin: 0 0 15px;
  font-size: 18px;
  background-color: var(--color-main);
  padding: 4px 15px;
}

/* Ticket sales list */
.lp-ticketBox__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-ticketBox__list {
    gap: 5px;
  }
}
.lp-ticketBox__item {
  position: relative;
  font-size: 18px;
  margin-left: 1em;
  text-indent: -1em;
}
.lp-ticketBox__item::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
  border-radius: 999px;
  background: var(--color-main);
  margin-right: 4px;
}
.lp-ticketBox__item a {
  text-decoration: underline;
}
.lp-ticketBox__item a:hover {
  filter: brightness(1.1);
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* FAQ section */
.lp-faq {
  margin: 0;
  padding: 48px 40px 41px;
  background: var(--color-bg-gray);
  /* category */
  /* list */
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-faq {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.lp-faq .lp-section__heading {
  font-size: 16px;
  margin-bottom: 35px;
}
.lp-faq .lp-section__heading::before {
  top: -8px;
}
.lp-faqNav {
  margin: 8px 0 53px;
}
.lp-faqNav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}
@media (min-width: 640px) {
  .lp-faqNav__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-faqNav__list {
    flex-direction: column;
  }
}
.lp-faqNav__link {
  display: inline-block;
  padding: 5px 17px;
  text-align: center;
  border-radius: 999px;
  background: #fff;
  color: var(--color-text-light);
}
.lp-faqNav__link::before {
  content: "";
  display: inline-block;
  background-image: url("../img/icon-arrow-down-yellow.svg");
  width: 16px;
  height: 12px;
  margin-right: 9px;
  vertical-align: middle;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-faqNav__link {
    width: 100%;
    text-align: left;
  }
}
.lp-faqCat {
  margin: 0 0 20px;
}
.lp-faqCat__heading {
  position: relative;
  margin: 0 0 32px;
  font-size: 18px;
  font-weight: 500;
  vertical-align: middle;
}
.lp-faqCat__heading::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 36px;
  height: 4px;
  background: var(--color-main);
  margin-right: 13px;
  top: -6px;
}
.lp-faqList {
  display: grid;
  gap: 12px;
}
.lp-faqItem__q, .lp-faqItem__a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}
.lp-faqItem__q::before, .lp-faqItem__a::before {
  content: "";
  display: inline-block;
  background-size: contain;
  position: relative;
}
.lp-faqItem__q {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 16px 21px 14px;
}
.lp-faqItem__q::before {
  background-image: url("../img/heading-q.svg");
  width: 24px;
  height: 34px;
  top: -1px;
  margin-right: 11px;
}
.lp-faqItem__a {
  color: var(--color-text2);
  font-size: 15px;
  padding: 16px 21px 25px;
}
.lp-faqItem__a::before {
  background-image: url("../img/heading-a.svg");
  width: 26px;
  height: 29px;
  top: -1px;
  margin-right: 8px;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Sponsors / Partners */
.lp-sponsors {
  margin: 0;
  padding: 48px 40px 40px;
  background: #fff;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-sponsors {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.lp-sponsors .lp-section__heading {
  font-size: 16px;
  margin-bottom: 26px;
}
.lp-sponsors .lp-section__heading::before {
  top: -8px;
}

.organizers__block {
  margin: 16px 0 25px;
}
.organizers__label {
  margin: 12px 0 4px;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}
.organizers__text {
  margin: 0 0 8px;
  font-size: 14px;
}

.sponsors__block {
  margin: 0 0 32px;
}
.sponsors__label {
  margin: 0 0 4px;
  font-weight: 500;
  font-size: 14px;
  position: relative;
}
.sponsors__text {
  margin: 0 0 8px;
  font-size: 16px;
}
.sponsors__logos {
  margin: 8px 0 33px -8px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.sponsors__logos picture,
.sponsors__logos img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 971px;
}

.partners__block {
  margin: 0 0 20px;
}
.partners__label {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}
.partners__text {
  margin: 0 0 8px;
  font-size: 14px;
}

/*
  LP SCSS entry
  - Compile to: ../css/main.css
  - Tool: Prepros or any SCSS compiler
*/
/* Contact (acts as footer) */
.lp-contact {
  margin: 0;
  padding: 48px 40px 45px;
  background: var(--color-bg-gray);
  /* 右側 */
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.lp-contact .lp-section__heading {
  font-size: 16px;
  margin-bottom: 24px;
}
.lp-contact .lp-section__heading::before {
  top: -8px;
}
.lp-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
}
@media (min-width: 640px) {
  .lp-contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.lp-contact__org {
  font-weight: 700;
  font-size: 20px;
  margin: 4px 0 12px;
}
.lp-contact__tel {
  margin: 0 0 0;
}
.lp-contact__tel img {
  width: 306px;
  margin-left: -2px;
}
.lp-contact__telIcon {
  width: 28px;
  height: auto;
}
.lp-contact__telLink {
  font-weight: 700;
  font-size: 32px;
}
@media (min-width: 640px) {
  .lp-contact__telLink {
    font-size: 40px;
  }
}
.lp-contact__hours {
  margin: 8px 0 10px;
  color: var(--color-text2);
  font-weight: 700;
}
.lp-contact__notes {
  margin: 0;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.5;
}
.lp-contact__notes li {
  margin: 0;
  list-style: none;
  position: relative;
}
.lp-contact__lead {
  margin: 0;
  padding-left: 18px;
  padding-top: 7px;
  position: relative;
  font-weight: 700;
}
.lp-contact__lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 45px;
  background: var(--color-main);
}
.lp-contact__sns {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
  padding-left: 20px;
}
.lp-contact__snsLink img {
  width: 82px;
  height: auto;
  display: block;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-contact__snsLink img {
    width: 84px;
  }
}
.lp-contact__copy {
  margin: 52px 0 0;
  text-align: right;
  color: var(--color-text2);
  font-size: 12px;
}
@media (max-width: calc(640px - 0.02px)) {
  .lp-contact__copy {
    text-align: left;
    margin-top: 10px;
  }
}
/*# sourceMappingURL=main.css.map */