@charset "UTF-8";
/* ------------------- Color ------------------- */
/* Gradation */
/* ------------------- Font ------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #44454C;
  background: #fff;
  line-height: 1.8;
}

.en {
  font-family: "Outfit", sans-serif;
}

/* ------------------- layout ------------------- */
a {
  display: block;
}

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

@media screen and (max-width: 768px) {
  .pc_br {
    display: none;
  }
}

.container {
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;
  max-width: 1240px;
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

/* -------------------   button ------------------- */
.button {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background-color: #3A4AFF;
  border-radius: 5px;
  border: 2px solid transparent;
  position: relative;
  transition: all 0.6s ease;
}

.btn_arrow {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  transition: all 0.6s ease;
}
@media screen and (max-width: 768px) {
  .btn_arrow {
    width: 24px;
    height: 24px;
    right: 15px;
  }
}

.btn_arrow::after,
.btn_arrow::before {
  transition: all 0.6s ease;
}

.btn_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 48%;
  width: 10px;
  height: 2px;
  background-color: #3A4AFF;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: right 0.3s;
}

.btn_arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #3A4AFF;
  border-right: 2px solid #3A4AFF;
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn_arrow::after,
.btn_arrow::before {
  transition: all 0.3s;
}

.button:hover .btn_arrow {
  right: 18px;
  background-color: #3A4AFF;
}

.button:hover {
  background-color: #fff;
  color: #3A4AFF;
  border: #3A4AFF 2px solid;
}

.button:hover .btn_arrow::after {
  background-color: #fff;
}

.button:hover .btn_arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

/* ------------------- fade-in ------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------- Heading ------------------- */
.subsidy_heading {
  text-align: center;
  position: relative;
}
.subsidy_heading h2 {
  font-size: 42px;
  font-weight: 700;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .subsidy_heading h2 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}
.subsidy_heading .en {
  font-size: 150px;
  font-weight: 500;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .subsidy_heading .en {
    font-size: 90px;
  }
}

.heading_year {
  padding: 8px 15px 10px;
  border-radius: 10px;
  line-height: 1;
  letter-spacing: 0.05rem;
  border: solid 2px #fff;
  font-size: 20px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  margin-top: 5px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .heading_year {
    padding: 6px 8px 8px;
    font-size: 16px;
    margin: 0 auto 5px;
  }
}
.heading_year span {
  font-size: 30px;
  padding-right: 1px;
}
@media screen and (max-width: 768px) {
  .heading_year span {
    font-size: 24px;
  }
}
.heading_year--blue {
  border: solid 2px #333B9D;
}

/* ------------------- Header ------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  transition: all 0.3s ease;
}
.header__logo {
  width: 219px;
  margin-right: 8vw;
  transition: opacity 0.3s ease;
}
.header__logo:hover {
  opacity: 0.6;
}
.header__inner {
  padding: 30px;
  display: flex;
  justify-content: space-between;
}
.header__nav {
  display: flex;
}
.header__list {
  display: flex;
  font-size: clamp(12px, 1.04166vw, 15px);
}
.header__list li {
  font-weight: 500;
}
.header__menu {
  padding-left: 2.08vw;
  transition: opacity 0.3s ease;
}
.header__menu:hover {
  opacity: 0.6;
}
.header__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: block;
    background-color: #3A4AFF;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 30px auto;
    font-size: 16px;
    text-align: center;
    max-width: 80%;
    font-weight: 600;
  }
}
.header__toggle {
  display: none;
}
.header__title {
  display: none;
}
.header.scrolled {
  background-color: #fff;
}
.header.scrolled .header__inner {
  padding: 15px 30px;
}
.header.scrolled .header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 174px;
}
.header.scrolled .header__list {
  align-items: center;
}
.header.scrolled .header__btn {
  display: block;
  background-color: #3A4AFF;
  color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
  margin-left: 2.08vw;
  font-weight: 600;
  border: transparent 2px solid;
  font-size: clamp(12px, 1.04166vw, 17px);
  transition: all 0.6s ease;
}
@media screen and (max-width: 768px) {
  .header.scrolled .header__btn {
    display: none;
  }
}
.header.scrolled .header__btn:hover {
  background-color: #fff;
  color: #3A4AFF;
  border: #3A4AFF 2px solid;
}
@media screen and (max-width: 768px) {
  .header {
    background-color: #ffffff;
  }
  .header__inner {
    padding: 15px 20px;
    align-items: center;
  }
  .header__logo {
    width: 128px;
    margin-right: 0;
  }
  .header__toggle {
    display: block;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
  }
  .header__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #44454C;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  .header__toggle span:nth-child(1) {
    top: 0;
  }
  .header__toggle span:nth-child(2) {
    top: 10px;
  }
  .header__toggle span:nth-child(3) {
    top: 20px;
  }
  .header__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .header__toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  .header__title {
    display: inline-block;
    background: linear-gradient(90deg, #575EE5 0%, #0083EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    padding-left: 20px;
  }
  .header__nav {
    display: block;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding-bottom: 20px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }
  .header__nav.is-active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .header__list {
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .header__menu {
    width: calc(100% - 40px);
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    font-weight: 600;
  }
  .header__arrow {
    position: relative;
    display: block;
    width: 20px;
    height: 1px;
    background-color: #44454C;
  }
  .header__arrow::before, .header__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 1px;
    background-color: #44454C;
    transform-origin: right center;
  }
  .header__arrow::before {
    transform: translateY(-50%) rotate(45deg);
  }
  .header__arrow::after {
    transform: translateY(-50%) rotate(-45deg);
  }
}

/* ---------------- First View ---------------- */
.fv {
  background-image: url("../../images/mv_pc.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  background-color: #E5EEFC;
  width: 100%;
  position: relative;
  opacity: 0;
}
.fv__fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.fv__fade.show {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .fv {
    background-image: url("../../images/mv_sp.webp");
    background-size: cover;
  }
}
.fv p {
  font-weight: 600;
  font-size: clamp(16px, 1.25vw, 18px);
}
@media screen and (max-width: 768px) {
  .fv p {
    font-size: 15px;
    text-align: center;
    margin-top: 300px;
  }
}
.fv__container {
  max-height: 869px;
  padding: 140px 0 128px 7.29166vw;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .fv__container {
    width: 100%;
    padding: 50px 20px 30px;
    margin-top: 0;
    max-height: none;
  }
}
.fv__title {
  font-size: clamp(30px, 2.7777vw, 40px);
  font-weight: 700;
  color: #0083EF;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 20px;
    margin-top: 40px;
  }
}
.fv__title_storong {
  font-size: clamp(40px, 3.81944vw, 55px);
}
@media screen and (max-width: 768px) {
  .fv__title_storong {
    font-size: clamp(26px, 2.0833vw, 30px);
  }
}
.fv__title_times {
  font-size: clamp(36px, 3.47222vw, 50px);
  font-weight: 400;
  line-height: 0.7;
  padding: 0 2px;
  display: inline;
}
@media screen and (max-width: 768px) {
  .fv__title_times {
    font-size: 24px;
    padding: 0 4px;
  }
}
.fv__highlight {
  display: inline;
  padding: 10px 15px;
  background-color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.9;
  font-weight: 700;
  position: relative;
  background: linear-gradient(90deg, #0083EF, #575EE5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.fv__highlight--under {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .fv__highlight--under {
    padding: 0 10px !important;
    line-height: 1.5;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .fv__highlight {
    padding: 8px 10px 5px;
    line-height: 2;
    font-weight: 700;
  }
}
.fv__highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
.fv__subsidy {
  max-width: 523px;
  margin-top: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .fv__subsidy {
    max-width: 90vw;
    margin-top: 20px;
    margin-bottom: 24px;
  }
}
.fv__subsidy_title {
  color: #575EE5;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv__subsidy_title {
    font-size: 16px;
  }
}
.fv__subsidy_title::before, .fv__subsidy_title::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #575EE5;
  margin: 0 1em;
}
.fv__subsidy_list {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .fv__subsidy_list {
    gap: 2px;
  }
}
.fv__subsidy_item {
  color: #5865E7;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 5px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.5;
  outline: 1px solid #575EE5;
  outline-offset: -5px;
}
@media screen and (max-width: 768px) {
  .fv__subsidy_item {
    font-size: clamp(11px, 0.9027vw, 13px);
    padding: 3px;
    max-width: 100px;
  }
}
.fv__point {
  background: linear-gradient(90deg, #39A1F6, #16B3A1);
  width: 18.6111%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-10deg);
  border-radius: 100%;
  position: absolute;
  bottom: 80px;
  right: 6.94444vw;
}
@media screen and (max-width: 768px) {
  .fv__point {
    bottom: 350px;
    right: 10px;
    width: 149px;
  }
}
.fv__point p {
  transform: skewX(10deg);
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 1.66666vw, 24px);
  line-height: 1.8;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .fv__point p {
    margin: 0;
  }
}
.fv__btn {
  padding: 24px 90px;
  font-size: 28px;
  font-weight: 600;
  max-width: 456px;
}
@media screen and (max-width: 768px) {
  .fv__btn {
    width: 100%;
    font-size: 18px;
    padding: 10px 15px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
}
.fv__annotation {
  color: white;
  text-align: right;
}
.fv__line1 {
  width: 12.9861vw;
  max-width: 187px;
  position: absolute;
  top: 110px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fv__line1 {
    min-width: 100px;
    top: 40px;
    width: 20%;
  }
}
.fv__line2 {
  width: 27.0138vw;
  max-width: 389px;
  position: absolute;
  bottom: -200px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__line2 {
    min-width: 145px;
    bottom: -80px;
    width: 20%;
  }
}

.gradation_line {
  background: linear-gradient(to right, #E5EEFC, #6EA6F8);
  height: 26px;
  width: 100%;
  z-index: -1;
}

/* ---------------- Introduction ---------------- */
.introduction {
  background: linear-gradient(-90deg, #6EA5F8, #6EBEF8);
  color: #fff;
  position: relative;
  /*  そんなお悩みを抱える～ */
  /*  例えばこんなお悩みに～ */
}
.introduction__container {
  max-width: 1038px;
  z-index: 2;
  position: relative;
  padding-top: 100px;
  padding-bottom: 116px;
}
@media screen and (max-width: 768px) {
  .introduction__container {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
.introduction__title {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 48px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .introduction__title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.introduction__title strong {
  font-size: 44px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .introduction__title strong {
    font-size: 26px;
  }
}
.introduction__thought_flex {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .introduction__thought_flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: flex-end;
  }
}
.introduction__thought {
  background-color: #E5EEFC;
  color: #333B9D;
  font-weight: 700;
  text-align: center;
  border-radius: 20px;
  padding: 15px 20px;
  min-height: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .introduction__thought {
    border-radius: 10px;
    font-size: 14px;
    padding: 8px 12px;
    min-height: 90px;
    max-width: 100%;
  }
}
.introduction__illust {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .introduction__illust {
    width: 100%;
  }
  .introduction__illust:nth-child(3) {
    grid-column: 1/-1;
    justify-self: center;
  }
}
.introduction__people {
  width: 60%;
  min-width: 121px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .introduction__people {
    max-width: 140px;
  }
}
.introduction__point {
  background-color: #FFF2A9;
  border-radius: 20px;
  text-align: center;
  color: #333B9D;
  position: relative;
  margin-top: 60px;
  padding: 40px 20px 50px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .introduction__point {
    font-size: 14px;
    padding: 30px 20px 20px;
    margin-top: 40px;
  }
}
.introduction__point p {
  font-weight: 600;
}
.introduction__point h3 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05rem;
  line-height: 2.2;
  margin-top: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .introduction__point h3 {
    font-size: 16px;
    line-height: 2.3;
  }
}
.introduction__point h3 strong {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .introduction__point h3 strong {
    font-size: 22px;
  }
}
.introduction__point h3 span {
  background-color: #fff;
  padding: 0 10px;
  line-height: 1.5;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .introduction__point h3 span {
    padding: 0 8px;
    line-height: 1.6;
  }
}
.introduction__point_heading {
  background-color: #333B9D;
  color: #fff;
  display: inline-block;
  position: absolute;
  max-width: 438px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: clamp(16px, 1.52777vw, 22px);
  padding: 5px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .introduction__point_heading {
    font-size: clamp(13px, 1.1111vw, 16px);
    padding: 5px;
    width: 100%;
    max-width: 270px;
  }
}
.introduction__point_heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #333B9D transparent transparent transparent;
}
.introduction__example {
  background-image: linear-gradient(rgba(229, 238, 252, 0.9), rgba(229, 238, 252, 0.9)), url("../../images/case_backimg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #44454C;
  text-align: center;
  border-radius: 20px;
  margin-top: 80px;
  padding: 25px 30px 60px;
  outline: 1px solid #fff;
  outline-offset: -15px;
}
@media screen and (max-width: 768px) {
  .introduction__example {
    margin-top: 30px;
    outline-offset: -8px;
    padding: 30px 20px 40px;
  }
}
.introduction__example h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #333B9D;
}
@media screen and (max-width: 768px) {
  .introduction__example h3 {
    font-size: 16px;
  }
}
.introduction__example h3 strong {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .introduction__example h3 strong {
    font-size: 23px;
  }
}
.introduction__company_label {
  background-color: #333B9D;
  color: #fff;
  padding: 5px 0 5px 20px;
  font-weight: 700;
  max-width: 215px;
  margin: 30px auto 40px;
  transform: translateX(8px);
  border-radius: 5px;
  position: relative;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .introduction__company_label {
    max-width: 200px;
    margin: 30px auto 25px;
    left: 10px;
  }
}
.introduction__company_icon {
  width: 76px;
  border-radius: 100%;
  background-color: #fff;
  border: 2px solid #333B9D;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -50px;
  top: -22px;
}
@media screen and (max-width: 768px) {
  .introduction__company_icon {
    width: 57px;
    left: -40px;
    top: -11px;
  }
}
.introduction__company_icon img {
  width: 37px;
}
@media screen and (max-width: 768px) {
  .introduction__company_icon img {
    width: 27px;
  }
}
.introduction__case {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 916px;
  margin: 0 auto;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .introduction__case {
    display: block;
  }
}
.introduction__case h4 {
  font-size: 20px;
  color: #333B9D;
}
.introduction__case_arrow {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .introduction__case_arrow {
    transform: rotate(90deg);
    max-width: 24px;
    margin: 15px auto;
  }
}
.introduction__case_box {
  border: solid 1px #333B9D;
  display: block;
  border-radius: 10px;
  max-width: 360px;
  padding: 10px 30px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .introduction__case_box {
    max-width: 100%;
    padding: 15px 20px;
  }
}
.introduction__case_box h4 {
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid #333B9D;
}
@media screen and (max-width: 768px) {
  .introduction__case_box h4 {
    font-size: 16px;
  }
}
.introduction__case_p {
  text-align: left;
  font-weight: 700;
  margin-left: 5px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .introduction__case_p {
    font-size: 16px;
  }
}
.introduction__case_flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .introduction__case_flex {
    display: block;
  }
}
.introduction__case_flex h5 {
  background-color: #E5EEFC;
  padding: 4px 10px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .introduction__case_flex h5 {
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    padding: 5px 15px;
  }
}
.introduction__case_list {
  text-align: left;
  font-size: 16px;
  margin: 5px 0 5px 5px;
}
@media screen and (max-width: 768px) {
  .introduction__case_list {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
  }
}
.introduction__case_list li {
  text-align: left;
  font-weight: 600;
}
.introduction__case_list li::before {
  content: "■";
  color: #3886FF;
  font-size: 0.5em;
  margin-right: 0.8em;
  vertical-align: middle;
}
.introduction__case_point1 {
  font-weight: 700;
  font-size: 20px;
  color: #3A4AFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .introduction__case_point1 {
    font-size: 16px;
  }
}
.introduction__case_point2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .introduction__case_point2 {
    font-size: 16px;
    line-height: 1.5;
  }
}
.introduction__case_point2 strong {
  font-weight: 700;
  font-size: 24px;
  color: #3A4AFF;
}
@media screen and (max-width: 768px) {
  .introduction__case_point2 strong {
    font-size: 20px;
  }
}
.introduction__line1 {
  position: absolute;
  top: 35%;
  left: 0;
  width: 244px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .introduction__line1 {
    top: 28%;
    width: 100px;
  }
}
.introduction__line2 {
  position: absolute;
  top: 60%;
  right: 0;
  width: 244px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .introduction__line2 {
    top: 18%;
    width: 100px;
  }
}

/* ---------------- Flow ---------------- */
.flow {
  background-color: #E5EEFC;
  position: relative;
}
.flow__container {
  padding: 160px 20px 100px;
}
@media screen and (max-width: 768px) {
  .flow__container {
    padding: 140px 20px 80px;
  }
}
.flow__heading h2 {
  color: #3A4AFF;
}
.flow__heading .en {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .flow__heading p {
    text-align: left;
  }
}
.flow__heading_flex {
  display: flex;
}
.flow__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  list-style: none;
  margin-top: 140px;
}
.flow__list--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .flow__list--pc {
    display: none;
  }
  .flow__list--sp {
    display: block;
    max-width: 239px;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    position: relative !important;
  }
}
.flow__item {
  flex: 1;
  max-width: 239px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  padding: 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__item {
    max-width: 239px;
    width: 100%;
    margin: 80px auto 0;
  }
}
.flow__item_inner {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.flow__item_inner h3 {
  color: #3A4AFF;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 10px;
}
.flow__item_inner p {
  flex-grow: 1;
  text-align: left;
  margin: 0;
}
.flow__arrow {
  max-width: 33px;
  width: 2.29166vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.flow__number {
  background-color: #3A4AFF;
  color: hsl(0, 0%, 100%);
  position: absolute;
  top: -50px;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  font-size: 30px;
}

.slick-prev, .slick-next {
  display: none;
}

.prev-arrow,
.next-arrow {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  cursor: pointer;
}

.prev-arrow {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  z-index: 2;
}

.next-arrow {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  z-index: 2;
}

.flow__list--sp {
  overflow-x: visible;
}
.flow__list--sp .slick-slide {
  margin-inline: 30px;
}
.flow__list--sp .slick-list {
  margin: 0 -30px;
  overflow-x: hidden;
  overflow-y: visible;
}
.flow__list--sp .slick-track {
  overflow-x: hidden;
}

/* ---------------- Point ---------------- */
.point {
  background: linear-gradient(-90deg, #6EA5F8, #6EBEF8);
  position: relative;
}
.point__container {
  max-width: 1100px;
  padding: 160px 20px 42px;
  font-size: 15px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .point__container {
    max-width: 100%;
    padding: 120px 20px 80px;
  }
}
.point__heading {
  color: #fff;
  margin-bottom: 45px;
}
.point__heading .en {
  color: #5799F0;
}
.point__heading_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .point__heading_flex {
    display: block;
  }
}
.point__flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .point__flex {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
  }
}
.point__content {
  text-align: center;
}
.point__article {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 2.5%;
  width: 42%;
}
@media screen and (max-width: 768px) {
  .point__article {
    width: calc(100% - 40px);
    border-radius: 10px;
    padding: 25px 15px;
  }
}
.point__article h3 {
  font-weight: 700;
  font-size: clamp(30px, 2.64vw, 38px);
  text-align: center;
  margin: 20px 0;
  line-height: 1.3;
  color: #4D58DA;
}
@media screen and (max-width: 768px) {
  .point__article h3 {
    font-size: 24px;
  }
}
.point__article--mono h3 {
  color: #009890;
}
.point__article--shin h3 {
  color: #D7723C;
}
.point__article--syoryoku h3 {
  color: #CA56D0;
}
.point__attention {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 1.11vw, 18px);
  line-height: 1.5;
  color: #fff;
  background-color: #4D58DA;
  border-radius: 9999px;
  padding: 10px 30px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .point__attention {
    font-size: 14px;
    padding: 7px 15px;
  }
}
.point__attention::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #4D58DA transparent transparent transparent;
}
.point__attention--mono {
  background-color: #009890;
}
.point__attention--mono::after {
  border-color: #009890 transparent transparent transparent;
}
.point__attention--shin {
  background-color: #D7723C;
}
.point__attention--shin::after {
  border-color: #D7723C transparent transparent transparent;
}
.point__attention--syoryoku {
  background-color: #CA56D0;
}
.point__attention--syoryoku::after {
  border-color: #CA56D0 transparent transparent transparent;
}
.point__img {
  max-width: 220px;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .point__img {
    width: 170px;
  }
}
.point__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 10px;
}
.point__item p {
  font-weight: 600;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .point__item p {
    font-size: 14px;
  }
}
.point__item p strong {
  font-size: 24px;
  color: #3A4AFF;
  padding: 0 3px;
  display: inline-block;
  line-height: 1;
}
.point__item p strong span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .point__item p strong {
    font-size: 20px;
  }
}
.point__item--mono p strong {
  color: #009890;
}
.point__item--shin p strong {
  color: #D7723C;
}
.point__item--syoryoku p strong {
  color: #CA56D0;
}
.point__label {
  background-color: #4D58DA;
  color: #fff;
  border-radius: 5px;
  padding: 2px 0;
  font-size: 14px;
  width: 57px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .point__label {
    font-size: 12px;
    width: 52px;
    padding: 0;
  }
}
.point__label--mono {
  background-color: #009890;
}
.point__label--shin {
  background-color: #D7723C;
}
.point__label--syoryoku {
  background-color: #CA56D0;
}
.point__example {
  background-color: rgba(77, 88, 218, 0.1);
  border: solid 1px #4D58DA;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .point__example {
    font-size: 14px;
  }
}
.point__example--mono {
  background-color: rgba(0, 152, 144, 0.1);
  border: solid 1px #009890;
}
.point__example--shin {
  background-color: rgba(215, 114, 60, 0.1);
  border: solid 1px #D7723C;
}
.point__example--syoryoku {
  background-color: rgba(202, 86, 208, 0.1);
  border: solid 1px #CA56D0;
}
.point__example_title {
  text-align: center;
  color: #4D58DA;
  font-weight: 700;
}
.point__example_title--mono {
  color: #009890;
}
.point__example_title--shin {
  color: #D7723C;
}
.point__example_title--syoryoku {
  color: #CA56D0;
}
.point__example_list li {
  text-indent: -1em;
  margin-left: 1em;
}
.point__example_list li::before {
  content: "●";
  color: #4D58DA;
  font-size: 0.5em;
  margin-right: 0.8em;
  vertical-align: middle;
}
.point__example_list--mono li::before {
  color: #009890;
}
.point__example_list--shin li::before {
  color: #D7723C;
}
.point__example_list--syoryoku li::before {
  color: #CA56D0;
}
.point__line1 {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 267px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .point__line1 {
    width: 150px;
  }
}
.point__line2 {
  position: absolute;
  top: 2px;
  right: 0;
  width: 30%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .point__line2 {
    min-width: 90px;
    top: 0;
  }
}
.point__note {
  color: #ffffff;
  text-align: right;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.4;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .point__note {
    padding-bottom: 0;
  }
}

/* ---------------- Guide ---------------- */
.guide__heading {
  color: #333B9D;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .guide__heading {
    margin-bottom: 10px;
  }
}
.guide__heading .en {
  color: #E5EEFC;
}
.guide__container {
  padding: 160px 20px 100px;
}
@media screen and (max-width: 768px) {
  .guide__container {
    padding: 120px 20px 80px;
  }
}
.guide__center {
  text-align: center;
}
.guide__img {
  width: 12.5vw;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .guide__img {
    width: 100%;
  }
}
.guide__heading_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .guide__heading_flex {
    display: inline-block;
    z-index: 1;
  }
}
.guide__item {
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: 700;
  color: #fff;
  background-color: #4D58DA;
  padding: 20px 0;
  border-radius: 5px;
  margin: 16px clamp(5px, 1.11vw, 16px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide__item {
    line-height: 1.4;
  }
}
.guide__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #4D58DA transparent transparent transparent;
}
.guide__item--mono {
  background-color: #009890;
}
.guide__item--mono::after {
  border-color: #009890 transparent transparent transparent;
}
.guide__item--shin {
  background-color: #D7723C;
}
.guide__item--shin::after {
  border-color: #D7723C transparent transparent transparent;
}
.guide__item--syoryoku {
  background-color: #CA56D0;
}
.guide__item--syoryoku::after {
  border-color: #CA56D0 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .guide__table_pc {
    display: none;
  }
}
.guide__table_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .guide__table_sp {
    display: block;
  }
  .guide__table_sp--top {
    padding-top: 40px;
  }
}
.guide__table {
  font-size: clamp(13px, 1.11vw, 16px);
  margin: 0 auto;
}
.guide__table th {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  padding: 16px 24px 16px 0;
  width: 13.666vw;
}
@media screen and (max-width: 768px) {
  .guide__table th {
    width: 14vw;
    font-size: 13px;
  }
}
.guide__table tr {
  position: relative;
  z-index: 2;
}
.guide__table tr::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #9A9A9A;
  z-index: 3;
  pointer-events: none;
}
.guide__table td {
  border-right: solid 3px #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .guide table {
    border-collapse: collapse;
  }
  .guide tr {
    border-top: 1px solid #9A9A9A;
    position: relative;
    z-index: 3;
  }
  .guide tr:first-child {
    border-top: none;
  }
  .guide tr::after {
    content: none;
  }
  .guide td {
    border-right: solid 3px #fff;
    position: relative;
    z-index: 1;
  }
}
.guide__table_box {
  font-weight: 600;
  padding: 30px clamp(10px, 1.67vw, 24px);
  width: 18vw;
}
@media screen and (max-width: 768px) {
  .guide__table_box {
    width: 42vw;
  }
}
.guide__table_box strong {
  font-weight: 700;
  font-size: clamp(14px, 1.39vw, 20px);
}
.guide__table_box strong.large {
  font-size: clamp(18px, 2.08vw, 30px);
  padding: 0 5px;
}
.guide__table_box--it {
  background-color: rgba(77, 88, 218, 0.1);
}
.guide__table_box--it strong {
  color: #4D58DA;
}
.guide__table_box--mono {
  background-color: rgba(0, 152, 144, 0.1);
}
.guide__table_box--mono strong {
  color: #009890;
}
.guide__table_box--shin {
  background-color: rgba(215, 114, 60, 0.1);
}
.guide__table_box--shin strong {
  color: #D7723C;
}
.guide__table_box--syoryoku {
  background-color: rgba(202, 86, 208, 0.1);
}
.guide__table_box--syoryoku strong {
  color: #CA56D0;
}
.guide__table_list li {
  padding-left: 20px;
  font-weight: 600;
  text-indent: -1em;
}
.guide__table_list li::before {
  content: "●";
  color: #4D58DA;
  font-size: 0.5em;
  margin-right: 0.8em;
  vertical-align: middle;
}
.guide__table_list--mono li::before {
  color: #009890;
}
.guide__table_list--shin li::before {
  color: #D7723C;
}
.guide__table_list--syoryoku li::before {
  color: #CA56D0;
}
.guide__text {
  text-align: right;
  margin-top: 20px;
  font-size: clamp(13px, 1.11vw, 16px);
}

/* ---------------- Contact ---------------- */
.contact {
  background: linear-gradient(-90deg, #6EA5F8, #6EBEF8);
  color: #fff;
  position: relative;
}
.contact__container {
  padding-bottom: 110px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact__container {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.contact__text {
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .contact__text {
    text-align: center;
  }
}
.contact__text h3 {
  font-weight: 700;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .contact__text h3 {
    font-size: 18px;
  }
}
.contact__text h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .contact__text h2 {
    font-size: 25px;
  }
}
.contact__flex {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .contact__flex {
    flex-direction: column;
    flex-direction: column-reverse;
    gap: 0;
    align-items: center;
  }
}
.contact__illust {
  position: relative;
}
.contact__img {
  width: 242px;
}
@media screen and (max-width: 768px) {
  .contact__img {
    width: 180px;
  }
}
.contact__badge {
  width: 110px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 190px;
}
@media screen and (max-width: 768px) {
  .contact__badge {
    width: 84px;
    top: 0;
    left: 80%;
  }
}
.contact__box {
  background-color: #fff;
  color: #333B9D;
  border-radius: 20px;
  text-align: center;
  padding: 30px 0 40px;
  max-width: 962px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__box {
    max-width: 100%;
    padding: 30px 20px;
  }
}
.contact__box p {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .contact__box p {
    font-size: 16px;
  }
}
.contact__btn {
  padding: 24px 90px;
  font-size: 28px;
  font-weight: 600;
  max-width: 456px;
}
@media screen and (max-width: 768px) {
  .contact__btn {
    z-index: 5;
    font-size: 16px;
    line-height: 1.6;
    padding: 15px;
    width: 100%;
    max-width: 267px;
    box-sizing: border-box;
  }
}
.contact__line1 {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 266px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact__line1 {
    width: 150px;
    bottom: 5px;
  }
}
.contact__line2 {
  position: absolute;
  top: 10%;
  right: 0;
  width: 256px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact__line2 {
    width: 100px;
    top: 5px;
  }
}

/* ---------------- TOPに戻る ---------------- */
.to_top {
  position: fixed;
  right: 40px;
  bottom: 50px;
  background: rgba(255, 255, 255, 0.7);
  width: 68px;
  height: 68px;
  color: #333B9D;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .to_top {
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 50px;
    font-size: 12px;
  }
}

.to_top:hover {
  opacity: 0.7;
}

.to_top_arrow {
  position: relative;
  width: 2px;
  height: 18px;
  background: #333B9D;
  margin-top: 5px;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .to_top_arrow {
    height: 14px;
  }
}

.to_top_arrow::before {
  content: "";
  position: absolute;
  top: 2;
  left: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333B9D;
  border-left: 2px solid #333B9D;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .to_top_arrow::before {
    width: 6px;
    height: 6px;
    left: -3px;
  }
}
/*# sourceMappingURL=style.css.map */
