.home-mv {
  height: 100svh;
  position: relative;
  background-color: var(--color-site-secondary);
}
.home-mv__slide {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-mv__slide .vertical-slider__slide {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-mv__slide .swiper-slide.swiper-slide-fully-visible .home-mv__inner {
  opacity: 1;
  transition: opacity 1.6s;
}
.home-mv__slide .swiper-slide.swiper-slide-fully-visible .home-mv__copy {
  animation-name: titleLtoR;
  animation-duration: 0.8s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.home-mv__slide .swiper-slide.swiper-slide-fully-visible .home-mv__copy__inner {
  animation-name: titleRtoL;
  animation-duration: 0.8s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.home-mv__slide .swiper-slide.swiper-slide-fully-visible .home-mv__lead {
  animation-name: titleLtoR;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
}
.home-mv__slide .swiper-slide.swiper-slide-fully-visible .home-mv__lead__inner {
  animation-name: titleRtoL;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
}
.home-mv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-mv__logo {
  width: 136px;
  height: fit-content;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 1;
  transition: opacity 0.8s;
}
.home-mv__logo.is_fadeout {
  opacity: 0;
  transition: opacity 0.8s;
  pointer-events: none;
}
@media print, screen and (width > 769px) {
  .home-mv__logo {
    width: 212px;
  }
}
.home-mv__logo__img {
  width: 100%;
  height: auto;
}
.home-mv__inner {
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 1fr 453px;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  height: 100%;
  padding-bottom: 12vh;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  transition: opacity 1.2s;
}
@media print, screen and (width > 769px) {
  .home-mv__inner {
    width: clamp(1200px, calc((1400 / (1400 + 70) * 100vw)), 1400px);
  }
}
@media only screen and (width <= 768px) {
  .home-mv__inner {
    grid-template-columns: 100%;
    width: 100%;
    align-items: flex-end;
    padding: 0 35px 50px;
  }
}
.home-mv__copy {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-site-tertiary);
  grid-column: 1/2;
  width: fit-content;
  margin-bottom: 20px;
  overflow: hidden;
  opacity: 0;
  translate: -100% 0;
}
@media print, screen and (width > 769px) {
  .home-mv__copy {
    grid-column: 2/3;
    grid-row: 2/3;
    font-size: 30px;
    letter-spacing: 0.31em;
    margin-bottom: 40px;
  }
}
.home-mv__copy__inner {
  display: inline-block;
  opacity: 0;
  translate: 100% 0;
}
.home-mv__lead {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--color-site-tertiary);
  overflow: hidden;
  grid-column: 1/2;
  opacity: 0;
  translate: -100% 0;
}
@media print, screen and (width > 769px) {
  .home-mv__lead {
    font-size: 17px;
    line-height: 1.9;
    grid-column: 2/3;
    grid-row: 3/4;
    width: 453px;
  }
}
.home-mv__lead__inner {
  display: inline-block;
  opacity: 0;
  translate: 100% 0;
}
.home-mv__scroll {
  width: 20px;
  height: fit-content;
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 5px;
  cursor: pointer;
  transition: all 0.6s;
}
@media print, screen and (width > 769px) {
  .home-mv__scroll {
    width: 23px;
    left: 35px;
  }
}
.home-mv__scroll__img {
  width: 100%;
}
.home-mv__movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home-mv__moviebtn {
  width: 280px;
  height: auto;
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
@media print, screen and (width > 769px) {
  .home-mv__moviebtn {
    width: 563px;
  }
  .home-mv__moviebtn:hover {
    opacity: 0.7;
  }
}
.home-mv__moviebtn__img {
  width: 100%;
  height: auto;
}
.home-news {
  width: 100%;
  margin: 50px auto 60px;
  display: grid;
  grid-template-columns: 100%;
  gap: 25px 0;
}
@media print, screen and (width > 769px) {
  .home-news {
    width: 826px;
    grid-template-columns: 100px 1fr;
    grid-template-rows: 100px 60px;
    gap: 40px 33px;
    margin-top: 190px;
    margin-bottom: 190px;
  }
}
.home-news__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 98px;
  text-align: center;
  width: 100px;
  height: 100px;
  border: 1px solid var(--color-border-quaternary);
  border-radius: 50%;
  margin: auto;
}
@media print, screen and (width > 769px) {
  .home-news__title {
    grid-column: 1/2;
    grid-row: 1/2;
    align-self: start;
  }
}
@media only screen and (width <= 768px) {
  .home-news__list {
    padding: 0 23px;
  }
}
@media print, screen and (width > 769px) {
  .home-news__list {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.home-news__item:not(:last-child) {
  margin-bottom: 25px;
}
@media print, screen and (width > 769px) {
  .home-news__item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.home-news__link {
  font-size: 17px;
  line-height: 1.2;
}
@media only screen and (width <= 768px) {
  .home-news__link {
    font-size: 15px;
    line-height: 1.5;
    word-break: break-all;
    text-decoration: underline;
  }
}
@media print, screen and (width > 769px) {
  .home-news__link {
    width: fit-content;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 15px;
  }
}
@media (hover: hover) {
  .home-news__link:where(:any-link, :enabled, summary):hover .home-news__txt::before {
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
    transition: transform 0.3s;
  }
}
@media only screen and (width <= 768px) {
  .home-news__txt {
    display: inline;
  }
}
@media print, screen and (width > 769px) {
  .home-news__txt {
    flex: 1 0 1%;
    position: relative;
  }
  .home-news__txt::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-border-primary);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.2s;
  }
}
@media print, screen and (width > 769px) {
  .home-news__bottom {
    width: 560px;
    height: 60px;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.home-news__bottom .p-banner--home {
  margin-top: 20px;
}
.home-news__pickup {
  border: 1px solid var(--color-border-secondary);
  padding: 16px 26px 18px;
  display: grid;
  place-items: center;
}
.home-news__pickup__link {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (width <= 768px) {
  .home-news__pickup__link {
    font-size: 16px;
    line-height: 1.5;
    word-break: break-all;
    text-decoration: underline;
  }
}
@media print, screen and (width > 769px) {
  .home-news__pickup__link {
    position: relative;
  }
  .home-news__pickup__link::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-border-primary);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.2s;
  }
}
@media print and (hover: hover), screen and (width > 769px) and (hover: hover) {
  .home-news__pickup__link:where(:any-link, :enabled, summary):hover::before {
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
    transition: transform 0.3s;
  }
}
@media only screen and (width <= 768px) {
  .home-news__more {
    text-align: right;
    margin-top: -4px;
  }
}
@media print, screen and (width > 769px) {
  .home-news__more {
    position: absolute;
    left: 24px;
    bottom: 4px;
  }
}
.home-news__more .c-link--arrow {
  padding-right: 25px;
  text-decoration: underline;
}
.home-news__more .c-link--arrow::after {
  width: 17px;
  height: 6px;
  background-image: url(../images/common/icon_arrow_short.svg);
  background-size: 17px 6px;
}
.home-intro {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}
@media only screen and (width <= 768px) {
  .home-intro {
    justify-content: flex-start;
    flex-direction: column;
  }
}
.home-title {
  margin-bottom: 25px;
}
@media print, screen and (width > 769px) {
  .home-title {
    margin-bottom: 50px;
  }
}
.home-txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7333;
}
.home-txt:not(:last-of-type) {
  margin-bottom: 30px;
}
@media print, screen and (width > 769px) {
  .home-txt {
    font-size: 17px;
    line-height: 1.823;
  }
}
.home-lead {
  font-size: 23px;
  line-height: 1.478;
  margin-bottom: 30px;
}
@media print, screen and (width > 769px) {
  .home-lead {
    font-size: clamp(26px, 2.0833333333vw, 30px);
    line-height: 1.466;
    margin-bottom: 35px;
  }
}
.home-section {
  margin: 0 auto 0;
}
@media print, screen and (width > 769px) {
  .home-section {
    width: clamp(1200px, calc((1400 / (1400 + 70) * 100vw)), 1400px);
  }
}
.home-section--room {
  margin-bottom: 60px;
  position: relative;
}
html[lang=en] .home-section--room {
  margin-top: 60px;
}

@media print, screen and (width > 769px) {
  .home-section--room {
    margin-bottom: 100px;
  }
  html[lang=en] .home-section--room {
    margin-top: 190px;
  }
}
.home-section--room .home-title {
  margin-bottom: 0;
}
@media print, screen and (width > 769px) {
  .home-section--room .home-title {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.home-section--room .home-intro {
  position: absolute;
  right: 0;
  top: 30px;
}
@media print, screen and (width > 769px) {
  .home-section--room .home-intro {
    display: none;
  }
}
.home-section--residence {
  margin-bottom: 80px;
}
@media print, screen and (width > 769px) {
  .home-section--residence {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 190px;
  }
}
@media print, screen and (width > 769px) {
  .home-section--residence .home-section__head {
    width: 24.642%;
    align-self: end;
  }
}
.home-section--residence .home-section__head .c-link--arrow {
  margin-top: 30px;
}
@media print, screen and (width > 769px) {
  .home-section--residence .home-section__head .c-link--arrow {
    margin-top: 50px;
  }
}
html[lang=en] .home-section--residence .home-section__head .home-lead__min {
  display: inline-block;
  font-size: 16px;
}
@media print, screen and (width > 769px) {
  html[lang=en] .home-section--residence .home-section__head .home-lead__min {
    font-size: 20px;
    line-height: 1.6;
  }
}

.home-section--residence .home-section__body {
  position: relative;
  width: 68.571%;
}
@media only screen and (width <= 768px) {
  .home-section--residence .home-section__body {
    width: 100%;
    margin-top: 30px;
  }
}
.home-section--residence .home-title {
  width: clamp(284px, 22.2916666667vw, 321px);
  margin-bottom: 45px;
}
@media only screen and (width <= 768px) {
  .home-section--residence .home-title {
    width: 207px;
    margin: 0 auto 26px;
  }
}
.home-section--cuisine {
  width: 100%;
  margin-bottom: 80px;
  position: relative;
}
@media print, screen and (width > 769px) {
  .home-section--cuisine {
    margin-bottom: 190px;
  }
}
.home-section--cuisine .home-title {
  margin-bottom: 0;
}
.home-section--cuisine .home-section__head {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 22px;
}
@media print, screen and (width > 769px) {
  .home-section--cuisine .home-section__head {
    width: clamp(1200px, calc((1400 / (1400 + 70) * 100vw)), 1400px);
  }
}
@media print, screen and (width > 769px) {
  .home-section--cuisine .home-section__head {
    margin-bottom: 40px;
  }
}
.home-section--restaurant {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media print, screen and (width > 769px) {
  .home-section--restaurant {
    margin-bottom: 165px;
    grid-template-columns: 23.142% 68.571%;
    grid-template-rows: 1fr auto auto;
    gap: 0 8.287%;
  }
  .home-section--restaurant .home-title {
    grid-row: 2/3;
  }
  .home-section--restaurant .home-intro {
    grid-column: 1/2;
    grid-row: 3/4;
    padding-bottom: 30px;
  }
  .home-section--restaurant .home-restaurant {
    grid-column: 2/3;
    grid-row: 1/4;
  }
}
@media only screen and (width <= 768px) {
  .home-section--restaurant {
    padding-bottom: 58px;
    position: relative;
  }
  .home-section--restaurant .home-title {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-bottom: 0;
  }
  .home-section--restaurant .home-intro {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .home-section--restaurant .home-restaurant {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .home-section--restaurant .home-txt {
    display: none;
  }
}
.home-section--restaurant .home-intro {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media print, screen and (width > 769px) {
  .home-section--restaurant .home-intro {
    width: 324px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 45px;
  }
}
.home-room {
  position: relative;
}
.home-room::before {
  content: "";
  width: 75.4666666667vw;
  height: 100%;
  border: 2px solid var(--color-border-primary);
  position: absolute;
  z-index: -1;
}
@media print, screen and (width > 769px) {
  .home-room {
    display: grid;
    grid-template-columns: 1fr repeat(3, 22.428%) 6.642%;
    grid-template-rows: repeat(3, auto);
    gap: 7px;
  }
  .home-room::before {
    width: 100%;
    height: clamp(602px, 46.5277777778vw, 670px);
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
}
@media only screen and (width <= 768px) {
  .home-room {
    width: calc(100% + 25px);
    margin-top: 20px;
    padding-top: 5.6vw;
    padding-bottom: 8vw;
    left: 50%;
    translate: -50% 0;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
  }
  .home-room::before {
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
}
.home-room__hd {
  font-size: 19px;
}
@media only screen and (width <= 768px) {
  .home-room__hd {
    width: 100%;
    text-align: center;
    margin-bottom: 13px;
  }
}
@media print, screen and (width > 769px) {
  .home-room__hd {
    font-size: 29px;
    padding: 45px 0 0 70px;
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.home-room__data {
  line-height: 1.2;
}
@media only screen and (width <= 768px) {
  .home-room__data {
    text-align: center;
    width: 100%;
    margin: 13px auto;
  }
}
@media print, screen and (width > 769px) {
  .home-room__data {
    grid-column: 1/3;
    grid-row: 2/3;
    padding: 85px 0 0 70px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.home-room__data__txt {
  font-size: 26px;
}
@media print, screen and (width > 769px) {
  .home-room__data__txt {
    font-size: 62px;
  }
}
@media print, screen and (width > 769px) {
  .home-room__data__txt:nth-child(1) {
    order: 1;
  }
}
@media print, screen and (width > 769px) {
  .home-room__data__txt:nth-child(2) {
    order: 3;
  }
}
.home-room__data__txt:nth-child(3) {
  font-size: 17px;
}
@media only screen and (width <= 768px) {
  .home-room__data__txt:nth-child(3) {
    display: block;
  }
}
@media print, screen and (width > 769px) {
  .home-room__data__txt:nth-child(3) {
    font-size: 36px;
    order: 2;
  }
}
.home-room__data .c-link--arrow {
  order: 4;
  margin-top: 30px;
}
@media only screen and (width <= 768px) {
  .home-room__data .c-link--arrow {
    display: none;
  }
}
@media print, screen and (width > 769px) {
  .home-room__item:nth-of-type(1) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media print, screen and (width > 769px) {
  .home-room__item:nth-of-type(2) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media print, screen and (width > 769px) {
  .home-room__item:nth-of-type(3) {
    grid-column: 4/5;
    grid-row: 1/2;
  }
}
@media print, screen and (width > 769px) {
  .home-room__item:nth-of-type(4) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
}
@media print, screen and (width > 769px) {
  .home-room__item:nth-of-type(5) {
    grid-column: 4/5;
    grid-row: 2/3;
  }
}
@media print, screen and (width > 769px) {
  .home-room__item:nth-of-type(6) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media print, screen and (width > 769px) {
  .home-room__item:nth-of-type(7) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
@media print, screen and (width > 769px) {
  .home-room__item:nth-of-type(8) {
    grid-column: 4/5;
    grid-row: 3/4;
  }
}
@media only screen and (width <= 768px) {
  .home-room__item {
    width: calc((100% - 12px) / 3);
  }
}
.home-room__link {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (hover: hover) {
  .home-room__link:where(:any-link, :enabled, summary):hover .home-room__img {
    scale: 1.2;
    transition: scale 0.3s;
  }
}
.home-room__link--renewal::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../images/common/icon_renewal.svg) no-repeat left top;
  background-size: 48px 48px;
  position: absolute;
  z-index: 2;
  right: 5px;
  bottom: 4px;
}
@media print, screen and (width > 769px) {
  .home-room__link--renewal::before {
    width: 84px;
    height: 84px;
    background-size: 84px 84px;
    top: 10px;
    bottom: auto;
    right: 13px;
  }
}
.home-room__img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  transition: scale 0.2s;
}
.home-room__name {
  font-size: 11px;
  color: #fff;
  padding: 0 4px;
  position: absolute;
  left: 5px;
  bottom: 5px;
  z-index: 2;
}
@media print, screen and (width > 769px) {
  .home-room__name {
    font-size: 17px;
    left: 10px;
    bottom: 10px;
  }
}
.home-residence {
  display: grid;
  height: 103.4666666667vw;
  position: relative;
}
.home-residence::before {
  content: "";
  width: 67.7333333333vw;
  height: 67.7333333333vw;
  border: 2px solid var(--color-border-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
@media print, screen and (width > 769px) {
  .home-residence {
    height: clamp(536px, 41.875vw, 603px);
  }
  .home-residence::before {
    width: clamp(439px, 34.0277777778vw, 490px);
    height: clamp(439px, 34.0277777778vw, 490px);
  }
}
.home-residence__item {
  width: 60vw;
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
}
.home-residence__item:nth-child(1) {
  align-self: start;
  justify-self: end;
  border: 6px solid var(--color-site-tertiary);
  z-index: 3;
}
@media print, screen and (width > 769px) {
  .home-residence__item:nth-child(1) {
    border-width: 10px;
  }
}
.home-residence__item:nth-child(2) {
  align-self: end;
  justify-self: start;
  z-index: 2;
}
@media print, screen and (width > 769px) {
  .home-residence__item {
    width: 54.166%;
  }
}
.home-residence__img {
  width: 100%;
  height: auto;
  opacity: 1 !important;
}
@media print, screen and (width > 769px) {
  .home-restaurant .p-slide {
    padding-bottom: 30px;
  }
  .home-restaurant .p-slide .slick-list {
    aspect-ratio: 960/560;
  }
}
@media only screen and (width <= 768px) {
  .home-restaurant {
    margin-top: 20px;
  }
}

#home .modal-video-body {
  width: 85%;
  max-width: 1400px;
}
#home .modal-video-body .modal-video-inner {
  padding: 0;
}

.home_en_news {
  margin: 60px auto;
  padding: 35px 25px;
  border: 2px solid #333;
}

@media print, screen and (width > 769px) {

  .home_en_news {
    margin: 100px auto;
    padding: 50px;
  }

}


