/* =========================================

break point

========================================= */
html, body {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #222222;
}

html {
  font-size: 62.5%;
}

figure img {
  width: 100%;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #07225E;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: #4078B9;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 4px;
  border-bottom: 1px solid #CCCCCC;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .section-subtitle {
    margin-bottom: 12px;
  }
}
.section-subtitle span {
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-right: 8px;
}

.section-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #222222;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 1.4rem;
    text-align: left;
  }
}
.text.strong {
  font-weight: 700;
}
.text.strong-line {
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.text.strong-line::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 11px;
  background-color: #D0EEFE;
}
@media screen and (max-width: 767px) {
  .text.strong-line::after {
    display: none;
  }
}

.copy {
  font-size: 2.4rem;
  font-weight: 700;
  color: #07225E;
}
@media screen and (max-width: 767px) {
  .copy {
    font-size: 2rem;
  }
}

.insight {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .insight {
    height: 56px;
  }
}
.insight__title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #15539B;
  color: #FFFFFF;
  min-width: 94px;
  padding: 8px 12px 8px 16px;
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 767px) {
  .insight__title {
    border-radius: 0;
  }
}
.insight__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  color: #1D2F4E;
  background-color: #ECF5FF;
  text-align: left;
  border: 1px solid #15539B;
  border-radius: 0 50px 50px 0;
  padding: 8px 24px 8px 12px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .insight__text {
    border-radius: 0;
  }
}

@media screen and (min-width: 1200px) {
  .xl {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .xl {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .xl-under {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .xl-under {
    display: block;
  }
}

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

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

@media screen and (min-width: 768px) {
  .cta__bottom {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cta__bottom {
    background-color: #07225E;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 16px 20px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }
  .cta__bottom.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}
.cta__bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  min-width: 280px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta__bottom-btn.contact {
  background-color: #FFFFFF;
  color: #1D2F4E;
}
@media screen and (max-width: 767px) {
  .cta__bottom-btn.contact {
    border: 1px solid #15539B;
  }
}
.cta__bottom-btn.download {
  background-color: #15539B;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.clients {
  padding: 12px 0;
}
.clients__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.clients__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4078B9;
  line-height: 1.4;
}
.clients__line {
  display: block;
  width: 52px;
  height: 1px;
  background-color: #CCCCCC;
}
.clients__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 30px;
}
@media screen and (max-width: 767px) {
  .clients__list {
    padding: 8px 0;
    gap: 8px 16px;
  }
}
.clients__item {
  display: block;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.clients__item.ana {
  height: 20px;
}
.clients__item.bridgestone {
  height: 17px;
}
.clients__item.jgc {
  height: 20px;
}
.clients__item.advantest {
  height: 17px;
}
.clients__item.honda {
  height: 31px;
}
.clients__item.yamato {
  height: 20px;
}
.clients__item.recruit {
  height: 20px;
}
.clients__item.secom {
  height: 20px;
}
.clients__item.onet {
  height: 20px;
}
.clients__item.duplo {
  height: 20px;
}
.clients__item.jpx {
  height: 30px;
}
.clients__item.groovex {
  height: 26px;
}
.clients__item.sometiong {
  height: 26px;
}
.clients__item.komatsu {
  height: 20px;
}
.clients__item.tokyu {
  height: 20px;
}
.clients__item.staffservice {
  height: 18px;
}

.voice {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  background-color: #FAFAFA;
}
.voice__track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: -moz-max-content;
  width: max-content;
  animation: voice-scroll 90s linear infinite;
}
@media screen and (max-width: 767px) {
  .voice__track {
    gap: 12px;
    animation-duration: 60s;
    min-height: 150px;
  }
}
.voice__group {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .voice__group {
    gap: 12px;
  }
}
.voice__grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .voice__grid {
    gap: 0px;
    justify-content: space-between;
  }
}
.voice__row {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .voice__row {
    gap: 12px;
  }
}
.voice__row:nth-child(1) > .voice__card:nth-child(1) {
  width: 220px;
  min-height: 63px;
}
.voice__row:nth-child(1) > .voice__card:nth-child(2) {
  width: 240px;
  min-height: 63px;
}
.voice__row:nth-child(2) > .voice__card:nth-child(1) {
  width: 260px;
}
.voice__row:nth-child(2) > .voice__card:nth-child(2) {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .voice__row:nth-child(1) > .voice__card:nth-child(1) {
    width: 190px;
  }
  .voice__row:nth-child(1) > .voice__card:nth-child(2) {
    width: 170px;
  }
  .voice__row:nth-child(2) > .voice__card:nth-child(1) {
    width: 200px;
  }
  .voice__row:nth-child(2) > .voice__card:nth-child(2) {
    width: 160px;
  }
}
.voice__card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
}
@media screen and (max-width: 767px) {
  .voice__card {
    padding: 8px 10px;
  }
}
.voice__card--lg {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .voice__card--lg {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .voice__card_sp {
    padding: 23px 10px;
  }
}
.voice__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .voice__icon {
    width: 32px;
    height: 32px;
  }
}
.voice__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.voice__quote {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #07225E;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .voice__quote {
    font-size: 1.1rem;
  }
}
.voice__name {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  color: #07225E;
  line-height: 1.3;
}

@keyframes voice-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 60px;
  padding: 20px 20px 0;
}
.header__logo {
  transition: 0.3s ease;
}
.header__logo:hover {
  opacity: 0.7;
}

.fv {
  background: linear-gradient(90deg, #07225E 0%, #2563C8 100%);
  position: relative;
  padding-top: 100px;
  padding-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 72px;
    padding-bottom: 24px;
  }
}
.fv__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
}
.fv__line img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.fv__inner {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.fv__inner-right {
  text-align: center;
  margin-top: -40px;
}
.fv__inner-right .fv__award {
  max-width: 330px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__inner-left {
    width: 100%;
  }
}
.fv__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-left: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 1.6rem;
  }
}
.fv__title span {
  color: #FFD459;
  margin-top: 4px;
  display: inline-block;
}
.fv__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  width: 2px;
  height: 100%;
  background-color: #FFFFFF;
  transform: rotate(-10deg);
}
.fv__title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 2px;
  height: 100%;
  background-color: #FFFFFF;
  transform: rotate(10deg);
}
.fv__main-text {
  margin-top: 20px;
}
.fv__main-text-item01, .fv__main-text-item02 {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #1D2F4E;
  background: #FFFFFF;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 10px;
  margin-bottom: 12px;
  line-height: 1;
}
@media screen and (max-width: 1211px) {
  .fv__main-text-item01, .fv__main-text-item02 {
    font-size: 2.2rem;
    padding: 10px;
  }
}
.fv__main-text-item03 {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .fv__main-text-item03 {
    font-size: 2.2rem;
  }
}
.fv__sub-text {
  margin-top: 24px;
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .fv__sub-text {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.fv__cover {
  clip-path: polygon(120% 0, 100% 0, 100% 100%, -100% 230%);
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fv__cover {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 230%);
    opacity: 0.1;
  }
}
.fv__data {
  max-width: 500px;
  aspect-ratio: 472/352;
  margin: 24px 0;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
.fv__data.sp {
  margin: 24px auto 0;
  max-width: 400px;
}
.fv__cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .fv__cta {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.fv__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  min-width: 280px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (min-width: 901px) and (max-width: 1065px) {
  .fv__cta-btn {
    min-width: 210px;
    padding: 16px;
  }
}
@media screen and (max-width: 767px) {
  .fv__cta-btn {
    padding: 16px;
  }
}
.fv__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.fv__cta-btn.contact {
  background-color: #FFFFFF;
  color: #1D2F4E;
}
@media screen and (max-width: 767px) {
  .fv__cta-btn.contact {
    border: 1px solid #15539B;
  }
}
.fv__cta-btn.download {
  background-color: #15539B;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.reason {
  padding: 60px 0 80px;
  background-color: #F5F8FF;
}
@media screen and (max-width: 1199px) {
  .reason {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 40px 0;
  }
}
.reason .container {
  padding: 0 40px;
}
@media screen and (max-width: 1199px) {
  .reason .container {
    padding: 0 20px;
  }
}
.reason__inner {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1199px) {
  .reason__inner {
    flex-direction: column;
    text-align: center;
  }
}
.reason__inner-left {
  width: calc(45% - 30px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  .reason__inner-left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .reason__inner-left {
    gap: 24px;
  }
}
.reason__inner-left .section-title-wrapper {
  align-items: inherit;
}
@media screen and (max-width: 1199px) {
  .reason__inner-left .section-title-wrapper {
    align-items: center;
    text-align: center;
  }
}
.reason__inner-right {
  width: calc(55% - 30px);
}
@media screen and (max-width: 1199px) {
  .reason__inner-right {
    width: 100%;
  }
}
.reason__picture {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .reason__picture {
    width: 540px;
    max-width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .reason__picture {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .reason .insight {
    flex-direction: column;
    justify-content: center;
  }
}

.difficulty {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .difficulty {
    padding: 40px 0 24px 0;
  }
}
.difficulty .container {
  max-width: 1200px;
}
.difficulty__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .difficulty__inner {
    gap: 24px;
  }
}
.difficulty__picture {
  margin: 0 auto;
  width: 100%;
  max-width: 880px;
}
@media screen and (max-width: 1199px) {
  .difficulty__picture {
    max-width: 640px;
  }
}
.difficulty__picture.size-l {
  max-width: 1160px;
}
@media screen and (max-width: 1199px) {
  .difficulty__picture.size-l {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .difficulty .insight {
    height: 70px;
  }
  .difficulty .insight__title {
    border-radius: 50px 0 0 50px;
  }
  .difficulty .insight__text {
    border-radius: 0 50px 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .difficulty .insight {
    justify-content: center;
    flex-direction: column;
  }
}

.about {
  padding: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 40px 20px;
  }
}
.about__line {
  display: block;
}
.about__line svg {
  width: 100%;
  height: auto;
  display: block;
}
.about .container {
  background-color: #F5F8FF;
  border: 1px solid #DDDDDD;
  border-radius: 20px;
  position: relative;
  max-width: 1160px;
}
.about .container::before {
  content: "";
  position: absolute;
  top: -37.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 37.5px;
  background-color: #DDDDDD;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.about .container::after {
  content: "";
  position: absolute;
  top: -36.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 98px;
  height: 36.5px;
  background-color: #F5F8FF;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .about__inner {
    padding: 24px 0;
    gap: 24px;
  }
}
.about__inner .text {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__inner .text {
    text-align: left;
  }
}
.about__num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.about__num.num01 {
  width: 81px;
}
.about__num.num02, .about__num.num03 {
  width: 100px;
}
.about__header {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 975px) {
  .about__header {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .about__header {
    flex-direction: column;
  }
}
.about__header-picture {
  padding-right: 20px;
  border-right: 1px solid #CCCCCC;
}
.about__header-title {
  font-size: 2rem;
  font-weight: 700;
  color: #07225E;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about__header-title {
    font-size: 1.8rem;
  }
}
.about__features {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .about__features {
    flex-direction: column;
    gap: 36px;
  }
}
.about__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc((100% - 32px) / 3);
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__feature {
    width: 100%;
    padding: 20px;
  }
}
.about__feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #CCCCCC;
}
@media screen and (max-width: 767px) {
  .about__feature-header {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .about__feature-header img {
    width: 32px;
    height: 32px;
  }
}
.about__feature-title {
  font-size: 2rem;
  font-weight: 700;
  color: #07225E;
}
@media screen and (max-width: 767px) {
  .about__feature-title {
    font-size: 1.8rem;
  }
}
.about__feature-text {
  font-size: 1.4rem;
  color: #222222;
  line-height: 1.5;
}
.about__feature-text span {
  font-weight: 700;
}

.point {
  background-color: #FAFAFA;
}
.point .text span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #07225E;
}
@media screen and (max-width: 767px) {
  .point .text span {
    font-size: 1.4rem;
  }
}
.point .section-title {
  padding-bottom: 24px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point .section-title {
    text-align: center;
    margin-bottom: 24px;
  }
}
.point .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 4px;
  background-color: #4078B9;
}
.point .section-title span {
  font-size: 5.4rem;
}
@media screen and (max-width: 767px) {
  .point .section-title span {
    font-size: 2.8rem;
  }
}
.point .text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point .text {
    text-align: left;
  }
}
.point__line {
  width: 100%;
  margin-top: -80px;
}
.point__line svg {
  width: 100%;
}
.point__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .point__inner {
    padding: 40px 0;
  }
}
.point__list {
  width: 100%;
  background-color: #FFFFFF;
  margin-top: 48px;
  margin-bottom: 48px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .point__list {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.point__item {
  display: flex;
  justify-content: space-between;
  padding: 24px 40px;
}
@media screen and (max-width: 767px) {
  .point__item {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }
}
.point__item:not(:last-child) {
  border-bottom: 1px dashed #DDDDDD;
}
.point__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #15539B;
  flex: 0.45;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .point__item-header {
    font-size: 1.8rem;
    gap: 12px;
  }
}
.point__item-header span {
  font-family: "Barlow", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: #4078B9;
  opacity: 0.1;
}
@media screen and (min-width: 768px) {
  .point__item-header span {
    min-width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .point__item-header span {
    font-size: 2.2rem;
    min-width: 26px;
  }
}
.point__item-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0.6;
}
@media screen and (max-width: 767px) {
  .point__item-content {
    flex: inherit;
    align-items: flex-start;
  }
  .point__item-content img {
    width: 22px;
    min-width: 22px;
    height: auto;
  }
}
.point__item-content span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .point__item-content span {
    font-size: 1.6rem;
  }
}

.bg-line01 {
  width: 100%;
}

.bg-line02 {
  width: 100%;
}

.authentication {
  background-color: #F5F8FF;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .authentication {
    padding-bottom: 0;
  }
}
.authentication .section-title {
  text-align: center;
}
.authentication .text-wrapper {
  text-align: center;
}
.authentication .text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .authentication .text {
    text-align: left;
  }
}
.authentication__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .authentication__inner {
    gap: 24px;
    padding: 40px 0;
  }
}
.authentication__picture figure img {
  max-width: 866px;
}
.authentication__picture-header {
  font-size: 2.2rem;
  font-weight: 700;
  background-color: #15539B;
  color: #FFFFFF;
  padding: 8px 40px;
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto;
}
@media screen and (max-width: 767px) {
  .authentication__picture-header {
    font-size: 2rem;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 360px) {
  .authentication__picture-header {
    font-size: 1.6rem;
  }
}
.authentication__period {
  text-align: center;
  padding-bottom: 24px;
}
.authentication__period-header {
  font-size: 2.4rem;
  font-weight: 700;
  color: #15539B;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .authentication__period-header {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.authentication__period .text {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.authentication__period-picture {
  max-width: 538px;
}
.authentication .blue-arrow {
  width: 46px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 767px) {
  .authentication .blue-arrow {
    width: 32px;
  }
}
.authentication .copy {
  padding-bottom: 32px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .authentication .copy {
    padding-bottom: 24px;
  }
}
.authentication .copy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 4px;
  background-color: #4078B9;
}
.authentication__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .authentication__list {
    gap: 12px;
  }
}
.authentication__item {
  display: flex;
  align-items: center;
  gap: 24px;
  width: calc((100% - 24px) / 2);
  padding: 24px 46px 24px 16px;
  background-color: #FFFFFF;
  border: 1px solid #D8D6CF;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .authentication__item {
    width: 100%;
    padding: 12px 16px 20px 16px;
    gap: 12px;
    flex-direction: row-reverse;
  }
}
.authentication__item .item-img {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .authentication__item .item-img {
    width: 42px;
    min-width: 42px;
    height: 42px;
    margin-left: auto;
  }
}
.authentication__item-text {
  position: relative;
  text-align: left;
  flex: 1;
}
.authentication__item-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1F53A5;
  padding: 10px 0;
  line-height: 1.4;
  border-bottom: 1px dashed #DDDDDD;
}
@media screen and (max-width: 767px) {
  .authentication__item-text h3 {
    font-size: 1.8rem;
    padding: 4px 0 8px;
  }
}
.authentication__item-text .text {
  margin-top: 10px;
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .authentication__item-text .text {
    margin-top: 8px;
  }
}
.authentication__item-label {
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(90deg, #2563C8 0%, #07225E 100%);
  padding: 8px 12px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 60px;
}
@media screen and (max-width: 767px) {
  .authentication__item-label {
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .authentication__item-label-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
  }
}
.authentication__item-num {
  font-family: "Barlow", sans-serif;
  font-size: 9.8rem;
  font-weight: 700;
  color: #4078B9;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .authentication__item-num {
    font-size: 4.6rem;
    position: inherit;
    top: inherit;
    right: inherit;
    transform: inherit;
    line-height: 1;
  }
}

.case {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .case {
    padding: 40px 0;
  }
}
.case .section-title {
  text-align: center;
}
.case__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .case__list {
    flex-direction: column;
  }
}
.case__item {
  width: calc((100% - 48px) / 3);
  background-color: #FFFFFF;
  padding: 24px;
  border: 1px solid #D8D6CF;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 767px) {
  .case__item {
    width: 100%;
    padding: 20px;
  }
}
.case__item-header {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222222;
}
.case__item-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(90deg, #2563C8 0%, #07225E 100%);
  padding: 8px 12px;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  border-radius: 60px;
  margin-right: 8px;
}
.case__item-picture {
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.case__item-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed #DDDDDD;
}
.case__item .text {
  font-size: 1.4rem;
  margin-top: 8px;
}

.cta {
  padding: 48px 20px;
  background: linear-gradient(90deg, #2563C8 0%, #07225E 100%);
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 40px 20px;
  }
}
.cta .container {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .cta .container {
    padding: 32px 16px;
  }
}
.cta__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding-bottom: 32px;
  border-bottom: 1px dashed #DDDDDD;
}
.cta__inner .text {
  margin-top: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .cta__inner .text {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cta__inner .text {
    text-align: left;
  }
}
.cta__inner .text span {
  font-weight: 700;
}
.cta__title {
  color: #07225E;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 2rem;
  }
}
.cta__award {
  max-width: 404px;
  margin-right: auto;
}
.cta__graph {
  width: 470px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 47/35;
}
.cta__graph.xl-under {
  margin-bottom: 16px;
}
.cta__btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  .cta__btn-wrapper {
    padding-top: 24px;
  }
}
.cta__btn-wrapper .copy {
  color: #07225E;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cta__btn-box {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .cta__btn-box {
    flex-direction: column;
    gap: 12px;
  }
}
.cta__download {
  background: linear-gradient(90deg, #2563C8 0%, #07225E 100%);
}
.cta__download .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 60px;
}
@media screen and (max-width: 1199px) {
  .cta__download .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cta__download .container {
    padding: 32px 20px;
  }
}
.cta__download .container p {
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .cta__download .container p {
    font-size: 1.4rem;
  }
}
.cta__download .container p span {
  font-weight: 700;
}
.cta__download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  position: relative;
  background-color: #FFFFFF;
  color: #15539B;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 767px) {
  .cta__download-btn {
    width: 100%;
    min-width: inherit;
    padding: 16px;
    font-size: 1.4rem;
  }
}
.cta__download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .cta__download_fixed {
    display: none;
  }
}
.cta__download_fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 100%);
  z-index: 9999;
}
.cta__download_fixed .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 10px 60px;
}
@media screen and (max-width: 1199px) {
  .cta__download_fixed .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cta__download_fixed .container {
    padding: 32px 20px;
  }
}
.cta__download_fixed .container p {
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .cta__download_fixed .container p {
    font-size: 1.4rem;
  }
}
.cta__download_fixed .container p span {
  font-weight: 700;
}
.cta__download_fixed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  position: relative;
  background-color: #FFFFFF;
  color: #1a1a1a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 767px) {
  .cta__download_fixed-btn {
    width: 100%;
    min-width: inherit;
    padding: 16px;
    font-size: 1.4rem;
  }
}
.cta__download_fixed-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.cta__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  position: relative;
  background: linear-gradient(90deg, #2563C8 0%, #07225E 100%);
  color: #FFFFFF;
  margin-top: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 767px) {
  .cta__contact-btn {
    width: 100%;
    min-width: inherit;
    padding: 16px;
    font-size: 1.4rem;
  }
}
.cta__contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1199px) {
  .cta.cta01 .cta__inner {
    padding-bottom: 8px;
  }
  .cta.cta01 .cta__inner-left {
    text-align: center;
  }
}
.cta.cta02 .container {
  padding: 32px 16px;
}
.cta.cta02 .cta__btn-wrapper {
  padding-top: 0;
}
.cta.cta02 .cta__btn-wrapper .text {
  margin-top: 4px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .cta.cta02 .cta__btn-wrapper .text {
    text-align: center;
  }
}
.cta.cta02 .cta__contact-btn {
  margin-top: 0;
}
.cta.cta02 .cta__download-btn {
  border-radius: 4px;
  border: 1px solid #15539B;
}
@media screen and (max-width: 767px) {
  .cta.cta02 .cta__download-btn {
    font-size: 1.4rem;
  }
}

.faq {
  padding: 60px 0;
  background-color: #F5F8FF;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}
.faq .section-subtitle {
  margin: 0 auto 40px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}
.faq__item {
  border-radius: 4px;
  overflow: hidden;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 14px 24px;
  gap: 16px;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 12px 16px;
  }
}
.faq__question:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.faq__q {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #4078B9;
  flex-shrink: 0;
  line-height: 1.5;
}
.faq__text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: #07225E;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq__text {
    font-size: 1.4rem;
  }
}
.faq__toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #4078B9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__toggle {
  transform: rotate(180deg);
}
.faq__answer {
  display: none;
}
.faq__answer p {
  padding: 24px;
  font-size: 1.6rem;
  color: #222222;
  line-height: 1.4;
}
.faq__item.is-open .faq__answer {
  display: block;
}

.footer {
  background-color: #1A1A1A;
  padding: 24px 0 16px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }
}
.footer__nav {
  margin-bottom: 24px;
}
.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.footer__nav-item {
  color: #FAFAF7;
  font-size: 1.2rem;
}
.footer__nav-item a {
  transition: 0.3s ease;
}
.footer__nav-item a:hover {
  opacity: 0.7;
}
.footer__copyright {
  color: #AAA;
  font-size: 1rem;
  text-align: center;
}
.page-head {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #07225E 0%, #2563C8 100%);
  padding: 140px 0 64px;
}
@media screen and (max-width: 767px) {
  .page-head {
    padding: 96px 0 40px;
  }
}
.page-head__line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.page-head__line img {
  width: 100%;
  height: 100%;
}
.page-head .container {
  position: relative;
  z-index: 1;
}
.page-head__subtitle {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9DBCE6;
  margin-bottom: 12px;
}
.page-head__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .page-head__title {
    font-size: 2.4rem;
  }
}
.page-head__lead {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .page-head__lead {
    margin-top: 16px;
    font-size: 1.4rem;
  }
}
.contact-page {
  background-color: #F4F7FB;
  padding: 64px 0 96px;
}
@media screen and (max-width: 767px) {
  .contact-page {
    padding: 40px 0 64px;
  }
}
.contact-page__card {
  max-width: 880px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 48px 40px;
}
@media screen and (max-width: 767px) {
  .contact-page__card {
    padding: 24px 16px;
    border-radius: 12px;
  }
}
.contact-page__note {
  margin-bottom: 32px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #222222;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-page__note {
    margin-bottom: 24px;
    font-size: 1.3rem;
    text-align: left;
  }
}
.contact-page__note a {
  color: #15539B;
  font-weight: 700;
  text-decoration: underline;
}
.contact-page__form {
  width: 100%;
}
.contact-page__iframe {
  display: block;
  width: 100%;
  min-height: 1500px;
  border: 0;
}
@media screen and (max-width: 767px) {
  .contact-page__iframe {
    min-height: 2200px;
  }
}
.contact-page__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
  padding: 24px;
  border: 2px dashed #C5D4E8;
  border-radius: 12px;
  background-color: #F4F7FB;
  color: #7089A8;
  font-size: 1.4rem;
  text-align: center;
}
.thanks {
  background-color: #F4F7FB;
  padding: 64px 0 96px;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding: 40px 0 64px;
  }
}
.thanks__card {
  max-width: 720px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 56px 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__card {
    padding: 40px 20px;
    border-radius: 12px;
  }
}
.thanks__icon {
  display: block;
  margin: 0 auto 24px;
}
.thanks__text {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 1.4rem;
    text-align: left;
  }
}
.thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
  margin-top: 40px;
  padding: 16px 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2563C8 0%, #07225E 100%);
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 767px) {
  .thanks__btn {
    width: 100%;
    min-width: inherit;
    margin-top: 32px;
    padding: 16px;
    font-size: 1.4rem;
  }
}
.thanks__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}/*# sourceMappingURL=style.css.map */