@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.8rem);
  font-weight: 600;
  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, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(45px, 7.1rem);
  height: max(31.7px, 5rem);
}

.gallery .common__ttl::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(160px, 22.8rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #e93228;
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.7rem);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--bl a {
  background-color: var(--black);
}

.common__btn a::before {
  content: "";
  display: block;
  background-color: var(--yellow);
  width: max(16px, 3rem);
  height: max(16px, 3rem);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 4px;
  bottom: 4px;
}

/*============================
	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;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  padding: 20.5rem 0;
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 8rem 12rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 1.5rem;
  }
}

.concept__txt-wrapper::before {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 33rem;
  height: 18.4rem;
  position: absolute;
  top: -7rem;
  right: -10rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept__txt-wrapper::before {
    width: 27rem;
    height: 15rem;
    top: -4rem;
    right: -2rem;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper h2 span {
  display: block;
  width: 27.3rem;
  margin: 0 0 3rem -2rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 8rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 64.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

.concept__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 2px var(--yellow);
  position: absolute;
  top: 2rem;
  left: 2rem;
  pointer-events: none;
  z-index: -1;
}

/*============================
	menu
============================*/
.menu {
  padding: 14rem 0 20.5rem;
}

.menu__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 8rem;
  margin: 3rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
    margin: 6rem auto 0;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 5rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: 13.7rem;
  margin-bottom: 2rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2.5rem 0 7rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img-list {
  width: 55rem;
  height: 100%;
  display: flex;
  gap: 3.2rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img-list {
    width: 100%;
  }
}

.menu__img-list > li:first-of-type {
  margin-top: 8.5rem;
}

.menu__img-list ul {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 7.5rem 0 13.5rem;
}

.gallery__slider {
  height: 25.6rem;
  margin: 6rem 0 10rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 9.5rem 0 15rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 28.8rem;
  height: 20.2rem;
  position: absolute;
  top: 6.5rem;
  right: 6.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 21rem;
    height: 14.7rem;
    top: 2rem;
    right: 2rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6.5rem;
  margin: 10rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 66rem;
  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: -2.5rem 0 6rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 6rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 400;
}

.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;
  }
}

/*============================
	insta
============================*/
.insta {
  padding: 10rem 0 16rem;
}

.insta__contents {
  width: 82rem;
  margin: 7rem 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;
  }
}
