@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list], ul, ol, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  --color1: #112946;
  --color2: #44AB73;
}

body {
  width: 100%;
  background: #fff;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  color: var(--color1);
  text-align: left;
  -webkit-text-size-adjust: 100%;
}

section h2 {
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--color1);
  text-align: center;
}
@media screen and (max-width: 960px) {
  section h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  section h2 {
    font-size: 22px;
  }
}

.footstepBox {
  font-size: 10px;
}

#top {
  padding: 0 10px;
  margin-bottom: 48px;
  background: #f8f8f8;
}
#top .inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 1200px;
  margin: 40px auto 0;
}
#top .left {
  position: relative;
}
#top .left .ttl {
  font-weight: bold;
}
#top .left .ttl p {
  margin-bottom: 12px;
  font-size: 18px;
}
#top .left .ttl h1 {
  padding-left: 20px;
  border-left: solid 12px var(--color2);
  color: var(--color1);
  font-size: 36px;
  font-weight: bold;
}
#top .left .ttl h1 span {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}
#top .left .ttl h1 span.m {
  font-size: 28px;
}
#top .left > p {
  padding: 32px 0;
  line-height: 1.5;
}
#top .left img {
  position: absolute;
  top: 15px;
  right: -20px;
  width: 88px;
}
#top .right img {
  display: block;
  width: 255px;
  margin: 0 128px 32px 0;
}
@media screen and (max-width: 960px) {
  #top .left .ttl p {
    white-space: nowrap;
  }
  #top .left .ttl h1 {
    margin-right: -160px;
  }
  #top .left img {
    top: 15px;
    right: -180px;
  }
  #top .right img {
    width: 60%;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 767px) {
  #top {
    overflow: hidden;
  }
  #top .inner {
    flex-direction: column;
    align-items: center;
  }
  #top .left .ttl p {
    font-size: 16px;
  }
  #top .left .ttl h1 {
    border-left: solid 8px var(--color2);
    padding-left: 12px;
    margin-right: 0;
    font-size: 24px;
  }
  #top .left .ttl h1 span {
    font-size: 16px;
  }
  #top .left .ttl h1 span.m {
    font-size: 18px;
  }
  #top .left > p {
    padding: 24px 0;
  }
  #top .left img {
    top: 21px;
    right: 10px;
    width: 64px;
  }
  #top .right img {
    width: 50%;
  }
}
@media screen and (max-width: 430px) {
  #top .left img {
    right: -16px;
    width: 56px;
  }
}

.contents {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  padding-bottom: 100px;
  margin: auto;
}
.contents .left {
  width: calc(100% - 480px);
  padding: 0 62px;
}
.contents .right {
  width: 480px;
  background: #f5f5f5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.contents #problem {
  margin-bottom: 100px;
}
.contents #problem ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.contents #problem ul li img {
  width: 121px;
}
.contents #problem ul li:nth-of-type(2n) {
  margin-top: 16px;
}
.contents #problem > img {
  display: block;
  height: 120px;
  margin: 24px auto 0;
}
.contents #about ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
}
.contents #about ul li {
  line-height: 2;
}
.contents #about ul li span {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: -2px 8px 0 0;
  background: var(--color2);
  border-radius: 50%;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  text-align: center;
}
.contents #about ul li p {
  display: inline-block;
  vertical-align: middle;
}
.contents #about .img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 960px) {
  .contents {
    flex-direction: column;
    padding-bottom: 0;
  }
  .contents .left, .contents .right {
    width: 100%;
  }
  .contents .left {
    padding: 0 48px;
  }
  .contents .right {
    padding: 0 40px;
    box-shadow: none;
  }
  .contents #problem ul {
    gap: 16px;
    width: 85%;
    margin: auto;
  }
  .contents #problem ul li img {
    width: auto;
  }
  .contents #problem > img {
    width: 60%;
    height: auto;
  }
  .contents #about ul li p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .contents .left {
    padding: 0 15px;
  }
  .contents .right {
    padding: 0;
  }
  .contents #problem ul {
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    width: 80%;
  }
  .contents #problem ul li:nth-of-type(2n) {
    margin-top: 32px;
  }
  .contents #problem > img {
    width: 80%;
  }
  .contents #about ul li p {
    font-size: 14px;
  }
  .contents #about .img {
    grid-template-columns: 1fr 1fr;
  }
}/*# sourceMappingURL=style.css.map */