@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 1280px) {
  body {
    background: 0 0/9.6px url(/images/background_blue.png);
  }
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

main {
  background-color: #fff;
}
@media screen and (min-width: 1280px) {
  main {
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}

header {
  /* first_view_titleここまで */
}
@media screen and (min-width: 1280px) {
  header {
    width: 650px;
    margin-left: auto;
    margin-right: 160px;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
header .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  width: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 30;
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  header .top {
    padding: 15px 0;
  }
}
@media screen and (min-width: 1280px) {
  header .top {
    display: none;
  }
}
header .top .service_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #032058;
  font-size: 20px;
  font-weight: bold;
  line-height: 100%;
  margin-left: 18px;
  padding: 10px 10px;
  background-color: #e7f3fb;
  border-radius: 3px;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  header .top .service_name {
    font-size: 22px;
    margin-left: 50px;
  }
}
header .top .service_name:hover {
  cursor: pointer;
}
header .top .service_name:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}
header .top .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 18px;
}
@media screen and (min-width: 768px) {
  header .top .btn {
    margin-right: 0;
  }
}
header .top .btn .btn_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  background-color: #036eb7;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 120%;
  margin-right: 9px;
  letter-spacing: 1px;
  padding: 15px 15px;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  header .top .btn .btn_contact {
    font-size: 22px;
    margin-right: 50px;
  }
}
header .top .btn .btn_contact:hover {
  cursor: pointer;
}
header .top .btn .btn_contact:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}
header .nav_pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  header .nav_pc {
    display: block;
    position: fixed;
    top: 60px;
    margin-left: -555px;
    width: 480px;
    height: 850px;
    background-color: #fff;
    border-radius: 5px;
    border: solid #e7f3fb 3px;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
  header .nav_pc .nav_pc_wrapper {
    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;
    width: 72%;
    margin: 40px auto 30px;
  }
  header .nav_pc .nav_pc_wrapper h2 {
    font-size: 30px;
    font-weight: bold;
    color: #032058;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
  header .nav_pc .nav_pc_wrapper h2:hover {
    cursor: pointer;
  }
  header .nav_pc .nav_pc_wrapper h2:active {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .nav_pc .nav_pc_wrapper h2 a {
    display: inline-block;
    padding: 10px 10px;
    background-color: #e7f3fb;
    border-radius: 3px;
  }
  header .nav_pc .nav_pc_wrapper .nav_pc_contact {
    font-size: 21px;
    font-weight: bold;
    background-color: #036eb7;
    border-radius: 3px;
    color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
  header .nav_pc .nav_pc_wrapper .nav_pc_contact:hover {
    cursor: pointer;
  }
  header .nav_pc .nav_pc_wrapper .nav_pc_contact:active {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .nav_pc .nav_pc_wrapper .nav_pc_contact p {
    padding: 15px 12px;
  }
  header .nav_pc ul {
    width: 72%;
    margin: 0 auto;
    color: #032058;
    font-size: 16px;
    font-weight: 550;
    text-align: center;
  }
}
@media screen and (min-width: 1280px) and (min-height: 900px) {
  header .nav_pc ul {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  header .nav_pc ul li:not(:first-of-type) {
    margin-top: 25px;
  }
  header .nav_pc ul li.is-active a {
    background-color: #032058;
    color: #fff;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-3px) scale(1.02);
            transform: translateY(-3px) scale(1.02);
  }
  header .nav_pc ul li a {
    display: block;
    line-height: 140%;
    background-color: #e7f3fb;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 3px;
    width: 100%;
    padding: 10px 10px;
  }
  header .nav_pc ul li a:hover {
    background-color: #032058;
    color: #fff;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-3px) scale(1.02);
            transform: translateY(-3px) scale(1.02);
  }
  header .nav_pc .pc_cta {
    width: 92%;
    margin: 30px auto 0;
    background-color: #ff4b58;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .nav_pc .pc_cta:hover {
    cursor: pointer;
  }
  header .nav_pc .pc_cta:active {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .nav_pc .pc_cta a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  header .nav_pc .pc_cta a .cta_free {
    background-color: #fff;
    padding: 15px 15px;
    border-radius: 3px;
  }
  header .nav_pc .pc_cta a .cta_free p {
    color: #ff4b58;
    font-size: 26px;
    font-weight: bold;
  }
  header .nav_pc .pc_cta a .cta_text {
    font-size: 26px;
    font-weight: bold;
  }
}
header .first_view {
  min-height: 650px;
  background-color: #e7f3fb;
  margin-top: 63.8px;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  header .first_view {
    margin-top: 87.4px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
header .first_view .first_view_title {
  text-align: center;
}
header .first_view .first_view_title .first {
  color: #032058;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  header .first_view .first_view_title .first {
    font-size: 17px;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view .first_view_title .first {
    font-size: 17px;
  }
}
header .first_view .first_view_title .first_02 {
  color: #032058;
  font-size: 14px;
  font-weight: 600;
  margin: 7px auto 0;
  background-color: #fff;
  border-radius: 3px;
  width: 72%;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .first_view .first_view_title .first_02 {
    font-size: 24px;
    margin: 9px auto 0;
    padding: 9px 0;
    width: 59%;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view .first_view_title .first_02 {
    font-size: 20px;
  }
}
header .first_view .first_view_title .first_02::after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  bottom: -9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  header .first_view .first_view_title .first_02::after {
    border-width: 15px 13px 0 13px;
    bottom: -15px;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view .first_view_title .first_02::after {
    border-width: 13px 9px 0 9px;
    bottom: -13px;
  }
}
header .first_view .first_view_title .second {
  color: #036eb7;
  font-size: 32px;
  font-weight: bold;
  margin-top: 2px;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .first_view .first_view_title .second {
    font-size: 55px;
    margin-top: -20px;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view .first_view_title .second {
    font-size: 50px;
    margin-top: 18px;
  }
}
header .first_view .first_view_title .second .arrow_up {
  position: relative;
  bottom: -8px;
  left: -2px;
}
@media screen and (min-width: 768px) {
  header .first_view .first_view_title .second .arrow_up {
    bottom: -16px;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view .first_view_title .second .arrow_up {
    bottom: -15px;
    left: -3px;
  }
}
@media screen and (min-width: 768px) {
  header .first_view .first_view_title .second img {
    width: 100px;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view .first_view_title .second img {
    width: 80px;
  }
}
header .first_view .first_view_title span {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  header .first_view .first_view_title span {
    font-size: 45px;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view .first_view_title span {
    font-size: 40px;
  }
}
header .first_view .third {
  color: #036eb7;
  font-size: 32px;
  font-weight: bold;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  header .first_view .third {
    font-size: 55px;
  }
}
@media screen and (min-width: 1280px) {
  header .first_view .third {
    font-size: 50px;
  }
}
header .mark {
  position: relative;
  z-index: 20;
  background-color: #032058;
  width: 201px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  margin: 15px auto 0;
  clip-path: polygon(0% 0%, 5% 50%, 0% 100%, 95% 100%, 100% 50%, 95% 0%);
}
@media screen and (min-width: 768px) {
  header .mark {
    width: 300px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  header .mark {
    width: 270px;
  }
}
header .mark p {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  left: 6px;
}
@media screen and (min-width: 768px) {
  header .mark p {
    font-size: 55px;
    position: relative;
    left: 10px;
    bottom: 2px;
  }
}
@media screen and (min-width: 1280px) {
  header .mark p {
    font-size: 50px;
  }
}
header .first_view_image {
  position: relative;
  top: -34px;
  z-index: 10;
  text-align: center;
}
@media screen and (min-width: 768px) {
  header .first_view_image {
    top: -15px;
  }
}
@media screen and (min-width: 768px) {
  header .first_view_image img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
header .first_view_text {
  color: #032058;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
header .first_view_text::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background-color: #032058;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 66px;
  top: 9px;
}
header .first_view_text::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background-color: #032058;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 66px;
  top: 9px;
}
header .catch_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 550;
  background-color: #032058;
  border-radius: 3px;
  width: 58%;
  margin: 0 auto;
  padding: 6px 0;
}
@media screen and (min-width: 768px) {
  header .catch_01 {
    padding: 10px 0;
    font-size: 35px;
    width: 38%;
    margin: 35px auto;
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  header .catch_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 58%;
    font-size: 40px;
    padding: 10px 0;
  }
}
header .catch_01 img {
  margin-right: 8px;
}
@media screen and (min-width: 1280px) {
  header .catch_01 img {
    -webkit-transform: scale(2);
            transform: scale(2);
    margin-right: 25px;
  }
}
header .wrapper_catch_02 {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  header .wrapper_catch_02 {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  header .wrapper_catch_02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    gap: 40px;
  }
}
header .wrapper_catch_02 .catch_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 24px;
  font-weight: 550;
  background-color: #032058;
  border-radius: 3px;
  padding: 6px 10px;
}
@media screen and (min-width: 768px) {
  header .wrapper_catch_02 .catch_02 {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  header .wrapper_catch_02 .catch_02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 38px;
    padding: 10px 27px;
  }
}
header .wrapper_catch_02 .catch_02 img {
  margin-right: 8px;
}
@media screen and (min-width: 1280px) {
  header .wrapper_catch_02 .catch_02 img {
    -webkit-transform: scale(2);
            transform: scale(2);
    margin-right: 25px;
  }
}
header .tablet_catch {
  display: none;
}
@media screen and (min-width: 768px) {
  header .tablet_catch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-top: 35px;
    font-size: 32px;
    color: #fff;
    font-weight: bold;
  }
}
@media screen and (min-width: 1280px) {
  header .tablet_catch {
    display: none;
  }
}
header .tablet_catch .tablet_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #032058;
  border-radius: 3px;
  padding: 10px 10px;
}
header .tablet_catch .tablet_content img {
  margin-right: 8px;
}
header .btn_cta {
  width: 91%;
  position: fixed;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 30;
}
@media screen and (min-width: 768px) {
  header .btn_cta {
    width: 55%;
    bottom: 25px;
  }
}
@media screen and (min-width: 1280px) {
  header .btn_cta {
    display: none;
  }
}
header .btn_cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 0;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #fff;
  background-color: #ff4b58;
  border-radius: 3px;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  header .btn_cta a {
    padding: 15px 0;
  }
}
header .btn_cta .btn_free {
  color: #ff4b58;
  background-color: #fff;
  padding: 7px 7px;
  border-radius: 2px;
  font-size: 18px;
  font-weight: bold;
  margin-left: 18px;
  margin-right: 26px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  header .btn_cta .btn_free {
    font-size: 25px;
    padding: 10px 10px;
  }
}
header .btn_cta .kaizen {
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .btn_cta .kaizen {
    font-size: 25px;
  }
}
header .btn_cta .kaizen::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  right: -47px;
  top: 10px;
}
header .btn_cta .mark_under {
  margin-left: 47px;
}
header .btn_cta .mark_under img {
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
}

/* headerここまで */
@media screen and (min-width: 1280px) {
  main {
    width: 650px;
    margin-left: auto;
    margin-right: 160px;
  }
}

.s_01 {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .s_01 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 {
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #fff;
    margin-top: 0;
  }
}
.s_01 .s_01_text {
  line-height: 140%;
  text-align: center;
}
.s_01 .s_01_text [class^=text_] {
  display: block;
}
.s_01 .s_01_text .text_01 {
  color: #03205a;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .s_01 .s_01_text .text_01 {
    font-size: 23px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .s_01_text .text_01 {
    font-size: 25px;
  }
}
.s_01 .s_01_text .text_02 {
  color: #032058;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_01 .s_01_text .text_02 {
    font-size: 30px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .s_01_text .text_02 {
    font-size: 32px;
    margin-top: 17px;
  }
}
.s_01 .s_01_text .text_03 {
  color: #2cabe3;
  font-size: 22px;
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .s_01 .s_01_text .text_03 {
    font-size: 32px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .s_01_text .text_03 {
    font-size: 36px;
    margin-top: 20px;
  }
}
.s_01 ul {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .s_01 ul {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 ul {
    margin-top: 60px;
  }
}
.s_01 ul .blue_text {
  width: 72%;
  color: #032058;
  font-size: 15px;
  line-height: 160%;
  background-color: #e7f3fb;
  border-radius: 3px;
  text-align: center;
  padding: 12px 0 12px;
  margin-left: 69px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s_01 ul .blue_text {
    margin-left: 0;
    margin: 0 auto;
    font-size: 22px;
    width: 60%;
    left: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 ul .blue_text {
    font-size: 22px;
    margin-left: 0;
    margin-left: 132px;
    width: 72%;
    left: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .s_01 ul .blue_text:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.s_01 ul .blue_text::after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #e7f3fb transparent transparent transparent;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  right: -26px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.s_01 ul .blue_text p span {
  font-weight: bold;
}
.s_01 ul li.blue_text:nth-of-type(3),
.s_01 ul li.blue_text:nth-of-type(5) {
  margin-top: 20px;
}
@media screen and (min-width: 1280px) {
  .s_01 ul li.blue_text:nth-of-type(3),
  .s_01 ul li.blue_text:nth-of-type(5) {
    margin-top: 30px;
  }
}
.s_01 ul .gray_text {
  width: 72%;
  color: #032058;
  font-size: 15px;
  line-height: 160%;
  background-color: #f1f1f1;
  border-radius: 3px;
  text-align: center;
  padding: 12px 0 12px;
  margin-top: 20px;
  margin-left: 36px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s_01 ul .gray_text {
    margin-left: 0;
    margin: 30px auto;
    font-size: 22px;
    width: 60%;
    right: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 ul .gray_text {
    font-size: 22px;
    margin-left: 50px;
    margin-top: 30px;
    width: 72%;
    right: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .s_01 ul .gray_text:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.s_01 ul .gray_text::before {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 18px 18px 0;
  border-color: transparent #f1f1f1 transparent transparent;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  left: -8px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.s_01 ul .gray_text p span {
  font-weight: bold;
}
.s_01 .chance {
  width: 76%;
  margin-top: 45px;
  margin-left: 54px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s_01 .chance {
    margin-top: 55px;
    margin-left: 105px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .chance {
    z-index: 10;
    margin-top: 45px;
    margin-left: 65px;
  }
}
.s_01 .chance::after {
  content: "";
  display: block;
  width: 206px;
  height: 140px;
  background-image: url(../images/s_01_img.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 79px;
  top: -17px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .s_01 .chance::after {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    left: 330px;
    top: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .chance::after {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    left: 265px;
    top: 15px;
  }
}
.s_01 .chance [class^=c_] {
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.s_01 .chance .c_01 {
  font-size: 20px;
  line-height: 160%;
  color: #032058;
}
@media screen and (min-width: 768px) {
  .s_01 .chance .c_01 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .chance .c_01 {
    line-height: 140%;
    font-size: 28px;
  }
}
.s_01 .chance .c_01 .c_text_01 {
  font-size: 15px;
  font-weight: normal;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .s_01 .chance .c_01 .c_text_01 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .chance .c_01 .c_text_01 {
    font-size: 26px;
  }
}
.s_01 .chance .c_02 {
  color: #2cabe3;
  font-size: 32px;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .s_01 .chance .c_02 {
    font-size: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .chance .c_02 {
    font-size: 45px;
    line-height: 140%;
  }
}
.s_01 .chance .c_02 .c_text_02 {
  color: #032058;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_01 .chance .c_02 .c_text_02 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .s_01 .chance .c_02 .c_text_02 {
    font-size: 28px;
  }
}
/* s_01　お悩みセクションここまで */
.s_02 {
  background-color: #e7f3fb;
  margin-top: 55px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .s_02 {
    margin-top: 0;
  }
}
.s_02::before {
  position: absolute;
  right: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  width: 100%;
  height: 30px;
  background-color: #fff;
  clip-path: polygon(50% 30px, 0% 0%, 100% 0%);
}
.s_02 h2 {
  padding-top: 75px;
  text-align: center;
  font-size: 18px;
  color: #032058;
  line-height: 160%;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .s_02 h2 {
    font-size: 28px;
    padding-top: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 h2 {
    font-size: 30px;
    padding-top: 130px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 h2 .pc_hide {
    display: none;
  }
}
.s_02 h2 span {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_02 h2 span {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 h2 span {
    font-size: 36px;
  }
}
.s_02 ul {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .s_02 ul {
    margin-top: 60px;
  }
}
.s_02 ul li {
  width: 91%;
  margin: 0 auto;
  color: #fff;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .s_02 ul li:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.s_02 ul li::before {
  content: url(/images/logo_s02_01.svg);
  position: absolute;
  right: 24px;
  top: 20px;
}
@media screen and (min-width: 768px) {
  .s_02 ul li::before {
    right: 55px;
    top: 30px;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@media screen and (min-width: 1280px) {
  .s_02 ul li::before {
    right: 40px;
    top: 30px;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.s_02 ul li:nth-of-type(2)::before {
  content: url(/images/logo_s02_02.svg);
}
.s_02 ul li:nth-of-type(3)::before {
  content: url(/images/logo_s02_03.svg);
}
.s_02 ul li:nth-of-type(2), .s_02 ul li:nth-of-type(3) {
  margin-top: 60px;
}
.s_02 ul li .s02_text01 {
  background-color: #036eb7;
  padding-top: 30px;
  padding-left: 24px;
}
@media screen and (min-width: 1280px) {
  .s_02 ul li .s02_text01 {
    padding-bottom: 1px;
  }
}
.s_02 ul li .s02_text01::before {
  position: absolute;
  right: 0;
  top: 138px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  width: 100%;
  height: 30px;
  background-color: #036eb7;
  clip-path: polygon(50% 30px, 0% 0%, 100% 0%);
}
@media screen and (min-width: 768px) {
  .s_02 ul li .s02_text01::before {
    top: 159px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 ul li .s02_text01::before {
    top: 180px;
  }
}
.s_02 ul li .s02_text01 .text01_title {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_02 ul li .s02_text01 .text01_title {
    font-size: 27px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 ul li .s02_text01 .text01_title {
    font-size: 30px;
  }
}
.s_02 ul li .s02_text01 .text01_sub {
  line-height: 160%;
  font-size: 15px;
  margin-top: 15px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .s_02 ul li .s02_text01 .text01_sub {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 ul li .s02_text01 .text01_sub {
    font-size: 25px;
  }
}
.s_02 ul li .s02_text02 {
  background-color: #fff;
  border-radius: 3px;
  color: #032058;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-top: 56px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .s_02 ul li .s02_text02 {
    font-size: 25px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 ul li .s02_text02 {
    font-size: 28px;
    padding-top: 75px;
    padding-bottom: 35px;
  }
}
.s_02 ul li .s02_text02 p {
  display: inline;
  border-bottom: #032058 1px solid;
}
.s_02 .kv_s02 {
  text-align: center;
  margin-top: 60px;
  color: #032058;
}
@media screen and (min-width: 1280px) {
  .s_02 .kv_s02 {
    margin-top: 80px;
  }
}
.s_02 .kv_s02 .kv02_text01 {
  font-size: 17px;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .s_02 .kv_s02 .kv02_text01 {
    font-size: 27px;
    line-height: 140%;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 .kv_s02 .kv02_text01 {
    font-size: 26px;
    line-height: 140%;
  }
}
.s_02 .kv_s02 .kv02_text02 {
  font-size: 22px;
  font-weight: bold;
  line-height: 160%;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .s_02 .kv_s02 .kv02_text02 {
    font-size: 32px;
    line-height: 140%;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 .kv_s02 .kv02_text02 {
    font-size: 36px;
    line-height: 140%;
    margin-top: 8px;
  }
}
.s_02 .kv_s02 .kv02_text03 {
  font-size: 17px;
  line-height: 160%;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .s_02 .kv_s02 .kv02_text03 {
    font-size: 27px;
    line-height: 140%;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 .kv_s02 .kv02_text03 {
    font-size: 26px;
    line-height: 140%;
    margin-top: 8px;
  }
}
.s_02 .kv_s02 .s02_img {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .s_02 .kv_s02 .s02_img {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 .kv_s02 .s02_img {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .s_02 .kv_s02 .s02_img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (min-width: 1280px) {
  .s_02 .kv_s02 .s02_img img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.s_02 .kv_s02 .kv02_text04 {
  position: relative;
  top: -25px;
  line-height: 160%;
  font-size: 17px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .s_02 .kv_s02 .kv02_text04 {
    font-size: 27px;
    line-height: 140%;
    top: -15px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_02 .kv_s02 .kv02_text04 {
    font-size: 26px;
    top: 0;
    padding-bottom: 60px;
    line-height: 160%;
  }
}

.s_03 {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .s_03 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 {
    margin-top: 100px;
  }
}
.s_03 h2 {
  text-align: center;
  line-height: 160%;
  color: #032058;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 75px;
}
@media screen and (min-width: 768px) {
  .s_03 h2 {
    font-size: 32px;
    line-height: 140%;
    margin-bottom: 95px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 h2 {
    font-size: 36px;
    line-height: 140%;
    margin-bottom: 85px;
  }
}
.s_03 h2 span {
  color: #38bdf8;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .s_03 h2 span {
    font-size: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 h2 span {
    font-size: 30px;
  }
}
.s_03 .step01 {
  width: 91%;
  background-color: #e7f3fb;
  border-radius: 3px;
  margin: 0 auto;
  color: #032058;
  min-height: 267px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .s_03 .step01 {
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.s_03 .step01::before {
  content: url(/images/step1.svg);
  position: absolute;
  left: 38px;
  top: -30px;
}
@media screen and (min-width: 768px) {
  .s_03 .step01::before {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    left: 70px;
    top: -25px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step01::before {
    left: 60px;
    top: -25px;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.s_03 .step01::after {
  content: url(/images/picture_step1.svg);
  position: absolute;
  right: 17px;
  top: -35px;
}
@media screen and (min-width: 768px) {
  .s_03 .step01::after {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    right: 60px;
    top: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step01::after {
    right: 50px;
    top: -30px;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.s_03 .step01 .inner_step {
  width: 89%;
  margin: 0 auto;
}
.s_03 .step01 .inner_step .step_text01 {
  font-size: 22px;
  font-weight: bold;
  line-height: 160%;
  padding-top: 75px;
}
@media screen and (min-width: 768px) {
  .s_03 .step01 .inner_step .step_text01 {
    font-size: 27px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step01 .inner_step .step_text01 {
    font-size: 28px;
  }
}
.s_03 .step01 .inner_step .step_text02 {
  font-size: 15px;
  line-height: 160%;
  margin-top: 25px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .s_03 .step01 .inner_step .step_text02 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step01 .inner_step .step_text02 {
    font-size: 20px;
  }
}
.s_03 .step02 {
  margin: 65px auto 0;
  width: 91%;
  background-color: #e7f3fb;
  border-radius: 3px;
  color: #032058;
  min-height: 267px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s_03 .step02 {
    margin: 85px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step02 {
    margin: 85px auto 0;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.s_03 .step02::before {
  content: url(/images/step2.svg);
  position: absolute;
  left: 38px;
  top: -30px;
}
@media screen and (min-width: 768px) {
  .s_03 .step02::before {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    left: 70px;
    top: -25px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step02::before {
    left: 60px;
    top: -25px;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.s_03 .step02::after {
  content: url(/images/picture_step2.svg);
  position: absolute;
  right: 17px;
  top: -35px;
}
@media screen and (min-width: 768px) {
  .s_03 .step02::after {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    right: 60px;
    top: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step02::after {
    right: 50px;
    top: -30px;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.s_03 .step02 .inner_step {
  width: 89%;
  margin: 0 auto;
}
.s_03 .step02 .inner_step .step_text01 {
  font-size: 22px;
  font-weight: bold;
  line-height: 160%;
  padding-top: 75px;
}
@media screen and (min-width: 768px) {
  .s_03 .step02 .inner_step .step_text01 {
    font-size: 27px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step02 .inner_step .step_text01 {
    font-size: 28px;
  }
}
.s_03 .step02 .inner_step .step_text02 {
  font-size: 15px;
  line-height: 160%;
  margin-top: 25px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .s_03 .step02 .inner_step .step_text02 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step02 .inner_step .step_text02 {
    font-size: 20px;
  }
}
.s_03 .step03 {
  margin: 65px auto 0;
  width: 91%;
  background-color: #e7f3fb;
  border-radius: 3px;
  color: #032058;
  min-height: 267px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s_03 .step03 {
    margin: 85px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step03 {
    margin: 85px auto 0;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.s_03 .step03::before {
  content: url(/images/step3.svg);
  position: absolute;
  left: 38px;
  top: -30px;
}
@media screen and (min-width: 768px) {
  .s_03 .step03::before {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    left: 70px;
    top: -25px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step03::before {
    left: 60px;
    top: -25px;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.s_03 .step03::after {
  content: url(/images/picture_step3.svg);
  position: absolute;
  right: 17px;
  top: -35px;
}
@media screen and (min-width: 768px) {
  .s_03 .step03::after {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    right: 60px;
    top: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step03::after {
    right: 50px;
    top: -30px;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.s_03 .step03 .inner_step {
  width: 89%;
  margin: 0 auto;
}
.s_03 .step03 .inner_step .step_text01 {
  font-size: 22px;
  font-weight: bold;
  line-height: 160%;
  padding-top: 75px;
}
@media screen and (min-width: 768px) {
  .s_03 .step03 .inner_step .step_text01 {
    font-size: 27px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step03 .inner_step .step_text01 {
    font-size: 28px;
  }
}
.s_03 .step03 .inner_step .step_text02 {
  font-size: 15px;
  line-height: 160%;
  margin-top: 25px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .s_03 .step03 .inner_step .step_text02 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_03 .step03 .inner_step .step_text02 {
    font-size: 20px;
  }
}

.s_04 {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .s_04 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .s_04 {
    margin-top: 100px;
  }
}
.s_04 h2 {
  text-align: center;
}
.s_04 h2 .sub04_text01 {
  color: #2cabe3;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_04 h2 .sub04_text01 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .s_04 h2 .sub04_text01 {
    font-size: 30px;
  }
}
.s_04 h2 .sub04_text01 span {
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .s_04 h2 .sub04_text01 span {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .s_04 h2 .sub04_text01 span {
    font-size: 36px;
  }
}
.s_04 h2 .sub04_text02 {
  color: #032058;
  font-size: 22px;
  font-weight: bold;
  margin-top: 5px;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .s_04 h2 .sub04_text02 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .s_04 h2 .sub04_text02 {
    font-size: 36px;
    margin-top: 8px;
  }
}
.s_04 h2 .sub04_text03 {
  color: #032058;
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
}

.merit {
  width: 91%;
  margin: 40px auto;
  color: #032058;
}
@media screen and (min-width: 768px) {
  .merit {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .merit {
    margin: 60px auto;
  }
}
.merit .merit_wrap {
  background-color: #e7f3fb;
  border-radius: 3px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .merit .merit_wrap {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap {
    padding-bottom: 30px;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.merit .merit_wrap:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .merit .merit_wrap:not(:first-of-type) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap:not(:first-of-type) {
    margin-top: 60px;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.merit .merit_wrap h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 38px;
}
@media screen and (min-width: 768px) {
  .merit .merit_wrap h3 {
    padding: 30px 38px;
  }
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap h3 {
    padding: 40px 60px;
  }
}
.merit .merit_wrap h3 .img_wrap01 {
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .merit .merit_wrap h3 .img_wrap01 {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap h3 .img_wrap01 {
    margin-right: 35px;
  }
}
@media screen and (min-width: 768px) {
  .merit .merit_wrap h3 .img_wrap01 img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap h3 .img_wrap01 img {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.merit .merit_wrap h3 .merit_title {
  font-size: 22px;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .merit .merit_wrap h3 .merit_title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap h3 .merit_title {
    font-size: 38px;
  }
}
.merit .merit_wrap .img_wrap02 {
  width: 90%;
  margin: 0 auto;
}
.merit .merit_wrap .img_wrap02 img {
  width: 100%;
}
.merit .merit_wrap .merit_evidence {
  background-color: #fff;
  border-radius: 3px;
  width: 90%;
  margin: 20px auto 0;
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap .merit_evidence {
    margin: 30px auto 0;
  }
}
.merit .merit_wrap .merit_evidence .merit_subtitle {
  font-size: 14px;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .merit .merit_wrap .merit_evidence .merit_subtitle {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap .merit_evidence .merit_subtitle {
    font-size: 25px;
  }
}
.merit .merit_wrap .merit_evidence .merit_content {
  font-size: 12px;
  line-height: 160%;
  width: 87%;
  margin: 10px auto 0;
  padding-bottom: 20px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .merit .merit_wrap .merit_evidence .merit_content {
    font-size: 20px;
    line-height: 150%;
  }
}
@media screen and (min-width: 1280px) {
  .merit .merit_wrap .merit_evidence .merit_content {
    font-size: 17px;
    line-height: 160%;
  }
}

.s_05 {
  margin-top: 60px;
  padding-bottom: 60px;
  background-image: url(/images/stripe_blue.png);
}
@media screen and (min-width: 768px) {
  .s_05 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 {
    margin-top: 100px;
    background-image: none;
    padding-bottom: 0;
  }
}
.s_05 h2 {
  color: #032058;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .s_05 h2 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 h2 {
    font-size: 30px;
    line-height: 140%;
  }
}
.s_05 h2 span {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_05 h2 span {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 h2 span {
    font-size: 36px;
  }
}
.s_05 .kv_05 {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .s_05 .kv_05 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 .kv_05 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .s_05 .kv_05 img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@media screen and (min-width: 1280px) {
  .s_05 .kv_05 img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
.s_05 .outcome_01 {
  width: 91%;
  margin: 30px auto 0;
  background-color: #e7f3fb;
  border-radius: 3px;
  padding-bottom: 35px;
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 {
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
.s_05 .outcome_01 .sub_text {
  text-align: center;
  padding-top: 20px;
  color: #032058;
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .sub_text {
    padding-top: 0;
  }
}
.s_05 .outcome_01 .sub_text .sub_text_01 {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_05 .outcome_01 .sub_text .sub_text_01 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .sub_text .sub_text_01 {
    font-size: 30px;
  }
}
.s_05 .outcome_01 .sub_text .sub_text_01 .c_red {
  color: #ff4b58;
}
.s_05 .outcome_01 .sub_text .sub_text_01 .f_size {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .s_05 .outcome_01 .sub_text .sub_text_01 .f_size {
    font-size: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .sub_text .sub_text_01 .f_size {
    font-size: 48px;
  }
}
.s_05 .outcome_01 .sub_text .sub_text_02 {
  line-height: 160%;
  font-size: 14px;
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .s_05 .outcome_01 .sub_text .sub_text_02 {
    font-size: 22px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .sub_text .sub_text_02 {
    font-size: 20px;
    margin-top: 12px;
    line-height: 140%;
  }
}
.s_05 .outcome_01 .picture_01 {
  width: 90%;
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .s_05 .outcome_01 .picture_01 {
    margin: 15px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .picture_01 {
    margin: 25px auto 0;
  }
}
.s_05 .outcome_01 .picture_01 img {
  width: 100%;
  border-radius: 3px;
}
.s_05 .outcome_01 .description {
  width: 90%;
  margin: 20px auto 0;
  background-color: #fff;
  border-radius: 3px;
  color: #032058;
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .description {
    margin: 25px auto 0;
  }
}
.s_05 .outcome_01 .description .description_inner {
  width: 86%;
  margin: 0 auto;
  padding-top: 20px;
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .description .description_inner {
    padding-top: 25px;
  }
}
.s_05 .outcome_01 .description .description_inner .inner_text01 {
  font-size: 14px;
  line-height: 160%;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_05 .outcome_01 .description .description_inner .inner_text01 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .description .description_inner .inner_text01 {
    font-size: 25px;
  }
}
.s_05 .outcome_01 .description .description_inner .inner_text02 {
  font-size: 12px;
  line-height: 160%;
  margin-top: 10px;
  padding-bottom: 20px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .s_05 .outcome_01 .description .description_inner .inner_text02 {
    font-size: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .s_05 .outcome_01 .description .description_inner .inner_text02 {
    font-size: 18px;
    padding-bottom: 25px;
  }
}
.s_05 .outcome_01 .btn_s05 {
  margin-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.swiper_container {
  background-color: #e7f3fb;
  margin-top: 30px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .swiper_container {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1280px) {
  .swiper_container {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1280px) {
  .swiper-wrapper {
    margin-top: 60px;
  }
}

.swiper.swiper-initialized.swiper-horizontal.swiper-android.swiper-backface-hidden {
  border-radius: 3px;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  background: #032058;
}
@media screen and (min-width: 1280px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
  }
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #fff;
  opacity: 1;
}
@media screen and (min-width: 1280px) {
  .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
}

.s_06 {
  width: 91%;
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  .s_06 {
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 {
    margin: 100px auto 0;
  }
}
.s_06 h2 {
  text-align: center;
  line-height: 160%;
}
.s_06 h2 .sub06_text01 {
  color: #38bdf8;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_06 h2 .sub06_text01 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 h2 .sub06_text01 {
    font-size: 30px;
  }
}
.s_06 h2 .sub06_text02 {
  color: #032058;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_06 h2 .sub06_text02 {
    font-size: 32px;
    margin-top: 7px;
    display: inline-block;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 h2 .sub06_text02 {
    font-size: 36px;
    margin-top: 10px;
    display: inline-block;
  }
}
.s_06 .plan {
  margin-top: 30px;
  color: #032058;
}
@media screen and (min-width: 768px) {
  .s_06 .plan {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 45px;
    gap: 25px;
  }
}
.s_06 .plan .plan_01 {
  background-color: #e7f3fb;
  border-radius: 3px;
  padding-top: 15px;
  padding-bottom: 20px;
}
.s_06 .plan .plan_01 .entry {
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 .entry {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .entry {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 {
    min-width: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 {
    min-width: 107px;
    width: 100%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .s_06 .plan .plan_01:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.s_06 .plan .plan_01 p {
  line-height: 120%;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 p {
    font-size: 20px;
  }
}
.s_06 .plan .plan_01 .money_01 {
  background-color: #fff;
  border-radius: 3px;
  width: 90%;
  margin: 14px auto 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 .money_01 {
    width: 90%;
    margin: 15px auto 15px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .money_01 {
    width: 90%;
    height: auto;
    padding-top: 15px;
    padding-bottom: 31px;
    margin: 14px auto 20px;
  }
}
.s_06 .plan .plan_01 .money_01 .m_text01 {
  width: 95%;
  margin: 0 auto;
  font-size: 12px;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 .money_01 .m_text01 {
    font-size: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .money_01 .m_text01 {
    font-size: 22px;
  }
}
.s_06 .plan .plan_01 .money_01 .m_text02 {
  width: 95%;
  margin: 20px auto 0;
  font-size: 16px;
  position: relative;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 .money_01 .m_text02 {
    font-size: 21px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .money_01 .m_text02 {
    font-size: 22px;
  }
}
.s_06 .plan .plan_01 .money_01 .m_text02 span {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 .money_01 .m_text02 span {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .money_01 .m_text02 span {
    font-size: 45px;
  }
}
.s_06 .plan .plan_01 .money_01 .m_text03 {
  width: 95%;
  margin: 16px auto 0;
  line-height: 140%;
  position: relative;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 .money_01 .m_text03 {
    font-size: 13px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .money_01 .m_text03 {
    font-size: 12px;
    line-height: 140%;
  }
}
.s_06 .plan .plan_01 .money_01 .m_text04 {
  width: 95%;
  margin: 16px auto 0;
  line-height: 140%;
  gap: 15px;
}
.s_06 .plan .plan_01 .money_01 .m_text04 .num_staff {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.s_06 .plan .plan_01 .money_01 .m_text04 .detail_staff {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
}
.s_06 .plan .plan_01 .money_01 .m_text04 .detail_staff .sub_description {
  font-size: 10px;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 .money_01 .m_text04 .detail_staff .sub_description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .money_01 .m_text04 .detail_staff .sub_description {
    font-size: 14px;
  }
}
.s_06 .plan .plan_01 .money_01 .m_text05 {
  width: 95%;
  margin: 16px auto 0;
  font-size: 12px;
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .money_01 .m_text05 {
    margin: 30px auto 0;
  }
}
.s_06 .plan .plan_01 .money_01 .m_text05 p {
  line-height: 160%;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_01 .money_01 .m_text05 p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_01 .money_01 .m_text05 p {
    font-size: 16px;
  }
}
.s_06 .plan .plan_02 {
  min-width: 107px;
  background-color: #e7f3fb;
  border-radius: 3px;
  margin-top: 20px;
  padding-bottom: 20px;
  border: solid 2px #032058;
  border-radius: 3px;
}
.s_06 .plan .plan_02 .recommend {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #fff;
  background-color: #032058;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .recommend {
    font-size: 22px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .recommend {
    font-size: 22px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.s_06 .plan .plan_02 .standard {
  padding-top: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .standard {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .standard {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 {
    min-width: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 {
    width: 100%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .s_06 .plan .plan_02:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.s_06 .plan .plan_02 p {
  line-height: 120%;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 p {
    font-size: 20px;
  }
}
.s_06 .plan .plan_02 .money_02 {
  background-color: #fff;
  border-radius: 3px;
  width: 90%;
  margin: 14px auto 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .money_02 {
    width: 90%;
    margin: 15px auto 15px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .money_02 {
    width: 90%;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 14px auto 20px;
  }
}
.s_06 .plan .plan_02 .money_02 .m_text01 {
  margin: 0 auto;
  width: 95%;
  font-size: 12px;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .money_02 .m_text01 {
    font-size: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .money_02 .m_text01 {
    font-size: 22px;
  }
}
.s_06 .plan .plan_02 .money_02 .m_text02 {
  margin: 20px auto 0;
  width: 95%;
  font-size: 16px;
  margin-top: 20px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .money_02 .m_text02 {
    font-size: 21px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .money_02 .m_text02 {
    font-size: 22px;
  }
}
.s_06 .plan .plan_02 .money_02 .m_text02 span {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .money_02 .m_text02 span {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .money_02 .m_text02 span {
    font-size: 45px;
  }
}
.s_06 .plan .plan_02 .money_02 .m_text03 {
  margin: 16px auto 0;
  width: 95%;
  line-height: 80%;
  font-size: 8px;
  margin-top: 16px;
  text-align: left;
  line-height: 140%;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .money_02 .m_text03 {
    font-size: 13px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .money_02 .m_text03 {
    font-size: 12px;
  }
}
.s_06 .plan .plan_02 .money_02 .m_text04 {
  width: 95%;
  margin: 16px auto 0;
  line-height: 140%;
  gap: 15px;
}
.s_06 .plan .plan_02 .money_02 .m_text04 .num_staff {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.s_06 .plan .plan_02 .money_02 .m_text04 .detail_staff {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
}
.s_06 .plan .plan_02 .money_02 .m_text04 .detail_staff .sub_description {
  font-size: 10px;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .money_02 .m_text04 .detail_staff .sub_description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .money_02 .m_text04 .detail_staff .sub_description {
    font-size: 14px;
  }
}
.s_06 .plan .plan_02 .money_02 .m_text05 {
  width: 95%;
  margin: 16px auto 0;
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .money_02 .m_text05 {
    margin: 30px auto 0;
  }
}
.s_06 .plan .plan_02 .money_02 .m_text05 p {
  line-height: 160%;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_02 .money_02 .m_text05 p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_02 .money_02 .m_text05 p {
    font-size: 16px;
  }
}
.s_06 .plan .plan_03 {
  min-width: 107px;
  background-color: #e7f3fb;
  border-radius: 3px;
  padding-top: 15px;
  margin-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 {
    min-width: 200px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 {
    width: 100%;
    font-size: 20px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .s_06 .plan .plan_03:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  }
}
.s_06 .plan .plan_03 .premium {
  line-height: 120%;
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 .premium {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .premium {
    font-size: 25px;
  }
}
.s_06 .plan .plan_03 .money_03 {
  background-color: #fff;
  border-radius: 3px;
  width: 90%;
  margin: 14px auto 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 .money_03 {
    width: 90%;
    margin: 15px auto 15px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .money_03 {
    width: 90%;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 14px auto 20px;
  }
}
.s_06 .plan .plan_03 .money_03 .m_text01 {
  width: 95%;
  margin: 0 auto;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 .money_03 .m_text01 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .money_03 .m_text01 {
    font-size: 20px;
  }
}
.s_06 .plan .plan_03 .money_03 .m_text02 {
  width: 95%;
  margin: 20px auto 0;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 .money_03 .m_text02 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .money_03 .m_text02 {
    font-size: 20px;
  }
}
.s_06 .plan .plan_03 .money_03 .m_text02 span {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 .money_03 .m_text02 span {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .money_03 .m_text02 span {
    font-size: 45px;
  }
}
.s_06 .plan .plan_03 .money_03 .m_text03 {
  width: 95%;
  margin: 16px auto 0;
  gap: 15px;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 .money_03 .m_text03 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .money_03 .m_text03 {
    font-size: 20px;
  }
}
.s_06 .plan .plan_03 .money_03 .m_text04 {
  width: 95%;
  margin: 16px auto 0;
  gap: 15px;
}
.s_06 .plan .plan_03 .money_03 .m_text04 .num_staff {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.s_06 .plan .plan_03 .money_03 .m_text04 .detail_staff {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
}
.s_06 .plan .plan_03 .money_03 .m_text04 .detail_staff .sub_description {
  font-size: 10px;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 .money_03 .m_text04 .detail_staff .sub_description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .money_03 .m_text04 .detail_staff .sub_description {
    font-size: 14px;
  }
}
.s_06 .plan .plan_03 .money_03 .m_text05 {
  width: 95%;
  margin: 16px auto 0;
  font-size: 12px;
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .money_03 .m_text05 {
    margin: 30px auto 0;
    font-size: 20px;
  }
}
.s_06 .plan .plan_03 .money_03 .m_text05 p {
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .s_06 .plan .plan_03 .money_03 .m_text05 p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .plan .plan_03 .money_03 .m_text05 p {
    font-size: 16px;
  }
}
.s_06 .alert {
  line-height: 150%;
  color: #032058;
  font-size: 10px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .s_06 .alert {
    line-height: 160%;
    font-size: 13px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .s_06 .alert {
    font-size: 14px;
  }
}

.s_07 {
  background-color: #f3f9fd;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .s_07 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .s_07 {
    margin-top: 100px;
  }
}
.s_07 h2 {
  text-align: center;
  color: #032058;
  font-size: 22px;
  line-height: 160%;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .s_07 h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .s_07 h2 {
    font-size: 32px;
  }
}
.s_07 dl {
  width: 90%;
  margin: 60px auto 0;
  padding-bottom: 60px;
}
.s_07 dl dt {
  color: #032058;
  font-size: 16px;
  line-height: 160%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-top: 1px solid #c7d4ee;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .s_07 dl dt {
    font-size: 21px;
  }
}
@media screen and (min-width: 1280px) {
  .s_07 dl dt {
    font-size: 23px;
  }
}
.s_07 dl dt.is-selected::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.s_07 dl dt::before, .s_07 dl dt::after {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #036eb7;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media screen and (min-width: 1280px) {
  .s_07 dl dt::before, .s_07 dl dt::after {
    width: 20px;
  }
}
.s_07 dl dt::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.s_07 dl dt .question {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .s_07 dl dt .question {
    font-size: 23px;
  }
}
@media screen and (min-width: 1280px) {
  .s_07 dl dt .question {
    font-size: 38px;
  }
}
.s_07 dl dt .question_text {
  margin-left: 12px;
}
@media screen and (min-width: 768px) {
  .s_07 dl dt .question_text {
    margin-left: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .s_07 dl dt .question_text {
    margin-left: 25px;
  }
}
.s_07 dl dd {
  color: #032058;
  font-size: 13px;
  line-height: 160%;
  margin-bottom: 35px;
  display: none;
}
@media screen and (min-width: 768px) {
  .s_07 dl dd {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .s_07 dl dd {
    font-size: 18px;
    margin-top: 20px;
  }
}
.s_07 dl dd .a_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.s_07 dl dd .answer {
  color: #ff4b58;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .s_07 dl dd .answer {
    font-size: 23px;
  }
}
@media screen and (min-width: 1280px) {
  .s_07 dl dd .answer {
    font-size: 38px;
  }
}
.s_07 dl dd .answer_text {
  margin-left: 12px;
  text-align: justify;
  width: 85%;
}
@media screen and (min-width: 768px) {
  .s_07 dl dd .answer_text {
    margin-left: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .s_07 dl dd .answer_text {
    margin-left: 25px;
  }
}

@media screen and (min-width: 768px) {
  .tablet_no {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .tablet_no {
    display: block;
  }
}

.s_08 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f5f5;
  color: #032058;
  scroll-margin-top: 69px;
}
@media screen and (min-width: 768px) {
  .s_08 {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 {
    padding-top: 60px;
  }
}
.s_08 h2 {
  text-align: center;
  line-height: 140%;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .s_08 h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 h2 {
    font-size: 32px;
  }
}
.s_08 .contact_inner {
  width: 91%;
  margin: 0 auto;
}
.s_08 .contact_inner form {
  margin-top: 40px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form {
    margin-top: 60px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form {
    font-size: 22px;
    margin-top: 60px;
  }
}
.s_08 .contact_inner form input[type=text], .s_08 .contact_inner form input[type=email], .s_08 .contact_inner form input[type=tel] {
  padding: 3px 8px;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form input[type=text], .s_08 .contact_inner form input[type=email], .s_08 .contact_inner form input[type=tel] {
    padding: 8px 12px;
  }
}
.s_08 .contact_inner form .contact_01 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .contact_01 {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_01 {
    margin-top: 35px;
  }
}
.s_08 .contact_inner form .contact_01 p span {
  color: #ff4b58;
}
.s_08 .contact_inner form .contact_01 input {
  background-color: #fff;
  width: 100%;
  height: 35px;
  border-radius: 3px;
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .contact_01 input {
    height: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_01 input {
    margin-top: 12px;
    height: 45px;
  }
}
.s_08 .contact_inner form .contact_02 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .contact_02 {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_02 {
    margin-top: 35px;
  }
}
.s_08 .contact_inner form .contact_02 textarea {
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  margin-top: 10px;
  min-height: 150px;
  max-height: 600px;
  padding: 3px 8px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .contact_02 textarea {
    padding: 8px 12px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_02 textarea {
    margin-top: 12px;
    min-height: 180px;
    max-height: 800px;
    padding-top: 11px;
  }
}
.s_08 .contact_inner form .contact_03 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .contact_03 {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_03 {
    margin-top: 35px;
  }
}
.s_08 .contact_inner form .contact_03 .contact03_inner {
  margin-top: 10px;
  margin-left: 10px;
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_03 .contact03_inner {
    margin-top: 12px;
    margin-left: 15px;
  }
}
.s_08 .contact_inner form .contact_03 .contact03_inner div {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .contact_03 .contact03_inner div {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_03 .contact03_inner div {
    margin-top: 17px;
  }
}
.s_08 .contact_inner form .contact_03 .contact03_inner div label {
  margin-top: 15px;
  margin-right: 10px;
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_03 .contact03_inner div label {
    margin-right: 20px;
  }
}
.s_08 .contact_inner form .contact_03 .contact03_inner div label input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
  position: relative;
  bottom: 1.5px;
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .contact_03 .contact03_inner div label input {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    margin-right: 12px;
    position: relative;
    bottom: 2px;
  }
}
.s_08 .contact_inner form .privacy {
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .privacy {
    margin: 50px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .privacy {
    margin: 60px auto 0;
  }
}
.s_08 .contact_inner form .privacy label input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
  margin-left: 10px;
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .privacy label input {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.s_08 .contact_inner form .privacy label .checkbox_01 a {
  color: #036eb7;
  border-bottom: 1px solid #036eb7;
}
.s_08 .contact_inner form .privacy label .checkbox_01 a .checkbox_02 {
  color: #ff4b58;
  margin-right: 1px;
}
.s_08 .contact_inner form .submit {
  cursor: pointer;
  text-align: center;
  margin: 40px auto 0;
  width: 40%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.s_08 .contact_inner form .submit:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .submit {
    margin: 60px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .submit {
    margin: 60px auto 0;
  }
}
.s_08 .contact_inner form .submit input {
  width: 100%;
  padding: 15px 30px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  background-color: #ff4b58;
  border-radius: 3px;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .s_08 .contact_inner form .submit input {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .s_08 .contact_inner form .submit input {
    padding: 15px 50px;
    font-size: 30px;
  }
}

footer {
  background-color: #f3f9fd;
  text-align: center;
  font-size: 18px;
  color: #032058;
  padding-top: 30px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  footer {
    font-size: 21px;
    padding-bottom: 130px;
  }
}
@media screen and (min-width: 1280px) {
  footer {
    width: 650px;
    margin-left: auto;
    margin-right: 160px;
    font-size: 22px;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.m_text01,
.m_text02,
.m_text03,
.m_text04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.m_text01 p:first-child,
.m_text02 p:first-child,
.m_text03 p:first-child,
.m_text04 p:first-child {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3; /* ← 左側のpを幅3 */
}

.m_text01 p:last-child,
.m_text02 p:last-child,
.m_text03 p:last-child,
.m_text04 p:last-child {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7; /* ← 右側のpを幅7 */
}
/*# sourceMappingURL=style.css.map */