@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(21px, 3rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.news .common__ttl {
  font-size: max(24px, 4rem);
}

.common__ttl::before {
  content: "";
  background-color: #d1d1d1;
  width: 1px;
  height: 9.5rem;
  position: absolute;
  transform: translate(-50%, -100%);
  top: -1rem;
  left: 50%;
}

.news .common__ttl::before {
  display: none;
}

.common__btn {
  width: max(160px, 22.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: linear-gradient(90deg, transparent 9%, #e5e5e5 9%, #e5e5e5 91%, transparent 91%);
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background: linear-gradient(90deg, transparent 9%, var(--white) 9%, var(--white) 91%, transparent 91%);
}

.common__btn a::after {
  content: "";
  display: block;
  background-color: var(--black);
  width: max(65px, 9.7rem);
  height: 1px;
}

/*============================
  header
============================*/
@media (min-width: 768px) {
  .header.top .header__logo {
    top: 8.7rem;
    left: 8.5rem;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: max(80px, 13rem) 12rem 9.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: max(60px, 8rem) 0 0;
  }
}

.hero::after {
  content: "";
  background: url("../img/hero_deco-1.png") no-repeat center / contain;
  width: 32.2rem;
  height: 44.3rem;
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero::after {
    width: 26rem;
    height: 35.7rem;
  }
}

.hero__txt-wrapper {
  color: var(--brown);
  position: absolute;
  left: 17rem;
  bottom: 27rem;
  z-index: 3;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

@media (max-width: 767px) {
  .hero__txt-wrapper {
    width: 90%;
    left: 5%;
    bottom: 5%;
  }
}

.hero__txt-wrapper h2 {
  font-family: var(--font-en);
  font-size: max(36px, 6.6rem);
  font-weight: 400;
  line-height: 1;
}

.hero__txt-wrapper h2 span {
  display: block;
  margin: 0 0 7rem -8rem;
  transform: rotate(-15deg);
}

@media (max-width: 767px) {
  .hero__txt-wrapper h2 span {
    margin: 0 0 8rem -4rem;
  }
}

.hero__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.hero__slider {
  width: 100%;
  height: 100%;
  border-radius: 4rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero__slider {
    border-radius: 0;
  }
}

@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 {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 5rem 0 6.5rem;
}

.concept__contents {
  background-color: var(--white);
  width: 99.2rem;
  border-radius: 3rem;
  display: flex;
  padding: 7.5rem 8rem 6.5rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  margin: 2rem auto 0;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 8rem 6rem 5rem;
  }
}

.concept__txt-wrapper {
  width: 100%;
  text-align: center;
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 3rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
}

.concept__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 5rem 0 6rem;
}

/*============================
	news
============================*/
.news {
  padding: 12rem 0 10rem;
}

.news__inner {
  width: 122rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 7rem;
  padding-right: 5.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 0;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.topNews_wrap {
  width: 87rem;
}

@media screen and (max-width: 767px) {
  .topNews_wrap {
    width: 100%;
  }
}

.topNews_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3.8rem;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .topNews_list {
    grid-template-columns: 1fr;
  }
}

.topNews_item {
  display: block;
  width: 100%;
}

.topNews_image {
  display: block;
  width: 100%;
  height: 16.6rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .topNews_image {
    height: auto;
  }
}

.topNews_image img,
.topNews_image video {
  display: block;
  width: 100%;
  height: 100%;
}

.topNews_date,
.topNews_caption {
  font-weight: 500;
  color: #190d02;
}

.topNews_date {
  font-size: max(12px, 1.3rem);
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  display: flex;
  justify-content: space-between;
  gap: 7rem;
  padding: 26rem 0 5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    flex-wrap: wrap;
    gap: 7rem 0;
    padding: 26rem 0 10rem;
  }
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  left: 0;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.jpg") no-repeat center bottom / cover;
  width: 100%;
  height: 40rem;
  top: 0;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center bottom / contain;
  width: 26.2rem;
  height: 42.7rem;
  bottom: -11.5rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu::after {
    width: 18rem;
    height: 29.3rem;
    bottom: -8rem;
  }
}

.menu__txt-wrapper {
  order: 2;
  padding-right: 9.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }
}

.menu__ttl {
  font-size: max(18px, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 5rem;
  padding-top: 4rem;
  margin-right: -25rem;
}

.menu__ttl span {
  font-family: var(--font-en);
  font-size: max(40px, 8.4rem);
  font-weight: 400;
  text-transform: capitalize;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 10rem 0 6rem;
}

.menu .common__btn {
  margin: 0 0 0 auto;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img-1,
.menu__img-2 {
  display: block;
  height: 100%;
  flex-shrink: 0;
}

.menu__img-1 {
  width: 55.5rem;
  order: 1;
}

.menu__img-1 img:nth-of-type(2) {
  display: block;
  width: 27.6rem;
  margin: 2.4rem 0 0 auto;
}

.menu__img-2 {
  width: 34rem;
  margin-top: auto;
  order: 3;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img-1,
  .menu__img-2 {
    position: relative;
    z-index: 1;
  }

  .menu__img-1 {
    width: 50%;
    order: -1;
    z-index: 2;
  }

  .menu__img-1 img:nth-of-type(2) {
    width: 50%;
  }

  .menu__img-2 {
    width: 45%;
    order: 1;
  }
}

.menu__img-2::before {
  content: "";
  background-color: var(--white);
  width: 21.3rem;
  height: 45rem;
  position: absolute;
  top: -5rem;
  left: -6rem;
  pointer-events: none;
  z-index: -1;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-1);
  padding: 6rem 0 9.5rem;
  position: relative;
}

.gallery::before {
  content: "";
  background-color: var(--white);
  width: 100%;
  height: 14.4rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.gallery__slider {
  height: 32rem;
  margin: 16rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 32rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 5.5rem 0 18.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  width: 40rem;
  height: 30.9rem;
  position: absolute;
  right: 0;
  bottom: 10.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 28rem;
    height: 21.6rem;
    bottom: 3rem;
  }
}

.access__map {
  height: 44.6rem;
  margin: 4rem 0 14rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 69.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw - 5.5rem);
  overflow: hidden;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  margin: 2rem 0 7rem;
}

.access__list dt,
.access__list dd {
  width: 100%;
  letter-spacing: 0.1em;
}

.access__list dd {
  font-weight: 400;
}

.access__list dd:not(:last-of-type) {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 7.5rem 0 10.5rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 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;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
