@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.6rem);
  font-weight: 700;
  color: #282828;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  display: block;
  font-family: var(--font-jose);
  font-size: max(12px, 1.8rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.common__ttl--wt,
.common__ttl--wt span {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(45px, 7.4rem);
  height: max(31.6px, 5.2rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(180px, 30rem);
  height: max(45px, 7.5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  border-radius: 15rem;
  font-family: var(--font-jose);
  font-size: max(12px, 1.8rem);
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.6rem;
  box-shadow: 0 max(5px, 0.8rem) 0 #700105;
  padding: 0.5rem 2.6rem 0 0;
  position: relative;
}

.common__btn--wt a {
  background-color: var(--white);
  color: var(--black);
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: max(45px, 7.7rem);
  height: max(24.5px, 4.2rem);
  position: absolute;
  bottom: 2.8rem;
  right: -2.6rem;
}

.common__btn a::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: max(20px, 3rem);
  height: max(20px, 3rem);
  border-radius: 50%;
  margin-top: -0.5rem;
}

.common__btn--wt a::after {
  background-color: var(--brown);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  padding-top: max(60px, 10rem);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding-top: max(60px, 8rem);
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero__slider::before,
.hero__slider::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  mix-blend-mode: multiply;
  opacity: 0.3;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__slider::before {
  height: 100%;
  top: 0;
}

.hero__slider::after {
  height: 23rem;
  bottom: 0;
}

@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;
}

.hero__scroll {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 3rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll a {
  font-family: var(--font-jose);
  font-size: max(12px, 1.8rem);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.hero__scroll a::before,
.hero__scroll a::after {
  content: "";
}

.hero__scroll a::before {
  background: url("../img/scroll_deco.png") no-repeat center / contain;
  width: max(45px, 7.7rem);
  height: max(24.5px, 4.2rem);
  margin-left: 5rem;
}

.hero__scroll a::after {
  background: url("../img/scroll_arw.png") no-repeat center / contain;
  width: max(13.2px, 1.7rem);
  height: max(7px, 0.9rem);
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  padding-top: 10rem;
  position: relative;
}

@media (max-width: 767px) {
  .news {
    padding: 10rem 0 6rem;
  }
}

.news::before {
  content: "";
  background-color: var(--bg-2);
  width: 100%;
  height: 24rem;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  position: absolute;
  transform: translateY(100%);
  bottom: 1px;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .news::before {
    height: 16rem;
  }
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  margin: 2.5rem auto 4.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: 21.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  color: var(--white);
  letter-spacing: 0.1em;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  padding: 8rem 0 6rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 8rem 0 12rem;
  }
}

.policy__ttl {
  font-family: var(--font-jose);
  font-size: 17rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  mix-blend-mode: multiply;
  margin-left: 8rem;
}

@media (max-width: 767px) {
  .policy__ttl {
    font-size: 12rem;
    margin-left: 5%;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 10rem;
  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 {
    height: 100%;
    padding-top: 5rem;
    margin-bottom: 6.5rem;
  }
}

.policy__txt-wrapper h3 {
  font-size: max(18px, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.policy__txt-wrapper h3 strong {
  display: block;
  font-size: max(24px, 4.8rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0 0 6.5rem;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 0 0 auto;
  }
}

.policy__img {
  width: 58rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -13.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    margin: 0;
  }
}

.policy__img p {
  font-family: var(--font-jose);
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  position: absolute;
  transform: translateX(100%);
  top: 6rem;
  right: -2rem;
}

@media (max-width: 767px) {
  .policy__img p {
    font-size: max(14px, 2.4rem);
    transform: none;
    top: 0;
    right: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding-bottom: 21rem;
}

.menu__ttl-bg {
  background: url("../img/ttl_menu-bg.jpg") no-repeat center bottom / cover;
  width: 100%;
  height: 52rem;
  clip-path: polygon(0 0, 100% 0, 100% 54%, 0% 100%);
}

@media (max-width: 767px) {
  .menu__ttl-bg {
    height: 40rem;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 0% 100%);
  }
}

.menu__ttl-wrapper {
  background-color: var(--bg-2);
  width: 28.5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8rem;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper {
    width: max-content;
    padding: 0 5%;
    margin-left: 5%;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
  margin: -2rem auto 6.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 10rem;
    margin: 4rem auto 7rem;
  }
}

.menu__list-item {
  display: flex;
}

@media (max-width: 767px) {
  .menu__list-item {
    flex-direction: column-reverse;
    row-gap: 8rem;
  }
}

.menu__txt-wrapper {
  background-color: var(--white);
  width: 100%;
  padding: 4rem 5rem 5rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    padding: 5.5rem 9.5rem 7rem 4rem;
    margin: 22rem -5.5rem 0 0;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(18px, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.menu__txt-wrapper h3 strong {
  display: block;
  font-size: max(24px, 4.8rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 63.5rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img::before,
.menu__img::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__img::before {
  background-color: var(--bg-2);
  width: 100%;
  height: 100%;
  opacity: 0.2;
  top: 5rem;
  left: -4rem;
}

.menu__img::after {
  background-color: var(--white);
  width: 9.5rem;
  height: 28rem;
  left: -4rem;
  bottom: -5rem;
}

@media (max-width: 767px) {
  .menu__img::after {
    display: none;
  }
}

.menu__img p {
  font-family: var(--font-jose);
  font-size: 8.5rem;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  position: absolute;
  top: -7rem;
  right: -4rem;
}

@media (max-width: 767px) {
  .menu__img p {
    font-size: 7rem;
    top: -5rem;
    right: -2rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 6rem 0 10rem;
  position: relative;
}

.gallery::before {
  content: "";
  background-color: var(--bg-2);
  width: 100%;
  height: 24rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  transform: translateY(-100%);
  top: 1px;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .gallery::before {
    height: 16rem;
  }
}

.gallery__ttl {
  font-family: var(--font-jose);
  font-size: 17rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  mix-blend-mode: multiply;
  position: absolute;
  top: -12.5rem;
  left: 7.5rem;
}

@media (max-width: 767px) {
  .gallery__ttl {
    font-size: 12rem;
    top: -10rem;
    left: 5%;
  }
}

.gallery__slider {
  height: 35rem;
  margin-bottom: 7rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 35rem;
  margin: 0 1.2rem;
}

/*============================
	access
============================*/
.access {
  padding: 14rem 0 11.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8rem;
  margin: 6rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 41.5rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  background-color: #700105;
  width: max(75px, 12rem);
  font-weight: 400;
  color: var(--white);
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
  border-bottom: solid 1px #700105;
  padding: 2rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
  }

  .access__list dt:first-of-type {
    border-top: solid 1px var(--white);
  }

  .access__list dd:first-of-type {
    border-top: solid 1px #700105;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    display: block;
    width: 100%;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 45rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 13rem 0 7rem;
}

.insta__contents {
  width: 110rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 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: 34rem;
  height: 34rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

.sns__list {
  width: 84rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 10rem auto 0;
}

@media screen and (max-width: 767px) {
  .sns__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.sns__list a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 1.8rem 0 1.8rem 2.5rem;
}

.sns__list li:nth-of-type(2) a {
  background-color: #0056f3;
}

@media screen and (max-width: 767px) {
  .sns__list a {
    justify-content: center;
    padding: 2rem 4rem;
  }

  .sns__list li:nth-of-type(2) a {
    padding: 2rem 4rem 3rem;
  }
}

.sns__list a::before {
  content: "";
  display: block;
  background: url("../img/x.png") no-repeat center / contain;
  width: 9.4rem;
  height: 9.4rem;
}

.sns__list li:nth-of-type(2) a::before {
  background: url("../img/facebook.png") no-repeat center / contain;
  width: 8.6rem;
  height: 8.6rem;
  margin: -1rem -2rem 0 0;
}
