@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 4rem);
  font-weight: 400;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem 1.6rem;
  font-family: 'Kokuryu', sans-serif;
}

.common__ttl--wt {
  color: var(--color-white);
}

.common__btn {
  width: max(160px, 22rem);
  height: max(32px, 5.4rem);
  margin: 0 auto;
  position: relative;
}

.common__btn a {
  background: #b40000;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  letter-spacing: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  color: var(--text-color);
  position: relative;
}
.hero::before {
  content: "";
  background:url(../img/bg-hero.png) no-repeat top center / cover;
  width: 100%;
  height: 33.6rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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 {
  padding: 15.7rem 0 14.8rem;
  position: relative;
  z-index: 1;
  background: url(../img/bg-policy.jpg) no-repeat top center / cover;
  color: #FFF;
}
.policy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy {
    padding: 12rem 0;
  }
}

.policy::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center / contain;
  width: 51.6rem;
  height: 28.1rem;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  .policy::before {
    width: 30rem;
    height: 16.4rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 4rem;
  margin: 0 auto;
  color: #FFF;
}
.menu__line {
  width: 100%;
  height: 6.4rem;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    gap: 6rem;
  }
}

.policy__txt-wrapper {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

@media (max-width: 767px) {
  .policy__txt-wrapper {
    writing-mode: horizontal-tb;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(20px, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.26em;
  line-height: calc(46/28);
  font-family: 'Kokuryu', sans-serif;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    line-height: 1.5;
  }
}

.policy__txt-wrapper h2 span {
  font-size: max(14px, 2.1rem);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 1.8rem 2rem;
}

.policy__txt-wrapper h2 span::after {
  content: "";
  display: block;
  background-color: #000;
  width: 1px;
  height: 11rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 span::after {
    width: 11rem;
    height: 1px;
  }
}

.policy__txt-wrapper p {
  height: max(320px, 42rem);
  letter-spacing: 0.25em;
  line-height: 2;
  margin-right: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    height: auto;
    margin: 2rem 0 0;
  }
}

.policy .common__btn {
  margin: 8.3rem 1.8rem 0 auto;
}

@media (max-width: 767px) {
  .policy .common__btn {
    margin: 8.3rem auto 0;
  }
}

.policy__img {
  width: 68rem;
  height: 45.3rem;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    height: auto;
  }
}

.policy__img::before {
  content: "";
  background: url("../img/policy_img-deco.png") no-repeat center / contain;
  width: 59.2rem;
  height: 39.5rem;
  position: absolute;
  transform: translate(37%, 59%);
  right: 0;
  bottom: 0;
}

@media (max-width: 1000px) {
  .policy__img::before {
    transform: translate(25%, 40%);
  }
}

@media (max-width: 767px) {
  .policy__img::before {
    width: 24rem;
    height: 19.9rem;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url("../img/bg-menu.jpg") no-repeat center / cover;
  color: var(--color-white);
  padding: 16rem 0 18rem;
  margin-top: -0.6rem;
}

.menu__contents {
  width: 39rem;
  min-width: 390px;
  margin: 0 auto 0 17.3rem;
  position: relative;
}
.menu h3 {
  font-size: max(18px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: calc(46/26);
  margin-top: 3rem;
}
.menu-deco {
  position: absolute;
  bottom: -14rem;
  right: -32rem;
  width: 42rem;
  height: auto;
}
@media (max-width: 767px) {
  .menu__contents {
    width: 70%;
    min-width: initial;
    margin: 0 auto 0 5%;
  }
  .menu-deco {
    bottom: -16rem;
    right: 3rem;
    width: 22rem;
  }
  .menu h3 {
    margin-top: 7rem;
  }
}

.menu .common__ttl--wt {
  flex-direction: row;
}

.menu__contents p {
  letter-spacing: 0.14em;
  line-height: 2;
  margin: 4rem 0 6.5rem;
}

.menu .common__btn {
  margin: 0;
}

/*============================
	gallery
============================*/
.gallery {
  background: url(../img/bg-news.jpg) no-repeat top center / cover;
  padding: 15.5rem 0 6.6rem;
  margin-top: -0.6rem;
}

.gallery__slider {
  margin: 7rem 0 8.8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 6px;
}

@media (max-width: 767px) {
  .gallery__slider .swiper-slide {
    width: 40rem;
  }
}

/*============================
	access
============================*/
.access {
  padding: 13.4rem 0 0;
  position: relative;
  background: url(../img/bg-policy.jpg) no-repeat top center / cover;
  z-index: 0;
  overflow: hidden;
}
.access::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 95.8rem;
  height: 63.9rem;
  position: absolute;
  top: -18.4rem;
  right: -14.6rem;
  pointer-events: none;
}

.access_deco-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 51.6rem;
  height: auto;
  pointer-events: none;
}
.access_deco-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 51.6rem;
  height: auto;
  pointer-events: none;
}
@media (max-width: 767px) {
  .access::before {
    width: 26rem;
    height: 20.6rem;
  }
}

.access__contents {
  width: 144rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 4.9rem;
  margin: 13.2rem auto 8.4rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img-list {
  width: 71.5rem;
  display: flex;
  gap: 3.5rem;
  flex-shrink: 0;
}
.access__img-list > li:first-child {
  width: 40rem;
} 
.access__img-list > li:nth-child(2) {
  width: 28rem;
} 

@media (max-width: 767px) {
  .access__img-list {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2.2rem;
  margin-right: 17rem;
  color: #FFF;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0;
  }
}

.access__list dt,
.access__list dd {
  padding: 2.2rem 0;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 600;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 0.5px #FFF;
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 0.5px #FFF;
  }
}

@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 .common__btn {
  margin: 10rem auto 19.7rem;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 5rem auto 10rem;
  }
}

.access__contact {
  background: url("../img/contact_bg.jpg") no-repeat center / cover;
  width: 110rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12.2rem 0;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contact {
    width: 90%;
  }
}

.access__contact p {
  font-size: max(14px, 2.4rem);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.15em;
  position: relative;
}

.access__contact p::before,
.access__contact p::after {
  content: "";
  background: url("../img/contact_deco.png") no-repeat center / contain;
  width: 4.1rem;
  height: 4.1rem;
  position: absolute;
}

.access__contact p::before {
  transform: translateX(100%);
  top: -2rem;
  right: 0;
}

.access__contact p::after {
  transform: translateX(-100%) scale(-1, -1);
  bottom: -2rem;
  left: 0;
}

.top__map {
  height: 42rem;
}

/*============================
	insta
============================*/
.insta {
  background: url(../img/bg-insta.jpg) no-repeat top center / cover;
  padding: 13.2rem 0 18.6rem;
}

.insta__contents {
  width: 84.4rem;
  margin: 9.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: 3.2rem;
}

.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: 26rem;
  height: 26rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	news
============================*/
.news {
  background: url(../img/bg-news.jpg) no-repeat top center / cover;
  padding: 12rem 0 11.4rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: flex;
  gap: 6rem 2.6rem;
  margin: 6rem auto 6.8rem;
}

@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: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.2em;
  margin-right: 1.5rem;
  font-weight: 500;
}
.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
  border-bottom: 1px solid #000;
  padding: 2rem 0 1rem;
  margin-bottom: 1rem;
}
.CMS-NEWS-LINK {
  font-weight: 300;
}

.CMS-NEWS-MORE-READ {
  display: none;
}