@media screen and (min-width: 768px) {
  .LowerHead {
    height: 225px;
  }
  .LowerHead .LowerHead-right {
    width: 100%;
    position: relative;
  }
  .LowerHead .LowerHead-right .LowerHead-index {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .Footer.-colored {
    background-color: #f7f6f0;
  }
}
.palette_page .main_contents .palette_gallery,
.palette_detail_page .main_contents .palette_gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 100%;
}
.palette_page .main_contents .palette_gallery .gallery-item,
.palette_detail_page .main_contents .palette_gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.palette_page .main_contents .palette_gallery .gallery-item img,
.palette_detail_page .main_contents .palette_gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.palette_page .main_contents .palette_gallery .gallery-item.large,
.palette_detail_page .main_contents .palette_gallery .gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 648px) {
  .palette_page .main_contents .palette_gallery,
  .palette_detail_page .main_contents .palette_gallery {
    gap: 15px;
    grid-template-columns: repeat(2, minmax(80px, 1fr));
  }
}

.palette_page .lower_head_index_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 12px;
  color: #141414;
  font-size: 12px;
  line-height: 24px;
}
.palette_page .main_contents {
  padding-inline: 1.875rem;
  border-top: 1px solid #141414;
  padding-top: 30px;
  padding-bottom: 150px;
}
@media screen and (max-width: 648px) {
  .palette_page .LowerHead-right {
    padding-bottom: 35px;
    border-bottom: 1px solid #141414;
  }
  .palette_page .LowerHead-right .lower_head_index_text {
    position: static;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-transform: none;
            transform: none;
    font-weight: 400;
    letter-spacing: 0.3px;
  }
  .palette_page .main_contents {
    padding: 8px 19px 100px;
    border-top: none;
  }
}

.palette_detail_page .main_contents {
  margin-top: 6.25rem;
}
.palette_detail_page .main_contents .palette_detail_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 54px auto 150px;
  padding-inline: 1.875rem;
  border-bottom: 1px solid #141414;
}
.palette_detail_page .main_contents .palette_detail_container .palette_image_container {
  grid-row: span 3;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-right: 1px solid #141414;
  padding: 90px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_image_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_header .back_button {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_header .back_button svg {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_header .sns_container {
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0.5px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_header .sns_container .share::after {
  content: "";
  background-color: #141414;
  height: 1px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 16px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_header .sns_container a {
  padding-left: 16px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_contents {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 120px;
  font-family: "Noto Sans JP";
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_contents h2 {
  line-height: 1.5;
}
.palette_detail_page .main_contents .palette_detail_container .palette_detail_contents .palette_detail_text {
  margin-top: 24px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-top: 1px solid #141414;
  margin-right: -1.875rem;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card .palette_hotel_image {
  aspect-ratio: 1/1;
  width: 110px;
  overflow: hidden;
  border-radius: 8px;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card .palette_hotel_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card .palette_hotel_detail {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card .palette_hotel_detail .location {
  font-size: 10px;
  font-weight: 700;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card .palette_hotel_detail .category {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card .palette_hotel_detail h3 {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
}
.palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .next_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 4px 0px 0px 0px;
  background: #141414;
  width: 50px;
  height: 50px;
}
.palette_detail_page .main_contents .palette_gallery_container {
  padding-inline: 1.875rem;
  padding-top: 30px;
  padding-bottom: 150px;
}
@media screen and (max-width: 648px) {
  .palette_detail_page .main_contents {
    margin-top: 2.125rem;
    padding: 20px 20px 100px;
    border-top: none;
  }
  .palette_detail_page .main_contents .palette_detail_container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0;
    border: none;
  }
  .palette_detail_page .main_contents .palette_detail_container .palette_detail_header {
    grid-row: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0;
  }
  .palette_detail_page .main_contents .palette_detail_container .palette_image_container {
    grid-row: 2;
    padding: 0;
    border: none;
    margin-top: 24px;
  }
  .palette_detail_page .main_contents .palette_detail_container .palette_detail_contents {
    grid-row: 3;
    margin-top: 36px;
    padding: 0;
  }
  .palette_detail_page .main_contents .palette_detail_container .palette_hotel_info {
    grid-row: 4;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 36px -20px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-bottom: 1px solid #141414;
    padding-right: 50px;
  }
  .palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
  .palette_detail_page .main_contents .palette_detail_container .palette_hotel_info .palette_hotel_card .palette_hotel_detail h3 {
    font-size: 16px;
  }
  .palette_detail_page .main_contents .palette_gallery_container {
    padding: 30px 0 100px;
    border-top: none;
  }
}/*# sourceMappingURL=palette.css.map */