@charset "UTF-8";
/**
 * index.scss
 * このファイルではスタイリングしない
 * 他のSassファイルを呼び出してコンパイルさせるファイル
 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

input, select {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
a:hover {
  opacity: 0.7;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
:after,
:before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

a,
button {
  outline: 0;
}

button {
  padding: 0;
  border: 0;
  background: 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

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

dl,
p {
  margin: 0;
}

dl {
  padding: 0;
}

dd {
  margin: 0;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.header {
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
.header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .header .header_inner {
    padding: 10px 12px;
  }
}
.header .header_inner .header_logo-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .header_inner .header_logo-container .header_logo {
  margin-right: 15px;
  width: 100px;
}
.header .header_inner .header_logo-container .header_logo-text {
  font-size: 15px;
}
@media (max-width: 767px) {
  .header .header_inner .header_logo-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .header_inner .header_logo-container .header_logo-text {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.header .header_inner .header_link-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
}
.header .header_inner .header_link-container .header_text-link {
  font-size: 13px;
}

.header_button:hover,
.support > a:hover,
.secret-btn:hover,
.entry_submit:hover {
  opacity: 0.75;
}

.header_button {
  background-color: #ffe400;
  color: #333;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  gap: 5px;
}
@media (max-width: 767px) {
  .header_button {
    padding: 15px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .header_button {
    font-size: 10px;
    padding: 10px;
  }
}
.header_button img {
  height: inherit;
  width: 8%;
}
.header_button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 7px;
}

@media (max-width: 767px) {
  .header_logo-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body {
  margin: auto;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 767px) {
  body {
    min-width: 0px;
  }
}

.main-content {
  overflow-x: hidden;
}

.content-inner {
  margin: auto;
  max-width: 1000px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .content-inner {
    padding: 0;
    width: 100%;
  }
}

footer {
  background-color: #fff;
}

.footer_inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_inner .footer_flex-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_inner .footer_flex-container .footer_link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container .footer_link-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer_inner .footer_flex-container .footer_link-list li a {
  font-size: 12px;
  text-decoration: underline;
}
.footer_inner .footer_flex-container .footer_link-list li a:last-child {
  width: 46%;
}
.footer_inner .footer_flex-container .footer_copyright {
  font-size: 10px;
}
.footer_inner .footer_privacy {
  margin-left: auto;
  width: 70px;
}
@media (max-width: 767px) {
  .footer_inner .footer_privacy {
    -webkit-transform: translateY(-33%);
            transform: translateY(-33%);
    position: absolute;
    right: 5%;
  }
}

.is-pc {
  display: block !important;
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.blue-bg {
  background-color: #0156A0;
}

.green-bg {
  background-color: #484848;
}

.blue {
  color: #0156A0;
}

.green {
  color: #484848;
}

.w4 {
  font-weight: 400;
}

.w5 {
  font-weight: 500;
}

.w6 {
  font-weight: 600;
}

.w7 {
  font-weight: 700;
}

.w8 {
  font-weight: 800;
}

/*
 * サイト共通部品 @Component
 * ボタン周り
 * 接頭辞「c-」を使用した方が分かりやすいが、
 * これまでの管理上、接頭辞なしで運用中
 */
.footer {
  padding-bottom: 32px;
  background-color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer {
    padding-bottom: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 9.3333333333vw;
  }
}

.footer-inner {
  max-width: 1080px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-inner {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    display: block;
    position: relative;
    width: 100%;
    padding: 8.5333333333vw 0;
  }
}

.footer-col:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-col:nth-child(1) {
    margin-top: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer-col:nth-child(1) {
    margin-top: 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-col:nth-child(2) {
    position: absolute;
    top: 4.2666666667vw;
    right: 6.4vw;
  }
}

.footer-logo {
  width: 128px;
  height: auto;
  display: inline-block;
  margin-right: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-logo {
    width: 10vw;
    margin-right: 3.75vw;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    width: 26.9333333333vw;
    display: block;
    margin: 0 auto 0 6.4vw;
  }
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-list {
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4.2666666667vw 8vw;
    margin-top: 8vw;
  }
}

.footer-nav-item a {
  color: #07080C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-item a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-item a {
    font-size: 3.2vw;
  }
}

.footer-icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-icon-list a img {
  width: 80px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-icon-list a img {
    width: 6.25vw;
  }
}
@media (max-width: 767px) {
  .footer-icon-list a img {
    width: 16vw;
  }
}

.footer-copyright {
  width: 100%;
  color: #666;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  margin: 16px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-copyright {
    font-size: 0.78125vw;
    margin: 1.25vw auto 0;
  }
}
@media (max-width: 767px) {
  .footer-copyright {
    display: block;
    text-align: center;
    font-size: 3.2vw;
    color: #666;
    padding: 1.0666666667vw;
    background-color: unset;
    margin-top: 0;
  }
}

.footer-privacymark {
  width: 72px;
  height: 72px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-privacymark {
    width: 5.625vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .footer-privacymark {
    width: 16vw;
    height: 16vw;
  }
}

body {
  overflow-wrap: unset !important;
  overscroll-behavior-y: unset !important;
}

main {
  overflow: unset !important;
}

.main-content {
  background: #f0f0f0;
  margin-top: 54px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .main-content {
    margin-top: 4.21875vw;
  }
}
@media (max-width: 767px) {
  .main-content {
    margin-top: 0;
  }
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .header {
    position: relative;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-inner {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 2.0512820513vw 3.8461538462vw;
  }
}

.header-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col {
    padding: 0.625vw 4.6875vw;
  }
}
@media (max-width: 767px) {
  .header-col {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-col:nth-child(1) {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.header-col:nth-child(1) span {
  font-size: 12px;
  color: #07080c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col:nth-child(1) span {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-col:nth-child(1) span {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 2.5641025641vw;
  }
}

.header-logo {
  width: 90px;
  height: auto;
  margin-right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-logo {
    width: 7.03125vw;
    margin-right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 23.0769230769vw;
    margin-right: 0;
  }
}

.header-link {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-decoration-line: underline;
  margin-right: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-link {
    font-size: 0.9375vw;
    margin-right: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .header-link {
    display: none;
  }
}

.header-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #1e1f25;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 1;
  border-radius: 4px;
  width: 200px;
  height: 38px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn {
    font-size: 1.25vw;
    width: 15.625vw;
    height: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .header-btn {
    font-size: 3.5897435897vw;
    width: 39.2307692308vw;
    height: 10vw;
  }
}

.header-btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url("/content_assets/54dp2/img/btn-arrow-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 5px);
  right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn::after {
    width: 0.46875vw;
    height: 0.78125vw;
    top: calc(50% - 0.390625vw);
    right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-btn::after {
    display: none;
  }
}

@media (min-width: 1920px) {
  .fv-wrap {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1920px) {
  .fv-wrap::before {
    content: "";
    display: inline-block;
    width: 50%;
    height: 526px;
    background-image: url("/content_assets/54dp2/img/fv-bg-left.png");
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 1920px) {
  .fv-wrap::after {
    content: "";
    display: inline-block;
    width: 50%;
    height: 526px;
    background-image: url("/content_assets/54dp2/img/fv-bg-right.png");
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.fv {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), color-stop(113.7%, #e1e1e1));
  background: linear-gradient(180deg, #f9f9f9 0%, #e1e1e1 113.7%);
  background-image: url("/content_assets/54dp2/img/fv-bg-pc.webp");
  background-size: 1920px 526px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 1920px) {
  .fv {
    background-size: contain;
    position: relative;
    z-index: 2;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv {
    background-size: 150vw 41.09375vw;
  }
}
@media (max-width: 767px) {
  .fv {
    background-image: unset;
  }
}

.fv-inner {
  height: 526px;
  max-width: 980px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner {
    height: 41.09375vw;
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .fv-inner {
    height: unset;
  }
}

.fv-content {
  width: 500px;
  position: absolute;
  left: 54%;
  top: 46px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-content {
    width: 54%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .fv-content {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
  }
}

.fv-main-copy1 {
  color: #252525;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4.36px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy1 {
    font-size: 2.421875vw;
  }
}

.fv-main-copy--strong {
  color: #0062c3;
}

.fv-main-copy2 {
  color: #252525;
  font-size: 49.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4.36px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy2 {
    font-size: 3.8671875vw;
  }
}

.fv-main-copy3 {
  color: #252525;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.96px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy3 {
    margin-top: 1.25vw;
    font-size: 1.25vw;
  }
}

.fv-main-copy4 {
  width: 492px;
  color: #0062c3;
  border-radius: 2px;
  background: #b2cce8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy4 {
    width: 38.4375vw;
    margin-top: 1.25vw;
    font-size: 1.25vw;
  }
}

.fv-main-copy4_text {
  color: #0062c3;
  font-size: 20px;
}

.fv-main-copy4_text2 {
  font-size: 18px;
}

.fv-main-copy4_circle {
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fv-main-copy4_checkmark {
  width: 9px;
  height: 6px;
  border-left: 2.5px solid #0062c3;
  border-bottom: 2.5px solid #0062c3;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 29%;
  left: 26%;
}

.fv-cv-box {
  width: 492px;
  height: 219px;
  border-radius: 6px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.58);
  margin-top: 16px;
  padding: 40px;
}
@media (max-width: 767px) {
  .fv-cv-box {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-box {
    width: 38.4375vw;
    height: 17.421875vw;
    margin-top: 1.25vw;
    padding: 3.125vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-box {
    background: rgba(255, 255, 255, 0.8);
    height: 45.3846153846vw;
    position: absolute;
    left: 0;
    bottom: 5.1282051282vw;
    padding: 5.1282051282vw 3.5897435897vw;
  }
}

.fv-cv-title {
  color: #0062c3;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-title {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-title {
    font-size: 4.8717948718vw;
  }
}

.fv-cv-title-bubble {
  font-size: 14px;
  padding: 4px 5px;
  background: #0062c3;
  color: #fff;
  margin-right: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-title-bubble {
    font-size: 1.09375vw;
    padding: 0.3125vw 0.390625vw;
    margin-right: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-title-bubble {
    font-size: 3.0769230769vw;
    padding: 1.0256410256vw 1.5384615385vw;
    margin-bottom: 1.5384615385vw;
    margin-right: unset;
    display: inline-block;
  }
}

.fv-cv-text {
  color: #1e1f25;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 21px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-text {
    font-size: 1.25vw;
    margin-top: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-text {
    font-size: 3.5897435897vw;
    margin-top: 3.0769230769vw;
  }
}

.fv-cv-btn-box {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn-box {
    margin-top: 1.875vw;
    gap: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn-box {
    margin-top: 4.1025641026vw;
    gap: 1.5384615385vw;
  }
}

.fv-cv-btn {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 200px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  background: #1e1f25;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn {
    font-size: 1.40625vw;
    width: 15.625vw;
    height: 4.375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn {
    font-size: 4.1025641026vw;
    width: 38.4615384615vw;
    height: 12.8205128205vw;
  }
}

.fv-cv-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .fv-cv-btn::before {
    content: "";
    display: inline-block;
    width: 1.5384615385vw;
    height: 2.5641025641vw;
    background-image: url("/content_assets/54dp2/img/btn-arrow-blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 1.5384615385vw;
  }
}

.fv-cv-btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url("/content_assets/54dp2/img/btn-arrow-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 3px);
  right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn::after {
    width: 0.46875vw;
    height: 0.78125vw;
    top: calc(50% - 0.390625vw);
    right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn::after {
    display: none;
  }
}

.common-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
  background: #252525;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  width: 480px;
  height: 72px;
  position: relative;
  z-index: 2;
  border-radius: 2px;
  padding-left: 30px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn {
    font-size: 1.71875vw;
    width: 37.5vw;
    height: 5.625vw;
    padding-left: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .common-btn {
    font-size: 4.6153846154vw;
    width: calc(100% - 10.2564102564vw);
    height: 15.3846153846vw;
    padding-left: 10.2564102564vw;
  }
}

.common-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/54dp2/img/btn-arrow-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn::after {
    width: 0.78125vw;
    height: 1.09375vw;
    top: calc(50% - 0.546875vw);
    right: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .common-btn::after {
    width: 2.5641025641vw;
    height: 3.5897435897vw;
    top: calc(50% - 1.7948717949vw);
    right: 3.0769230769vw;
  }
}

.common-btn:hover {
  opacity: 0.7 !important;
}

.common-btn-bubble {
  background: #0062c3;
  padding: 4px 6px;
  margin-right: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble {
    padding: 0.3125vw 0.46875vw;
    margin-right: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble {
    padding: 1.0256410256vw 1.5384615385vw;
    margin-right: 1.5384615385vw;
  }
}

.common-btn-bubble span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble span {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble span {
    font-size: 3.0769230769vw;
  }
}

.fade {
  -webkit-transition: none;
  transition: none; /* 他のトランジションが影響しないように設定 */
  will-change: transform, opacity; /* アニメーションのパフォーマンスを向上 */
}

.logos-slider {
  -webkit-filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.06));
          filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.06));
  background-color: #fff;
}

.logos-slider .slick-slide {
  width: 120px;
  height: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .logos-slider .slick-slide {
    width: 9.375vw;
    height: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .logos-slider .slick-slide {
    width: 30.7692307692vw;
    height: 15.3846153846vw;
  }
}

.worries {
  padding: 80px 0 120px 0;
  background-color: #cfddeb;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries {
    padding: 6.25vw 0 9.375vw 0;
  }
}
@media (max-width: 767px) {
  .worries {
    padding: 15.3846153846vw 0 12.8205128205vw 0;
  }
}

.worries-heading {
  color: #252525;
  font-size: 28px;
  font-weight: 900;
  line-height: 100%;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-heading {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .worries-heading {
    font-size: 5.1282051282vw;
  }
}

.worries-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-box {
    max-width: 76.5625vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-box {
    margin: 3.90625vw auto 0;
    gap: 3.75vw;
  }
}
@media (max-width: 767px) {
  .worries-box {
    display: block;
    margin: 7.6923076923vw auto 0;
  }
}

.worries-col {
  position: relative;
}
@media (max-width: 767px) {
  .worries-col {
    display: block;
    margin: 0 5.1282051282vw;
  }
}

@media (max-width: 767px) {
  .worries-col + .worries-col {
    margin-top: 7.6923076923vw;
  }
}

.worries-bubble {
  width: 466px;
  height: 146px;
  background: #aac1db;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble {
    width: 36.40625vw;
    height: 11.40625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble {
    width: 100%;
    height: 27.9487179487vw;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(even) .worries-bubble {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.worries-bubble__inner {
  color: #252525;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__inner {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__inner {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}

.worries-bubble__inner strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__inner strong {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__inner strong {
    font-size: 4.6153846154vw;
    line-height: 1.5;
  }
}

.worries-bubble__count {
  font-family: "din-2014", sans-serif;
  color: #0062c3;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__count {
    font-size: 2.34375vw;
    top: -0.78125vw;
    right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__count {
    font-size: 6.1538461538vw;
    top: -2.5641025641vw;
    left: unset;
    right: 2.5641025641vw;
  }
}

.worries-col:nth-child(1) .worries-bubble__img {
  width: 95px;
  height: 166px;
  position: absolute;
  top: 14px;
  left: -27px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(1) .worries-bubble__img {
    width: 7.421875vw;
    height: 12.96875vw;
    top: 1.09375vw;
    left: -2.109375vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(1) .worries-bubble__img {
    width: 17.4358974359vw;
    height: 30.7692307692vw;
    top: 2.0512820513vw;
    left: -1.0256410256vw;
  }
}

.worries-col:nth-child(2) .worries-bubble__img {
  width: 110px;
  height: 166px;
  position: absolute;
  top: 14px;
  left: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(2) .worries-bubble__img {
    width: 8.59375vw;
    height: 12.96875vw;
    top: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(2) .worries-bubble__img {
    width: 20.2564102564vw;
    height: 30.7692307692vw;
    top: 2.8205128205vw;
    left: unset;
    right: -1.5384615385vw;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(2) .worries-bubble__count {
    left: 2.5641025641vw;
    right: unset;
  }
}

.relay-arrow {
  width: 100%;
  margin: 20px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow {
    margin: 1.5625vw 0;
  }
}
@media (max-width: 767px) {
  .relay-arrow {
    margin: 5.1282051282vw 0;
  }
}

.relay-arrow-img1 {
  display: block;
  width: 100px;
  height: 76px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow-img1 {
    width: 7.8125vw;
    height: 5.9375vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow-img1 {
    width: 12.8205128205vw;
    height: 9.7435897436vw;
  }
}

.relay-arrow-img2 {
  display: block;
  width: 26px;
  height: 68px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow-img2 {
    width: 2.03125vw;
    height: 5.3125vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow-img2 {
    width: 5.641025641vw;
    height: 12.8205128205vw;
  }
}

.introduction {
  background-color: #f0f3fa;
  padding-bottom: 120px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction {
    padding-bottom: 9.375vw;
  }
}
@media (max-width: 767px) {
  .introduction {
    padding-bottom: 12.8205128205vw;
  }
}

.introduction-heading {
  text-align: center;
}

.introduction-heading-sub {
  color: #252525;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-sub {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-sub {
    font-size: 3.5897435897vw;
    line-height: 1.8;
  }
}

.introduction-heading-main {
  color: #0062c3;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-top: 16px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-main {
    margin-top: 1.25vw;
    font-size: 3.59375vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-main {
    margin-top: 0.5128205128vw;
    font-size: 6.6666666667vw;
    line-height: 1.3;
  }
}

.introduction-relay-arrow {
  margin: 0 auto 25px;
  -webkit-transform: translateY(-38px);
          transform: translateY(-38px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-relay-arrow {
    -webkit-transform: translateY(-2.96875vw);
            transform: translateY(-2.96875vw);
    margin: 0 auto 1.953125vw;
  }
}
@media (max-width: 767px) {
  .introduction-relay-arrow {
    -webkit-transform: translateY(-4.8717948718vw);
            transform: translateY(-4.8717948718vw);
    margin: 0 auto 3.0769230769vw;
  }
}

.introduction-point {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  margin-top: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point {
    max-width: 76.5625vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point {
    gap: 3.75vw;
    margin-top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point {
    display: block;
    margin-top: 7.6923076923vw;
  }
}

@media (max-width: 767px) {
  .introduction-point-col + .introduction-point-col {
    margin-top: 7.6923076923vw;
  }
}

.introduction-point-col__inner {
  width: 476px;
  height: 232px;
  border-radius: 4px;
  background: #0062c3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__inner {
    width: 37.1875vw;
    height: 18.125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__inner {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
    height: 47.1794871795vw;
  }
}

.introduction-point-col__badge {
  width: 111px;
  height: 111px;
  background-image: url("/content_assets/54dp2/img/introduction-point-col__badge-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -33px;
  right: -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge {
    width: 8.671875vw;
    height: 8.671875vw;
    top: -2.578125vw;
    right: -0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge {
    width: 22.0512820513vw;
    height: 22.0512820513vw;
    top: -5.1282051282vw;
    right: -2.5641025641vw;
  }
}

.introduction-point-col__badge-inner {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge-inner {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge-inner {
    font-size: 3.0769230769vw;
  }
}

.introduction-point-col__badge-inner1 {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.introduction-point-col__badge-number1 {
  font-family: "din-2014", sans-serif;
  font-size: 31px;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge-number1 {
    font-size: 2.421875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge-number1 {
    font-size: 6.1538461538vw;
  }
}

.introduction-point-col__badge-unit1 {
  font-family: "din-2014", sans-serif;
  font-size: 16px;
  margin-left: -4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge-unit1 {
    font-size: 1.25vw;
    margin-left: -0.3125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge-unit1 {
    font-size: 3.0769230769vw;
    margin-left: -1.0256410256vw;
  }
}

.introduction-point-col__badge-small {
  font-family: "din-2014", sans-serif;
  font-size: 12px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge-small {
    font-size: 0.9375vw;
    -webkit-transform: translateY(-0.390625vw);
            transform: translateY(-0.390625vw);
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge-small {
    font-size: 2.0512820513vw;
    -webkit-transform: translateY(-1.2820512821vw);
            transform: translateY(-1.2820512821vw);
  }
}

.introduction-point-col__badge-superscript1 {
  font-family: "din-2014", sans-serif;
  font-size: 8px;
}
@media (max-width: 767px) {
  .introduction-point-col__badge-superscript1 {
    font-size: 2.0512820513vw;
  }
}

.introduction-point-col__badge-superscript2 {
  font-family: "din-2014", sans-serif;
  font-size: 8px;
  position: absolute;
  top: -8px;
  right: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge-superscript2 {
    top: -0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge-superscript2 {
    top: -2.0512820513vw;
    font-size: 2.0512820513vw;
  }
}

.introduction-point-col__data {
  display: block;
  margin: 10px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data {
    margin: 0.78125vw auto 0;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data {
    margin: 2.5641025641vw auto 0;
  }
}

.introduction-point-col__data-title {
  font-family: "Yu Gothic StdN E", sans-serif;
  color: #cfddeb;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-title {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-title {
    font-size: 4.6153846154vw;
  }
}

.introduction-point-col__data-number1 {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -1.6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-number1 {
    font-size: 6.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-number1 {
    font-size: 16.4102564103vw;
  }
}

.introduction-point-col__data-unit1 {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 80%;
  letter-spacing: -0.48px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-unit1 {
    font-size: 1.875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-unit1 {
    font-size: 5.641025641vw;
    letter-spacing: -0.44px;
  }
}

.introduction-point-col__data-superscript1 {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 80%;
  position: absolute;
  right: 0;
  bottom: calc(100% + 3px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-superscript1 {
    bottom: calc(100% + 0.234375vw);
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-superscript1 {
    font-size: 2.0512820513vw;
  }
}

.introduction-point-col__data-superscript2 {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 80%;
  position: absolute;
  right: 0;
  bottom: calc(100% + 3px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-superscript2 {
    bottom: calc(100% + 0.234375vw);
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-superscript2 {
    font-size: 2.0512820513vw;
  }
}

.introduction-point-col__data-summary {
  background-color: #cfddeb;
  width: 280px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-summary {
    width: 21.875vw;
    height: 3.125vw;
    margin: 1.5625vw auto 0;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-summary {
    width: 54.358974359vw;
    height: auto;
    margin: 2.5641025641vw auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5384615385vw 2.0512820513vw;
  }
}

.introduction-point-col__data-summary-text {
  color: #1e1f25;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-summary-text {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-summary-text {
    font-size: 4.1025641026vw;
  }
}

.introduction-point-col__data-summary-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/content_assets/54dp2/img/introduction-summary-icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-summary-text::before {
    width: 1.40625vw;
    height: 1.40625vw;
    margin-right: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-summary-text::before {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    margin-right: 1.0256410256vw;
  }
}

.introduction-point-col__notice {
  color: #717479;
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__notice {
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__notice {
    font-size: 2.5641025641vw;
    margin-top: 2.0512820513vw;
    margin-right: 5.1282051282vw;
  }
}

.introduction-point-col__badge-number2 {
  font-family: "din-2014", sans-serif;
  font-size: 44px;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge-number2 {
    font-size: 3.4375vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge-number2 {
    font-size: 8.7179487179vw;
  }
}

.introduction-point-col__badge-unit2 {
  font-family: "din-2014", sans-serif;
  font-size: 22px;
  margin-left: -5px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge-unit2 {
    font-size: 1.71875vw;
    margin-left: -0.390625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge-unit2 {
    font-size: 4.1025641026vw;
    margin-left: -1.2820512821vw;
  }
}

.introduction-point-col__data-number2 {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: -1.6px;
  -webkit-transform: translateY(13px);
          transform: translateY(13px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-number2 {
    font-size: 6.25vw;
    -webkit-transform: translateY(1.015625vw);
            transform: translateY(1.015625vw);
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-number2 {
    font-size: 16.4102564103vw;
    -webkit-transform: translateY(2.3076923077vw);
            transform: translateY(2.3076923077vw);
  }
}

.introduction-point-col__data-number2 span {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 0.5;
  letter-spacing: -1.6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-number2 span {
    font-size: 6.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-number2 span {
    font-size: 16.4102564103vw;
  }
}

.introduction-point-col__data-unit2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -1.6px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-unit2 {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-unit2 {
    letter-spacing: normal;
    font-size: 7.1794871795vw;
  }
}

.introduction-btn-box {
  margin-top: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-btn-box {
    margin-top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .introduction-btn-box {
    margin-top: 7.6923076923vw;
  }
}

.introduction-btn {
  margin: 0 auto;
}

.example {
  padding: 80px 0;
  background-color: #e3ecf6;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    padding: 6.25vw 0;
  }
}
@media (max-width: 767px) {
  .example {
    padding: 10.2564102564vw 0;
    position: relative;
  }
}

.example-heading {
  color: #252525;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-heading {
    font-size: 6.1538461538vw;
  }
}

.example-slider {
  margin-top: 30px;
  margin-bottom: 30px !important;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider {
    margin-top: 2.34375vw;
    margin-bottom: 2.34375vw !important;
  }
}
@media (max-width: 767px) {
  .example-slider {
    margin-top: 5.1282051282vw;
    margin-bottom: 5.1282051282vw !important;
  }
}

.example-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.example-slider .slick-slide {
  height: auto !important;
}

.example-slider-col {
  width: 346px;
  margin: 0 12px;
  cursor: pointer;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col {
    width: 27.03125vw;
    margin: 0 0.9375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col {
    width: 75.641025641vw;
    margin: 0 2.5641025641vw;
  }
}

.example-slider-col__income {
  border-radius: 3px;
  background: #3b3d49;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 14px 20px 20px;
  height: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income {
    margin: 1.09375vw 1.5625vw 1.5625vw;
    height: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income {
    margin: 2.8205128205vw 4.358974359vw 4.358974359vw;
    height: 13.0769230769vw;
  }
}

.example-slider-col__income-title {
  border-radius: 3px 0 0 3px;
  background: #0062c3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.example-slider-col__income-title span {
  font-family: "Yu Gothic StdN E", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  padding: 0 7px;
  color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-title span {
    font-size: 1.25vw;
    padding: 0 0.546875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-title span {
    font-size: 3.3333333333vw;
    padding: 0 1.2820512821vw;
  }
}

.example-slider-col__income-band {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.example-slider-col__income-omission {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30%;
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-omission {
    font-size: 2.03125vw;
    margin-left: 0.234375vw;
    margin-right: 0.234375vw;
    -webkit-transform: translateY(-0.390625vw);
            transform: translateY(-0.390625vw);
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-omission {
    font-size: 5.641025641vw;
    margin-left: 0.7692307692vw;
    margin-right: 0.7692307692vw;
    -webkit-transform: translateY(-1.2820512821vw);
            transform: translateY(-1.2820512821vw);
  }
}

.example-slider-col__income-number {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-number {
    font-size: 3.4375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-number {
    font-size: 9.6153846154vw;
  }
}

.example-slider-col__income-number small {
  font-size: 25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-number small {
    font-size: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-number small {
    font-size: 5.3333333333vw;
  }
}

.example-slider-col__income-unit {
  font-family: "Yu Gothic StdN E", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-unit {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-unit {
    font-size: 3.8461538462vw;
  }
}

.example-slider-col__company-name {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.22px;
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0062c3;
  border-radius: 4px 4px 0 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__company-name {
    height: 4.375vw;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__company-name {
    height: 12.3076923077vw;
    font-size: 4.358974359vw;
  }
}

.example-slider-col__company-name small {
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__company-name small {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__company-name small {
    font-size: 4.1025641026vw;
  }
}

.example-slider-col__img-area {
  width: 100%;
}

.example-slider-col__img {
  width: 100%;
  height: auto;
}

.example-slider-col__bandle {
  background-color: #c9d9e9;
  padding-bottom: 1px;
  border-radius: 0 0 4px 4px;
}

.example-slider-col__detail {
  padding: 20px 20px 0 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail {
    padding: 1.5625vw 1.5625vw 0 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail {
    padding: 4.358974359vw 4.358974359vw 0 4.358974359vw;
  }
}

.example-slider-col__detail-title {
  color: #1e1f25;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #95adcb;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-title {
    font-size: 1.71875vw;
    padding-bottom: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-title {
    font-size: 4.6153846154vw;
    padding-bottom: 3.3333333333vw;
  }
}

.example-slider-col__detail-inner {
  padding-top: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-inner {
    padding-top: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-inner {
    padding-top: 2.9487179487vw;
  }
}

.example-slider-col__detail-list-item {
  color: #1e1f25;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item {
    font-size: 3.3333333333vw;
  }
}

.example-slider-col__detail-list-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/content_assets/54dp2/img/example-icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  vertical-align: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item::before {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item::before {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
    margin-right: 1.0256410256vw;
  }
}

.example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
  margin-top: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 1.2820512821vw;
  }
}

.example-slider__notice {
  text-align: center;
  color: #717479;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider__notice {
    font-size: 0.78125vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .example-slider__notice {
    font-size: 2.5641025641vw;
    margin-top: 2.5641025641vw;
  }
}

.example-slider-custom-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .example-slider-custom-controls.arrow-centered {
    position: absolute;
    top: 59.8290598291vw;
    width: 100%;
  }
}

.example-slider-custom-dots {
  position: relative;
  height: 4px;
  max-width: 240px;
  background-color: #0062c3;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots {
    max-width: 18.75vw;
    height: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots {
    max-width: 41.0256410256vw;
    height: 1.0256410256vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots.is-hidden {
    display: none;
  }
}

.example-slider-custom-dots .example-slider-custom-dot-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease; /* Reduce transition time */
}

.example-slider-custom-arrow {
  width: 44px;
  height: 44px;
  background-image: url("/content_assets/54dp2/img/example-slider-custom-arrow-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-arrow {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-arrow {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
}

.example-slider-custom-arrow:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .example-slider-custom-arrow:hover {
    opacity: 1;
  }
}

.example-slider-custom-prev {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-prev {
    margin-right: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-prev {
    margin-right: 3.8461538462vw;
  }
}

@media (max-width: 767px) {
  .arrow-centered .example-slider-custom-prev {
    left: 20px;
    position: absolute;
  }
}

.example-slider-custom-next {
  background-image: url("/content_assets/54dp2/img/example-slider-custom-arrow-blue-r.svg");
  margin-left: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-next {
    margin-left: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-next {
    margin-left: 3.8461538462vw;
  }
}

@media (max-width: 767px) {
  .arrow-centered .example-slider-custom-next {
    right: 20px;
    position: absolute;
  }
}

.example-slider-custom-dots-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.example-slider-custom-dots-container .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: static;
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots {
    -webkit-transform: translateY(-0.5128205128vw);
            transform: translateY(-0.5128205128vw);
  }
}

.example-slider-custom-dots-container .slick-dots li {
  width: 12px;
  height: 14px;
  margin: 0 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li {
    width: 0.9375vw;
    height: 1.09375vw;
    margin: 0 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
    margin: 0 1.2820512821vw;
  }
}

.example-slider-custom-dots-container .slick-dots li button {
  width: 12px;
  height: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li button {
    width: 0.9375vw;
    height: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li button {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
  }
}

.example-slider-custom-dots-container .slick-dots li button:before {
  width: 12px;
  height: 14px;
  font-size: 12px;
  color: #1e1f25;
  opacity: 0.3;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li button:before {
    width: 0.9375vw;
    height: 1.09375vw;
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li button:before {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
    font-size: 2.5641025641vw;
  }
}

.example-slider-custom-dots-container .slick-dots li.slick-active button:before {
  color: #d9d9d9;
}

.probrem {
  padding: 80px 0 120px;
  background-color: #cfddeb;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem {
    padding: 6.25vw 0 9.375vw;
  }
}
@media (max-width: 767px) {
  .probrem {
    padding: 12.8205128205vw 0;
  }
}

.probrem-heading {
  color: #252525;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-heading {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .probrem-heading {
    font-size: 5.1282051282vw;
  }
}

.probrem-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-top: 80px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-box {
    gap: 4.6875vw;
    margin-top: 6.25vw;
  }
}
@media (max-width: 767px) {
  .probrem-box {
    display: block;
    gap: 6.4102564103vw;
    margin: 10.2564102564vw 5.1282051282vw 0 5.1282051282vw;
  }
}

.probrem-bubble {
  width: 466px;
  height: 146px;
  background: #aac1db;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble {
    width: 36.40625vw;
    height: 11.40625vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble {
    width: 100%;
    height: 27.9487179487vw;
  }
}

.probrem-bubble__inner {
  color: #252525;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble__inner {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble__inner {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}

.probrem-bubble__inner strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble__inner strong {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble__inner strong {
    font-size: 4.6153846154vw;
    line-height: 1.5;
  }
}

.probrem-bubble__count {
  font-family: "din-2014", sans-serif;
  color: #0062c3;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble__count {
    font-size: 2.34375vw;
    top: -0.78125vw;
    left: 1.25vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble__count {
    top: -2.5641025641vw;
    left: unset;
    right: 2.5641025641vw;
    font-size: 6.1538461538vw;
  }
}

@media (max-width: 767px) {
  .probrem-col + .probrem-col {
    margin-top: 7.6923076923vw;
  }
}

.probrem-col:nth-child(1) .probrem-bubble__img {
  width: 100px;
  height: 161px;
  position: absolute;
  bottom: -34px;
  right: -24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-col:nth-child(1) .probrem-bubble__img {
    width: 7.8125vw;
    height: 12.578125vw;
    bottom: -2.65625vw;
    right: -1.875vw;
  }
}
@media (max-width: 767px) {
  .probrem-col:nth-child(1) .probrem-bubble__img {
    width: 18.7179487179vw;
    height: 30.7692307692vw;
    bottom: -5.1282051282vw;
    right: unset;
    left: 2.3076923077vw;
  }
}

.probrem-col:nth-child(2) .probrem-bubble__img {
  width: 95px;
  height: 166px;
  position: absolute;
  bottom: -34px;
  right: -24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-col:nth-child(2) .probrem-bubble__img {
    width: 7.421875vw;
    height: 12.96875vw;
    bottom: -2.65625vw;
    right: -1.875vw;
  }
}
@media (max-width: 767px) {
  .probrem-col:nth-child(2) .probrem-bubble__img {
    width: 17.4358974359vw;
    height: 30.7692307692vw;
    bottom: -5.8974358974vw;
    right: -1.0256410256vw;
  }
}

@media (max-width: 767px) {
  .probrem-col:nth-child(2) .probrem-bubble__count {
    left: 2.5641025641vw;
    right: unset;
  }
}

.support {
  background-color: #f0f3fa;
}

.support-heading {
  text-align: center;
}

.support-heading-sub {
  color: #252525;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-sub {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .support-heading-sub {
    font-size: 4.1025641026vw;
    line-height: 1.8;
  }
}

.support-heading-main {
  color: #0062c3;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-main {
    margin-top: 1.5625vw;
    font-size: 3.59375vw;
  }
}
@media (max-width: 767px) {
  .support-heading-main {
    margin-top: 0.5128205128vw;
    font-size: 6.6666666667vw;
    line-height: 1.3;
  }
}

.support-relay-arrow1 {
  margin: 0 auto 25px;
  -webkit-transform: translateY(-38px);
          transform: translateY(-38px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-relay-arrow1 {
    -webkit-transform: translateY(-2.96875vw);
            transform: translateY(-2.96875vw);
    margin: 0 auto 1.953125vw;
  }
}
@media (max-width: 767px) {
  .support-relay-arrow1 {
    -webkit-transform: translateY(-4.8717948718vw);
            transform: translateY(-4.8717948718vw);
    margin: 0 auto 3.0769230769vw;
  }
}

.support-relay-arrow2 {
  margin: 50px auto 0;
  padding-bottom: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-relay-arrow2 {
    margin: 3.90625vw auto 0;
    padding-bottom: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-relay-arrow2 {
    margin: 6.6666666667vw auto 0;
    padding-bottom: 4.1025641026vw;
  }
}

.support-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-box {
    max-width: 76.5625vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-box {
    gap: 3.125vw;
    margin-top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .support-box {
    display: block;
    margin-top: 7.6923076923vw;
  }
}

@media (max-width: 767px) {
  .support-col + .support-col {
    margin-top: 7.6923076923vw;
  }
}

@media (max-width: 767px) {
  .support-col:nth-child(2) {
    margin-top: 7.6923076923vw;
  }
}

.support-col__inner {
  width: 300px;
  position: relative;
  background-color: #cfddeb;
  border-radius: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__inner {
    width: 23.4375vw;
  }
}
@media (max-width: 767px) {
  .support-col__inner {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}

.support-col__title {
  height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title {
    height: 6.71875vw;
  }
}
@media (max-width: 767px) {
  .support-col__title {
    height: 24.6153846154vw;
  }
}

.support-col__title-inner {
  color: #252525;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title-inner {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .support-col__title-inner {
    font-size: 4.6153846154vw;
  }
}

.support-col__title-inner span {
  font-size: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title-inner span {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support-col__title-inner span {
    font-size: 5.1282051282vw;
  }
}

.support-col__border {
  margin: 0 36px;
  border: none;
  border-top: 1px solid;
  border-color: #9dbfe1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__border {
    margin: 0 2.8125vw;
  }
}
@media (max-width: 767px) {
  .support-col__border {
    margin: 0 13.3333333333vw;
  }
}

.support-col__textarea {
  text-align: center;
  height: 174px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea {
    height: 13.59375vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea {
    height: 36.4102564103vw;
  }
}

.support-col__textarea1 {
  background-image: url("/content_assets/54dp2/img/support-col__text1-bg.png");
  background-repeat: no-repeat;
  background-size: 94px 101px;
  background-position: right 23px top 11px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea1 {
    background-size: 7.34375vw 7.890625vw;
    background-position: right 1.796875vw center 0.859375vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea1 {
    background-image: url("/content_assets/54dp2/img/support-col__text1-bg_sp.png");
    background-size: 21.5384615385vw 27.6923076923vw;
    background-position: right 10.2564102564vw top 2.0512820513vw;
  }
}

.support-col__text1 {
  color: #0062c3;
  font-size: 29px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -0.58px;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 {
    font-size: 2.265625vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 {
    font-size: 7.1794871795vw;
    line-height: 1;
    -webkit-transform: translateY(-26%);
            transform: translateY(-26%);
  }
}

.support-col__text1 strong {
  font-family: "din-2014", sans-serif;
  font-size: 100px;
  letter-spacing: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 strong {
    font-size: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 strong {
    font-size: 20.5128205128vw;
  }
}

.support-col__summary {
  background: #0062c3;
  width: 226px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 25%);
          transform: translate(-50%, 25%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary {
    width: 17.65625vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary {
    width: 58.9743589744vw;
    height: 8.7179487179vw;
  }
}

.support-col__summary-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary-text {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary-text {
    font-size: 4.6153846154vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.support-col__summary-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/content_assets/54dp2/img/support-summary-icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary-text::before {
    width: 1.40625vw;
    height: 1.40625vw;
    margin-right: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary-text::before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
    margin-right: 1.5384615385vw;
  }
}

.support-col__notice {
  color: #717479;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__notice {
    font-size: 0.78125vw;
    -webkit-transform: translate(0, -3.90625vw);
            transform: translate(0, -3.90625vw);
  }
}
@media (max-width: 767px) {
  .support-col__notice {
    font-size: 2.5641025641vw;
    -webkit-transform: translate(0, -9.2307692308vw);
            transform: translate(0, -9.2307692308vw);
  }
}

.support-col__text2 {
  color: #0062c3;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin: 0 26px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text2 {
    font-size: 1.40625vw;
    gap: 1.25vw;
    margin: 0 2.03125vw;
    -webkit-transform: translateY(-1.5625vw);
            transform: translateY(-1.5625vw);
  }
}
@media (max-width: 767px) {
  .support-col__text2 {
    font-size: 4.6153846154vw;
    gap: 3.5897435897vw;
    margin: 0 14.358974359vw;
    -webkit-transform: translateY(-3.5897435897vw);
            transform: translateY(-3.5897435897vw);
  }
}

.support-col__text2 li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text2 li {
    margin-left: 1.171875vw;
  }
}

.support-col__text2 li::marker {
  color: #609cd9;
}

.support-col__text3 {
  color: #0062c3;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text3 {
    font-size: 1.40625vw;
    -webkit-transform: translateY(0.625vw);
            transform: translateY(0.625vw);
  }
}
@media (max-width: 767px) {
  .support-col__text3 {
    font-size: 4.1025641026vw;
    -webkit-transform: translateY(1.2820512821vw);
            transform: translateY(1.2820512821vw);
  }
}

.support-col__img {
  display: block;
  -webkit-transform: translateY(-17px);
          transform: translateY(-17px);
  margin: 0 auto;
  width: 199px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__img {
    width: 15.546875vw;
    -webkit-transform: translateY(-1.328125vw);
            transform: translateY(-1.328125vw);
  }
}
@media (max-width: 767px) {
  .support-col__img {
    -webkit-transform: translateY(-2.5641025641vw);
            transform: translateY(-2.5641025641vw);
  }
}

.contact {
  background-color: #f0f3fa;
  padding-bottom: 180px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact {
    padding-bottom: 14.0625vw;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-bottom: 12.8205128205vw;
  }
}

.contact-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background-color: #0062c3;
  border-radius: 4px;
  padding-top: 50px;
  padding-bottom: 70px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-box {
    max-width: 76.5625vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-box {
    padding-top: 3.90625vw;
    padding-bottom: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .contact-box {
    margin: 0 5.1282051282vw;
    width: calc(100% - 10.2564102564vw);
    padding-top: 6.6666666667vw;
    padding-bottom: 6.6666666667vw;
  }
}

.contact-heading {
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.contact-heading-bubble {
  display: block;
}

.contact-heading-bubble__inner {
  color: #0062c3;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  padding: 8px 18px;
  display: inline-block;
  background-color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-heading-bubble__inner {
    font-size: 1.40625vw;
    padding: 0.625vw 1.40625vw;
  }
}
@media (max-width: 767px) {
  .contact-heading-bubble__inner {
    font-size: 3.5897435897vw;
    padding: 1.0256410256vw 2.0512820513vw;
  }
}

.contact-heading-main {
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-top: 24px;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-heading-main {
    font-size: 2.96875vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact-heading-main {
    font-size: 6.1538461538vw;
    margin-top: 2.5641025641vw;
  }
}

.contact-text {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  text-align: center;
  color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-text {
    font-size: 1.5625vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact-text {
    font-size: 4.1025641026vw;
    margin-top: 4.1025641026vw;
  }
}

.contact-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btns {
    gap: 1.5625vw;
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .contact-btns {
    display: block;
    gap: 5.1282051282vw;
    margin-top: 6.1538461538vw;
  }
}

.contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  height: 72px;
  position: relative;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  background: #1e1f25;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn {
    width: 25vw;
    height: 5.625vw;
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .contact-btn {
    width: calc(100% - 10.2564102564vw);
    height: 14.358974359vw;
    margin: 0 5.1282051282vw;
    font-size: 4.6153846154vw;
  }
}

@media (max-width: 767px) {
  .contact-btn + .contact-btn {
    margin-top: 2.5641025641vw;
  }
}

.contact-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/54dp2/img/contact-btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn::after {
    width: 0.78125vw;
    height: 1.09375vw;
    top: calc(50% - 0.546875vw);
    right: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .contact-btn::after {
    width: 2.0512820513vw;
    height: 3.0769230769vw;
    top: calc(50% - 1.5384615385vw);
    right: 4.1025641026vw;
  }
}

/*
  POPUP
*/
.joboffers-swiper-pop {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  /* Modal Content */
}
.joboffers-swiper-pop.bg-light {
  background-color: rgba(0, 0, 0, 0.65);
}
.joboffers-swiper-pop .joboffers-swiper-pop-wapper {
  width: 580px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .joboffers-swiper-pop .joboffers-swiper-pop-wapper {
    width: 335px;
  }
}
@-webkit-keyframes animateJoboffersPop {
  from {
    top: var(--joboffers-card-target-top);
    left: var(--joboffers-card-target-left);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes animateJoboffersPop {
  from {
    top: var(--joboffers-card-target-top);
    left: var(--joboffers-card-target-left);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  to {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.joboffers-swiper-pop .joboffers-swiper-pop-content {
  width: 622px;
  height: 504px;
  position: relative;
  -webkit-animation-name: animateJoboffersScale;
          animation-name: animateJoboffersScale;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop .joboffers-swiper-pop-content {
    width: 350px;
    height: 492px;
  }
}
@media screen and (max-width: 385px) {
  .joboffers-swiper-pop .joboffers-swiper-pop-content {
    width: 315px;
    height: 442.8px;
  }
}
.joboffers-swiper-pop .joboffers-swiper-pop-content .close {
  color: #fff;
  position: absolute;
  right: -24px;
  top: -24px;
  height: 46px;
  width: 46px;
  padding-bottom: 2px;
  border-radius: 50%;
  background-color: #000;
  border: 2px solid #fff;
  font-size: 33px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop .joboffers-swiper-pop-content .close {
    right: -18px;
    top: -18px;
    height: 36px;
    width: 36px;
    font-size: 24px;
  }
}
.joboffers-swiper-pop .joboffers-swiper-pop-content .close:hover, .joboffers-swiper-pop .joboffers-swiper-pop-content .close:focus {
  text-decoration: none;
  cursor: pointer;
  background-color: #454545;
}
.joboffers-swiper-pop .close_bottom {
  width: 38px;
  height: 38px;
  position: absolute;
  right: -16px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop .close_bottom {
    top: -16px;
  }
}

.joboffers-swiper-pop_bottm-area {
  width: 580px;
  background-color: white;
  height: 134px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop_bottm-area {
    width: 335px;
    height: 110px;
  }
}

.joboffers-swiper-pop_text {
  text-align: center;
  color: #f66410;
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop_text {
    font-size: 15px;
  }
}

.joboffers-swiper-pop_bottm {
  width: 500px;
  height: 66px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4.219px;
  background: -webkit-gradient(linear, left top, right top, from(#fbb720), to(#fc610a));
  background: linear-gradient(90deg, #fbb720 0%, #fc610a 100%);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(255, 110, 5, 0.32);
          box-shadow: 0px 4px 12px 0px rgba(255, 110, 5, 0.32);
  margin: 10px auto 0;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop_bottm {
    width: 295px;
    height: 53px;
  }
}

.joboffers-swiper-pop_bottm-text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  line-height: 60px;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop_bottm-text {
    font-size: 18px;
    line-height: 50px;
  }
}

.joboffers-swiper-pop_bottm-sankaku {
  background-color: #ffffff;
  width: 14px;
  height: 18px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: relative;
  top: -38px;
  left: 445px;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop_bottm-sankaku {
    width: 10px;
    height: 14px;
    top: -33px;
    left: 265px;
  }
}

.no-scroll {
  overflow: hidden;
}

.floating-banner {
  bottom: -8px;
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  pointer-events: none;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 110;
}
.floating-banner.is-show {
  display: block;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.floating-banner a {
  display: block;
  height: 100%;
  width: 100%;
}
.floating-banner a:hover {
  opacity: 1;
}
.floating-banner .floating-banner-close {
  position: absolute;
  right: 5px;
  top: 7px;
  z-index: 120;
}
.floating-banner .floating-banner-close .floating-banner-close-img {
  height: 32px;
  width: 32px;
}/*# sourceMappingURL=index.css.map */