@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- ROOM --------------
***************************************/
@media (min-width: 768px) {
  .row_custom {
    gap: 40px;
  }
}
.row_custom .col-6 a {
  display: block;
  position: relative;
  height: 0;
  padding-top: 50%;
}
.row_custom .col-6 a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.box_shadow {
  border-radius: 15px;
  box-shadow: 0 6px 13px rgba(66, 33, 11, 0.3);
}
.box_shadow .img {
  display: block;
  position: relative;
  height: 0;
  padding-top: 55%;
  transition: 0.2s;
}
.box_shadow .img:hover {
  opacity: 0.8;
}
.box_shadow .img img {
  border-radius: 15px 15px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box_shadow .txt_wrap {
  padding: 4%;
  background: #fff;
  border-radius: 0 0 15px 15px;
}
.box_shadow .txt_wrap .title {
  display: block;
  text-align: center;
  font-weight: bold;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
}
.box_shadow .txt_wrap .desc {
  display: block;
}

.gallery img {
  border-radius: 10px !important;
}