@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl .en,
.common__ttl .ja {
  display: block;
  background: var(--grad);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  width: max-content;
}

.common__ttl--bl .en,
.common__ttl--bl .ja {
  background: transparent;
  color: var(--black);
}

.common__ttl .en {
  font-family: var(--font-adobe);
  font-size: max(36px, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.common__ttl .deco {
  display: block;
  width: max(145px, 20.4rem);
  margin-bottom: 1rem;
}

.news .common__ttl .deco,
.cast .common__ttl .deco {
  margin: -1.5rem 0 1rem;
}

.common__btn {
  width: max(166px, 20rem);
  height: max(40px, 4.8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: 36px;
  height: 5px;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, var(--white), #40210f);
  width: 100%;
  height: 12.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;
}

/*============================
	news
============================*/
.news {
  padding: 8rem 0;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4rem auto 7.5rem;
}

@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 {
  padding-top: 1rem;
  margin-top: 1rem;
  position: relative;
}

.CMS-NEWS-LINK::before {
  content: "";
  background: var(--grad);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-2);
  padding: 8rem 0 10rem;
}

.policy__contents {
  width: 110rem;
  display: flex;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.policy__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/menu_bg.jpg") no-repeat center / cover;
  padding: 12.5rem 0;
}

.menu__img {
  width: 110rem;
  margin: 3.5rem auto 5.5rem;
}

@media (max-width: 767px) {
  .menu__img {
    width: 90%;
  }
}

.menu__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 84rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2rem 0 5rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 11rem 0 9rem;
}

.gallery__slider {
  height: 22rem;
  margin: 6.5rem 0 8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30rem;
}

/*============================
	cast
============================*/
.cast {
  background: url("../img/cast_bg.jpg") no-repeat center / cover;
  padding: 10rem 0 8.5rem;
}

.cast__txt-wrapper {
  width: max-content;
  text-align: center;
  margin-left: 5%;
}

@media screen and (min-width: 768px) {
  .cast__txt-wrapper {
    width: 44rem;
    margin-left: 20rem;
  }
}

.cast__txt-wrapper p {
  font-size: max(14px, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 3.5rem 0 5.5rem;
}

/*============================
	store
============================*/
.store {
  padding: 10.5rem 0 16.5rem;
}

.store__list {
  width: 110rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5.5rem 5.8rem;
  margin: 10rem auto 0;
}

@media screen and (max-width: 767px) {
  .store__list {
    width: 90%;
  }
}

.store__list > li {
  width: max(220px, 32.8rem);
  border-left: solid 1px #f0c131;
  border-right: solid 1px #f8eba2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .store__list > li {
    width: 80%;
  }
}

.store__list > li::before,
.store__list > li::after {
  content: "";
  background: var(--grad);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  pointer-events: none;
}

.store__list > li::after {
  top: auto;
  bottom: 0;
}

.store__list h3 {
  font-size: max(12px, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.store__btn-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.store__btn-list li a {
  width: 100%;
  height: max(40px, 6.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store__btn-list li:nth-of-type(1) a {
  background-color: var(--white);
  border: solid 2px #06c755;
  color: #06c755;
  gap: 1.6rem;
}

.store__btn-list li:nth-of-type(2) a {
  background: url("../img/insta_btn-bg.jpg") no-repeat center / cover;
  gap: 1rem;
}

.store__btn-list li a::before {
  content: "";
  display: block;
  background: url("../img/line.png") no-repeat center / contain;
  width: max(20px, 3rem);
  height: max(20px, 3rem);
}

.store__btn-list li:nth-of-type(2) a::before {
  background: url("../img/insta.png") no-repeat center / contain;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 8rem 0 12rem;
}

.recruit__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .recruit__txt-wrapper {
    width: 62rem;
  }
}

.recruit__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 4.5rem 0 5.5rem;
}

.recruit__txt-wrapper .recruit__txt {
  font-size: max(12px, 1.4rem);
  margin: 3.5rem 0 4.5rem;
}

.recruit__btn-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}

.recruit__btn-list a {
  display: block;
  background: var(--grad);
  width: max(140px, 20rem);
  height: max(32px, 4rem);
  padding: 1px;
}

.recruit__btn-list span {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 10.5rem 0 15rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 6.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: 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;
  }
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 12rem 0 13.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 6rem;
  margin: 8.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 2.4rem 1.6rem;
}

.access__list dt {
  width: max(75px, 11rem);
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 45rem;
}
