@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-SemiBold.woff2") format("woff2"), url("../fonts/NotoSansJP-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Black.woff2") format("woff2"), url("../fonts/NotoSansJP-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

@media (min-width: 820px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__block {
  background: #000;
  padding: 7px 0 15px;
  margin-bottom: 108px;
}

.company .footer__block {
  margin-bottom: 0;
}

.privacy .footer__block {
  margin-bottom: 0;
}

.footer__page-link {
  width: 100%;
  max-width: 375px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-inline: 30px;
}

.footer__link {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__link:hover {
  opacity: 0.7;
}

.footer__list {
  max-width: 166px;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.footer__item a {
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .footer__item a:hover {
    opacity: 0.7;
  }
}
.footer__small {
  display: block;
  text-align: center;
  margin-top: 7px;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.fv__block {
  position: relative;
}

.fv__img {
  width: 100%;
  aspect-ratio: 750/1136;
}

.fv__logo {
  width: 24.4%;
  aspect-ratio: 183/50;
  position: absolute;
  left: 4%;
  top: 1.7605633803%;
}

.fv__text {
  width: 94.4%;
  aspect-ratio: 708/232;
  position: absolute;
  left: 3.4666666667%;
  top: 14.5246478873%;
  -webkit-animation: zoomBounce 2s ease forwards infinite;
          animation: zoomBounce 2s ease forwards infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-transform: translateY(30px) scale(0.8);
          transform: translateY(30px) scale(0.8);
}

/*アニメーション用CSS*/
@-webkit-keyframes zoomBounce {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  60% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@keyframes zoomBounce {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  60% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.intro-top__block {
  width: 100%;
  aspect-ratio: 750/957;
  background: url(../img/intro-top-bg.webp) no-repeat top;
  background-size: contain;
  padding: 16px 28px 38px 42px;
}

.intro-top__title {
  width: 68.5333333333vw;
  max-width: 342px;
  aspect-ratio: 514/168;
  margin-left: auto;
}
.intro-top__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.intro-top__list {
  margin-top: 10px;
  padding-right: 14px;
}

.intro-top__item {
  padding: 10px 0 10px 30px;
  color: #fff;
  font-size: clamp(1rem, 0.625rem + 1.6vw, 1.125rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  word-break: keep-all;
  position: relative;
}

.intro-top__item:not(:first-child) {
  border-top: 1px solid #fff;
}

.intro-top__item::before {
  content: "";
  background: url(../img/check.webp) no-repeat center;
  background-size: contain;
  width: 18px;
  height: 21px;
  margin-right: 13px;
  position: absolute;
  top: 13px;
  left: 0;
}

.intro-top__item .yellow {
  color: #fff000;
}

.intro-bottom__block {
  padding: 12px 0 40px;
}

.intro-bottom__black {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: #000;
  border-radius: 30px;
  padding: 4px 25px 5px;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  position: relative;
}

.intro-bottom__black::after {
  content: "";
  background: #000;
  width: 10px;
  height: 6px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.intro-bottom__text {
  margin-top: 12px;
  color: #fe5900;
  font-size: 1.8125rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.support__block {
  background: #fffdd2;
  padding: 42px 15px 38px;
}

.support__title {
  width: 72.8vw;
  max-width: 365px;
  margin-inline: auto;
}
.support__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.support__list {
  margin: 25px auto 0;
  max-width: 431px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.support__item {
  background: #fff;
  display: grid;
  grid-template-columns: 48% 52%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #000;
  border-radius: 5px;
}

.support__item-img {
  border-radius: 4px 0 0 4px;
}
.support__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 0 0 4px;
}

.support__item-text {
  padding-left: 16px;
  font-size: clamp(1rem, 0.2727272727rem + 3.6363636364vw, 1.125rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.support__bottom-text {
  margin-top: 28px;
  width: 81.0666666667vw;
  max-width: 405px;
  margin-inline: auto;
}
.support__bottom-text img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason__block {
  background: #fffdd2;
  padding: 0 0 40px;
  background: #fff;
}

.reason__title {
  margin-top: -20px;
  width: 100%;
}
.reason__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason__list {
  margin: 24px auto 0;
  max-width: 412px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding: 0 30px 0 15px;
}

.reason__item-title {
  color: #fe5900;
  font-size: 1.3125rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.reason__item-title .blue {
  padding: 3px 7px 3px 8px;
  margin: 0 10px 0 0;
  border-radius: 5px;
  background: #0168B7;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.reason__item-title .number {
  font-size: 1.4375rem;
  line-height: 1;
  margin-top: -2px;
}

.reason__item-img {
  margin-top: 14px;
  padding-left: 15px;
}

.reason__sub-list {
  margin-top: 10px;
  padding-left: 15px;
}

.reason__sub-item {
  margin-left: 11px;
  font-size: clamp(1rem, -0.0909090909rem + 5.4545454545vw, 1.1875rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  word-break: keep-all;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
}

.reason__sub-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0168B7;
}

.voice__block {
  padding: 40px 15px;
  background: #fff;
}

.voice__title {
  width: 54vw;
  max-width: 270px;
  margin-inline: auto;
}

.voice__list {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 66px;
}

.voice__item {
  padding: 58px 18px 16px;
  max-width: 345px;
  margin-inline: auto;
  background: #E7FAFF;
  border: 2px solid #0168B7;
  border-radius: 5px;
  position: relative;
  counter-increment: number;
}

.voice__item:nth-of-type(even) {
  background: #fffdd2;
}

.voice__item::after {
  content: "VOICE " counter(number);
  color: #0168B7;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
  position: absolute;
  top: -28px;
  right: 4px;
}

.voice__item-img {
  width: 94px;
  margin: -106px auto 0;
}

.voice__item-heading {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
}

.voice__item-text {
  margin-top: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.orange {
  color: #fe5900;
  font-weight: bold;
}

.step__block {
  background: #fffdd2;
  padding: 40px 30px 40px;
}

.step__title {
  width: 64.8vw;
  max-width: 315px;
  margin-inline: auto;
}
.step__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step__list {
  margin: 16px auto 0;
  max-width: 315px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.step__item {
  background: #fff;
  border: 2px solid #0168B7;
  position: relative;
}

.step__item:not(:last-of-type):after {
  content: "";
  width: 28px;
  height: 14px;
  background: #0168B7;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.step__item-title {
  background: #0168B7;
  padding: 3px 9px;
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.step__item-title .number {
  padding-right: 9px;
  margin-right: 10px;
  font-size: 1.4375rem;
  position: relative;
}

.step__item-title .number::after {
  content: "";
  background: #fffdd2;
  width: 0.5px;
  height: calc(100% + 8px);
  position: absolute;
  top: -4px;
  right: 0;
}

.step__item-contents {
  padding: 16px 15px 12px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.step__item-img {
  width: 89px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.step__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.step__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.faq__block {
  background: #fff;
  padding: 40px 15px 25px;
}

.faq__title {
  width: 52vw;
  max-width: 250px;
  margin-inline: auto;
}

.faq__list {
  margin: 6px auto 0;
  max-width: 345px;
}

.faq__item {
  padding-block: 15px;
  position: relative;
}

.faq__item:not(:first-of-type)::before {
  content: "";
  background: #CECECE;
  width: 100%;
  height: 0.5px;
  position: absolute;
  top: 0;
  left: 0;
}

.faq__item-title {
  padding: 11px 0 11px 15px;
  background: #fe5900;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq__item-title .q {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin: 1px 10px 0 0;
  color: #fe5900;
  background: #fff;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}

.faq__item-contents {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}

.faq__item-contents.blue {
  margin-top: 5px;
}

.faq__item-others {
  background: #e2e2e2;
  width: 28.9855072464%;
  height: 68px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-content: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.faq__item-black-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.faq__item-here {
  background: #0168B7;
  width: 28.9855072464%;
  height: 68px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
}

.faq__item-blue-text {
  color: #0168B7;
  font-size: 0.9375rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.message__block {
  background: url(../img/message-img.webp) #E7FAFF no-repeat top;
  background-size: contain;
  padding: 40px 15px 50px;
}

.message__title span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  background: #0168B7;
  color: #fff;
  font-size: clamp(1.375rem, -0.0795454545rem + 7.2727272727vw, 1.625rem);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.message__title span:nth-child(2) {
  margin-top: 8px;
}

.message__text {
  max-width: 345px;
  background: #fff;
  border: 2px solid #0168B7;
  border-radius: 5px;
  margin: 36px auto 0;
  padding: 18px;
  font-size: clamp(0.875rem, 0.5113636364rem + 1.8181818182vw, 0.9375rem);
  font-weight: normal;
  line-height: 28.5px;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 420px) {
  .message__text {
    margin: 80px auto 0;
  }
}

.message__text .orange {
  color: #fe5900;
  font-weight: bold;
}

.letter-style {
  background-image: radial-gradient(ellipse 3px 0.4px, #ddd 2.5px, transparent 4px);
  background-size: 8px 28.5px; /* ← ここが重要！line-heightと一致 */
  background-position: 0 -15px; /* ← 実測調整。上下のズレを微修正 */
}

.apply__block {
  padding-bottom: 36px;
}

.apply__title {
  background: url(../img/apply-img.webp) no-repeat center;
  background-size: cover;
  padding-block: 35px;
  color: #fff;
  font-size: 1.8125rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.apply__title-sub {
  margin-top: 25px;
  font-size: 1.1875rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.apply__form {
  margin: 25px 15px 0 15px;
  padding: 0 15px 0 15px;
}

.form__table {
  width: 100%;
}

.form__item {
  width: 100%;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form__item + .form__item {
  margin-top: 20px;
}

.form__label {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.label-required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 17px;
  background: #B40000;
  border-radius: 30px;
  margin-left: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
}

.form__input-box {
  width: 100%;
}

.form__radio-box {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__radio-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  cursor: pointer;
}

.form__radio {
  display: block;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  border-radius: 50%;
  margin: 0 4px 0 0;
}

.form__radio:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
}

.form__radio + .form__radio {
  margin-left: 10px;
}

.form__text {
  margin-top: 8px;
  width: 100%;
  height: 38px;
  background: #efefef;
  border: none;
  padding: 0 16px;
  font-size: 16px;
}

.form__select {
  margin-top: 8px;
  height: 38px;
  background: #efefef;
  border: none;
}

.form-year {
  width: 26.9841269841%;
}

.form-month,
.form-day {
  width: 16.1904761905%;
}

.form-address {
  width: 100%;
}

.form__item .date {
  margin: 0 6px 0 6px;
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

select:invalid {
  color: #999;
  font-weight: 500;
}

select option {
  color: #000;
}

.form__btn-box {
  margin: 30px auto 0;
  width: 100%;
  max-width: 394px;
  position: relative;
}

.apply-btn {
  margin-inline: auto;
  display: block;
  background: #B40000;
  width: inherit;
  height: inherit;
  padding: 11px 0;
  border: none;
  border-radius: 55px;
  -webkit-box-shadow: 0 5px 0 0 #870000;
          box-shadow: 0 5px 0 0 #870000;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.apply-btn:hover {
  opacity: 0.7;
}

.form__btn-box::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/vector.webp) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
}

.company__block {
  padding: 120px 0 200px;
  background: #E7FAFF;
}

.company__title-jp {
  font-size: 20px;
  text-align: center;
}

.company__title-en {
  margin-top: 12px;
  color: #0168B7;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.company__list {
  margin-top: 80px;
  padding-inline: 20px;
}

.company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}

.company__list-term {
  width: 80px;
  color: #0168B7;
  font-weight: bold;
  line-height: 1.8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.company__list-desc {
  padding-left: 10px;
  line-height: 1.8;
}
.company__list-desc a {
  color: #000;
}

@media (any-hover: hover) {
  .company__list-desc a:hover {
    opacity: 0.7;
  }
}
.privacy__block {
  padding: 60px 0;
}

.privacy__title {
  background: #E7FAFF;
  padding: 12px 0 12px 16px;
  font-size: 24px;
  font-weight: bold;
}

.privacy__contents {
  padding-inline: 15px;
}

.privacy__head {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.privacy__item {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
}

.privacy__item-list {
  padding-left: 28px;
}

.privacy__item-text {
  list-style: disc;
}
.privacy__item-text::marker {
  font-size: 10px;
}

.privacy__medium-list {
  padding-left: 28px;
}

.privacy__medium-list-item {
  list-style: circle;
}
.privacy__medium-list-item::marker {
  font-size: 10px;
}

.privacy__small-list {
  padding-left: 28px;
}

.privacy__small-list-item {
  list-style-type: decimal;
}
.privacy__small-list-item::marker {
  font-size: 14px;
}

.privacy__item-address {
  margin-top: 8px;
  padding-left: 28px;
}

.privacy__end {
  margin-top: 8px;
}

.inner {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}

.pin-cta__area {
  width: 100%;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.8);
  margin: 0 auto;
  padding: 18px 0;
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}

.cta__line.pin-cta {
  margin-top: 0;
}

.cta-area {
  background: #E7FAFF;
  padding: 30px 17px;
}

.cta__text {
  font-size: clamp(1.3125rem, 0.75rem + 2.4vw, 1.5rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.08em;
  text-align: center;
  white-space: nowrap;
}

.cta__text .small {
  font-size: 1.25rem;
}

.cta__line {
  margin-top: 15px;
  max-width: 340px;
  height: 72px;
  margin-inline: auto;
}

.cta__line-link {
  width: inherit;
  height: inherit;
  padding: 10px 0 6px 76px;
  background: url(../img/line-bg.webp) no-repeat center;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 360px) {
  .cta__line-link {
    padding: 16px 0 10px 65px;
  }
}

@media (any-hover: hover) {
  .cta__line-link:hover {
    opacity: 0.7;
  }
}
.cta__line-link::before {
  content: "";
  width: 43.5px;
  height: 41.5px;
  background: url(../img/line-icon.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 15px;
  left: 22px;
}
@media screen and (max-width: 360px) {
  .cta__line-link::before {
    width: 32px;
  }
}

.cta__line-link::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 8px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: 30px;
  right: 13.5px;
}

.cta__line-link .green {
  display: block;
  margin-left: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 7px 1px 7px;
  border-radius: 35px;
  background: #fff;
  color: #02be03;
  font-size: clamp(0.75rem, 0.0227272727rem + 3.6363636364vw, 0.875rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.cta__line-link .yellow {
  display: block;
  color: #fff000;
  font-size: clamp(1rem, -1.1818181818rem + 10.9090909091vw, 1.375rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.cta__tel {
  margin-top: 20px;
  max-width: 340px;
  aspect-ratio: 340/70;
  margin-inline: auto;
}

.cta__tel-link {
  width: inherit;
  height: inherit;
  padding: 5px 0 6px 69px;
  background: #fff;
  border: 3px solid #fe5900;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (max-width: 360px) {
  .cta__tel-link {
    padding: 10px 0 9px 58px;
  }
}

.cta__tel-link::before {
  content: "";
  width: 31.5px;
  height: 21px;
  background: url(../img/tel-icon.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 32px;
  left: 48px;
}
@media screen and (max-width: 360px) {
  .cta__tel-link::before {
    width: 26px;
    top: 30px;
    left: 46px;
  }
}

.cta__tel-link::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 8px;
  height: 10px;
  background: #fe5900;
  position: absolute;
  top: 26px;
  right: 12px;
}

.cta__tel-link .text {
  display: block;
  color: #000;
  font-size: clamp(0.8125rem, 0.4488636364rem + 1.8181818182vw, 0.875rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.cta__tel-link .tel {
  display: block;
  margin-left: 22px;
  color: #000;
  font-size: clamp(1.5rem, -0.6818181818rem + 10.9090909091vw, 1.875rem);
  font-weight: bold;
  line-height: 1.08;
  letter-spacing: normal;
}

.cta-area.blue {
  background: #0168B7;
}

.cta-area.blue .cta__text {
  color: #fff;
}

.move-btn {
  -webkit-animation: btn_animation 2s infinite;
          animation: btn_animation 2s infinite;
}

@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: translate(4px, 0px);
            transform: translate(4px, 0px);
  }
  5% {
    -webkit-transform: translate(-4px, 0px);
            transform: translate(-4px, 0px);
  }
  10% {
    -webkit-transform: translate(4px, 0px);
            transform: translate(4px, 0px);
  }
  15% {
    -webkit-transform: translate(-4px, 0px);
            transform: translate(-4px, 0px);
  }
  20% {
    -webkit-transform: translate(4px, 0px);
            transform: translate(4px, 0px);
  }
  25% {
    -webkit-transform: translate(-4px, 0px);
            transform: translate(-4px, 0px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes btn_animation {
  0% {
    -webkit-transform: translate(4px, 0px);
            transform: translate(4px, 0px);
  }
  5% {
    -webkit-transform: translate(-4px, 0px);
            transform: translate(-4px, 0px);
  }
  10% {
    -webkit-transform: translate(4px, 0px);
            transform: translate(4px, 0px);
  }
  15% {
    -webkit-transform: translate(-4px, 0px);
            transform: translate(-4px, 0px);
  }
  20% {
    -webkit-transform: translate(4px, 0px);
            transform: translate(4px, 0px);
  }
  25% {
    -webkit-transform: translate(-4px, 0px);
            transform: translate(-4px, 0px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}