/*==================================================
sp pc
==================================================*/
@media all and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/*--------------------------------------
l-header
----------------------------------------*/
.l-header {
  position: fixed;
}
@media all and (min-width: 1081px) {
  .l-header {
    transition: 0.3s;
  }
  .l-header:not(.is-scroll) {
    opacity: 0;
    visibility: hidden;
  }
}

/*--------------------
top-mv
--------------------*/
.top-mv {
  height: 62rem;
  position: relative;
}
@media all and (max-width: 768px) {
  .top-mv {
    height: 54rem;
  }
}
.top-mv__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem 0 1rem;
}
@media all and (max-width: 1080px) {
  .top-mv__header {
    display: none;
  }
}
.top-mv__header-logo {
  background-color: #fff;
  display: grid;
  height: 9rem;
  padding: 1rem 1.8rem;
  place-content: center;
  width: 56rem;
}
@media all and (max-width: 1365px) {
  .top-mv__header-logo {
    width: 49rem;
  }
}
@media all and (max-width: 1280px) {
  .top-mv__header-logo {
    height: 6rem;
    padding: 1rem;
    width: 29rem;
  }
}
.top-mv__header-right {
  align-items: center;
  display: flex;
  gap: 1.6rem;
  margin-top: 1rem;
}
.top-mv__header-nav {
  background-color: #fff;
  border-radius: 0.8rem;
  border: 0.1rem solid #fff;
  display: flex;
  gap: 1.6rem;
  height: 4.8rem;
  overflow: hidden;
  padding-left: 1.6rem;
}
.top-mv__header-menus {
  align-items: center;
  display: flex;
  gap: 1.6rem;
}
.top-mv__header-menu {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  gap: 0.6rem;
}
.top-mv__header-btns {
  display: flex;
  gap: 0.1rem;
}
.top-mv__header-btn {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  gap: 0.6rem;
  height: 100%;
  justify-content: center;
  padding-right: 1.5rem;
  position: relative;
  width: 16rem;
}
.top-mv__header-btn::after {
  background: url(/assets/img/ico-arrow-white.svg) center/100% no-repeat;
  content: "";
  height: 1.2rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
}
.top-mv__header-btn.-find {
  background-color: var(--dark-color);
}
.top-mv__header-btn.-contact {
  background-color: var(--main-color);
}
.top-mv__header-sns {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.top-mv__header-sns-item {
  display: grid;
  place-content: center;
}
.top-mv__ttl {
  color: #fff;
  line-height: 1;
  padding-top: 10rem;
  text-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.16);
}
@media all and (max-width: 1080px) {
  .top-mv__ttl {
    padding-top: 15rem;
  }
}
@media all and (max-width: 768px) {
  .top-mv__ttl {
    padding-top: 22rem;
  }
}
.top-mv__ttl .m-inner {
  padding-right: 0;
}
@media all and (max-width: 768px) {
  .top-mv__ttl .m-inner {
    padding-left: 2.5rem;
  }
}
.top-mv__ttl-ja {
  font-size: 4rem;
}
@media all and (max-width: 768px) {
  .top-mv__ttl-ja {
    font-size: 2rem;
  }
}
.top-mv__ttl-en {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin: 0.5em 0 1.5em 0.15em;
}
@media all and (max-width: 768px) {
  .top-mv__ttl-en {
    font-size: 1.4rem;
  }
}
.top-mv__movie {
  background-color: var(--body-color);
  height: inherit;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.top-mv__movie.is-loaded iframe {
  opacity: 1;
  visibility: visible;
}
.top-mv__movie iframe {
  height: 100svh;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition-property: opacity, visibility;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
}
@media (min-aspect-ratio: 16/9) {
  .top-mv__movie iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .top-mv__movie iframe {
    width: 177.78vh;
  }
}

/*--------------------
top-intro
--------------------*/
.top-intro {
  margin-top: -9rem;
}
@media all and (max-width: 768px) {
  .top-intro {
    margin-top: 4rem;
  }
}
.top-intro__box {
  background-color: #fff;
  box-shadow: 0 0 1.6rem rgba(142, 126, 102, 0.3);
  padding: 3rem 4rem 4rem;
}
@media all and (max-width: 768px) {
  .top-intro__box {
    box-shadow: none;
    padding: 0;
  }
}
.top-intro__ttl {
  text-align: center;
  font-weight: var(--font-weight-base);
}
@media all and (max-width: 768px) {
  .top-intro__ttl {
    font-weight: var(--font-weight-bold);
  }
}
.top-intro__ttl-sub {
  color: var(--main-color);
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
}
@media all and (max-width: 768px) {
  .top-intro__ttl-sub {
    font-size: 1.4rem;
  }
}
.top-intro__ttl-main {
  display: block;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 768px) {
  .top-intro__ttl-main {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
}
.top-intro__ttl-marker {
  border-bottom: 0.1rem solid var(--main-color);
}
.top-intro__logo {
  margin-top: 2rem;
  text-align: center;
}
.top-intro__txt {
  letter-spacing: 0.1em;
  margin-top: 2rem;
}
@media all and (max-width: 768px) {
  .top-intro__txt {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
  }
}
.top-intro__shop {
  margin-top: 3.5rem;
  position: relative;
}
@media all and (max-width: 768px) {
  .top-intro__shop {
    margin-top: 2.5rem;
  }
}
.top-intro__shop-ttl {
  background-color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 3rem;
  position: absolute;
  top: -0.7rem;
  transform: translateX(-50%);
  z-index: 1;
}
.top-intro__shop-body {
  border-radius: 1.6rem;
  border: 0.1rem solid var(--gray-lt);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  justify-content: center;
  padding: 2rem 2rem 1.6rem;
}
.top-intro__shop-link {
  color: var(--main-color);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .top-intro__shop-link:hover {
    text-decoration: none;
  }
}

/*--------------------
p-find
--------------------*/
.p-find {
  margin-top: 0;
  padding-bottom: 0;
}
@media all and (max-width: 768px) {
  .p-find {
    margin-top: 4rem;
  }
}
.p-find--wrap {
  margin-block: 0;
  padding-block: 0;
}
.p-find__bg {
  height: calc(100% - 13rem);
  top: 9rem;
}
@media all and (max-width: 768px) {
  .p-find__bg {
    height: calc(100% - 6rem);
    top: 0;
  }
}

/*--------------------
p-event
--------------------*/
.p-event {
  margin-top: 6rem;
}

/*--------------------
menu
--------------------*/
.p-menu {
  margin-top: 19rem;
}
@media all and (max-width: 768px) {
  .p-menu {
    margin-top: 12rem;
  }
}
.p-menu .m-inner {
  margin-top: -15rem;
}
@media all and (max-width: 768px) {
  .p-menu .m-inner {
    margin-top: -12rem;
  }
}

/*--------------------
shop
--------------------*/
.p-shop {
  background-color: var(--gray-lt);
  overflow: visible;
  padding: 2rem 0 8rem;
}
@media all and (max-width: 768px) {
  .p-shop {
    padding: 4rem 0 6rem;
  }
}
.p-shop__inner {
  position: relative;
}
.p-shop__inner::before {
  background: url(/assets/img/shop-illust.svg) center/contain no-repeat;
  content: "";
  height: 8rem;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -5rem;
  transform: translateX(-50%);
  width: 17.3rem;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .p-shop__inner::before {
    height: 6rem;
    width: 13rem;
    top: -4rem;
  }
}
.p-shop__box {
  background-color: #fff;
  overflow: hidden;
  padding: 5.5rem 25rem 5.5rem 10rem;
}
@media all and (max-width: 1080px) {
  .p-shop__box {
    padding-inline: 5rem;
  }
}
@media all and (max-width: 768px) {
  .p-shop__box {
    padding: 4rem 2.5rem 3rem;
  }
}
.p-shop__box::before {
  content: none;
}
.p-shop__box::after {
  height: 69.3rem;
  top: -4rem;
  width: 72.4rem;
}
@media all and (max-width: 1080px) {
  .p-shop__box::after {
    content: none;
  }
}
.p-shop__ttl {
  padding: 0;
}
@media all and (max-width: 1080px) {
  .p-shop__ttl {
    text-align: center;
  }
}
.p-shop__ttl::before {
  content: none;
}

/*--------------------
top-about
--------------------*/
.top-about {
  display: grid;
  gap: 0.1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media all and (max-width: 768px) {
  .top-about {
    grid-template-columns: 1fr;
  }
}
.top-about__list {
  background: center/cover no-repeat;
  display: grid;
  grid-template-rows: 9rem auto;
  height: 28rem;
  justify-items: center;
  padding-bottom: 2rem;
  place-content: center;
  position: relative;
}
@media all and (max-width: 768px) {
  .top-about__list {
    grid-template-rows: 8rem auto;
    height: 22rem;
  }
}
.top-about__list::after {
  background-color: #fff;
  bottom: 6rem;
  content: "";
  display: block;
  height: 0.2rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 9rem;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .top-about__list::after {
    bottom: 4rem;
    width: 6rem;
  }
}
.top-about__list.-mobil {
  background-image: url(/assets/img/about-mobil-bg.jpg);
}
@media all and (max-width: 768px) {
  .top-about__list.-mobil .top-about__logo {
    width: 24rem;
  }
}
.top-about__list.-group {
  background-image: url(/assets/img/about-group-bg.jpg);
}
@media all and (max-width: 768px) {
  .top-about__list.-group .top-about__logo {
    width: 8rem;
  }
}
.top-about__ttl {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 2.8rem;
  gap: 1.4rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 768px) {
  .top-about__ttl {
    font-size: 2.4rem;
    gap: 0.8rem;
  }
}
.top-about__ttl.-window::after {
  background: url(/assets/img/ico-window-white.svg) center/100% no-repeat;
  content: "";
  display: block;
  height: 2.1rem;
  width: 2.1rem;
}
@media all and (max-width: 768px) {
  .top-about__ttl.-window::after {
    height: 1.9rem;
    width: 1.9rem;
  }
}
.top-about__logo {
  align-self: center;
}

/*--------------------
top-sns
--------------------*/
.top-sns__inner {
  position: relative;
  z-index: 0;
  min-height: 63rem;
  padding: 6rem 8rem 0 63.6rem;
}
@media all and (max-width: 1280px) {
  .top-sns__inner {
    padding-left: 51.6rem;
    padding-right: 4rem;
  }
}
@media all and (max-width: 1080px) {
  .top-sns__inner {
    padding: 6rem 4rem;
  }
}
@media all and (max-width: 768px) {
  .top-sns__inner {
    padding: 10rem var(--site-padding) 0;
  }
}
.top-sns__movie {
  border-radius: 0.8rem;
  box-shadow: 0 0 1.6rem rgba(142, 126, 102, 0.3);
  left: 15rem;
  max-width: 42.6rem;
  overflow: hidden;
  position: absolute;
  top: 16rem;
  width: 100%;
  z-index: 1;
}
@media all and (max-width: 1280px) {
  .top-sns__movie {
    left: 4rem;
  }
}
@media all and (max-width: 1080px) {
  .top-sns__movie {
    position: static;
    margin: 0 auto 6rem;
  }
}
@media all and (max-width: 768px) {
  .top-sns__movie {
    margin-bottom: 9rem;
    max-width: 26.7rem;
  }
}
.top-sns__ttl {
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  line-height: 2.14;
  margin-bottom: 2rem;
}
@media all and (max-width: 1080px) {
  .top-sns__ttl {
    letter-spacing: 0.1em;
    text-align: center;
  }
}
@media all and (max-width: 768px) {
  .top-sns__ttl {
    font-size: 2rem;
    text-align: left;
  }
}
.top-sns__read {
  letter-spacing: 0.05em;
}
.top-sns__lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.4rem;
}
@media all and (max-width: 1320px) {
  .top-sns__lists {
    gap: 2rem;
  }
}
@media all and (max-width: 768px) {
  .top-sns__lists {
    gap: 2rem 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-sns__item {
  display: block;
  text-align: center;
}
.top-sns__item-img {
  filter: drop-shadow(0 0 1.6rem rgba(142, 126, 102, 0.3));
}
.top-sns__item-ttl {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-top: 0.5em;
}
.top-sns__ann {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-top: 1em;
  text-align: right;
}
@media all and (max-width: 768px) {
  .top-sns__ann {
    margin-top: 3rem;
    text-align: center;
  }
}
.top-sns__bg {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media all and (max-width: 1080px) {
  .top-sns__bg {
    width: 24rem;
  }
}
@media all and (max-width: 768px) {
  .top-sns__bg {
    max-width: 39rem;
    width: 100%;
  }
}

/*--------------------
top-column
--------------------*/
.top-column {
  margin-top: 4rem;
}
@media all and (min-width: 769px) {
  .top-column {
    overflow: hidden;
  }
}
@media all and (max-width: 768px) {
  .top-column {
    margin-top: 8rem;
  }
}
.top-column__inner {
  position: relative;
  z-index: 0;
}
@media all and (max-width: 768px) {
  .top-column__inner {
    padding-inline: 0;
  }
}
.top-column__inner::after {
  background-color: var(--gray-lt);
  content: "";
  height: calc(100% - 5rem);
  left: 10rem;
  position: absolute;
  top: 2.5rem;
  width: calc(100% - 20rem);
  z-index: -1;
}
@media all and (max-width: 768px) {
  .top-column__inner::after {
    height: calc(100% - 4rem);
    left: 3rem;
    top: 2rem;
    width: calc(100% - 6rem);
  }
}

/*--------------------
contact
--------------------*/
.p-contact {
  margin-top: 10rem;
}