@charset "UTF-8";
/* =============================================================
    ホテル一覧
============================================================= */
:root {
  --color-border: #CCCCCC;
  --color-border-light: #EEEEEE;
  --color-gold: #A78B0E;
}

/*--------------------------------------------
フォントサイズ・余白などのレスポンシブ対応
---------------------------------------------*/
/* リセット
------------------------------------------------------------- */
.page-hotel-list select {
  appearance: none;
  border: none;
  outline: none;
  background-color: var(--color-white);
}

/* レイアウト
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .global-container {
    display: block;
  }
}

.global-contents {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .global-contents {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .global-contents {
    padding-bottom: 6rem;
  }
}

@media screen and (min-width: 768px) {
  .global-content__fluid-wrapper {
    max-width: 122rem;
    width: 100%;
    padding-inline: 1rem !important;
  }
}
/*
@media screen and (max-width: 767px) {
  .global-content__fluid-wrapper {
    padding-inline: 0 !important;
  }
}
*/

/* ボタン
------------------------------------------------------------- */
.hotel-list-btns {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .hotel-list-btns .c-button {
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-btns .c-button {
    width: calc(50% - 0.4rem);
  }
}

/* ページタイトル
------------------------------------------------------------- */
.page-title {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .page-title {
    padding-inline: var(--padding-horizontal-global);
  }
.page-title-kanto {
  font-size: 2rem;
}

}

/* マップエリア
------------------------------------------------------------- */
.map-area {
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .map-area {
    display: flex;
    justify-content: space-between;
  }
}
.map-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .map-img {
    width: 52rem;
  }
}
@media screen and (max-width: 767px) {
  .map-img {
    width: 100%;
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .map-link-area {
    width: calc(100% - 52rem);
    padding-left: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .map-link-area {
    width: 100%;
    padding-inline: 1.5rem;
  }
}

.map-select-box {
  position: relative;
  border: 0.1rem solid var(--color-border);
  border-radius: 0.6rem;
}
.map-select-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4rem;
  display: inline-block;
  width: 1.2rem;
  height: 0.6rem;
  background: url(../img/hotel-list/icon_arrow_down.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .map-select-box {
    width: 37rem;
  }
}
@media screen and (max-width: 767px) {
  .map-select-box {
    width: calc(100% - 3rem);
    margin-inline: auto;
  }
}

.map-select {
  width: 100%;
  font-size: 1.5rem;
  padding: 1.3rem 3rem 1.3rem 1.5rem;
  border-radius: 0.6rem;
}

.map-nav {
  display: grid;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .map-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .map-nav-item {
    flex: 0 0 calc((100% - 4rem) / 5);
    min-width: max-content;
  }
}
@media screen and (max-width: 767px) {
  .map-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(8 * (0.25vw));
  }
}

.map-nav-item {
  border: 0.1rem solid var(--color-border-light);
  border-radius: 0.8rem;
}

.map-nav-link {
  position: relative;
  display: block;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  padding: 1.25rem 3rem 1.25rem 1.6rem;
}
.map-nav-link:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  background: url(../img/hotel-list/icon_arrow_down.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .map-nav-link {
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .map-nav-link:after {
    right: 1.4rem;
    width: 1.2rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .map-nav-link {
    font-size: clamp(1.2rem, 16 * (0.25vw), 1.6rem);
    padding: calc(12.5 * (0.25vw)) calc(30 * (0.25vw)) calc(12.5 * (0.25vw)) calc(16 * (0.25vw));
  }
  .map-nav-link:after {
    right: calc(14 * (0.25vw));
    width: clamp(0.9rem, 12 * (0.25vw), 1.2rem);
    height: clamp(0.4rem, 6 * (0.25vw), 0.6rem);
  }
}

/* プレミアムエリア
------------------------------------------------------------- */
.premium-area {
  border: 0.5rem solid var(--color-gold);
}
.premium-area .js-accordionDetails[data-state-accordion=closed] .premium-btn--off {
  display: block;
}
.premium-area .js-accordionDetails[data-state-accordion=closed] .premium-btn--on {
  display: none;
}
.premium-area .js-accordionDetails[data-state-accordion=opened] .js-accordionSummary:after {
  transform: translateY(-50%) rotate(180deg);
}
.premium-area .js-accordionDetails[data-state-accordion=opened] .premium-btn--off {
  display: none;
}
.premium-area .js-accordionDetails[data-state-accordion=opened] .premium-btn--on {
  display: block;
}
@media screen and (min-width: 768px) {
  .premium-area {
    width: min(80rem, 100%);
    padding: 2.5rem 4.5rem;
    margin-inline: auto;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .premium-area {
    width: calc(100% - var(--padding-horizontal-global) * 2);
    padding: 1.6rem 1.5rem;
    margin-top: 3rem;
    margin-inline: auto;
  }
}

.premium-title {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: var(--fw-semibold);
  font-size: 1.8rem;
}
.premium-title img {
  width: 11.9rem;
}
@media screen and (max-width: 320px) {
  .premium-title {
    font-size: 1.7rem;
  }
}

.premium-title-text {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1.4rem;
}

.premium-lead {
  font-size: 1.3rem;
  margin-top: 0.7rem;
}

.premium-accordion-area {
  display: flex;
  flex-wrap: wrap;
}

.premium-list {
  order: 1;
  margin-top: 2rem;
  border-top: 0.1rem solid #DDDDDD;
}
@media screen and (min-width: 768px) {
  .premium-list {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .premium-list {
    padding-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .premium-list-item {
    display: flex;
    justify-content: space-between;
  }
  .premium-list-item + .premium-list-item {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .premium-list-item + .premium-list-item {
    margin-top: 2.7rem;
  }
}

@media screen and (min-width: 768px) {
  .premium-list-img-box {
    width: 35rem;
  }
}
@media screen and (max-width: 767px) {
  .premium-list-img-box {
    width: min(30rem, 100%);
    margin-inline: auto;
  }
}

.premium-list-img {
  border-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .premium-list-info {
    width: calc(100% - 35rem);
    padding-left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .premium-list-info {
    margin-top: 1.4rem;
  }
}

.premium-list-title {
  font-size: 1.4rem;
}
.premium-list-text {
  font-size: 1.2rem;
  color: #888888;
  margin-top: 1rem;
}
.premium-btn {
  position: relative;
  font-size: 1.3rem;
  padding-right: 2.5rem;
  line-height: 1;
  order: 2;
  margin-left: auto;
}
.premium-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(../img/hotel-list/icon_arrow_down_black.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transform-origin: center;
}
.premium-btn--on {
  display: none;
}
@media screen and (min-width: 768px) {
  .premium-btn {
    margin-top: 2.2rem;
    transition: opacity var(--transition-default);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .premium-btn:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (max-width: 767px) {
  .premium-btn {
    margin-top: 1rem;
  }
}

/* ホテル一覧エリア
------------------------------------------------------------- */
.region-area .js-accordionDetails[data-state-accordion=opened] .region-title:after {
  transform: translateY(-50%) rotate(0deg);
}
@media screen and (min-width: 768px) {
  .region-area {
    margin-top: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .region-area {
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .region-wrapper {
    border-bottom: 0.1rem solid var(--color-border);
  }
  .region-wrapper[data-state-accordion=opened] {
    border-bottom: none;
  }
  .region-wrapper + .region-wrapper {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .region-wrapper + .region-wrapper {
    padding-top: 4rem;
    border-top: 0.1rem solid var(--color-border);
  }
}

.region-title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 1.1rem 3.2rem 1.1rem 1.5rem;
}
.region-title:after, .region-title:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 1.4rem;
  height: 0.15rem;
  background-color: var(--color-secondary);
}
.region-title:before {
  transform: translateY(-50%);
}
.region-title:after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform var(--transition-default);
}
.region-title img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .region-title:after, .region-title:before {
    right: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .region-title:after, .region-title:before {
    right: 2.3rem;
  }
}

.region-title--small {
  font-weight: normal;
  font-weight: bold;
  font-size: 2rem;
  background-color: var(--color-gray-main);
  padding: 0.8rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .hotel-list {
    margin-top: 0.3rem;
  }
  .hotel-list + .region-title--small {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list {
    overflow: hidden;
  }
}

.hotel-list-item + .hotel-list-item {
  border-top: 0.1rem solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .hotel-list-item {
    display: flex;
    padding-inline: 1rem;
    padding-block: 2.3rem 2.7rem;
  }
  .hotel-list-item:last-child {
    border-bottom: 0.1rem solid var(--color-border);
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-item {
    padding-inline: 1.5rem;
    padding-block: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .hotel-list-info {
    width: calc(100% - min(59rem, 100%));
    padding-left: 6rem;
  }
  .hotel-list-info:has(.hotel-list-icon-premium) {
    padding-top: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-info {
    margin-top: 1.3rem;
  }
}

.hotel-list-icon-premium {
  font-family: var(--font-lato);
  font-size: 1.2rem;
  color: var(--color-white);
  padding: 0.2rem 1.5rem;
  background-color: var(--color-gold);
  border-radius: 9999px;
}
.hotel-list-icon-premium + .hotel-list-title {
  margin-top: 0.6rem;
}

.hotel-list-title--ja {
  font-size: 1.8rem;
  line-height: 1.44444444;
  font-weight: var(--fw-semibold);
}
.hotel-list-title--en {
  font-size: 1.2rem;
  color: #888888;
  font-family: var(--font-lato);
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  line-height: 1.75;
  margin-top: 0.5rem;
}

.hotel-list-address {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hotel-list-address-text {
  width: calc(100% - 5.5rem);
  font-size: 1.3rem;
  line-height: 1.5;
  text-decoration: none;
}

.hotel-list-address-btn {
  position: relative;
  top: 0.5rem;
  display: grid;
  place-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 0.1rem solid #DDDDDD;
  border-radius: 0.8rem;
}
.hotel-list-address-btn img {
  width: 2.5rem;
}
@media (hover: hover) {
  .hotel-list-address-btn {
    transition: opacity var(--transition-default);
  }
  .hotel-list-address-btn:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-address-btn {
    margin-bottom: 1rem;
  }
}

.hotel-list-tel, .hotel-list-tel-num {
  font-size: 1.3rem;
  font-family: var(--font-lato);
}

.hotel-list-tel {
  display: block;
  margin-top: 0.3rem;
}

.hotel-list-tel-num {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .hotel-list-tel-num {
    pointer-events: none;
  }
}
.hotel-list-walk {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding: 0.2rem 3rem;
  margin-top: 0.5rem;
  background: url(../img/hotel-list/icon_walk.svg) no-repeat center left 1.1rem/1.6rem;
  border: 0.1rem solid #AAAAAA;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .hotel-list-walk {
    width: 37rem;
  }
}
.hotel-list-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.hotel-list-icon {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  border: 0.1rem solid #DDDDDD;
  padding: 0.2rem 0.8rem 0rem 0.5rem;
  border-radius: 9999px;
}
.hotel-list-icon img {
  width: 2.5rem;
  margin-right: 0.2rem;
}

@media screen and (min-width: 768px) {
  .hotel-list-img-area {
    width: min(59rem, 100%);
    padding-top: 0.7rem;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-img-area {
    width: 100%;
  }
}

.hotel-list-img-area-inner {
  position: relative;
}

@media screen and (max-width: 767px) {
  .hotel-list-img-box {
    overflow: visible;
  }
}

.hotel-list-img {
  border-radius: 0.8rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hotel-list-img {
    width: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-img {
    width: 18rem;
  }
}

.swiper-button-next, .swiper-button-prev {
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.16));
}
.swiper-button-next svg, .swiper-button-prev svg {
  display: none;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .swiper-button-next, .swiper-button-prev {
    width: 5rem;
    height: 5rem;
    background: url(../img/hotel-list/icon_slider_arrow_prev.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}

.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next, .swiper-horizontal .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0);
}

.swiper-horizontal .swiper-button-next, .swiper-horizontal .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 49%);
}

.swiper-button-next {
  right: 0;
  background: url(../img/hotel-list/icon_slider_arrow_next.svg) no-repeat center/contain;
  transform: translateX(50%);
}

.swiper-button-prev {
  left: 0;
  background: url(../img/hotel-list/icon_slider_arrow_prev.svg) no-repeat center/contain;
  transform: translateX(-50%);
}

.swiper-pagination {
  left: auto;
  display: inline-block;
  width: fit-content;
  font-size: 1.2rem;
  font-family: var(--font-lato);
  padding: 0.2rem 1.4rem 0.1rem;
  color: var(--color-text-default);
  background-color: var(--color-white);
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    right: 0.9rem;
    bottom: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    right: 1.4rem;
    bottom: 0.8rem;
  }
}

.hotel-list-map-modal {
  top: 50%;
  left: 50%;
  width: 100%;
  border: none;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity var(--transition-default), overlay var(--transition-default) allow-discrete, display var(--transition-default) allow-discrete;
}
.hotel-list-map-modal[open] {
  opacity: 1;
}
@starting-style {
  .hotel-list-map-modal[open] {
    opacity: 0;
  }
}
.hotel-list-map-modal::backdrop {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .hotel-list-map-modal {
    max-width: 100rem;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-map-modal {
    max-width: min(38rem, 95%);
  }
}

.hotel-list-map-modal-content {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hotel-list-map-modal-content {
    padding: 3rem 3rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-map-modal-content {
    padding: 3rem 1.5rem 2rem;
  }
}
.hotel-list-map-modal-content .hotel-list-btns {
  justify-content: center;
  margin-top: 1.8rem;
}

.hotel-list-map-modal-title {
  font-size: 2.2rem;
  padding-right: 5rem;
}

.hotel-list-map-modal-iframe-box {
  display: block;
  width: 100%;
  position: relative;
  margin-top: 1.5rem;
}
.hotel-list-map-modal-iframe-box iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .hotel-list-map-modal-iframe-box {
    aspect-ratio: 47/23;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-map-modal-iframe-box {
    aspect-ratio: 35/46;
  }
}

.hotel-list-map-modal-close {
  position: absolute;
  top: 3.4rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .hotel-list-map-modal-close {
    right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .hotel-list-map-modal-close {
    right: 2.4rem;
  }
}

.map-area--bottom {
  padding-inline: 1.5rem;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .map-area--bottom {
    border-top: 0.1rem solid var(--color-border);
    margin-inline: auto;
  }
  .map-area--bottom .map-select-box {
    width: 100%;
  }
}