@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3.2rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.concept .common__ttl,
.room__line .common__ttl {
  flex-direction: row;
  align-items: baseline;
}

.common__ttl span {
  display: block;
  font-size: max(14px, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta .common__ttl span,
.sister .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(180px, 24rem);
  height: max(40px, 5.2rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.news .common__btn {
  width: max(120px, 19rem);
}

.common__btn a {
  background-color: var(--green);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  padding-left: 2rem;
  position: relative;
}

.news .common__btn a {
  gap: 3rem;
  padding-left: 1rem;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(6px, 0.7rem);
  height: max(11px, 1.3rem);
  pointer-events: none;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(88rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, var(--white), var(--brown));
  width: 100%;
  height: 24rem;
  opacity: 0.5;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  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;
}

/*============================
	news
============================*/
.news {
  padding: 13rem 0 15rem;
}

.news__inner {
  background-color: var(--white);
  width: 110rem;
  border-radius: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 3.6rem;
  padding: 6rem 6.5rem 6rem 5rem;
  margin: 0 auto;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
}

.CMS-NEWS-ITEM:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  padding: 2.5rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    display: block;
    padding: 2.5rem 5rem 2.5rem 0;
  }
}

.CMS-NEWS-LINK-CONTENT::before {
  content: "";
  background: url("../img/btn_arw-bl.png") no-repeat center / contain;
  width: max(6px, 0.8rem);
  height: max(10.5px, 1.4rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3rem;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover::before {
    right: 2rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.1em;
}

.CMS-NEWS-TIME {
  width: max(110px, 17rem);
  flex-shrink: 0;
}

.CMS-NEWS-LINK {
  width: 45.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .CMS-NEWS-TIME,
  .CMS-NEWS-LINK {
    width: 100%;
  }

  .CMS-NEWS-TIME {
    margin-bottom: 1rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  padding: 14.5rem 0 16.5rem;
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  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: 11rem;
    margin-left: -20rem;
    z-index: 1;
  }
}

.concept__txt-wrapper::before {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 31.2rem;
  height: 24.2rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept__txt-wrapper::before {
    width: 26rem;
    height: 20.1rem;
    top: -60rem;
  }
}

.concept__txt-bg {
  background-color: var(--white);
  width: 100%;
  border-radius: 2rem;
  padding: 6rem 5.5rem 6.5rem;
  margin-bottom: 5rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.concept__txt-bg::before,
.concept__txt-bg::after {
  content: "";
  background: url("../img/concept_border.png") repeat center top / 100% auto;
  width: calc(100% - 4rem);
  height: calc(50% - 2rem);
  position: absolute;
  transform: translateX(-50%);
  top: 2rem;
  left: 50%;
  pointer-events: none;
}

.concept__txt-bg::after {
  transform: translateX(-50%) scale(1, -1);
  top: auto;
  bottom: 2rem;
}

.concept__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0 0 0 auto;
  }
}

.concept__img {
  width: 76rem;
  height: 49rem;
  flex-shrink: 0;
  object-fit: cover;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img img {
  border: solid max(3px, 0.7rem) var(--white);
  border-radius: 2rem;
}

/*============================
	room
============================*/
.room {
  padding: 12.5rem 0 15.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .room {
    padding: 12.5rem 0 24rem;
  }
}

.room::before {
  content: "";
  background: url("../img/room_deco.png") no-repeat center / contain;
  width: 19rem;
  height: 15.8rem;
  position: absolute;
  top: 9.5rem;
  left: 8rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .room::before {
    width: 15rem;
    height: 12.5rem;
    top: 5rem;
    left: 3rem;
  }
}

.room__contents {
  width: 110rem;
  display: flex;
  gap: 4rem 12rem;
  padding-left: 3rem;
  margin: 9.5rem auto 9rem;
}

@media (max-width: 767px) {
  .room__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.room__txt-wrapper {
  width: 100%;
}

.room__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
}

.room__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 11rem;
}

@media (min-width: 768px) {
  .room .common__btn {
    margin: 0;
  }
}

.room__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .room__img {
    width: 90%;
    margin-left: auto;
  }
}

.room__img img {
  border: solid max(3px, 0.7rem) var(--white);
  border-radius: 2rem;
}

.room__img img:nth-of-type(2) {
  width: 32rem;
  margin: -13rem 0 0 -7.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .room__img img:nth-of-type(2) {
    width: 55%;
  }
}

.room__line {
  background-color: var(--white);
  width: 72rem;
  border: solid max(3px, 0.7rem) #06c755;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 5rem 5rem 5rem 6rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .room__line {
    width: 90%;
    flex-direction: column;
    padding: 5rem 6rem 6rem;
  }
}

.room__line::before,
.room__line::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.room__line::before {
  background: url("../img/room_line-deco-1.png") no-repeat center / contain;
  width: 24rem;
  height: 18.8rem;
  transform: translateX(-100%);
  left: -4.5rem;
  bottom: 1.5rem;
}

.room__line::after {
  background: url("../img/room_line-deco-2.png") no-repeat center / contain;
  width: 25.6rem;
  height: 20.2rem;
  transform: translateX(100%);
  right: -3.5rem;
  bottom: 0.5rem;
}

@media (max-width: 767px) {
  .room__line::before {
    transform: translateY(100%);
    left: -2rem;
    bottom: -3rem;
  }

  .room__line::after {
    transform: translateY(100%);
    right: -3rem;
    bottom: -2rem;
  }
}

.room__line-icon {
  display: block;
  width: 13.4rem;
  flex-shrink: 0;
}

.room__line-txt {
  width: 100%;
}

.room__line-txt p {
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 1rem 0 2.5rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 12rem 0 17rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 6.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;
  }
}

/*============================
	sister
============================*/
.sister {
  background: var(--bg-3);
  padding: 13.5rem 0 15.5rem;
}

.sister__list {
  width: 65%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin: 7rem auto 0;
}

.sister__list li {
  background-color: var(--white);
  border-radius: 2rem;
  padding: 1.8rem 1.8rem 3.5rem;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .sister__list li {
    padding: 1.8rem 1.8rem 5rem;
    width: 90%;
    width: 100%;
  }
  .sister__list {
    width	65%;
}
}

.sister__txt-wrapper {
  width: 100%;
  text-align: center;
}

.sister__txt-wrapper h3 {
  background-color: var(--brown);
  height: max(50px, 7.2rem);
  border-radius: 1.5rem 1.5rem 0 0;
  font-size: max(12px, 2rem);
  font-weight: 700;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 767px) {
  .sister__txt-wrapper h3 {
    font-size: max(14px, 2rem);
  }
}

.sister__txt-wrapper address {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.sister__tel {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  margin: 1rem 0 3rem;
}

/*============================
	access
============================*/
.access {
  padding: 12.5rem 0 16rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: center;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
    margin: 12rem auto 0;
  }
}

.access__img {
  width: 62.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  margin-right: -8rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__img::before {
  content: "";
  background: url("../img/access_img-deco.png") no-repeat center / contain;
  width: 42.2rem;
  height: 35.8rem;
  position: absolute;
  top: -14rem;
  left: 5.5rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .access__img::before {
    width: 36rem;
    height: 30.5rem;
    top: -12rem;
    left: 0;
  }
}

.access__img img {
  border-radius: 4rem;
}

.access__list-wrapper {
  background-color: var(--white);
  border: solid max(3px, 0.7rem) var(--brown);
  border-radius: 2rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, 0.1);
  padding: 3rem 6rem 5.5rem 14rem;
}

@media (max-width: 767px) {
  .access__list-wrapper {
    padding: 3rem 5rem 5rem;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.access__list dt,
.access__list dd {
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  position: relative;
}

@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;
  }
}

.access__list dd:not(:last-of-type)::before {
  content: "";
  background-image: linear-gradient(to right, var(--brown) 8px, transparent 4px);
  background-size: 12px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  width: calc(100% + max(75px, 13rem));
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access__list dd:not(:last-of-type)::before {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}
