@charset "utf-8";
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PC版
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
[class*="__wrapper-m"] {
  width: min(100%, 1100px);
  margin-inline: auto;
}

/* --------------------------------- Common --------------------------------- */
.cmn-py {
  padding-block: var(--sp-10) var(--sp-5);
}

.cmn-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  gap: var(--sp-05) var(--sp-2);
  font-weight: var(--bold);
  margin-bottom: var(--sp-4);

  p {
    font-size: var(--h2-fz);
    color: var(--clr-main);
  }

  h3 {
    font-size: var(--h4-fz);
  }
}

.cmn-header2 {
  padding-left: var(--sp-3);
  margin-bottom: var(--sp-3);
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    margin-block: auto;
    width: calc(var(--sp-1) * 1.5);
    height: 100%;
    background-color: var(--clr-main);
    border-radius: 5px;
  }

  h4 {
    font-size: var(--h5-fz);
    color: var(--clr-main);
  }
}

/* Sec02のリスト用 */
.cmn-dd {
  margin-bottom: var(--sp-5);

  .cmn-dd__unit {
    &:not(:last-child) {
      margin-bottom: calc(var(--sp-1) * 1.5);
    }
  }

  .cmn-dd__header {
    width: 100%;
    background-color: var(--clr-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-1);
    padding: var(--sp-3) 64px var(--sp-3) var(--sp-2);
    position: relative;
    color: var(--clr-white);
    font-weight: var(--bold);
    transition: all 0.3s;

    &:hover {
      opacity: 0.9;
    }

    h5 {
      text-align: left;
      flex-grow: 1;
      font-size: var(--h6-fz);
    }

    p {
      font-size: calc(var(--sp-1) * 6);
      transform: translateY(-6px);
    }
  }

  .cmn-dd__content {
    background-color: #f8f8f8;
    padding: 20px var(--sp-2);
    display: none;
  }

  .cmn-dd__list {
    counter-reset: count;
  }

  .cmn-dd__item {
    border: 2px solid var(--clr-txt);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

    &:not(:last-child) {
      margin-bottom: calc(var(--sp-1) * 1.5);
    }
  }

  .cmn-dd__item-header {
    background-color: #daf4ff;
    padding: 14px 18px;
    font-weight: var(--bold);
    border-bottom: 2px solid var(--clr-txt);

    h6 {
      font-size: var(--body-fz);

      &::before {
        counter-increment: count;
        content: counter(count, decimal-leading-zero) ". ";
        color: #33a0d6;
      }
    }
  }

  .cmn-dd__textbox {
    text-align: justify;
    padding: 10px 18px;
    font-size: var(--small-fz);

    ul {
      padding-left: 18px;
      list-style: disc outside;
    }
  }
}

/* ---------------------------------- Sec00 --------------------------------- */
.sec00 {
  height: 445px;
  background: no-repeat center / cover url("../img/sec00_bg.webp");

  .sec00__wrapper-m {
    height: inherit;
    display: flex;
    justify-content: start;
    align-items: center;
  }
}

/* ---------------------------------- Sec01 --------------------------------- */
.sec01 {
  .sec01__wrapper-m {
    margin-bottom: var(--sp-5);
  }

  .sec01__content1 {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-flow: row wrap;
    gap: var(--sp-2) 30px;
    margin-bottom: calc(var(--sp-1) * 12);
  }

  .sec01__textbox {
    width: min(100%, 640px);

    h4 {
      font-size: 22px;
      font-weight: var(--medium);

      span {
        font-size: 26px;
        font-weight: var(--bold);
        background-color: var(--clr-accent);
      }

      &:has(+ p) {
        margin-bottom: var(--sp-4);
      }
    }
  }

  .sec01__list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: row wrap;
    gap: var(--sp-2) var(--sp-4);
    margin-bottom: calc(var(--sp-1) * 1.5);
  }

  .sec01__item {
    width: min(100%, 534px);
    background-color: var(--clr-white);
    border: 1px solid var(--clr-txt);
  }

  .sec01__item-header {
    background-color: var(--clr-main);
    padding: calc(var(--sp-1) * 1.5) var(--sp-1) var(--sp-1);

    h5 {
      text-align: center;
      color: var(--clr-white);
      font-size: var(--h6-fz);
    }
  }

  .sec01__item-box {
    padding: var(--sp-4);

    ul {
      height: 184px;
      margin-bottom: var(--sp-3);
    }

    li {
      position: relative;
      padding-left: var(--sp-3);
      font-weight: var(--medium);

      &:not(:last-child) {
        margin-bottom: var(--sp-1);
      }

      &::before {
        content: "";
        position: absolute;
        inset: 0 auto auto 0;
        background: no-repeat center / contain url("../img/sec01_deco1.webp");
        width: 16px;
        height: 18px;
        transform: translateY(4px);
      }
    }
  }

  .sec01__item-subtitle {
    margin-block: auto 0;
    width: 100%;
    padding: var(--sp-05) var(--sp-2);
    border-bottom: 1px solid var(--clr-txt);
    position: relative;
    font-size: 18px;
    font-weight: var(--bold);
    margin-bottom: calc(var(--sp-1) * 1.2);

    &::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      background-color: var(--clr-main);
      width: var(--sp-1);
      height: 100%;
    }
  }

  .sec01__item-img {
    margin-bottom: var(--sp-05);
    width: 100%;
    height: auto;
  }

  .sec01__item-box2 {
    border: 1px solid var(--clr-sub03);

    h6 {
      font-size: 18px;
      font-weight: var(--bold);
      text-align: center;
      background-color: var(--clr-sub03);
      color: var(--clr-white);
      padding: var(--sp-05);
    }

    div {
      padding: calc(var(--sp-1) * 1.5) var(--sp-3);
    }
  }

  .sec01__note {
    text-align: right;
    font-size: calc(var(--sp-1) * 1.5);
  }
}

/* ---------------------------------- Sec02 --------------------------------- */
.sec02 {
  .sec02__content {
    background-color: var(--clr-bg);
    padding: var(--sp-4) 0;
    margin-bottom: calc(var(--sp-1) * 1.5);
  }

  .sec02__content-wrapper {
    width: min(100%, 1100px);
    margin-inline: auto;
  }

  .sec02__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-flow: row wrap;
    gap: 20px;
    counter-reset: count;
    margin-bottom: 10px;
  }

  .sec02__item {
    width: min(100%, 200px);
    background-color: var(--clr-white);
    position: relative;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);

    &:not(:last-child) {
      &::before {
        content: "";
        position: absolute;
        inset: 0 0 0 auto;
        margin-block: auto;
        width: 20px;
        height: 20px;
        background: no-repeat center / contain url("../img/sec02_deco5.webp");
        transform: translateX(calc(100% + 4px));
      }
    }
  }

  .sec02__item-header {
    background-color: var(--clr-main);
    padding: calc(var(--sp-1) * 1.5) var(--sp-1) var(--sp-1);

    h5 {
      color: var(--clr-white);
      font-weight: var(--bold);
      text-align: center;
      font-size: 22px;
      position: relative;

      &::before {
        counter-increment: count;
        content: counter(count, decimal-leading-zero) ".";
        font-size: var(--h6-fz);
      }
    }
  }

  .sec02__item-box {
    height: 190px;
    padding: calc(var(--sp-1) * 1.5);
    padding-top: var(--sp-3);
    display: flex;
    justify-content: start;
    align-items: center;
    flex-flow: column nowrap;
  }

  .sec02__item-img {
    width: auto;
    height: 69px;
    margin-bottom: var(--sp-1);
  }

  .sec02__item-img2 {
    margin-block: auto 0;
  }

  .sec02__item-box--tel {
    p {
      font-weight: var(--medium);
      margin-bottom: var(--sp-1);
    }
  }

  .sec02__tel {
    padding-left: var(--sp-3);
    position: relative;
    margin-bottom: var(--sp-2);

    &::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      margin-block: auto;
      width: 20px;
      height: 20px;
      background: no-repeat center / contain url("../img/sec02_deco1.webp");
      transform: translateY(2px);
    }

    span {
      font-size: 22px;
      font-weight: var(--bold);
    }
  }

  .sec02__mail {
    width: min(100%, 172px);
    height: 65px;
    background-color: #ff544b;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 0 rgba(16, 62, 118, 0.25);
    border-radius: var(--sp-5);

    span {
      position: relative;
      color: var(--clr-white);
      font-weight: var(--bold);
      font-size: var(--small-fz);
      padding-left: var(--sp-2);

      &::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        margin-block: auto;
        width: 15px;
        height: 15px;
        background: no-repeat center / contain url("../img/sec02_deco6.webp");
      }
    }
  }

  .sec02__button {
    font-weight: var(--medium);
    font-size: var(--small-fz);
    color: var(--clr-main);
    margin-bottom: 20px;
    display: block;
  }

  .sec02__list2 {
    margin-bottom: var(--sp-5);
  }

  .sec02__item2 {
    border: 2px solid var(--clr-main);
    padding: var(--sp-4) var(--sp-5);
    display: flex;
    justify-content: center;
    align-items: start;
    flex-flow: row nowrap;
    gap: calc(var(--sp-1) * 1.5) var(--sp-4);

    &:not(:last-child) {
      margin-bottom: var(--sp-2);
    }

    &:nth-child(even) {
      flex-flow: row-reverse nowrap;
    }
  }

  .sec02__item2-box {
    width: min(100%, 785px);
  }

  .sec02__item2-header {
    padding: var(--sp-2) var(--sp-10);
    margin-bottom: var(--sp-05);
    position: relative;

    &::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      margin-block: auto;
      width: 75px;
      height: 66px;
      background: no-repeat center / contain url("../img/sec02_deco7.webp");
    }

    h4 {
      font-size: var(--h5-fz);
      color: var(--clr-main);
    }
  }

  .sec02__item2-textbox {
    text-align: justify;

    p {
      font-weight: var(--medium);

      &:not(:last-child) {
        margin-bottom: var(--sp-3);
      }
    }
  }

  .sec02__text {
    font-weight: var(--medium);
    margin-bottom: var(--sp-3);
  }

  .sec02__list3 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-flow: row wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-5);
  }

  .sec02__item3 {
    width: min(100%, 295px);
    display: flex;
    justify-content: start;
    align-items: center;
    flex-flow: column nowrap;
  }

  .sec02__item3-img {
    margin-bottom: var(--sp-3);
  }

  .sec02__item3-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    margin-bottom: 21px;
    text-align: center;

    h5 {
      font-weight: var(--bold);
      font-size: var(--body-fz);
    }
  }

  .sec02__item3-text {
    text-align: justify;
    font-size: var(--small-fz);
  }
}

/* ---------------------------------- よくあるご質問 --------------------------------- */
.qa__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.qa__list {
}
.qa__list dt {
  padding: 20px var(--sp-4);
  background-color: #1b274e;
  font-size: var(--h6-fz);
  font-weight: var(--bold);
  color: var(--clr-white);
}
.qa__list dt::before {
  content: "Q";
  font-size: 30px;
  /* line-height: 1; */
  line-height: var(--h6-fz);
  margin-right: var(--sp-1);
}
.qa__list dd {
  padding: 12px 32px;
  font-size: var(--small-fz);
}
.qa__links{
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin-left: auto;
}

.qa__links a {
  width: fit-content;
  display: block;
  font-size: var(--small-fz);
  font-weight: var(--medium);
  color: var(--clr-sub01);
}

#qa .qa__cta{
  /* margin-bottom: var(--sp-10); */
  margin-top: calc(var(--sp-10) + var(--sp-2));
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
既存パーツ調整
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

#faq {
}
#qa .inner {
  padding-top: 40px;
  padding-bottom: 0;
}
.section-ttl-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--h3-fz);
  font-weight: var(--medium);
  margin-bottom: var(--sp-4);
}

.faq__cta {
  padding-top: var(--sp-5);
}

.sec-ttle {
  color: var(--clr-main);
}

#faq .qa-list dd::before {
  top: 25px;
}
#feature_2011{
  zoom: 90%;
}
#feature_2011 .flex_2011 div:last-child img{
  max-width: 100%;
  height: auto;
}
.qa-list .in-dl {
  padding-right: 5vw;
}

#police-cooperation .reveal #topics_2011 {
  margin-top: 0 !important;
}

#service #service_2011 {
  padding-top: 0 !important;
}

#media {
  padding-top: var(--sp-10);
}

#news .inner{
  padding: 0;
}

/* .more_btn_2011 */
.more_btn_2011 {
  /* zoom: 80%; */
}
.more_btn_2011 a {
  width: fit-content;
  display: block;
  margin: 0 auto;
}
