@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@700&display=swap");
.section_icon_title {
  text-align: center;
  font-size: 38px;
  background: url(../img/icon-logo.png) no-repeat;
  background-size: 104px;
  background-position: top center;
  padding: 120px 0 0;
  position: relative;
  top: -50px;
}

@media (max-width: 480px) {
  .section_icon_title {
    font-size: 24px;
    background-size: 60px;
    background-position: top center;
    top: -30px;
    padding-top: 70px;
  }
}

.section_flex_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .section_flex_contents {
    display: block;
  }
}

.section_flex_contents .img {
  width: 480px;
  max-width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (max-width: 480px) {
  .section_flex_contents .img {
    margin: 0 0 1em;
  }
}

.section_flex_contents .text {
  width: calc(100% - 520px);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (max-width: 480px) {
  .section_flex_contents .text {
    width: 100%;
  }
}

.checklist {
  width: 610px;
  max-width: 100%;
  margin: 60px auto 0;
  background: #f0f9fc;
  border: solid 4px #0282c1;
  border-radius: 15px;
  padding: 40px;
}

@media (max-width: 480px) {
  .checklist {
    padding: 30px 20px 20px;
    margin-top: 50px;
  }
}

.checklist ul li {
  font-size: 20px;
  font-weight: bold;
  background: url(../img/ico-check.png) no-repeat;
  background-size: 30px;
  background-position: left top 4px;
  padding: 0 0 0 40px;
  margin: 0 0 .4em;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .checklist ul li {
    font-size: 18px;
    background-size: 20px;
    background-position: left top 6px;
    padding: 0 0 0 30px;
  }
}

.checklist ul li:last-child {
  margin: 0;
}

.checklist h3 {
  color: #0282c1;
  font-size: 24px;
  text-align: center;
  margin-top: -66px;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .checklist h3 {
    font-size: 18px;
    margin-top: -50px;
  }
}

.checklist h3 div {
  background: #e1f2f9;
  padding: 0 10px;
  position: relative;
  display: inline-block;
}

.checklist h3 div:after {
  background: #f0f9fc;
  width: 100%;
  height: 50%;
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.checklist h3 div span {
  position: relative;
  z-index: 5;
}

#contents .bg1 {
  padding: 0 0 120px;
}

@media (max-width: 480px) {
  #contents .bg1 {
    padding: 0 0 60px;
  }
}

#contents .bg2 {
  padding: 0 0 120px;
}

@media (max-width: 480px) {
  #contents .bg2 {
    padding: 0 0 60px;
  }
}

#contents .bg2 .checklist h3 div {
  background: #a7daed;
}

#contents #service3 {
  padding: 0 0 120px;
}

@media (max-width: 480px) {
  #contents #service3 {
    padding: 0 0 60px;
  }
}

#contents #service3 table tbody th {
  padding: 10px 15px;
  text-align: left;
  width: 20%;
}

@media (max-width: 480px) {
  #contents #service3 table tbody th {
    width: 100%;
  }
}

#contents #service3 table tbody td {
  padding: 10px 15px;
  width: 80%;
}

@media (max-width: 480px) {
  #contents #service3 table tbody td {
    border: 1px solid #ececec;
    width: 100%;
  }
}

.color-red {
  color: #f44747;
}

.flow_contents > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 50px;
}

@media (max-width: 480px) {
  .flow_contents > div {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 20px;
  }
}

.flow_contents > div:last-child {
  padding: 0;
}

.flow_contents > div:last-child:after {
  content: none;
}

.flow_contents > div:after {
  content: '';
  background: #656565;
  width: 4px;
  height: 40px;
  display: block;
  position: absolute;
  bottom: 5px;
  left: 65px;
}

@media (max-width: 480px) {
  .flow_contents > div:after {
    left: 40px;
    border: unset;
    top: 90px;
  }
}

.flow_contents > div .step {
  background: #0282c1;
  color: #fff;
  text-align: center;
  font-family: "Roboto";
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .flow_contents > div .step {
    width: 80px;
    height: 80px;
    font-size: 18px;
  }
}

.flow_contents > div .step span {
  font-size: 36px;
  display: block;
}

@media (max-width: 480px) {
  .flow_contents > div .step span {
    font-size: 24px;
  }
}

.flow_contents > div .text {
  width: calc(100% - 160px);
}

@media (max-width: 480px) {
  .flow_contents > div .text {
    width: calc(100% - 100px);
  }
}

.flow_contents > div .text h3 {
  color: #0282c1;
  font-size: 28px;
  margin: 0 0 .2em;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .flow_contents > div .text h3 {
    font-size: 22px;
  }
}

.img_greeting {
  margin: 0 0 40px;
}

@media (max-width: 480px) {
  .img_greeting {
    margin: 0 0 20px;
  }
}

.contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .contact_list {
    display: block;
  }
}

.contact_list li {
  background: #0282c1;
  color: #fff;
  text-align: center;
  font-weight: bold;
  width: 400px;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}

@media (max-width: 480px) {
  .contact_list li {
    width: 100%;
    margin: 10px auto;
  }
}

.contact_list li a {
  color: #fff;
  display: block;
}

.contact_list li .number {
  font-family: "Roboto";
  font-size: 32px;
  white-space: pre;
}

.contact_list li .number .small {
  font-size: 24px;
}

.contact_list li:nth-child(2) {
  background: #ffff01;
  color: #1c0d00;
}

#contents #MailForm {
  padding-top: 80px;
}

@media (max-width: 480px) {
  #contents #MailForm {
    padding-top: 40px;
  }
}
/*# sourceMappingURL=contents.css.map */