/* app/assets/stylesheets/application.css */
:root {
  --color-text: #403234;
  --color-surface: #ffffff;
  --color-button-bg: #d8d0c8;
  --color-accent: #C26800;
  --color-brand-yellow: #F4CD1F;
  --color-brand-red: #E13935;
  --color-brand-wine: #86263E;
  --header-height: 80px;
  --radius-sm: 6px;
  --size-square-pc: 50vw;
  --size-square-sp: 100vw;
  --size-half-square: 25vw;
  --space-line-height-pc: 25vw;
  --space-line-height-sp: 50vw;
  --instagram-gap: 32px;
  --instagram-embed-min-width: 326px;
  --footer-height: 200px;
  --footer-padding-bottom: 20px;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--color-text);
}
img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.about-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--color-text, #403234);
  background: var(--color-button-bg, #d8d0c8);
  border-radius: var(--radius-sm, 6px);
  transition: opacity 0.2s ease;
}
.about-button:hover {
  opacity: 0.8;
}
.link-icon {
  width: 0.9em;
  height: 0.9em;
  margin-left: 6px;
  vertical-align: -0.05em;
}
@media (max-width: 768px) {
  .about-button {
    padding: 8px 20px;
    font-size: 12px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* app/assets/stylesheets/layout/_header.css */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(5px);
  z-index: 1000;
  transition: transform 0.25s ease;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height, 80px);
}
.logo img {
  display: block;
  height: var(--header-height, 80px);
  width: auto;
}
.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 24px;
}
.nav {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav a {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text, #403234);
}
.nav a.active {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1;
  background:
    linear-gradient(
      90deg,
      var(--color-brand-yellow, #F4CD1F) 0%,
      var(--color-brand-red, #E13935) 50%,
      var(--color-brand-wine, #86263E) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.divider {
  width: 1px;
  height: 30px;
  background-color: var(--color-text, #403234);
  margin: 0 12px;
}
.hamburger {
  display: none;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-left: auto;
    margin-right: 18px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .hamburger-icon {
    width: 44px;
    height: 44px;
    color: var(--color-text, #403234);
  }
  .icon-close {
    display: none;
  }
  .site-header.is-menu-open .icon-menu {
    display: none;
  }
  .site-header.is-menu-open .icon-close {
    display: block;
  }
  .nav-wrapper {
    position: fixed;
    top: var(--header-height, 80px);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-height, 80px));
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-wrapper.is-open {
    transform: translateX(0);
  }
  .nav {
    flex-direction: column;
    gap: 32px;
    padding-top: var(--header-height, 80px);
  }
  .nav a {
    font-size: 24px;
  }
  .divider {
    display: none;
  }
}

/* app/assets/stylesheets/layout/_footer.css */
.site-footer {
  height: var(--footer-height, 200px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding-bottom: var(--footer-padding-bottom, 20px);
}
.footer-text {
  margin: 0;
  font-size: 20px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-privacy {
  font-size: 12px;
  color: var(--color-text, #403234);
  text-decoration: none;
  opacity: 0.6;
}
.footer-privacy:hover {
  opacity: 1;
}

/* app/assets/stylesheets/components/_about_block.css */
.home-about {
  width: 100%;
  background: var(--color-surface, #ffffff);
}
.home-about__inner {
  display: flex;
  align-items: center;
}
.home-about__image {
  width: var(--size-square-pc, 50vw);
  height: var(--size-square-pc, 50vw);
  overflow: hidden;
}
.home-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-about__content {
  width: var(--size-square-pc, 50vw);
  height: var(--size-square-pc, 50vw);
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 6cqw, 48px);
  text-align: center;
  padding: clamp(20px, 8cqw, 40px);
  box-sizing: border-box;
  container-type: inline-size;
}
.home-about__text {
  margin: 0;
  font-size: clamp(12px, 4.8cqw, 24px);
  line-height: 1.7;
  letter-spacing: clamp(0.8px, 0.35cqw, 2px);
  color: var(--color-text, #403234);
  overflow-wrap: anywhere;
}
@media (max-width: 768px) {
  .home-about__inner {
    flex-direction: column;
  }
  .home-about__image {
    width: 100%;
    height: var(--size-square-sp, 100vw);
  }
  .home-about__image img {
    height: 100%;
  }
  .home-about__content {
    width: 100%;
    height: var(--size-square-sp, 100vw);
  }
}

/* app/assets/stylesheets/components/_about_section.css */
.about-sections {
  width: 100%;
  margin-top: var(--header-height, 80px);
}
.about-block {
  display: flex;
  width: 100%;
}
.about-block__image,
.about-block__content {
  width: 50%;
  aspect-ratio: 1 / 1;
}
.about-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  box-sizing: border-box;
  container-type: inline-size;
}
.about-block__content p {
  font-size: clamp(12px, 3.3cqw, 24px);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.about-block.is-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .about-block,
  .about-block.is-reverse {
    flex-direction: column;
  }
  .about-block__image,
  .about-block__content {
    width: 100%;
    aspect-ratio: 1 / 1;
  }
  .about-block__content {
    padding: clamp(20px, 6vw, 32px);
    text-align: center;
  }
}

/* app/assets/stylesheets/components/_access.css */
.access {
  width: 100%;
}
.access__map {
  width: 100%;
  height: var(--size-square-pc, 50vw);
}
.access__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 10px 14px;
  box-sizing: border-box;
  border-top: 1px solid rgba(64, 50, 52, 0.12);
  background: var(--color-surface, #fff);
  color: var(--color-text, #403234);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}
.access__caption a {
  flex: none;
  color: inherit;
}
@media (max-width: 768px) {
  .access__map {
    height: var(--size-square-sp, 100vw);
  }
  .access__caption {
    display: block;
    padding: 8px 10px;
    font-size: 10px;
  }
  .access__caption a {
    display: block;
    margin-top: 2px;
  }
}

/* app/assets/stylesheets/components/_contact_section.css */
.contact-sections {
  max-width: 600px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  line-height: 1.8;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-sections h1 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.contact-sections .contact-notes {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.contact-sections .contact-notes p {
  text-align: left;
  margin: 0 0 12px;
  font-size: 14px;
}
.contact-sections .about-button {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero--contact {
    height: 40vh;
  }
  .contact-sections {
    font-size: 12px;
    padding: 48px 20px 64px;
  }
  .contact-sections h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

/* app/assets/stylesheets/components/_event.css */
.event-section {
  width: 100%;
  height: var(--size-square-pc, 50vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-sizing: border-box;
  background: var(--color-surface, #ffffff);
}
.event-section[hidden] {
  display: none;
}
.event-section__intro {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.event-section__label {
  font-size: clamp(12px, 1.2vw, 20px);
  letter-spacing: 0.12em;
  opacity: 0.6;
  margin: 0 0 8px;
}
.event-section__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}
.event-section__text {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.9;
  margin: 0 0 32px;
}
.event-section__list {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}
.event-page {
  width: 100%;
  min-height: calc(100vh + var(--footer-height, 200px));
  margin-top: var(--header-height, 80px);
  padding: clamp(40px, 6vw, 96px) clamp(20px, 5vw, 80px);
  box-sizing: border-box;
}
.event-page[hidden] {
  display: none;
}
.event-page__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 40px;
}
.event-page__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, 4vw, 64px);
}
.event-page__list .event-card {
  height: clamp(140px, 16vw, 240px);
}
.event-card {
  display: flex;
  min-height: 0;
  gap: clamp(10px, 1.2vw, 20px);
  padding: clamp(4px, 0.8vw, 12px) 0;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(64, 50, 52, 0.12);
  overflow: hidden;
}
.event-section__list .event-card:first-child,
.event-page__list .event-card:nth-child(-n+2) {
  border-top: none;
}
.event-card__image-wrap {
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-sm, 6px);
  background: var(--color-accent, #C26800);
}
.event-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.event-card:hover .event-card__image {
  transform: scale(1.05);
}
.event-card__body {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}
.event-card__date {
  font-size: clamp(12px, 1vw, 15px);
  opacity: 0.6;
  margin: 0;
}
.event-card__title {
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card__content {
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1;
  margin: 20px 0 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .event-section {
    height: auto;
    grid-template-columns: 1fr;
  }
  .event-section__intro {
    height: var(--size-square-sp, 100vw);
  }
  .event-section__list {
    height: var(--size-square-sp, 100vw);
    padding: 0 20px;
    box-sizing: border-box;
  }
  .event-card__title {
    font-size: 14px;
  }
  .event-card__content {
    font-size: 12px;
  }
  .event-page__list {
    grid-template-columns: 1fr;
  }
  .event-page__list .event-card:nth-child(2) {
    border-top: 1px solid rgba(64, 50, 52, 0.12);
  }
}

/* app/assets/stylesheets/components/_hero.css */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero--slider {
  isolation: isolate;
  height: 56.25vw;
}
.hero--slider .hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero--slider .hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hero {
    height: var(--size-square-sp, 100vw);
  }
  .hero--slider {
    height: var(--size-square-sp, 100vw);
  }
  .hero--slider .hero__slide.hero__slide--left-focus {
    object-position: left center;
  }
}
.hero--subpage {
  height: 60vh;
}
.hero--subpage img {
  filter: blur(1px);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero--subpage {
    height: var(--size-square-sp, 100vw);
  }
}
.hero--subpage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
}

/* app/assets/stylesheets/components/_hero_copy.css */
.hero-copy {
  width: 100%;
  height: var(--size-square-pc, 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-surface, #ffffff);
  box-sizing: border-box;
}
.hero-copy__brand {
  display: block;
  font-size: clamp(11px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: 0.2em;
  opacity: 0.6;
}
.hero-copy h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--color-text, #403234);
}
@media (max-width: 768px) {
  .hero-copy {
    height: var(--size-square-sp, 100vw);
  }
}

/* app/assets/stylesheets/components/_instagram_section.css */
.instagram-feed {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  gap: 0;
}
.instagram-feed[hidden] {
  display: none;
}
.instagram-feed__link {
  display: block;
  flex: 1;
  text-decoration: none;
  transition: filter 0.5s ease;
}
.instagram-feed__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.instagram-feed__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.instagram-feed__link:hover .instagram-feed__image {
  transform: scale(1.05);
}
.instagram-feed__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top right,
      rgba(0, 0, 0, 0.8) 0%,
      transparent 90%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.instagram-feed__link:hover .instagram-feed__overlay {
  opacity: 1;
}
.instagram-feed__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 1.8rem;
  height: 1.8rem;
  color: #fff;
}
.instagram-feed__label {
  color: #fff;
  font-size: clamp(12px, 1.2vw, 20px);
  letter-spacing: 0.12em;
  line-height: 1.5;
  white-space: pre-wrap;
}
.instagram-feed__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  flex: 1;
}
.instagram-feed__grid-item {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  transition: filter 0.5s ease;
}
.instagram-feed__grid-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 1.4rem;
  height: 1.4rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.instagram-feed__grid-item:hover .instagram-feed__grid-icon {
  opacity: 1;
}
.instagram-feed:hover .instagram-feed__link {
  filter: brightness(0.7);
}
.instagram-feed:hover .instagram-feed__link:hover {
  filter: brightness(1);
}
.instagram-feed:hover .instagram-feed__grid-item {
  filter: brightness(0.7);
}
.instagram-feed:hover .instagram-feed__grid-item:hover {
  filter: brightness(1);
}
.instagram-feed__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.instagram-feed__grid-item:hover img {
  transform: scale(1.05);
}
@media (hover: none) {
  .instagram-feed__link.is-active .instagram-feed__overlay {
    opacity: 1;
  }
  .instagram-feed__grid-item.is-active .instagram-feed__grid-icon {
    opacity: 1;
  }
  .instagram-feed.has-active .instagram-feed__link:not(.is-active) {
    filter: brightness(0.7);
  }
  .instagram-feed.has-active .instagram-feed__grid-item:not(.is-active) {
    filter: brightness(0.7);
  }
}
@media (max-width: 768px) {
  .instagram-feed {
    flex-direction: column;
  }
  .instagram-feed__link,
  .instagram-feed__grid {
    flex: none;
    width: 100%;
  }
}

/* app/assets/stylesheets/components/_my_business.css */
.my-business {
  width: 100%;
}
.service-rows {
  width: 100%;
}
.service-row {
  display: flex;
  width: 100%;
}
.service-row--reverse {
  flex-direction: row-reverse;
}
.service-row__image {
  position: relative;
  flex: 0 0 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.service-row__image .business-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-row:hover .service-row__image .business-card {
  transform: scale(1.06);
}
.service-row__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55) 0%,
      transparent 55%);
}
.business-card-label {
  position: absolute;
  bottom: clamp(12px, 2vw, 28px);
  left: clamp(12px, 2vw, 28px);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 20px);
  color: #fff;
}
.business-card-label__left {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.business-card-label__service {
  font-size: clamp(11px, 1.6vw, 24px);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.business-card-label__number {
  font-size: clamp(32px, 5.5vw, 80px);
  font-weight: 700;
}
.business-card-label__divider {
  width: 1px;
  height: clamp(44px, 7vw, 96px);
  background: #fff;
  opacity: 0.8;
}
.business-card-label__title {
  font-size: clamp(16px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin: 0;
}
.service-row__content {
  flex: 0 0 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px clamp(40px, 7vw, 120px);
  box-sizing: border-box;
  background: var(--color-surface, #fff);
  overflow: hidden;
}
.service-row__label {
  font-size: clamp(12px, 1.2vw, 20px);
  letter-spacing: 0.12em;
  opacity: 0.6;
  margin: 0 0 16px;
}
.service-row__content p {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.9;
  margin: 0 0 16px;
  text-align: left;
}
.service-row__note {
  font-size: clamp(11px, 1vw, 16px);
  opacity: 0.7;
  line-height: 1.8;
  margin: 0 0 12px !important;
}
@media (max-width: 768px) {
  .service-row,
  .service-row--reverse {
    flex-direction: column;
  }
  .service-row__image {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
  }
  .service-row__content {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 28px 20px;
  }
  .service-row__label {
    margin-bottom: 8px;
  }
  .service-row__content p {
    font-size: 13px;
  }
  .business-card-label {
    bottom: clamp(12px, 4vw, 24px);
    left: clamp(12px, 4vw, 24px);
    gap: clamp(8px, 2.5vw, 16px);
  }
  .business-card-label__service {
    font-size: clamp(13px, 4vw, 20px);
  }
  .business-card-label__number {
    font-size: clamp(40px, 14vw, 72px);
  }
  .business-card-label__divider {
    height: clamp(52px, 16vw, 80px);
  }
  .business-card-label__title {
    font-size: clamp(20px, 6vw, 36px);
  }
}

/* app/assets/stylesheets/components/_privacy_section.css */
.privacy-sections {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  line-height: 1.8;
}
.privacy-sections h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.privacy-date {
  font-size: 13px;
  color: var(--color-text, #403234);
  opacity: 0.6;
  margin: 0 0 16px;
}
.privacy-intro {
  font-size: 14px;
  margin: 0 0 48px;
}
.privacy-block {
  margin-bottom: 40px;
}
.privacy-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-text, #403234);
}
.privacy-block p,
.privacy-block ul {
  font-size: 14px;
  margin: 0;
}
.privacy-block ul {
  padding-left: 1.5em;
}
.privacy-block li {
  margin-bottom: 4px;
}
.privacy-contact {
  font-style: normal;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 768px) {
  .privacy-sections {
    padding: 48px 20px 64px;
  }
  .privacy-sections h1 {
    font-size: 22px;
  }
}

/* app/assets/stylesheets/components/_space.css */
.space {
  width: 100%;
  height: var(--size-square-pc, 50vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface, #ffffff);
}
.space p {
  position: relative;
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-text, #403234);
  text-align: center;
}
.space p::after {
  content: "";
  display: block;
  width: 3px;
  height: var(--space-line-height-pc, 25vw);
  margin: 10px auto 0;
  background:
    linear-gradient(
      to bottom,
      var(--color-brand-yellow, #F4CD1F) 0%,
      var(--color-brand-red, #E13935) 50%,
      var(--color-brand-wine, #86263E) 100%);
  transform-origin: top;
  animation: space-line-grow linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 60%;
}
@keyframes space-line-grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.space p:empty {
  font-size: 0;
}
.space p:empty::after {
  margin-top: 0;
}
@media (max-width: 768px) {
  .space {
    height: var(--size-square-sp, 100vw);
  }
  .space p::after {
    height: var(--space-line-height-sp, 50vw);
  }
}

/* app/assets/stylesheets/components/_splash.css */
.splash-skip #splash {
  display: none;
}
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: splash-overlay 3s ease forwards;
}
.splash__icon {
  display: block;
  width: clamp(100px, 22vw, 200px);
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  animation: splash-icon 3s ease both;
}
@keyframes splash-icon {
  0% {
    opacity: 0;
    transform: scale(1) rotate(0deg);
  }
  15% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: scale(2.2) rotate(360deg);
  }
}
@keyframes splash-overlay {
  0%, 60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* app/frontend/site.css */
/*# sourceMappingURL=/assets/site-2f0ca779.css.map */
