@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;
  transition: all ease-in 0.2s;
}
a:hover {
  opacity: 0.7;
}

html {
  box-sizing: border-box;
}

*,
:after,
:before {
  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: flex;
  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 {
  align-items: center;
  display: flex;
  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 {
    align-items: start;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .header .header_inner .header_logo-container .header_logo-text {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.header .header_inner .header_link-container {
  align-items: center;
  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: flex;
  justify-content: space-evenly;
  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: flex;
  align-items: center;
  align-content: center;
  gap: 7px;
}

@media (max-width: 767px) {
  .header_logo-container {
    flex-direction: column;
  }
}

body {
  margin: auto;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
  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 {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding: 30px 0;
    flex-direction: column;
  }
}
.footer_inner .footer_flex-container {
  align-items: center;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container {
    flex-direction: column;
  }
}
.footer_inner .footer_flex-container .footer_link-list {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container .footer_link-list {
    flex-wrap: wrap;
    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 {
    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: flex;
  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: flex;
  align-items: center;
  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: flex;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-list {
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-list {
    flex-wrap: wrap;
    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: 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-content {
  background: #f0f0f0;
}

.header {
  background: #fff;
  box-shadow: 0px 5px 8px 0px rgba(201, 201, 201, 0.25);
  position: relative;
}
@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  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.3076923077vw 3.8461538462vw;
  }
}

.header-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col {
    padding: 0.859375vw 4.6875vw;
  }
}
@media (max-width: 767px) {
  .header-col {
    padding: 0;
  }
}

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

.header-col:nth-child(1) span {
  font-size: 14px;
  color: #07080c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col:nth-child(1) span {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .header-col:nth-child(1) span {
    width: 100%;
    order: 1;
    font-size: 2.5641025641vw;
  }
}

.header-logo {
  width: 114px;
  height: auto;
  margin-right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-logo {
    width: 8.90625vw;
    margin-right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .header-logo {
    order: 2;
    width: 25.641025641vw;
    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 {
  font-family: "Yu Gothic Pr6N D", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 1;
  width: 200px;
  height: 40px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn {
    font-size: 1.25vw;
    width: 15.625vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .header-btn {
    font-size: 3.5897435897vw;
    width: 41.7948717949vw;
    height: 10.5128205128vw;
  }
}

.fv {
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f9 0%, #e1e1e1 113.7%);
  background-image: url("/content_assets/50dp2/img/fv-bg-pc.jpg");
  background-size: 1920px 540px;
  background-position: center center;
}
@media (min-width: 1920px) {
  .fv {
    background-size: cover;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv {
    background-size: 150vw 42.1875vw;
  }
}
@media (max-width: 767px) {
  .fv {
    background-image: unset;
  }
}

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

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

.fv-inner::before {
  content: "";
  display: inline-block;
  width: 730px;
  height: 657px;
  background-image: url(/content_assets/50dp2/img/fv-img-tamaki-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 12px;
  left: calc(50% - 365px + 50px);
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner::before {
    top: 0.9375vw;
    left: calc(50% - 28.515625vw + 3.90625vw);
    width: 57.03125vw;
    height: 51.328125vw;
  }
}
@media (max-width: 767px) {
  .fv-inner::before {
    display: none;
  }
}

.fv-inner-bk::before {
  content: "";
  display: inline-block;
  width: 600px;
  height: 540px;
  background-image: url(/content_assets/50dp2/img/fv-img-tamaki-pc_bk.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 12px;
  left: calc(50% - 300px);
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner-bk::before {
    top: 0.9375vw;
    left: calc(50% - 23.4375vw);
    width: 46.875vw;
    height: 42.1875vw;
  }
}
@media (max-width: 767px) {
  .fv-inner-bk::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .fv-content {
    position: relative;
  }
}

.fv-main-copy {
  width: 1148px;
  position: absolute;
  left: calc(50% - 574px + 30px);
  top: 65px;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy {
    width: 89.6875vw;
    left: calc(50% - 44.84375vw + 2.34375vw);
    top: 5.078125vw;
  }
}
@media (max-width: 767px) {
  .fv-main-copy {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
  }
}

.fv-btn {
  position: absolute !important;
  top: 357px;
  right: -23px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-btn {
    top: 27.890625vw;
    right: -1.796875vw;
  }
}
@media (max-width: 767px) {
  .fv-btn {
    top: unset;
    right: unset;
    bottom: 12.5641025641vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

.common-btn {
  font-family: "Yu Gothic Pr6N D", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #000000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  width: 400px;
  height: 70px;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn {
    font-size: 1.71875vw;
    width: 31.25vw;
    height: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .common-btn {
    font-size: 4.6153846154vw;
    width: calc(100% - 10.2564102564vw);
    height: 15.3846153846vw;
  }
}

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

.common-btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 12px;
  background-image: url("/content_assets/50dp2/img/btn-arrow-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-100%, -50%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn::after {
    width: 1.5625vw;
    height: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .common-btn::after {
    width: 5.1282051282vw;
    height: 3.0769230769vw;
  }
}

.common-btn-bubble {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  background: #e6ff00;
  padding: 4px 6px;
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(-50%);
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble {
    font-size: 1.09375vw;
    padding: 0.3125vw 0.46875vw;
    left: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble {
    font-size: 3.0769230769vw;
    padding: 1.0256410256vw 1.5384615385vw;
    left: 5.1282051282vw;
  }
}

.common-unit-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-unit-box {
    max-width: 76.5625vw;
  }
}

.parallax-line-parent {
  position: relative;
}

.parallax-line-child {
  position: absolute;
  background-color: #e7ff00;
}
@media (max-width: 767px) {
  .parallax-line-child {
    display: none;
  }
}

.parallax-line-child1 {
  width: 17px;
  height: 100px;
  top: 146px;
  left: -114px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .parallax-line-child1 {
    width: 1.328125vw;
    height: 7.8125vw;
    top: 11.40625vw;
    left: -8.90625vw;
  }
}

.parallax-line-child2 {
  width: 3px;
  height: 126px;
  top: 100px;
  right: -176px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .parallax-line-child2 {
    width: 0.234375vw;
    height: 9.84375vw;
    top: 7.8125vw;
    right: -13.75vw;
  }
}

.parallax-line-child3 {
  width: 3px;
  height: 120px;
  top: 261px;
  left: 22px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .parallax-line-child3 {
    width: 0.234375vw;
    height: 9.375vw;
    top: 20.390625vw;
    left: 1.71875vw;
  }
}

.parallax-line-child4 {
  width: 17px;
  height: 140px;
  top: 361px;
  left: -152px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .parallax-line-child4 {
    width: 1.328125vw;
    height: 10.9375vw;
    top: 28.203125vw;
    left: -11.875vw;
  }
}

.parallax-line-child5 {
  width: 3px;
  height: 160px;
  top: 520px;
  right: -167px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .parallax-line-child5 {
    width: 0.234375vw;
    height: 12.5vw;
    top: 40.625vw;
    right: -13.046875vw;
  }
}

.parallax-line-child6 {
  width: 17px;
  height: 140px;
  top: 190px;
  right: -153px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .parallax-line-child6 {
    width: 1.328125vw;
    height: 10.9375vw;
    top: 14.84375vw;
    right: -11.953125vw;
  }
}

.parallax-line-child7 {
  width: 3px;
  height: 160px;
  top: 406px;
  left: -186px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .parallax-line-child7 {
    width: 0.234375vw;
    height: 12.5vw;
    top: 31.71875vw;
    left: -14.53125vw;
  }
}

.parallax-line-child8 {
  width: 3px;
  height: 160px;
  top: 816px;
  right: -107px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .parallax-line-child8 {
    width: 0.234375vw;
    height: 12.5vw;
    top: 63.75vw;
    right: -8.359375vw;
  }
}

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

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

.worries {
  padding: 80px 0 0 0;
  background: linear-gradient(180deg, #191a1b 0%, #34373f 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries {
    padding: 6.25vw 0 0 0;
  }
}
@media (max-width: 767px) {
  .worries {
    padding: 15.3846153846vw 0 0 0;
  }
}

.worries-heading {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  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.641025641vw;
  }
}

.worries-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  margin: 50px auto 0;
  display: flex;
  gap: 48px;
  padding-bottom: 80px;
}
@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;
    padding-bottom: 6.25vw;
  }
}
@media (max-width: 767px) {
  .worries-box {
    display: block;
    margin: 10.2564102564vw auto 0;
    padding-bottom: 9.2307692308vw;
  }
}

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

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

@media (max-width: 767px) {
  .worries-col:nth-child(odd) {
    transform: translateX(-5.1282051282vw);
  }
}

.worries-count {
  font-family: "din-2014", sans-serif;
  color: #e6ff00;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
  transform: translateY(-50%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-count {
    font-size: 3.125vw;
    left: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .worries-count {
    font-size: 7.6923076923vw;
    left: 7.6923076923vw;
  }
}

.worries-bubble {
  width: 466px;
  height: 145px;
  background: #52555e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble {
    width: 36.40625vw;
    height: 11.328125vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble {
    width: calc(100% + 5.1282051282vw);
    height: 27.6923076923vw;
    justify-content: flex-start;
    padding: 7.6923076923vw;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(even) .worries-profile__caption {
    order: 1;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(even) .worries-profile__img {
    order: 2;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(even) .worries-profile {
    justify-content: flex-end;
    margin-right: 0;
    gap: 0;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(even) .worries-count {
    left: unset;
    right: 0;
  }
}

.worries-bubble__inner {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #fff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__inner {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__inner {
    font-size: 3.3333333333vw;
    line-height: 1.5;
  }
}

.worries-bubble__inner strong {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__inner strong {
    font-size: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__inner strong {
    font-size: 4.358974359vw;
    line-height: 1.5;
  }
}

.worries-profile {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -43px;
  margin-right: 36px;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-profile {
    margin-top: -3.359375vw;
    margin-right: 2.8125vw;
  }
}
@media (max-width: 767px) {
  .worries-profile {
    justify-content: flex-start;
    gap: 4.1025641026vw;
    margin-top: -7.6923076923vw;
    margin-left: 7.6923076923vw;
  }
}

.worries-profile__img {
  width: 86px;
  height: 86px;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-profile__img {
    width: 6.71875vw;
    height: 6.71875vw;
  }
}
@media (max-width: 767px) {
  .worries-profile__img {
    width: 18.9743589744vw;
    height: 18.9743589744vw;
    order: 1;
  }
}

.worries-profile__caption {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #e7ff00;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-profile__caption {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .worries-profile__caption {
    font-size: 3.8461538462vw;
    line-height: 1.2;
    display: block;
    text-align: center;
    order: 2;
    transform: translateY(-50%);
  }
}

.worries-profile__caption small {
  font-size: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-profile__caption small {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .worries-profile__caption small {
    font-size: 3.0769230769vw;
  }
}

.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-img {
  display: block;
  width: 26px;
  height: 68px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow-img {
    width: 2.03125vw;
    height: 5.3125vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow-img {
    width: 5.641025641vw;
    height: 12.8205128205vw;
  }
}

.gradation-area1 {
  background: linear-gradient(90deg, #d8dce5 0%, #737c93 100%);
}

.gradation-area2 {
  background: linear-gradient(90deg, #737c93 0%, #d8dce5 100%);
}

.introduction {
  padding-top: 80px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction {
    padding-top: 6.25vw;
  }
}
@media (max-width: 767px) {
  .introduction {
    padding-top: 20.5128205128vw;
  }
}

.introduction-heading {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}

.introduction-heading::before {
  content: "";
  display: inline-block;
  width: 542px;
  height: 276px;
  background-image: url("/content_assets/50dp2/img/introduction-heading-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading::before {
    width: 42.34375vw;
    height: 21.5625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading::before {
    display: none;
  }
}

.introduction-heading-sub {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 240%; /* 43.2px */
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-sub {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-sub {
    font-size: 4.1025641026vw;
    font-weight: 700;
    line-height: 1.8;
  }
}

.introduction-heading-main {
  font-family: "Yu Gothic StdN E", sans-serif;
  background: #e7ff00;
  padding: 6px;
  margin-top: 16px;
  display: inline-block !important;
  line-height: 1;
  font-size: 50px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-main {
    padding: 0.46875vw;
    margin-top: 1.5625vw;
    font-size: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-main {
    padding: 1.5384615385vw;
    margin-top: 2.0512820513vw;
    font-size: 8.2051282051vw;
  }
}

@media (min-width: 1280px) {
  .introduction-heading-main.is-sp {
    display: none !important;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-main.is-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .introduction-heading-main.is-sp {
    display: inline-block !important;
  }
}

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

@media (max-width: 767px) {
  .introduction-heading-main + .introduction-heading-main {
    margin-top: 2.0512820513vw;
  }
}

.introduction-relay-arrow {
  margin: 30px auto 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-relay-arrow {
    margin: 2.34375vw auto 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction-relay-arrow {
    margin: 4.1025641026vw auto 4.1025641026vw;
  }
}

.introduction-point {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 80px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point {
    max-width: 76.5625vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point {
    gap: 2.1875vw;
    margin-top: 6.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-point {
    display: block;
    margin-top: 10.2564102564vw;
  }
}

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

.introduction-point-col__inner {
  width: 476px;
  height: 216px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.65) 100%);
  position: relative;
}
@media (max-width: 767px) {
  .introduction-point-col__inner {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__inner {
    width: 37.1875vw;
    height: 16.875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__inner {
    height: 48.2051282051vw;
  }
}

.introduction-point-col__badge {
  width: 111px;
  height: 111px;
  background-image: url("/content_assets/50dp2/img/introduction-point-col__badge-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -43px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge {
    width: 8.671875vw;
    height: 8.671875vw;
    top: -3.359375vw;
    right: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge {
    width: 22.0512820513vw;
    height: 22.0512820513vw;
    top: -3.8461538462vw;
    right: 2.5641025641vw;
  }
}

.introduction-point-col__badge-inner {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__badge-inner {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge-inner {
    font-size: 3.0769230769vw;
  }
}

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

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

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

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

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

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

.introduction-point-col__data {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 54px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data {
    padding-top: 4.21875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data {
    padding-top: 7.4358974359vw;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .introduction-point-col__data1 {
    margin-bottom: 4.358974359vw;
  }
}

@media (min-width: 1280px) {
  .introduction-point-col__data2,
  .introduction-point-col__data-summary2 {
    transform: translateY(-24px);
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data2,
  .introduction-point-col__data-summary2 {
    transform: translateY(-1.875vw);
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data2,
  .introduction-point-col__data-summary2 {
    transform: translateY(-3.8461538462vw);
  }
}

.introduction-point-col__data-title {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #e7ff00;
  font-size: 17px;
  font-weight: 800;
  line-height: 140%; /* 23.8px */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-title {
    font-size: 1.328125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-title {
    font-size: 4.6153846154vw;
    display: block;
    width: 100%;
    text-align: center;
  }
}

.introduction-point-col__data-title strong {
  font-size: 23px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-title strong {
    font-size: 1.796875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-title strong {
    font-size: 4.6153846154vw;
  }
}

.introduction-point-col__data-number1 {
  color: #e7ff00;
  font-family: "din-2014", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 80%; /* 64px */
  letter-spacing: -1.6px;
  margin-left: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-number1 {
    font-size: 6.25vw;
    margin-left: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-number1 {
    font-size: 17.9487179487vw;
    transform: translateY(4px);
    margin-left: unset;
  }
}

.introduction-point-col__data-unit1 {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #e7ff00;
  font-size: 24px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -0.48px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-unit1 {
    font-size: 1.875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-unit1 {
    font-size: 5.641025641vw;
  }
}

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

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

.introduction-point-col__data-summary {
  background-color: #fff;
  width: 280px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 17px auto 43px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-summary {
    width: 21.875vw;
    height: 3.125vw;
    margin: 1.328125vw auto 3.359375vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-summary {
    width: 56.4102564103vw;
    height: 7.6923076923vw;
    margin: 1.5384615385vw auto 0 auto;
  }
}

.introduction-point-col__data-summary-text {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  font-size: 18px;
  font-weight: 800;
  line-height: 100%; /* 18px */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-summary-text {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-summary-text {
    font-size: 4.1025641026vw;
  }
}

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

.introduction-point-col__notice {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #000;
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%; /* 10px */
  margin-top: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__notice {
    margin-top: 0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__notice {
    font-size: 2.5641025641vw;
    width: calc(100% - 10.2564102564vw);
    margin: 2.0512820513vw 5.1282051282vw 0;
  }
}

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

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

.introduction-point-col__data-number2 {
  color: #e7ff00;
  font-family: "din-2014", sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 80%; /* 80px */
  letter-spacing: -2px;
  transform: translateY(13px);
  margin-left: 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-number2 {
    font-size: 7.8125vw;
    transform: translateY(1.015625vw);
    margin-left: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-number2 {
    font-size: 20.5128205128vw;
    transform: translateY(1.2820512821vw);
    margin-left: 1.2820512821vw;
  }
}

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

.introduction-point-col__data-unit2 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #e7ff00;
  font-size: 26px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -0.52px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-unit2 {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-unit2 {
    font-size: 7.1794871795vw;
    transform: translateY(-6px);
  }
}

.introduction-btn-box {
  margin-top: 80px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-btn-box {
    margin-top: 6.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-btn-box {
    margin-top: 8.9743589744vw;
  }
}

.introduction-btn {
  margin: 0 auto;
}

.example {
  margin-top: 120px;
  padding-bottom: 180px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    margin-top: 9.375vw;
    padding-bottom: 14.0625vw;
  }
}
@media (max-width: 767px) {
  .example {
    margin-top: 15.3846153846vw;
    padding-bottom: 20.5128205128vw;
  }
}

.example-heading {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .example-heading {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}

.example-heading span {
  font-family: "Yu Gothic StdN E", sans-serif;
  color: #000;
  background-color: #e7ff00;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  padding: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading span {
    font-size: 2.5vw;
    padding: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .example-heading span {
    font-size: 6.1538461538vw;
    padding: 1.5384615385vw;
  }
}

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

@media (max-width: 767px) {
  .example-slider .slick-list {
    padding: 0 25% 0 0 !important;
  }
}

.example-slider .slick-track {
  display: flex;
}

.example-slider .slick-slide {
  background-color: #f2f2f2;
  height: auto !important;
}

.example-slider-col {
  width: 310px;
  margin: 0 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col {
    width: 24.21875vw;
    margin: 0 0.78125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col {
    width: 65.3846153846vw;
    margin: 0 2.5641025641vw;
  }
}

.example-slider-col__income {
  background: linear-gradient(180deg, #040405 0%, #313339 100%);
  padding: 12px 0 8px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income {
    padding: 0.9375vw 0 0.625vw 0;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income {
    padding: 2.3076923077vw 0 1.5384615385vw 0;
  }
}

.example-slider-col__income-title {
  background: #e7ff00;
  padding: 3px 6px;
  margin-bottom: 5px;
  line-height: 1;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__income-title {
    padding: 0.1875vw 0.375vw;
    margin-bottom: 0.3125vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-title {
    padding: 0.234375vw 0.46875vw;
    margin-bottom: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-title {
    padding: 0.641025641vw 1.2820512821vw;
    margin-bottom: 1.2820512821vw;
  }
}

.example-slider-col__income-title span {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  font-size: 18px;
  font-weight: 800;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__income-title span {
    font-size: 0.9473684211vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-title span {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-title span {
    font-size: 3.8461538462vw;
  }
}

.example-slider-col__income-omission {
  color: #e7ff00;
  font-family: "din-2014", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30%; /* 7.8px */
  margin-left: 10px;
  margin-right: 5px;
  margin-bottom: 15px;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__income-omission {
    font-size: 1.3684210526vw;
    margin-left: 0.5263157895vw;
    margin-right: 0.2631578947vw;
    margin-bottom: 0.7894736842vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-omission {
    font-size: 2.03125vw;
    margin-left: 0.78125vw;
    margin-right: 0.390625vw;
    margin-bottom: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-omission {
    font-size: 5.5128205128vw;
  }
}

.example-slider-col__income-number {
  color: #e7ff00;
  font-family: "din-2014", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 80%; /* 41.6px */
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__income-number {
    font-size: 2.7368421053vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-number {
    font-size: 4.0625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-number {
    font-size: 10.7692307692vw;
  }
}

.example-slider-col__income-unit {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #e7ff00;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__income-unit {
    font-size: 0.9473684211vw;
  }
}
@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__img-area {
  width: 100%;
}

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

.example-slider-col__detail {
  background-color: #dadce3;
  padding: 16px;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__detail {
    padding: 0.8421052632vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail {
    padding: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail {
    padding: 3.3333333333vw;
  }
}

.example-slider-col__detail-title {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #2a2a2a;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%; /* 22px */
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__detail-title {
    font-size: 1.1578947368vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-title {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-title {
    font-size: 4.6153846154vw;
  }
}

.example-slider-col__detail-inner {
  margin-top: 16px;
  background: #fff;
  padding: 14px;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__detail-inner {
    margin-top: 0.8421052632vw;
    padding: 0.7368421053vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-inner {
    margin-top: 1.25vw;
    padding: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-inner {
    margin-top: 3.3333333333vw;
    padding: 2.9487179487vw;
  }
}

.example-slider-col__detail-list-item {
  font-family: "Yu Gothic Pr6N D", sans-serif;
  color: #2a2a2a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__detail-list-item {
    font-size: 0.7894736842vw;
  }
}
@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.0769230769vw;
  }
}

.example-slider-col__detail-list-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/content_assets/50dp2/img/example-icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  vertical-align: -2px;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__detail-list-item::before {
    width: 0.8421052632vw;
    height: 0.8421052632vw;
    margin-right: 0.2631578947vw;
  }
}
@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: 12px;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 0.6315789474vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 2.3076923077vw;
  }
}

.example-slider-custom-dots {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}

.example-slider-custom-arrow {
  width: 40px;
  height: 40px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-arrow {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-arrow {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
}

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

.example-slider-custom-prev {
  order: -1;
  margin-right: 22px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-prev {
    margin-right: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-prev {
    margin-right: 5.1282051282vw;
  }
}

.example-slider-custom-next {
  margin-left: 22px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-next {
    margin-left: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-next {
    margin-left: 5.1282051282vw;
  }
}

.example-slider-custom-prev::before,
.example-slider-custom-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  padding: 2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-prev::before,
  .example-slider-custom-next::before {
    width: 0.78125vw;
    height: 0.78125vw;
    border-width: 0 0.15625vw 0.15625vw 0;
    padding: 0.15625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-prev::before,
  .example-slider-custom-next::before {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
    border-width: 0 0.5128205128vw 0.5128205128vw 0;
    padding: 0.5128205128vw;
  }
}

.example-slider-custom-prev::before {
  transform: rotate(135deg);
  margin-right: -5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-prev::before {
    margin-right: -0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-prev::before {
    margin-right: -1.2820512821vw;
  }
}

.example-slider-custom-next::before {
  transform: rotate(-45deg);
  margin-left: -5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-next::before {
    margin-left: -0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-next::before {
    margin-left: -1.2820512821vw;
  }
}

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

.example-slider-custom-dots-container .slick-dots {
  display: flex;
  align-items: center;
  position: static;
  transform: translateY(-5px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots {
    transform: translateY(-0.390625vw);
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots {
    transform: translateY(-0.5128205128vw);
  }
}

.example-slider-custom-dots-container .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li {
    width: 0.625vw;
    height: 0.625vw;
    margin: 0 0.625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
    margin: 0 2.0512820513vw;
  }
}

.example-slider-custom-dots-container .slick-dots li button {
  width: 8px;
  height: 8px;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li button {
    width: 0.625vw;
    height: 0.625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li button {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
  }
}

.example-slider-custom-dots-container .slick-dots li button:before {
  width: 8px;
  height: 8px;
  font-size: 8px;
  color: #383b3e;
  opacity: 0.3;
  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.625vw;
    height: 0.625vw;
    font-size: 0.625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li button:before {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
    font-size: 2.5641025641vw;
  }
}

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

.probrem {
  background: linear-gradient(180deg, #191a1b 0%, #34373f 100%);
  padding: 80px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem {
    padding: 6.25vw 0;
  }
}
@media (max-width: 767px) {
  .probrem {
    padding: 15.3846153846vw 5.1282051282vw 9.4871794872vw 5.1282051282vw;
  }
}

.probrem-heading {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 100%; /* 28px */
  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.641025641vw;
  }
}

.probrem-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-box {
    gap: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .probrem-box {
    display: block;
  }
}

.probrem-count {
  font-family: "din-2014", sans-serif;
  color: #e6ff00;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
  transform: translateY(-50%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-count {
    font-size: 3.125vw;
    left: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .probrem-count {
    font-size: 7.6923076923vw;
    left: 2.5641025641vw;
  }
}

.probrem-profile {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -43px;
  margin-right: 36px;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-profile {
    margin-top: -3.359375vw;
    margin-right: 2.8125vw;
  }
}
@media (max-width: 767px) {
  .probrem-profile {
    gap: 2.5641025641vw;
    margin-top: -7.6923076923vw;
    margin-right: 5.1282051282vw;
  }
}

.probrem-profile__img {
  width: 80px;
  height: 80px;
  display: block;
  margin-left: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-profile__img {
    width: 6.25vw;
    height: 6.25vw;
    margin-left: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .probrem-profile__img {
    width: 20.5128205128vw;
    height: 20.5128205128vw;
    margin-left: unset;
  }
}

.probrem-profile__caption {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #e7ff00;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-profile__caption {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .probrem-profile__caption {
    font-size: 3.8461538462vw;
    line-height: 1.2;
    display: block;
    text-align: center;
    transform: translateY(-50%);
  }
}

.probrem-profile__caption small {
  font-size: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-profile__caption small {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .probrem-profile__caption small {
    font-size: 3.0769230769vw;
  }
}

.probrem-bubble {
  background: #52555e;
  width: 466px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble {
    width: 36.40625vw;
    height: 11.328125vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble {
    width: calc(100% + 5.1282051282vw);
    height: 27.6923076923vw;
    margin-top: 10.2564102564vw;
    transform: translateX(-5.1282051282vw);
    justify-content: flex-start;
    padding: 0 7.6923076923vw;
  }
}

.probrem-bubble__inner {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #fff;
  text-align: left;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble__inner {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble__inner {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}

.probrem-bubble__inner strong {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 140%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble__inner strong {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble__inner strong {
    font-size: 4.358974359vw;
  }
}

.support {
  padding-top: 80px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support {
    padding-top: 6.25vw;
  }
}
@media (max-width: 767px) {
  .support {
    padding-top: 16.9230769231vw;
  }
}

.support-heading {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .support-heading {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}

.support-heading::before {
  content: "";
  display: inline-block;
  width: 575px;
  height: 346px;
  background-image: url("/content_assets/50dp2/img/support-heading-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading::before {
    width: 44.921875vw;
    height: 27.03125vw;
  }
}
@media (max-width: 767px) {
  .support-heading::before {
    display: none;
  }
}

.support-heading-bubble {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-bubble {
    font-size: 2.65625vw;
  }
}
@media (max-width: 767px) {
  .support-heading-bubble {
    font-size: 6.1538461538vw;
  }
}

.support-heading-sub {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #fff;
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 260%;
  margin-top: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-sub {
    font-size: 1.40625vw;
    margin-top: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .support-heading-sub {
    font-size: 4.1025641026vw;
    margin-top: 2.5641025641vw;
    font-weight: 700;
    line-height: 1.8;
  }
}

.support-heading-main {
  font-family: "Yu Gothic StdN E", sans-serif;
  background: #e7ff00;
  padding: 6px;
  margin-top: 16px;
  display: inline-block !important;
  line-height: 1;
  font-size: 50px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-main {
    padding: 0.46875vw;
    margin-top: 1.5625vw;
    font-size: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .support-heading-main {
    padding: 1.5384615385vw;
    margin-top: 2.0512820513vw;
    font-size: 8.2051282051vw;
  }
}

@media (min-width: 1280px) {
  .support-heading-main.is-sp {
    display: none !important;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-main.is-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .support-heading-main.is-sp {
    display: inline-block !important;
  }
}

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

@media (max-width: 767px) {
  .support-heading-main + .support-heading-main {
    margin-top: 2.0512820513vw;
  }
}

.support-relay-arrow {
  margin: 22px 0 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-relay-arrow {
    margin: 1.71875vw 0 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-relay-arrow {
    margin: 8.9743589744vw 0 4.1025641026vw;
  }
}

.support-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  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 {
    margin-top: 4.6875vw;
    gap: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-box {
    display: block;
    margin-top: 10.2564102564vw;
  }
}

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

.support-col__inner {
  width: 300px;
  position: relative;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.65) 100%);
  padding-bottom: 51px;
}
@media (max-width: 767px) {
  .support-col__inner {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__inner {
    width: 23.4375vw;
    padding-bottom: 3.984375vw;
  }
}
@media (max-width: 767px) {
  .support-col__inner {
    padding-bottom: 6.9230769231vw;
  }
}

.support-col__title {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 227px;
  height: 81px;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title {
    width: 17.734375vw;
    height: 6.328125vw;
  }
}
@media (max-width: 767px) {
  .support-col__title {
    width: 65.3846153846vw;
    height: 20.5128205128vw;
  }
}

.support-col__title-inner {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
@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.1025641026vw;
  }
}

.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__textarea {
  text-align: center;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea {
    height: 10vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea {
    height: 29.2307692308vw;
  }
}

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

.support-col__text1 {
  color: #e7ff00;
  font-family: "Gothic MB101 DemiBold", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -0.58px;
  transform: translateY(50%);
}
@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;
    transform: unset;
  }
}

.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: #fff;
  width: 260px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary {
    width: 20.3125vw;
    height: 2.96875vw;
    bottom: -0.78125vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary {
    width: 66.6666666667vw;
    height: 9.7435897436vw;
    bottom: -4.8717948718vw;
  }
}

.support-col__summary-text {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
}
@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: flex;
  }
}

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

.support-col__notice {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #000;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%; /* 10px */
  margin-top: 18px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__notice {
    font-size: 0.78125vw;
    margin-top: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .support-col__notice {
    font-size: 2.5641025641vw;
    margin-top: 0;
    color: #fff;
  }
}

.support-col__text2 {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #e7ff00;
  font-size: 18px;
  font-weight: 800;
  line-height: 100%; /* 18px */
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 15px 26px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text2 {
    font-size: 1.40625vw;
    gap: 1.25vw;
    margin: 1.171875vw 2.03125vw 0;
  }
}
@media (max-width: 767px) {
  .support-col__text2 {
    font-size: 4.6153846154vw;
    gap: 3.5897435897vw;
    margin: 0 14.358974359vw;
    transform: translateY(1.0256410256vw);
  }
}

.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: #ffffff;
}

.support-col__text3 {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #e7ff00;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 30px */
  transform: translateY(20px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text3 {
    font-size: 1.40625vw;
    transform: translateY(1.5625vw);
  }
}
@media (max-width: 767px) {
  .support-col__text3 {
    font-size: 4.1025641026vw;
    transform: translateY(3.8461538462vw);
  }
}

.support-col__img {
  display: block;
  transform: translateY(28px);
  margin: 0 auto;
  width: 216px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__img {
    width: 16.875vw;
    transform: translateY(2.1875vw);
  }
}
@media (max-width: 767px) {
  .support-col__img {
    transform: translateY(3.8461538462vw);
  }
}

.contact {
  padding-bottom: 180px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact {
    padding-bottom: 14.0625vw;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-bottom: 30.7692307692vw;
  }
}

.contact-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #dff600;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-box {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .contact-box {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-box {
    padding-top: 3.125vw;
    padding-bottom: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .contact-box {
    padding-top: 7.6923076923vw;
    padding-bottom: 10.2564102564vw;
  }
}

.contact-heading {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-align: center;
}

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

.contact-heading-bubble__inner {
  font-size: 18px;
  padding: 8px 28px;
  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 2.1875vw;
  }
}
@media (max-width: 767px) {
  .contact-heading-bubble__inner {
    font-size: 3.5897435897vw;
    padding: 1.5384615385vw 4.6153846154vw;
  }
}

.contact-heading-main {
  font-family: "Yu Gothic StdN E", sans-serif;
  font-size: 38px;
  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: 4.1025641026vw;
  }
}

.contact-text {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 24px;
  text-align: center;
  color: #000;
}
@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-text b {
  font-family: "Gothic MB101 DemiBold", sans-serif;
}

.contact-btns {
  display: flex;
  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;
    margin-top: 6.1538461538vw;
  }
}

.contact-btn {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 72px;
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  background: #000;
}
@media (max-width: 767px) {
  .contact-btn {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn {
    width: 25vw;
    height: 5.625vw;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .contact-btn {
    height: 14.358974359vw;
    font-size: 4.6153846154vw;
  }
}

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

.contact-btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 12px;
  background-image: url("/content_assets/50dp2/img/btn-arrow-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 6px);
  right: 30px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn::after {
    width: 1.5625vw;
    height: 0.9375vw;
    top: calc(50% - 0.46875vw);
    right: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .contact-btn::after {
    width: 5.1282051282vw;
    height: 3.0769230769vw;
    top: calc(50% - 1.5384615385vw);
    right: 4.1025641026vw;
  }
}/*# sourceMappingURL=index.css.map */