@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(270px, 32.4rem);
  height: max(24px, 3.2rem);
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(28px, 4.8rem);
  letter-spacing: 0.05em;
  color: #a6937c;
  /*background: url("../img/ttl_bg.jpg") repeat center / auto 100%;
  background-clip: text;
  -webkit-background-clip: text;*/
}

.common__btn {
  width: max(220px, 34.4rem);
  height: max(45px, 6.2rem);
  margin: 0 auto;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 2.8rem;
  position: relative;
}

.common__btn a::before {
  content: "";
  background-color: var(--brown);
  width: 5.3rem;
  height: 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

.common__btn a span {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  font-family: var(--font-en);
  color: var(--brown);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common__btn.wh a span {
  border: solid 1px #FFF;
  color: #FFF;
}
.common__btn.wh a::before {
  background: #FFF;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before,
.hero::after {
  content: "";
  width: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  z-index: 2;
}

.hero::before {
  background: url("../img/hero_bg-1.png") repeat-x center / contain;
  height: 36.4rem;
  top: 0;
}

.hero::after {
  background: url("../img/hero_bg-2.png") repeat-x center / contain;
  height: 35.7rem;
  bottom: 0;
  display: none;
}

.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-family: var(--font-en);
  font-size: max(12px, 1.8rem);
  color: var(--white);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  z-index: 100;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(50px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  padding: 11.3rem 0 14.8rem;
  color: #000;
}
.policy .common__ttl span {
  color: #62450d;
} 
.policy__contents {
  width: 110rem;
  display: flex;
  gap: 4rem;
  margin: 4rem auto 0;
}
.policy__txt-wrapper {
  width: 100%;
  padding-top: 5rem;
}
.policy__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: -9rem;
}
.policy__txt-wrapper h3 {
  font-size: max(18px, 3rem);
  letter-spacing: 0.18em;
}
.policy__txt-wrapper p {
  letter-spacing: 0.2em;
  line-height: 2.75;
  margin: 1rem 0 2.5rem;
}
.policy .common__btn {
  margin: 11rem auto 0 0;
}
@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
  .policy__txt-wrapper {
    padding-top: 0;
  }
  .policy__txt-wrapper h3 {
    font-size: max(18px, 3rem);
    letter-spacing: 0.18em;
  }
  .policy__txt-wrapper p {
    letter-spacing: 0.2em;
    line-height: 2.75;
    margin: 1rem 0 2.5rem;
  }
  .policy__img {
    width: 100%;
    margin: 0;
  }
  .policy .common__btn {
    margin: 6rem auto;
  }
}
/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 11.3rem 0 14.8rem;
  color: #000;
}
.recruit__txt-wrapper {
  width: 110rem;
  background: url("../img/recruit_bg-inner.jpg") no-repeat center / cover;
  margin: 0 auto;
  padding: 10.3rem 0 5rem;
  border: 1px solid #5e3412;
}
.recruit .common__ttl,
.recruit .common__ttl span{
  color: #5e3412;
}
.recruit .common__ttl::before {
  display: none;
}
.recruit .common__btn {
  margin-top: 9rem;
}
@media (max-width: 767px) {
  .recruit__txt-wrapper {
    width: 90%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/bg-menu.jpg") no-repeat top center / cover;
  padding: 48.2rem 0 17.3rem;
  position: relative;
  color: #000;
}


@media (max-width: 767px) {
}

.menu__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin: 0 auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 49.5rem;
  margin-right: -4.2rem;
}
.menu__contents:nth-of-type(2) {
  margin-top: 14.2rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    padding-top: 0;
    width: 100%;
    margin-right: 0;
  }
  .menu__contents:nth-of-type(2) {
    margin-top: 6rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.18em;
  color: #62450d;
}
.menu__txt-wrapper h3 span {
  font-family: var(--font-en);
  font-size: max(30px, 4.8rem);
}

.menu__txt-wrapper p {
  letter-spacing: 0.2em;
  line-height: 2.75;
  margin: 2rem 0 2.5rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 56.3rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -1rem;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	news
============================*/
.news {
  background: url("../img/bg-news.jpg") no-repeat bottom center / cover;
  padding: 11.5rem 0 14.8rem;
  color: #000;
}
.news .common__ttl,.news .common__ttl span {
  color: #62450d;
}



.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: flex;
  gap: 6rem 4rem;
  margin: 4rem auto 5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    flex-direction: column;
  }
  .news {
    background: url("../img/bg-news.jpg") no-repeat top right / cover;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
  width: 34rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    width: 100%;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 24rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
  margin-right: 2rem;
}


.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta-bg.jpg") no-repeat center / cover;
  padding: 14rem 0 14.8rem;
}

.insta .common__ttl,
.insta .common__ttl span {
  color: #62450d;
}
.insta__contents {
  width: 82.7rem;
  margin: 4rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 5.4rem;
}

.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: 24rem;
  height: 24rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 15.2rem 0;
}

.gallery__slider {
  margin: 4rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 38.4rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  padding: 11.5rem 0 15rem;
}
.access .common__ttl span {
  color: #ffedcb;
}
.access .common__ttl::before {
  background: url("../img/ttl_deco_access.png") no-repeat center / contain;
}

.access__map {
  height: 50rem;
  margin: 7rem 0 5.8rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 7.1rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__img {
  width: 55.1rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  width: max(90px, 12.5rem);
  font-weight: 400;
  display: flex;
  justify-content: center;
  padding: 2.7rem 0;
}

.access__list dd {
  width: calc(100% - max(90px, 12.5rem));
  border-bottom: solid 1px var(--white);
  padding: 2.7rem 0 2.7rem 2rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--brown);
  }

  .access__list dt:first-of-type {
    border-top: solid 1px var(--brown);
  }

  .access__list dd:first-of-type {
    border-top: solid 1px var(--white);
    padding: 1.1rem 0 1.1rem 2rem;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    justify-content: flex-start;
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
    position: relative;
  }

  .access__list dd::before {
    content: "";
    background-color: var(--brown);
    width: 25%;
    height: 1px;
    position: absolute;
    transform: translateY(100%);
    left: 0;
    bottom: 0;
  }
}

.access .common__btn {
  margin: 5rem 0 0;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 5rem auto 0;
  }
}

/*============================
	cast
============================*/
.cast {
  background: var(--bg-2);
  padding: 12.2rem 0 12rem;
}

.cast__contents {
  background: url("../img/fixed_bg.jpg") no-repeat center / cover;
  width: 110rem;
  box-shadow: 5px 6px 6px 0px rgba(0, 0, 0, 1);
  padding: 2px;
  margin: 0 auto 10.6rem;
}

@media (max-width: 767px) {
  .cast__contents {
    width: 90%;
  }
}

.cast__inner {
  background: url("../img/cast_bg.jpg") no-repeat center / cover;
  padding: 7.2rem 0 8.8rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .cast__inner {
    padding: 4rem 0;
  }
}

.cast__list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .cast__list {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: static;
  }
}

.cast__list li {
  position: absolute;
}

.cast__list li:nth-of-type(1) {
  width: 41.6rem;
  height: 37.4rem;
  top: 1px;
  left: -8px;
}

.cast__list li:nth-of-type(2) {
  width: 45.6rem;
  height: 37.9rem;
  top: -2px;
  right: -5px;
}

@media (max-width: 767px) {
  .cast__list li:nth-of-type(1),
  .cast__list li:nth-of-type(2) {
    width: 45%;
    height: 100%;
    position: static;
  }
}

.cast .common__btn {
  margin: 3rem auto 0;
}

.blog {
  width: max-content;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .blog {
    width: 500px;
  }
}

.blog__ttl {
  background-color: var(--white);
  width: 100%;
  color: var(--black);
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 768px) {
  .blog iframe {
    width: 100% !important;
    height: 400px !important;
  }
}
