@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  display: block;
  font-family: var(--font-ttl);
  font-size: max(28px, 5.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  margin-bottom: -0.5rem;
}

.system .common__ttl span {
  margin-bottom: 1rem;
}

.insta .common__ttl span {
  margin-bottom: 1.5rem;
}

.store .common__ttl span {
  width: max(190px, 27.6rem);
  margin-bottom: -2rem;
}

.common__btn {
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  color: var(--pink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.common__btn--wt a {
  color: var(--white);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(40px, 6rem);
  height: max(27.3px, 4.1rem);
}

.common__btn--wt a::after {
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(80rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(35, 24, 21, 1));
  width: 100%;
  height: 19rem;
  opacity: 0.5;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__logo {
  display: block;
  width: 50rem;
  filter: drop-shadow(0 0 1rem var(--black));
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(200px, 32rem);
  }
}

.hero__bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  will-change: transform;
}

@keyframes mvZoomOut {
  0% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

/* 「引いていく」演出：アクティブなスライドだけズームアウト */
.hero__bg img {
  animation: mvZoomOut 6s linear both;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(10px, 1.2rem);
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 14rem;
  bottom: 2.4rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 13rem 0 10rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 7rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 12rem 0;
}

@media (max-width: 767px) {
  .concept {
    background: url("../img/concept_bg.jpg") no-repeat center right 30% / cover;
  }
}

.concept__contents {
  width: 120rem;
  display: flex;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 95%;
    flex-direction: column-reverse;
  }
}

.concept__contents::before,
.concept__contents::after {
  content: "";
  background: url("../img/concept_frame.png") no-repeat center top / cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.concept__contents::after {
  transform: scale(1, -1);
  top: auto;
  bottom: 0;
}

.concept__txt-wrapper {
  width: 90%;
  padding: 15.5rem 0 12.5rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: 69rem;
  }
}

.concept__ttl {
  font-family: var(--font-ttl);
  font-size: 9rem;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 4rem 0 7.5rem;
}

.concept__img {
  width: 36rem;
  position: absolute;
  right: -6.5rem;
  bottom: -5.5rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept__img {
    width: 32rem;
    right: 0;
    bottom: -8rem;
  }
}

/*============================
	system
============================*/
.system {
  padding: 13rem 0 11.5rem;
}

.system__contents {
  width: 110rem;
  display: flex;
  gap: 8rem 10rem;
  padding-left: 3rem;
  margin: 10.5rem auto 0;
}

@media (max-width: 767px) {
  .system__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.system__txt-wrapper {
  width: 100%;
}

.system__list {
  width: 100%;
}

.system__list dt {
  background-color: var(--light-pink);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.system__list dd {
  letter-spacing: 0.1em;
}

.system__list dd:not(:last-of-type) {
  margin-bottom: 3rem;
}

.system__list dd small {
  display: block;
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.system__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 4.5rem;
}

.system__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .system__img {
    width: 100%;
  }
}

.system__img::before {
  content: "";
  background-color: var(--light-pink);
  width: 43rem;
  height: calc(100% + 13rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: -17rem;
  pointer-events: none;
  z-index: -1;
}

/*============================
	area
============================*/
.area {
  background: var(--bg-2);
  color: var(--white);
  padding: 9rem 0;
}

.area__list {
  width: max(550px, 80rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 6rem auto 5.5rem;
}

@media (max-width: 767px) {
  .area__list {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }
}

.area__list > li {
  border-top: solid 1px var(--white);
  border-bottom: solid 1px var(--white);
  border-left: solid 1px var(--white);
}

.area__list > li:last-of-type {
  border-right: solid 1px var(--white);
}

@media (max-width: 767px) {
  .area__list > li {
    border-top: solid 1px var(--white);
    border-left: solid 1px var(--white);

    border-bottom: none;
  }

  .area__list > li:nth-of-type(2),
  .area__list > li:nth-of-type(4) {
    border-right: solid 1px var(--white);
  }

  .area__list > li:nth-of-type(3),
  .area__list > li:nth-of-type(4) {
    border-bottom: solid 1px var(--white);
  }
}

.area__list dl {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5rem 2rem;
}

.area__list dt {
  font-size: max(12px, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.area__list dd {
  letter-spacing: 0.1em;
  text-align: center;
}

.area__list li:first-of-type dd {
  display: flex;
  gap: 2rem;
}

.area__list dd ul li:not(:last-of-type) {
  margin-bottom: 1rem;
}

.area__txt {
  width: 90%;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 0 auto;
}

/*============================
	reserve
============================*/
.reserve {
  padding: 12rem 0;
}

.reserve__wrapper {
  width: 74rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .reserve__wrapper {
    width: 90%;
  }
}

.reserve__wrapper iframe {
  display: block;
  width: 100%;
}

/*============================
	others
============================*/
.others {
  background: var(--bg-2);
  color: var(--white);
  padding: 12rem 0;
}

.others__list {
  width: 106rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .others__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.others__list li {
  background: url("../img/others_bg-1.jpg") no-repeat center / cover;
  border: solid 2px var(--pink);
  padding: 8rem 8rem 10.5rem;
}

.others__list li:nth-of-type(2) {
  background: url("../img/others_bg-2.jpg") no-repeat center / cover;
  border: solid 2px var(--light-pink);
}

.others__list p {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 3rem 0 6rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 11rem 0 19rem;
}

.insta__contents {
  width: 87rem;
  margin: 5.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	store
============================*/
.store {
  background: url("../img/store_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 12rem 0 13.5rem;
}

.store__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 5rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .store__contents {
    width: 90%;
    flex-direction: column;
  }
}

.store__img {
  width: 66rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .store__img {
    width: 100%;
    margin: 0;
  }
}

.store__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 4rem;
}

@media (max-width: 767px) {
  .store__list {
    margin: 0 0 4rem;
  }
}

.store__list dt,
.store__list dd {
  letter-spacing: 0.05em;
  padding: 2.5rem 1.6rem;
}

.store__list dt {
  width: max(75px, 11rem);
  font-weight: 500;
}

.store__list dd {
  width: calc(100% - max(75px, 11rem));
}

.store__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

.store__instagram {
  display: inline-block;
  width: max(16px, 1.7rem);
  height: max(16px, 1.7rem);
}

.store__instagram-label,
.store__instagram-value {
  display: flex;
  align-items: center;
}

.store__instagram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .store__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .store__list dt,
  .store__list dd {
    width: 100%;
  }

  .store__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .store__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .store .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 45rem;
}
