@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-adobe);
  font-size: max(21px, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.common__ttl span {
  display: block;
  font-family: var(--font-kaisei);
  font-size: max(12px, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 22rem);
  height: max(40px, 4.8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--red);
  width: 100%;
  height: 100%;
  border: solid 2px var(--black);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.2em;
  position: relative;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 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: 19rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.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: var(--bg-2);
  color: var(--white);
  padding: 12.5rem 0 16.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 8rem;
  }
}

.policy__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.policy__txt-wrapper::before {
  content: "";
  background: url("../img/policy_txt-deco.png") no-repeat center / contain;
  width: 60.4rem;
  height: 59rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.policy__txt-wrapper h2 {
  width: max(60px, 8.5rem);
  border-left: solid 1px var(--white);
  border-right: solid 1px var(--white);
  font-family: var(--font-adobe);
  font-size: max(18px, 3rem);
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}

.policy__txt-wrapper p {
  height: max(320px, 41rem);
  letter-spacing: 0.05em;
  line-height: 2.5;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 5rem 0 8rem;
}

.policy__img-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__img-wrapper {
    display: flex;
    gap: 20%;
    position: static;
  }
}

.policy__img {
  width: 40rem;
  display: flex;
  flex-direction: column;
  row-gap: 4.5rem;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.policy__img-1 {
  left: 0;
}

.policy__img-2 {
  right: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 40rem;
    position: relative;
    transform: none;
  }
}

.policy__img figcaption {
  width: max-content;
  height: max-content;
  font-family: var(--font-adobe);
  font-size: max(45px, 8.7rem);
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: upright;
  opacity: 0.5;
  position: absolute;
  transform: translate(50%, -50%);
  top: 50%;
  right: 0;
}

.policy__img-2 figcaption {
  transform: translate(-50%, -50%);
  left: 0;
  right: auto;
}

/*============================
	menu
============================*/
.menu__list {
  width: 100%;
  color: var(--white);
}

.menu__list-item {
  background: url("../img/menu_bg-1.jpg") no-repeat center / cover;
  padding: 13rem 0 9rem;
}

.menu__list-item:nth-of-type(2) {
  background: url("../img/menu_bg-2.jpg") no-repeat center / cover;
}

.menu__inner {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin: 0 auto 7rem;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__ttl {
  width: max(46px, 8.7rem);
  font-family: var(--font-adobe);
  font-size: max(45px, 8.7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  flex-shrink: 0;
  opacity: 0.5;
}

.menu__list-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
}

.menu__list-2 li {
  display: flex;
  gap: 5rem;
}

.menu__list-2 li:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-2 li,
  .menu__list-2 li:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 1.5rem;
  }

  .menu__list-2 li:nth-of-type(even) .menu__txt-wrapper {
    padding-top: 5rem;
  }
}

.menu__txt-wrapper h4 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.menu__txt-wrapper h4 span {
  display: block;
  width: auto;
  height: max(36px, 5.9rem);
  margin-bottom: 1.5rem;
}

.menu__txt-wrapper h4 span img {
  width: auto;
}

.menu__txt-wrapper p {
  letter-spacing: 0.15em;
  line-height: 2;
}

.menu__img {
  width: 54rem;
  height: 38rem;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    height: auto;
  }
}

.menu__list-2 li:first-of-type .menu__img::before {
  content: "";
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 25.1rem;
  height: 21.5rem;
  position: absolute;
  left: -6rem;
  bottom: -6rem;
  pointer-events: none;
}

.menu__list .menu__list-item:nth-of-type(2) .menu__list-2 li:first-of-type .menu__img::before {
  background: url("../img/menu_img-deco-2.jpg") no-repeat center / contain;
  width: 24rem;
  height: 16.8rem;
  left: -5.5rem;
  bottom: -3.5rem;
}

@media (max-width: 767px) {
  .menu__list-2 li:first-of-type .menu__img::before {
    right: -5rem;
    left: auto;
  }

  .menu__list .menu__list-item:nth-of-type(2) .menu__list-2 li:first-of-type .menu__img::before {
    left: auto;
    right: -5rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  color: var(--white);
  padding: 11rem 0 15rem;
}

.gallery__slider {
  height: 20rem;
  margin: 8.5rem 0 10.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	news
============================*/
.news {
  padding: 14rem 0 16.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 57rem;
  height: 52.4rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.news::before {
  top: 0;
  right: 0;
}

.news::after {
  transform: scale(-1, -1);
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 40rem;
    height: 36.7rem;
  }
}

.CMS-NEWS-INDEX {
  width: 75rem;
  height: auto;
  margin: 5rem auto 7rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
  }
}

.CMS-NEWS-ITEM:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  padding: 2.7rem 7.5rem 2.7rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
    row-gap: 1rem;
  }
}

.CMS-NEWS-LINK-CONTENT::before {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(6px, 0.8rem);
  height: max(10.5px, 1.4rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3rem;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover::before {
    right: 2rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
}

.CMS-NEWS-TIME {
  width: max(100px, 17rem);
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

.news__category {
  width: max-content;
  display: flex;
  gap: 4.5rem;
  margin: 6.5rem auto 0;
}

.news__btn {
  background-color: transparent;
  width: max(160px, 24rem);
  height: max(40px, 4.8rem);
  border: solid 2px var(--red);
  font-weight: 500;
  color: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .news__btn:hover {
    background-color: var(--red);
    color: var(--white);
  }
}

.news__btn::before {
  content: "";
  display: block;
  background-color: #191919;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left center;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news__btn[aria-selected="true"] {
  background-color: var(--red);
  color: var(--white);
}

[role="tabpanel"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateY(20px);
  top: 0;
  left: 0;
  right: 0;
}

[role="tabpanel"].active {
  opacity: 1;
  visibility: visible;
  position: static;
  transform: none;
  transition: 0.3s ease-in-out;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 13rem 0;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 8rem;
  margin: 8.5rem auto 8rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 52rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 8rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt {
  background-color: var(--red);
  width: max(75px, 11rem);
  font-weight: 500;
  padding: 2.4rem 1.6rem;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
  padding: 2.4rem 4.4rem;
}

.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%;
    padding: 2rem;
  }
}

.top__map {
  height: 38rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 11.5rem 0 15rem;
}

.insta__list {
  width: max-content;
  display: flex;
  gap: 4rem 7rem;
  margin: 5.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__list {
    flex-direction: column;
  }
}

.insta__list a {
  display: block;
  width: max(200px, 31.2rem);
  height: 100%;
  border: solid max(2px, 0.3rem) var(--black);
  padding: max(3px, 0.5rem);
}

.insta__list span {
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  font-family: var(--font-adobe);
  font-size: max(21px, 3.2rem);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6rem;
  padding: 2rem 0 2rem 3.5rem;
}

.insta__list li:nth-of-type(2) span {
  gap: 3rem;
}

.insta__list span::before {
  content: "";
  display: block;
  background: url("../img/insta.png") no-repeat center / contain;
  width: max(28px, 4.4rem);
  height: max(28px, 4.4rem);
}
