@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(14px, 2rem);
  font-weight: 300;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(32px, 6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 24rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 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(0, 0, 0, 1));
  width: 100%;
  height: 18.5rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s 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);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 6rem;
  bottom: -8rem;
  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;
}

/*============================
	concept
============================*/
.concept {
  padding: 18rem 0 17.5rem;
  position: relative;
  overflow: hidden;
}

.concept__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: max(390px, 71.5rem);
  }
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 2rem 0 4.5rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.concept__bg {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.concept__bg li {
  width: 50%;
  height: 100%;
  position: relative;
}

.concept__bg p {
  font-family: var(--font-lora);
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  opacity: 0.1;
  position: absolute;
  left: 0;
  bottom: 0;
}

.concept__bg li:nth-of-type(2) p {
  left: auto;
  bottom: auto;
  top: 0;
  right: 0;
}

/*============================
	store
============================*/
.store {
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 14rem 0 15.5rem;
  position: relative;
}

.store::before,
.store::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.store::before {
  background: url("../img/store_deco-1.png") no-repeat center / cover;
  height: 64.2rem;
  top: 0;
}

.store::after {
  background: url("../img/store_deco-2.png") no-repeat center / cover;
  height: 76.6rem;
  bottom: 0;
}

@media (max-width: 767px) {
  .store::before {
    height: 40rem;
  }

  .store::after {
    height: 47.8rem;
  }
}

.store__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 8.5rem;
  margin: 10rem auto;
}

@media (max-width: 767px) {
  .store__list {
    width: 90%;
  }
}

.store__list-item {
  display: flex;
  gap: 7rem;
}

.store__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .store__list-item,
  .store__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.store__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .store__txt-wrapper {
    padding-top: 6rem;
  }
}

.store__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 2.5rem;
}

.store__txt-wrapper h3 span {
  display: block;
  font-size: max(20px, 3.6rem);
  font-weight: 400;
  color: #4c4c4c;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3.5rem;
   font-family: "Caprasimo", serif;
   font-weight: 600;

}

.store__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.5;
}

.store__img {
  width: 68rem;
  height: 100%;
  flex-shrink: 0;
}

.store__list-item:nth-of-type(odd) .store__img {
  margin-left: calc(50% - 50vw);
}

.store__list-item:nth-of-type(even) .store__img {
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .store__img,
  .store__list-item:nth-of-type(odd) .store__img,
  .store__list-item:nth-of-type(even) .store__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 12.5rem 0 19.5rem;
  position: relative;
}

.menu__list {
  width: 110rem;
  display: flex;
  gap: 14rem 14rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .menu__list li {
    width: 50%;
  }
}

.menu__list li:first-of-type {
  position: relative;
}

.menu__list li:first-of-type::before {
  content: "";
  background-color: var(--white);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -7rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list li:first-of-type::before {
    width: 100%;
    height: 1px;
    top: auto;
    right: auto;
    left: 0;
    bottom: -7rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  text-align: center;
}

.menu__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 2.5rem 0 7rem;
}

.menu__bg {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .menu__bg {
    flex-direction: column;
  }
}

.menu__bg li {
  width: 50%;
  height: 100%;
}

@media (max-width: 767px) {
  .menu__bg li {
    width: 100%;
    height: 50%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--brown);
  padding: 10rem 0 11.5rem;
}

.gallery__slider {
  height: 21rem;
  margin: 8rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.6rem;
  margin: 0 0.6rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 9.5rem 0 11rem;
}

.recruit__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .recruit__txt-wrapper {
    width: max(380px, 68rem);
  }
}

.recruit__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 4.5rem;
}

.recruit__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 2.5rem 0 9rem;
}

/*============================
	access
============================*/
.access {
  padding: 14rem 0 13.5rem;
}

.access__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__inner {
    width: 90%;
  }
}

.access__map {
  margin: 8.5rem 0 5.5rem;
}

@media (min-width: 768px) {
  .access__map {
    height: 32rem;
  }
}

.access__store-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 13.5rem;
}

@media (max-width: 767px) {
  .access__store-list {
    grid-template-columns: 1fr;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.access__insta {
  display: block;
  width: max(24px, 3.2rem);
  margin: 4rem 0 6rem;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  border-top: var(--border);
  padding: 13.5rem 0 20rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 10rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
