@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(24px, 4.8rem);
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
}

.common__btn a {
  background-color: var(--blue);
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: max(8px, 1.2rem);
  padding-right: max(8px, 1.2rem);
  position: relative;
}

.common__btn--wt a {
  background-color: transparent;
  border: solid 1px var(--white);
}

.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--blue);
  border-top: none;
  border-left: none;
  position: absolute;
  top: max(3px, 0.5rem);
  left: max(3px, 0.4rem);
}

.common__btn--wt a::before {
  border: solid 1px var(--white);
  border-top: none;
  border-left: none;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(28.7px, 3.9rem);
  height: max(4px, 0.5rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::after {
  content: "";
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 22.5rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  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;
}

/*============================
	concept
============================*/
.concept {
  padding: 16.5rem 0 12rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .concept {
    padding: 10rem 0 12rem;
  }
}

.concept::before {
  content: "";
  background: url("../img/concept_3.jpg") no-repeat center / contain;
  width: 40.5rem;
  height: 30rem;
  position: absolute;
  right: 12rem;
  bottom: -7.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::before {
    width: 30rem;
    height: 22.2rem;
    right: 2rem;
    bottom: -14rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem 9rem;
  margin: 0 auto;
}

.concept__contents:nth-of-type(2) {
  flex-direction: row-reverse;
  gap: 4rem 6rem;
  margin: -1rem auto 0;
}

@media (max-width: 767px) {
  .concept__contents,
  .concept__contents:nth-of-type(2) {
    width: 90%;
    flex-direction: column-reverse;
  }

  .concept__contents:nth-of-type(2) {
    margin: 8rem auto 0;
  }
}

.concept__txt-wrapper {
  width: 49rem;
  position: relative;
  z-index: 1;
}

.concept__contents:nth-of-type(2) .concept__txt-wrapper {
  width: 100%;
  padding-top: 8.5rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper,
  .concept__contents:nth-of-type(2) .concept__txt-wrapper {
    width: 100%;
    padding: 0;
  }
}

.concept__txt-wrapper h2 {
  border-bottom: solid 1px var(--white);
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: 13.7rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 5rem;
}

.concept__contents:nth-of-type(2) .concept__txt-wrapper p {
  margin-bottom: 10rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper p,
  .concept__contents:nth-of-type(2) .concept__txt-wrapper p {
    margin-bottom: 0;
  }
}

.concept__img {
  width: 68rem;
  height: 100%;
  flex-shrink: 0;
  margin: 3.5rem calc(50% - 50vw) 0 0;
}

.concept__contents:nth-of-type(2) .concept__img {
  width: 40rem;
  margin: 0;
}

@media (max-width: 767px) {
  .concept__img,
  .concept__contents:nth-of-type(2) .concept__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  position: relative;
  z-index: 1;
}

.menu::before,
.menu::after {
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  background: url("../img/menu_txt-deco-1.png") no-repeat center / contain;
  width: 51.8rem;
  height: 35.6rem;
  top: 18rem;
  right: 2.5rem;
}

.menu::after {
  background: url("../img/menu_txt-deco-2.png") no-repeat center / contain;
  width: 35.6rem;
  height: 62.6rem;
  left: 8rem;
  bottom: 3rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 40rem;
    height: 27.5rem;
    top: 24rem;
  }

  .menu::after {
    width: 28rem;
    height: 49.2rem;
    left: 2rem;
    bottom: 2rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 11rem;
  padding: 17rem 0 16rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    padding: 30rem 0 20rem;
  }
}

.menu__list::before,
.menu__list::after {
  content: "";
  height: 69.4rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list::before {
  background: url("../img/menu_deco-1.png") no-repeat top left / cover;
  width: 132.2rem;
  top: 0;
  left: calc(50% - 50vw);
}

.menu__list::after {
  background: url("../img/menu_deco-2.png") no-repeat right bottom / cover;
  width: 113.2rem;
  bottom: 0;
  right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__list::before,
  .menu__list::after {
    height: 40rem;
  }

  .menu__list::before {
    width: 76.2rem;
  }

  .menu__list::after {
    width: 65.2rem;
  }
}

.menu__list-item {
  display: flex;
  justify-content: flex-end;
}

.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: 46.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    width: 100%;
  }
}

.menu__ttl {
  font-family: var(--font-en);
  font-size: 13.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0;
}

.menu .common__btn {
  margin: 9rem 0 0 0;
}

@media (max-width: 767px) {
  .menu .common__btn {
    margin: 9rem auto 0;
  }
}

.menu__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(odd) .menu__img {
  margin-right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(even) .menu__img {
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(odd) .menu__img,
  .menu__list-item:nth-of-type(even) .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 12rem 0 15rem;
}

.gallery__slider-wrapper {
  margin: 9rem 0 11.5rem;
}

.gallery__slider {
  width: 100%;
  height: 30rem;
}

.gallery__slider_1 {
  margin-bottom: 4rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 37.2rem;
  margin: 0 1.6rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
}

.recruit__txt-wrapper {
  width: max(240px, 48rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6rem;
  padding: 15rem 0 14.5rem;
  margin: 0 auto;
  position: relative;
}

.recruit__txt-wrapper::before {
  content: "";
  background-color: #562b08;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-1);
  padding: 12.5rem 0 18rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 9rem;
  margin: 9rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 60.5rem;
  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: -2rem 0 6rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 6rem;
  }
}

.access__list dt,
.access__list dd {
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.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 0 0 1rem;
  }
}

.top__map {
  height: 42rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 11rem 0 17.5rem;
}

.insta__contents {
  width: 82rem;
  margin: 6rem 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;
  }
}
