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

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

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

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

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

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

a,
button {
  outline: 0;
}

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

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

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

dl,
p {
  margin: 0;
}

dl {
  padding: 0;
}

dd {
  margin: 0;
}

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

em {
  font-style: normal;
}

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

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

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

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

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

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

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

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

footer {
  background-color: #fff;
}

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

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

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

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

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

.blue {
  color: #0156A0;
}

.green {
  color: #484848;
}

.w4 {
  font-weight: 400;
}

.w5 {
  font-weight: 500;
}

.w6 {
  font-weight: 600;
}

.w7 {
  font-weight: 700;
}

.w8 {
  font-weight: 800;
}

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

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

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

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

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

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

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

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

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

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

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

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

main {
  overflow: unset !important;
}

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

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

.header-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 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) {
    -ms-flex-wrap: wrap;
        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%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            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 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  background: -webkit-gradient(linear, left top, right top, from(#F24872), color-stop(50.5%, #FF665D), to(#FFA12D));
  background: linear-gradient(90deg, #F24872 0%, #FF665D 50.5%, #FFA12D 100%);
  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/47af1/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: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), color-stop(113.7%, #E1E1E1));
  background: linear-gradient(180deg, #F9F9F9 0%, #E1E1E1 113.7%);
  background-image: url("/content_assets/47af1/img/fv-bg-pc.png");
  background-size: 1920px 540px;
  background-position: center center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv {
    background-size: 150vw 42.1875vw;
  }
}
@media (max-width: 767px) {
  .fv {
    background-image: unset;
    background-image: unset;
  }
}

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

.fv-inner::before {
  content: "";
  display: inline-block;
  width: 442px;
  height: 520px;
  background-image: url(/content_assets/47af1/img/fv-img-tamaki-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner::before {
    width: 34.53125vw;
    height: 40.625vw;
  }
}
@media (max-width: 767px) {
  .fv-inner::before {
    display: none;
  }
}

.fv-inner::after {
  content: "";
  display: inline-block;
  width: 1301px;
  height: 541px;
  background-image: url(/content_assets/47af1/img/fv-bg-pattern-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner::after {
    width: 101.640625vw;
    height: 42.265625vw;
  }
}
@media (max-width: 767px) {
  .fv-inner::after {
    display: none;
  }
}

.fv-content {
  width: 800px;
  position: absolute;
  right: 35px;
  top: 54px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-content {
    width: 62.5vw;
    right: 2.734375vw;
    top: 4.21875vw;
  }
}
@media (max-width: 767px) {
  .fv-content {
    position: relative;
    width: 100%;
    right: unset;
    top: unset;
  }
}

.fv-btn {
  -webkit-filter: drop-shadow(0px 4px 20px rgba(242, 72, 114, 0.3));
          filter: drop-shadow(0px 4px 20px rgba(242, 72, 114, 0.3));
  margin-top: 40px;
  margin-left: 125px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-btn {
    margin-top: 3.125vw;
    margin-left: 9.765625vw;
  }
}
@media (max-width: 767px) {
  .fv-btn {
    margin-top: 0;
    margin-left: 0;
    position: absolute !important;
    bottom: 7.4358974359vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.common-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  background: -webkit-gradient(linear, left top, right top, from(#F24872), color-stop(50.5%, #FF665D), to(#FFA12D));
  background: linear-gradient(90deg, #F24872 0%, #FF665D 50.5%, #FFA12D 100%);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  border-radius: 60px;
  width: 440px;
  height: 70px;
  position: relative;
}
@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: 85.8974358974vw;
    height: 14.358974359vw;
  }
}

.common-btn::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 14px;
  background-image: url("/content_assets/47af1/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-bubble {
  color: #F24872;
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 34px;
  background: #FFF;
  padding: 7px 16px;
  position: absolute;
  top: -22px;
  left: 30px;
}
@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: 10.5px;
  height: 9.2px;
  background-image: url("/content_assets/47af1/img/cta-bubble-object01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2;
  bottom: -10px;
  left: 2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble span::after {
    width: 0.8203125vw;
    height: 0.71875vw;
    bottom: -0.78125vw;
    left: 0.15625vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble span::after {
    width: 2.1282051282vw;
    height: 1.8461538462vw;
    left: 0.5128205128vw;
    bottom: -1.7948717949vw;
  }
}

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

.worries {
  margin: 80px 0 0 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries {
    margin: 6.25vw 0 0 0;
  }
}
@media (max-width: 767px) {
  .worries {
    margin: 15.3846153846vw 0 0 0;
  }
}

.worries::after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 100px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries::after {
    height: 7.8125vw;
    margin-bottom: -7.8125vw;
  }
}
@media (max-width: 767px) {
  .worries::after {
    height: 10.2564102564vw;
    margin-bottom: -10.2564102564vw;
  }
}

.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: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
}
@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: 4.6875vw auto 0;
    gap: 2.1875vw;
    padding-bottom: 3.125vw;
  }
}
@media (max-width: 767px) {
  .worries-box {
    display: block;
    margin: 10.2564102564vw auto 0;
    padding-bottom: 15.3846153846vw;
  }
}

@media (max-width: 767px) {
  .worries-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 5.1282051282vw;
    gap: 6.4102564103vw;
  }
}

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

.worries-bubble {
  width: 476px;
  height: 120px;
  background: -webkit-gradient(linear, left top, left bottom, from(#EAEEF9), to(#D8E1FB));
  background: linear-gradient(180deg, #EAEEF9 0%, #D8E1FB 100%);
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble {
    width: 37.1875vw;
    height: 9.375vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble {
    width: 56.4102564103vw;
    height: 32.3076923077vw;
    border-radius: 16.1538461538vw;
  }
}

.worries-bubble::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("/content_assets/47af1/img/worries-bubble-object02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble::before {
    width: 2.5vw;
    height: 2.5vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble::before {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
  }
}

.worries-bubble::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("/content_assets/47af1/img/worries-bubble-object01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(100% + 8px);
  right: 160px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble::after {
    width: 2.5vw;
    height: 2.5vw;
    top: calc(100% + 0.625vw);
    right: 12.5vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble::after {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
    top: calc(100% + 2.0512820513vw);
    right: 41.0256410256vw;
    top: 0;
    left: 100%;
    -webkit-transform: rotate(-120deg);
            transform: rotate(-120deg);
  }
}

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

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

.worries-col:nth-child(even) .worries-bubble::before {
  background-image: url("/content_assets/47af1/img/worries-bubble-object03.svg");
  top: 0;
  right: 0;
  left: unset;
}

@media (max-width: 767px) {
  .worries-col:nth-child(even) .worries-bubble::after {
    top: 0;
    right: 100%;
    left: unset;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}

.worries-bubble__inner {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #2A2A2A;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
@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;
  }
}

.worries-bubble__inner strong {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #456BCD;
  font-size: 22px;
  font-weight: 700;
  line-height: 140%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__inner strong {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__inner strong {
    font-size: 4.358974359vw;
  }
}

.worries-profile {
  text-align: center;
}

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

.worries-profile__caption {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  margin-top: 10px;
  color: #AFBCE0;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-profile__caption {
    margin-top: 0.78125vw;
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .worries-profile__caption {
    margin-top: 2.5641025641vw;
    font-size: 3.0769230769vw;
    line-height: 1.3;
    display: inline-block;
  }
}

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

.gradient-pattern {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 241, 116, 0.45)), color-stop(33%, rgba(255, 163, 202, 0.45)), color-stop(66%, rgba(187, 163, 255, 0.45)), to(rgba(163, 216, 255, 0.45)));
  background: linear-gradient(180deg, rgba(255, 241, 116, 0.45) 0%, rgba(255, 163, 202, 0.45) 33%, rgba(187, 163, 255, 0.45) 66%, rgba(163, 216, 255, 0.45) 100%);
}

.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: 20px;
  height: 32px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow-img {
    width: 1.5625vw;
    height: 2.5vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow-img {
    width: 5.1282051282vw;
    height: 8.2051282051vw;
  }
}

.introduction {
  padding-top: 160px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction {
    padding-top: 12.5vw;
  }
}
@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: #2A2A2A;
  font-size: 18px;
  font-weight: 700;
  line-height: 220%;
}
@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: 180%;
  }
}

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

@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: 8px;
  }
}

.introduction-heading-main__clip {
  background: linear-gradient(91deg, #F5CA03 -6.5%, #F24872 33.06%, #6065E9 60.63%, #0A9AE7 82.15%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-main__clip {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-main__clip {
    font-size: 7.6923076923vw;
  }
}

.introduction-relay-arrow {
  margin: 20px auto 50px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-relay-arrow {
    margin: 1.5625vw auto 3.90625vw;
  }
}
@media (max-width: 767px) {
  .introduction-relay-arrow {
    margin: 5.1282051282vw auto 8.9743589744vw;
  }
}

.introduction-point {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
}
@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:nth-child(1) .introduction-point-col__inner {
  background-image: url("/content_assets/47af1/img/introduction-point-col__inner-bg01.png");
  background-repeat: no-repeat;
  background-size: 120px 100px;
  background-position: center 27px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col:nth-child(1) .introduction-point-col__inner {
    background-size: 9.375vw 7.8125vw;
    background-position: center 2.109375vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col:nth-child(1) .introduction-point-col__inner {
    background-size: 30.7692307692vw 25.641025641vw;
    background-position: top 11.5384615385vw left 2.8205128205vw;
  }
}

.introduction-point-col:nth-child(2) .introduction-point-col__inner {
  background-image: url("/content_assets/47af1/img/introduction-point-col__inner-bg02.png");
  background-repeat: no-repeat;
  background-size: 100px 100px;
  background-position: center 46px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col:nth-child(2) .introduction-point-col__inner {
    background-size: 7.8125vw 7.8125vw;
    background-position: center 3.59375vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col:nth-child(2) .introduction-point-col__inner {
    background-size: 25.641025641vw 25.641025641vw;
    background-position: top 12.8205128205vw left 4.6153846154vw;
  }
}

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

.introduction-point-col__count {
  font-family: "din-2014", sans-serif;
  width: 161px;
  height: 34px;
  background-image: url("/content_assets/47af1/img/introduction-point-col__count-bg-pc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__count {
    width: 12.578125vw;
    height: 2.65625vw;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__count {
    width: 33.8461538462vw;
    height: 7.1794871795vw;
    background-image: url("/content_assets/47af1/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/47af1/img/introduction-point-col__badge-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -29px;
  right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-filter: drop-shadow(1px 5px 10px rgba(229, 81, 145, 0.3));
          filter: drop-shadow(1px 5px 10px rgba(229, 81, 145, 0.3));
}
@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: #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 {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

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

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

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

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

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

.introduction-point-col__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data {
    margin-top: 5.8974358974vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@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: 1.5384615385vw;
  }
}

.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: #F24872;
  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;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    margin-left: unset;
  }
}

.introduction-point-col__data-unit1 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #F24872;
  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: #F24872;
  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: #F24872;
  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-image: url("/content_assets/47af1/img/summary-bg-pc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 354px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 42px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__data-summary {
    width: 27.65625vw;
    height: 2.96875vw;
    margin: 1.5625vw auto 3.28125vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__data-summary {
    background-image: url("/content_assets/47af1/img/summary-bg-sp.svg");
    width: 70vw;
    height: 9.2307692308vw;
    margin: 0 auto;
    position: absolute;
    top: calc(100% - 4.6153846154vw);
    left: calc(50% - 35vw);
  }
}

.introduction-point-col__data-summary-text {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #F24872;
  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/47af1/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: #606268;
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%; /* 10px */
  margin-top: 8px;
  margin-left: 7px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-point-col__notice {
    margin-top: 0.625vw;
    margin-left: 0.546875vw;
  }
}
@media (max-width: 767px) {
  .introduction-point-col__notice {
    font-size: 2.5641025641vw;
    margin-top: 5.8974358974vw;
    margin-left: 5.1282051282vw;
    margin-right: 5.1282051282vw;
  }
}

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

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

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

.introduction-point-col__data-number2 span {
  color: #F24872;
  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: #F24872;
  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 {
  margin: 80px auto 0;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(242, 72, 114, 0.3);
          box-shadow: 0px 4px 20px 0px rgba(242, 72, 114, 0.3);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-btn {
    margin: 6.25vw auto 0;
  }
}
@media (max-width: 767px) {
  .introduction-btn {
    margin: 8.9743589744vw auto 0;
  }
}

.example {
  margin-top: 120px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    margin-top: 9.375vw;
  }
}
@media (max-width: 767px) {
  .example {
    margin-top: 25.641025641vw;
  }
}

.example-heading {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #2A2A2A;
  font-size: 35px;
  font-weight: 700;
  line-height: 100%; /* 35px */
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading {
    font-size: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .example-heading {
    font-size: 7.6923076923vw;
  }
}

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

.example-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  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 {
    width: 65.3846153846vw;
    margin: 0 2.5641025641vw;
  }
}

.example-slider-col__income {
  border-radius: 6px 6px 0px 0px;
  background: -webkit-gradient(linear, left top, right top, from(#494E62), to(rgba(73, 78, 98, 0.8)));
  background: linear-gradient(90deg, #494E62 0%, rgba(73, 78, 98, 0.8) 100%);
  padding: 12px 0 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          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 {
  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: -webkit-gradient(linear, left top, right top, from(#494E62), to(rgba(73, 78, 98, 0.8)));
  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 {
    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/47af1/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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.example-slider-custom-arrow {
  width: 40px;
  height: 40px;
  background-color: #65677F;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  position: relative;
}
@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-prev {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-prev {
    margin-right: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-prev {
    margin-right: 3.8461538462vw;
  }
}

.example-slider-custom-next {
  margin-left: 15px;
}
@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 {
  -webkit-transform: rotate(135deg);
          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 {
  -webkit-transform: rotate(-45deg);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

.example-slider-custom-dots-container .slick-dots li button:before {
  width: 12px;
  height: 14px;
  font-size: 12px;
  color: #65677f;
  opacity: 0.3;
}
@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: #65677f;
}

.probrem::before {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(163, 216, 255, 0.4)), to(rgba(255, 255, 255, 0.4)));
  background: linear-gradient(180deg, rgba(163, 216, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem::before {
    height: 9.375vw;
  }
}
@media (max-width: 767px) {
  .probrem::before {
    height: 25.641025641vw;
  }
}

.probrem::after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 100px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem::after {
    height: 7.8125vw;
    margin-bottom: -7.8125vw;
  }
}
@media (max-width: 767px) {
  .probrem::after {
    height: 10.2564102564vw;
    margin-bottom: -10.2564102564vw;
  }
}

.probrem-heading {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #1A1A1A;
  font-size: 28px;
  font-weight: 700;
  line-height: 100%; /* 28px */
  text-align: center;
  margin-top: 80px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-heading {
    font-size: 2.1875vw;
    margin-top: 6.25vw;
  }
}
@media (max-width: 767px) {
  .probrem-heading {
    font-size: 5.641025641vw;
    margin-top: 15.3846153846vw;
  }
}

.probrem-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  margin-top: 44px;
  margin-bottom: 43px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-box {
    gap: 3.515625vw;
    margin-top: 3.4375vw;
    margin-bottom: 3.359375vw;
  }
}
@media (max-width: 767px) {
  .probrem-box {
    gap: 6.4102564103vw;
    margin: 10.2564102564vw 5.1282051282vw 19.7435897436vw 5.1282051282vw;
  }
}

.probrem-profile__img {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}
@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;
  }
}

.probrem-profile__caption {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #AFBCE0;
  text-align: center;
  font-size: 14px;
  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.09375vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .probrem-profile__caption {
    font-size: 3.0769230769vw;
    margin-top: 2.5641025641vw;
  }
}

.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: -webkit-gradient(linear, left top, left bottom, from(#EAEEF9), to(#D8E1FB));
  background: linear-gradient(180deg, #EAEEF9 0%, #D8E1FB 100%);
  border-radius: 60px;
  width: 486px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  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: 56.4102564103vw;
    height: 32.3076923077vw;
  }
}

.probrem-bubble::before {
  content: "";
  display: inline-block;
  width: 37px;
  height: 26px;
  background-image: url("/content_assets/47af1/img/probrem-profile-object01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 13px);
  right: calc(100% + 10px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble::before {
    width: 2.890625vw;
    height: 2.03125vw;
    top: calc(50% - 1.015625vw);
    right: calc(100% + 0.78125vw);
  }
}
@media (max-width: 767px) {
  .probrem-bubble::before {
    width: 8.4615384615vw;
    height: 5.1282051282vw;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 2.5641025641vw;
    right: calc(100% - 2.3076923077vw);
  }
}

.probrem-bubble::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("/content_assets/47af1/img/probrem-profile-object02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 23px;
  left: calc(100% + 10px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble::after {
    width: 2.5vw;
    height: 2.5vw;
    bottom: 1.796875vw;
    left: calc(100% + 0.78125vw);
  }
}
@media (max-width: 767px) {
  .probrem-bubble::after {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
    bottom: -4.358974359vw;
    left: unset;
    right: 0;
  }
}

.probrem-bubble__inner {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #2A2A2A;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
@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.3333333333vw;
  }
}

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

.support {
  padding-top: 180px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support {
    padding-top: 14.0625vw;
  }
}
@media (max-width: 767px) {
  .support {
    padding-top: 21.2820512821vw;
  }
}

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

.support-heading-bubble {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #F24872;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%; /* 30px */
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-bubble {
    font-size: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .support-heading-bubble {
    font-size: 5.641025641vw;
  }
}

.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/47af1/img/support-heading-bubble-line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 14px;
  vertical-align: -3px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-bubble::before {
    width: 1.40625vw;
    height: 2.03125vw;
    margin-right: 1.09375vw;
    vertical-align: -0.234375vw;
  }
}
@media (max-width: 767px) {
  .support-heading-bubble::before {
    width: 3.8461538462vw;
    height: 5.3846153846vw;
    margin-right: 2.0512820513vw;
  }
}

.support-heading-bubble::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 26px;
  background-image: url("/content_assets/47af1/img/support-heading-bubble-line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 14px;
  vertical-align: -3px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-bubble::after {
    width: 1.40625vw;
    height: 2.03125vw;
    margin-left: 1.09375vw;
    vertical-align: -0.234375vw;
  }
}
@media (max-width: 767px) {
  .support-heading-bubble::after {
    width: 3.8461538462vw;
    height: 5.3846153846vw;
    margin-left: 2.0512820513vw;
  }
}

.support-heading-sub {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #2A2A2A;
  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;
  }
}

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

@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-heading-main__clip {
  background: linear-gradient(91deg, #F5CA03 -6.5%, #F24872 33.06%, #6065E9 60.63%, #0A9AE7 82.15%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Gothic MB101 DemiBold", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-main__clip {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-heading-main__clip {
    font-size: 7.6923076923vw;
  }
}

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

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

.support-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@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: 8.7179487179vw;
  }
}

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

.support-col__inner {
  width: 300px;
  border-radius: 10px;
  background: #FFF;
  position: relative;
  -webkit-box-shadow: 4px 15px 32px 0px rgba(239, 173, 200, 0.6);
          box-shadow: 4px 15px 32px 0px rgba(239, 173, 200, 0.6);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__inner {
    width: 23.4375vw;
  }
}
@media (max-width: 767px) {
  .support-col__inner {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}

.support-col__title {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px 10px 0px 0px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(242, 72, 114, 0.95)), to(rgba(184, 111, 245, 0.95)));
  background: linear-gradient(90deg, rgba(242, 72, 114, 0.95) 0%, rgba(184, 111, 245, 0.95) 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title {
    height: 6.5625vw;
  }
}
@media (max-width: 767px) {
  .support-col__title {
    height: 18.2051282051vw;
  }
}

.support-col__title-inner {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%; /* 28px */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title-inner {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support-col__title-inner {
    font-size: 4.6153846154vw;
    line-height: 132%; /* 23.76px */
  }
}

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

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

.support-col__textarea1 {
  background-image: url("/content_assets/47af1/img/support-col__text1-bg.png");
  background-repeat: no-repeat;
  background-size: 94px 131px;
  background-position: right 23px center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea1 {
    background-size: 7.34375vw 10.234375vw;
    background-position: right 1.796875vw center;
  }
}
@media (max-width: 767px) {
  .support-col__textarea1 {
    background-size: 21.5384615385vw 27.6923076923vw;
    background-position: right 10.2564102564vw center;
  }
}

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

.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-image: url("/content_assets/47af1/img/support-col__summary-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 260px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  position: absolute;
  bottom: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary {
    width: 20.3125vw;
    height: 2.96875vw;
    bottom: -1.484375vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary {
    width: 66.6666666667vw;
    height: 9.7435897436vw;
    bottom: -3.0769230769vw;
  }
}

.support-col__summary-text {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #F24872;
  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;
  }
}

.support-col__summary-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/content_assets/47af1/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: #606268;
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  line-height: 100%; /* 10px */
  margin-top: 27px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__notice {
    font-size: 0.78125vw;
    margin-top: 2.109375vw;
  }
}
@media (max-width: 767px) {
  .support-col__notice {
    font-size: 2.5641025641vw;
    margin-top: 6.6666666667vw;
    margin-right: 5.1282051282vw;
  }
}

.support-col__text2 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #2A2A2A;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin: 0 26px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text2 {
    font-size: 1.40625vw;
    gap: 1.25vw;
    margin: 0 2.03125vw;
    -webkit-transform: translateY(-0.78125vw);
            transform: translateY(-0.78125vw);
  }
}
@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;
}

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

.support-col__text3 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #2A2A2A;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text3 {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support-col__text3 {
    font-size: 4.6153846154vw;
  }
}

.support-col__img {
  display: inline-block;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  margin: 0 20px;
  width: calc(100% - 40px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__img {
    margin: 0 1.5625vw;
    width: calc(100% - 3.125vw);
    -webkit-transform: translateY(-0.46875vw);
            transform: translateY(-0.46875vw);
  }
}
@media (max-width: 767px) {
  .support-col__img {
    -webkit-transform: translateY(-4.1025641026vw);
            transform: translateY(-4.1025641026vw);
  }
}

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

.contact-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#F24872), color-stop(50%, #FF825D), to(#FFBE5D)), #FFF;
  background: linear-gradient(90deg, #F24872 0%, #FF825D 50%, #FFBE5D 100%), #FFF;
  -webkit-box-shadow: 4px 15px 34px 0px rgba(173, 183, 239, 0.7);
          box-shadow: 4px 15px 34px 0px rgba(173, 183, 239, 0.7);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btns {
    gap: 1.5625vw;
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .contact-btns {
    display: block;
    gap: 5.1282051282vw;
    margin-top: 6.1538461538vw;
  }
}

.contact-btn {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  height: 70px;
  position: relative;
  color: #F24872;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50px;
  background: #FFF;
  -webkit-box-shadow: 0px 8px 22px 0px rgba(230, 52, 96, 0.26);
          box-shadow: 0px 8px 22px 0px rgba(230, 52, 96, 0.26);
}
@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/47af1/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;
  }
}

.fv2 {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), color-stop(113.7%, #E1E1E1));
  background: linear-gradient(180deg, #F9F9F9 0%, #E1E1E1 113.7%);
  background-image: url("/content_assets/47af1/img/fv2-bg-pc.png");
  background-size: 1920px 540px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 1920px) {
  .fv2 {
    background-size: cover;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv2 {
    background-size: 150vw 42.1875vw;
  }
}
@media (max-width: 767px) {
  .fv2 {
    background-image: unset;
    background-image: unset;
  }
}

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

.fv2-inner::before {
  content: "";
  display: inline-block;
  width: 442px;
  height: 520px;
  background-image: url(/content_assets/47af1/img/fv-img-tamaki-pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv2-inner::before {
    width: 34.53125vw;
    height: 40.625vw;
  }
}
@media (max-width: 767px) {
  .fv2-inner::before {
    display: none;
  }
}

.fv2-content {
  width: 477px;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  top: 38px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv2-content {
    width: 37.265625vw;
    top: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .fv2-content {
    position: relative;
    width: 100%;
    right: unset;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}

.fv2-btn {
  -webkit-filter: drop-shadow(0px 4px 20px rgba(242, 72, 114, 0.3));
          filter: drop-shadow(0px 4px 20px rgba(242, 72, 114, 0.3));
  margin: 40px auto 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv2-btn {
    margin: 3.125vw auto 0 auto;
  }
}
@media (max-width: 767px) {
  .fv2-btn {
    margin-top: 0;
    margin-left: 0;
    position: absolute !important;
    bottom: 7.4358974359vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}/*# sourceMappingURL=index.css.map */