.sv {
  background-image: url(../image/sv/hidamariya.jpg);
}


.hidamariya #feature .company_img {
  width: min(90%, 700px);
  margin: 0 auto;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
}

.hidamariya #feature .company_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

#service {
  width: min(90%, 1000px);
  margin: 100px auto;
  margin-bottom: 150px;
}

@media screen and (max-width: 480px) {
  #service {
    margin-bottom: 190px;
  }
}

#service .section_ttl {
  font-size: clamp(27px, 5vw, 38px);
}

.service_list_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 65px auto;
}

@media screen and (max-width: 500px) {
  .service_list_grid {
    grid-template-columns: 1fr;
  }
}

.service_list_grid li {
  padding: 8px 20px;
  text-indent: -1.25em;
  font-family: var(--ff_zenmaru);
  font-weight: 500;
  font-size: 19px;
  list-style: none;
}

@media screen and (max-width: 500px) {
  .service_list_grid li {
    padding: 8px 40px;
    padding-right: 20px;
  }
}

.service_list_grid li span {
  color: var(--cl_blue);
}

.service_list_grid li small {
  font-size: 14px;
}


#service .mes {
  background-color: #cccccc30;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

#service .mes::after {
  content: "";
  display: inline-block;
  background-image: url(../image/hidamariya/01.png);
  background-size: contain;
  width: 160px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -28%;
  right: 3%;
}

#service .mes p {

  font-size: clamp(14px, 1.8vw, 15px);
  padding-left: 1em;
  text-indent: -1.25em;
  padding-bottom: 8px;
}

@media screen and (max-width: 1025px) {

  #service .mes::after {
    right: -3%;
  }
}

@media screen and (max-width: 960px) {
  #service .mes::after {
    bottom: -65%;
    right: -2%;
  }
}

@media screen and (max-width: 880px) {
  #service .mes::after {
    bottom: -50%;
    right: 3%;
  }
}

@media screen and (max-width: 600px) {
  #service .mes::after {
    bottom: -55%;
    right: 3%;
  }
}

@media screen and (max-width: 488px) {
  #service .mes::after {
    bottom: -45%;
    right: 3%;
  }
}

@media screen and (max-width: 468px) {
  #service .mes::after {
    bottom: -40%;
    right: 3%;
  }
}

/* ===============================================
入居条件
=============================================== */
#condition {
  background: var(--cl_bg_blue);
  margin: 100px auto;
  padding: 65px 0;
}

.condition_wrap {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.condition_list_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 65px auto;
}

.condition_list li {
  font-size: clamp(17px, 2vw, 20px);
  list-style: none;

  position: relative;
  padding: 10px 0;
  padding-left: 35px;
}

.condition_list li::before {
  content: "";
  display: inline-block;
  background-image: url(../image/icon/check.png);
  background-size: contain;
  width: 22px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
}

.condition_list li span {
  font-size: clamp(14px, 1.8vw, 17px);
}

#condition .mes {
  background: var(--cl_wh);
  padding: 30px;

  text-align: center;
  border-radius: 10px;
}

#condition .mes span {
  display: inline-block;
}

@media screen and (max-width: 960px) {
  .condition_list_wrap img {
    width: 350px;
  }
}

@media screen and (max-width: 720px) {
  .condition_list_wrap {
    flex-direction: column;
    gap: 35px;
  }
}

/* ===============================================
アクセス
=============================================== */
.recruit_wrap {
  background-position: 60% 90%;
  padding: 140px 0;
}

.access {
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .recruit_wrap {
    background-position: 30% 0%;
    padding: 95px 0;
    padding-top: 30px;
  }
}

/* ===============================================
料金体系
=============================================== */

#price {
  width: min(90%, 1200px);
  margin: 0 auto;
  margin-bottom: 35px;
}

.price_wrap {
  display: flex;
  margin: 90px auto;
  margin-bottom: 65px;
  gap: 20px;
}

.price_wrap .left, .price_wrap .right {
  width: 50%;
  padding: 15px 30px;
  border: 3px solid #b3d5ff;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price_wrap .left::before, .price_wrap .right::before {
  content: "プランA";
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  background: #b3d5ff;
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: -47px;
  left: 15px;
  padding: 10px 30px;
}

.price_wrap .right::before {
  content: "プランB";
}

/* 左側 */

.price_wrap h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--cl_blue);
}

.price_wrap h3 span {
  font-size: clamp(43px, 5vw, 45px);
  padding: 0 8px;
  font-weight: 700;
}

.price_wrap h3 small {
  font-size: clamp(14px, 1.8vw, 17px);
}

.price_wrap table {
  width: 100%;
}

.price_wrap th {
  width: 120px;
  text-align: left;
  font-weight: 400;

  padding: 10px 0;
}

.price_wrap td {

  padding-left: 15px;
}

.price_wrap td span {
  font-size: clamp(23px, 2.2vw, 25px);
  font-weight: 700;
  padding: 0 3px;
}

.price_wrap p {
  font-size: 15px;
  text-align: right;
  padding-top: 15px;
  margin-top: auto;
}

@media screen and (max-width: 540px) {

  .price_wrap th {
    display: block;
    padding-bottom: 0;
  }

  .price_wrap td {
    display: block;
    padding-left: 0;
  }

  .price_wrap p {
    text-align: left;
  }

  .price_wrap .left p span {
    display: inline-block;
  }
}

/* 無料 */

.free_service {
  padding: 30px;
  border: 3px solid #599ff465;
  border-radius: 10px;
  position: relative;
}

.free_service::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 7px;
  right: 0;
  width: 185px;
  aspect-ratio: 1/1;
  background-image: url(../image/hidamariya/03.png);
  background-size: contain;
}

.free_service h3 {
  font-size: clamp(25px, 2.2vw, 28px);
  color: var(--cl_blue);
  padding: 8px 0;
}

.free_service li {
  font-size: 17px;
  padding: 2px 15px;
  padding-left: 0;
  list-style: none;
}

.free_service li small {
  font-size: clamp(13px, 1.8vw, 15px);
}

.free_service h4 {
  background: #d95757;
  font-size: clamp(14px, 1.8vw, 16px);
  border-radius: 8px;
  color: var(--cl_wh);

  padding: clamp(10px, 2%, 13px);
  position: absolute;
  top: -25px;
  left: 30px;
}

@media screen and (max-width: 540px) {
  .free_service::after {
    width: 130px;
  }
}

@media screen and (max-width: 430px) {
  .free_service::after {
    content: none;
  }
}

/* gallery */
.gallery_grid {
  width: min(90%, 1200px);
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 65px;
}

.gallery_img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.gallery_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.gallery_grid .slick-dots li {
  margin: 0;
}

@media screen and (max-width: 1040px) {
  .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 750px) {
  .gallery_grid {
    display: block;
  }
}

/* Google Map */

.g_map {
  width: 100%;
  height: 370px;
}

.g_map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1060px) {
  .price_wrap {
    flex-direction: column;
    gap: 75px;
  }

  .price_wrap .left, .price_wrap .right {
    width: 100%;
    padding: 27px;
  }

  .price_wrap .right::after {
    bottom: 10px;
    width: 145px;
  }
}

@media screen and (max-width: 450px) {
  .price_wrap .right::after {
    right: 10px;
    bottom: 20px;
    width: clamp(100px, 30%, 115px);
  }
}