@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-kaisei);
  font-size: max(21px, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}

.common__ttl::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(85px, 14.2rem);
  height: max(12px, 2rem);
}

.common__btn {
  width: max(160px, 22rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--red);
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.7rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	header
============================*/
.header.top {
  height: max(90rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    width: 34rem;
    padding-top: 6rem;
  }

  .header.top .header__logo {
    margin: 0 auto 8rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1000px) {
  .header.top {
    height: max(95rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header.top {
    height: auto;
  }

  .header.top .header__logo {
    background-color: var(--white);
    width: max(70px, 10rem);
    padding: 2rem 0;
    top: 0;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding-left: 34rem;
  position: relative;
}

@media (max-width: 1000px) {
  .hero {
    height: max(95rem, 100vh);
  }
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
  left: 30rem !important;
  bottom: 4px !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    flex-direction: row;
    transform: translateY(100%);
    left: 5% !important;
    bottom: -3rem !important;
  }
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  width: 9px !important;
  height: 9px !important;
  border: solid 1px var(--black);
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--black);
}

/*============================
	news
============================*/
.news {
  padding: 14.5rem 0 13rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  width: 54.6rem;
  height: 45.4rem;
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
}

.news::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  top: 0;
  right: 0;
}

.news::after {
  background: url("../img/deco_2.png") no-repeat center / contain;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 45rem;
    height: 37.4rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4.5rem auto 6rem;
  position: relative;
  z-index: 1;
}

@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: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") repeat center / 100% auto;
  color: var(--white);
  padding: 14.5rem 0 16rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 14.5rem 0 18rem;
  }
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 72rem;
  height: 46rem;
  right: 0;
  bottom: 0;
}

.policy::after {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  opacity: 0.6;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .policy::before {
    width: 50rem;
    height: 31.9rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 5rem 6rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 9.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(400px, 44rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper::before {
  content: "";
  background: url("../img/policy_txt-deco.png") no-repeat center / contain;
  width: 55.4rem;
  height: 54.2rem;
  position: absolute;
  top: -11.5rem;
  right: -15rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::before {
    left: -4rem;
    right: auto;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 0 0 auto;
  }
}

.policy__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 90%;
  }
}

.policy__img img:nth-of-type(2) {
  width: 36.4rem;
  margin: -7rem -7rem 0 auto;
}

@media (max-width: 767px) {
  .policy__img img:nth-of-type(2) {
    width: 55%;
    margin: -7rem -7rem 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 13rem 0 14.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    padding: 16rem 0 14.5rem;
  }
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 58.3rem;
  height: 47.7rem;
  top: -29rem;
  left: 7rem;
  z-index: 1;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center top / cover;
  width: 100%;
  height: 74rem;
  left: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  z-index: -1;
}

@media (max-width: 767px) {
  .menu::before {
    width: 42rem;
    height: 34.3rem;
    top: -16rem;
    left: -4rem;
  }

  .menu::after {
    height: 50rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 9rem;
  margin: 10.5rem auto 11.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 5rem 6rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 3rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}

.menu__txt-wrapper p {
  background: url("../img/menu_txt-bg.jpg") repeat center / 100% auto;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 2.25;
  padding: 4.5rem 6rem 5.5rem;
  margin-right: -12rem;
  position: relative;
}

.menu__list-item:nth-of-type(even) .menu__txt-wrapper p {
  margin: 0 0 0 -12rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper p,
  .menu__list-item:nth-of-type(even) .menu__txt-wrapper p {
    margin: 0;
  }
}

.menu__txt-wrapper p::before {
  content: "";
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.menu__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img figcaption {
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: max(45px, 6.5rem);
  height: max(201px, 29.1rem);
  font-size: max(24px, 3.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  position: absolute;
  top: -3rem;
  right: 1.5rem;
  z-index: 1;
}

.menu__list-item:nth-of-type(even) .menu__img figcaption {
  left: 1.5rem;
  right: auto;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  color: var(--white);
  padding: 11rem 0 13rem;
  position: relative;
}

.gallery::before {
  content: "";
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 45.8rem;
  height: 32rem;
  position: absolute;
  top: -17.5rem;
  right: 4rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 32rem;
    height: 22.3rem;
    top: -12rem;
    right: -4rem;
  }
}

.gallery__slider {
  height: 20rem;
  margin: 6.5rem 0 10rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  padding: 11rem 0 13.5rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  width: 54.6rem;
  height: 45.4rem;
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
}

.access::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  top: 0;
  right: 0;
}

.access::after {
  background: url("../img/deco_2.png") no-repeat center / contain;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .access::before,
  .access::after {
    width: 45rem;
    height: 37.4rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 4.5rem;
  margin: 11.5rem auto 7.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 47rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    margin-top: -2.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@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: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 11.5rem 0 17rem;
}

.insta__contents {
  width: 90rem;
  margin: 8.5rem auto 8rem;
}

@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: 29rem;
  height: 28rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

.insta__link {
  width: 90rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__link {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.insta__link li a {
  background-color: #e22020;
  width: 100%;
  height: max(60px, 10rem);
  border: solid 2px var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta__link li:nth-of-type(2) a {
  background-color: #ecad39;
}

.insta__link li img {
  width: 24.2rem;
  height: auto;
}

.insta__link li:nth-of-type(2) img {
  width: 20rem;
}
