@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  font-size: max(14px, 2rem);
  letter-spacing: 0.02em;
}

.common__btn {
  width: max(180px, 26rem);
  height: max(40px, 5.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.8rem);
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-left: 3.5rem;
  position: relative;
}

.common__btn--red a {
  background-color: var(--red);
}

.common__btn a::before {
  content: "";
  background-color: var(--white);
  width: 6rem;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.common__btn a::after {
  content: "";
  background-color: var(--black);
  width: 8.5rem;
  height: 1px;
  position: absolute;
  top: 50%;
  right: -2.5rem;
  pointer-events: none;
}

.common__btn--red a::after {
  background-color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(88rem, 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;
  pointer-events: none;
  z-index: 3;
}

.hero__logo {
  display: block;
  width: 15.3rem;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.35));
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(60px, 10rem);
  }
}

.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;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 10rem 0 15.5rem;
  position: relative;
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 82.6rem;
  height: 40.5rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 60rem;
    height: 29.4rem;
  }
}

.policy__txt-wrapper {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    width: 90rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 4rem 11rem;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 span:nth-of-type(1) {
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 span:nth-of-type(1) {
    margin: 0 0 2rem;
  }
}

.policy__txt-wrapper h2 span:nth-of-type(1)::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: 6.4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 span:nth-of-type(1)::after {
    width: 6.4rem;
    height: 1px;
  }
}

.policy__txt-wrapper h2 span:nth-of-type(2),
.policy__txt-wrapper h2 span:nth-of-type(3) {
  display: block;
  font-size: max(18px, 3.2rem);
  color: #ffd781;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.policy__txt-wrapper h2 span:nth-of-type(3) {
  margin-top: 4.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 span:nth-of-type(3) {
    margin: 0 0 0 4rem;
  }
}

.policy__txt-wrapper p {
  line-height: 2;
  margin: 9.5rem 0 6rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    margin: 4rem 0 6rem;
  }
}

.policy .common__btn {
  margin: 0;
}

/*============================
	menu
============================*/
.menu {
  padding: 11rem 0 9.5rem;
}

.menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10.5rem;
  margin: 8.5rem auto 7rem;
}

.menu__list-item {
  background-color: rgba(0, 0, 0, 0.88);
  color: var(--white);
  display: flex;
  column-gap: 6.4rem;
  padding: 0 8rem 7rem 7rem;
  margin: 0 0 0 8rem;
  position: relative;
}

.menu__list-item:nth-of-type(even) {
  background-color: rgba(53, 27, 1, 0.9);
  flex-direction: row-reverse;
  padding: 0 7rem 7rem 8rem;
  margin: 0 8rem 0 0;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column;
    padding: 0 4rem 7rem;
  }

  .menu__list-item {
    margin: 0 0 0 5%;
  }

  .menu__list-item:nth-of-type(even) {
    margin: 0 5% 0 0;
  }
}

.menu__list-item::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 29rem;
  height: 24.4rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.menu__list-item:nth-of-type(even)::before {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 38.6rem;
  height: 32.5rem;
  left: auto;
  right: 0;
}

.menu__ttl {
  border-top: solid max(4px, 0.8rem) #ffc956;
  font-size: max(24px, 4rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  padding: 8rem 1.6rem 0;
}

@media (min-width: 768px) {
  .menu__ttl {
    writing-mode: vertical-rl;
  }
}

@media (max-width: 767px) {
  .menu__ttl {
    width: 40rem;
    padding: 3rem 0 0 4rem;
    margin-left: -4rem;
  }
}

.menu__ttl span {
  font-size: max(14px, 2rem);
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: -1.5rem;
}

@media (max-width: 767px) {
  .menu__ttl span {
    margin: 0 0 1rem;
  }
}

.menu__ttl span::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: 7.2rem;
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .menu__ttl span::after {
    width: 7.2rem;
    height: 1px;
    margin: 0.5rem 0 0;
  }
}

.menu__txt-wrapper p {
  line-height: 2;
  margin-top: 7.5rem;
}

.menu__list-item:nth-of-type(even) .menu__txt-wrapper p {
  margin-top: 4.5rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper p {
    margin-top: max(50px, 7.5rem);
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper p {
    margin-top: 4rem;
  }
}

.menu__img-wrapper {
  display: flex;
  gap: 4.4rem;
}

@media (max-width: 767px) {
  .menu__img-wrapper {
    width: 100%;
    gap: 1.5rem;
  }
}

.menu__img-1,
.menu__img-2,
.menu__img-3 {
  display: block;
  height: 100%;
  position: relative;
}

.menu__img-1 {
  width: 57.2rem;
  margin-top: 9.5rem;
}

.menu__img-2 {
  width: 32rem;
  margin-top: -4.4rem;
}

.menu__img-3 {
  width: 36.3rem;
  margin-top: 5.5rem;
  margin-left: 13rem;
}

@media (max-width: 767px) {
  .menu__img-1 {
    margin-top: 4rem;
  }

  .menu__img-3 {
    margin-left: 0;
  }
}

.menu__img-1::before,
.menu__img-3::before {
  content: "＋";
  font-size: max(24px, 4.4rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  position: absolute;
  transform: translateX(100%);
  pointer-events: none;
}

.menu__img-1::before {
  top: 8rem;
  right: -1rem;
}

.menu__img-3::before {
  top: 12rem;
  right: 0;
}

@media (max-width: 767px) {
  .menu__img-1::before,
  .menu__img-3::before {
    font-size: max(16px, 3rem);
  }

  .menu__img-1::before {
    top: 6rem;
    right: 0;
  }

  .menu__img-3::before {
    top: 8rem;
    right: 0.5rem;
  }
}

.menu__img-1 figcaption,
.menu__img-2 figcaption,
.menu__img-3 figcaption {
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  width: max-content;
  height: max-content;
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  color: var(--black);
  position: absolute;
}

.menu__img-1 figcaption {
  padding: 2rem 5rem;
  right: 1rem;
  bottom: -3.5rem;
}

.menu__img-2 figcaption {
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 5rem 2rem 4rem;
  top: 18rem;
  right: 2rem;
}

.menu__img-3 figcaption {
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 5rem 1.5rem 4rem;
  top: -8rem;
  left: -4rem;
}

@media (max-width: 767px) {
  .menu__img-1 figcaption,
  .menu__img-2 figcaption,
  .menu__img-3 figcaption {
    font-size: max(12px, 1.8rem);
  }

  .menu__img-1 figcaption {
    padding: 1.5rem 3rem;
  }

  .menu__img-2 figcaption {
    padding: 3rem 1.5rem;
    top: 9rem;
    right: 1rem;
  }

  .menu__img-3 figcaption {
    padding: 3rem 1.5rem;
    top: -2rem;
    left: -1rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 11.5rem 0 10rem;
}

.gallery__slider {
  height: 30rem;
  margin: 5rem 0 5.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30rem;
  margin: 0 0.8rem;
}

/*============================
	news
============================*/
.news {
  padding: 9.5rem 0 12rem;
}

.CMS-NEWS-INDEX {
  width: 117rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7.4rem;
  margin: 5.5rem auto 7rem;
}

@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: 21.3rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-size: max(12px, 1.5rem);
}

.CMS-NEWS-LINK {
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  color: #7c7c7c;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 8.5rem 0 12rem;
  position: relative;
  z-index: 1;
}

.access::before {
  content: "";
  background: linear-gradient(90deg, rgba(62, 58, 57, 0), rgba(0, 0, 0, 1));
  width: 108.3rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 4.5rem;
  margin: 9.5rem auto 8rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__map {
  width: 66.5rem;
  height: 53rem;
  flex-shrink: 0;
  margin-left: calc(50% - (50vw - 6rem));
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin-top: -2rem;
  }
}

.access__list dt,
.access__list dd {
  padding: 1.5rem 0;
}

.access__list dt {
  width: max(75px, 9rem);
  font-weight: 600;
}

.access__list dd {
  width: calc(100% - max(75px, 9rem));
}

.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__underline {
  text-decoration: underline;
}

.access__insta {
  display: flex;
}

.access__insta::before {
  content: "";
  display: block;
  background: url("../img/insta.png") no-repeat center / contain;
  width: max(20px, 2.6rem);
  height: max(20px, 2.6rem);
  margin-right: 0.7rem;
}

.access__link-list {
  width: 85.3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__link-list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.access__link-list a {
  width: 100%;
  height: max(65px, 10rem);
  border: solid 1px var(--white);
  border-radius: 100vmax;
  font-size: max(12px, 1.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .access__link-list a {
    max-width: max(300px, 40.4rem);
    text-decoration: none;
    margin: 0 auto;
  }
}

.access__link-list span {
  font-size: max(18px, 2.9rem);
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.access__link-list li:nth-of-type(2) span {
  font-size: max(16px, 2.4rem);
}

@media (max-width: 767px) {
  .access__link-list li:nth-of-type(1) span {
    text-decoration: underline;
  }
}

.access__link-list span::before {
  content: "";
  display: block;
  background: url("../img/access_tel.png") no-repeat center / contain;
  width: max(14px, 2rem);
  height: max(19.6px, 2.8rem);
}

.access__link-list li:nth-of-type(2) span::before {
  background: url("../img/access_reserve.png") no-repeat center / contain;
  width: max(20px, 3.3rem);
  height: max(20.9px, 3.4rem);
}

/*============================
	insta
============================*/
.insta {
  padding: 12.5rem 0 15rem;
}

.insta__contents {
  width: 101.4rem;
  margin: 9rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.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: 32.8rem;
  height: 32.8rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
