@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: 2rem;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(180px, 20.6rem);
  height: max(1.8px, 2.2rem);
  margin-top :0.5rem;
  position: relative;
}
.common__ttl.wh::before {
  background: url("../img/ttl_deco-wh.png") no-repeat center / contain;
}
.common__ttl::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco-2.png") no-repeat center / contain;
  width: max(180px, 20.6rem);
  height: max(1.8px, 2.2rem);
}
.common__ttl.wh::after {
  background: url("../img/ttl_deco-2-wh.png") no-repeat center / contain;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #FFF
}

.common__btn {
  width: max(180px, 20rem);
  height: max(40px, 4.8rem);
  margin: 0 auto;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.common__btn a span {
  width: 100%;
  height: 100%;
  border: solid 1px ;
  font-weight: 500;
  font-size: max(12px, 1.4rem);
  padding-right: 3rem;
  border-image-source: linear-gradient(90deg, #f8e58c 0%, /* 左端：明るい */ #fff2b1 25%, /* ハイライト */ #c49331 50%, /* 中間：濃いゴールド */ #f9e78d 75%, /* 右側：再度明るく */ #e9d16e 100% /* 右端：落ち着いた色 */);
  border-image-slice: 1;
  letter-spacing: 0.2em;
  /*background: linear-gradient(to right, #f8e58c, #c49331, #f8e58c);*/
  background: linear-gradient(90deg, #f0c131, #f7e7a4 25%, #bc8e31 59%, #e7d085 87%, #f8eba2);
  -webkit-background-clip: text; /* 背景を文字で切り抜く */
  -webkit-text-fill-color: transparent; /* 文字自体の色を透明にする */
  display: flex;
  justify-content: center;
  align-items: center;
}
.common__btn a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url("../img/btn_arrow.png") no-repeat top center / contain; 
  width: max(31px, 3.1rem);
  height: max(3.5px, 0.35rem);
}
.common__btn.wh a span {
  border-image-source: initial;
  background :initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #FFF;
}
.common__btn.wh a span::after {
    background: url("../img/btn_arrow-wh.png") no-repeat top center / contain; 

}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  width: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  z-index: 2;
}

.hero::before {
  background: url("../img/hero_bg-1.png") no-repeat top center / cover;
  height: 18.6rem;
  top: 0;
  mix-blend-mode: multiply; 
}

.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;
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/bg-menu.jpg") no-repeat center / cover;
  padding: 10.5rem 0 12rem;
  position: relative;
}
.menu-1 {
  position: absolute;
  height: auto;
  width: 40rem;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.menu-2 {
  position: absolute;
  height: auto;
  width: 40rem;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}
.menu h3 {
  margin-top: 3rem;
  font-weight: 900;
  font-size: max(18px, 2.2rem);
  letter-spacing: 0.21em;
  line-height: calc(38/22);
}

.menu__contents {
  width: 64rem;
  text-align: center;
  padding: 1.3rem 5.9rem 0;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1000px) {
  .menu-1 {
    width: 30rem;
  }
  .menu-2 {
    width: 30rem;
  }
  .menu__contents {
    width: 80rem;
  }
}
@media (max-width: 767px) {
  .menu { 
    padding: 0;
  }
  .menu__contents {
    width: 100%;
    padding: 6rem 5%;
  }
  .menu-1 {
    position: initial;
    transform:initial;
    width: 100%;
    height: 30rem;
  }
  .menu-2 {
    position: initial;
    transform:initial;
    width: 100%;
    height: 30rem;
  }
}

.menu__contents p {
  letter-spacing: 0em;
  line-height: 2;
  margin-top: 2rem;
  margin-bottom: 5.9rem;
  font-weight: 500;
}




/*============================
	news
============================*/
.news {
  background: url("../img/bg-news.jpg") no-repeat top center / cover;
  padding: 13.5rem 0 14.3rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: flex;
  gap: 6rem 2.5rem;
  margin: 4.1rem auto 5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    flex-direction: column;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
  width: 32rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    width: 100%;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3.1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
  margin-right: 2rem;
  font-family: var(--font-en);
}

.CMS-NEWS-TIME {
  font-family: var(--font-en);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px var(--white);
  border-image-source: linear-gradient(90deg, #f8e58c 0%, /* 左端：明るい */ #fff2b1 25%, /* ハイライト */ #c49331 50%, /* 中間：濃いゴールド */ #f9e78d 75%, /* 右側：再度明るく */ #e9d16e 100% /* 右端：落ち着いた色 */);
  border-image-slice: 1;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/bg-menu.jpg") no-repeat top center / cover;
  padding: 9.7rem 0 12.4rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 7.3rem 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;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/bg-gallery.jpg") no-repeat top center / cover ;
  padding: 10.9rem 0 9.4rem;
}

.gallery__slider {
  margin: 4.6rem 0 7.6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30.1rem;
  height: 21.9rem;
}
.gallery__slider .swiper-slide img {
  padding: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  background: url(../img/bg-news.jpg) no-repeat top center / cover;
  padding: 13.4rem 0 0;
}

.access__map {
  height: 45rem;
  margin: 12.2rem 0 0;
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 7rem;
  margin: 5.6rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: -17rem;
}

@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(--brown);
  padding: 2.7rem 0 2.7rem 2rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--brown);
  }
  .access__list dd:last-of-type,
  .access__list dt:last-of-type {
    border: none;
  }
}

@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: 6rem auto 0;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 5rem auto 0;
  }
}

/*============================
	cast
============================*/
.cast {
  background: url(../img/bg-menu.jpg) no-repeat top center / cover;
  padding: 15.5rem 0 11rem;
  position: relative;
}

.cast__contents {
  width: 110rem;
  display: flex;
  gap: 4rem;
  margin: 0 auto 0;
  align-items: center;
}
@media (max-width: 1000px) {
  .cast__contents {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .cast__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.cast__txt-wrapper {
  width: 100%;
}

@media (max-width: 767px) {
  .cast__txt-wrapper {
    padding-top: 0;
  }
}

.cast__txt-wrapper h3 {
  font-size: max(18px, 2.2rem);
  letter-spacing: 0.18em;
  line-height: calc(38/22);
  margin: 3.2rem auto 3.5rem;
  text-align: center;
  font-weight: 900;
}

.cast__txt-wrapper p {
  letter-spacing: 0.2em;
  line-height: 2;
  margin: 1rem 0 2.5rem;
  text-align: center;
  font-weight: 500;
}

@media (min-width: 768px) {
  .cast .common__btn {
    margin: 0;
  }
}

.cast__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cast__img {
    width: 100%;
    margin: 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;
  }
}


/*============================
	recruit
============================*/
.recruit {
  background: url("../img/bg-recruit.jpg") no-repeat center / cover;
  padding: 10.8rem 0 13.3rem;
  position: relative;
}

.recruit__contents {
  width: 64rem;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .recruit { 
    padding: 0;
  }
  .recruit__contents {
    width: 100%;
    padding: 6rem 5%;
  }
}

.recruit__contents p {
  letter-spacing: 0em;
  line-height: calc(30/16);
  margin-top: 4.1rem;
  margin-bottom: 4.9rem;
  font-weight: 500;
}