﻿@charset "utf-8";
/* CSS Document */

.sec_border {
  padding-bottom: 60px;
  border-bottom: 1px solid #E3E3E3;
}

.service_panel_group {
  border-top: 2px solid #114D8B;
}
.service_tab_btn {
  border: solid 2px #114D8B;
  background: #114D8B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
}
.service_tab_btn .ico {
  flex: 0 0 auto;
  aspect-ratio: 31 / 29;
  width: 31px;
}
.service_tab_btn .ico._irui {
  background: url(../img/cleaning/ico-irui-blue.svg) no-repeat center / contain;
}
.service_tab_btn .ico._futon {
  background: url(../img/cleaning/ico-futon-blue.svg) no-repeat center / contain;
}
.service_tab_btn.is-active, .service_tab_btn.is-active {
  border: solid 2px #114D8B;
  border-bottom: solid 1px #fff;
  background: #fff;
  color: #114D8B;
}
.service_tab_btn.is-active .ico._irui {
  background: url(../img/cleaning/ico-irui-white.svg) no-repeat center / contain;
}
.service_tab_btn.is-active .ico._futon {
  background: url(../img/cleaning/ico-futon-white.svg) no-repeat center / contain;
}
.service_panel_group .panel_inr {
  background: #FFF7E6;
}
.service_panel_group .panel_inr .point__box {
  display: flex;
  max-width: 630px;
  margin: 0 auto;
  gap: 15px 10px;
}
.service_panel_group .panel_inr .point__item {
  margin: 0;
}
@media screen and (max-width: 480px) {
  .sec_border {
    padding-bottom: 40px;
  }
  .service_panel_group .panel_inr .point__item {
    width: 100%;
  }
}

.recommend_lists {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.recommend_lists .recommend_lists__item {
  background: rgba(224,242,242,.5);
  border-radius: 5px;
  padding: 10px 25px 10px 15px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.recommend_lists .recommend_lists__item:before {
  content: "";
  aspect-ratio: 30 / 39;
  flex: 0 0 auto;
  width: 30px;
  background: #104D8B;
  mask: url(../img/ico-light.svg) no-repeat center / contain;
}
@media screen and (max-width: 480px) {
  .recommend_lists {
    grid-template-columns: repeat(1,1fr);
    gap: 15px;
  }
  .recommend_lists .recommend_lists__item {
    padding: 10px;
    min-height: 65px;
    gap: 10px;
  }
  .recommend_lists .recommend_lists__item:before {
    width: 24px;
  }
}

.airc2204_voice_list {
    justify-content: center;
    gap: 110px;
}
.airc2204_voice_list_box {
    width: 330px;
    padding: 0 25px;
}
.airc2204_voice_list_box .btn-w a {
    width: auto;
    margin: 60px -25px 0;
}
.airc2204_voice_list_ttl {
    margin-bottom: 15px;
}
.airc2204_voice_list_txt {
    margin-inline: auto;
  margin-top: 10px;
}
.airc2204_voice_list_ttl._house {
    background: url(../img/ttl_stripe_pink.svg) no-repeat 50% 100%;
}
.airc2204_voice_list_ttl._cleaning {
    background: url(../img/ttl_stripe_blue.svg) no-repeat 50% 100%;
}
@media screen and (max-width: 480px) {
    .airc2204_voice_list_box {
        width: 100%;
        padding: 0;
    }
    .airc2204_voice_list_box:not(:last-child) {
        margin-bottom: 40px;
    }
    .airc2204_voice_list_box .btn-w a {
        width: 100%;
        margin: 20px 0 0;
    }
}

.area_contents {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 780px;
  width: 100%;
  gap: 30px;
}
.area_contents .area_detail {
  flex: 1 1;
}
.area_contents .img {
  flex: 0 1 213px;
}
.area_contents .ttl {
  width: fit-content;
  position: relative;
  z-index: 0;
  margin: 0 0 40px;
  padding: 0 0 7px;
}
.area_contents .ttl:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background:
  repeating-linear-gradient(90deg, #114D8B 0 2px, #fff 2px 8px);
  background-size: 100% 100%;
}
@media screen and (max-width: 480px) {
  .area_contents {
    gap: 20px;
  }
  .area_contents .img {
    order: -1;
    flex: 0 1 180px;
    margin: 0 auto;
  }
  .area_contents .area_detail {
    flex: 0 0 100%;
    order: 1;
  }
  .area_contents .ttl {
    margin: 0 auto 20px;
  }
}

.apply_flow {
  background: #FFF7E6;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  counter-reset: apply_flow;
}
.apply_flow__item {
  padding: 20px;
  background: #fff;
  counter-increment: apply_flow;
}
.apply_flow__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px;
}
.apply_flow__head .ttl {
  flex: 1 1;
  display: flex;
  align-items: center;
  gap: 3px;
}
.apply_flow__head .ttl:before {
  content: "0"counter(apply_flow);
  font-size: 13px;
  aspect-ratio: 1 / 1;
  flex: 0 0 30px;
  width: 30px;
  border-radius: 50%;
  background: #114D8B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apply_flow__head .img {
  flex: 0 1 120px;
}
@media screen and (max-width: 480px) {
  .apply_flow {
    grid-template-columns: repeat(1,1fr);
    gap: 10px;
  }
  .apply_flow__head .img {
    flex: 0 1 120px;
  }
}

.menulist._cleaning {
    justify-content: center;
    gap: 30px;
}
.menulist._cleaning .menulist__img {
    aspect-ratio: 125 / 93;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.menulist._cleaning .menulist__txt {
    margin-top: 5px;
}
@media screen and (max-width: 480px) {
    .menulist._cleaning {
        justify-content: flex-start;
        gap: 10px;
    }
    .menulist._cleaning .menulist__li {
        width: calc(50% - 5px);
        margin: 0;
    }
    .menulist._cleaning .menulist__link {
        padding: 5px 15px;
        border-radius: 5px;
        height: auto;
    }
    .menulist._cleaning .menulist__link > div {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .menulist._cleaning .menulist__img {
        flex: 0 0 auto;
        aspect-ratio: 51 / 40;
        width: 51px;
    }
    .menulist._cleaning .menulist__txt {
        font-size: 13px;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .cleaning_tbl1 th:nth-child(1) {
        width: 125px;
    }
}

@media screen and (max-width: 480px) {
    .sp-underlayer .f_cleaning a {
        text-decoration: none;
        display: block;
        width: 100%;
        color: #484848;
        border-radius: 0;
        font-size: 13px;
        padding: 13px 20px;
        margin: 0 0 1px;
        background: url(../../common/img/arow-right.svg) no-repeat center right 20px, #C2E5E5 !important;
    }
}