@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #242424;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  letter-spacing: 0.03em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
html body {
  overflow-x: hidden;
}

p,
a,
li {
  line-height: 1.6;
  font-size: 1.6rem;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
input {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}

.mon {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.upper {
  text-transform: uppercase;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 766.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 766.9px) {
  .sp-block {
    display: block;
  }
}

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

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

.description {
  font-size: 1.6rem;
}

a {
  color: #242424;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

.cont {
  width: calc(100% - 44px);
  margin: 0 22px;
}

.cont2 {
  width: calc(100% - 22px);
  margin: 0 11px;
}

li {
  list-style: none;
}

.more_btn a {
  min-height: 98px;
  background: #0055be;
  border-radius: 16px;
  border: solid 2px #0055be;
  padding-left: 102px;
  padding-right: 60px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.more_btn a::before {
  content: "";
  width: 80px;
  height: 80px;
  background-image: url(../img/mascot1.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.more_btn a::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.more_btn a:hover {
  background: #f1f4fa;
  color: #003b82;
  opacity: 1;
}
.more_btn a:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(21%) sepia(71%) saturate(746%) hue-rotate(186deg) brightness(95%) contrast(93%);
          filter: brightness(0) saturate(100%) invert(21%) sepia(71%) saturate(746%) hue-rotate(186deg) brightness(95%) contrast(93%);
}

.PC_background {
  background: #ecf7fe;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.PC_background_left {
  position: fixed;
  left: 0;
  top: 0;
  width: calc((100% - 375px) / 2);
  height: 100%;
}
.PC_background_left .PC_background_left_content {
  overflow: hidden;
  display: none;
  position: relative;
  height: 100%;
  padding-top: 137px;
}
@media (min-width: 1200px) {
  .PC_background_left .PC_background_left_content {
    display: block;
  }
}
.PC_background_left .side_logo {
  margin-left: 103px;
  margin-bottom: 80px;
}
.PC_background_left .side_logo img {
  display: block;
  width: 357px;
}
.PC_background_left .fixed_menu {
  bottom: auto;
  left: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transform: unset;
          transform: unset;
  margin-left: 103px;
  margin-left: 103px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.PC_background_left .fixed_menu a {
  width: 237px;
  padding-top: 12px;
  padding-bottom: 7px;
}
.PC_background_left .fixed_menu .link_text,
.PC_background_left .fixed_menu .tel_number {
  gap: 13px;
  margin-top: 2px;
  min-height: 25.5px;
}
.PC_background_left .fixed_menu .tel_number {
  font-size: 1.7rem;
}
.PC_background_left .fixed_menu .tel_number img,
.PC_background_left .fixed_menu .link_text img {
  width: 21px;
}
.PC_background_left .side_img {
  position: absolute;
  bottom: 0;
  left: 12px;
  z-index: -1;
}
.PC_background_left .side_img img {
  width: 482px;
  display: block;
}

.PC_background_right {
  position: fixed;
  right: 0;
  top: 0;
  width: calc((100% - 375px) / 2);
  height: 100%;
}
.PC_background_right .PC_background_right_content {
  display: none;
  position: relative;
  height: 100%;
}
@media (min-width: 1200px) {
  .PC_background_right .PC_background_right_content {
    display: block;
  }
}
.PC_background_right .side_menu {
  width: 370px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fffdea;
  border-radius: 50px 0 0 0;
  padding: 40px 35px;
}
.PC_background_right .side_menu::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 11px;
  width: 112px;
  height: 103px;
  background-image: url(../img/side_menu_img.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.PC_background_right ul {
  margin-bottom: 20px;
}
.PC_background_right li {
  margin-bottom: 6px;
}
.PC_background_right li a {
  color: #0096e6;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
}
.PC_background_right .more_btn a {
  background: #0096e6;
  padding: 0 54px 2px 67px;
  min-height: 54px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-color: #0096e6;
  border-radius: 10px;
}
.PC_background_right .more_btn a::before {
  width: 40px;
  height: 40px;
  left: 7px;
}
.PC_background_right .more_btn a::after {
  width: 12px;
  height: 12px;
  right: 17px;
}
.PC_background_right .more_btn span {
  font-size: 2rem;
  font-weight: 900;
  display: block;
}
.PC_background_right .more_btn a:hover {
  background: #fff;
  color: #0096e6;
}
.PC_background_right .more_btn a:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(41%) sepia(79%) saturate(1665%) hue-rotate(173deg) brightness(93%) contrast(105%);
          filter: brightness(0) saturate(100%) invert(41%) sepia(79%) saturate(1665%) hue-rotate(173deg) brightness(93%) contrast(105%);
}

.content_wrapper {
  width: 375px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header-entry {
  background: #0096e6;
  width: 95px;
  height: 98px;
  border-radius: 16px;
  position: fixed;
  bottom: 16px;
  right: 11px;
}
.header-entry a {
  display: block;
  padding-top: 8px;
}
.header-entry img {
  display: block;
  margin-inline: auto;
}
.header-entry img:first-child {
  width: 56px;
  margin-bottom: 6px;
}
.header-entry img:last-child {
  width: 63px;
}

.header {
  position: fixed;
  width: 375px;
  height: 60px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  z-index: 11;
}
.header .header__inner {
  padding: 9px 11px;
  height: 100%;
  background: #003b82;
  -webkit-box-shadow: 0 4px 4px rgba(36, 36, 36, 0.1);
          box-shadow: 0 4px 4px rgba(36, 36, 36, 0.1);
}
.header h1 {
  width: 251px;
  height: 100%;
}
.header h1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header h1 span {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 3px;
  display: inline-block;
}
.header .header-wrap {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
  border-radius: 0;
  background: #003b82;
  display: block;
  margin: 0;
  width: 100%;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 60px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 90;
  overflow: auto;
  border-radius: 0 0 16px 16px;
  /* スクロールバーを非表示にする */
}
.header .header-wrap::-webkit-scrollbar {
  display: none;
}
.header .header-wrap {
  -ms-overflow-style: none; /* IE, Edge */
  scrollbar-width: none; /* Firefox */
}
.header .ham_block {
  display: block;
}
.header .gnav {
  margin: 40px 40px 64px;
  display: block;
}
.header .gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 45px;
}
.header .gnav a {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
.header .gnav .corporate_link {
  margin: 5px 0 0;
}
.header .gnav .corporate_link a {
  font-size: 1.4rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.header .gnav .more_btn a {
  min-height: 72px;
  width: 272px;
  display: grid;
  padding: 0 78px 0 90px;
  background: #0096e6;
  border-color: #0096e6;
}
.header .gnav .more_btn a::before {
  width: 62px;
  height: 56px;
  left: 8px;
}
.header .gnav .more_btn span {
  font-size: 2.5rem;
}
.header .gnav .more_btn a:hover {
  background: #fff;
  color: #0096e6;
}
.header .gnav .more_btn a:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(41%) sepia(79%) saturate(1665%) hue-rotate(173deg) brightness(93%) contrast(105%);
          filter: brightness(0) saturate(100%) invert(41%) sepia(79%) saturate(1665%) hue-rotate(173deg) brightness(93%) contrast(105%);
}

.hamburger {
  display: block;
  cursor: pointer;
  width: 40px;
  height: 56px;
  position: fixed;
  top: 7px;
  right: 8px;
  z-index: 99;
  background: none;
  border: none;
  color: #fff;
  text-align: center;
}
.hamburger::after {
  content: "メニュー";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  -webkit-transform: scale(0.7) translateX(-50%);
          transform: scale(0.7) translateX(-50%);
  white-space: nowrap;
}

.hamburger__line,
.hamburger__line::before,
.hamburger__line::after {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
}

.hamburger__line {
  left: 17px;
  top: 12px;
}

.hamburger__line::before {
  content: "";
  top: 7px;
  left: 0;
}

.hamburger__line::after {
  content: "";
  top: 14px;
  left: 0;
}

/*activeクラスが付与されると線が回転して×になる*/
.hamburger.active span {
  top: 13px;
  -webkit-transform: translateY(6px) rotate(-35deg);
          transform: translateY(6px) rotate(-35deg);
  width: 24px;
}

.hamburger.active span::before {
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.hamburger.active span::after {
  top: 0px;
  left: 0px;
  -webkit-transform: rotate(70deg);
          transform: rotate(70deg);
  width: 24px;
}

.header-wrap.active {
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
  max-height: calc(100svh - 60px);
  overflow: auto;
}

.form .form-box {
  margin-bottom: 24px;
}
.form .form-box.flex {
  gap: 0 24px;
}
.form .form-heading {
  margin-bottom: 4px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
.form .check {
  color: #e60012;
  margin-left: 6px;
  font-size: 1.8rem;
  line-height: 2;
}
.form .form-content input:not([type=radio]):not([type=checkbox]),
.form .form-content textarea {
  border: solid 2px #aabee6;
  border-radius: 8px;
  padding: 17px 24px;
  width: 100%;
}
.form .form-content input[type=tel] {
  max-width: 568px;
}
.form .form-content input[type=checkbox] {
  padding: 0;
}
.form .form-content input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0 0 1px 0;
}
.form .form-content::-webkit-input-placeholder {
  color: #646464;
}
.form .form-content::-moz-placeholder {
  color: #646464;
}
.form .form-content:-ms-input-placeholder {
  color: #646464;
}
.form .form-content::-ms-input-placeholder {
  color: #646464;
}
.form .form-content::placeholder {
  color: #646464;
}
.form .job_title input::-webkit-input-placeholder {
  font-size: 1.4rem;
}
.form .job_title input::-moz-placeholder {
  font-size: 1.4rem;
}
.form .job_title input:-ms-input-placeholder {
  font-size: 1.4rem;
}
.form .job_title input::-ms-input-placeholder {
  font-size: 1.4rem;
}
.form .job_title input::placeholder {
  font-size: 1.4rem;
}
.form .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 17px;
  margin: 9px 0;
  padding-bottom: 5px;
}
.form .wpcf7-checkbox .wpcf7-list-item-label,
.form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.form .wpcf7-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
}
.form .wpcf7-list-item {
  margin: 0;
}
.form input[type=checkbox] {
  margin: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}
.form .wpcf7-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
}
.form .privacy_policy_check {
  margin-bottom: 4px;
}
.form .privacy_policy_check p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .privacy_policy_check p span {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
.form .privacy_policy_check .wpcf7-checkbox {
  margin: 0;
  padding: 0;
}
.form .pp_link {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  text-decoration: underline;
}
.form .btn_wrap {
  margin-top: 40px;
}
.form .btn_wrap br {
  display: none;
}
.form .btn_wrap p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.form .btn_wrap p::after {
  content: "";
  width: 15px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 34px;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form .btn_wrap p input {
  background: #003b82;
  color: #fff;
  border-radius: 100px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  padding: 22px 72px 22px 32px;
  border: solid 2px #003b82;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  min-width: 267px;
  text-align: left;
}
.form .btn_wrap p:hover input {
  color: #003b82;
  background: #fff;
}
.form .btn_wrap p:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(21%) sepia(71%) saturate(746%) hue-rotate(186deg) brightness(95%) contrast(93%);
          filter: brightness(0) saturate(100%) invert(21%) sepia(71%) saturate(746%) hue-rotate(186deg) brightness(95%) contrast(93%);
}
.form .btn_wrap p .wpcf7-spinner {
  position: absolute;
}
.form .wpcf7-response-output {
  font-size: 1.6rem;
  border: none;
}

.page-top {
  height: 118px;
  margin-top: -43px;
  z-index: 4;
  position: relative;
  overflow: hidden;
}
.page-top::before {
  content: "";
  background: #55b4fa;
  height: 75px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page-top::after {
  content: "";
  background: #55b4fa;
  width: 144px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-top a {
  display: block;
  height: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.page-top span {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 34px;
}
.page-top span::before {
  content: "";
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 22px;
  display: block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 2px;
}
.page-top a:hover {
  opacity: 1;
}
.page-top a:hover span::before {
  -webkit-filter: brightness(0) saturate(100%) invert(21%) sepia(71%) saturate(746%) hue-rotate(186deg) brightness(95%) contrast(93%);
          filter: brightness(0) saturate(100%) invert(21%) sepia(71%) saturate(746%) hue-rotate(186deg) brightness(95%) contrast(93%);
}

.fixed_menu {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 375px;
  z-index: 5;
}
.fixed_menu a {
  width: 50%;
  padding: 14px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.5rem;
}
.fixed_menu p {
  font-size: 1.5rem;
  line-height: 1.5;
}
.fixed_menu .tel_number,
.fixed_menu .link_text {
  font-size: 1.4rem;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fixed_menu .tel_number img,
.fixed_menu .link_text img {
  width: 17px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.fixed_menu .tel_link {
  background: #0055be;
}
.fixed_menu .entry_link {
  background: #0096e6;
}

.footer {
  background: #003b82;
  padding: 48px 0 120px;
}
.footer * {
  color: #fff;
}
.footer .fnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.footer .fnav a {
  font-size: 1.8rem;
  display: block;
  line-height: 2;
  font-weight: 700;
}
.footer .f_logo {
  max-width: 280px;
  margin: 0 auto 10px;
}
.footer .f_logo a,
.footer .f_logo img,
.footer .f_logo span {
  display: block;
}
.footer .f_logo img {
  margin-bottom: 8px;
  width: 100%;
}
.footer .f_logo span {
  text-align: center;
  font-weight: 700;
}
.footer .address {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.footer .address .tel_wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px 16px;
  margin-top: 4px;
  margin-bottom: 1px;
}
.footer .address address {
  margin-bottom: 4px;
  font-style: normal;
}
.footer .address p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
}
.footer small {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}

.corporate_link {
  margin-bottom: 16px;
}
.corporate_link a {
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  font-size: 1.4rem;
}
.corporate_link a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/icon_link-site_12.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.top_wrapper {
  background: #fff;
}
.top_wrapper section {
  position: relative;
  z-index: 2;
}

.main_visual {
  height: 598px;
  position: relative;
}
.main_visual::before {
  content: "";
  width: 100%;
  height: 261px;
  background-image: url(../img/mv_bg.png);
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.main_visual img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
}
.main_visual .cont {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 3;
  margin-top: auto;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.main_visual .main_visual_text {
  margin-bottom: 15px;
}
.main_visual .main_visual_text .main_visual_text_first {
  color: #003b82;
  background: #fff;
  margin-bottom: 5px;
  padding: 5px 25px 5px 13px;
  font-weight: 900;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main_visual .main_visual_text p:last-child {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.main_visual .main_visual_text p:last-child span {
  font-size: 2.4rem;
  font-weight: 900;
  color: #003b82;
  background: #fff;
  padding: 7px 13px 8px;
}
.main_visual .main_visual_detail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.main_visual .main_visual_detail p {
  color: #fff;
  font-weight: 600;
  line-height: 1.8;
}

.heading1 {
  position: relative;
  text-align: center;
  color: #003b82;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 32px;
  z-index: 2;
}
.heading1::before {
  content: "";
  width: 294px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 294/106;
  background-image: url(../img/heading_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.heading2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  margin-inline: -20px;
}
.heading2 span {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
.heading2::before, .heading2::after {
  content: "";
  margin-bottom: 5px;
  width: 36px;
  height: auto;
  aspect-ratio: 36/60;
  background-size: contain;
  background-repeat: no-repeat;
}
.heading2::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.list_wrap {
  position: relative;
}
.list_wrap img {
  position: absolute;
  z-index: 2;
}
.list_wrap ul {
  background: #fff;
  padding: 30px 30px 80px 40px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.list_wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #003b82;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}
.list_wrap li::before {
  content: "";
  width: 19px;
  height: 18px;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.section1 {
  background: #c6e6ff;
  padding-top: 58px;
}

.section2 {
  padding-top: 58px;
  padding-bottom: 70px;
  background: #c6e6ff;
}
.section2 .illust_img {
  position: absolute;
  top: -63px;
  right: 26px;
  width: 214px;
}
.section2 .list_wrap img.illust_img1 {
  bottom: -73px;
  left: 17px;
  width: 133px;
}
.section2 .list_wrap img.illust_img2 {
  right: 32px;
  bottom: -109px;
  width: 100px;
}

.f-m {
  font-size: 2.4rem;
}

.f-l {
  font-size: 3.2rem;
}

.f-s {
  font-size: 2rem;
}

.f-ss {
  font-size: 1.7rem;
}

.section2-2 {
  margin-top: -10px;
  background: #003b82;
  border-radius: 10px 10px 0 0;
  padding-top: 50px;
  padding-bottom: 70px;
}
.section2-2 .heading2::before, .section2-2 .heading2::after {
  background-image: url(../img/heading_ashirai1.svg);
}
.section2-2 .section2-2_description {
  position: relative;
  padding-top: 18px;
  margin-bottom: 30px;
}
.section2-2 .section2-2_description p {
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
}
.section2-2 .section2-2_description::before {
  content: "";
  width: 243px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  opacity: 0.1;
  border-radius: 50%;
}
.section2-2 img {
  max-width: 296px;
  border-radius: 20px;
  margin-inline: auto;
  display: block;
}

.top_wrapper .section3 {
  z-index: 3;
}

.section3 {
  margin-top: -10px;
  border-radius: 10px;
  background: #0096e6;
  padding-top: 50px;
  padding-bottom: 60px;
}
.section3 .heading2 {
  margin-bottom: 24px;
  gap: 15px;
}
.section3 .heading2::before, .section3 .heading2::after {
  background-image: url(../img/heading_ashirai2.svg);
}
.section3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 57px;
}
.section3 ul::before, .section3 ul::after {
  content: "";
  clip-path: polygon(100% 0%, 50% 100%, 0% 0%);
  width: 51px;
  height: 23px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.section3 ul::before {
  background: #003b82;
  bottom: -14px;
}
.section3 ul::after {
  background: #fff;
  bottom: -42px;
}
.section3 ul li {
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px 30px;
}
.section3 ul h3 {
  position: relative;
  padding: 9px 18px 9px 59px;
  background: #000;
  background: #c6e6ff;
  border-radius: 100px;
  color: #003b82;
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.section3 ul h3 span {
  background: #003b82;
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.section3 ul p {
  line-height: 2;
}
.section3 .description {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 24px;
}
.section3 img {
  width: 296px;
  border-radius: 20px;
  margin-inline: auto;
  display: block;
}

.section4 {
  padding-top: 60px;
  margin-top: -10px;
  background: #c6e6ff;
  padding-bottom: 60px;
  overflow: hidden;
}
.section4 .heading2 {
  gap: 26px;
}
.section4 .heading2 span {
  color: #003b82;
}
.section4 .heading2::before, .section4 .heading2::after {
  background-image: url(../img/heading_ashirai3.svg);
}
.section4 .section4_sub_title {
  margin-top: -5px;
  text-align: center;
  color: #003b82;
  font-weight: 900;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  margin: 0 auto 20px;
  font-size: 2rem;
}
.section4 .section4_sub_title::before {
  content: "";
  width: 100%;
  height: 12px;
  background: #fff000;
  position: absolute;
  bottom: 12px;
  left: 0;
  z-index: -1;
}
.section4 .section4_sub_title img {
  margin-top: -6px;
  margin-bottom: -6px;
}
.section4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: relative;
  margin-bottom: 57px;
}
.section4 ul::before, .section4 ul::after {
  content: "";
  clip-path: polygon(100% 0%, 50% 100%, 0% 0%);
  width: 51px;
  height: 23px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.section4 ul::before {
  background: #003b82;
  bottom: -14px;
}
.section4 ul::after {
  background: #0096e6;
  bottom: -42px;
}
.section4 li {
  background: #fff;
  border: solid 2px #0096e6;
  border-radius: 20px;
  padding: 11px 15px 30px 19px;
  gap: 11px;
}
.section4 li .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section4 li .detail .no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-weight: 700;
}
.section4 li .detail .no .span1 {
  color: #003b82;
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 0;
}
.section4 li .detail .no .span2 {
  color: #c6e6ff;
  font-size: 3.8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: 1px 1px 0 #003b82, -1px -1px 0 #003b82, -1px 1px 0 #003b82, 1px -1px 0 #003b82, 1px 0 0 #003b82, -1px 0 0 #003b82, 0 1px 0 #003b82, 0 -1px 0 #003b82;
  line-height: 1.2105263158;
}
.section4 li .detail h3 {
  color: #003b82;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  min-height: 37px;
  margin-bottom: 3px;
}
.section4 li .detail p:last-child {
  line-height: 1.5;
}
.section4 li .img {
  width: 110px;
  margin-top: 22px;
}
.section4 li .img img {
  width: 100%;
  display: block;
}
.section4 .description {
  text-align: center;
  color: #003b82;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 900;
}

.section5 {
  margin-top: -10px;
  padding-top: 50px;
  border-radius: 10px;
  background: #fff;
  z-index: 3 !important;
}
.section5 h2 {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #003b82;
  z-index: 2;
}
.section5 h2::before {
  content: "";
  width: 113px;
  height: auto;
  aspect-ratio: 1133/965;
  background-image: url(../img/heading_ashirai4.svg);
  position: absolute;
  top: -30px;
  left: 0;
  z-index: -1;
}
.section5 .section5_sub_title {
  position: relative;
  text-align: center;
  color: #003b82;
  font-weight: 900;
  margin-bottom: 24px;
  z-index: 2;
}
.section5 .description {
  margin: 0 15px 30px;
  font-weight: 600;
  line-height: 1.5;
}
.section5 .section5_list_wrap {
  background: #ecf7fe;
  border-radius: 20px;
  padding: 40px 20px;
  position: relative;
}
.section5 ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.section5 ol li {
  padding-bottom: 10px;
  padding-left: 24px;
  position: relative;
}
.section5 ol li h3 {
  color: #003b82;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.section5 ol li h3 span {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
}
.section5 ol li p {
  line-height: 1.5;
}
.section5 ol li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #003b82;
  position: absolute;
  top: 9px;
  left: 0;
}
.section5 ol li::after {
  content: "";
  width: 2px;
  height: calc(100% - 26px);
  position: absolute;
  bottom: 0;
  left: 5px;
  background-image: url(../img/dots.svg);
  background-repeat: repeat-y;
  background-position: top;
}
.section5 .img {
  position: relative;
  width: 283px;
  margin-left: 2px;
}
.section5 .img img {
  display: block;
  border: solid 3px #fff;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.section5 .img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #0055be;
  border-radius: 20px;
  position: absolute;
  left: 5px;
  top: 5px;
}
.section5 .illust {
  position: absolute;
  z-index: 3;
  bottom: -64px;
  right: 7px;
  width: 119px;
}

.section6 {
  padding-top: 73px;
  padding-bottom: 60px;
  background: #fff;
}
.section6 h2 {
  position: relative;
  text-align: center;
  color: #003b82;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.section6 h2 img {
  margin: 14px 0 -2px;
}
.section6 h2 span {
  color: #0055be;
  font-size: 2.4rem;
}
.section6 h2 span.f-s {
  color: #003b82;
  font-size: 2rem;
}
.section6 h2::before, .section6 h2::after {
  content: "";
  width: 27px;
  height: auto;
  aspect-ratio: 27/24;
  background-image: url(../img/heading_ashirai5.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
.section6 h2::before {
  top: -17px;
  left: 2px;
}
.section6 h2::after {
  bottom: -10px;
  right: -2px;
}
.section6 .section6_sub_title {
  color: #003b82;
  text-align: center;
  margin-bottom: 2px;
  font-weight: 900;
}
.section6 .section6_sub_title span {
  color: #0055be;
}
.section6 .section6_sub_title .small {
  font-size: 1.4rem;
}
.section6 ul {
  margin-top: 34px;
  gap: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section6 li {
  background: #f6fbff;
  border: solid 2px #0055be;
  border-radius: 20px;
  position: relative;
  padding: 37px 26px 24px;
}
.section6 li .no {
  position: absolute;
  z-index: 2;
  background: #c6e6ff;
  border-radius: 100px;
  color: #003b82;
  top: -13px;
  left: 27px;
  padding: 5px 20px 6px;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}
.section6 li h3 {
  color: #003b82;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 12px;
}
.section6 li .name {
  color: #0055be;
  font-weight: 600;
  margin-bottom: 3px;
}
.section6 li .job_detail {
  line-height: 1.8;
  font-weight: 600;
}
.section6 li .job_detail span {
  font-size: 1.4rem;
}
.section6 li .job_detail2 {
  line-height: 1.8;
  font-weight: 600;
}
.section6 li .job_detail2-2 {
  margin-top: 10px;
}
.section6 li .income {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.8;
}
.section6 li .income::before {
  content: "";
  width: 100%;
  height: 20px;
  background: #fff000;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.section6 li .description {
  line-height: 1.8;
  font-weight: 600;
}

.section7 {
  margin-top: -10px;
  padding-top: 60px;
  padding-bottom: 56px;
  border-radius: 10px;
  background: #c6e6ff;
}
.section7 h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 21px;
}
.section7 h2 span {
  z-index: 2;
  display: block;
  position: relative;
  color: #fff;
  background: #003b82;
  border: 100px;
  z-index: 2;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  padding: 6px 28px 5px;
  border-radius: 100px;
}
.section7 h2::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -11px;
  background: #003b82;
  clip-path: polygon(100% 0%, 50% 100%, 0% 0%);
}
.section7 h2 img {
  position: absolute;
  width: 128px;
  top: -82px;
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.section7 h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #003b82;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.4;
}
.section7 h3::before, .section7 h3::after {
  content: "";
  width: 17px;
  height: 25px;
  background-image: url(../img/heading_ashirai6.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.section7 h3::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.section7 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.section7 li {
  border-radius: 20px;
  background: #003b82;
  padding: 20px 18px 20px;
}
.section7 li .question {
  margin-right: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 12px;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 7px;
}
.section7 li .question::before {
  content: "";
  width: 27px;
  height: 22px;
  margin-top: 3px;
  background-image: url(../img/question.svg);
}
.section7 li .question .mon {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  color: #c6e6ff;
  margin-left: 1px;
  margin-right: 8px;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2142857143;
}
.section7 li .answer {
  border-radius: 15px;
  padding: 13px 16px 15px 53px;
  position: relative;
  background: #fff;
}
.section7 li .answer::before {
  content: "";
  width: 33px;
  height: 23px;
  background-image: url(../img/answer.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 11px;
  top: 17px;
}
.section7 li .answer p {
  line-height: 1.5;
}

.section8 {
  margin-top: -10px;
  padding-top: 70px;
  padding-bottom: 80px;
  border-radius: 10px;
}
.section8 h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
.section8 h2 span {
  z-index: 2;
  display: block;
  position: relative;
  color: #fff;
  background: #003b82;
  border: 100px;
  z-index: 2;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  padding: 6px 55px 5px;
  border-radius: 100px;
}
.section8 h2::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -11px;
  background: #003b82;
  clip-path: polygon(100% 0%, 50% 100%, 0% 0%);
}
.section8 h2 img {
  position: absolute;
  width: 143px;
  top: -94px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.section8 .section8_sub_title,
.section8 .section8_sub_title2 {
  text-align: center;
  color: #003b82;
  font-weight: 900;
}
.section8 .section8_sub_title {
  font-size: 2rem;
}
.section8 .section8_sub_title img {
  margin-top: 10px;
  margin-bottom: -2px;
}
.section8 .section8_sub_title span {
  font-size: 2.6rem;
}
.section8 .section8_sub_title2 {
  margin-bottom: 18px;
}
.section8 .job_detail .job_detail_item {
  padding: 20px 0;
  border-top: solid 1px #bebebe;
  position: relative;
}
.section8 .job_detail .job_detail_item::before {
  content: "";
  width: 70px;
  height: 1px;
  background: #0096e6;
  position: absolute;
  top: -1px;
  left: 0;
}
.section8 .job_detail .job_detail_item_title {
  color: #003b82;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 2;
}
.section8 .job_detail .job_detail_item_value {
  line-height: 2;
}
.section8 .description {
  padding-top: 20px;
  border-top: solid 1px #bebebe;
  position: relative;
  color: #003b82;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 2;
}
.section8 .description::before {
  content: "";
  width: 70px;
  height: 1px;
  background: #0096e6;
  position: absolute;
  top: 0;
  left: 0;
}

.cta {
  padding: 59px 0 84px;
  background-image: url(../img/cta_bg.png);
  background-size: cover;
}
.cta h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.4;
  color: #003b82;
}
.cta h2 span {
  color: #0055be;
}
.cta h2 img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 5px auto 20px;
}
.cta p {
  text-align: center;
  font-size: 1.8rem;
  color: #003b82;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 17px;
}
.cta p span {
  color: #0055be;
}
.cta p .small {
  font-size: 1.6rem;
  color: #003b82;
}
.cta p img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.cta .img {
  max-width: 331px;
  margin: 0 auto;
}
.cta .img img {
  display: block;
}
.cta .more_btn a {
  max-width: 315px;
  margin: 0 auto;
  padding-left: 91px;
  padding-right: 70px;
}
.cta .more_btn a::before {
  left: 10px;
}
.cta .more_btn a span {
  font-size: 2rem;
  line-height: 1.4;
}

.page_top {
  padding-top: 120px;
  background-image: url(../img/page_top_bg.png);
  background-size: cover;
  position: relative;
  background-color: #fff;
}
.page_top::before {
  content: "";
  width: 103px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/mascot2.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 20px;
  right: 40px;
}
.page_top h2 {
  font-size: 2.4rem;
  margin-bottom: 64px;
}
.page_top .cont {
  margin: 0 28px;
  width: calc(100% - 56px);
}
.page_top .pankuzu {
  padding: 16px 0;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.page_top .pankuzu a,
.page_top .pankuzu span {
  font-size: 1.2rem;
  font-weight: 500;
}
.page_top .pankuzu .current-item {
  color: #003b82;
  font-weight: 700;
}

.wrapper {
  padding: 64px 0 123px;
  background: #c6e6ff;
}
.wrapper .cont {
  max-width: 320px;
  margin: 0 auto;
}
.wrapper .form_step {
  gap: 40px;
  margin-bottom: 40px;
}
.wrapper .form_step p {
  color: #003b82;
  background: #fff;
  border: solid 2px #003b82;
  border-radius: 100px;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 7px 19px;
}
.wrapper .form_step .current {
  color: #fff;
  background: #003b82;
  border-color: #003b82;
}
.wrapper .form_step .wp-block-column {
  position: relative;
}
.wrapper .form_step .wp-block-column::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow_b.svg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -32px;
}
.wrapper .form_step .wp-block-column:last-child::after {
  display: none;
}
.wrapper .description {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 40px;
}

body.privacy-policy .wrapper {
  background: #fff;
}
body.privacy-policy .wrapper h2 {
  margin-top: 64px;
  margin-bottom: 16px;
  font-size: 2.4rem;
  font-weight: 700;
}
body.privacy-policy .wrapper p {
  font-size: 1.8rem;
  line-height: 2;
}/*# sourceMappingURL=common.css.map */