@charset "UTF-8";
@-webkit-keyframes megaMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
    border-top: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
}
@keyframes megaMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
    border-top: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: -ms-grid;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: -ms-grid;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
}
@-webkit-keyframes modalNavMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
@keyframes modalNavMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
/* KVエリア */
.p-kv {
  width: 100vw;
  height: auto;
  position: relative;
  padding-top: 100px;
}
@media only screen and (max-width: 1023px) {
  .p-kv {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .p-kv {
    height: auto;
  }
}
.p-kv-inner {
  height: 88vh;
  min-height: 450px;
  max-height: 700px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-kv-inner {
    height: 30vh;
    min-height: auto;
    max-height: none;
  }
}

.p-fv-slide {
  height: 100%;
  position: relative;
}

.p-fv-slide__cover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 460px;
  aspect-ratio: 300/250;
  background-color: rgba(109, 187, 132, 0.7);
  z-index: 1;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1023px) {
  .p-fv-slide__cover {
    width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .p-fv-slide__cover {
    width: 58.57%;
    aspect-ratio: 300/170;
  }
}

.p-fv-slide__cover-inner {
  padding-left: 10px;
  padding-bottom: 15px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-fv-slide__cover-inner {
    padding-left: 8px;
    padding-bottom: 8px;
  }
}

.p-fv-slide__cover-text {
  font-size: 24px;
  color: #fff;
  position: relative;
  display: block;
}
@media only screen and (max-width: 1023px) {
  .p-fv-slide__cover-text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .p-fv-slide__cover-text {
    font-size: 2.93vw;
    line-height: 1.3;
  }
}

.p-fv-slide__item {
  position: relative;
}

.p-fv-slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fv-thumb-slide {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-fv-thumb-slide {
    display: none;
  }
}
.p-fv-thumb-slide .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.p-fv-slide__pagination-section {
  background-color: #333;
  padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  .p-fv-slide__pagination-section {
    display: none;
  }
}

.swiper-pagination-bullet {
  background-color: #fff;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #009e6f;
}

.p-fv-slide__pagination {
  text-align: center;
}

.p-fv-thumb-slide__item {
  width: 60px !important;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
  position: relative;
}
.p-fv-thumb-slide__item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: solid 3px transparent;
  pointer-events: none;
}
.p-fv-thumb-slide__item:hover::before, .p-fv-thumb-slide__item.swiper-slide-thumb-active::before {
  border: solid 3px #009e6f;
}
.p-fv-thumb-slide__item:hover .p-fv-thumb-slide__img, .p-fv-thumb-slide__item.swiper-slide-thumb-active .p-fv-thumb-slide__img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.p-fv-thumb-slide__img {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.p-logo-section {
  padding: 40px 20px;
}

.p-logo-section__inner {
  max-width: 1000px;
  margin: auto;
}

.c-link-button {
  display: block;
  background-color: #009e6f;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .c-link-button:hover::before {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.c-link-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  background-color: #45bf7e;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-link-button a {
  position: relative;
  color: #fff;
}
.c-link-button a:hover {
  opacity: 1;
}
.c-link-button a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 12px;
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 1271px) {
  .c-link-button a::before {
    width: 16px;
    left: 10px;
  }
}
.c-link-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  border-top: solid 2px #009e6f;
  border-right: solid 2px #009e6f;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  z-index: 1;
  width: 8px;
  height: auto;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 1271px) {
  .c-link-button a::after {
    width: 6px;
    left: 14px;
  }
}

/* about */
.about {
  width: 100%;
  height: 100%;
  background-color: #d9ede3;
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 50px 0;
  }
}
.about__item {
  width: 100%;
}
.about__item:nth-child(n+2) {
  margin-top: 4.791vw;
}
@media only screen and (max-width: 1023px) {
  .about__item:nth-child(n+2) {
    margin-top: 40px;
  }
}
.about__item--img img {
  width: 100%;
  height: auto;
  aspect-ratio: 640/356;
}
.about__item .double {
  width: 12vw;
}
@media only screen and (max-width: 767px) {
  .about__item .double {
    width: calc(35% - 2.0833333333vw);
  }
}
.about__item .double:nth-child(n+2) {
  margin-left: 2.0833333333vw;
}

.about__title {
  color: #4d7c64;
  font-size: 35px;
  text-align: center;
  padding-bottom: 1.57vw;
  position: relative;
}
.about__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #4d7c64;
}
@media only screen and (max-width: 1023px) {
  .about__title {
    font-size: 5.8651026393vw;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .about__title {
    margin-top: 3.1290743155vw;
  }
}

.about__sub-title {
  font-size: 29px;
}
@media only screen and (max-width: 1023px) {
  .about__sub-title {
    font-size: 5.17vw;
  }
}

.about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 4.6875vw -1.05vw 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px 0px;
}
@media only screen and (max-width: 1023px) {
  .about__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
    margin: 30px 0 0;
  }
}

.about__col {
  width: 45%;
  padding: 0 1.05vw;
}
@media only screen and (max-width: 1023px) {
  .about__col {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .about__col--sp-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .about__col--sp-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (max-width: 1023px) {
  .about__col--sp-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.about__col--img {
  width: 55%;
}
@media only screen and (max-width: 1023px) {
  .about__col--img {
    width: 100%;
  }
}
.about__col--single {
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .about__col--single {
    width: 100%;
  }
}

.about__left {
  width: 50%;
  padding-right: 2.1vw;
}
@media only screen and (max-width: 767px) {
  .about__left {
    width: 100%;
    padding: 0;
    margin-top: 4.6875vw;
  }
}

.about__item-title {
  font-size: 26px;
  text-align: center;
  font-style: italic;
}
@media only screen and (max-width: 1023px) {
  .about__item-title {
    font-size: 2.35vw;
  }
}
@media only screen and (max-width: 767px) {
  .about__item-title {
    font-size: 18px;
  }
}

.about__item-txt {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 1023px) {
  .about__item-txt {
    font-size: 1.7595307918vw;
  }
}
@media only screen and (max-width: 767px) {
  .about__item-txt {
    font-size: 3.7209302326vw;
  }
}

.about__item-button-wrap {
  margin-top: 2.604vw;
}
@media only screen and (max-width: 767px) {
  .about__item-button-wrap {
    margin-top: 20px;
  }
}

.about__item-button {
  display: block;
  width: 18.2291666667vw;
  height: 3.3333333333vw;
  margin: auto;
}
@media only screen and (max-width: 1023px) {
  .about__item-button {
    width: 70%;
    height: 50px;
  }
}
.about__item-button a {
  display: inline-block;
  width: 100%;
  font-size: 1.302vw;
  line-height: 3.3333333333vw;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .about__item-button a {
    font-size: 2.35vw;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .about__item-button a {
    font-size: 3.7209302326vw;
  }
}
.about__button--flex {
  margin-top: 2.604vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .about__button--flex {
    margin-top: 20px;
  }
}

/* about2 */
.about2 {
  width: 100%;
  height: 100%;
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .about2 {
    padding-top: 50px;
  }
}
.about2--has-pb {
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .about2--has-pb {
    padding-bottom: 50px;
  }
}
.about2__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1023px) {
  .about2__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about2__item {
  width: 100%;
}
.about2__item--txt {
  font-size: 0.9375vw;
  text-align: center;
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 1023px) {
  .about2__item--txt {
    font-size: 1.7595307918vw;
  }
}
@media only screen and (max-width: 767px) {
  .about2__item--txt {
    font-size: 3.7209302326vw;
  }
}
.about2__item--img img {
  width: 100%;
  height: auto;
  aspect-ratio: 640/356;
}

.about2__left {
  width: 55%;
}
@media only screen and (max-width: 1023px) {
  .about2__left {
    width: 100%;
  }
}

.about2__right {
  width: 45%;
  padding-left: 2.1vw;
}
@media only screen and (max-width: 1023px) {
  .about2__right {
    width: 100%;
    padding: 0;
    margin-top: 4.6875vw;
  }
}

.about2__item-title {
  font-size: 35px;
  text-align: center;
  color: #4d7c64;
  position: relative;
  padding-bottom: 15px;
}
.about2__item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #4d7c64;
}
@media only screen and (max-width: 1023px) {
  .about2__item-title {
    font-size: 3.9100684262vw;
  }
}
@media only screen and (max-width: 767px) {
  .about2__item-title {
    font-size: 5.5813953488vw;
  }
}

.about2__item-txt {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 1023px) {
  .about2__item-txt {
    font-size: 1.7595307918vw;
  }
}
@media only screen and (max-width: 767px) {
  .about2__item-txt {
    font-size: 3.7209302326vw;
    margin-top: 30px;
  }
}

.about2__item-button {
  display: block;
  width: 20vw;
  height: 3.3333333333vw;
  margin: 2.604vw auto 0;
}
@media only screen and (max-width: 1023px) {
  .about2__item-button {
    width: 80%;
    height: 50px;
    margin-top: 30px;
  }
}
.about2__item-button a {
  display: inline-block;
  width: 100%;
  font-size: 1.302vw;
  line-height: 3.3333333333vw;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .about2__item-button a {
    font-size: 2.35vw;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .about2__item-button a {
    font-size: 4.1860465116vw;
  }
}
/* room */
.room {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background-color: #d9ede3;
}
@media only screen and (max-width: 767px) {
  .room {
    padding: 50px 0;
  }
}

.p-room-blocks {
  margin-top: 2.2395833333vw;
}
@media only screen and (max-width: 767px) {
  .p-room-blocks {
    margin-top: 30px;
  }
}

.p-room-block + .p-room-block {
  margin-top: 40px;
}

.p-room-block__head {
  font-weight: bold;
  font-size: 24px;
  color: #4d7c64;
}

.p-room-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px -10px 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px 0;
}
@media only screen and (max-width: 767px) {
  .p-room-list {
    margin: 20px 0 0;
  }
}

.p-room-list__item {
  padding: 0 10px;
  width: 25%;
}
@media only screen and (max-width: 1023px) {
  .p-room-list__item {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .p-room-list__item {
    width: 100%;
    padding: 0;
  }
}

.js-fade-anime {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.js-fade-anime.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.p-room-list__link {
  display: block;
  background-color: #fff;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .p-room-list__link:hover {
    opacity: 0.8;
  }
}
@media only screen and (min-width: 768px) {
  .p-room-list__link--no-link:hover {
    opacity: 1;
  }
}

.p-room-list__thumb {
  aspect-ratio: 256/150;
}

.p-room-list__thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-room-list__content {
  padding: 15px;
}

.p-room-list__name {
  font-weight: bold;
  font-size: 19px;
  color: #4d7c64;
}
@media only screen and (max-width: 767px) {
  .p-room-list__name {
    font-size: 4.8vw;
  }
}

.p-room-list__desc {
  margin-top: 15px;
}
@media only screen and (max-width: 1023px) {
  .p-room-list__desc {
    font-size: 1.76vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-room-list__desc {
    margin-top: 10px;
    font-size: 3.72vw;
  }
}

.room__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.604vw 0 0;
}
@media only screen and (max-width: 767px) {
  .room__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
}

.room__btns__item {
  display: block;
  width: 33.3%;
  height: 3.3333333333vw;
}
@media only screen and (max-width: 1023px) {
  .room__btns__item {
    width: 70%;
    height: 50px;
  }
}
.room__btns__item a {
  display: inline-block;
  width: 100%;
  font-size: 1.302vw;
  line-height: 3.3333333333vw;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .room__btns__item a {
    font-size: 2.35vw;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .room__btns__item a {
    font-size: 4.1860465116vw;
  }
}
.room__btns__item:nth-child(n+2) {
  margin-left: 2.0833333333vw;
}
@media only screen and (max-width: 767px) {
  .room__btns__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 15px;
  }
}

.room__title {
  color: #4d7c64;
  font-size: 3.125vw;
  position: relative;
  padding-bottom: 15px;
}
.room__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #4d7c64;
}
@media only screen and (max-width: 1023px) {
  .room__title {
    font-size: 5.8651026393vw;
  }
}
@media only screen and (max-width: 767px) {
  .room__title {
    font-size: 5.5813953488vw;
  }
}

/* floor */
.floor {
  width: 100%;
  height: auto;
  background-color: #d9ede3;
  padding: 100px 0 0;
  margin-top: 6.77vw;
}
@media only screen and (max-width: 767px) {
  .floor {
    padding: 50px 0 0;
  }
}
.floor__title {
  color: #4d7c64;
  font-size: 3.125vw;
}
@media only screen and (max-width: 1023px) {
  .floor__title {
    font-size: 5.8651026393vw;
  }
}
@media only screen and (max-width: 767px) {
  .floor__title {
    font-size: 5.5813953488vw;
  }
}

.floor__item {
  width: 100%;
  margin: 2.2395833333vw auto 0;
}
@media only screen and (max-width: 767px) {
  .floor__item {
    margin-top: 30px;
  }
}
.floor__item {
  -webkit-filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
}

.floor__item-img {
  border-radius: 16px;
}

.floor__annotation {
  font-size: 16px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .floor__annotation {
    font-size: 14px;
  }
}

.c-section-title {
  color: #4d7c64;
  font-size: 35px;
  position: relative;
  padding-bottom: 15px;
}
.c-section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #4d7c64;
}
@media only screen and (max-width: 1023px) {
  .c-section-title {
    font-size: 5.8651026393vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-section-title {
    font-size: 5.5813953488vw;
  }
}

/* access */
.access {
  width: 100%;
  height: auto;
  padding: 100px 0;
  margin-top: 6.77vw;
  background-color: #d9ede3;
}
@media only screen and (max-width: 767px) {
  .access {
    padding: 50px 0;
    margin-top: 50px;
  }
}
.access__intro {
  font-size: 20px;
}
@media only screen and (max-width: 1023px) {
  .access__intro {
    font-size: 1.7595307918vw;
  }
}
@media only screen and (max-width: 767px) {
  .access__intro {
    font-size: 3.7209302326vw;
  }
}
.access__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .access__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access__flex--title {
  color: #4d7c64;
  font-size: 35px;
}
@media only screen and (max-width: 1023px) {
  .access__flex--title {
    font-size: 5.8651026393vw;
  }
}
.access__flex--txt {
  font-size: 0.9375vw;
  margin-left: 2.916vw;
}
@media only screen and (max-width: 1023px) {
  .access__flex--txt {
    font-size: 1.7595307918vw;
  }
}
@media only screen and (max-width: 767px) {
  .access__flex--txt {
    font-size: 3.7209302326vw;
    margin-left: 0;
  }
}
.access .center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access .start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 2.604vw;
}
@media only screen and (max-width: 1023px) {
  .access .start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .access .start {
    margin-top: 30px;
  }
}
.access .left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.access .space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.access__map-col {
  width: calc(50% - 1.5625vw);
}
@media only screen and (max-width: 1023px) {
  .access__map-col {
    width: 100%;
  }
}
.access__map {
  -webkit-filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
}
.access__map-img {
  border-radius: 16px;
}
.access__item-col {
  width: calc(50% - 1.5625vw);
}
@media only screen and (max-width: 1023px) {
  .access__item-col {
    width: 100%;
    margin-top: 4.6875vw;
  }
}
.access__item--img {
  width: 100%;
  height: 100%;
  aspect-ratio: 610/356;
}
.access__item--title {
  font-size: 0.833vw;
  color: #4d7c64;
  margin-top: 0.885vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 1023px) {
  .access__item--title {
    font-size: 1.5640273705vw;
  }
}
@media only screen and (max-width: 767px) {
  .access__item--title {
    font-size: 5.5813953488vw;
  }
}
.access__item--title:nth-child(n+2) {
  margin-top: 2.1354166667vw;
}
@media only screen and (max-width: 1023px) {
  .access__item--title:nth-child(n+2) {
    margin-top: 4.6875vw;
  }
}
.access__item--title:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background-color: #4d7c64;
  margin-left: 1.0416666667vw;
}
.access__item-block + .access__item-block {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .access__item-block + .access__item-block {
    margin-top: 20px;
  }
}
.access__item--txt {
  font-size: 18px;
  margin-top: 0.9375vw;
}
@media only screen and (max-width: 767px) {
  .access__item--txt {
    font-size: 14px;
  }
}
.access__item--small {
  font-size: 0.833vw;
  margin-top: 0.677vw;
  line-height: 1.25;
}
@media only screen and (max-width: 1023px) {
  .access__item--small {
    font-size: 1.5640273705vw;
  }
}
@media only screen and (max-width: 767px) {
  .access__item--small {
    font-size: 3.2558139535vw;
  }
}
.access__item--small:nth-child(n+2) {
  margin-top: 1.6666666667vw;
  padding-top: 0.9375vw;
  border-top: solid 1px #4d7c64;
}
@media only screen and (max-width: 767px) {
  .access__item--small:nth-child(n+2) {
    margin-top: 12px;
    padding-top: 12px;
  }
}
.access__item--span {
  font-size: 20px;
  margin-top: 0.52vw;
  padding-left: 1.5625vw;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .access__item--span {
    padding-left: calc(3.7209302326vw + 10px);
    font-size: 14px;
  }
}
.access__item--span:nth-child(n+2) {
  margin-left: 1.25vw;
}
@media only screen and (max-width: 1023px) {
  .access__item--span:nth-child(n+2) {
    margin-left: 0;
    margin-top: 1.25vw;
  }
}
.access__item--span:before {
  position: absolute;
  content: "";
  width: 1.145vw;
  height: 1.145vw;
  top: 50%;
  left: 0;
  background-image: url("../images/home/ginza.svg");
  background-size: cover;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (max-width: 767px) {
  .access__item--span:before {
    width: 3.7209302326vw;
    height: 3.7209302326vw;
  }
}
.access__item--span.ginza:before {
  background-image: url("../images/home/ginza.svg");
}
.access__item--span.namboku:before {
  background-image: url("../images/home/namboku.svg");
}
.access__item--span.marunouchi:before {
  background-image: url("../images/home/marunouchi.svg");
}
.access__item--span.chiyoda:before {
  background-image: url("../images/home/chiyoda.svg");
}

.access__btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px -8px 0;
}
@media only screen and (max-width: 1271px) {
  .access__btn-list {
    margin: 30px -5px 0;
  }
}
@media only screen and (max-width: 767px) {
  .access__btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px 0;
    margin: 30px 0 0;
  }
}

.access__btn-item {
  width: 50%;
  padding: 0 8px;
  height: 3.3333333333vw;
}
@media only screen and (max-width: 1271px) {
  .access__btn-item {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 1023px) {
  .access__btn-item {
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .access__btn-item {
    width: 100%;
    padding: 0;
  }
}
.access__btn {
  display: block;
  height: 100%;
}

.access__btn {
  font-weight: bold;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1271px) {
  .access__btn {
    font-size: 16px;
  }
}

.room-block + .room-block {
  margin-top: 80px;
}

.room-block__floor {
  text-align: center;
  font-weight: normal;
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  .room-block__floor {
    font-size: 36px;
  }
}

.room__item {
  margin-top: 2.2395833333vw;
  background-color: #fff;
  padding: 60px 40px;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .room__item {
    padding: 60px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .room__item {
    margin-top: 30px;
    padding: 30px 15px;
  }
}

.room-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px -15px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 0;
}
@media only screen and (max-width: 1023px) {
  .room-list {
    margin: 30px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .room-list {
    margin-top: 20px;
  }
}

.room-list__item {
  width: 50%;
  padding: 0 15px;
}
@media only screen and (max-width: 1023px) {
  .room-list__item {
    width: 100%;
    padding: 0;
  }
}

.room-list__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .room-list__item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.room-list__img-wrap {
  aspect-ratio: 256/150;
  min-width: 256px;
  max-width: 256px;
}
@media only screen and (max-width: 1023px) {
  .room-list__img-wrap {
    text-align: center;
    max-width: none;
    min-width: auto;
  }
}

.room-list__detail-wrap {
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  .room-list__detail-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}

.room-list__room-name {
  font-size: 1.1vw;
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .room-list__room-name {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .room-list__room-name {
    font-size: 18px;
  }
}

.u-ib {
  display: inline-block !important;
}

.p-gallery-section {
  padding: 100px 0;
  background-color: #d9ede3;
}
@media only screen and (max-width: 767px) {
  .p-gallery-section {
    padding: 50px 0;
  }
}

.p-gallery__title {
  font-size: 35px;
}
@media only screen and (max-width: 1023px) {
  .p-gallery__title {
    font-size: 5.8651026393vw;
  }
}
.p-gallery__title {
  text-align: center;
  color: #4d7c64;
  position: relative;
  padding-bottom: 15px;
}

.p-gallery__main {
  margin-top: 50px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-gallery__main {
    margin-top: 30px;
  }
}

.p-gallery__pagination-wrap {
  display: none;
  position: relative;
  min-height: 50px;
  background: #2d2d2d;
}
@media only screen and (max-width: 767px) {
  .p-gallery__pagination-wrap {
    display: block;
    bottom: 0;
  }
}
.p-gallery__pagination-wrap .swiper-pagination {
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-gallery__pagination-wrap .swiper-pagination-bullet {
  margin: 0;
}

.p-gallery__thumb {
  max-width: 1200px;
  margin: 40px auto 50px;
}
@media only screen and (max-width: 767px) {
  .p-gallery__thumb {
    display: none;
  }
}
.p-gallery__thumb .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
}

.p-gallery_thum__thumb-item {
  width: 100% !important;
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
  -webkit-transition: border-color 0.3s, -webkit-filter 0.3s;
  transition: border-color 0.3s, -webkit-filter 0.3s;
  transition: filter 0.3s, border-color 0.3s;
  transition: filter 0.3s, border-color 0.3s, -webkit-filter 0.3s;
  border: solid 3px transparent;
  cursor: pointer;
}
.p-gallery_thum__thumb-item:hover, .p-gallery_thum__thumb-item.swiper-slide-thumb-active {
  -webkit-filter: brightness(1);
          filter: brightness(1);
  border-color: #009e6f;
}