@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica Neue, Helvetica, Arial, 游ゴシック, YuGothic, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  color: #0E202E;
  line-height: 160%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

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

.nowrap {
  white-space: nowrap;
}

.header {
  padding: 16px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}
.header__container {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  height: 18px;
  width: auto;
}
.header__cta {
  background: #0037A2;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 999px;
  border: solid 2px #0037A2;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.header__cta:hover {
  color: #0037A2;
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .header__container {
    padding: 0 40px;
  }
  .header__logo {
    height: 25px;
    width: auto;
  }
  .header__cta {
    padding: 12px 32px;
    font-size: 20px;
  }
}

.hero {
  background-image: url(../../assets/images/bg-kv-sp.svg), var(--ddd, linear-gradient(110deg, #0075FF 12.42%, #72CCFF 88.14%));
  background-size: 485px 509px, cover;
  background-position: top 50px center, center;
  background-repeat: no-repeat;
  padding: 80px 0 60px;
  position: relative;
}
.hero__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero__text {
  flex: 1;
}
.hero__image {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.hero__copy {
  width: 100%;
  max-width: 661px;
  margin-bottom: 24px;
}
.hero__description {
  font-size: 16px;
  line-height: 180%;
  color: #FFFFFF;
  font-weight: 500;
}
.hero__image {
  flex: 1;
  max-width: 604px;
}
@media screen and (min-width: 768px) {
  .hero {
    background-image: url(../../assets/images/bg-kv-pc.svg), var(--ddd, linear-gradient(110deg, #0075FF 12.42%, #72CCFF 88.14%));
    background-size: 1760px 735px, cover;
    background-position: top center, center;
    padding: 120px 0 200px;
  }
  .hero__container {
    padding: 0 20px;
  }
  .hero__image {
    max-width: 1246px;
  }
  .hero__content {
    flex-direction: row;
  }
  .hero__description {
    font-size: 18px;
  }
}

.pitfall {
  padding: 0;
  margin-top: -20px;
  position: relative;
}
.pitfall__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pitfall__badge span {
  background: #0037A2;
  color: #FFFFFF;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin: 0 auto;
  white-space: nowrap;
}
.pitfall__badge span::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -10px;
  width: 20px;
  height: 18px;
  background-image: url(../../assets/images/icon-sweat.svg);
  background-repeat: no-repeat;
  background-size: 20px;
}
.pitfall__badge span::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 20px;
  background-image: url(../../assets/images/icon-rounded-triangle.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.pitfall__container {
  width: 100%;
  background: #F1F5F9;
  padding: 100px 20px 40px;
  border-radius: 20px;
  margin: 0 auto;
}
.pitfall__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
  max-width: 1120px;
}
.pitfall__card {
  background: #FFFFFF;
  padding: 36px 16px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pitfall__icon {
  position: absolute;
  top: -70px;
  left: -12px;
  width: 100px;
  height: 100px;
}
.pitfall__icon.second {
  top: -40px;
  left: auto;
  right: -4px;
  width: 80px;
  height: 80px;
}
.pitfall__label {
  color: #0037A2;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  border-radius: 999px;
  background: #CDF;
  padding: 4px 24px;
  width: fit-content;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}
.pitfall__text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0037A2;
  text-align: center;
  line-height: 140%;
}
.pitfall__text p {
  font-size: 16px;
  color: #0E202E;
  line-height: 160%;
  margin-top: 8px;
}
.pitfall__sweat {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.4;
}
@media screen and (min-width: 480px) {
  .pitfall__badge {
    padding: 0 24px;
    width: 100%;
  }
  .pitfall__badge span {
    font-size: 26px;
    width: 100%;
    max-width: 1100px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .pitfall__badge span::after {
    top: -10px;
    left: 10px;
    width: 22px;
    height: 20px;
    background-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .pitfall {
    margin-top: -80px;
  }
  .pitfall__badge {
    width: 100%;
    padding: 0 24px;
  }
  .pitfall__badge span {
    font-size: 40px;
    width: 100%;
    max-width: 1100px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .pitfall__badge span::after {
    top: -18px;
    left: 5px;
    width: 33px;
    height: 30px;
    background-size: 33px;
  }
  .pitfall__container {
    padding: 140px 60px 60px;
    border-radius: 80px;
  }
  .pitfall__content {
    flex-direction: row;
  }
  .pitfall__card {
    flex: 1;
    min-width: 0;
    padding: 52px 40px 40px 40px;
  }
  .pitfall__label {
    font-size: 24px;
  }
  .pitfall__text h3 {
    font-size: 28px;
  }
  .pitfall__text p {
    font-size: 20px;
    margin-top: 12px;
  }
  .pitfall__icon {
    width: 100px;
    height: 100px;
    top: -64px;
    left: -40px;
  }
  .pitfall__icon.second {
    width: 100px;
    height: 100px;
    left: auto;
    top: -64px;
    right: -40px;
  }
}
@media screen and (min-width: 1200px) {
  .pitfall__badge span {
    font-size: 48px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .pitfall__badge span::after {
    top: -18px;
    left: -40px;
    width: 44px;
    height: 40px;
    background-size: 44px;
  }
  .pitfall__container {
    padding: 140px 160px 80px;
  }
  .pitfall__icon {
    width: 160px;
    height: 160px;
    top: -64px;
    left: -100px;
  }
  .pitfall__icon.second {
    width: 160px;
    height: 160px;
    left: auto;
    top: -64px;
    right: -100px;
  }
}

.solution {
  background: #FFFFFF;
  padding: 60px 0;
}
.solution__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.solution__header {
  text-align: center;
  margin-bottom: 40px;
}
.solution__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.solution__badge svg {
  color: #0054FF;
}
.solution__badge-text {
  background: #F5990D;
  color: #FFFFFF;
  padding: 8px 28px;
  line-height: 120%;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.solution__badge-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 20px;
  background-image: url(../../assets/images/icon-rounded-triangle-orange.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.solution__title {
  font-size: 24px;
  color: #0037A2;
  font-weight: 700;
  line-height: normal;
}
.solution__timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solution__phase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.solution__phase-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  line-height: 150%;
  background: #0037A2;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
}
.solution__phase-badge {
  border: 1px solid #FFFFFF;
  padding: 4px 12px;
  border-radius: 999px;
}
.solution__phase-badge--secondary {
  border: 1px solid #E0E0E0;
}
.solution__phase-label {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}
.solution__phase-title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}
.solution__cards {
  display: flex;
  flex-direction: column;
  gap: 20px 32px;
}
.solution__card {
  background: #F1F5F9;
  padding: 20px 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution__card-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution__point {
  width: auto;
  height: 40px;
}
.solution__card-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  color: #0037A2;
}
.solution__card-content p {
  font-size: 16px;
  color: #0E202E;
  margin-top: 8px;
  line-height: 160%;
  text-align: center;
}
.solution__card-image {
  margin-top: auto;
  align-self: center;
  width: auto;
  height: 128px;
}
.solution__card-image.second {
  height: 100px;
}
.solution__arrow {
  align-self: center;
}
@media screen and (min-width: 768px) {
  .solution {
    padding: 80px 0 100px;
  }
  .solution__container {
    padding: 0 32px;
  }
  .solution__badge-text {
    font-size: 32px;
  }
  .solution__title {
    font-size: 48px;
  }
  .solution__phase-header {
    border-radius: 999px;
    flex-direction: row;
    gap: 20px;
  }
  .solution__phase-label {
    font-size: 20px;
  }
  .solution__phase-title {
    font-size: 24px;
  }
  .solution__cards {
    flex-direction: row;
  }
  .solution__card {
    flex: 1;
  }
  .solution__card-content p {
    text-align: left;
  }
  .solution__card-content p.center {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .solution__card-content h3 {
    font-size: 28px;
  }
  .solution__card-content p {
    font-size: 18px;
  }
}

.cta-section {
  background: var(--ddd, linear-gradient(110deg, #0075FF 12.42%, #72CCFF 88.14%));
  padding: 40px 0 60px;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 20px;
  background-image: url(../../assets/images/icon-rounded-triangle-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-section__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-section__content {
  text-align: center;
}
.cta-section__subtitle {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
}
.cta-section__card {
  background: #FFFFFF;
  border: 4px solid #FFFFFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.cta-section__card:hover .cta-section__button {
  background: #FFFFFF;
  color: #0037A2;
}
.cta-section__text {
  flex: 1;
  text-align: center;
  padding: 40px 16px 20px;
  position: relative;
  width: 100%;
}
.cta-section__heading {
  margin-bottom: 24px;
}
.cta-section__titles h2 {
  font-size: 18px;
  font-weight: 600;
  color: #0037A2;
  line-height: 150%;
}
.cta-section__titles h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0037A2;
  margin-top: 6px;
  line-height: 130%;
}
.cta-section__heading p {
  font-size: 14px;
  color: #0037A2;
  margin-top: 6px;
}
.cta-section__button {
  background: #0037A2;
  color: #FFFFFF;
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 999px;
  border: solid 2px #0037A2;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
}
.cta-section__free-badge {
  position: absolute;
  left: 0;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background-color: #F5990D;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 80px;
}
.cta-section__figure {
  flex: 1;
  display: flex;
  justify-content: center;
  background-color: #E3F1FF;
  padding: 20px;
  width: 100%;
  border-radius: 16px 16px 0 0;
}
.cta-section__image {
  max-width: 498px;
  width: 100%;
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 768px) {
  .cta-section {
    padding: 80px 20px;
  }
  .cta-section::before {
    top: -1px;
    width: 160px;
    height: 32px;
    background-image: url(../../assets/images/icon-triangle-white-wide.svg);
  }
  .cta-section__subtitle {
    font-size: 32px;
  }
  .cta-section__card {
    flex-direction: row-reverse;
    align-items: stretch;
  }
  .cta-section__figure {
    border-radius: 0 16px 16px 0;
    flex: 0 0 45%;
  }
  .cta-section__image {
    object-fit: contain;
    align-self: center;
  }
  .cta-section__text {
    position: static;
    padding: 20px;
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cta-section__titles h2 {
    font-size: 21px;
  }
  .cta-section__titles h3 {
    font-size: 34px;
  }
  .cta-section__heading p {
    font-size: 15px;
  }
  .cta-section__free-badge {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 26px;
    top: -30px;
    left: -30px;
  }
}
@media screen and (min-width: 1200px) {
  .cta-section__titles h2 {
    font-size: 24px;
  }
  .cta-section__titles h3 {
    font-size: 48px;
  }
  .cta-section__heading p {
    font-size: 16px;
  }
  .cta-section__free-badge {
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 32px;
    top: -30px;
    left: -30px;
  }
}

.pricing {
  padding: 80px 0;
}
.pricing__top {
  padding: 60px 20px;
}
.pricing__top__balloon {
  display: none;
}
.pricing__top__flex {
  position: relative;
}
.pricing__top__flex .note {
  font-size: 12px;
  color: #93999D;
  margin-top: 12px;
}
.pricing__top__heading {
  font-size: 24px;
  color: #0037A2;
  font-weight: 700;
  text-align: center;
}
.pricing__top__lump {
  margin-top: 32px;
  background-color: #F1F5F9;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}
.pricing__top__lump.monthly::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/line-red-sp.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.pricing__top__lump::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: calc(50% - 6px);
  top: -22px;
  background-image: url(../../assets/images/icon-plus.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
}
.pricing__top__lump:first-child::after {
  content: none;
}
.pricing__top__lump__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
.pricing__top__lump__box.u-strike {
  position: relative;
}
.pricing__top__lump__box.u-strike::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 3px;
  background-color: tomato;
  right: 0;
  left: 0;
  bottom: 10px;
  margin: auto;
}
.pricing__top__lump__box__heading {
  width: 100%;
  color: #0037A2;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing__top__lump__box__per {
  font-size: 14px;
  line-height: 1;
}
.pricing__top__lump__box__price {
  font-size: 28px;
  line-height: 1;
  padding: 0;
  white-space: nowrap;
}
.pricing__top__lump__box__price .p-unit {
  font-size: 14px;
}
.pricing__top__lump__box__figure {
  display: none;
}
.pricing__top__lump__box__description {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .pricing__top {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pricing__top__balloon {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
    width: 380px;
    border-radius: 4px;
    background: #0037A3;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 14px;
    position: relative;
  }
  .pricing__top__balloon::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 20px;
    background-image: url(../../assets/images/icon-rounded-triangle.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .pricing__top__heading {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .pricing__top__flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1120px;
    margin: auto;
  }
  .pricing__top__flex .note {
    display: none;
  }
  .pricing__top__flex::after {
    width: 38px;
    height: 30px;
    background-size: 38px 30px;
    bottom: -75px;
  }
  .pricing__top__lump {
    border-radius: 8px;
    background-color: #F1F5F9;
    width: 30%;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pricing__top__lump.monthly::before {
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url(../../assets/images/line-red-pc.svg);
  }
  .pricing__top__lump::after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    top: calc(50% - 8px);
    bottom: auto;
    right: auto;
    left: -36px;
  }
  .pricing__top__lump__box.u-strike::after {
    content: none;
  }
  .pricing__top__lump__box__heading {
    text-align: center;
    font-size: 24px;
    color: #0037A2;
    margin-bottom: 0;
  }
  .pricing__top__lump__box__per {
    width: 100%;
    font-size: 16px;
    margin-top: 28px;
    text-align: center;
  }
  .pricing__top__lump__box__price {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    font-size: 40px;
  }
  .pricing__top__lump__box__price.u-strike {
    position: relative;
  }
  .pricing__top__lump__box__price.u-strike::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 6px;
    background-color: tomato;
    right: 0;
    left: 0;
    bottom: 16px;
    margin: auto;
  }
  .pricing__top__lump__box__figure {
    display: block;
    width: 60px;
    height: 60px;
    margin-top: 4px;
  }
  .pricing__top__lump__box__description {
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }
}

.l-stories {
  position: relative;
}
.l-stories::after {
  content: "";
  position: absolute;
  left: -175px;
  bottom: -120px;
  width: 329px;
  height: 268px;
  background-image: url(../../assets/images/bg-propeller.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .l-stories::after {
    left: -375px;
    bottom: -350px;
    width: 857px;
    height: 698px;
  }
}

.p-stories {
  padding: 0 20px 30px;
  position: relative;
  z-index: 1;
}
.p-stories__heading {
  color: #0037A2;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}
.p-stories__flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 20px auto 0;
}
.p-stories__flex__box {
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 55, 162, 0.15);
}
.p-stories__flex__box__figure img {
  width: 100%;
  height: auto;
}
.p-stories__flex__box__text {
  padding: 20px;
}
.p-stories__flex__box__text .tag {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  border-radius: 4px;
  background: var(--Brand-dark-blue, #0037A2);
  padding: 4px 12px;
  display: inline;
}
.p-stories__flex__box__text h3 {
  color: var(--Foreground-primary, #0E202E);
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  margin-top: 8px;
}
.p-stories__flex__box__text h3 .small {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
.p-stories__flex__box__text p {
  margin-top: 8px;
  color: var(--Foreground-primary, #0E202E);
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
}
.p-stories__flex__box__text p strong {
  color: var(--Brand-Orange-F5990D, #F5990D);
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-stories {
    padding: 0 20px 80px;
  }
  .p-stories__heading {
    font-size: 32px;
  }
  .p-stories__flex {
    max-width: 1120px;
    flex-direction: row;
  }
  .p-stories__flex__box {
    flex: 1;
  }
  .p-stories__flex__box__text {
    padding: 28px;
  }
  .p-stories__flex__box__text .tag {
    font-size: 20px;
  }
  .p-stories__flex__box__text h3 {
    font-size: 28px;
  }
  .p-stories__flex__box__text h3 .small {
    display: inline-block;
    font-size: 20px;
  }
  .p-stories__flex__box__text p {
    font-size: 20px;
  }
  .p-stories__flex__box__text p strong {
    font-size: 28px;
  }
}

.form-section {
  padding: 60px 0;
  position: relative;
}
.form-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 154px;
  height: 268px;
  background-image: url(../../assets/images/bg-bean.svg);
  background-repeat: no-repeat;
  background-size: 329px;
  background-position: left;
  z-index: -1;
}
.form-section__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.form-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.form-section__badge {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #F5990D;
}
.form-section__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 150%;
  background: var(--ddd, linear-gradient(110deg, #0075FF 12.42%, #72CCFF 88.14%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.form-section__lead {
  margin-top: 10px;
  font-size: 14px;
  line-height: normal;
}
.form-section__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .form-section__badge span {
    font-size: 18px;
  }
  .form-section__title {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .form-section::after {
    right: 0;
    bottom: 50px;
    width: 780px;
    height: 670px;
    background-size: 955px;
    background-position: left;
  }
  .form-section__header {
    margin-bottom: 64px;
  }
  .form-section__badge {
    font-size: 21px;
  }
  .form-section__title {
    font-size: 34px;
  }
  .form-section__lead {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .form-section__badge {
    font-size: 24px;
  }
  .form-section__title {
    font-size: 48px;
  }
  .form-section__lead {
    font-size: 16px;
  }
}

.form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 60px 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.form__cta-header {
  background: #0037A2;
  color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin: 0 auto;
  white-space: nowrap;
}
.form__cta-header::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 20px;
  background-image: url(../../assets/images/icon-rounded-triangle.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.form__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field label {
  font-size: 14px;
  font-weight: 600;
  color: #0E202E;
}
.form__field input,
.form__field select {
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: #0054FF;
}
.form__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.form__notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__notes p {
  font-size: 12px;
  color: #93999D;
  line-height: 160%;
}
.form__note-small {
  font-size: 11px;
}
.form__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form__checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.form__checkbox label {
  font-size: 12px;
  color: #93999D;
  cursor: pointer;
}
.form__submit {
  background: #0E202E;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.form__submit:hover {
  background: #1a2f3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 32, 46, 0.3);
}
@media screen and (min-width: 768px) {
  .form__cta-header {
    font-size: 20px;
    padding: 8px 36px;
  }
}

.introduction__container {
  background-color: #E3F1FF;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  border-radius: 80px 80px 0 0;
  position: relative;
  overflow: hidden;
}
.introduction__container::after {
  content: "";
  position: absolute;
  left: -90px;
  top: -5px;
  width: 262px;
  height: 262px;
  background-image: url(../../assets/images/bg-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}
.introduction__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.introduction__title {
  font-size: 20px;
  font-weight: 700;
  color: #0E202E;
  margin-bottom: 12px;
  line-height: 150%;
}
.introduction__logo {
  height: auto;
  width: 200px;
  margin: 0 auto;
}
.introduction__image {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .introduction__container::after {
    left: -180px;
    top: -20px;
    width: 533px;
    height: 533px;
  }
  .introduction__card {
    flex-direction: row;
    gap: 40px;
    width: 100%;
    max-width: 1120px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .introduction__image {
    flex: 1 1 50%;
    max-width: 600px;
    min-width: 0;
  }
  .introduction__text {
    flex: 1 1 50%;
    max-width: 500px;
    min-width: 0;
  }
  .introduction__title {
    text-align: left;
    font-size: 24px;
  }
  .introduction__logo {
    margin-left: 0;
    max-width: 400px;
    width: 100%;
  }
}

.footer {
  background: #2A2E36;
  padding: 40px 0 140px;
}
.footer__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.footer__container p {
  font-size: 14px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 40px;
  }
}

.banner {
  position: fixed;
  z-index: 1000;
  transition: transform 0.4s ease;
}
.banner.is-hidden {
  transform: translateY(calc(100% + 20px));
}
.banner__close {
  position: absolute;
  top: -12px;
  right: -4px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__close img {
  width: 100%;
  height: 100%;
}
.banner__image {
  display: block;
}
.banner--sp {
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ddd, linear-gradient(110deg, #0075FF 12.42%, #72CCFF 88.14%));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.banner--sp .banner__close {
  top: -12px;
  right: 8px;
}
.banner--sp .banner__image {
  width: 306px;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .banner--sp {
    display: none;
  }
}
.banner--pc {
  bottom: 20px;
  right: 20px;
  width: 221px;
  height: 200px;
  display: none;
}
.banner--pc .banner__image {
  display: block;
  filter: drop-shadow(0 0 20px rgba(0, 55, 162, 0.32));
}
.banner--pc .banner__close {
  top: 6px;
  right: -14px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .banner--pc {
    display: block;
  }
}
