@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 170%;
  color: #1a1a1a;
  font-family: "Noto Sans JP", "Oswald";
  background: #fff;
}

.inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .inner {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 400px) {
  .inner {
    padding: 0 40px;
  }
}

.slideinLeft {
  -webkit-animation: slideinLeft 1s;
          animation: slideinLeft 1s;
}
@-webkit-keyframes slideinLeft {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideinLeft {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
.fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.button {
  background: #105DCE;
  -webkit-box-shadow: 0 5px 0 #105DCE;
          box-shadow: 0 5px 0 #105DCE;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 24px;
    padding: 20px 90px;
  }
}
.button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.button i {
  margin-right: 10px;
}

.fa-circle-right {
  margin-right: 4px;
}

.btn_animate04 {
  margin: 0 auto;
  -webkit-animation: vertical 2s linear infinite;
          animation: vertical 2s linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  cursor: pointer;
  white-space: nowrap;
}
@-webkit-keyframes vertical {
  0% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  5% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  10% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  15% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  20% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  25% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes vertical {
  0% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  5% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  10% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  15% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  20% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  25% {
    -webkit-transform: translate(0px, -2px);
            transform: translate(0px, -2px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  cursor: pointer;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: translateY(20%) rotate(-45deg);
          transform: translateY(20%) rotate(-45deg);
}

.heading {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.68px;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 34px;
  }
}
.heading-box {
  text-align: center;
}
.heading-sub {
  display: inline-block;
  text-align: center;
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.52px;
  border-radius: 50px;
  background: #CC3434;
  padding: 8px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .heading-sub {
    font-size: 26px;
    font-weight: 600;
    padding: 8px 30px;
  }
}

.bg-red {
  background: rgba(204, 52, 52, 0.09);
}

.bg--red {
  background: #105DCE !important;
}

.blue {
  color: #105DCE;
}

.base {
  color: #1a1a1a;
}

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

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

.dots {
  background-image: radial-gradient(circle at center, #1a1a1a 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.15em; /* 縦方向の位置調整 */
}

.border-line {
  padding-bottom: 4px;
  border-bottom: 1px solid #1a1a1a;
}

.polygon {
  width: 58px;
  margin: 0 auto;
}

.title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 28px;
  }
}
.title span {
  font-weight: 600;
  color: #105DCE;
}
.title--2 {
  margin-top: 60px;
}
.title--3 {
  margin-top: 45px;
  font-size: 24px;
  line-height: 150%;
}
.title--4 {
  font-size: 22px;
  margin-top: 25px;
  line-height: 150%;
}

.bg__blue {
  background-color: #ECF7FF;
  padding: 60px 0;
}

.header {
  width: 100%;
  height: 70px;
  background: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.13));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.13));
}
@media screen and (min-width: 768px) {
  .header {
    padding-left: 20px;
  }
}
.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    padding-left: 120px;
  }
}
.header__left {
  -ms-flex-line-pack: center;
      align-content: center;
  padding-left: 20px;
}
.header__left img {
  width: 225px;
  height: 100%;
  margin-top: -6px;
}
@media screen and (min-width: 768px) {
  .header__left {
    max-width: 270px;
    width: 252px;
    margin: 0;
  }
}
@media (max-width: 374px) {
  .header__left {
    max-width: 180px;
    margin: 0;
  }
}
.header__left p {
  font-size: 12px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .header__left p {
    margin-top: 5px;
    font-size: 16px;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__right {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__right {
    display: block;
    line-height: inherit;
  }
}
@media screen and (max-width: 1000px) {
  .header__right {
    display: none;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 34px;
    height: 70px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link a {
  line-height: 70px;
  display: block;
  font-weight: 600;
}
.header__link:hover {
  color: #105DCE;
}
@media screen and (max-width: 1000px) {
  .header__button {
    display: block;
  }
}
.header__button-txt {
  display: block;
  background: #105DCE;
  line-height: 70px;
  color: #FFF;
  padding: 0 15px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__button-txt {
    padding: 0 20px;
  }
}

.fv {
  padding: 50px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv {
    padding: 110px 0;
  }
}
.fv__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fv__head-main {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__head-main {
    width: 96%;
  }
}
.fv__head-sub {
  margin-top: 43px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .fv__head-sub {
    width: 76%;
  }
}
.fv__image img {
  position: absolute;
  width: 150px;
  top: 290px;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .fv__image img {
    width: 300px;
    right: 40px;
    top: 320px;
  }
}
@media (max-width: 990px) {
  .fv__image img {
    max-width: 200px;
  }
}
@media (max-width: 990px) {
  .fv__image img {
    max-width: 200px;
  }
}

.opening {
  background-color: #E2F3FF;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .opening {
    padding: 110px 0;
  }
}
.opening__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .opening__content {
    text-align: center;
    margin-top: 20px;
  }
}
.opening .subtitle {
  background-color: #105DCE;
  border-radius: 50px;
  padding: 3px 30px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .opening .subtitle {
    padding: 7px 40px;
  }
}
.opening .subtitle span {
  color: #fff;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .opening .subtitle span {
    font-size: 24px;
  }
}
.opening .title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .opening .title {
    font-size: 32px;
    margin-top: 45px;
  }
}
.opening .text {
  white-space: nowrap;
  font-size: 14px;
  line-height: 150%;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .opening .text {
    font-size: 22px;
    margin-top: 35px;
    text-align: center;
    margin-bottom: 45px;
  }
}

.cta__content {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .cta__content {
    text-align: center;
    padding: 40px 0;
  }
}
.cta__head {
  font-weight: 600;
  line-height: 150%;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .cta__head {
    font-size: 24px;
  }
}
.cta__text {
  font-size: 14px;
  line-height: 150%;
  margin-top: 12px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .cta__text {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
  }
}
.cta__button {
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF7914), to(#F8B200));
  background: linear-gradient(180deg, #FF7914, #F8B200);
  border-radius: 50px;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .cta__button {
    display: inline-block;
    margin-top: 20px;
    font-size: 20px;
    padding: 20px 45px;
  }
}
.cta__button span {
  font-weight: 600;
  letter-spacing: 2px;
}
.cta--bg {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#1055CC), to(#14B0E3));
  background: linear-gradient(180deg, #1055CC, #14B0E3);
  padding: 30px 0px;
}
@media screen and (min-width: 768px) {
  .cta--bg {
    padding: 80px 0;
  }
}

.problem {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .problem {
    padding: 110px 0;
  }
}
.problem .title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .problem .title {
    font-size: 32px;
  }
}
.problem .title span {
  font-weight: 600;
  color: #105DCE;
}
.problem .title--2 {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .problem .title--2 {
    margin-top: 80px;
  }
}
.problem .title--3 {
  margin-top: 45px;
  font-size: 24px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .problem .title--3 {
    font-size: 32px;
  }
}
.problem .title--4 {
  font-size: 22px;
  margin-top: 25px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .problem .title--4 {
    font-size: 32px;
    margin-top: 60px;
    line-height: 170%;
  }
}
.problem__text {
  text-align: center;
  margin: 0 auto;
}
.problem__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .problem__cards {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .problem__cards img {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 768px) {
  .problem__card {
    width: 40%;
  }
}
.problem__image {
  margin-top: 30px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .problem__image {
    margin-top: 45px;
  }
}
.problem__box img {
  margin-top: 40px;
}

.skills {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .skills {
    padding: 110px 0;
  }
}
.skills .title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .skills .title {
    font-size: 32px;
  }
}
.skills .title span {
  font-weight: 600;
  color: #105DCE;
}
.skills .title--2 {
  margin-top: 60px;
}
.skills .title--3 {
  margin-top: 45px;
  font-size: 24px;
  line-height: 150%;
}
.skills .title--4 {
  font-size: 22px;
  margin-top: 25px;
  line-height: 150%;
}
@media (min-width: 900px) {
  .skills__content {
    margin-top: 60px;
  }
}
.skills__image {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .skills__image {
    margin-top: 0;
  }
}
.skills__text {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .skills__text {
    width: 600px;
    margin-top: 0;
  }
}

.recommend {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .recommend {
    padding-bottom: 110px;
  }
}
.recommend__person img {
  -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .learning {
    padding: 50px 0;
  }
}
.learning__boxes {
  margin-top: 40px;
}
.learning__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .learning__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.learning__title {
  background-color: #fff;
  padding: 5px 0;
  text-align: center;
  border: #105DCE solid 2px;
  color: #105DCE;
  font-size: 20px;
  font-weight: 600;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .learning__title {
    width: 360px;
    padding: 8px 0;
  }
}
.learning__text {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .learning__text {
    font-size: 24px;
  }
}

.reason {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .reason {
    padding: 110px 0;
  }
}
@media screen and (min-width: 768px) {
  .reason__title {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .reason__title img {
    width: 400px;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: inline-block;
  }
}
.reason__title-img {
  margin: 0 auto;
}
.reason__cards {
  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;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .reason__cards {
    gap: 40px;
  }
}
.reason__card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.entry-conditions {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .entry-conditions {
    padding-top: 110px;
  }
}
.entry-conditions__text {
  font-weight: 500;
  text-align: justify;
  max-width: 750px;
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .entry-conditions__text {
    font-size: 22px;
    line-height: 170%;
  }
}
.entry-conditions__text span {
  color: #105DCE;
  font-weight: 500;
  line-height: 150%;
}

.summary {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .summary {
    padding: 110px 0;
  }
}
.summary__content {
  margin-top: 60px;
}
.summary__title {
  background-color: #105DCE;
  padding: 5px 0;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  max-width: 400px;
  width: 150px;
}
.summary__text {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.qa {
  padding: 60px 0;
  background-color: #E2F3FF;
}
@media screen and (min-width: 768px) {
  .qa {
    padding: 110px 0;
  }
}
.qa__boxes {
  margin-top: 40px;
  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;
}
.qa__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .qa__box {
    gap: 20px;
  }
}
.message {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .message {
    padding: 110px 0;
  }
}
.message__text {
  font-size: 20px;
  font-weight: 600;
  color: #105DCE;
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .message__text {
    font-size: 28px;
    line-height: 150%;
  }
}

footer small {
  color: #fff;
  font-size: 10px;
}

.fa-chevron-down {
  color: #105DCE;
  margin-right: 8px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .fa-chevron-down {
    margin-right: 20px;
  }
}

.company {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .company {
    padding: 100px 0;
  }
}
.company__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 47px;
  margin: 50px auto;
  max-width: 530px;
}
@media screen and (min-width: 768px) {
  .company__boxes {
    gap: 20px;
  }
}
.company__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .company__box {
    gap: 46px;
  }
}
.company_q {
  font-weight: 700;
}
.company_a {
  font-weight: 400;
}
.company_q, .company_a {
  line-height: normal;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .company_q, .company_a {
    font-size: 18px;
  }
}

.footer {
  padding: 20px 0;
  background-color: #105DCE;
  text-align: center;
}
.footer__copyright {
  font-size: 9px;
  color: #fff;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 12px;
  }
}