@charset "utf-8";


/* ---------------------------------------------------------
 * room
** --------------------------------------------------------- */
.room {
  padding-top: 10px;
  margin-bottom: -40px;
  background-color: #fff;
}
.room .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.room .header .left {
}
.room .header .types {
  display: flex;
  gap: 5px;
}
.room .header .types li {
  padding: 3px 10px;
  background-color: #FDF3EB;
  border-radius: 100px;
  font-size: 14px;
}
.room .header h2 {
  margin-top: 5px;
  font-size: 16px;
  font-weight: bold;
}
.room .header .cost {
  color: var(--pri-color);
  font-size: 17px;
}
.room .header .cost span {
  font-size: 24px;
  font-weight: bold;
}
.room .header .right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-left: 1px solid #ccc;
  cursor: pointer;
}
.room .header .right img {
  height: 20px;
}
.room .header .right div {
  font-size: 12px;
}

.room .gallery {
  margin-top: 10px;
  overflow: hidden;
}
.room .gallery .swiper-main {
  position: relative;
}
.room .gallery .swiper-main .img {
  background-color: #f4f4f4;
  text-align: center;
}
.room .gallery .swiper-main .img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
}
.room .gallery .slide_ttl {
  padding: 5px 10px;
  font-size: 14px;
}
.room .gallery .swiper-wrapper {
  z-index: 1;
}
.room .gallery .swiper-controller {
}
.room .gallery .swiper-prev,
.room .gallery .swiper-next {
  position: absolute;
  z-index: 2;
  top: 70px;
  width: 30px;
  height: 60px;
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: all ease 0.3s;
}
.room .gallery .swiper-prev {
  left: 0;
  border-left: none;
  border-radius: 0 100px 100px 0;
}
.room .gallery .swiper-next {
  right: 0;
  border-right: none;
  border-radius: 100px 0 0 100px;
}
.room .gallery .swiper-prev::before,
.room .gallery .swiper-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 9px;
  height: 9px;
  margin-top: auto;
  margin-bottom: auto;
  transform: rotate(45deg);
}
.room .gallery .swiper-prev::before {
  left: 10px;
  border-left: 1px solid #666;
  border-bottom: 1px solid #666;
}
.room .gallery .swiper-next::before {
  right: 10px;
  border-right: 1px solid #666;
  border-top: 1px solid #666;
}
.room .gallery .swiper-button-disabled {
  background-color: #ccc;
  cursor: initial;
}
.room .gallery .swiper-thumb {
}
.room .gallery .swiper-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}
.room .gallery .swiper-thumb {
}
.room .gallery .swiper-thumb .swiper-slide-thumb-active {
  border: 3px solid #ED6103;
}

.room .info,
.room .kodawari {
  margin-top: 20px;
}
.room .info h3,
.room .kodawari h3 {
  padding-left: 10px;
  font-size: 18px;
  font-weight: bold;
}
.room .info table,
.room .kodawari table {
  width: 100%;
  margin-top: 5px;
  border-bottom: 1px solid #ccc;
}
.room .info th,
.room .kodawari th,
.room .info td,
.room .kodawari td {
  padding: 15px 10px;
  border-top: 1px solid #ccc;
}
.room .info th,
.room .kodawari th {
  background-color: #f2f2f2;
  font-weight: normal;
}
.room .info td,
.room .kodawari td {
}
.room .info .map_link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  margin-top: 5px;
  border: 1px solid #999;
  border-radius: 4px;
}
.room .info .map_link img {
  width: 14px;
  margin-right: 5px;
}

.room .nearby_facilities {
  margin-top: 20px;
}
.room .nearby_facilities h3 {
  padding-left: 10px;
  font-size: 18px;
  font-weight: bold;
}
.room .nearby_facilities .facilities {
}
.room .nearby_facilities .facilities > li {
  margin-top: 10px;
}
.room .nearby_facilities h4 {
  padding-left: 10px;
  font-weight: bold;
}
.room .nearby_facilities .imgs {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: auto;
/*  scrollbar-width: none;*/
}
.room .nearby_facilities .imgs > li {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.room .nearby_facilities .imgs > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}