:root {
  --color-default: #87a6a9;
  --color-inverted: white;
  --color-black: black;
  --color-border: #c9c9c9;
  --bg-default: #f7f8f8;
  --bg-light: #f7f6f0;
  --bg-dark: #f5f0e2;
  --bg-inverted: var(--color-default);
  --color-link: inherit;
  --bg-gradient-light: linear-gradient(to bottom, var(--bg-default), var(--bg-light));
  --bg-gradient-middle: linear-gradient(to bottom, var(--bg-light), var(--bg-dark));
  --bg-gradient-dark: linear-gradient(to bottom, var(--bg-dark), var(--bg-default));
}

/*
====================================================================
 INTRO
====================================================================
*/
.intro-section .section-block__container {
  justify-content: space-between;
  flex-wrap: nowrap;
}
.intro-section .section-block__content {
  display: block;
  width: auto;
  min-width: unset;
  padding-top: 130px;
}
.intro-section .section-block__media {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  width: 49.5%;
  max-width: 737px;
  flex-shrink: 0;
}
.intro-section .section-block__image-box {
  aspect-ratio: 1/1.35;
}
.intro-section .section-block__image-box--main {
  width: 62.4%;
}
.intro-section .section-block__image-box--sub {
  width: 33.3%;
  align-self: flex-end;
}

.section-block.intro-section h2 span {
  margin-top: 0;
}

/*
====================================================================
 FEATURE
====================================================================
*/
.feature-section {
  background: var(--bg-gradient-light);
}
.feature-section .section-block__content {
  width: 100%;
}
.feature-section .section-block__body {
  width: 61.8%;
  min-width: 920px;
}

.feature__card-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 96px 130px;
  counter-reset: number;
}
.feature__card {
  counter-increment: number;
}
.feature__card h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 21px;
  letter-spacing: 0;
  border-bottom: 1px solid var(--color-default);
}
.feature__card h3::before {
  content: "0" counter(number);
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
}

/*
====================================================================
 ROOM
====================================================================
*/
.swiper__container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.swiper-thumbs {
  width: 32%;
  position: absolute;
  right: 52px;
  bottom: 24px;
}
.swiper-thumbs .swiper-slide {
  width: 72px;
  cursor: pointer;
  padding: 0 4px;
}
.swiper-thumbs .swiper-slide::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 8px);
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s;
  left: 4px;
}
.swiper-thumbs .swiper-slide-thumb-active::before {
  opacity: 0;
}

.room-section {
  background: linear-gradient(to bottom, var(--bg-light), var(--bg-dark), var(--bg-default) 70%);
  padding-top: 0;
}
.room-section .section-block__container {
  display: block;
}
.room-section .section-block__content {
  width: 100%;
  min-width: auto;
  margin: 56px 0;
  display: grid;
  grid-template-columns: 1fr 2fr 47%;
}
.room-section .section-block__heading {
  width: 100%;
  border-bottom: 1px solid var(--color-default);
}
.room-section .section-block__body {
  width: 100%;
  border-bottom: 1px solid var(--color-default);
}
.room-section .section-block__cta {
  padding-left: 6.5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 6.5%;
       column-gap: 6.5%;
}
.room-section .section-block__cta a {
  border-bottom: 1px solid var(--color-default);
  flex-wrap: wrap;
}
.room-section .section-block__cta a img {
  aspect-ratio: 2.45/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.room-section .section-block__cta a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-bottom: 10px;
}
.room-section .section-block__cta a span::after {
  content: "";
  display: block;
  position: static;
  width: 10px;
  height: 10px;
  background: url(../../images/common/icon_arrow.svg) right center/contain no-repeat;
}
.room-section .section-block__cta a:first-child span::after {
  transform: rotate(90deg);
}
.room-section th {
  width: 30%;
  padding-bottom: 1em;
}
.room-section td {
  padding-bottom: 1em;
  white-space: nowrap;
}
.room-section__amenities {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 14%;
       column-gap: 14%;
}
.room-section__media {
  width: 25.4%;
  max-width: 378px;
}
.room-section__list {
  width: 25.5%;
}
.room-section__list h3 {
  border-top: 1px solid var(--color-default);
  padding-top: 24px;
  margin-bottom: 24px;
}
.room-section__list ul:first-of-type {
  margin-bottom: 24px;
}

/*----------------------------------------------------------------*/
  @media (width < 768px) {
/*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / INTRO
  ====================================================================
  */
  .intro-section .section-block__content {
    padding-top: 0;
    margin-top: 64px;
  }
  .intro-section .section-block__media {
    width: calc(100% + 48px);
    margin: 0 -24px;
  }
  /*
  ====================================================================
   SP / FEATURE
  ====================================================================
  */
  .feature-section .section-block__body {
    width: 100%;
    min-width: unset;
  }
  .feature__card-group {
    display: flex;
    flex-direction: column;
    row-gap: 56px;
  }
  .feature__card h3 {
    margin-top: 24px;
    font-size: 16px;
  }
  .feature__card h3::before {
    font-size: 12px;
  }
  /*
  ====================================================================
   SP / ROOM
  ====================================================================
  */
  .swiper__container {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
  }
  .swiper-thumbs {
    position: static;
    width: 70%;
    margin-top: 12px;
    margin-right: 10px;
  }
  .swiper-thumbs .swiper-slide {
    padding: 0 2px;
  }
  .swiper-thumbs .swiper-slide::before {
    width: calc(100% - 4px);
    left: 2px;
  }
  .room-section {
    padding-bottom: 90px;
  }
  .room-section .section-block__content {
    display: block;
  }
  .room-section .section-block__heading {
    width: 100%;
    border-bottom: none;
  }
  .room-section .section-block__body {
    width: 100%;
    border-bottom: none;
  }
  .room-section .section-block__cta {
    padding-left: 0;
    display: block;
    margin-top: 24px;
  }
  .room-section .section-block__cta a {
    display: grid;
    grid-template-columns: 41.4% 1fr;
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding: 12px 0;
  }
  .room-section .section-block__cta a span {
    margin-top: 0;
    padding-bottom: 0;
  }
  .room-section__amenities {
    margin-top: 120px;
    display: block;
    padding-left: 40px;
  }
  .room-section__media {
    width: 100%;
    max-width: unset;
    margin-bottom: 36px;
  }
  .room-section__list {
    width: 100%;
  }
  .room-section__list h3 {
    border-top: 1px solid var(--color-default);
    padding-top: 24px;
    margin-bottom: 24px;
  }
  .room-section__list ul:first-of-type {
    margin-bottom: 24px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/