@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  display: block;
  font-size: max(21px, 3rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl::before,
.common__ttl::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(78px, 11.7rem);
  height: max(12px, 1.8rem);
}

.common__ttl--wt::before,
.common__ttl--wt::after {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__ttl::after {
  transform: scale(1, -1);
  margin-top: 0.5rem;
}

.common__btn {
  width: max(167px, 20.9rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / cover;
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 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: 11.5rem 0;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 5.5rem auto 10rem;
}

@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(--white);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-1);
  padding: 11.5rem 0 10.5rem;
  position: relative;
}

.concept__ttl {
  font-family: var(--font-en);
  font-size: 15.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.8;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.2;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  .concept__ttl {
    font-size: 12rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 16rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 6rem;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4.5rem 0 10rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img-list {
  width: 62rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .concept__img-list {
    width: 90%;
    margin: 0;
  }
}

.concept__img-list li:nth-of-type(2) {
  width: 35rem;
  margin: -19rem -10rem 0 auto;
}

@media (max-width: 767px) {
  .concept__img-list li:nth-of-type(2) {
    width: 60%;
    margin: -19rem -4rem 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 12.5rem 0 15rem;
  position: relative;
}

.menu__list {
  width: 54rem;
  display: flex;
  flex-direction: column;
  row-gap: 7rem;
  margin: 8rem auto 11rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__txt-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 4rem;
  }
}

.menu__txt-wrapper h3 {
  width: 100%;
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.menu__txt-wrapper h3::before,
.menu__txt-wrapper h3::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

.menu__txt-wrapper h3 span {
  display: block;
  flex-shrink: 0;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2.4;
  text-align: center;
}

.menu__img-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22rem;
  position: absolute;
  top: 12.5rem;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__img-list {
    gap: 4rem;
    position: static;
    margin-top: 8rem;
  }
}

.menu__img-list ul {
  display: flex;
  justify-content: space-between;
}

.menu__img-list li {
  display: block;
  width: 32rem;
}

@media (max-width: 767px) {
  .menu__img-list li {
    width: calc(50% - 2rem);
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-1);
  padding: 15.5rem 0;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  background: url("../img/gallery_deco.png") no-repeat center / cover;
  width: 100%;
  height: 6.5rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.gallery::after {
  transform: scale(1, -1);
  top: auto;
  bottom: 0;
}

.gallery__slider {
  height: 22rem;
  margin: 6.5rem 0 8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 34rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 9.5rem 0 20.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6.5rem;
  margin: 8.5rem auto 6.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    margin-top: -2.5rem;
  }
}

.access__list dt,
.access__list dd {
  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(--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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: var(--bg-2);
  padding: 10.5rem 0 12rem;
  position: relative;
}

@media (max-width: 767px) {
  .recruit {
    padding: 10.5rem 5% 12rem; /* ← 左右均等のパディングに */
    text-align: center;
  }

  .recruit::before {
    left: 50%; /* 中央起点に */
    transform: translateX(-50%); /* 左右中央揃え */
  }
}


.recruit::before {
  content: "";
  width: 46rem;
  height: 59rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .recruit::before {
    width: 40rem;
    height: 51.3rem;
    left: -12rem;
  }
}

.recruit__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .recruit__txt-wrapper {
    width: 60rem;
  }
}

.recruit__txt-wrapper p {
  text-align: center;
  margin: 5rem 0 6.5rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-1);
  padding: 10.5rem 0 21rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 9rem 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;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 45rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
