@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;
}

.header {
  background: #FFF;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
  }
}

.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/56px3/img/btn-arrow-green.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/56px3/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/56px3/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/56px3/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;
    overflow: hidden;
  }
  .fv.v2 {
    overflow: visible;
  }
}

.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: 0px;
  top: 58px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-content {
    width: 55%;
    left: 0vw;
    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: #1E1F25;
  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: #00BE2C;
}

.fv-main-copy2 {
  color: #1E1F25;
  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: #1E1F25;
  margin-top: 16px;
  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-cv-box {
  width: 492px;
  height: 223px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.77);
  margin-top: 23px;
  padding: 40px;
  -webkit-box-shadow: 4px 10px 18px 0px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 4px 10px 18px 0px rgba(0, 0, 0, 0.1215686275);
}
@media (max-width: 767px) {
  .fv-cv-box {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}
.fv-cv-box.v2 {
  background: #4fe24c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-box {
    width: 38.4375vw;
    height: 17.421875vw;
    margin-top: 1.796875vw;
    padding: 3.125vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-box {
    height: 45.3846153846vw;
    position: absolute;
    left: 0;
    bottom: 5.1282051282vw;
    padding: 5.1282051282vw 3.5897435897vw;
  }
  .fv-cv-box.v2 {
    bottom: -22.2222222222vw;
  }
}

.fv-cv-title {
  color: #1E1F25;
  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: #4FE24C;
  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;
  }
}

.logos-v2 {
  display: none;
}
@media (max-width: 767px) {
  .logos-v2 {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: 44.1025641026vw;
    width: calc(100% - 10.2564102564vw);
  }
}

.fv-cv-box.v2 .fv-cv-title-bubble {
  background: #fff;
}

.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/56px3/img/btn-arrow-green.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/56px3/img/btn-arrow-green.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: #1E1F25;
  background: #4FE24C;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  width: 480px;
  height: 72px;
  position: relative;
  z-index: 2;
  border-radius: 2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn {
    font-size: 1.71875vw;
    width: 37.5vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .common-btn {
    font-size: 4.8vw;
    width: calc(100% - 10.6666666667vw);
    height: 16vw;
  }
}

.common-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/56px3/img/btn-arrow-black.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.6666666667vw;
    height: 3.7333333333vw;
    top: calc(50% - 1.8666666667vw);
    right: 3.2vw;
  }
}

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

.common-btn-bubble {
  background: #000;
  padding: 4px 6px;
  height: 72px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 16px;
  position: relative;
  margin-right: 30px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble {
    padding: 0.3125vw 0.46875vw;
    height: 5.625vw;
    padding: 1.25vw;
    margin-right: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble {
    height: 16vw;
    padding: 3.2vw 3.7333333333vw;
    margin-right: 9.0666666667vw;
  }
}

.common-btn-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 1px);
  margin-top: -37px;
  border: 37px solid transparent;
  border-left: 15px solid #000;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble::after {
    margin-top: -2.890625vw;
    border: 2.890625vw solid transparent;
    border-left: 1.171875vw solid #000;
    left: 100%;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble::after {
    margin-top: -8vw;
    border: 8vw solid transparent;
    border-left: 2.6666666667vw solid #000;
    left: 100%;
  }
}

.common-btn-bubble span {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.1em;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble span {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble span {
    font-size: 4.2666666667vw;
  }
}

.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: #8D8F98;
}
@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: #fff;
  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: #1E1F25;
  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: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
@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: #4FE24C;
  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: 116px;
  height: 166px;
  position: absolute;
  top: 14px;
  left: -51px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(1) .worries-bubble__img {
    width: 9.0625vw;
    height: 12.96875vw;
    top: 1.09375vw;
    left: -3.984375vw;
  }
}
@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: -24px;
}
@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;
    left: -1.875vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(2) .worries-bubble__img {
    width: 21.2820512821vw;
    height: 32.3076923077vw;
    top: 2.0512820513vw;
    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: #E9ECEC;
  padding-bottom: 100px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction {
    padding-bottom: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .introduction {
    padding-bottom: 12.8205128205vw;
  }
}

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

.introduction-heading-sub {
  color: #00BE2C;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-sub {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-sub {
    font-size: 3.5897435897vw;
    line-height: 1;
  }
}

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

.introduction-heading2 {
  margin-top: 50px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading2 {
    margin-top: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading2 {
    margin-top: 5.3333333333vw;
    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;
  }
}

.introduction-heading2::before,
.introduction-heading2::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 14px;
  background-image: url("/content_assets/56px3/img/introduction-heading2-ornament.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading2::before,
  .introduction-heading2::after {
    width: 1.875vw;
    height: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading2::before,
  .introduction-heading2::after {
    width: 5.8666666667vw;
    height: 3.2vw;
  }
}

.introduction-heading2::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.introduction-heading2-text {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #1E1F25;
  padding: 0 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading2-text {
    font-size: 2.03125vw;
    padding: 0 0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading2-text {
    font-size: 3.7333333333vw;
    padding: 0 2.1333333333vw;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .introduction-heading2-text span {
    font-size: 5.3333333333vw;
    margin-top: 2.1333333333vw;
    display: inline-block;
  }
}

.introduction-comment {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment {
    max-width: 76.5625vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment {
    margin: 3.125vw auto 0;
  }
}
@media (max-width: 767px) {
  .introduction-comment {
    display: block;
    width: calc(100% - 10.6666666667vw);
    margin: 5.3333333333vw 5.3333333333vw 0;
  }
}

.introduction-comment-col {
  width: 466px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col {
    width: 36.40625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col {
    width: 100%;
  }
}

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

.introduction-comment-col__heading {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #1E1F25;
  border-radius: 6px 6px 0 0;
  position: relative;
  padding: 12px 0 13px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__heading {
    font-size: 1.40625vw;
    border-radius: 0.46875vw 0.46875vw 0 0;
    padding: 0.9375vw 0 1.015625vw 0;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__heading {
    font-size: 3.7333333333vw;
    border-radius: 1.0666666667vw 1.0666666667vw 0 0;
    padding: 3.2vw 0;
  }
}

.introduction-comment-col__heading::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("/content_assets/56px3/img/introduction-flag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__heading::before {
    width: 2.34375vw;
    height: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__heading::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}

.introduction-comment-col__heading strong {
  font-size: 23px;
  font-weight: 900;
  color: #4FE24C;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__heading strong {
    font-size: 1.796875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__heading strong {
    font-size: 4.8vw;
  }
}

@media (max-width: 767px) {
  .introduction-comment-col__heading strong span {
    font-size: 3.7333333333vw;
  }
}

.introduction-comment-detail {
  background-color: #fff;
  padding: 22px 20px 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail {
    padding: 1.71875vw 1.5625vw 2.03125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail {
    padding: 2.6666666667vw 4.2666666667vw 4.2666666667vw;
  }
}

.introduction-comment-detail__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  -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-comment-detail__box {
    gap: 0.859375vw;
  }
}

.introduction-comment-detail__col:nth-child(1) {
  width: 108px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__col:nth-child(1) {
    width: 8.4375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__col:nth-child(1) {
    width: 37.6vw;
  }
}

.introduction-comment-detail__col:nth-child(2) {
  width: calc(100% - 119px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__col:nth-child(2) {
    width: calc(100% - 9.296875vw);
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__col:nth-child(2) {
    width: calc(100% - 41.3333333333vw);
  }
}

.introduction-comment-detail__img {
  width: 108px;
  height: 108px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__img {
    width: 8.4375vw;
    height: 8.4375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__img {
    width: 37.6vw;
    height: 22.4vw;
  }
}

.introduction-comment-detail__heading {
  background: #B6F1B5;
  width: 100%;
  text-align: center;
  padding: 9px 0 10px 0;
  color: #1DB01A;
  font-size: 12px;
  line-height: 1;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__heading {
    padding: 0.703125vw 0 0.78125vw 0;
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__heading {
    padding: 1.8666666667vw 0 2.4vw 0;
    font-size: 3.2vw;
    line-height: 1.3;
    margin-top: -1px;
  }
}

.introduction-comment-detail__heading::before {
  content: "";
  display: inline-block;
  width: 38.5px;
  height: 19px;
  background-image: url("/content_assets/56px3/img/introduction-icon-bubble.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: calc(100% - 10px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__heading::before {
    width: 3.0078125vw;
    height: 1.484375vw;
    right: calc(100% - 0.78125vw);
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__heading::before {
    display: none;
  }
}

.introduction-comment-detail__heading strong {
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__heading strong {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__heading strong {
    font-size: 3.7333333333vw;
  }
}

.introduction-comment-detail__beforeafter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
  padding: 0 3px;
  margin-top: 11px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__beforeafter {
    gap: 0.46875vw;
    padding: 0 0.234375vw;
    margin-top: 0.859375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__beforeafter {
    display: block;
  }
}

@media (max-width: 767px) {
  .introduction-comment-detail__before-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.8666666667vw;
  }
}

.introduction-comment-detail__before-heading {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #888A96;
  padding: 3px 13px 4px;
  background: #DADEE0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-heading {
    font-size: 1.09375vw;
    padding: 0.234375vw 1.015625vw 0.3125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-heading {
    font-size: 3.2vw;
    padding: 1.0666666667vw;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    margin: unset;
    position: relative;
  }
}

@media (max-width: 767px) {
  .introduction-comment-detail__before-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -1.0666666667vw;
    border: 1.0666666667vw solid transparent;
    border-left: 1.6vw solid #DADEE0;
  }
}

.introduction-comment-detail__before-income {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-income {
    gap: 0.234375vw;
    margin-top: 0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-income {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.introduction-comment-detail__before-income-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #888A96;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-income-title {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-income-title {
    font-size: 3.2vw;
  }
}

.introduction-comment-detail__before-income-value {
  font-family: "din-2014", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.03em;
  color: #888A96;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-income-value {
    font-size: 3.28125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-income-value {
    font-size: 10.6666666667vw;
  }
}

.introduction-comment-detail__before-income-unit {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #888A96;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-income-unit {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-income-unit {
    font-size: 3.4666666667vw;
  }
}

.introduction-comment-detail__after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .introduction-comment-detail__after {
    display: block;
  }
}

.introduction-comment-detail__after::before {
  content: "";
  display: inline-block;
  width: 41px;
  height: 38px;
  background-image: url("/content_assets/56px3/img/introduction-ba-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  padding-right: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after::before {
    width: 3.203125vw;
    height: 2.96875vw;
    padding-right: 0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after::before {
    background-image: url("/content_assets/56px3/img/introduction-ba-arrow_sp.png");
    width: 14.9333333333vw;
    height: 5.3333333333vw;
    padding-right: unset;
    display: block;
    margin: 1.0666666667vw auto 1.6vw;
  }
}

.introduction-comment-detail__after-inner {
  width: calc(100% - 49px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-inner {
    width: calc(100% - 3.828125vw);
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.8666666667vw;
  }
}

.introduction-comment-detail__after-heading {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
  padding: 3px 13px 4px;
  background: #42D53F;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-heading {
    font-size: 1.09375vw;
    padding: 0.234375vw 1.015625vw 0.3125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-heading {
    font-size: 3.2vw;
    padding: 0.8vw;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    margin: unset;
    position: relative;
  }
}

@media (max-width: 767px) {
  .introduction-comment-detail__after-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -1.0666666667vw;
    border: 1.0666666667vw solid transparent;
    border-left: 1.6vw solid #42D53F;
  }
}

.introduction-comment-detail__after-income {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-income {
    margin-top: 0.46875vw;
  }
}

.introduction-comment-detail__after-income-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: #33353E;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-income-title {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-income-title {
    font-size: 3.2vw;
  }
}

.introduction-comment-detail__after-income-value {
  font-family: "din-2014", sans-serif;
  font-size: 66px;
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.03em;
  color: #33353E;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  margin: 0 3px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-income-value {
    font-size: 5.15625vw;
    margin: 0 0.234375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-income-value {
    font-size: 14.9333333333vw;
    margin: 0 0.8vw;
  }
}

.introduction-comment-detail__after-income-unit {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  color: #33353E;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-income-unit {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-income-unit {
    font-size: 4.2666666667vw;
  }
}

.introduction-comment-col__textarea {
  background: #DADEE0;
  padding: 12px 16px;
  border-radius: 0 0 6px 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__textarea {
    padding: 0.9375vw 1.25vw;
    border-radius: 0 0 0.46875vw 0.46875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__textarea {
    padding: 3.2vw 4.2666666667vw;
    border-radius: 0 0 1.0666666667vw 1.0666666667vw;
  }
}

.introduction-comment-col__text {
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1;
  text-align: left;
  color: #33353E;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__text {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__text {
    font-size: 3.7333333333vw;
  }
}

.introduction-comment-col__text strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, transparent), color-stop(20%, #8AF188));
  background: linear-gradient(transparent 20%, #8AF188 20%);
}

.introduction-comment-col__notice {
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  color: #999999;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__notice {
    font-size: 0.78125vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__notice {
    font-size: 2.6666666667vw;
    margin-top: 2.1333333333vw;
  }
}

.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-btn-box {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-btn-box {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction-btn-box {
    margin-top: 5.3333333333vw;
  }
}
.introduction-btn-box .introduction-btn-box-copy {
  display: none;
}
@media (max-width: 767px) {
  .introduction-btn-box .introduction-btn-box-copy {
    display: block;
    margin: 0 auto 2.6666666667vw;
    width: calc(100% - 22.4vw);
  }
}
.introduction-btn-box .introduction-btn-box-caption {
  display: none;
}
@media (max-width: 767px) {
  .introduction-btn-box .introduction-btn-box-caption {
    color: #999;
    display: block;
    font-size: 10px;
    text-align: right;
    margin: 1.6vw 5.3333333333vw 0 0;
  }
}

.introduction-btn {
  margin: 0 auto;
}

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

.example-heading {
  color: #1E1F25;
  font-size: 32px;
  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: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-slider {
    margin-top: 5.1282051282vw;
    margin-bottom: 2.5641025641vw !important;
  }
}

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

.example-slider .slick-slide {
  background-color: #C5CACF;
  height: auto !important;
  border-radius: 4px;
}

.example-slider-col {
  width: 346px;
  margin: 0 12px;
}
@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: #61656F;
  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: #1E1F25;
  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: #4FE24C;
}
@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-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: #4FE24C;
  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;
  border-radius: 4px 4px 0 0;
  background-color: #1e1f25;
}
@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__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: #1D1E24;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #727272;
}
@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: #1D1E24;
  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/56px3/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: #999;
  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;
}

.example-slider-custom-dots {
  position: relative;
  height: 4px;
  max-width: 240px;
  background-color: #1E1F25;
  -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;
  }
}

.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/56px3/img/example-slider-custom-arrow.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: 11.2820512821vw;
    height: 11.2820512821vw;
  }
}

.example-slider-custom-arrow:hover {
  opacity: 0.7;
}

.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;
  }
}

.example-slider-custom-next {
  margin-left: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@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;
  }
}

.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;
}

.example-btn-box {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-btn-box {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-btn-box {
    margin-top: 5.1282051282vw;
  }
}

.example-btn {
  margin: 0 auto;
}

.probrem {
  padding: 80px 0 120px;
  background-color: #8D8F98;
}
@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: #FFF;
  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: #1E1F25;
  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: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@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: #4FE24C;
  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: 157px;
  position: absolute;
  bottom: -47px;
  right: -24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-col:nth-child(1) .probrem-bubble__img {
    width: 7.8125vw;
    height: 12.265625vw;
    bottom: -3.671875vw;
    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: -57px;
  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: -4.453125vw;
    right: -1.875vw;
  }
}
@media (max-width: 767px) {
  .probrem-col:nth-child(2) .probrem-bubble__img {
    width: 17.4358974359vw;
    height: 30.7692307692vw;
    bottom: -4.8717948718vw;
    right: -2.8205128205vw;
  }
}

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

.support {
  background-color: #E9ECEC;
}

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

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

.support-heading-main {
  color: #00BE2C;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  margin-top: 24px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-main {
    margin-top: 1.875vw;
    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: #33353E;
  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: #FFF;
  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;
}
@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/56px3/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/56px3/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: #4FE24C;
  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: #A2D7A1;
  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: #1E1F25;
  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;
    color: #000;
  }
}

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

.support-col__notice {
  color: #ccc;
  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 {
    color: #CCC;
    font-size: 2.5641025641vw;
    -webkit-transform: translate(0, -9.2307692308vw);
            transform: translate(0, -9.2307692308vw);
  }
}

.support-col__text2 {
  color: #4FE24C;
  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: #FFF;
}

.support-col__text3 {
  color: #4FE24C;
  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: #E9ECEC;
  padding-bottom: 180px;
}
.contact.v2 {
  background-color: #dadee0;
}
@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: #4FE24C;
  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: #1E1F25;
  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;
    color: #000;
  }
}

.contact-heading-main {
  color: #1E1F25;
  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: #1E1F25;
}
@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/56px3/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;
  }
}

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

.main-content {
  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;
  }
}

.logos-slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .logos-slider {
    height: 4.6875vw !important;
  }
}
@media (max-width: 767px) {
  .logos-slider {
    height: 16vw !important;
  }
}

.logos-slider img {
  width: auto;
  max-width: -moz-fit-content;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  height: 100%;
  will-change: transform;
}

.logos-slider img:first-child {
  -webkit-animation: loop-1 100s linear -50s infinite;
          animation: loop-1 100s linear -50s infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.logos-slider img + img {
  -webkit-animation: loop-2 100s linear infinite;
          animation: loop-2 100s linear infinite;
}

@-webkit-keyframes loop-1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop-2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop-2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.example-slider-col__detail-title small {
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-title small {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-title small {
    font-size: 3.4871794872vw;
  }
}

.fv {
  background-image: url(/content_assets/56rm5/img/fv-bg-pc.webp);
}
@media (max-width: 767px) {
  .fv {
    background-image: unset;
  }
}

.fv-main-copy1,
.fv-main-copy2,
.fv-main-copy--strong {
  font-weight: 900;
}

.fv-fact1 {
  font-family: "din-2014", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  top: 153px;
  right: -7px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-fact1 {
    font-size: 3.125vw;
    top: 11.953125vw;
    right: -0.546875vw;
  }
}
@media (max-width: 767px) {
  .fv-fact1 {
    font-size: 8.6426666667vw;
    top: 65.3333333333vw;
    right: unset;
    left: 41.8666666667vw;
    z-index: 10;
  }
}

.fv-fact2 {
  font-family: "din-2014", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  top: 264px;
  right: 51px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-fact2 {
    font-size: 2.96875vw;
    top: 20.625vw;
    right: 3.984375vw;
  }
}
@media (max-width: 767px) {
  .fv-fact2 {
    font-size: 7.2293333333vw;
    top: 62.6666666667vw;
    right: unset;
    left: 9.6vw;
    z-index: 10;
  }
}

.fv-fact2 span {
  font-size: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-fact2 span {
    font-size: 1.875vw;
  }
}

.fv-notice {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #C0C0C0;
  display: inline-block;
  position: absolute;
  top: 419px;
  left: calc(100% - 130px);
  width: 100%;
  text-align: left;
}
@media (min-width: 767px) and (max-width: 1294px) {
  .fv-notice {
    line-height: 1.2;
    top: 394px;
    left: calc(100% - 129px);
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-notice {
    font-size: 0.78125vw;
    top: 30.78125vw;
    left: calc(100% - 10.078125vw);
  }
}
@media (max-width: 767px) {
  .fv-notice {
    font-size: 2.1333333333vw;
    top: 85.3333333333vw;
    right: unset;
    text-align: left;
    left: 5.0666666667vw;
    z-index: 10;
    color: #878787;
  }
}

@media (min-width: 1294px) {
  .fv-notice__br {
    display: none;
  }
}
@media (max-width: 767px) {
  .fv-notice__br {
    display: none;
  }
}

.example-heading,
.probrem-heading,
.worries-heading,
.support-heading-main,
.contact-heading-main {
  font-weight: 900;
  letter-spacing: 0.06em;
}

.fv-cv-title,
.introduction-point-col__data-unit1,
.contact-heading-bubble__inner {
  font-weight: 700;
}

.worries-col:nth-child(1) .worries-bubble__inner {
  font-size: 18px;
  line-height: 28.8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(1) .worries-bubble__inner {
    font-size: 1.40625vw;
    line-height: 2.25vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(1) .worries-bubble__inner {
    font-size: 3.7333333333vw;
    line-height: 5.6vw;
  }
}

.worries-col:nth-child(1) .worries-bubble__inner strong {
  font-size: 22px;
  line-height: 35.2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(1) .worries-bubble__inner strong {
    font-size: 1.71875vw;
    line-height: 2.75vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(1) .worries-bubble__inner strong {
    font-size: 4.8vw;
    line-height: 7.2vw;
  }
}

.worries-col:nth-child(2) .worries-bubble__inner {
  line-height: 2;
}

.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;
  }
}

.probrem-bubble__inner {
  line-height: 2;
}

.introduction {
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .introduction.v2 {
    padding-top: 130px;
  }
}

.introduction-heading-main {
  font-weight: 900;
}

.introduction-comment-col__heading {
  font-weight: 900;
}

.introduction-comment-col__heading strong {
  font-weight: 700;
}

@media (max-width: 767px) {
  .introduction-comment-detail__col:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  .introduction-comment-detail__beforeafter {
    margin-top: unset;
  }
}

@media (max-width: 767px) {
  .introduction-comment-col__text {
    line-height: 1.8;
  }
}

.common-btn {
  font-weight: 700;
}

.header {
  -webkit-box-shadow: 0px 5px 8px 0px rgba(201, 201, 201, 0.25);
          box-shadow: 0px 5px 8px 0px rgba(201, 201, 201, 0.25);
}
@media (max-width: 767px) {
  .header {
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}

.header-inner {
  height: 54px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-inner {
    height: 4.21875vw;
  }
}
@media (max-width: 767px) {
  .header-inner {
    height: unset;
    padding: 2.0512820513vw 3.8461538462vw;
  }
}

.header-col {
  padding: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col {
    padding: 0;
  }
}

.fv {
  background-image: url(/content_assets/56by6/img/fv-bg-pc.webp);
}
@media (max-width: 767px) {
  .fv {
    background-image: unset;
  }
}

.fv-fact1 {
  font-family: "din-2014", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  top: 112px;
  right: 126px;
  letter-spacing: -1.52px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-fact1 {
    font-size: 2.96875vw;
    top: 8.75vw;
    right: 9.84375vw;
    letter-spacing: -1px;
  }
}
@media (max-width: 767px) {
  .fv-fact1 {
    font-size: 6.9333333333vw;
    top: 54.6666666667vw;
    right: unset;
    left: 7.4666666667vw;
    z-index: 10;
  }
}

.fv-fact2 {
  font-family: "din-2014", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  top: 153px;
  right: -7px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-fact2 {
    font-size: 3.125vw;
    top: 11.953125vw;
    right: -0.546875vw;
  }
}
@media (max-width: 767px) {
  .fv-fact2 {
    font-size: 8.6426666667vw;
    top: 56.2666666667vw;
    right: unset;
    left: 39.7333333333vw;
    z-index: 10;
  }
}

.fv-fact3 {
  font-family: "din-2014", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  position: absolute;
  top: 264px;
  right: 51px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-fact3 {
    font-size: 2.96875vw;
    top: 20.625vw;
    right: 3.984375vw;
  }
}
@media (max-width: 767px) {
  .fv-fact3 {
    font-size: 6.9333333333vw;
    top: 78.6666666667vw;
    right: unset;
    left: 22.4vw;
    z-index: 10;
    letter-spacing: -1px;
  }
}

.fv-fact3 span {
  font-size: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-fact3 span {
    font-size: 1.875vw;
  }
}

.fv-notice {
  color: #878787;
}
@media (max-width: 767px) {
  .fv-notice {
    color: #fff;
    top: 99.2vw;
  }
}

.example-slider-col {
  cursor: pointer;
}

/*
  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: 140px;
  -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: #252525;
  font-size: 18px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop_text {
    font-size: 15px;
  }
}

.joboffers-swiper-pop_text span {
  color: #4ddb4a;
}

.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(#00C285), to(#2FC33C));
  background: linear-gradient(90deg, #00C285 0%, #2FC33C 100%);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(3, 133, 0, 0.24);
          box-shadow: 0px 4px 8px 0px rgba(3, 133, 0, 0.24);
  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: 460px;
}
@media (max-width: 767px) {
  .joboffers-swiper-pop_bottm-sankaku {
    width: 10px;
    height: 14px;
    top: -33px;
    left: 265px;
  }
}

.no-scroll {
  overflow: hidden;
}

.floating-banner {
  bottom: -10px;
  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;
}

.no-scroll {
  overflow: hidden;
}

.companys-logo-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .companys-logo-slider {
    height: 4.6875vw !important;
  }
}
@media (max-width: 767px) {
  .companys-logo-slider {
    height: 16vw !important;
  }
}

.companys-logo-slider-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.companys-logo-slider-block img {
  width: auto;
  max-width: -moz-fit-content;
  max-width: -webkit-fit-content;
  max-width: fit-content;
  height: 100%;
  will-change: transform;
}

.companys-logo-slider .companys-logo-slider-block:first-child {
  -webkit-animation: companys-logo-slider-loop 100s -50s linear infinite;
          animation: companys-logo-slider-loop 100s -50s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.companys-logo-slider .companys-logo-slider-block:last-child {
  -webkit-animation: companys-logo-slider-loop2 100s linear infinite;
          animation: companys-logo-slider-loop2 100s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

@-webkit-keyframes companys-logo-slider-loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes companys-logo-slider-loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes companys-logo-slider-loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes companys-logo-slider-loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}/*# sourceMappingURL=index.css.map */