@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 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #383b3e;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 1;
  border-radius: 56px;
  width: 211px;
  height: 44px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn {
    font-size: 1.25vw;
    width: 16.484375vw;
    height: 3.4375vw;
  }
}
@media (max-width: 767px) {
  .header-btn {
    font-size: 3.5897435897vw;
    width: 41.7948717949vw;
    height: 10.5128205128vw;
  }
}

.header-btn::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 10px;
  background-image: url("/content_assets/50cu1/img/btn-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 5px);
  right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn::after {
    width: 0.546875vw;
    height: 0.78125vw;
    top: calc(50% - 0.390625vw);
    right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .header-btn::after {
    display: none;
  }
}

.fv {
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f9 0%, #e1e1e1 113.7%);
  background-image: url("/content_assets/50cu1/img/fv-bg-pc.png");
  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: 392px;
  height: 468px;
  background-image: url(/content_assets/50cu1/img/fv-img-tamaki-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner::before {
    top: 0.9375vw;
    width: 30.625vw;
    height: 36.5625vw;
  }
}
@media (max-width: 767px) {
  .fv-inner::before {
    display: none;
  }
}

.fv-inner-bk::before {
  content: "";
  display: inline-block;
  width: 392px;
  height: 468px;
  background-image: url(/content_assets/50cu1/img/fv-img-tamaki-pc_bk.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner-bk::before {
    top: 0.9375vw;
    width: 30.625vw;
    height: 36.5625vw;
  }
}
@media (max-width: 767px) {
  .fv-inner-bk::before {
    display: none;
  }
}

.fv-content {
  width: 560px;
  position: absolute;
  right: 13px;
  top: 65px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-content {
    width: 43.75vw;
    right: 1.015625vw;
    top: 5.078125vw;
  }
}
@media (max-width: 767px) {
  .fv-content {
    position: relative;
    width: 100%;
    right: unset;
    top: unset;
  }
}

.fv-btn {
  margin-top: 40px;
  margin-left: 73px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-btn {
    margin-top: 3.125vw;
    margin-left: 5.703125vw;
  }
}
@media (max-width: 767px) {
  .fv-btn {
    margin-top: 0;
    margin-left: 0;
    position: absolute !important;
    bottom: 7.4358974359vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

.common-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #383b3e;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  border-radius: 60px;
  width: 440px;
  height: 70px;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn {
    font-size: 1.71875vw;
    width: 34.375vw;
    height: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .common-btn {
    font-size: 4.6153846154vw;
    width: calc(100% - 10.2564102564vw);
    height: 14.358974359vw;
  }
}

.common-btn::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 14px;
  background-image: url("/content_assets/50cu1/img/btn-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px);
  right: 28px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn::after {
    width: 0.703125vw;
    height: 1.09375vw;
    top: calc(50% - 0.546875vw);
    right: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .common-btn::after {
    width: 2.3076923077vw;
    height: 3.5897435897vw;
    top: calc(50% - 1.7948717949vw);
    right: 7.1794871795vw;
    right: 5.641025641vw;
  }
}

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

.common-btn-bubble {
  color: #fff600;
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 34px;
  background: #a258c9;
  padding: 7px 16px;
  position: absolute;
  top: -22px;
  left: 30px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble {
    font-size: 1.171875vw;
    padding: 0.546875vw 1.25vw;
    top: -1.71875vw;
    left: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble {
    font-size: 3.0769230769vw;
    padding: 1.2820512821vw 3.0769230769vw;
    top: -3.8461538462vw;
    left: 5.1282051282vw;
  }
}

.common-btn-bubble span {
  position: relative;
}

.common-btn-bubble span::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 14px;
  background-image: url("/content_assets/50cu1/img/cta-bubble-object01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
  bottom: -12px;
  left: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble span::after {
    width: 0.703125vw;
    height: 1.09375vw;
    bottom: -0.9375vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble span::after {
    width: 1.7948717949vw;
    height: 3.0769230769vw;
    left: 1.0256410256vw;
    bottom: -2.5641025641vw;
  }
}

.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;
}
@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: "Gothic MB101 DemiBold", sans-serif;
  color: #2a2a2a;
  font-size: 28px;
  font-weight: 700;
  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: 40px auto 0;
  display: flex;
  gap: 28px;
  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.125vw auto 0;
    gap: 2.1875vw;
    padding-bottom: 6.25vw;
  }
}
@media (max-width: 767px) {
  .worries-box {
    display: block;
    margin: 10.2564102564vw auto 0;
    padding-bottom: 15.3846153846vw;
  }
}

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

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

.worries-bubble {
  width: 476px;
  height: 120px;
  background: #fff;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble {
    width: 37.1875vw;
    height: 9.375vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble {
    width: 100%;
    height: 26.4102564103vw;
    border-radius: 13.0769230769vw;
  }
}

.worries-bubble::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background-image: url("/content_assets/50cu1/img/worries-bubble-object01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(100% - 14px);
  left: 66px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble::after {
    width: 1.5625vw;
    height: 2.34375vw;
    top: calc(100% - 1.09375vw);
    left: 5.15625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble::after {
    width: 5.1282051282vw;
    height: 7.6923076923vw;
    top: calc(100% - 3.5897435897vw);
    left: 20.5128205128vw;
  }
}

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

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

.worries-col:nth-child(even) .worries-profile__caption {
  color: #b88dce;
}

.worries-bubble__inner {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #2a2a2a;
  text-align: center;
  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.5897435897vw;
    line-height: 1.5;
  }
}

.worries-bubble__inner strong {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #383b3e;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__inner strong {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__inner strong {
    font-size: 4.1025641026vw;
    line-height: 1.5;
  }
}

.worries-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-profile {
    gap: 0.78125vw;
    margin-top: -1.71875vw;
  }
}
@media (max-width: 767px) {
  .worries-profile {
    display: block;
    gap: 2.5641025641vw;
    margin-top: -2.5641025641vw;
  }
}

.worries-profile__img {
  width: 80px;
  height: 80px;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-profile__img {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media (max-width: 767px) {
  .worries-profile__img {
    width: 17.9487179487vw;
    height: 17.9487179487vw;
    margin: -2.5641025641vw auto 0 auto;
  }
}

.worries-profile__caption {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #d3bf55;
  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.5897435897vw;
    line-height: 1.2;
    display: block;
    text-align: center;
    margin-top: 0.390625vw;
  }
}

.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: 2.5641025641vw;
  }
}

.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: 8px;
  height: 56px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow-img {
    width: 0.625vw;
    height: 4.375vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow-img {
    width: 1.5384615385vw;
    height: 10.7692307692vw;
  }
}

.rounded-area1 {
  background: linear-gradient(180deg, #c88ee5 0%, #c077e8 100%);
  border-radius: 0 150px 150px 0;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .rounded-area1 {
    border-radius: 0 11.71875vw 11.71875vw 0;
  }
}
@media (max-width: 767px) {
  .rounded-area1 {
    overflow: hidden;
    border-radius: 0 30.7692307692vw 30.7692307692vw 0;
  }
}

.rounded-area1::before {
  content: "";
  display: inline-block;
  width: 291px;
  height: 251px;
  background-image: url("/content_assets/50cu1/img/rounded-area-object01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 116px;
  right: calc(50% + 310px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .rounded-area1::before {
    width: 22.734375vw;
    height: 19.609375vw;
    top: 9.0625vw;
    right: calc(50% + 24.21875vw);
  }
}
@media (max-width: 767px) {
  .rounded-area1::before {
    background-image: url("/content_assets/50cu1/img/rounded-area-object01_sp.svg");
    width: 37.1794871795vw;
    height: 31.0256410256vw;
    top: 4.1025641026vw;
    right: unset;
    left: -1.2820512821vw;
  }
}

.rounded-area1::after {
  content: "";
  display: inline-block;
  width: 358px;
  height: 274px;
  background-image: url("/content_assets/50cu1/img/rounded-area-object02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 128px;
  left: calc(50% + 293px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .rounded-area1::after {
    width: 27.96875vw;
    height: 21.40625vw;
    top: 10vw;
    left: calc(50% + 22.890625vw);
  }
}
@media (max-width: 767px) {
  .rounded-area1::after {
    background-image: url("/content_assets/50cu1/img/rounded-area-object02_sp.svg");
    width: 35.1282051282vw;
    height: 31.5384615385vw;
    top: 46.4102564103vw;
    left: unset;
    right: 0;
  }
}

.rounded-area2 {
  background: linear-gradient(180deg, #c88ee5 0%, #c077e8 100%);
  border-radius: 150px 0 0 0;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .rounded-area2 {
    border-radius: 11.71875vw 0 0 0;
  }
}
@media (max-width: 767px) {
  .rounded-area2 {
    border-radius: 30.7692307692vw 0 0 0;
    overflow: hidden;
  }
}

.rounded-area2::before {
  content: "";
  display: inline-block;
  width: 295px;
  height: 198px;
  background-image: url("/content_assets/50cu1/img/rounded-area-object03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 161px;
  right: calc(50% + 329px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .rounded-area2::before {
    width: 23.046875vw;
    height: 15.46875vw;
    top: 12.578125vw;
    right: calc(50% + 25.703125vw);
  }
}
@media (max-width: 767px) {
  .rounded-area2::before {
    background-image: url("/content_assets/50cu1/img/rounded-area-object03_sp.svg");
    width: 33.5897435897vw;
    height: 29.4871794872vw;
    top: 1.5384615385vw;
    right: 0;
  }
}

.rounded-area2::after {
  content: "";
  display: inline-block;
  width: 320px;
  height: 186px;
  background-image: url("/content_assets/50cu1/img/rounded-area-object04.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 175px;
  left: calc(50% + 308px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .rounded-area2::after {
    width: 25vw;
    height: 14.53125vw;
    top: 13.671875vw;
    left: calc(50% + 24.0625vw);
  }
}
@media (max-width: 767px) {
  .rounded-area2::after {
    background-image: url("/content_assets/50cu1/img/rounded-area-object04_sp.svg");
    width: 27.9487179487vw;
    height: 46.9230769231vw;
    top: 41.7948717949vw;
    left: -1.2820512821vw;
  }
}

.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 {
  text-align: center;
  font-family: "Gothic MB101 DemiBold", sans-serif;
}

.introduction-heading-sub {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 220%;
  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;
    line-height: 1.8;
  }
}

.introduction-heading-main {
  background: #fff;
  padding: 6px;
  margin-top: 20px;
  display: inline-block !important;
  line-height: 1;
  font-size: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-main {
    padding: 0.46875vw;
    margin-top: 1.5625vw;
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-main {
    padding: 1.5384615385vw;
    margin-top: 2.5641025641vw;
    font-size: 7.6923076923vw;
  }
}

@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-heading-main strong {
  color: #a258c9;
}

.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: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point {
    max-width: 76.5625vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point {
    gap: 3.75vw;
  }
}
@media (max-width: 767px) {
  .introduction-point {
    display: block;
  }
}

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

.introduction-point-col__inner {
  width: 466px;
  height: 236px;
  border-radius: 50px 50px 50px 0;
  background: #f3f3f3;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__inner {
    width: 36.40625vw;
    height: 18.4375vw;
    border-radius: 3.90625vw 3.90625vw 3.90625vw 0;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__inner {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
    height: 48.2051282051vw;
    border-radius: 9.7435897436vw 9.7435897436vw 9.7435897436vw 0;
  }
}

.introduction-point-col__count {
  font-family: "din-2014", sans-serif;
  width: 140px;
  height: 46px;
  background-image: url("/content_assets/50cu1/img/introduction-point-col__count-bg-pc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  color: #a258c9;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__count {
    width: 10.9375vw;
    height: 3.59375vw;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__count {
    width: 28.2051282051vw;
    height: 9.2307692308vw;
    background-image: url("/content_assets/50cu1/img/introduction-point-col__count-bg-sp.svg");
    font-size: 4.1025641026vw;
  }
}

.introduction-point-col__badge {
  width: 111px;
  height: 115px;
  background-image: url("/content_assets/50cu1/img/introduction-point-col__badge-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -29px;
  right: 8px;
  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.984375vw;
    top: -2.265625vw;
    right: 0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__badge {
    width: 22.0512820513vw;
    height: 22.8205128205vw;
    top: -4.1025641026vw;
    right: 3.0769230769vw;
  }
}

.introduction-point-col__badge-inner {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #fff600;
  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 {
    color: #fff;
    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;
  margin-top: 34px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data {
    margin-top: 2.65625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data {
    margin-top: 0;
    flex-wrap: wrap;
  }
}

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

@media (min-width: 1280px) {
  .introduction-point-col__data2 {
    margin-top: 17px;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data2 {
    margin-top: 1.328125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data2 {
    margin-top: -4.1025641026vw;
  }
}

.introduction-point-col__data-title {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #2a2a2a;
  font-size: 17px;
  font-weight: 700;
  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: 22px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-title strong {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-title strong {
    font-size: 4.6153846154vw;
  }
}

.introduction-point-col__data-number1 {
  color: #a258c9;
  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: "Gothic MB101 DemiBold", sans-serif;
  color: #a258c9;
  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: #a258c9;
  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: #a258c9;
  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;
  border-radius: 20px;
  width: 354px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 42px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-summary {
    border-radius: 1.5625vw;
    width: 27.65625vw;
    height: 2.96875vw;
    margin: 1.5625vw auto 3.28125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-summary {
    border-radius: 5.1282051282vw;
    width: 66.6666666667vw;
    height: 7.6923076923vw;
    margin: 2.0512820513vw auto 0 auto;
  }
}

.introduction-point-col__data-summary-text {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #a258c9;
  font-size: 18px;
  font-weight: 700;
  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/50cu1/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: #fff;
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%; /* 10px */
  margin-top: 8px;
  margin-right: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__notice {
    margin-top: 0.625vw;
    margin-right: 3.75vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__notice {
    text-align: center;
    font-size: 2.5641025641vw;
    margin-top: 2.0512820513vw;
    margin-right: unset;
  }
}

.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: #a258c9;
  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(2.3076923077vw);
    margin-left: 1.2820512821vw;
  }
}

.introduction-point-col__data-number2 span {
  color: #a258c9;
  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: #a258c9;
  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;
  }
}

.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 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #fff600;
  font-size: 35px;
  font-weight: 700;
  line-height: 100%; /* 35px */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading {
    font-size: 2.734375vw;
    gap: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .example-heading {
    font-size: 7.6923076923vw;
    gap: 2.5641025641vw;
  }
}

.example-heading::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 26px;
  background-image: url("/content_assets/50cu1/img/example-heading-bubble.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading::before {
    width: 1.40625vw;
    height: 2.03125vw;
  }
}

.example-heading::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 26px;
  background-image: url("/content_assets/50cu1/img/example-heading-bubble.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1, -1);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading::after {
    width: 1.40625vw;
    height: 2.03125vw;
  }
}

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

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

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

.example-slider-col {
  width: 310px;
  border-radius: 6px;
  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 {
    border-radius: 4.1025641026vw;
    width: 65.3846153846vw;
    margin: 0 2.5641025641vw;
  }
}

.example-slider-col__income {
  border-radius: 6px 6px 0px 0px;
  background: #383b3e;
  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 {
    border-radius: 4.1025641026vw 4.1025641026vw 0px 0px;
    padding: 2.3076923077vw 0 1.5384615385vw 0;
  }
}

.example-slider-col__income-title {
  border-radius: 30px;
  background: #fff;
  padding: 6px 12px;
  margin-bottom: 5px;
  line-height: 1;
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .example-slider-col__income-title {
    border-radius: 1.5789473684vw;
    padding: 0.375vw 0.6315789474vw;
    margin-bottom: 0.2631578947vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-title {
    border-radius: 1.171875vw;
    padding: 0.46875vw 0.9375vw;
    margin-bottom: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-title {
    border-radius: 7.6923076923vw;
    padding: 1.2820512821vw 2.5641025641vw;
    margin-bottom: 1.2820512821vw;
  }
}

.example-slider-col__income-title span {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  background: linear-gradient(90deg, #494e62 0%, rgba(73, 78, 98, 0.8) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@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: #fff;
  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: #fff;
  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: "Gothic MB101 DemiBold", sans-serif;
  color: #fff;
  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: #f2f2f2;
  padding: 16px;
  border-radius: 0 0 6px 6px;
}
@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 {
    border-radius: 0 0 4.1025641026vw 4.1025641026vw;
    padding: 3.3333333333vw;
  }
}

.example-slider-col__detail-title {
  font-family: "Gothic MB101 DemiBold", 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;
  border-radius: 4px;
  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: "Gothic MB101 Regular", 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/50cu1/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.8205128205vw;
  }
}

.example-slider-custom-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.example-slider-custom-arrow {
  width: 40px;
  height: 40px;
  background-color: #383b3e;
  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: 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;
}
@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-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;
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots {
    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: #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.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: #383b3e;
}

.probrem-heading {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  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;
    margin-top: 15.3846153846vw;
  }
}

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

.probrem-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-profile {
    gap: 0.78125vw;
    margin-top: -1.71875vw;
  }
}
@media (max-width: 767px) {
  .probrem-profile {
    display: block;
    margin-top: -2.5641025641vw;
  }
}

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

.probrem-profile__caption {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #9193a1;
  font-size: 15px;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  text-align: center;
  display: block;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-profile__caption {
    font-size: 1.171875vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .probrem-profile__caption {
    font-size: 3.5897435897vw;
    margin-top: 1.0256410256vw;
    line-height: 1.1;
  }
}

.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: 2.5641025641vw;
  }
}

.probrem-bubble {
  background: #fff;
  border-radius: 60px;
  width: 486px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble {
    width: 37.96875vw;
    height: 9.375vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble {
    border-radius: 16.1538461538vw;
    width: 100%;
    height: 21.0256410256vw;
    margin-top: 10.2564102564vw;
  }
}

.probrem-bubble::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 30px;
  background-image: url("/content_assets/50cu1/img/worries-bubble-object01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(100% - 16px);
  left: 66px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble::after {
    width: 1.5625vw;
    height: 2.34375vw;
    top: calc(100% - 1.25vw);
    left: 5.15625vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble::after {
    width: 5.1282051282vw;
    height: 7.6923076923vw;
    top: calc(100% - 3.5897435897vw);
    left: 20.5128205128vw;
  }
}

.probrem-bubble__inner {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #2a2a2a;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  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: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  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.1025641026vw;
  }
}

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

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

.support-heading-bubble {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #fff600;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-bubble {
    font-size: 2.34375vw;
    gap: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .support-heading-bubble {
    font-size: 5.641025641vw;
    gap: 2.0512820513vw;
  }
}

.support-heading-bubble small {
  font-size: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-bubble small {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .support-heading-bubble small {
    font-size: 4.6153846154vw;
  }
}

.support-heading-bubble::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 26px;
  background-image: url("/content_assets/50cu1/img/example-heading-bubble.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-bubble::before {
    width: 1.40625vw;
    height: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .support-heading-bubble::before {
    width: 2.8205128205vw;
    height: 4.1025641026vw;
  }
}

.support-heading-bubble::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 26px;
  background-image: url("/content_assets/50cu1/img/example-heading-bubble.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1, -1);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-bubble::after {
    width: 1.40625vw;
    height: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .support-heading-bubble::after {
    width: 2.8205128205vw;
    height: 4.1025641026vw;
  }
}

.support-heading-sub {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 220%; /* 39.6px */
  margin-top: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-sub {
    font-size: 1.40625vw;
    margin-top: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support-heading-sub {
    font-size: 4.1025641026vw;
    margin-top: 3.0769230769vw;
    line-height: 1.8;
  }
}

.support-heading-main {
  background: #fff;
  padding: 6px;
  margin-top: 20px;
  display: inline-block !important;
  line-height: 1;
  font-size: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-main {
    padding: 0.46875vw;
    margin-top: 1.5625vw;
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-heading-main {
    padding: 1.0256410256vw;
    margin-top: 5.1282051282vw;
    font-size: 7.6923076923vw;
  }
}

.support-heading-main strong {
  color: #a258c9;
}

@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: 30px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-relay-arrow {
    margin: 2.34375vw 0;
  }
}
@media (max-width: 767px) {
  .support-relay-arrow {
    margin: 4.1025641026vw 0;
  }
}

@media (max-width: 767px) {
  .support-box + .support-relay-arrow {
    margin: 4.1025641026vw 0 4.1025641026vw;
  }
}

.support-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@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;
  }
}
@media (max-width: 767px) {
  .support-box {
    display: block;
  }
}

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

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

.support-col__inner {
  width: 300px;
  position: relative;
}
@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__whitearea {
  border-radius: 0 0 50px 0;
  background: #f3f3f3;
  padding-bottom: 30px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__whitearea {
    border-radius: 0 0 3.90625vw 0;
    padding-bottom: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .support-col__whitearea {
    border-radius: 0 0 12.8205128205vw 0;
    padding-bottom: unset;
    height: 44.6153846154vw;
  }
}

.support-col__title {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px 50px 0px 0px;
  background: #a258c9;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title {
    height: 5.9375vw;
    border-radius: 3.90625vw 3.90625vw 0px 0px;
  }
}
@media (max-width: 767px) {
  .support-col__title {
    height: 19.4871794872vw;
  }
}

.support-col__title-inner {
  color: #fff600;
  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: 28.7179487179vw;
  }
}

.support-col__textarea1 {
  background-image: url("/content_assets/50cu1/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/50cu1/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: #2a2a2a;
  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;
  border-radius: 20px;
  width: 260px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary {
    width: 20.3125vw;
    height: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary {
    width: 66.6666666667vw;
    height: 9.7435897436vw;
  }
}

.support-col__summary-text {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #a258c9;
  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/50cu1/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: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%; /* 10px */
  margin-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__notice {
    font-size: 0.78125vw;
    margin-top: 0.78125vw;
    padding-bottom: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .support-col__notice {
    color: #ccc;
    font-size: 2.5641025641vw;
    margin-top: 1.5384615385vw;
    padding-bottom: 2.0512820513vw;
  }
}

.support-col__text2 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text2 {
    font-size: 1.40625vw;
    gap: 1.25vw;
    margin: 0 2.03125vw;
  }
}
@media (max-width: 767px) {
  .support-col__text2 {
    font-size: 4.6153846154vw;
    gap: 3.5897435897vw;
    margin: 0 14.358974359vw;
  }
}

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

.support-col__text3 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #2a2a2a;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  transform: translateY(8px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text3 {
    font-size: 1.40625vw;
    transform: translateY(0.625vw);
  }
}
@media (max-width: 767px) {
  .support-col__text3 {
    font-size: 4.1025641026vw;
    transform: translateY(2.0512820513vw);
  }
}

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

.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;
  border-radius: 40px;
  background: linear-gradient(0deg, #a258c9 0%, #a258c9 100%), #fff;
  padding-top: 40px;
  padding-bottom: 60px;
}
@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.125vw;
    padding-bottom: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .contact-box {
    margin: 0 5.1282051282vw;
    width: calc(100% - 10.2564102564vw);
    padding-top: 7.6923076923vw;
    padding-bottom: 10.2564102564vw;
  }
}

.contact-heading {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}

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

.contact-heading-bubble__inner {
  font-size: 18px;
  padding: 8px 28px;
  border-radius: 60px;
  border: 2px solid #fff;
  display: inline-block;
}
@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;
    border: 1.5px solid #fff;
  }
}

.contact-heading-main {
  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: 2.5641025641vw;
  }
}

.contact-text {
  font-family: "Gothic MB101 Regular", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 24px;
  text-align: center;
  color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-text {
    font-size: 1.5625vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact-text {
    font-size: 4.1025641026vw;
    margin-top: 4.1025641026vw;
  }
}

.contact-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;
    gap: 5.1282051282vw;
    margin-top: 6.1538461538vw;
  }
}

.contact-btn {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 70px;
  position: relative;
  color: #a258c9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50px;
  background: #f4e714;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn {
    width: 25vw;
    height: 5.46875vw;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .contact-btn {
    width: calc(100% - 10.2564102564vw);
    height: 13.3333333333vw;
    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: 9px;
  height: 15px;
  background-image: url("/content_assets/50cu1/img/contact-btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7.5px);
  right: 28px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn::after {
    width: 0.703125vw;
    height: 1.171875vw;
    top: calc(50% - 0.5859375vw);
    right: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .contact-btn::after {
    width: 2.0512820513vw;
    height: 3.0769230769vw;
    top: calc(50% - 1.5384615385vw);
    right: 5.1282051282vw;
  }
}/*# sourceMappingURL=index.css.map */