@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #202020;
  letter-spacing: 0.05em;
  position: relative;
}

[id] {
  scroll-margin-top: 32px;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, dl {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

dd, dt {
  margin: 0;
  padding: 0;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #0048ff;
  outline-offset: 3px;
}

body.is-drawer-open {
  overflow: hidden;
}

:focus:not(:focus-visible) {
  outline: none;
}

.br-pc-only {
  display: inline;
}
@media only screen and (max-width: 768px) {
  .br-pc-only {
    display: none;
  }
}

.br-sp-only {
  display: none;
}
@media only screen and (max-width: 414px) {
  .br-sp-only {
    display: inline;
  }
}

.br-no-pc {
  display: none;
}
@media only screen and (max-width: 768px) {
  .br-no-pc {
    display: inline;
  }
}

.tel {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .tel {
    pointer-events: auto;
    text-decoration: underline;
  }
}

.ttl-decor {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #E6B617;
}
.ttl-decor::before {
  content: "";
  width: 17px;
  height: 14px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: url("../img/icon_ttl.svg") no-repeat center/contain;
  mask: url("../img/icon_ttl.svg") no-repeat center/contain;
}
.ttl-decor__label {
  color: #1C2846;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.84px;
}
@media only screen and (max-width: 768px) {
  .ttl-decor__label {
    font-size: 10px;
  }
}

.ttl-decor.deco-red {
  color: #B20909;
}

.ttl-primary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.ttl-primary__text {
  color: #1C2846;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  letter-spacing: 1.28px;
}
@media only screen and (max-width: 768px) {
  .ttl-primary__text {
    font-size: 24px;
  }
}

.ttl-primary.left {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}

.ttl-secondary {
  width: 100%;
}
.ttl-secondary__text {
  position: relative;
  color: #1C2846;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  border-bottom: 1px solid #D2D2D2;
  padding-bottom: 4px;
}
@media only screen and (max-width: 768px) {
  .ttl-secondary__text {
    font-size: 20px;
  }
}
.ttl-secondary__text::before {
  position: absolute;
  content: "";
  width: 5%;
  left: 0;
  bottom: -1px;
  border-bottom: 2px solid #1C2846;
}
@media only screen and (max-width: 768px) {
  .ttl-secondary__text::before {
    width: 10%;
  }
}
.ttl-secondary__text.deco-red::before {
  border-bottom: 2px solid #B20909;
}
.ttl-secondary__text.deco-yellow::before {
  border-bottom: 2px solid #E6B617;
}

.text-white {
  color: #ffffff;
}

.link {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 15%;
  text-underline-offset: 15%; /* 3.2px */
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
.link:hover {
  opacity: 0.7;
}

.link--external {
  position: relative;
}
.link--external::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask: url("../img/icon_external.svg") no-repeat center/contain;
  mask: url("../img/icon_external.svg") no-repeat center/contain;
}

.link--external-large {
  position: relative;
}
.link--external-large::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask: url("../img/icon_external.svg") no-repeat center/contain;
  mask: url("../img/icon_external.svg") no-repeat center/contain;
}

html, body {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.parallax__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(../img/bg_perpetrator.jpg) center/cover no-repeat;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .parallax__bg {
    background-image: url(../img/bg_perpetrator--sp.jpg);
    background-position: right;
  }
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #DDE1E6;
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  z-index: 999;
}
@media only screen and (max-width: 414px) {
  .header {
    height: 80px;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  height: 100%;
}
.header__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 70px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  height: 100%;
}
@media only screen and (max-width: 1340px) {
  .header__main {
    padding-left: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .header__main {
    padding-left: 16px;
  }
}
.header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}
.header__logo img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .header__logo {
    max-width: 280px;
  }
}
@media only screen and (max-width: 414px) {
  .header__logo {
    max-width: 200px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 24px;
}
@media only screen and (max-width: 1340px) {
  .header__nav {
    gap: 12px;
  }
}
@media only screen and (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  display: grid;
  grid-template-rows: 1fr auto 1fr auto;
  height: 100%;
  max-height: 60px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.32px;
}
.header__nav-text {
  grid-row: 2;
  line-height: 1.3;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.header__nav-item:hover .header__nav-text {
  color: #B20909;
}
.header__nav-icon {
  fill: #1C2846;
  grid-row: 4;
  justify-self: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header__nav-item:hover .header__nav-icon {
  -webkit-animation: arrow-bounce 0.4s ease;
          animation: arrow-bounce 0.4s ease;
  fill: #B20909;
}
.header__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 1200px) {
  .header__cta {
    display: none;
  }
}
.header__cta-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 109px;
  padding: 0 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  background: #1C2846;
}
.header__cta-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.header__cta-main {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 22px */
  letter-spacing: 0.44px;
}
.header__cta-sub {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 15px */
  letter-spacing: 0.3px;
}
.header__cta-icon {
  fill: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header__cta:hover .header__cta-button {
  background: #B20909;
}
.header__cta:hover .header__cta-icon {
  -webkit-animation: arrow-bounce 0.4s ease;
          animation: arrow-bounce 0.4s ease;
}
.header__drawer-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__drawer {
  display: none;
  width: 50px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  margin-right: 16px;
}
@media only screen and (max-width: 1200px) {
  .header__drawer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
  }
}
.header__drawer .drawer-text {
  color: #202020;
  text-align: center;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  line-height: 160%; /* 12.8px */
}
.header__drawer .drawer-line {
  width: 100%;
  height: 2px;
  background-color: #202020;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .header__drawer.is-open .drawer-line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}
.header .header__drawer.is-open .drawer-line:nth-child(2) {
  opacity: 0;
}
.header .header__drawer.is-open .drawer-line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}

.drawer-menu {
  width: 100%;
  position: fixed;
  inset: 0;
  color: #fff;
  background: rgba(28, 40, 70, 0.6);
  z-index: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: scroll;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.drawer-menu__wrapper {
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.drawer-menu__list {
  background: #1C2846;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: 120%; /* 18px */
  letter-spacing: 0.3px;
  padding-top: 100px;
}
@media only screen and (max-width: 414px) {
  .drawer-menu__list {
    padding-top: 80px;
  }
}
.drawer-menu__list li {
  background: #1C2846;
  border-bottom: 1px solid #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-menu__list li:last-child {
  background: #B20909;
}
.drawer-menu__list-inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 720px;
  padding: 16px;
}
.drawer-menu__info {
  width: 100%;
  background: #1C2846;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 16px;
}
.drawer-menu__logo-wrapper {
  width: 100%;
  max-width: 720px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.drawer-menu__logo {
  width: 100%;
  max-width: 400px;
  padding-left: 16px;
}
@media only screen and (max-width: 414px) {
  .drawer-menu__logo {
    max-width: 320px;
    padding-left: 0;
  }
}
.drawer-menu__info-wrapper {
  width: 100%;
  max-width: 720px;
  padding: 16px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
}
@media only screen and (max-width: 768px) {
  .drawer-menu__info-wrapper {
    padding: 16px 0;
  }
}
.drawer-menu__info-contact {
  padding: 16px 0;
}
.drawer-menu .address {
  font-style: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.drawer-menu .address__postal {
  font-size: 15px;
}
.drawer-menu__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.drawer-menu__tel dt {
  white-space: nowrap;
}
.drawer-menu__tel dt::after {
  content: "：";
  margin: 0 0.05em;
}
.drawer-menu__postal {
  font-size: 15px;
}
.drawer-menu__links {
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .drawer-menu__links {
    grid-template-columns: 1fr;
  }
}
.drawer-menu__links > li:first-child {
  grid-column: 1/-1;
}
@media only screen and (max-width: 768px) {
  .drawer-menu__links > li:first-child {
    grid-column: auto;
  }
}
.drawer-menu__links a::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-menu__copyright {
  margin-top: 64px;
  text-align: center;
  font-size: 13px;
}
.drawer-menu__close {
  background: #1C2846;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 16px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  width: 100%;
}
.drawer-menu__close span {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 18px */
  letter-spacing: 0.3px;
}
.drawer-menu__close span::before, .drawer-menu__close span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #ffffff;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.drawer-menu__close span::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.drawer-menu__close span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.drawer-menu.is-open {
  opacity: 1;
}

.drawer-menu.is-open > .drawer-menu__wrapper {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mv {
  background: #FFF;
}
.mv__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv__main {
  width: 100%;
  background: url("../img/bg_mv.png") no-repeat center/cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv__inner {
  max-width: 1600px;
  padding: 100px 60px 0px 60px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv__copy, .mv__logo {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
.mv__copy img, .mv__logo img {
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .mv__main {
    padding: 0 16px;
    position: relative;
    display: block;
    height: 85vh;
  }
  .mv__copy, .mv__logo {
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .mv__copy {
    z-index: 2;
    width: 80%;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .mv__copy {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) and (max-width: 414px) {
  .mv__copy {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .mv__logo {
    z-index: 1;
    width: 80%;
  }
}
@media only screen and (max-width: 768px) and (max-width: 414px) {
  .mv__logo {
    width: 100%;
  }
}
.mv__heading {
  width: 100%;
  background: url(../img/bg_border.svg) no-repeat center/cover;
  min-height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .mv__heading {
    min-height: 60px;
  }
}
@media only screen and (max-width: 414px) {
  .mv__heading {
    min-height: 48px;
  }
}
.mv__heading-text {
  padding: 0 60px;
  color: #FFF;
  font-size: 28px;
  font-weight: 800;
  font-style: normal;
  line-height: 160%; /* 44.8px */
}
@media only screen and (max-width: 768px) {
  .mv__heading-text {
    padding: 0 16px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 414px) {
  .mv__heading-text {
    font-size: 15px;
  }
}
.mv__read {
  width: 100%;
  background: url("../img/bg_mv.png") no-repeat center/cover;
  padding: 30px 60px 36px 60px;
  text-align: center;
  font-weight: 800;
  font-style: normal;
  line-height: 180%; /* 28.8px */
}
@media only screen and (max-width: 768px) {
  .mv__read {
    padding: 20px 16px 32px 16px;
    font-size: 15px;
  }
}

.news {
  background: #DDE1E6;
}
.news__wrapper {
  margin: 0 auto;
  max-width: 1060px;
  padding: 40px 60px 64px 60px;
}
@media only screen and (max-width: 768px) {
  .news__wrapper {
    padding: 30px 16px 64px 16px;
  }
}
.news .ttl-primary {
  position: relative;
  border-bottom: 1px solid #D2D2D2;
}
@media only screen and (max-width: 768px) {
  .news .ttl-primary {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.news .ttl-primary__text {
  padding-bottom: 10px;
}
.news__featured-wrapper {
  padding: 16px 0;
}
.news__featured {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 64px;
  max-width: 960px;
  margin: 0 auto;
}
.news__featured:first-child {
  padding-bottom: 12px;
}
@media only screen and (max-width: 768px) {
  .news__featured {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 8px;
  }
}
.news__featured a {
  font-weight: 700;
  font-style: normal;
  line-height: 28px; /* 175% */
  letter-spacing: 0.16px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-text-decoration-color: #B20909;
          text-decoration-color: #B20909;
  text-decoration-thickness: 15%; /* 1.92px */
  text-underline-offset: 25%; /* 4px */
}
@media only screen and (max-width: 768px) {
  .news__featured a {
    font-weight: 600;
  }
}
.news__badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 32px;
  padding: 6px 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  background: #B20909;
  text-wrap: nowrap;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 28px; /* 155.556% */
  letter-spacing: 0.18px;
}
@media only screen and (max-width: 768px) {
  .news__badge {
    padding: 4px 12px;
    font-size: 16px;
    letter-spacing: 0.16px;
  }
}
.news__list {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  max-height: 120px;
  padding: 16px 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
}
@media only screen and (max-width: 768px) {
  .news__list {
    padding: 8px 10px;
  }
}
.news__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 16px;
  font-weight: 500;
  line-height: 28px; /* 175% */
  letter-spacing: 0.16px;
}
@media only screen and (max-width: 768px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.news__date {
  text-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .news__date {
    font-size: 15px;
  }
}
@media only screen and (max-width: 414px) {
  .news__date {
    font-size: 14px;
  }
}

.overview {
  color: #FFF;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 32, 32, 0.8980392157)), to(#202020)), url(../img/bg_noise.png);
  background-image: -webkit-linear-gradient(rgba(32, 32, 32, 0.8980392157), #202020), url(../img/bg_noise.png);
  background-image: linear-gradient(rgba(32, 32, 32, 0.8980392157), #202020), url(../img/bg_noise.png);
  background-repeat: repeat;
  padding: 120px 60px 80px 60px;
}
@media only screen and (max-width: 768px) {
  .overview {
    padding: 60px 16px 80px 16px;
  }
}
.overview__wrapper {
  max-width: 1160px;
  margin: 0 auto;
}
.overview .marker--overview {
  max-width: 580px;
  padding-bottom: 52px;
  background: url(../img/marker_overview.svg) no-repeat center/contain;
  background-position: center calc(50% + 8px);
}
@media only screen and (max-width: 768px) {
  .overview .marker--overview {
    max-width: 400px;
    min-width: 345px;
    padding-bottom: 16px;
  }
}
.overview .ttl-secondary {
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .overview .ttl-secondary {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .overview .ttl-secondary__text {
    font-size: 18px;
  }
}
.overview__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 0.16px;
}
@media only screen and (max-width: 768px) {
  .overview__text {
    font-size: 15px;
    line-height: 200%; /* 28px */
    letter-spacing: 0.14px;
  }
}
.overview__img-single {
  margin-top: 32px;
}
.overview__column-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 32px;
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .overview__column-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.overview__column-wrapper p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px; /* 237.5% */
  letter-spacing: 0.16px;
}
@media only screen and (max-width: 768px) {
  .overview__column-wrapper p {
    font-size: 15px;
    line-height: 200%; /* 28px */
    letter-spacing: 0.14px;
  }
}
.overview__img:first-child {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
@media only screen and (max-width: 768px) {
  .overview__img:first-child {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.overview__img:first-child img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .overview__img:last-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
}
@media only screen and (max-width: 768px) {
  .overview__img:last-child img {
    max-width: 345px;
  }
}
.overview__text-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 768px) {
  .overview__text-wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.overview__text-wrapper ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.overview__text-wrapper li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.6;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16px;
}
@media only screen and (max-width: 768px) {
  .overview__text-wrapper li {
    font-size: 15px;
  }
}
.overview__text-wrapper li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 10px;
  background: #B20909;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.overview__text-wrapper p {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16px;
}
@media only screen and (max-width: 768px) {
  .overview__text-wrapper p {
    font-size: 15px;
    text-align: center;
  }
}
@media only screen and (max-width: 414px) {
  .overview__text-wrapper p {
    text-align: right;
  }
}

.about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px 60px 120px 60px;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 0.08px;
  background: #EDEFF3;
}
@media only screen and (max-width: 768px) {
  .about {
    padding: 60px 16px 80px 16px;
    font-size: 15px;
    line-height: 200%; /* 28px */
    letter-spacing: 0.14px;
  }
}
.about .ttl-primary {
  max-width: 1160px;
}
.about .ttl-primary__text span {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .about .ttl-primary__text span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .about .ttl-primary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.about .marker--about {
  max-width: 720px;
  padding-bottom: 52px;
  background: url(../img/marker_about.svg) no-repeat center/contain;
  background-position: center calc(50% + 8px);
}
@media only screen and (max-width: 768px) {
  .about .marker--about {
    max-width: 400px;
    min-width: 345px;
    padding-bottom: 16px;
    background-position: center calc(50% + 16px);
  }
}
.about__wrapper {
  max-width: 1160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 50px;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .about__wrapper {
    margin-top: 8px;
    gap: 24px;
  }
}
.about__wrapper p {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 400px;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}
.about__wrapper img {
  max-width: 540px;
  padding-top: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .about__wrapper img {
    max-width: 100%;
    padding-top: 0;
  }
}
.about__tips-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: 1160px;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .about__tips-wrapper {
    margin-top: 40px;
  }
}
.about__tips-inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 540px;
      -ms-flex: 1 1 540px;
          flex: 1 1 540px;
}
.about__tips-inner .ttl-secondary__text {
  font-size: 18px;
  margin-top: -8px;
}
.about__tips-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  gap: 16px;
}
.about__tips-body p {
  width: 100%;
}
.about__tips-body img {
  max-width: 140px;
  min-width: 120px;
  padding-left: 16px;
}
@media only screen and (max-width: 768px) {
  .about__tips-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.perpetrator {
  padding: 100px 60px 120px 60px;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .perpetrator {
    padding: 60px 0;
  }
}
.perpetrator .ttl-primary {
  margin: 0 auto;
  max-width: 1160px;
}
@media only screen and (max-width: 768px) {
  .perpetrator .ttl-primary {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.perpetrator .ttl-primary__text-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .perpetrator .ttl-primary__text-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
}
.perpetrator .ttl-primary__text {
  text-wrap: nowrap;
  font-size: 40px;
}
@media only screen and (max-width: 768px) {
  .perpetrator .ttl-primary__text {
    font-size: 32px;
  }
}
.perpetrator .ttl-primary__text span {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .perpetrator .ttl-primary__text span {
    font-size: 24px;
  }
}
.perpetrator .ttl-primary__subtext {
  text-wrap: nowrap;
  font-size: 15px;
  font-weight: 700;
  line-height: 110%; /* 17.6px */
  letter-spacing: 0.8px;
  padding-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .perpetrator .ttl-primary__subtext {
    font-size: 14px;
    padding-bottom: 0;
  }
}
.perpetrator .marker--perpetrator {
  max-width: 580px;
  padding-bottom: 52px;
  background: url(../img/marker_perpetrator.svg) no-repeat center/contain;
  background-position: center calc(50% + 8px);
}
@media only screen and (max-width: 768px) {
  .perpetrator .marker--perpetrator {
    max-width: 400px;
    min-width: 345px;
    padding-bottom: 16px;
  }
}
.perpetrator__cases {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-top: 40px;
}
.perpetrator__case:first-child {
  background: -webkit-gradient(linear, left top, right top, from(#550D0D), to(rgba(0, 0, 0, 0.6)));
  background: -webkit-linear-gradient(left, #550D0D 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(90deg, #550D0D 0%, rgba(0, 0, 0, 0.6) 100%);
  padding: 52px 70px 40px 70px;
  margin-left: 5vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.perpetrator__case:first-child p {
  margin-right: 5vw;
}
@media only screen and (max-width: 768px) {
  .perpetrator__case:first-child {
    padding: 48px 0 40px 0;
    margin-left: 0;
  }
  .perpetrator__case:first-child p {
    margin-right: 0;
  }
}
.perpetrator__case:last-child {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(#A1A100));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.6) 0%, #A1A100 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, #A1A100 100%);
  padding: 52px 70px 40px 70px;
  margin-right: 5vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.perpetrator__case:last-child p {
  margin-left: 5vw;
}
@media only screen and (max-width: 768px) {
  .perpetrator__case:last-child {
    padding: 48px 0 40px 0;
    margin-right: 0;
  }
  .perpetrator__case:last-child p {
    margin-left: 0;
  }
}
.perpetrator__case-text {
  font-weight: 500;
  line-height: 237.5%;
  letter-spacing: 0.16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .perpetrator__case-text {
    padding: 0 16px;
    font-size: 15px;
    line-height: 200%; /* 28px */
    letter-spacing: 0.14px;
  }
}
.perpetrator__case-text p {
  max-width: 1160px;
}
.perpetrator__case-text p:last-child {
  text-align: end;
}
.perpetrator__message {
  padding: 0 60px;
}
@media only screen and (max-width: 768px) {
  .perpetrator__message {
    padding: 0 16px;
  }
}
.perpetrator__message p:first-child {
  margin-top: 80px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  letter-spacing: 0.32px;
}
@media only screen and (max-width: 768px) {
  .perpetrator__message p:first-child {
    margin-top: 60px;
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}
.perpetrator__message p {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px; /* 175% */
  letter-spacing: 0.08px;
}

.victim {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../img/bg_victim.jpg") center/cover no-repeat;
  padding: 80px 60px 100px 60px;
}
@media only screen and (max-width: 768px) {
  .victim {
    padding: 60px 16px;
  }
}
.victim__wrapper {
  max-width: 1160px;
}
.victim .ttl-primary__text span {
  font-size: 48px;
}
.victim .ttl-primary__text span:last-child {
  font-size: 36px;
  color: #B20909;
}
@media only screen and (max-width: 768px) {
  .victim .ttl-primary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .victim .ttl-primary__text {
    margin-top: 4px;
  }
  .victim .ttl-primary__text span {
    font-size: 40px;
  }
  .victim .ttl-primary__text span:last-child {
    font-size: 32px;
  }
}
.victim .marker--victim {
  max-width: 240px;
  padding-bottom: 40px;
  background: url(../img/marker_victim.svg) no-repeat center/contain;
  background-position: center calc(50% + 8px);
}
@media only screen and (max-width: 768px) {
  .victim .marker--victim {
    min-width: 180px;
    padding-bottom: 16px;
    background-position: center calc(50% + 8px);
  }
}
.victim__read {
  line-height: 28px; /* 175% */
  letter-spacing: 0.08px;
  color: #1C2846;
  font-weight: 600;
  line-height: 28px; /* 175% */
  letter-spacing: 0.08px;
}
@media only screen and (max-width: 768px) {
  .victim__read {
    margin-top: 12px;
    font-size: 15px;
  }
}
.victim__voices {
  margin-top: 32px;
}
.victim__voice {
  border-top: 1px solid #202020;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .victim__voice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 0;
  }
}
.victim__voice:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .victim__voice:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.victim__voice:last-child {
  border-bottom: 1px solid #202020;
}
.victim__voice-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-weight: 500;
  line-height: 180%;
}
@media only screen and (max-width: 768px) {
  .victim__voice-body {
    font-size: 15px;
    line-height: 200%; /* 30px */
  }
}
.victim__voice-body .profile-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1C2846;
  font-size: 15px;
  font-weight: 700;
  line-height: 28px; /* 186.667% */
  letter-spacing: 0.075px;
}
.victim__voice-body .profile-info__item:not(:last-child)::after {
  content: "｜";
}
.victim__voice-body .profile-info__label::after {
  content: "：";
}
@media only screen and (max-width: 768px) {
  .victim__voice-body .profile-info {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
  }
}
.victim__message {
  margin-top: 48px;
  text-align: center;
  color: #1C2846;
  font-size: 36px;
  font-weight: 700;
  line-height: 140%; /* 50.4px */
  letter-spacing: 1.44px;
}
@media only screen and (max-width: 768px) {
  .victim__message {
    font-size: 32px;
  }
}
.victim__message-red {
  color: #B20909;
}
.victim__message-upper {
  font-size: 40px;
  letter-spacing: 1.6px;
}
@media only screen and (max-width: 768px) {
  .victim__message-upper {
    font-size: 32px;
  }
}

.information {
  background: #FFF;
  background-image: url(../img/bg_information.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.information__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 140px 60px 0 60px;
}
@media only screen and (max-width: 768px) {
  .information__wrapper {
    padding: 60px 16px 0 16px;
  }
}
.information .ttl-primary__text {
  font-size: 56px;
}
@media only screen and (max-width: 768px) {
  .information .ttl-primary__text {
    font-size: 40px;
  }
}
.information .marker--information {
  min-width: 400px;
  padding-bottom: 52px;
  background: url(../img/marker_information.svg) no-repeat center/contain;
  background-position: center calc(50% + 16px);
}
@media only screen and (max-width: 768px) {
  .information .marker--information {
    min-width: 345px;
    padding-bottom: 16px;
  }
}
.information__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-align: center;
  font-weight: 600;
  line-height: 28px; /* 175% */
  letter-spacing: 0.08px;
}
@media only screen and (max-width: 768px) {
  .information__text {
    margin-top: 16px;
    font-size: 15px;
  }
}
.information .btn-external {
  margin-top: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 480px;
  min-height: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: #B20909;
  border: solid 2px #B20909;
  color: #FFF;
  font-weight: 700;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.information .btn-external__label {
  font-size: 28px;
}
@media only screen and (max-width: 768px) {
  .information .btn-external__label {
    font-size: 22px;
  }
}
.information .btn-external__subtext {
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .information .btn-external__subtext {
    font-size: 12px;
  }
}
.information .btn-external:hover {
  background: #FFF;
  color: #B20909;
}
.information__freecall {
  border: 1px solid #D2D2D2;
  width: 100%;
  max-width: 480px;
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .information__freecall {
    margin-top: 24px;
  }
}
.information__freecall-heading {
  background: #1C2846;
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 0;
}
@media only screen and (max-width: 768px) {
  .information__freecall-heading {
    font-size: 20px;
  }
}
.information__freecall-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  gap: 32px;
}
.information__freecall-info-left {
  padding-top: 8px;
}
.information__freecall-info-label {
  font-size: 12px;
  font-weight: 800;
}
.information__freecall-info-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.information__freecall-info-number {
  font-family: Roboto;
  font-size: 48px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .information__freecall-info-number {
    font-size: 36px;
  }
}
.information__freecall-info-time {
  font-size: 15px;
  font-weight: 700;
}
.information__message {
  width: 100%;
  background-image: url(../img/bg_information-message.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  margin-top: 72px;
  padding: 0px 60px 80px 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}
@media only screen and (max-width: 768px) {
  .information__message {
    gap: 12px;
    font-size: 16px;
    line-height: 140%; /* 22.4px */
    padding: 0px 16px 80px 16px;
  }
}
.information__message p:nth-of-type(2) {
  color: #1C2846;
  font-family: "LINE Seed JP", "Noto Sans SP", sans-serif;
  font-size: 48px;
  font-weight: 800;
  font-style: normal;
  line-height: 180%; /* 86.4px */
}
@media only screen and (max-width: 768px) {
  .information__message p:nth-of-type(2) {
    font-size: 32px;
  }
}
.information__message p:nth-of-type(3) {
  margin-top: -32px;
}
@media only screen and (max-width: 768px) {
  .information__message p:nth-of-type(3) {
    margin-top: 0;
  }
}
.information__message .marker--message {
  display: inline-block;
  min-width: 120px;
  padding-bottom: 52px;
  background: url(../img/marker_information.svg) no-repeat center/contain;
  background-position: center;
}
@media only screen and (max-width: 768px) {
  .information__message .marker--message {
    min-width: 100px;
    padding-bottom: 0;
    background-position: center calc(50% + 16px);
  }
}

.links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF;
  padding: 80px 60px 0 60px;
}
@media only screen and (max-width: 768px) {
  .links {
    padding: 40px 16px 0 16px;
  }
}
.links .ttl-secondary {
  margin-top: 56px;
  width: 100%;
  max-width: 1440px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .links .ttl-secondary {
    margin-top: 20px;
  }
}
.links__wrapper {
  width: 100%;
  max-width: 1440px;
  margin-top: 24px;
  padding: 0 16px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .links__wrapper {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.links__item {
  margin: 0 auto;
}
.links__item a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.links__item span {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .links__item span {
    font-size: 16px;
  }
}
.links__item.video a::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
  width: 64px;
  height: 45px;
  background: url(../img/icon_play.svg) no-repeat center/contain;
}
.links__item img {
  border: 1px solid #D2D2D2;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  display: block;
}
.links__item a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.links__item a:hover {
  opacity: 0.8;
}
.links__item img:last-child {
  border: 1px solid #D2D2D2;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  display: block;
}

.back-to-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 24px 16px 8px 0;
  background: #FFF;
}
.back-to-top__button {
  background: #1C2846;
  width: 76px;
  height: 68px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.back-to-top__label {
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  line-height: 140%; /* 16.8px */
  padding-bottom: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.back-to-top__label::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background: #1C2846;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
}
.footer__wrapper {
  width: 100%;
  max-width: 1160px;
  padding: 72px 16px 20px 16px;
}
.footer__logo {
  max-width: 320px;
}
.footer__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.footer__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.footer .address {
  font-style: normal;
}
.footer .address__postal {
  font-size: 15px;
}
.footer__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.footer__tel dt {
  white-space: nowrap;
}
.footer__tel dt::after {
  content: "：";
  margin: 0 0.05em;
}
.footer__postal {
  font-size: 15px;
}
.footer__links {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .footer__links {
    grid-template-columns: 1fr;
  }
}
.footer__links > li:first-child {
  grid-column: 1/-1;
}
@media only screen and (max-width: 768px) {
  .footer__links > li:first-child {
    grid-column: auto;
  }
}
.footer__links a::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer__copyright {
  margin-top: 64px;
  text-align: center;
  font-size: 13px;
}

@-webkit-keyframes arrow-bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes arrow-bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* print */
@page {
  size: A4 portrait;
}
body {
  zoom: 0.6;
}

.header {
  position: unset;
}

.header__logo {
  max-width: 280px;
}

.header__nav {
  gap: 12px;
}

.mv__inner {
  margin-top: -100px;
}

.header__main {
  padding-left: 24px;
}

.drawer-menu {
  display: none;
}

.perpetrator__cases {
  margin: auto;
  width: 100%;
}

.perpetrator__case:first-child {
  margin-left: 0;
}

.perpetrator__case:last-child {
  margin-right: 0;
}

.parallax__bg {
  display: none;
}

.perpetrator {
  background: url(../img/bg_perpetrator.jpg) no-repeat center/cover;
}/*# sourceMappingURL=print.css.map */