@charset "UTF-8";
.loading {
  width: calc(100vw - var(--scrollbar-width));
  height: 100svh;
  background: #ddd2c6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  animation: loading-fadeout 0.8s ease 3s forwards;
}
.loading__logo {
  width: 100%;
  margin-top: -160px;
  position: absolute;
  top: 50%;
  left: 0;
}
@media (max-width: 767px) {
  .loading__logo {
    margin-top: -104px;
  }
}
.loading__logo-image {
  width: 268px;
  height: 264px;
  margin: 0 auto;
  opacity: 0;
  animation: fadein 0.8s ease 0.2s forwards;
}
@media (max-width: 767px) {
  .loading__logo-image {
    width: 177px;
    height: 160px;
  }
}
.loading__logo-image > img {
  height: 100%;
}
.loading__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 32px;
  color: #fff;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  animation: fadein 0.8s ease 1s forwards;
}
@media (max-width: 767px) {
  .loading__text {
    font-size: 16px;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loading-fadeout {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.kv {
  position: relative;
}
.kv__inner {
  position: relative;
}
.kv__logo {
  width: 100%;
  margin-top: -132px;
  position: absolute;
  top: 50%;
  left: 0;
}
@media (max-width: 767px) {
  .kv__logo {
    margin-top: -80px;
  }
}
.kv__logo-image {
  width: 268px;
  height: 264px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .kv__logo-image {
    width: 177px;
    height: 160px;
  }
}
.kv__logo-image > img {
  height: 100%;
}
.kv__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 32px;
  color: #fff;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .kv__text {
    font-size: 16px;
  }
}
.kv .kv-slider {
  height: calc(100vh - 56px);
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  pointer-events: none;
}
@media (max-width: 767px) {
  .kv .kv-slider {
    height: calc(100svh - 47px);
  }
}
.kv .kv-slider__image {
  height: 100vh;
}
.kv .kv-slider__image:nth-child(1) {
  background: url(../../img/top/img_kv_01.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .kv .kv-slider__image:nth-child(1) {
    background: url(../../img/top/img_kv_01.jpg) no-repeat center center;
    background-size: cover;
  }
}
.kv .kv-slider__image:nth-child(2) {
  background: url(../../img/top/img_kv_02.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .kv .kv-slider__image:nth-child(2) {
    background: url(../../img/top/img_kv_02_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
.kv .kv-slider__image:nth-child(3) {
  background: url(../../img/top/img_kv_03.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .kv .kv-slider__image:nth-child(3) {
    background: url(../../img/top/img_kv_03_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
.kv .kv-slider__image:nth-child(4) {
  background: url(../../img/top/img_kv_04.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .kv .kv-slider__image:nth-child(4) {
    background: url(../../img/top/img_kv_04_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
.kv .kv-slider__image:nth-child(5) {
  background: url(../../img/top/img_kv_05.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .kv .kv-slider__image:nth-child(5) {
    background: url(../../img/top/img_kv_05_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1); /* 拡大率 */
  }
}
.kv .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
.kv .slick-dots {
  height: 8px;
  position: absolute;
  bottom: 55px;
  right: 40px;
  display: flex;
  gap: 0 16px;
}
@media (max-width: 767px) {
  .kv .slick-dots {
    bottom: 39px;
    right: 24px;
  }
}
.kv .slick-dots button {
  width: 8px;
  height: 8px;
  pointer-events: none;
  font-size: 0;
  color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: all 0.5s 0s ease;
}
.kv .slick-dots li.slick-active button {
  background: #fff;
}

.scroll {
  position: absolute;
  left: 44px;
  bottom: -56px;
  height: 120px;
  box-sizing: border-box;
  pointer-events: none;
}
@media (max-width: 767px) {
  .scroll {
    left: 50%;
    height: 72px;
    bottom: 0px;
  }
}
.scroll:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.5;
}
.scroll span {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg);
  position: absolute;
  top: -54px;
  left: -23px;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .scroll span {
    top: -26px;
    transform: none;
  }
}
.scroll i {
  display: block;
  position: relative;
  width: 1px;
  height: 120px;
  background: #fff;
  display: block;
  animation: 3s scroll_line infinite ease-in;
  position: absolute;
  left: 0;
  top: 0;
}
@keyframes scroll_line {
  0% {
    height: 120px;
    top: 0;
    @media (max-width: 767px) {
      .scroll {
        height: 72px;
      }
    }
  }
  20% {
    height: 120px;
    top: 0;
    @media (max-width: 767px) {
      .scroll {
        height: 72px;
      }
    }
  }
  50% {
    height: 0px;
    top: 120px;
    @media (max-width: 767px) {
      .scroll {
        top: 72px;
      }
    }
  }
  51% {
    height: 0px;
    top: 0px;
  }
  80% {
    height: 120px;
    top: 0px;
    @media (max-width: 767px) {
      .scroll {
        height: 72px;
      }
    }
  }
  100% {
    height: 120px;
    top: 0px;
    @media (max-width: 767px) {
      .scroll {
        height: 72px;
      }
    }
  }
}

.top-news {
  background: #222;
  color: #fff;
}
@media (max-width: 767px) {
  .top-news {
    position: relative;
    z-index: 1;
  }
}
.top-news__inner {
  height: 56px;
  padding: 0 40px;
  display: flex;
  gap: 0 32px;
  align-items: center;
  justify-content: end;
}
@media (max-width: 767px) {
  .top-news__inner {
    height: auto;
    padding: 0;
    display: block;
  }
}
.top-news__heading {
  font-family: "Cormorant Garamond", serif;
  color: #999;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .top-news__heading {
    display: none;
  }
}
.top-news__link {
  padding-right: 30px;
  display: flex;
  gap: 0 24px;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .top-news__link {
    padding: 20px 24px;
    display: block;
  }
}
.top-news__link:before {
  content: "";
  width: 1px;
  height: 8px;
  margin-top: -4px;
  background: #666;
  display: block;
  position: absolute;
  top: 50%;
  left: -16px;
}
@media (max-width: 767px) {
  .top-news__link:before {
    display: none;
  }
}
.top-news__link:after {
  content: "";
  width: 16px;
  height: 6px;
  margin-top: -3px;
  background: url(../../img/common/arrow_wt.svg) no-repeat center center;
  background-size: 16px 6px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transition: all 0.5s 0s ease;
}
@media (max-width: 767px) {
  .top-news__link:after {
    right: 24px;
    margin-top: 0;
    top: auto;
    bottom: 26px;
  }
}
.top-news__link:hover:after {
  right: -8px;
}
@media (max-width: 767px) {
  .top-news__link:hover:after {
    right: 0;
  }
}
.top-news__link:hover .top-news__title {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .top-news__link:hover .top-news__title {
    opacity: 1;
  }
}
.top-news__date {
  font-size: 13px;
}
@media (max-width: 767px) {
  .top-news__date {
    font-size: 12px;
  }
}
.top-news__title {
  width: 400px;
  font-size: 13px;
  transition: all 0.5s 0s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .top-news__title {
    width: calc(100vw - 78px);
    margin-top: 4px;
    font-size: 12px;
  }
}

.message__inner {
  padding: 160px 0 440px;
  background: #ddd2c6 url(../../img/top/img_message_decoration.svg) no-repeat center bottom;
  background-size: 464px 360px;
}
@media (max-width: 767px) {
  .message__inner {
    padding: 80px 24px 156px;
    background: #ddd2c6 url(../../img/top/img_message_decoration.svg) no-repeat center bottom;
    background-size: 232px 180px;
  }
}
.message__heading {
  font-family: "Cormorant Garamond", serif;
  padding-top: 80px;
  color: #fffcf4;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .message__heading {
    padding-top: 27px;
    font-size: 36px;
    text-align: left;
    line-height: 1.4;
  }
}
.message__heading:before {
  content: "";
  width: 80px;
  height: 56px;
  margin-left: -40px;
  background: url(../../img/top/img_message_decoration_copy.svg) no-repeat center center;
  background-size: 80px 56px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}
@media (max-width: 767px) {
  .message__heading:before {
    width: 64px;
    height: 24px;
    background: url(../../img/top/img_message_decoration_copy.svg) no-repeat center center;
    background-size: 64px 24px;
    left: 24px;
  }
}
.message__sub-heading, .message__catch {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 767px) {
  .message__sub-heading, .message__catch {
    line-height: 1.8;
  }
}
.message__sub-heading {
  margin-top: 40px;
  color: #222;
  font-size: 24px;
}
@media (max-width: 767px) {
  .message__sub-heading {
    margin-top: 17px;
    font-size: 20px;
    text-align: left;
  }
}
.message__catch {
  margin-top: 24px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .message__catch {
    text-align: left;
  }
}
.message__text-box {
  display: flex;
  justify-content: center;
}
@media (max-width: 1119px) {
  .message__text-box {
    display: block;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .message__text-box {
    text-align: left;
  }
}
.message__text {
  margin-top: 80px;
  writing-mode: vertical-rl;
  line-height: 3;
  font-size: 14px;
  letter-spacing: 0.06rem;
}
@media (max-width: 1119px) {
  .message__text {
    writing-mode: inherit;
    line-height: 2.4;
  }
}
@media (max-width: 767px) {
  .message__text {
    margin-top: 64px;
  }
}
.message__image-box {
  margin-top: -200px;
  position: relative;
}
@media (max-width: 767px) {
  .message__image-box {
    margin-top: -24px;
  }
}
.message__image + .message__image {
  position: absolute;
  top: 0;
  left: 0;
}
.message__image > img {
  width: 100%;
}

.features {
  padding-top: 420px;
  padding-bottom: 337px;
  position: relative;
}
@media (max-width: 1119px) {
  .features {
    padding: 360px 80px 257px;
  }
}
@media (max-width: 767px) {
  .features {
    padding: 80px 24px 154px;
  }
}
.features__heading {
  font-family: "Cormorant Garamond", serif;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  color: #ddd2c6;
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .features__heading {
    font-size: 72px;
  }
}

.features-contents__list {
  width: 100%;
  max-width: 1120px;
  margin: -34px auto 0;
}
@media (max-width: 1119px) {
  .features-contents__list {
    margin-top: 36px;
  }
}
@media (max-width: 767px) {
  .features-contents__list {
    margin-top: 14px;
  }
}
.features-contents__item {
  display: flex;
  gap: 0 80px;
}
@media (max-width: 1119px) {
  .features-contents__item {
    padding-left: 0;
    flex-direction: column;
  }
}
.features-contents__item:nth-child(2n) .features-contents__detail {
  order: 1;
}
@media (max-width: 1119px) {
  .features-contents__item:nth-child(2n) .features-contents__detail {
    order: 0;
  }
}
.features-contents__item:nth-child(2n) .features-contents__heading {
  order: 1;
}
@media (max-width: 1119px) {
  .features-contents__item:nth-child(2n) .features-contents__heading {
    order: 0;
  }
}
.features-contents__item:nth-child(2n) .features-contents__text {
  order: 0;
}
@media (max-width: 1119px) {
  .features-contents__item:nth-child(2n) .features-contents__text {
    order: 1;
  }
}
.features-contents__item:nth-child(2n) .features-contents__image {
  order: 0;
}
@media (max-width: 1119px) {
  .features-contents__item:nth-child(2n) .features-contents__image {
    order: 1;
    position: relative;
  }
}
.features-contents__item + .features-contents__item {
  margin-top: 200px;
}
@media (max-width: 1119px) {
  .features-contents__item + .features-contents__item {
    margin-top: 96px;
  }
}
@media (max-width: 767px) {
  .features-contents__item + .features-contents__item {
    margin-top: 71px;
  }
}
.features-contents__detail {
  display: flex;
  gap: 0 80px;
}
@media (max-width: 1119px) {
  .features-contents__detail {
    flex-direction: column;
  }
}
.features-contents__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  writing-mode: vertical-rl;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 1119px) {
  .features-contents__heading {
    writing-mode: inherit;
  }
}
@media (max-width: 767px) {
  .features-contents__heading {
    font-size: 20px;
    line-height: 1.8;
  }
}
.features-contents__text {
  margin-top: 80px;
  font-size: 14px;
  line-height: 2.4;
}
@media (max-width: 1119px) {
  .features-contents__text {
    margin-top: 34px;
  }
}
.features-contents__image {
  width: 592px;
  flex-shrink: 0;
}
@media (max-width: 1119px) {
  .features-contents__image {
    margin-top: 46px;
    width: 100%;
    margin-right: -80px;
  }
}
@media (max-width: 767px) {
  .features-contents__image {
    width: 100%;
    margin-top: 31px;
    margin-right: -24px;
  }
}
.features-contents__image > img {
  width: 100%;
}

.features-deco {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.features-deco__image {
  width: auto;
  height: 112px;
  flex-shrink: 0;
  animation: loop_animation_right_double 50s linear infinite;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .features-deco__image {
    height: 75px;
  }
}
.features-deco__image > img {
  width: 100%;
}
@media (max-width: 767px) {
  .features-deco__image > img {
    width: auto;
    height: 75px;
  }
}

@keyframes loop_animation_right_double {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.room__inner {
  padding: 160px 0 370px;
  background: #ddd2c6;
}
@media (max-width: 1119px) {
  .room__inner {
    padding: 120px 80px calc(80px + 20.442vw);
  }
}
@media (max-width: 767px) {
  .room__inner {
    padding: 80px 24px 80px;
  }
}
.room__heading {
  font-family: "Cormorant Garamond", serif;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .room__heading {
    font-size: 72px;
  }
}
.room__head {
  width: 100%;
  max-width: 1120px;
  margin: 50px auto 0;
  display: flex;
}
@media (max-width: 1119px) {
  .room__head {
    margin-top: 28px;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .room__head {
    margin-top: 19px;
  }
}
.room__sub-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 30vw;
  max-width: 432px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1119px) {
  .room__sub-heading {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .room__sub-heading {
    font-size: 20px;
  }
}
.room__text {
  font-size: 14px;
  line-height: 2.4;
}
@media (max-width: 1119px) {
  .room__text {
    margin-top: 23px;
  }
}
.room__btn {
  width: 320px;
  margin-top: 80px;
}
@media (max-width: 1119px) {
  .room__btn {
    margin-top: 56px;
  }
}
@media (max-width: 767px) {
  .room__btn {
    width: 100%;
    margin-top: 40px;
  }
}

.room-slider {
  width: calc((100% - 1120px) / 2 + 1120px - var(--scrollbar-width));
  margin-top: 80px;
  display: flex;
  overflow: hidden;
}
@media (max-width: 1119px) {
  .room-slider {
    width: calc(100% + 80px);
    margin-top: 46px;
    margin-left: -80px;
  }
}
@media (max-width: 767px) {
  .room-slider {
    width: calc(100% + 24px);
    margin-top: 31px;
    margin-left: -24px;
  }
}
.room-slider__image {
  width: 3048px;
  height: 314px;
  flex-shrink: 0;
  animation: loop_animation_left_double 50s linear infinite;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .room-slider__image {
    width: 1524px;
    height: 157px;
  }
}
.room-slider__image > img {
  width: 100%;
}

@keyframes loop_animation_left_double {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.camera-view {
  width: calc(100vw - var(--scrollbar-width));
  max-width: 1120px;
  height: 580px;
  margin: -293px auto 0;
}
@media (max-width: 1119px) {
  .camera-view {
    margin: -20.442vw auto 0;
  }
}
@media (max-width: 767px) {
  .camera-view {
    width: 100vw-var(--scrollbar-width);
    max-width: 100vw;
    height: 96vw;
    margin-top: 0;
  }
}
.camera-view iframe {
  width: 100%;
  height: 100%;
}

.price__inner {
  width: 100%;
  max-width: 1120px;
  padding: 160px 0;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1119px) {
  .price__inner {
    padding: 160px 80px;
  }
}
@media (max-width: 767px) {
  .price__inner {
    padding: 80px 24px;
    text-align: left;
  }
}
.price__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .price__heading {
    font-size: 72px;
  }
}
.price__sub-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 87px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1119px) {
  .price__sub-heading {
    margin-top: 38px;
  }
}
@media (max-width: 767px) {
  .price__sub-heading {
    margin-top: 26px;
    font-size: 20px;
  }
}
.price__contents {
  display: flex;
  justify-content: center;
  gap: 0 1px;
}
@media (max-width: 1119px) {
  .price__contents {
    margin-top: 56px;
    flex-direction: column;
    gap: 24px 0;
  }
}
@media (max-width: 767px) {
  .price__contents {
    margin-top: 34px;
  }
}
.price__text {
  margin-top: 56px;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .price__text {
    text-align: center;
  }
}
.price__btn {
  width: 320px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .price__btn {
    width: 100%;
    margin-top: 24px;
  }
}

.price-table {
  margin-top: 40px;
}
.price-table__label {
  height: 143px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  color: #7b7167;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .price-table__label {
    height: auto;
  }
}
.price-table__label:first-child {
  margin-top: 241px;
}
.price-table__head {
  width: 495px;
  height: 241px;
  padding: 0 40px;
  background: #7b7167;
  color: #fff;
  text-align: left;
  display: flex;
  gap: 0 40px;
  align-items: center;
}
@media (max-width: 1119px) {
  .price-table__head {
    width: auto;
    height: auto;
    padding: 0 32px 40px;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .price-table__head {
    padding: 0 32px 40px;
  }
}
.price-table__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
@media (max-width: 1119px) {
  .price-table__image {
    margin-top: -40px;
  }
}
.price-table__image > img {
  width: 100%;
}
@media (max-width: 1119px) {
  .price-table__heading-box {
    margin-top: 20px;
  }
}
.price-table__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.price-table__text {
  margin-top: 34px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media (max-width: 1119px) {
  .price-table__text {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .price-table__text {
    text-align: left;
  }
}
.price-table__detail {
  padding: 0 24px;
  background: #fff;
}
@media (max-width: 1119px) {
  .price-table__detail {
    padding: 0 80px;
  }
}
@media (max-width: 767px) {
  .price-table__detail {
    padding: 0 32px;
  }
}
.price-table__item {
  height: 143px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 1119px) {
  .price-table__item {
    height: auto;
    padding: 22px 0 30px;
    justify-content: space-between;
  }
  .price-table__item .label {
    color: #7b7167;
    font-size: 14px;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .price-table__item {
    padding: 18px 0 26px;
  }
}
.price-table__item + .price-table__item {
  border-top: 1px solid #ddd2c6;
}
.price-table__item > span span {
  font-size: 42px;
  font-weight: 700;
}
@media (max-width: 1119px) {
  .price-table__item > span span {
    font-size: 32px;
  }
}
.price-table__item > span span + span {
  padding-left: 6px;
  font-size: 18px;
}
@media (max-width: 1119px) {
  .price-table__item > span span + span {
    font-size: 14px;
  }
}
.price-table__item > span:not(.label) {
  text-align: right;
  line-height: 1.6;
}
.price-table__item .small {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 1119px) {
  .price-table__item .small {
    font-size: 12px;
  }
}

.flow {
  background: url(../../img/top/img_flow_bg.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .flow {
    background: url(../../img/top/img_flow_bg_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
.flow__inner {
  width: 100%;
  max-width: 1120px;
  padding: 120px 0;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .flow__inner {
    max-width: 100%;
    padding: 80px 24px;
    text-align: left;
  }
}
.flow__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .flow__heading {
    font-size: 72px;
  }
}
.flow__sub-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 54px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1119px) {
  .flow__sub-heading {
    margin-top: 38px;
  }
}
@media (max-width: 767px) {
  .flow__sub-heading {
    margin-top: 26px;
    font-size: 20px;
  }
}
.flow__text {
  margin-top: 22px;
  font-size: 14px;
  line-height: 2.4;
}
@media (max-width: 1119px) {
  .flow__text {
    margin-top: 46px;
  }
}
@media (max-width: 767px) {
  .flow__text {
    margin-top: 30px;
  }
}
.flow__btn {
  width: 320px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .flow__btn {
    margin-top: 46px;
    width: 100%;
  }
}

.news__inner {
  width: 100%;
  max-width: 1120px;
  padding: 160px 0;
  margin: 0 auto;
}
@media (max-width: 1119px) {
  .news__inner {
    padding: 160px 80px;
  }
}
@media (max-width: 767px) {
  .news__inner {
    padding: 80px 24px;
  }
}
.news__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .news__heading {
    font-size: 72px;
  }
}
.news__contents {
  margin-top: 80px;
  display: flex;
}
@media (max-width: 1119px) {
  .news__contents {
    margin-top: 38px;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .news__contents {
    margin-top: 26px;
  }
}
.news__sub-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 216px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .news__sub-heading {
    width: auto;
    font-size: 20px;
  }
}
.news__btn {
  width: 320px;
  margin-top: 80px;
}
@media (max-width: 1119px) {
  .news__btn {
    margin-top: 56px;
  }
}
@media (max-width: 767px) {
  .news__btn {
    width: 100%;
  }
}

.news-list {
  width: calc(100% - 216px);
  border-top: 1px solid #ddd2c6;
}
@media (max-width: 1119px) {
  .news-list {
    width: 100%;
    margin-top: 56px;
  }
}
@media (max-width: 767px) {
  .news-list {
    margin-top: 40px;
  }
}
.news-list__item {
  border-bottom: 1px solid #ddd2c6;
}
.news-list__link {
  padding: 40px 80px 40px 24px;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .news-list__link {
    padding: 40px 0;
  }
}
.news-list__link:after {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../../img/common/arrow_bn.svg) no-repeat center center;
  background-size: 16px 16px;
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  transition: all 0.5s 0s ease;
}
@media (max-width: 767px) {
  .news-list__link:after {
    display: none;
  }
}
.news-list__link:hover:after {
  right: 16px;
}
.news-list__link:hover .news-list__title {
  background-size: 100% 1px;
}
@media (max-width: 767px) {
  .news-list__link:hover .news-list__title {
    background-size: 0;
  }
}
.news-list__head {
  margin-bottom: 18px;
  display: flex;
  gap: 0 16px;
  line-height: 1;
  align-items: center;
}
.news-list__date {
  color: #7b7167;
  font-size: 16px;
}
@media (max-width: 767px) {
  .news-list__date {
    font-size: 15px;
  }
}
.news-list__category {
  padding: 8px 10px;
  background: #7b7167;
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
}
.news-list__title {
  display: inline;
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
  background-image: linear-gradient(90deg, #7b7167, #7b7167);
  background-repeat: no-repeat;
  background-position: left 0% bottom 14%;
  background-size: 0 1px;
  transition: background-size 0.5s;
}
@media (max-width: 767px) {
  .news-list__title {
    font-size: 15px;
    text-decoration: underline;
  }
}

.access {
  background: #ddd2c6;
}
.access__inner {
  width: 100%;
  max-width: 1120px;
  padding: 120px 0 328px;
  margin: 0 auto;
}
@media (max-width: 1119px) {
  .access__inner {
    padding: 120px 80px 308px;
  }
}
@media (max-width: 767px) {
  .access__inner {
    padding: 80px 24px 220px;
  }
}
.access__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .access__heading {
    font-size: 72px;
  }
}
.access__contents {
  margin-top: 80px;
  width: calc(100vw + (-100vw + 1120px) / 2 - var(--scrollbar-width) / 2);
  display: flex;
  gap: 0px 60px;
}
@media (max-width: 1119px) {
  .access__contents {
    width: 100%;
    flex-direction: column;
    margin-right: 0;
    margin-top: 56px;
  }
}
@media (max-width: 767px) {
  .access__contents {
    margin-top: 39px;
  }
}
.access__detail {
  width: 530px;
  flex-shrink: 0;
}
@media (max-width: 1119px) {
  .access__detail {
    width: auto;
    order: 1;
  }
}
.access__sub-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 216px;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1119px) {
  .access__sub-heading {
    width: auto;
    margin-top: 38px;
  }
}
@media (max-width: 767px) {
  .access__sub-heading {
    margin-top: 26px;
  }
}
.access__table {
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid #fffcf4;
}
@media (max-width: 1119px) {
  .access__table {
    margin-top: 56px;
  }
}
.access__table th,
.access__table td {
  border-bottom: 1px solid #fffcf4;
}
@media (max-width: 767px) {
  .access__table th,
  .access__table td {
    width: 100%;
    display: block;
  }
}
.access__table th {
  width: 100px;
  padding: 40px 0;
  font-size: 14px;
  line-height: 1;
  text-align: left;
}
@media (max-width: 1119px) {
  .access__table th {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .access__table th {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.access__table td {
  padding: 48px 0;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 1119px) {
  .access__table td {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .access__table td {
    padding: 24px 0 40px;
  }
}
.access__map {
  width: 100%;
}
@media (max-width: 1119px) {
  .access__map {
    width: calc(100% + 80px);
    height: 560px;
    order: 0;
  }
}
@media (max-width: 767px) {
  .access__map {
    width: calc(100% + 24px);
    height: 275px;
  }
}
.access__map > iframe {
  width: 100%;
  height: 100%;
}
.access__btn {
  padding: 5px 16px;
  margin-left: 8px;
  background: #222;
  display: inline-block;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  border-radius: 11px;
}
@media (max-width: 767px) {
  .access__btn {
    padding: 11px 46px;
    margin-left: 0;
    margin-top: 14px;
    font-size: 14px;
    border-radius: 18px;
  }
}
.access__btn:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .access__btn:hover {
    opacity: 1;
  }
}

.access-root {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .access-root {
    margin-top: 80px;
  }
}
.access-root__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1119px) {
  .access-root__heading {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .access-root__heading {
    font-size: 20px;
  }
}
.access-root__list {
  margin-top: 40px;
  display: flex;
  gap: 0 60px;
}
@media (max-width: 1119px) {
  .access-root__list {
    flex-direction: column;
    gap: 72px 0;
  }
}
.access-root__item {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1119px) {
  .access-root__item {
    gap: 0 40px;
    flex-direction: initial;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .access-root__item {
    gap: 0 24px;
  }
}
.access-root__item:last-child:after {
  display: none;
}
.access-root__item:last-child .access-root__image:after {
  display: none;
}
@media (max-width: 1119px) {
  .access-root__item:after {
    content: "";
    width: 18px;
    height: 10px;
    margin-left: -5px;
    background: url(../../img/common/arrow_flow_down.svg) no-repeat center center;
    background-size: 18px 10px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -40px;
  }
}
.access-root__image {
  position: relative;
}
@media (max-width: 1119px) {
  .access-root__image {
    width: 235px;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .access-root__image {
    width: 120px;
  }
}
.access-root__image:after {
  content: "";
  width: 10px;
  height: 18px;
  margin-top: -9px;
  background: url(../../img/common/arrow_flow_r.svg) no-repeat center center;
  background-size: 10px 18px;
  display: block;
  position: absolute;
  top: 50%;
  right: -35px;
}
@media (max-width: 1119px) {
  .access-root__image:after {
    display: none;
  }
}
.access-root__image > img {
  width: 100%;
}
.access-root__text {
  margin-top: 22px;
  font-size: 13px;
  line-height: 2.4;
  flex: 1;
}
@media (max-width: 1119px) {
  .access-root__text {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .access-root__text {
    font-size: 12px;
    line-height: 1.8;
  }
}