@charset "utf-8";
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PC版
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

[class*="__wrapper-m"] {
  width: min(100%, 1100px);
  margin-inline: auto;
}

main {
  position: relative;
}

.sec00 {
  height: 339px;
  background: no-repeat center / cover url("../img/sec00_bg.png");

  .sec00__wrapper-m {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sec00__header {
    color: var(--clr-white);
    text-align: center;
  }

  .sec00__title {
    font-weight: var(--bold);
    font-size: var(--h3-fz);
    padding-bottom: var(--sp-1);
    margin-bottom: var(--sp-2);
    position: relative;

    &::before {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      margin-inline: auto;
      width: 40px;
      height: 2px;
      background-color: var(--clr-white);
    }
  }

  .sec00__textbox {
    font-size: var(--body-fz);
    font-weight: var(--medium);
  }
}

.sec01 {
  padding-block: var(--sp-5);
  background-color: var(--clr-bg);

  .sec01__wrapper-m,
  .sec01__box {
    display: flex;
    justify-content: center;
  }

  .sec01__wrapper-m {
    align-items: stretch;
    flex-flow: row wrap;
    gap: var(--sp-4);
  }

  .sec01__box {
    width: min(100%, 534px);
    align-items: center;
    flex-flow: column nowrap;
    background-color: var(--clr-white);
    font-weight: var(--medium);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }

  .sec01__header {
    margin-block: calc(var(--sp-1) * 1.5) var(--sp-2);

    h3 {
      color: var(--clr-main);
      font-size: var(--h4-fz);
      font-weight: var(--bold);
    }
  }

  .sec01__list,
  .sec01__note {
    margin-bottom: var(--sp-2);
    width: min(100%, 440px);
  }

  .sec01__list {
    column-count: 2;
    column-gap: var(--sp-5);
  }

  .sec01__note {
    font-size: var(--small-fz);
    text-align: right;
  }

  .sec01__button {
    width: 100%;
    margin-block: auto 0;
    padding: 12px;
    background-color: var(--clr-sub01);
    text-align: center;

    span {
      color: var(--clr-white);
      font-weight: var(--bold);
      font-size: var(--h5-fz);
      position: relative;
      padding-right: 30px;

      &::before {
        content: "";
        position: absolute;
        inset: 0 0 0 auto;
        width: 20px;
        height: 20px;
        margin-block: auto;
        background: no-repeat center / contain url("../img/sec01_icon1.png");
      }
    }
  }
}

.sec02 {
  padding-block: 50px 70px;

  .sec02__header {
    h3 {
      font-size: var(--h3-fz);
      font-weight: var(--bold);
      color: var(--clr-main);
      padding-bottom: var(--sp-2);
      margin-bottom: var(--sp-10);
      text-align: center;
      position: relative;

      &::before {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        margin-inline: auto;
        width: 40px;
        height: 2px;
        background-color: var(--clr-main);
      }
    }
  }

  .sec02__note {
    font-size: calc(var(--sp-1) * 1.5);
    color: var(--clr-main);
    text-align: right;
  }

  .sec02__list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: row wrap;
    gap: calc(var(--sp-2) + 42px) var(--sp-4);
    margin-bottom: calc(var(--sp-1) * 1.5);
  }

  .sec02__item {
    width: min(100%, 251px);
    min-height: 450px;
    background-color: var(--clr-white);
    font-weight: var(--medium);
    text-align: justify;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    position: relative;
    transition: all 0.3s;

    &:hover {
      cursor: pointer;
      transform: translateY(-6px);
    }
  }

  .sec02__item-tbox {
    height: 37px;
    padding: 12px 15px 0 15px;
    position: relative;
    background-color: var(--clr-sub02);
  }

  .sec02__item-img {
    position: absolute;
    inset: auto auto 0 15px;
  }

  .sec02__item-name {
    width: 96px;
    margin-inline: auto 0;
    text-align: center;
    background-color: var(--clr-white);
    font-size: var(--small-fz);
    border: 1px solid var(--clr-main);
  }

  .sec02__item-header {
    padding: 6px 15px 10px 15px;
    background-color: var(--clr-sub02);

    h4 {
      font-weight: var(--bold);
      font-size: var(--h5-fz);
      color: var(--clr-main);
      text-decoration: underline;
    }
  }

  .sec02__item-textbox {
    padding: 18px 15px 0 15px;
    margin-bottom: calc(var(--sp-1) * 12);

    /* white-space: nowrap; */
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;

    p {
      font-size: var(--small-fz);
    }
  }

  .sec02__item-button {
    position: absolute;
    inset: auto 15px 18px auto;
    /* display: block; */
    width: fit-content;
    /* margin: auto 15px 18px auto; */
    background-color: transparent;
    /* transition: opacity 0.3s;

    &:hover {
      opacity: 0.7;
    } */

    span {
      font-size: calc(var(--sp-1) * 1.5);
      color: var(--clr-sub01);
      position: relative;
      padding-right: 20px;

      &::before {
        content: "";
        position: absolute;
        inset: 0 0 0 auto;
        margin-block: auto;
        width: 18px;
        height: 18px;
        background: no-repeat center / contain url("../img/sec02_icon1.png");
      }
    }
  }
}

/* ---------------------------------- Modal --------------------------------- */
.modal {
  display: none;
}
@media screen and (max-height: 900px) {
  .modal {
    zoom: 80%;
  }
}
.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(150, 150, 150, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100010;
}

.modal__container {
  background-color: var(--clr-white);
  padding: var(--sp-5);
  width: min(100%, 1100px);
  overflow-y: auto;
  box-sizing: border-box;
  color: var(--clr-txt2);
  margin: var(--sp-3);
}

.modal__img {
  display: inline-block;
  float: right;
  /* margin: 0 0 var(--sp-3) var(--sp-3); */
  padding: 0 0 var(--sp-3) var(--sp-3);
  background-color: var(--clr-white);
}

.modal__header,
.modal__icon {
  display: flex;
  align-items: center;
}

.modal__header {
  justify-content: start;
  flex-flow: row nowrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.modal__icon {
  justify-content: center;
  flex-flow: column nowrap;
  gap: calc(var(--sp-05));
  flex-shrink: 0;
}

.modal__icon-name {
  font-weight: var(--bold);
}

.modal__title {
  font-size: var(--h4-fz);
  font-weight: var(--bold);
}

.modal__box {
  &:not(:last-child) {
    margin-bottom: var(--sp-3);
  }
}

.modal__container2,
.modal__tags,
.modal__tag {
  display: flex;
  align-items: center;
}

.modal__container2 {
  align-items: stretch;
  flex-flow: row nowrap;
  gap: var(--sp-3);

  .modal__box {
    width: 100%;
    /* width: calc(50% - var(--sp-3)); */
  }
}

.modal__tags {
  flex-flow: row wrap;
  gap: var(--sp-1) var(--sp-2);
}

.modal__tag {
  justify-content: center;
  width: min(100%, 258px);
  border-radius: calc(var(--sp-1) * 8);
  border: 1px solid var(--clr-txt);
  padding: var(--sp-1);

  span {
    font-size: var(--small-fz);
    font-weight: var(--medium);
  }
}

.modal__subtitle {
  background: linear-gradient(
    to right,
    var(--clr-border) var(--sp-1),
    var(--clr-white) var(--sp-1)
  );
  padding-left: var(--sp-2);
  margin-bottom: var(--sp-1);
  font-size: var(--h5-fz);
  font-weight: var(--bold);
}

.modal__subtitle--blue {
  background: linear-gradient(
    to right,
    var(--clr-main) var(--sp-1),
    var(--clr-sub02) var(--sp-1)
  );
}

.modal__textbox:has(+ .modal__tags) {
  margin-bottom: var(--sp-1);
}

.modal__close {
  background: transparent;
  border: 0;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: -4px;
  right: 2px;
  font-size: 50px;
  background: none;
  color: #727272;
}

.close-btn:focus {
  outline: none;
}

/* .modal__header .modal__close:before {
  content: '\2715';
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
} */

/* .modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
} */

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  /* display: none; */
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.sec03 {
  /* padding-block: 50px 70px; */

  .sec03__header {
    h3 {
      font-size: var(--h3-fz);
      font-weight: var(--bold);
      color: var(--clr-main);
      padding-bottom: var(--sp-2);
      margin-bottom: 20px;
      text-align: center;
      position: relative;

      &::before {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        margin-inline: auto;
        width: 40px;
        height: 2px;
        background-color: var(--clr-main);
      }
    }
  }
  .sec03__text {
    margin-bottom: var(--sp-5);
    p {
      text-align: center;
      font-size: var(--small-fz);
      font-weight: var(--medium);
    }
  }
}
.sec03-cont {
  /* color */
  --clr-main: #1f294a;
  --clr-sub01: #28427b;
  --clr-sub02: #221f49;
  --clr-accent: #ffff00;
  --clr-red: #ff0000;
  --clr-bg: #f8f8f8;
  --clr-white: #fff;
  --clr-txt: #000;

  /* font-weight */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 900;
  /* 基本余白 */
  --sp-05: 4px;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-10: 80px;

  /* タイトルサイズ */
  --h2-fz: 42px;
  --h3-fz: 36px;
  --h4-fz: 26px;
  --h5-fz: 22px;
  --h6-fz: 18px;
  --small-fz: 14px;
  --body-fz: 16px;
}
.sec03-cont h4.title {
  background-color: var(--clr-main);
  color: var(--clr-white);
  text-align: center;
  padding: 12px var(--sp-1);
  font-size: var(--h4-fz);
  font-weight: var(--bold);
  margin-bottom: var(--sp-2);
}
.sec03-list-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 1px;
  margin-bottom: var(--sp-10);
}
.sec03-list-wrap .img {
  position: relative;
  width: 110px;
}
.sec03-list_img {
  /* height: 100%; */
}
.sec03-list {
  width: 989px;

  position: relative;
}
.sec03-list::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/sec03-cont_arrow.png?20250430") no-repeat;
  background-size: contain;
  width: 127px;
  height: 665px;
}

.sec03-list-item {
  padding: var(--sp-2) var(--sp-2);
  padding-right: 130px;

  border-bottom: 1px solid #ddd;
}
.sec03-list-item:last-of-type {
  border-bottom: none;
}

.sec03-list-item .ttl {
  font-size: var(--h5-fz);
  font-weight: var(--bold);
}
.sec03-list-item .txt-content {
  margin-top: var(--sp-1);
}
.sec03-list-item .txt-content .txt {
}
.sec03-list-item .txt-content .txt strong {
  font-weight: var(--regular);
  color: var(--clr-red);
}
.sec03-list-item .txt-content .txt .marker {
  position: relative;
  margin-top: var(--sp-1);
  width: fit-content;
  display: block;
  font-size: var(--small-fz);
  font-weight: var(--regular);
  margin-left: var(--sp-2);
}
.sec03-list-item .txt-content .txt .marker::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/icon_check.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 6px);
  left: -13px;
}

.sec03-list-item .txt-content .txt small {
  display: block;
  font-size: var(--small-fz);
  font-weight: var(--regular);
  margin-top: var(--sp-1);
}
.sec03-list-item .txt-content .txt small::before {
  content: "※";
}

.sec03-list-item .txt-content .list {
  margin-top: var(--sp-2);
  margin-left: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.sec03-list-item .txt-content .list:last-of-type {
  margin-bottom: 0;
}
.sec03-list-item .txt-content .list dt {
  font-weight: var(--bold);
  font-size: var(--h6-fz);
  margin-bottom: var(--sp-1);
}
.sec03-list-item .txt-content .list dt::before {
  content: "・";
}
/* ===============
sec_03アニメーション
===============*/
/* 点滅 */
.sec03-list-wrap {
  z-index: 1;
  position: relative;
}
.sec_03_anime01 {
  position: absolute;
  top: 60px;
  left: 12px;
  width: 86px;
  height: auto;
  z-index: 2;
  transition: opacity 0.3s ease-in-out;
}
.hidden .sec_03_anime01 {
  opacity: 0;
}

/* 矢印 */
.sec03-list {
  overflow-y: hidden;
}
.sec03-list::after {
  animation: slideInOpacity 3s ease-in-out infinite;
  /* アニメーション設定 */
}
.sec03-cont_txt {
  position: absolute;
  width: 59px;
  top: 215px;
  right: 36px;
  z-index: 1;
}
/* 画像が上から下に表示されるアニメーション */
@keyframes slideInOpacity {
  0% {
    opacity: 0;
    /* 最初は透明 */
    transform: translateY(-100%);
    /* 上の見えない位置から開始 */
  }

  30% {
    opacity: 1;
    /* 50%のところで完全に表示 */
    transform: translateY(0);
    /* 通常位置まで移動 */
  }

  60% {
    opacity: 1;
    /* 50%のところで完全に表示 */
    transform: translateY(0);
    /* 通常位置まで移動 */
  }

  100% {
    opacity: 0;
    /* 100%で再び透明 */
    transform: translateY(100%);
    /* 下に移動して消える */
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
既存パーツ調整
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

#faq .sec_cta {
  margin-bottom: var(--sp-10);
}
#faq {
}
#faq .inner {
  padding: 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);
}

.sec-ttle {
  color: var(--clr-main);
}

#faq .qa-list dd::before {
  top: 25px;
}
.qa-list .in-dl {
  padding-right: 5vw;
}

#police-cooperation .reveal #topics_2011 {
  margin-top: 0 !important;
}

#service #service_2011 {
  padding-top: 0 !important;
}
/* .sec_cta */
.sec_cta__box-wrap {
  margin-bottom: 50px;
}
.sec_cta__box {
  position: relative;
  height: 254px;
  background: no-repeat right/cover url("../img/sec01_bg.png");
  display: flex;
  line-height: 1.5;
  margin-bottom: 60px;
}
.sec_cta__box::after {
  position: absolute;
  bottom: calc(-18px - 25px);
  left: calc(50% - 22px);
  content: "";
  display: block;
  background: url("../img/icon_tr_cta.png") no-repeat;
  background-size: contain;
  width: 44px;
  height: 25px;
}
.sec_cta__box-header {
}
.sec_cta__box-header h4 {
  font-size: 32px;
  color: #e8e428;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.sec_cta__box-header.sec_cta__box-header-01 {
  margin: auto 19px 47px;
}
.sec_cta__box-header.sec_cta__box-header-02 {
  margin: auto 45px 63px;
}
.sec_cta__box-header h4 small {
  font-size: 26px;
  color: #ffffff;
}
.sec_cta__box-header p {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2%;
}

/* sec_end-cta */
.sec_end-cta {
  padding-bottom: 60px;
}

.sec_end-cta h3.title {
  position: relative;
  font-size: 24px;
  font-weight: var(--bold);
  color: var(--clr-main);
  text-align: center;
  margin-bottom: 40px;
}
.sec_end-cta h3.title::after {
  position: absolute;
  bottom: calc(-8px - 20px);
  left: calc(50% - 12px);
  content: "";
  display: block;
  background: url(../img/icon_tr_cta.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  width: 24px;
  height: 20px;
}
