@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(28px, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insta .common__ttl {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: max(20px, 2.5rem);
  position: relative;
}

.common__btn--bl a {
  border: solid 1px var(--black);
  color: var(--black);
}

.common__btn a::after {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(54px, 8.1rem);
  height: max(6px, 0.9rem);
  position: absolute;
  transform: translateY(-50%);
  top: 40%;
  right: -4rem;
  pointer-events: none;
}

.common__btn--bl a::after {
  background: url("../img/btn_arw-bl.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(88rem, 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: 14rem;
  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;
}

/*============================
	news
============================*/
.news {
  color: var(--black);
  padding: 14rem 0 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 11rem;
}

@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;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 19.5rem 0 15rem;
}

.concept__inner {
  width: 93rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__inner {
    width: 90%;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    display: flex;
    column-gap: 6.5rem;
  }
}

.concept__txt-wrapper h2 {
  font-family: var(--font-en);
  font-size: max(28px, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (max-width: 767px) {
  .concept__txt-wrapper p {
    margin: 2rem 0 4rem;
  }
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 7rem 0 0;
  }
}

.concept__img {
  width: calc(100% - 3rem);
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 15rem 0 16.5rem;
  position: relative;
  overflow: hidden;
}

.menu__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 8.5rem 0 6.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    margin: 8.5rem 0;
  }
}

.menu__list-item {
  display: flex;
  justify-content: space-between;
  row-gap: 4rem;
}

.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__list-item:nth-of-type(even) {
    row-gap: 0;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 50rem;
  }

  .menu__list-item:nth-of-type(1) .menu__txt-wrapper {
    padding-top: 2rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 span {
  display: flex;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span {
  margin: 0 0 2rem -2rem;
}

.menu__list-item:nth-of-type(4) .menu__txt-wrapper h3 span {
  align-items: center;
  margin: 0 0 0 -2.3rem;
}

.menu__txt-wrapper h3 span img {
  width: max(100px, 16.1rem);
  height: auto;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span img {
  width: max(82px, 13.2rem);
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper h3 span img {
  width: max(105px, 16.8rem);
}

.menu__list-item:nth-of-type(4) .menu__txt-wrapper h3 span img {
  width: max(118px, 19rem);
}

.menu__txt-wrapper h3 span::after {
  content: "";
  display: block;
  background-color: #8c8c8c;
  width: 100%;
  height: 1px;
  margin: 0 0 0 -2.5rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 span::after {
  margin: 0 0 0 5rem;
}

.menu__list-item:nth-of-type(4) .menu__txt-wrapper h3 span::after {
  margin: 0;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    padding-right: 4rem;
  }
}

.menu__img {
  width: 72rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(1) .menu__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(2) .menu__img {
  width: 68.1rem;
  margin: -9.5rem 0 0 -12rem;
}

.menu__list-item:nth-of-type(3) .menu__img {
  width: 50rem;
}

.menu__list-item:nth-of-type(4) .menu__img {
  width: 66.7rem;
  margin: -3.5rem 0 0 -9.5rem;
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(1) .menu__img,
  .menu__list-item:nth-of-type(2) .menu__img,
  .menu__list-item:nth-of-type(3) .menu__img,
  .menu__list-item:nth-of-type(4) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  color: var(--black);
  padding: 13rem 0 15rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 9rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") repeat center top / 100% auto;
  padding: 22.5rem 0 20.5rem;
}

@media (max-width: 767px) {
  .access {
    padding: 10rem 0 12rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access .common__ttl {
  display: block;
  padding-top: 1rem;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 5rem 0 6rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.2rem 0;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.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%;
  }

  .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;
  }
}

.access__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.top__map {
  height: 43rem;
}

/*============================
	insta
============================*/
.insta {
  color: var(--black);
  padding: 15rem 0 18.5rem;
}

.insta__contents {
  width: 82rem;
  margin: 8rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.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: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	company
============================*/
.company {
  background: url("../img/company_bg.jpg") no-repeat center / cover;
  padding: 13rem 0 13.5rem;
}

.company__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.company__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 5rem 0 6.5rem;
}
