@charset "utf-8";
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
SP版
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* mv */
#mv {
  background: url("../img/sp_mv_bg.png") no-repeat;
  background-size: cover;
  background-position: 10%;
}
@media screen and (max-width: 1600px) {
  #mv {
    background-position: 40%;
  }
}

#mv .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--sp-4) 0 53.13vw;
}

#mv .catch {
}

#mv .catch img {
  max-width: 100%;
}

.mv-cta {
}
/* sec01 */
#sec01 {
}
#sec01 .inner {
  width: calc(100% - var(--sp-1) * 2);
}
#sec01 .h2.title {
  margin-bottom: var(--sp-4);
}
.sec01-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr; /* 高さを自動的に揃える */
  gap: var(--sp-1);
}

.sec01-cont-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-1);
  padding: 3.07vw;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  height: 100%; /* 親グリッドのセル高さに合わせる */
}

.sec01-cont-item .ttl {
  font-size: var(--h6-fz);
  font-weight: var(--bold);
  text-align: center;
}
.sec01-cont-item .txt {
}

/* sec02 */
#sec02 {
  position: relative;
  background: url("../img/sp_sec02_bg.png") no-repeat center center;
  background-size: cover;
  color: var(--clr-white);
}
#sec02::before {
  content: "";
  position: absolute;
  top: -3.07vw;
  left: calc(50% - 6.67vw); /* 26px → 26/390*100 = 6.67vw */
  width: 13.33vw; /* 52px → 52/390*100 = 13.33vw */
  height: 8.72vw; /* 34px → 34/390*100 = 8.72vw */
  background: url("../img/icon_tr_sec02.png") no-repeat center center;
  background-size: contain;
}

#sec02 h2 {
  font-size: var(--h2-fz);
  font-weight: var(--bold);
  letter-spacing: 0;
  text-align: center;
  margin-bottom: var(--sp-4);
}

.sec02-cont {
}
.sec02-cont .img {
  margin-bottom: var(--sp-4);
}
.sec02-cont .txt {
  font-size: var(--body-fz);
  margin-bottom: var(--sp-3);
}
.sec02-cont .list {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-1);
  margin-bottom: var(--sp-2);
}
.sec02-cont .list li {
  --gutter: var(--sp-1);
  width: calc((100% - (var(--gutter) * 1)) / 2);
}
.sec02-cont .list li img {
  max-width: 100%;
}
.sec02-cont .small-txt {
  position: relative;
  padding-left: 1em;
  font-size: var(--small-fz);
}
.sec02-cont .small-txt::before {
  position: absolute;
  left: 0;
  content: "※";
  font-size: var(--small-fz);
  margin-right: 3px;
}

/* sec03 */
#sec03 {
}
#sec03 .sec_cta {
  margin: 0px auto var(--sp-5);
  margin-left: -4.1vw;
}
#sec03 .sec_cta .title {
  position: relative;
  padding-bottom: calc(var(--sp-4) + 5.9vw);
  margin-bottom: var(--sp-4);
}
#sec03 .sec_cta .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2.95vw); /* 11.5px → 11.5/390*100 = 2.95vw */
  display: block;
  width: 8.72vw; /* 34px → 34/390*100 = 8.72vw */
  height: 5.9vw; /* 23px → 23/390*100 = 5.9vw */
  background: url("../img/icon_tr_cta.png") no-repeat;
  background-size: contain;
  background-position: center center;
}

#sec03 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--sp-4);
}

#sec03 h2 .en {
  display: block;
  color: var(--clr-sub01);
  font-size: var(--h4-fz);
  font-weight: var(--black);
}
#sec03 h2 .ja {
  display: block;
  font-size: var(--h5-fz);
}

.sec03-cont {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.sec03-cont-item {
  display: flex;
  flex-direction: column;
}
.sec03-cont-item:nth-of-type(even) {
  flex-direction: column;
}
.sec03-cont-item .txt-content,
.sec03-cont-item .img {
}
.sec03-cont-item .txt-content {
}
.sec03-cont-item .txt-content .ttl-wrap {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  gap: var(--sp-1);
  margin-bottom: var(--sp-2);
}

.sec03-cont-item .txt-content .ttl-wrap .ttl {
  font-size: var(--h4-fz);
  line-height: 1.5;
  letter-spacing: 0;
}
.sec03-cont-item .txt-content .ttl-wrap .sub-ttl {
  font-size: var(--h6-fz);
  font-weight: var(--bold);
}
.sec03-cont-item .txt-content .ttl-wrap .sub-ttl small {
  font-size: 3.07vw;
  margin-right: 0.1em;
}

.sec03-cont-item .img {
  margin-bottom: var(--sp-2);
}

.sec03-cont-item .txt-content .list {
  margin-bottom: var(--sp-2);
}
.sec03-cont-item .txt-content .list li {
  position: relative;
  font-size: var(--h6-fz);
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0em;
  padding: var(--sp-1) 0;
  /* padding-left: var(--sp-3); */
  padding-left: 5.89vw; /* 23px → 23/390*100 = 5.89vw */
  border-bottom: 1px solid #eaeaea;
}
.sec03-cont-item .txt-content .list li::before {
  position: absolute;
  top: calc(50% - 2.4vw); /* 9px → 9/390*100 = 2.31vw */
  left: 0;
  content: "";
  display: block;
  background: url("../img/icon_check.png") no-repeat;
  background-size: contain;
  width: 4.62vw; /* 18px → 18/390*100 = 4.62vw */
  height: 4.62vw; /* 18px → 18/390*100 = 4.62vw */
}
.sec03-cont-item .txt-content .list li.row-2::before,
.sec03-cont-item .txt-content .list li.sp-row-2::before {
  top: calc(50% - 5.38vw); /* 21px → 21/390*100 = 5.38vw */
}

.sec03-cont-item .txt-content .list li sup {
  /* bottom: 0;
  top: auto; */
}
.sec03-cont-item .txt-content .txt {
}

.sec03-cont-item .txt-content .txt .small-txt {
  position: relative;
  padding-left: 1em;
  font-size: var(--small-fz);
  padding-top: var(--sp-1);
  margin-top: var(--sp-1);
  border-top: 1px solid #eaeaea;
}

.sec03-cont-item .txt-content .txt .small-txt::before {
  position: absolute;
  left: 0;
  content: "※";
  font-size: var(--small-fz);
  margin-right: 3px;
}

.sec03_end-cta {
  width: fit-content;
  margin: 0 auto;
}
.sec03_end-cta .title {
  position: relative;
  color: var(--clr-txt);
  padding-bottom: calc(var(--sp-4) + 5.9vw);
  margin-bottom: var(--sp-4);
}
.sec03_end-cta .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2.95vw); /* 11.5px → 11.5/390*100 = 2.95vw */
  display: block;
  width: 8.72vw; /* 34px → 34/390*100 = 8.72vw */
  height: 5.9vw; /* 23px → 23/390*100 = 5.9vw */
  background: url("../img/icon_tr_cta.png") no-repeat;
  background-size: contain;
  background-position: center center;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
既存パーツ調整
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#police-cooperation {
}
#police-cooperation #topics_2011 {
}
#media {
  margin-top: var(--sp-5);
}
#faq {
}
#faq .inner {
  padding: 0;
}
#faq .sec_cta {
  margin-bottom: var(--sp-5);
}
.qa-list dt {
  padding-right: 20px;
  padding-left: 25px !important;
}
.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;
}
