@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 4rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1;
}

.common__ttl--wt {
  color: var(--white);
}

@media (max-width: 767px) {
  .common__ttl {
    font-size: max(24px, 3.6rem);
  }
}

.common__btn {
  width: max-content;
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn.png") no-repeat center / contain;
  width: 17.4rem;
  height: 15rem;
  margin-top: -0.5rem;
}

.common__btn--wt a::after {
  background: url("../img/btn-wt.png") no-repeat center / contain;
}

@media (max-width: 767px) {
  .common__btn a::after {
    width: 15rem;
    height: 12.9rem;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(100rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::after {
  content: "";
  background: url("../img/hero_deco.jpg") no-repeat center bottom / cover;
  width: 100%;
  height: 33.2rem;
  clip-path: polygon(0 19.8rem, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  left: 0;
  bottom: -13rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero::after {
    height: 15rem;
    clip-path: polygon(0 8.8rem, 100% 0, 100% 100%, 0% 100%);
    bottom: -5rem;
  }
}

.hero__bg {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 8rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: max(2px, 0.4rem);
  height: max(60px, 10rem);
  animation: scroll 2.5s infinite;
}

.hero__rental-book {
  position: absolute;
  left: max(16px, 4rem);
  bottom: max(24px, 6rem);
  z-index: 11;
  margin: 0;
  max-width: min(90%, 48rem);
  text-align: left;
}

.hero__rental-book a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: max(52px, 6.4rem);
  padding: 1.4rem 2.8rem;
  font-size: max(13px, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: var(--brown);
  background-color: var(--yellow);
  border: solid 2px #ffec95;
  text-decoration: none;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .hero__rental-book {
    left: max(12px, 2.4rem);
    bottom: max(32px, 6.4rem);
    max-width: calc(100% - max(24px, 4.8rem));
  }

  .hero__rental-book a {
    font-size: max(12px, 1.45rem);
    padding: 1.2rem 1.6rem;
    min-height: max(48px, 5.6rem);
  }
}

/*============================
	about
============================*/
.about {
  padding: 25rem 0 10rem;
}

.about__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.about__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-top: 4.5rem;
}

.about__img {
  display: block;
  width: 133.8rem;
  margin: 6.5rem auto 5rem;
}

@media (max-width: 767px) {
  .about__img {
    width: 95%;
    margin: 6.5rem auto 5rem;
  }
}

/*============================
	lineup
============================*/
.lineup {
  background: var(--bg-1);
  padding: 27rem 0 34.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .lineup {
    padding: 18rem 0 24rem;
    position: relative;
  }
}

.lineup::before,
.lineup::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.lineup::before {
  background: url("../img/lineup_deco-1.png") no-repeat center / cover;
  height: 18rem;
  top: 0;
}

.lineup::after {
  background: url("../img/lineup_deco-2.png") no-repeat center / cover;
  height: 30.7rem;
  bottom: 0;
}

@media (max-width: 767px) {
  .lineup::before {
    height: 8.1rem;
  }

  .lineup::after {
    height: 13.9rem;
  }
}

.lineup__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lineup__inner {
    width: 90%;
  }
}

.lineup__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 7.5rem;
  margin: 13.5rem auto 5rem;
}

.lineup__list-item {
  display: flex;
}

.lineup__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .lineup__list-item,
  .lineup__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.lineup__txt-bg {
  width: 100%;
  color: var(--white);
  padding: 5rem 6rem;
  position: relative;
}

@media (min-width: 768px) {
  .lineup__txt-bg {
    height: 100%;
    padding: 8.5rem 10rem 10.5rem 5.5rem;
    margin: 0 -2.5rem 0 0;
  }

  .lineup__list-item:nth-of-type(odd) .lineup__txt-bg {
    padding: 8.5rem 7rem 10.5rem 8.5rem;
    margin: 7.5rem 0 0 -2.5rem;
  }
}

.lineup__txt-bg::before {
  content: "";
  background-color: #252322;
  mix-blend-mode: soft-light;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lineup__txt-bg p {
  letter-spacing: 0.05em;
  line-height: 2.5;
}

.lineup .common__btn {
  margin: 0;
}

.lineup__img {
  width: 56.3rem;
  height: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lineup__list-item:nth-of-type(even) .lineup__img {
    margin-top: 8rem;
  }
}

@media (max-width: 767px) {
  .lineup__img {
    width: 100%;
  }
}

/*============================
	rental
============================*/
.rental {
  padding: 18rem 0 16rem;
}

@media (max-width: 767px) {
  .rental {
    padding: 12rem 0 11rem;
  }
}

.rental__inner {
  width: 98rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .rental__inner {
    width: 90%;
  }
}

.rental__contents {
  display: flex;
  justify-content: space-between;
  gap: 4rem 16rem;
}

@media (max-width: 767px) {
  .rental__contents {
    flex-direction: column-reverse;
  }
}

.rental__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin-top: 5rem;
}

.rental__img {
  display: block;
  width: 52.8rem;
  height: 100%;
  flex-shrink: 0;
  margin: 5rem -16rem 0 0;
}

@media (max-width: 767px) {
  .rental__img {
    width: 100%;
    margin: 0;
  }
}

.rental-others {
  background-color: #d0daf9;
  padding: 2.5rem 0 4rem;
}

.rental__list li {
  display: flex;
  align-items: center;
  gap: 6rem 24rem;
  padding: 12rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .rental__list li {
    padding-right: 3rem;
  }
}

@media (max-width: 767px) {
  .rental__list li {
    flex-direction: column;
  }
}

.rental__list li:not(:first-of-type)::before {
  content: "";
  background-color: var(--white);
  width: 110rem;
  height: max(2px, 0.3rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
  pointer-events: none;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-1);
  padding: 33.5rem 0 28rem;
  margin-bottom: -21rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .insta {
    padding: 15rem 0 18rem;
    margin-bottom: -10rem;
  }
}

.insta::before {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center top / cover;
  width: 100%;
  height: 28.9rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .insta::before {
    height: 13rem;
  }
}

.insta__inner {
  width: 87.7rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__inner {
    width: 90%;
  }
}

.insta__contents {
  width: 100%;
  margin-top: 5rem;
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 1.3rem;
}

.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: 28.4rem;
  height: 28.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
