@charset "UTF-8";
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 100%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* 初期化処理 */
html {
  line-height: 1;
  scroll-behavior: smooth;
}

/* ------------------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFFFFF;
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 画像の縦横比を崩れにくくする。毎回設定しよう。 */
img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------ */
a {
  text-decoration: none;
}

li {
  list-style: none;
}

.md-br {
  display: none;
}
@media (width <= 875px) {
  .md-br {
    display: inline;
  }
}

.sm-br {
  display: none;
}
@media (width <= 735px) {
  .sm-br {
    display: inline;
  }
}

.xs-br {
  display: none;
}
@media (width <= 561px) {
  .xs-br {
    display: inline;
  }
}

.header {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  z-index: 2000;
}
.header__logo {
  margin-left: clamp(1.125rem, 1.0527734977rem + 0.3081664099vw, 1.25rem);
  order: 1;
  width: clamp(8.6875rem, 5.5095338983rem + 13.5593220339vw, 14.1875rem);
}
.header__nav {
  flex: 1;
  order: 2;
}
.header__nav-list {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.125rem, -1.837962963rem + 4.6296296296vw, 1.75rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (width <= 1024px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-item {
  color: #007FC6;
  cursor: pointer;
  font-size: clamp(0.875rem, 0.2824074074rem + 0.9259259259vw, 1rem);
}
.header__btn {
  height: clamp(4rem, 3.1329479769rem + 3.6994219653vw, 6rem);
  order: 3;
  width: clamp(4rem, 0.6130780347rem + 14.450867052vw, 11.8125rem);
  background-color: #007FC6;
  color: #FFFFFF;
  font-size: clamp(0.625rem, 0.234375rem + 1.6666666667vw, 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
@media (width <= 1024px) {
  .header__btn {
    font-weight: 400;
  }
}
@media (width <= 735px) {
  .header__btn {
    flex-direction: column;
  }
}
.header__btn img {
  width: clamp(1.5rem, 0.9791666667rem + 2.2222222222vw, 2rem);
}
.header__toggle {
  height: clamp(4rem, 3.1329479769rem + 3.6994219653vw, 6rem);
  width: clamp(4rem, 0.6130780347rem + 14.450867052vw, 11.8125rem);
  display: none;
  order: 3;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.625rem, 0.234375rem + 1.6666666667vw, 1rem);
  position: relative;
  gap: 9px;
  background-color: #333333;
  color: #FFFFFF;
  cursor: pointer;
}
@media (width <= 1024px) {
  .header__toggle {
    display: flex;
  }
}
.header__toggle-line {
  width: 32px;
  height: 1px;
  background-color: #FFFFFF;
}
.header__toggle.open .header__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px) scale(1);
  margin-top: 4px;
}
.header__toggle.open .header__toggle-line:nth-child(2) {
  opacity: 0;
}
.header__toggle.open .header__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px) scale(1);
}
.header__toggle-text {
  font-weight: 400;
}
@media (width <= 735px) {
  .header__toggle-text {
    padding-top: 4%;
  }
}
.header__toggle-list {
  order: 4;
  display: none;
  background: #007FC6;
  width: 100%;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 3000;
  display: none;
  margin-top: clamp(4rem, 3.1329479769rem + 3.6994219653vw, 6rem);
  overflow: hidden;
}
.header__toggle-list.open {
  display: flex;
}
.header__toggle-item {
  border-bottom: 1px solid #FFFFFF;
}
.header__toggle-item a {
  padding: 24px 0 24px 16px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fv {
  background: linear-gradient(to right, #007FC6, #02D1FF);
  color: #FFFFFF;
  position: relative;
}
.fv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: clamp(2.5rem, 1.3078034682rem + 5.0867052023vw, 5.25rem);
}
.fv__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0rem, -5.9259259259rem + 9.2592592593vw, 1.25rem);
}
@media (width <= 1240px) {
  .fv__content {
    padding-inline: 20px;
  }
}
@media (width <= 1024px) {
  .fv__content {
    flex-direction: column;
  }
}
.fv .fv__fadein {
  opacity: 0;
  transform: translateY(50px);
  animation: fvFadeUp 1s ease forwards;
  -webkit-animation: fvFadeUp 1s ease forwards;
}
.fv .fv__textarea-subtitle, .fv .fv__textarea-text {
  animation-delay: 0s;
}
.fv .fv__textarea-title {
  animation-delay: 0.2s;
}
.fv .fv__textarea-text {
  animation-delay: 0.4s;
}
.fv .fv__circle {
  animation-delay: 0.6s;
}
.fv .fv__note {
  animation-delay: 0.8s;
}
.fv .fv__img {
  animation-delay: 1s;
}
.fv .fv__form {
  animation-delay: 0.2s;
}
@media (width <= 1024px) {
  .fv .fv__form {
    animation-delay: 1.2s;
  }
}
.fv__textarea {
  padding-left: 24px;
  max-width: 639px;
}
@media (width <= 1024px) {
  .fv__textarea {
    padding-left: 0;
  }
}
.fv__textarea-subtitle, .fv__textarea-text {
  font-size: clamp(0.875rem, 0.7124277457rem + 0.6936416185vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (width <= 1024px) {
  .fv__textarea-subtitle, .fv__textarea-text {
    text-align: center;
    margin-bottom: 16px;
  }
}
.fv__textarea-title {
  font-size: clamp(1.5rem, 0.6329479769rem + 3.6994219653vw, 3.5rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media (width <= 1240px) {
  .fv__textarea-title {
    text-align: center;
  }
}
@media (width <= 735px) {
  .fv__textarea-title {
    line-height: 1.8;
  }
}
@media (width <= 561px) {
  .fv__textarea-title {
    margin-bottom: clamp(1.5rem, -3.4342105263rem + 21.0526315789vw, 0rem);
  }
}
@-moz-document url-prefix() {
  .fv__textarea-title {
    font-size: clamp(1.5rem, 0.7413294798rem + 3.2369942197vw, 3.25rem);
    line-height: 1.3;
    word-break: keep-all;
  }
}
.fv__textarea-text {
  margin-bottom: clamp(1rem, -1.5201612903rem + 10.752688172vw, 2.25rem);
}
@media (width <= 735px) {
  .fv__textarea-text {
    line-height: 1.8;
  }
}
.fv__circle {
  display: flex;
  justify-content: flex-start;
  gap: clamp(0.25rem, -0.237716763rem + 2.0809248555vw, 1.375rem);
  padding-left: 5px;
}
@media (width <= 1024px) {
  .fv__circle {
    padding-left: 0;
    justify-content: center;
  }
}
.fv__circle-item {
  background-color: #FFFFFF;
  color: #007FC6;
  width: clamp(7rem, 3.6145833333rem + 14.4444444444vw, 10.25rem);
  height: clamp(7rem, 3.6145833333rem + 14.4444444444vw, 10.25rem);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  border: 1px solid #007FC6;
  margin-bottom: clamp(1.5rem, 1.4187138728rem + 0.3468208092vw, 1.6875rem);
}
.fv__circle-label {
  font-size: clamp(1rem, 0.4791666667rem + 2.2222222222vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 26px;
}
@media (width <= 735px) {
  .fv__circle-label {
    margin-bottom: 12px;
  }
}
.fv__circle-number {
  font-size: clamp(1.125rem, 0.2135416667rem + 3.8888888889vw, 2rem);
  font-weight: bold;
  position: relative;
}
@media (width <= 735px) {
  .fv__circle-number {
    margin-top: 8px;
    margin-right: 4px;
  }
}
.fv__circle-number::after {
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  top: 0;
  color: #333333;
}
.fv__circle-number--1 {
  padding-right: 12px;
}
.fv__circle-number--1::after {
  content: "*1";
}
.fv__circle-number--2::after {
  content: "*2";
}
.fv__circle-number--adjust {
  padding-right: 13px;
}
.fv__circle-small {
  font-size: clamp(0.875rem, 0.2239583333rem + 2.7777777778vw, 1.5rem);
}
.fv__note {
  font-size: 12px;
  font-weight: 400;
}
.fv__note :first-child {
  margin-bottom: 7px;
}
.fv__note :last-child {
  margin-bottom: 127px;
}
@media (width <= 1024px) {
  .fv__note :last-child {
    margin-bottom: 0;
  }
}
.fv__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: clamp(18.75rem, 0.9722222222rem + 27.7777777778vw, 22.5rem);
}
@media (width <= 1024px) {
  .fv__img {
    max-width: 360px;
    min-width: 360px;
    position: static;
    transform: none;
    order: 2;
  }
}
.fv__img img {
  transform: translateX(-50%);
}
@media (width <= 1024px) {
  .fv__img img {
    transform: none;
  }
}
@media (width <= 735px) {
  .fv__img img {
    margin-top: -14px;
  }
}
@keyframes fvFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv__formarea {
  align-self: flex-start;
  margin: 0;
}
@media (width <= 1240px) {
  .fv__formarea {
    transform: scale(0.9);
    transform-origin: top; /* 縮小の基準位置（上から縮めたい場合） */
  }
}
@media (width <= 1024px) {
  .fv__formarea {
    width: clamp(21.25rem, 19.0832049307rem + 9.2449922958vw, 25rem);
    order: 3;
    transform: scale(1);
    align-self: center;
    margin-bottom: 2rem;
  }
}
@media (width <= 735px) {
  .fv__formarea {
    margin-top: 44px;
    margin-bottom: 26px;
  }
}

.form {
  background-color: #FFFFFF;
  border-radius: 5px;
  color: #333333;
  box-sizing: border-box;
  padding: 8px 8px 4px;
  width: 100%;
  max-width: clamp(21.4375rem, 14.2550403226rem + 30.6451612903vw, 25rem);
  margin: 0 auto;
}
.form__title {
  font-size: clamp(1rem, 0.8555469954rem + 0.6163328197vw, 1.25rem);
  font-weight: bold;
  text-align: center;
  background-color: #007FC6;
  border-radius: 5px;
  color: #FFFFFF;
  padding-top: clamp(1.125rem, 1.377016129rem + -1.0752688172vw, 1rem);
  padding-bottom: 16px;
  margin-bottom: clamp(0.375rem, 1.1310483871rem + -3.2258064516vw, 0rem);
  position: relative;
}
@media (width <= 735px) {
  .form__title {
    padding-bottom: clamp(1.125rem, 1.377016129rem + -1.0752688172vw, 1rem);
  }
}
.form__title::before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 12px;
  background-color: #007FC6;
  inset: 100% auto auto 50%;
  translate: -50% 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.form__inner {
  padding-top: 16px;
  padding-left: 7px;
  padding-right: 8px;
  padding-bottom: 24px;
}
@media (width <= 735px) {
  .form__inner {
    padding-top: 20px;
    padding-inline: 0;
    padding-bottom: 14px;
  }
}
.form__flex {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.25rem, -0.2555855162rem + 2.157164869vw, 1.125rem);
}
.form__flex > * {
  flex: 1 1 0;
  min-width: 0;
}
.form__group {
  margin-bottom: 15px;
}
.form__label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 8px;
  position: relative;
}
.form__label::after {
  content: "*";
  position: absolute;
  font-size: 14px;
  font-weight: 400;
  color: #F90000;
  top: 0;
}
.form__required {
  font-size: 14px;
  font-weight: 400;
  color: #F90000;
}
.form__input {
  width: 100%;
  height: 48px;
  padding-left: 8px;
  background-color: #F5F8FA;
  border: 1px solid #CED4DA;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.form__input::-moz-placeholder {
  color: #AAAAAA;
}
.form__input::placeholder {
  color: #AAAAAA;
}
.form__note {
  padding-top: 9px;
  width: 97%;
  margin-bottom: 31px;
  font-size: clamp(0.75rem, 0.6197916667rem + 0.5555555556vw, 0.875rem);
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}
.form__submit {
  margin-right: auto;
  margin-left: auto;
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #007FC6;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  font-size: clamp(1rem, 0.8555469954rem + 0.6163328197vw, 1.25rem);
  padding: clamp(0.875rem, 0.8208092486rem + 0.2312138728vw, 1rem) clamp(0rem, -1.4445300462rem + 6.1633281972vw, 2.5rem);
  width: 87%;
}
@media (width <= 735px) {
  .form__submit {
    margin-top: 40px;
    width: 76%;
  }
}
.form .end-message {
  display: none;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  color: #F90000;
  text-align: center;
}
.form .false-message {
  display: none;
}

.achievement {
  padding-top: clamp(2.5rem, 1.0554699538rem + 6.1633281972vw, 5rem);
}
.achievement__title {
  font-size: clamp(1.5rem, 1.2110939908rem + 1.2326656394vw, 2rem);
  font-weight: bold;
  line-height: 1;
  color: #333;
  text-align: center;
  font-size: clamp(1.25rem, 0.6875rem + 2.4vw, 2rem);
  margin-bottom: clamp(1.875rem, 1.6040462428rem + 1.1560693642vw, 2.5rem);
}
.achievement__img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, -1.5024752475rem + 8.7128712871vw, 5.25rem);
  margin-bottom: clamp(0rem, -9.4814814815rem + 14.8148148148vw, 2rem);
}
@media (width <= 735px) {
  .achievement__img {
    flex-direction: column;
    gap: 8px;
  }
}
.achievement__img-item {
  width: clamp(17.5rem, -26.3518518519rem + 68.5185185185vw, 26.75rem);
}

.introducing-companies {
  padding-top: 31px;
  padding-bottom: clamp(1.9375rem, -2.5069444444rem + 6.9444444444vw, 2.875rem);
}
@media (width <= 735px) {
  .introducing-companies {
    padding-top: 38px;
  }
}
.introducing-companies__slider img {
  display: block;
  max-width: clamp(10rem, -16.0740740741rem + 40.7407407407vw, 15.5rem);
  height: auto;
}
.introducing-companies__slider .slick-slide {
  margin-right: clamp(3.9375rem, 3.4768786127rem + 1.9653179191vw, 5rem);
}
.introducing-companies__slider .slick-slide:last-child {
  margin-right: 0;
}

.introduce__inner {
  height: 100%;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding-top: clamp(2.5rem, 2.1388674884rem + 1.5408320493vw, 3.125rem);
  padding-inline: 20px;
}
.introduce .about__title {
  font-size: clamp(1.5rem, 1.2110939908rem + 1.2326656394vw, 2rem);
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
.introduce .about__title-sub {
  font-weight: bold;
  line-height: 1.8;
  color: #333333;
  font-size: clamp(1.25rem, 1.1055469954rem + 0.6163328197vw, 1.5rem);
  padding-top: clamp(1.875rem, 1.1166217257rem + 3.2357473035vw, 3.1875rem);
  padding-bottom: clamp(0rem, -1.625096302rem + 6.9337442219vw, 2.8125rem);
}
@media (width <= 875px) {
  .introduce .about__title-sub {
    padding-top: 63px;
  }
}
.introduce .about__title-sub--blue {
  font-size: clamp(1.5rem, 1.2110939908rem + 1.2326656394vw, 2rem);
  color: #007FC6;
}
.introduce .about__title-sub--row2 {
  display: inline-block; /* 元のレイアウトを崩さないように */
  margin-top: 5px; /* 下げたい量に応じて調整 */
  margin-bottom: -2.2px;
}
.introduce .about__illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(2.5rem, -0.2084938367rem + 11.5562403698vw, 7.1875rem);
}
.introduce .about__illustration-bg {
  background-color: #F9F9F9;
  border-radius: 5px;
  width: 808px;
  height: 276px;
  z-index: 0;
}
@media (width <= 1240px) {
  .introduce .about__illustration-bg {
    transform: scale(0.9);
  }
}
@media (width <= 875px) {
  .introduce .about__illustration-bg {
    display: none;
  }
}
.introduce .about__illustration-bg--md {
  display: none;
}
@media (width <= 875px) {
  .introduce .about__illustration-bg--md {
    display: block;
    position: relative;
    background-color: #F9F9F9;
    border-radius: 5px;
    width: 341px;
    height: 648px;
    z-index: 0;
    margin: 54px auto 0;
  }
}
.introduce .about__illustration-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.introduce .about__illustration-img {
  max-width: 100%;
  display: block;
  max-width: 562px;
}
@media (width <= 875px) {
  .introduce .about__illustration-img {
    display: none;
  }
}
.introduce .about__illustration-img--md {
  display: none;
}
@media (width <= 875px) {
  .introduce .about__illustration-img--md {
    display: block;
    margin-top: 54px;
  }
}
@media (width <= 875px) {
  .introduce .feature {
    margin-top: 72px;
  }
}
.introduce .feature__title {
  font-size: clamp(1.5rem, 1.2110939908rem + 1.2326656394vw, 2rem);
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
.introduce .feature__boxes {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 51px;
  margin-bottom: 31px;
}
@media (width <= 735px) {
  .introduce .feature__boxes {
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
}
.introduce .feature__item {
  width: 100%;
  height: auto;
  min-height: 325px;
  box-sizing: border-box;
  border: 1px solid #007FC6;
  padding-top: 14px;
  padding-inline: 30px;
  padding-bottom: clamp(1.25rem, 4.2465753425rem + -5.4794520548vw, 0rem);
}
@media (width <= 735px) {
  .introduce .feature__item {
    padding-inline: 26px;
  }
}
.introduce .feature__item-img {
  padding-bottom: 18px;
}
.introduce .feature__item-img img {
  max-width: 100%;
  height: auto;
}
.introduce .feature__item-title {
  font-size: 20px;
  font-weight: bold;
  color: #F47500;
  line-height: 1.5;
  padding-bottom: 18px;
}
.introduce .feature__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  width: auto;
  text-align: left;
}

.download {
  background-image: url(../img/download-bg.jpg);
  background-size: cover;
  background-position: center;
  padding-top: clamp(2.5rem, 1.7777349769rem + 3.0816640986vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 1.7416217257rem + 3.2357473035vw, 3.8125rem);
  text-align: center;
}
.download__title {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 23px;
}
@media (width <= 875px) {
  .download__title {
    margin-bottom: 39px;
  }
}
.download__btn {
  margin-right: auto;
  margin-left: auto;
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #007FC6;
  background-color: #FFFFFF;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  padding: 16px 50px;
  width: 320px;
  display: block;
  margin: 0 auto;
  transform: scale(clamp(0.8, 0.6844375963 + 0.030816641vw, 1));
}

.example__inner {
  height: 100%;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding-top: clamp(4.5rem, 3.6332819723rem + 3.6979969183vw, 6rem);
  padding-inline: clamp(0.3125rem, -0.156972265rem + 2.0030816641vw, 1.125rem);
  padding-bottom: 40px;
}
@media (width <= 561px) {
  .example__inner {
    padding-bottom: 30px;
  }
}
.example__title {
  font-size: clamp(1.5rem, 1.2110939908rem + 1.2326656394vw, 2rem);
  font-weight: bold;
  line-height: 1.5;
  color: #222;
  text-align: center;
  padding-bottom: clamp(3.5625rem, 2.9846879815rem + 2.4653312789vw, 4.5625rem);
}
.example__scroll {
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0rem, -2.5201612903rem + 10.752688172vw, 1.25rem);
}
.example__scroll-list {
  display: flex;
  gap: 70px;
  justify-content: center;
  flex-wrap: nowrap;
}
@media (width <= ) {
  .example__scroll-list {
    max-width: 405px;
  }
}
.example__scroll-item {
  border: 1px solid rgba(51, 51, 51, 0.25);
  border-radius: 30px 0 30px 0;
  box-shadow: 0 5px 8px 3px rgba(51, 51, 51, 0.25);
  padding: 31px clamp(0.625rem, -0.3830645161rem + 4.3010752688vw, 1.125rem) 20px clamp(0.625rem, -0.3830645161rem + 4.3010752688vw, 1.125rem);
  text-align: left;
  position: relative;
  flex: 0 0 clamp(19.4375rem, 7.5927419355rem + 50.5376344086vw, 25.3125rem);
  height: clamp(29.4375rem, 28.8235747304rem + 2.6194144838vw, 30.5rem);
  display: block;
  margin: 0 auto;
}
@media (width <= 561px) {
  .example__scroll-item {
    padding-bottom: clamp(8.125rem, 8.8472650231rem + -3.0816640986vw, 6.875rem);
  }
}
.example__scroll-item.is-hidden {
  display: none;
}
@media (width <= 1024px) {
  .example__scroll-item {
    display: none;
  }
  .example__scroll-item.is-visible {
    display: block;
  }
}
.example__scroll-item__title {
  font-weight: bold;
  line-height: 1.8;
  color: #333333;
  font-size: clamp(1.125rem, 0.9083204931rem + 0.9244992296vw, 1.5rem);
  padding-bottom: 24px;
}
.example__scroll-item__title--blue {
  color: #007FC6;
}
.example__scroll-item__text {
  font-size: clamp(0.75rem, 0.6777734977rem + 0.3081664099vw, 0.875rem);
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
.example__scroll-item__logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
@media (width <= 561px) {
  .example__scroll-item__logo {
    left: 10px;
  }
}
.example__scroll-btn {
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.1s ease, background-color 0.2s ease;
}
@media (width <= 561px) {
  .example__scroll-btn {
    transform: scale(0.6);
  }
}
.example__scroll-btn:active {
  transform: scale(0.9);
  background-color: rgba(0, 0, 0, 0.1);
}

.fee {
  background-color: #F9F9F9;
}
.fee__inner {
  height: 100%;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding-top: clamp(4.5rem, 3.6332819723rem + 3.6979969183vw, 6rem);
  padding-inline: clamp(1.9375rem, 1.0346687211rem + 3.8520801233vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 1.8860747304rem + 2.6194144838vw, 3.5625rem);
}
.fee__title {
  font-size: clamp(1.5rem, 1.2110939908rem + 1.2326656394vw, 2rem);
  font-weight: bold;
  line-height: 1;
  color: #333;
  text-align: center;
  padding-bottom: clamp(1.875rem, 0.4665832049rem + 6.0092449923vw, 4.3125rem);
}
.fee__list {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  transform: scale(clamp(0.8, -0.1481481481 + 0.0925925926vw, 1));
}
.fee__item {
  position: relative;
  flex: 1 1 296px;
  min-height: clamp(5.8125rem, -0.8323382126rem + 28.3513097072vw, 17.3125rem);
  border: 1px solid rgba(51, 51, 51, 0.25);
  border-radius: 5px;
  box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.25);
  background-color: #FFFFFF;
}
.fee__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(0.375rem, 0.1583204931rem + 0.9244992296vw, 0.75rem);
  background: #007FC6;
  border-radius: 5px 5px 0 0;
}
.fee__item-title {
  font-weight: bold;
  line-height: 1;
  color: #333333;
  font-size: clamp(0.75rem, 0.3166409861rem + 1.8489984592vw, 1.5rem);
  padding-top: clamp(0.875rem, -0.2083975347rem + 4.6224961479vw, 2.75rem);
}
.fee__item-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(0.75rem, 0.0277349769rem + 3.0816640986vw, 2rem);
  font-weight: bold;
  color: #000;
}
@media (width <= 1024px) {
  .fee__item-number {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
  }
}
@media (width <= 735px) {
  .fee__item-number {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -70%);
  }
}
.fee__item-number--blue {
  font-size: clamp(2.25rem, 0.6242774566rem + 6.936416185vw, 6rem);
  color: #007FC6;
}
.fee__note {
  font-size: clamp(0.75rem, 0.497983871rem + 1.0752688172vw, 0.875rem);
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  padding-top: 48px;
  text-align: left;
}

.faq {
  background-color: #F9F9F9;
}
.faq__inner {
  height: 100%;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding-top: clamp(3.125rem, 1.4637904468rem + 7.0878274268vw, 6rem);
  padding-bottom: 48px;
  max-width: 1076px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 0.6558370044rem + 1.4684287812vw, 1.625rem);
}
@media (width <= 1024px) {
  .faq__inner {
    padding-bottom: 56px;
  }
}
.faq__title {
  font-size: clamp(1.5rem, 1.2110939908rem + 1.2326656394vw, 2rem);
  font-weight: bold;
  line-height: 1;
  color: #333;
  text-align: center;
  padding-bottom: clamp(3rem, 2.2055084746rem + 3.3898305085vw, 4.375rem);
}
.faq__item {
  border-radius: 10px;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-bottom: clamp(1rem, 0.7110939908rem + 1.2326656394vw, 1.5rem);
  /* プラス/マイナス切り替え */
}
.faq__item-question {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 18px 0;
  border-radius: 10px;
  height: clamp(4rem, 1.9838709677rem + 8.6021505376vw, 5rem);
}
.faq__item-question__logo {
  background-color: #007FC6;
  width: clamp(2rem, 0.4879032258rem + 6.4516129032vw, 2.75rem);
  height: clamp(2rem, 0.4879032258rem + 6.4516129032vw, 2.75rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: clamp(0.625rem, -1.0677083333rem + 7.2222222222vw, 2.25rem);
  margin-right: clamp(0.75rem, -0.03125rem + 3.3333333333vw, 1.5rem);
  flex-shrink: 0;
}
.faq__item-question__logo--inside {
  font-family: "Goldman", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1rem, -1.0161290323rem + 8.6021505376vw, 2rem);
  color: #FFFFFF;
}
.faq__item-question__text {
  font-size: clamp(0.875rem, 0.7447916667rem + 0.5555555556vw, 1rem);
  font-weight: bold;
  color: #333333;
  line-height: 1.5;
  padding-right: clamp(0.5rem, -0.9322916667rem + 6.1111111111vw, 1.875rem);
  text-align: left;
  flex: 1;
}
.faq__item-question__switch {
  position: relative;
  width: clamp(1rem, -1.0161290323rem + 8.6021505376vw, 2rem);
  height: clamp(1rem, -1.0161290323rem + 8.6021505376vw, 2rem);
  margin-right: clamp(0.625rem, -0.2864583333rem + 3.8888888889vw, 1.5rem);
  flex-shrink: 0;
  cursor: pointer;
}
.faq__item-question__switch::before, .faq__item-question__switch::after {
  content: "";
  position: absolute;
  background-color: #333333;
}
.faq__item-question__switch::before {
  top: 50%;
  left: 50%;
  width: clamp(1.1125rem, -0.6768145161rem + 7.6344086022vw, 2rem);
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__item-question__switch::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: clamp(1.1125rem, -0.6768145161rem + 7.6344086022vw, 2rem);
  transform: translate(-50%, -50%);
}
.faq__item-question__switch.minus::after {
  display: none;
}
.faq__item .faq__item-question.open {
  background-color: #007FC6;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq__item .faq__item-question.open .faq__item-question__logo {
  background-color: #FFFFFF;
}
.faq__item .faq__item-question.open .faq__item-question__logo--inside {
  color: #007FC6;
}
.faq__item .faq__item-question.open .faq__item-question__text {
  color: #FFFFFF;
}
.faq__item .faq__item-question__switch::before, .faq__item .faq__item-question__switch::after {
  background-color: #333333;
}
.faq__item .faq__item-question__switch.minus::before {
  background-color: #FFFFFF;
}
.faq__item .faq__item-question__switch.minus::after {
  display: none;
}
.faq__item-answer {
  display: none;
  background-color: #FFFFFF;
  padding: clamp(0.625rem, -1.1391129032rem + 7.5268817204vw, 1.5rem) clamp(0.625rem, -2.6512096774rem + 13.9784946237vw, 2.25rem);
  border-radius: 0 0 10px 10px;
  text-align: left;
}
@media (width <= 1024px) {
  .faq__item-answer {
    padding-left: 0;
    padding-right: 0;
  }
}
.faq__item-answer__text {
  margin: 0 auto;
  font-size: clamp(0.875rem, 0.7447916667rem + 0.5555555556vw, 1rem);
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
@media (width <= 1024px) {
  .faq__item-answer__text {
    padding-inline: clamp(0.625rem, -0.0972650231rem + 3.0816640986vw, 1.875rem);
  }
}
.faq__item-answer__text--space {
  display: block;
}

.action {
  background: linear-gradient(to right, #007FC6, #02D1FF);
  color: #FFFFFF;
  position: relative;
}
.action__inner {
  max-width: 896px;
  padding-top: clamp(4.5rem, 3.375rem + 4.8vw, 6rem);
  padding-inline: 15px;
  padding-bottom: clamp(2.625rem, 1.921875rem + 3vw, 3.5625rem);
  margin: 0 auto;
}
.action__title {
  font-size: clamp(1.5rem, 1.2110939908rem + 1.2326656394vw, 2rem);
  font-weight: bold;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: clamp(1.625rem, -0.8125rem + 10.4vw, 4.875rem);
}
@media (width <= 735px) {
  .action__title {
    line-height: 1.5;
  }
}
.action__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (width <= 875px) {
  .action__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.action__textarea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (width <= 875px) {
  .action__textarea {
    align-items: center;
  }
}
.action__textarea__text {
  font-size: clamp(0.75rem, 0.5625rem + 0.8vw, 1rem);
  font-weight: 400;
  line-height: 1.8;
  padding-top: 32px;
  padding-bottom: clamp(1.25rem, -0.0625rem + 5.6vw, 3rem);
  max-width: 413px;
  margin-left: clamp(0rem, -0.421875rem + 1.8vw, 0.5625rem);
}
@media (width <= 875px) {
  .action__textarea__text {
    text-align: center;
    padding-top: 0;
  }
}
.action__textarea__img {
  max-width: clamp(15rem, 6.28125rem + 37.2vw, 26.625rem);
  margin-bottom: 10px;
}
.action__formarea {
  width: clamp(21.4375rem, 19.3790446841rem + 8.782742681vw, 25rem);
  margin-right: 9px;
}
@media (width <= 1240px) {
  .action__formarea {
    transform: scale(0.9);
    transform-origin: top; /* 縮小の基準位置（上から縮めたい場合） */
  }
}
@media (width >= 561px) and (width <= 875px) {
  .action__formarea {
    width: clamp(22.5rem, 9.1003184713rem + 38.2165605096vw, 30rem);
  }
}
@media (width <= 875px) {
  .action__formarea {
    margin-right: 0;
    transform: scale(1);
  }
}

.footer {
  text-align: center;
  padding-top: 26px;
  padding-bottom: 18px;
}
.footer__logo {
  margin-bottom: 37px;
}
.footer__copyright {
  font-family: "Goldman", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #333333;
}/*# sourceMappingURL=style.css.map */