@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  display: block;
  /* background: var(--grad-ttl);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text; */
  color: #fff;
  width: max-content;
  font-family: var(--font-en);
  font-size: max(40px, 6.4rem);
  font-size: 3em;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: capitalize;
  /* padding-right: 6px; */
  margin: 0 auto;
}
.common__ttl.left {
  margin-left: 0;
}

.common__btn {
  width: max(170px, 20rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
}

/*============================
	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), #40210f);
  width: 100%;
  height: 14.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 {
  background: url("../img/back-news.jpg") no-repeat center / cover;
  padding: 14rem 0 13rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 6.5rem;
}

@media (max-width: 767px) {
  .news {
    padding: 14rem 0;
  }
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
    margin: 6rem auto 7.5rem;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 42rem;
  }
}

.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-ttl);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}





/*============================
	concept
============================*/
.concept {
  background: url("../img/back-concept.jpg") no-repeat center / cover;
  padding: 14.5rem 0 14rem;
}

.concept__contents {
  width: 123rem;
  display: flex;
  flex-direction: row;
  gap: 5rem 8rem;
  margin: 0 0 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    margin: 0 auto;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

.concept__txt-wrapper h3 {
  font-size: max(14px, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 3rem 0;
}
@media (max-width: 767px) {
  .concept__txt-wrapper h3 {
    margin: 4rem 0;
  }
}

.concept__txt-wrapper p {
  letter-spacing: 0.03em;
  line-height: 2.25;
}

.concept__img {
  width: 63.7rem;
  height: 100%;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .concept__img {
    width: 50rem;
  }
}
@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/back-menu.jpg") no-repeat center / cover;
  padding: 11.5rem 0 12rem;
}
@media (max-width: 767px) {
  .menu {
    padding: 8rem 0 10rem;
    position: relative;
  }
    .menu::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
    }


}

.menu__txt-wrapper {
  /* background-color: rgba(0, 0, 0, 0.8); */
  width: 90%;
  padding: 7.5rem 5% 8rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 80rem;
    padding: 7.5rem 16rem 5.5rem 11rem;
    margin-left: auto;
  }
}
@media (min-width: 1000px) {
  .menu__txt-wrapper {
    width: 70rem;
  }
}
@media (max-width: 767px) {
  .menu__txt-wrapper {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper h2 {
    text-align: center;
    width: inherit;
    padding: 0;
  }
}


.menu__txt-wrapper h3 {
  font-size: max(14px, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 3rem;
}

.menu__txt-wrapper p {
  line-height: 2.25;
  margin: 3rem 0 4rem;
}
@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin-top: 4rem;
  }

  .menu__txt-wrapper p {
    margin: 4rem 0 4rem;
  }
}


.menu .common__btn {
  margin: 0;
}
@media (max-width: 767px) {
  .menu .common__btn {
    margin: 6rem auto 0;
  }
}


/*============================
	gallery
============================*/
.gallery {
  background: url("../img/back-gallery.jpg") no-repeat center / cover;
  padding: 14rem 0 13rem;
}
@media (max-width: 767px) {
  .gallery {
    padding: 14rem 0;
  }
}

.gallery__slider {
  height: 22rem;
  margin: 7rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30rem;
}





/*============================
	access
============================*/
.access {
  background: url(../img/back-access.jpg) no-repeat center top / cover;
  padding: 14.5rem 0;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 7.5rem;
  margin: 10rem auto 9rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2rem 0 3rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 0rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 3.4rem 1.6rem;
  line-height: 2;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 0.1rem #aaa;
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 0.1rem #aaa;
  }
}

@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;
  }
}


.top__map {
  height: 45rem;
}
@media (max-width: 500px) {
  .top__map {
    height: 65rem;
  }
}


/*============================
	recruit
============================*/
.recruit {
  background: url("../img/back-recruit.jpg") no-repeat center / cover;
  padding: 6rem 0 8rem;
}
@media (max-width: 767px) {
  .recruit {
   background: url("../img/back-recruit.jpg") no-repeat right -40rem top / cover;
   padding: 8rem 0 10rem;
  }
}

.private {
  background: url("../img/back-private.jpg") no-repeat center / cover;
  padding: 6rem 0 8rem;
}
@media (max-width: 767px) {
  .private {
   background: url("../img/back-private.jpg") no-repeat right -40rem top / cover;
   padding: 8rem 0 10rem;
  }
}

.recruit__txt-wrapper {
  /* background-color: rgba(0, 0, 0, 0.8); */
  width: 90%;
  padding: 7.5rem 5% 8rem;
}

@media (min-width: 768px) {
  .recruit__txt-wrapper {
    width: 90rem;
    padding: 7.5rem 16rem 5.5rem 11rem;
    margin-left: auto;
  }
}
@media (min-width: 1100px) {
  .recruit__txt-wrapper {
    width: 75rem;
  }
}
@media (max-width: 767px) {
  .recruit__txt-wrapper {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .recruit__txt-wrapper h2 {
    text-align: center;
    width: inherit;
    padding: 0;
  }
}


.recruit__txt-wrapper h3 {
  font-size: max(14px, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 4rem;
}

.recruit__txt-wrapper p {
  line-height: 2.25;
  text-align: center;
  margin: 4rem 0 5rem;
}
@media (max-width: 767px) {
  .recruit__txt-wrapper h3 {
    margin-top: 4rem;
  }

  .recruit__txt-wrapper p {
    margin: 4rem 0 4rem;
  }
}


@media (max-width: 767px) {
  .recruit .common__btn {
    margin: 6rem auto 0;
  }
}





/*============================
	insta
============================*/
.insta {
  background: url("../img/back-insta.jpg") no-repeat center top / cover;
  padding: 14rem 0 15rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 7rem 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;
  }
}

.hero {
	position: relative;
}

.hero__slider {
	position: relative;
	z-index: 1;
}

.hero__catch {
	position: absolute;
	top: 75%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	width: 90%;
	text-align: left;
	color: #fff;
	text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.6);
	pointer-events: none;
}

.hero-logo{
    display: flex;
    align-items: flex-end;
    margin-top: -18rem;
}

.hero__catch p {
	margin: 0 0 0;
	font-size: clamp(1.6rem, 3vw, 2.8rem);
	letter-spacing: 0.08em;
}
.pmt{
  margin-top: 0.5rem !important;
}
.hero__catch span {
	font-size:5rem;
    font-weight: bold;
}

.hero__catch h1 {
	margin: 0;
	font-size: clamp(3.2rem, 6vw, 7rem);
	font-weight: 400;
	letter-spacing: 0.12em;
	line-height: 1.3;
}

.hero__catch h1 {
    width: 30rem;
}

.hero__catch h1 span {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.45em;
	letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
	.hero__catch {
		width: 92%;
    top: 70%;
	}

	.hero__catch p {
		font-size: 1.6rem;
	}

	.hero__catch h1 {
		font-size: 3.6rem;
	}

    
    .hero__catch span {
	font-size:4rem;
    font-weight: bold;
}
    .hero-logo{
    display: flex;
    align-items: flex-end;
    margin-top: -11rem;
}
    .hero__catch h1 {
    width: 14rem;
}
    
    .hero__catch {
	bottom: 100%;
}

}


.rstdtl-menu-lst__info-inner{
    display: flex;
    justify-content: space-between;
}

.rstdtl-menu-lst__menu-title,.rstdtl-menu-lst__price{
    margin: 1rem 0!important;
        line-height: 1!important;
}

.rstdtl-menu-lst{
    margin-bottom: 3rem;
}

.heading2{
    text-align: center;
    font-size: 2rem;
}

.access-btn{
    display: flex;
    justify-content: center;
    column-gap: 6rem;
}

.access-btn .common__btn{
    margin: 0;
}


@media screen and (max-width: 768px) {
	.access-btn{
    display: block;
}
    
    
.access-btn .common__btn{
    margin: 0 auto 3rem;
}
    
    .heading2{
        margin: 0 auto!important;
        text-align: center;
        font-size: 4rem!important;
    }
    .menu__txt-wrapper h2{
        margin: 0 auto!important;
    }
}