/* --------------------------------------------------- */
/* front-page: hero */
/* --------------------------------------------------- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  color: var(--color-foreground);
  background: var(--color-base);
}
.hero__wrapper {
  flex: 1 1 auto;
  min-width: 0;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100dvh;
}
.hero__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.75rem;
  padding: 0 2.5rem;
  border-bottom: 1px solid var(--color-border);
}
.hero__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 15rem;
  max-height: 24vh;
  border-bottom: 1px solid var(--color-border);
}
.hero__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-foreground);
}
.hero__link:not(:last-child) {
  border-right: 1px solid var(--color-border);
}
.hero__link-icon {
  display: none;
}
.hero__link-en {
  font-family: var(--font-figtree);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.12em;
}
.hero__link-ja {
  font-family: var(--font-koburina);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1;
}
.hero__catchcopy {
  width: 100%;
  position: absolute;
  top: 100dvh;
  left: 0;
  transform: translateY(-100%);
  padding-bottom: 3rem;
  z-index: 1;
  mix-blend-mode: difference;
  -webkit-mix-blend-mode: difference;
  -moz-mix-blend-mode: difference;
  -ms-mix-blend-mode: difference;
  -o-mix-blend-mode: difference;
}
.hero__catchcopy-img {
  width: 91.38%;
  height: auto;
  margin: 0 auto;
}

.concept {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4rem;
  padding-left: 15rem;
  margin: 10rem 0;
}
.concept__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem;
}
.concept__desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mainvisual {
  flex: 0 0 37.5%;
}
.mainvisual__img {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
}
.mainvisual__img-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.mainvisual__img-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.mainvisual__img-pic--1 {
  z-index: 1;
}
.mainvisual__img-pic--2 {
  z-index: 2;
  opacity: 0;
}

@media screen and (max-width: 879px) {
  .hero {
    flex-direction: column;
  }
  .hero__header {
    display: none;
  }
  .hero__wrapper {
    order: 3;
    margin-top: 2rem;
  }
  .hero__nav {
    height: auto;
    max-height: unset;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--color-border);
  }
  .hero__link {
    padding: 1.5rem;
    align-items: flex-start;
    position: relative;
  }
  .hero__link:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }
  .hero__link-icon {
    display: block;
    width: 1.25rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
  }
  .hero__catchcopy {
    position: static;
    padding: 0 0.75rem;
    transform: none;
    order: 1;
    margin-top: 6.5rem;
  }
  .hero__catchcopy-img {
    width: 100%;
  }
  .hero__inner {
    height: auto;
  }
  .mainvisual {
    width: 100%;
    order: 2;
    margin-top: 2rem;
    padding: 0 0.75rem;
    flex: unset;
  }
  .mainvisual__img {
    position: static;
    aspect-ratio: 3/4;
    height: auto;
  }
  .mainvisual__img-pic {
    border-radius: 2.5rem 0;
  }
  .mainvisual__img-pic--2 {
    animation: fadeIn 12s ease-out infinite;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    75% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .concept {
    gap: 2rem;
    padding: 0 1.25rem;
    margin-top: 5.5rem;
    margin-bottom: 0;
  }
  .concept__title {
    font-size: 2rem;
  }
  .concept__content .h2_40_lh150 {
    font-size: 2.25rem;
  }
}
/* --------------------------------------------------- */
/* front-page: reasons */
/* --------------------------------------------------- */
.reasons {
  margin-top: 10rem;
  width: 100%;
}
.reasons__loop {
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}
.reasons__loop-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex: none;
  padding-left: 4rem;
  animation: scroll 16s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.reasons__loop-title {
  width: 26.25rem;
  height: auto;
}
.reasons__loop-img {
  width: 7.5rem;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 1.5rem 0 1.5rem 0;
}
.reasons__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 4rem;
  padding: 0 7.5rem 8rem;
}
.reasons__content {
  width: 52.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 0.625rem;
}
.reasons__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.reasons__number {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.reasons__number-img {
  display: block;
  height: 1.25rem;
  width: auto;
}
.reasons__number-line {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--color-foreground);
}
.reasons__desc {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 2.5rem;
}
.reasons__desc-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.reasons__desc-box p {
  margin: 0;
}

@media screen and (max-width: 879px) {
  .reasons {
    margin-top: 6.25rem;
  }
  .reasons__inner {
    display: block;
    margin-top: 2rem;
    padding: 0 1.25rem 3.5rem;
  }
  .reasons__loop-container {
    gap: 1.5rem;
    padding-left: 1.5rem;
  }
  .reasons__loop-title {
    width: 18rem;
  }
  .reasons__loop-img {
    width: 5rem;
    border-radius: 1rem 0;
  }
  .reasons__title {
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
  }
  .reasons__content {
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    gap: 3rem;
  }
  .reasons__desc {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 86%;
  }
  .reasons__container {
    gap: 0rem;
    flex-direction: row;
    justify-content: space-between;
  }
  .reasons__number {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
    padding-top: 0.45rem;
    padding-bottom: 0.5rem;
    flex: none;
  }
  .reasons__number-img {
    width: auto;
    height: 1.25rem;
  }
  .reasons__number-line {
    width: 1px;
    height: auto;
  }
  .reasons__subtitle {
    font-size: 1.5rem;
  }
}
/* --------------------------------------------------- */
/* front-page: cases */
/* --------------------------------------------------- */
.cases {
  background-color: var(--color-white);
}
.cases__inner {
  width: 100%;
  padding: 10rem 7.5rem 8rem;
}
.cases__images {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.cases__image {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 2.5rem 0 2.5rem 0;
}

@media screen and (max-width: 879px) {
  .cases__inner {
    padding: 5rem 1.25rem 4rem;
  }
  .cases__images {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .cases__image {
    border-radius: 1.5rem 0 1.5rem 0;
  }
}
/* --------------------------------------------------- */
/* front-page: menu */
/* --------------------------------------------------- */
.menu__inner {
  width: 100%;
  padding: 10rem 7.5rem 8rem;
}
.menu__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 6.25rem;
  margin-top: 5rem;
}
.menu__item {
  width: 34.375rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.menu__item-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.menu__heading {
  border-bottom: 1px solid var(--color-foreground);
  padding-bottom: 1.125rem;
}
.menu__heading-arrow {
  display: none;
}
.menu__box {
  display: flex;
  gap: 1.25rem;
}
.menu__box-heading {
  width: 10rem;
  border-right: 1px solid var(--color-foreground);
  padding-right: 1.25rem;
  box-sizing: content-box;
}
.menu__list {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}
.menu__list-item, .menu__extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.menu__price {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  text-align: right;
  font-family: var(--font-zen-mincho);
  font-weight: 500;
}
.menu__attention {
  background: var(--color-white);
  border-radius: 2.5rem 0 2.5rem 0;
  padding: 1.25rem 2rem;
  height: fit-content;
  margin: auto 0;
}

@media screen and (max-width: 879px) {
  .menu__inner {
    padding: 5rem 1.25rem 4rem;
  }
  .menu__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }
  .menu__item {
    width: 100%;
    max-width: 100%;
    gap: 0;
  }
  .menu__item-caption {
    line-height: 1.75;
  }
  .menu__item-wrapper {
    display: none;
    margin-top: 1.75rem;
  }
  .menu__item-wrapper.is-open {
    display: block;
  }
  .menu__item-inner {
    gap: 1.75rem;
  }
  .menu__heading {
    position: relative;
    padding-bottom: 0.75rem;
  }
  .menu__heading h3 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .menu__heading-arrow {
    display: block;
    width: 1.5rem;
    height: auto;
    position: absolute;
    top: calc(50% - 0.375rem);
    right: 0;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.7s ease-in-out;
  }
  .menu__heading.is-open .menu__heading-arrow {
    transform: translateY(-50%) rotate(180deg);
  }
  .menu__box {
    gap: 1rem;
  }
  .menu__box-heading {
    width: 5.5rem;
    padding-right: 1rem;
  }
  .menu__box-heading h4 {
    font-size: 1rem;
    line-height: 1.5;
    margin: -0.25rem 0;
  }
  .menu__list-item, .menu__extra {
    gap: 0.75rem;
  }
  .menu__attention {
    padding: 1rem 1.25rem;
    border-radius: 1.5rem 0 1.5rem 0;
  }
  .menu__attention-text {
    font-size: 0.75rem;
  }
}
/* --------------------------------------------------- */
/* front-page: flow */
/* --------------------------------------------------- */
.flow {
  background-color: var(--color-white);
}
.flow__inner {
  width: 100%;
  padding: 10rem 17.5rem 8rem;
}
.flow__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
}
.flow__container {
  width: 100%;
  outline: 1px solid var(--color-foreground);
  outline-offset: -1px;
  border-radius: 2.5rem 0 2.5rem 0;
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.flow__container:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 2.5rem;
  background: var(--color-foreground);
}
.flow__number {
  width: auto;
  height: 2.5rem;
  object-fit: cover;
  object-position: center;
}
.flow__desc {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media screen and (max-width: 879px) {
  .flow__inner {
    padding: 5rem 1.25rem 4rem;
  }
  .flow__content {
    margin-top: 3rem;
    gap: 1.5rem;
  }
  .flow__container {
    border-radius: 1.5rem 0 1.5rem 0;
    padding: 1.5rem 1.5rem 1.125rem;
  }
  .flow__container:not(:last-of-type)::after {
    height: 1.5rem;
  }
  .flow__number {
    width: auto;
    height: 1.5rem;
    flex: none;
  }
  .flow__desc {
    width: 86%;
    gap: 0.75rem;
  }
  .flow__desc .h3_24_lh100 {
    font-size: 1.25rem;
  }
  .flow__desc .p_16_lh200 {
    line-height: 1.75;
  }
}
/* --------------------------------------------------- */
/* front-page: profile */
/* --------------------------------------------------- */
.profile__inner {
  width: 100%;
  padding: 10rem 12.5rem 0rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.profile__content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}
.profile__container {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.profile__name {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.profile__desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.profile__img {
  aspect-ratio: 3/4;
  width: 22.5rem;
  height: auto;
  border-radius: 2.5rem 0;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 879px) {
  .profile__inner {
    padding: 5rem 1.25rem 0rem;
    gap: 2.5rem;
  }
  .profile__content {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
  .profile__name {
    gap: 1rem;
  }
  .profile__name .h2_40_lh100 {
    font-size: 2.25rem;
  }
  .profile__name .h2_20_lh100 {
    font-size: 1rem;
  }
  .profile__img {
    width: 72%;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 1.5rem 0;
    margin: 0 auto;
  }
  .profile__container {
    gap: 1.75rem;
  }
}
/* --------------------------------------------------- */
/* front-page: instagram */
/* --------------------------------------------------- */
.instagram {
  margin-top: 10rem;
}
.instagram .section_title_lg {
  flex-direction: row;
  align-items: flex-end;
  padding-left: 7.5rem;
}
.instagram .section_title_lg .h2_20_lh100 {
  text-align: left;
  padding-bottom: 0.75rem;
}
.instagram__swiper {
  margin-top: 5rem;
  padding: 0 7.5rem;
}
.instagram__swiper .swiper-slide {
  width: 22.5rem;
}
.instagram__swiper .dummy_slide {
  aspect-ratio: 4/5;
  width: 100%;
  height: auto;
  background-color: #d9d9d9;
  border-radius: 2.5rem 0 2.5rem 0;
}
.instagram__link {
  width: 100%;
  height: auto;
  display: block;
}
.instagram__img {
  aspect-ratio: 4/5;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 2.5rem 0 2.5rem 0;
}
.instagram__wrapper {
  width: 100%;
  padding: 0 7.5rem;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.instagram__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.instagram__nav .swiper-button-prev,
.instagram__nav .swiper-button-next {
  position: static;
  margin: 0;
  padding: 0;
  width: 4rem;
  height: 4rem;
  flex: none;
  outline: 1px solid var(--color-foreground);
  outline-offset: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram__nav .swiper-button-prev::after,
.instagram__nav .swiper-button-next::after {
  content: none;
}
.instagram__nav .swiper-scrollbar {
  position: static;
  width: 10rem;
  height: 1px;
  background: #d9d9d9;
  border-radius: 0;
  flex: none;
}
.instagram__nav .swiper-scrollbar-drag {
  background: var(--color-foreground);
  border-radius: 0;
}
.instagram__nav-arrow {
  width: 1.75rem;
  height: auto;
}

@media screen and (max-width: 879px) {
  .instagram {
    margin-top: 6.25rem;
  }
  .instagram .section_title_lg {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .instagram .section_title_lg .h2_20_lh100 {
    padding-bottom: 0;
  }
  .instagram__swiper {
    margin-top: 3rem;
    padding: 0 1.25rem;
  }
  .instagram__swiper .swiper-slide {
    width: 75vw;
    max-width: 20rem;
  }
  .instagram__wrapper {
    padding: 0 1.25rem;
    margin-top: 2rem;
    flex-direction: row-reverse;
  }
  .instagram__wrapper .page_link {
    flex-direction: row-reverse;
  }
  .instagram__nav {
    gap: 0.75rem;
    justify-content: center;
  }
  .instagram__nav .swiper-button-prev,
  .instagram__nav .swiper-button-next {
    width: 3.5rem;
    height: 3.5rem;
  }
  .instagram__nav .swiper-scrollbar {
    display: none;
  }
  .instagram__nav-arrow {
    width: 1.25rem;
    height: auto;
  }
}
/* --------------------------------------------------- */
/* front-page: blog */
/* --------------------------------------------------- */
.blog {
  margin-top: 11.25rem;
}

@media screen and (max-width: 879px) {
  .blog {
    margin-top: 6.25rem;
  }
}
/* --------------------------------------------------- */
/* front-page: floating */
/* --------------------------------------------------- */
.floating {
  position: fixed;
  z-index: 98;
  bottom: 2.5rem;
  right: 2.5rem;
  background-color: var(--color-line);
  border-radius: 1.25rem 0;
  display: none;
}
.floating__inner {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 1.25rem 1rem 1.75rem;
}
.floating__text {
  height: auto;
  font-family: var(--font-zen-mincho);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-white);
  align-content: center;
  border-right: 1px solid var(--color-white);
  padding-right: 1.75rem;
}
.floating__icon {
  width: 3rem;
  height: auto;
}

@media screen and (max-width: 879px) {
  .floating {
    bottom: 1rem;
    right: 1rem;
  }
  .floating__inner {
    gap: 1rem;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
  }
  .floating__text {
    font-size: 1rem;
    padding-right: 1.5rem;
  }
  .floating__icon {
    width: 2.5rem;
  }
}

/*# sourceMappingURL=top.css.map */
