@charset "UTF-8";
* {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  color: #525252;
  font-weight: bold;
}

p {
  color: #525252;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  p.text-center-pc {
    text-align: center;
  }
}

img {
  max-width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

header {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  header {
    padding: 10px 0;
  }
}

.header-logo {
  width: 280px;
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 200px;
    margin-left: 10px;
  }
}

.section-content {
  width: 100%;
  max-width: 1080px;
  padding: 40px 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .section-content {
    width: calc(100% - 20px);
  }
}

.main-image {
  background: #2f62b9;
  text-align: center;
}

.cta {
  text-align: center;
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 20px 0;
  }
}

.cta p {
  text-align: center;
  background-color: #fff462;
  padding: 14px 30px;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
}

.cta p span {
  color: #ed1c22;
}

@media screen and (max-width: 768px) {
  .cta p {
    width: auto;
    font-size: 16px;
    text-align: left;
  }
}

.cta p:before {
  content: "";
  /* borderで三角形を作る */
  border: 10px solid transparent;
  border-top: 10px solid #fff462;
  /* 配置する */
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.cta-button {
  display: block;
  background: #2f63ba;
  color: #fff;
  width: 800px;
  padding: 45px 0;
  border-radius: 80px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  border: 6px solid #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta-button {
    width: calc(100% - 20px);
    padding: 30px 0;
    font-size: 24px;
  }
}

.introduction .cta-button {
  border: 6px solid #f2f8fe;
}

.step .cta-button {
  border: 6px solid #fff462;
}

.cta-button::after {
  content: "→";
  position: absolute;
  right: 30px;
  font-weight: 500;
}

.cta-button:hover {
  color: #2f63ba;
  background: #fff;
  border: 6px solid #2f63ba;
}

.cta-button:hover::after {
  content: "●";
  position: absolute;
  right: 30px;
  font-weight: 500;
}

.introduction {
  background: #f2f8fe;
}

.introduction h2 {
  background: #2f63ba;
  color: #fff;
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  line-height: 54px;
  padding: 40px 0;
  border-radius: 16px 16px 0 0;
}

.introduction h2 span {
  color: #fff462;
}

@media screen and (max-width: 768px) {
  .introduction h2 {
    font-size: 24px;
    line-height: 42px;
    padding: 30px 0;
  }
}

.introduction-box {
  padding: 60px 100px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .introduction-box {
    padding: 20px 10px;
  }
}

.introduction-box__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  border: 2px solid #ebe1d9;
  border-radius: 16px;
}

.introduction-box__img {
  background: #ebe1d9;
  width: 100px;
  height: 100px;
  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;
  border-radius: 16px 0 0 16px;
}

@media screen and (max-width: 768px) {
  .introduction-box__img {
    width: 77px;
    height: 77px;
    min-width: 77px;
  }
}

.introduction-box__img img {
  width: 54px;
}

@media screen and (max-width: 768px) {
  .introduction-box__img img {
    width: 44px;
  }
}

.introduction-box__text {
  width: auto;
  height: 100px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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-left: 40px;
}

@media screen and (max-width: 768px) {
  .introduction-box__text {
    padding-left: 10px;
    height: 77px;
  }
}

.introduction .list-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}

.introduction .list-box li {
  width: 30%;
  padding: 28px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border-radius: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .introduction .list-box li {
    font-size: 16px;
    width: 49%;
    padding: 22px 0;
  }
}

.introduction .list-box.gray li {
  border: 4px solid #707070;
  color: #707070;
}

@media screen and (max-width: 768px) {
  .introduction .list-box.gray li {
    border: 2px solid #707070;
  }
}

.introduction .list-box.blue li {
  border: 4px solid #2f63ba;
  color: #2f63ba;
}

@media screen and (max-width: 768px) {
  .introduction .list-box.blue li {
    border: 2px solid #2f63ba;
  }
}

.introduction h3 {
  font-size: 38px;
  font-weight: bold;
  margin-top: 100px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .introduction h3 {
    font-size: 24px;
  }
}

.introduction h3 span {
  color: #2f63ba;
}

.introduction h4 {
  font-size: 24px;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .introduction h4 {
    font-size: 20px;
  }
}

.introduction h4::before {
  content: "●";
  color: #2f63ba;
  margin-right: 10px;
}

.introduction .report {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.introduction .report img {
  width: 48%;
  margin-bottom: 40px;
}

.introduction .message {
  margin-top: 40px;
  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;
}

@media screen and (max-width: 768px) {
  .introduction .message {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.introduction .message img {
  border-radius: 16px;
  width: 210px;
  height: auto;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .introduction .message img {
    margin: 0 auto;
  }
}

.introduction .message-text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.introduction .message-text h5 {
  font-size: 24px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .introduction .message-text h5 {
    margin-top: 40px;
    font-size: 20px;
  }
  .introduction .message-text h5 span {
    font-size: 16px;
  }
}

.bridge .section-content {
  padding-bottom: 0;
}

.step {
  background: #fff462;
}

.step-box {
  padding: 60px 100px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .step-box {
    padding: 40px 10px;
  }
}

@media screen and (max-width: 768px) {
  .step-box img {
    margin-top: 20px;
  }
}

.step-box h2 {
  color: #fff;
  background: #ed1c22;
  text-align: center;
  font-size: 38px;
  padding: 30px 0;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .step-box h2 {
    font-size: 24px;
    padding: 20px 0;
  }
}

.step-box p {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .step-box p {
    margin-bottom: 0;
  }
}

.step-box__inner {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

@media screen and (max-width: 768px) {
  .step-box__inner {
    margin-top: 20px;
  }
}

.step-box__inner h3 {
  font-size: 24px;
  height: 80px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .step-box__inner h3 {
    font-size: 16px;
    margin-top: 20px;
    height: auto;
  }
}

.step-box__inner h3::before {
  content: "●";
  color: #fff462;
  margin-right: 20px;
}

.step-box__inner__img {
  width: 48%;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .step-box__inner__img {
    width: 96%;
  }
  .step-box__inner__img img {
    margin-top: 20px;
  }
}

.about h2 {
  text-align: center;
  font-size: 38px;
  color: #2f63ba;
}

@media screen and (max-width: 768px) {
  .about h2 {
    font-size: 24px;
  }
}

.about h3 {
  font-size: 24px;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .about h3 {
    font-size: 20px;
  }
}

.about h3::before {
  content: "●";
  color: #2f63ba;
  margin-right: 10px;
}

.about-service-img img {
  margin-top: 40px;
  border-radius: 16px;
}

.about-service-img img:hover {
  opacity: 0.8;
}

.about table {
  margin-top: 40px;
  margin-bottom: 60px;
  width: 100%;
}

.about table tr {
  border-top: 2px solid #bababa;
}

.about table tr:last-child {
  border-bottom: 2px solid #bababa;
}

.about table th {
  padding: 40px 0;
  color: #2f63ba;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .about table th {
    font-size: 16px;
    min-width: 5em;
  }
}

.about table td {
  padding: 40px 0;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .about table td {
    font-size: 16px;
  }
}

.copyright {
  margin-top: 120px;
  text-align: center;
  font-size: 16px;
  background: #2f63ba;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .copyright {
    margin-top: 20px;
  }
}

.copyright p {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .copyright p {
    font-size: 10px;
  }
}
/*# sourceMappingURL=style.css.map */