@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.common__btn {
  width: max(150px, 20.4rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: max(6px, 1rem);
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / contain;
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@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;
}

/*============================
	news
============================*/
.news {
  padding: 16rem 0 17rem;
}

.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;
}

@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: var(--bg-2);
  color: var(--white);
  padding: 6.5rem 0;
}

.policy__inner {
  background-color: var(--red);
  padding: 18rem 0 16.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy__inner {
    padding: 0 0 16.5rem;
  }
}

.policy__inner::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / cover;
  width: 76rem;
  height: 71.4rem;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__inner::before {
    width: 55rem;
    height: 51.6rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  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 {
    width: 53rem;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(24px, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-bottom: 6rem;
}

.policy__txt-wrapper h3 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4rem 0 8rem;
}

.policy .common__btn {
  margin: 0;
}

.policy__img {
  width: 76.6rem;
  position: absolute;
  top: -8.5rem;
  right: -3rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    margin: -10rem 0 5rem;
    position: static;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 11.5rem 0 15rem;
  position: relative;
  overflow: hidden;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / cover;
  width: 56.2rem;
  height: 37.4rem;
  top: 0;
  right: 7.2rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / cover;
  width: 59.8rem;
  height: 39.8rem;
  left: -1.2rem;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 45rem;
    height: 30rem;
    right: -5rem;
  }

  .menu::after {
    width: 48rem;
    height: 31.9rem;
    left: -4rem;
  }
}

.menu__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu .common__ttl {
  flex-direction: row;
  align-items: baseline;
}

.menu__list {
  display: flex;
  flex-direction: column;
  row-gap: 10.5rem;
  margin: 14rem auto 10rem;
}

@media (max-width: 767px) {
  .menu__list {
    margin: 12rem auto;
  }
}

.menu__list-item {
  display: flex;
  align-items: center;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  background-color: var(--white);
  width: 100%;
  border: solid 1rem var(--black);
  border-radius: 3rem;
  padding: 4.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    margin-left: -10rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    margin: 0 -10rem 0 0;
  }
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 33.6rem;
  height: 22rem;
  position: absolute;
  bottom: -16.5rem;
  left: -15rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper::before {
    width: 30rem;
    height: 19.6rem;
    bottom: -15rem;
    left: -8rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.menu__txt-wrapper h3::before {
  content: "";
  background: url("../img/line.png") repeat-x center / contain;
  width: 100%;
  height: max(3px, 0.4rem);
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

@media (max-width: 767px) {
  .menu .common__btn {
    margin: 0 0 0 auto;
  }
}

.menu__img {
  width: 64rem;
  height: 100%;
  border-radius: 3rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img figcaption {
  display: block;
  width: auto;
  width: max(222.7px, 35.5rem);
  height: max(32px, 5.1rem);
  position: absolute;
  left: 2.5rem;
  bottom: 2rem;
}

.menu__list-item:nth-of-type(even) .menu__img figcaption {
  width: max(150px, 23.9rem);
  left: auto;
  right: 2.5rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 6.5rem 0;
}

.gallery__inner {
  background-color: var(--red);
  padding: 9rem 0 8.5rem;
}

.gallery__slider {
  height: 20rem;
  margin: 9rem 0 5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 29rem;
  border-radius: 1rem;
  margin: 0 0.7rem;
  overflow: hidden;
}

/*============================
	access
============================*/
.access {
  padding: 12rem 0 15.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 37.8rem;
  height: 36rem;
  position: absolute;
  top: -17.5rem;
  right: 10.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 28rem;
    height: 26.6rem;
    top: -10rem;
    right: -2rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 72rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -3.4rem 0 6rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 6rem;
  }
}

.access__list dt,
.access__list dd {
  padding: 3.4rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 48rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 14rem 0 20rem;
  position: relative;
}

.insta::before {
  content: "";
  background-color: #ff8600;
  opacity: 0.4;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.insta__contents {
  width: 88.7rem;
  margin: 7.5rem 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;
  border-radius: 1.2rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
