@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 {
  font-family: "Gothic MB101 Regular", sans-serif;
  overflow-wrap: unset !important;
  overscroll-behavior-y: unset !important;
}

main {
  overflow: unset !important;
}

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

.header {
  background: #FFF;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
  }
}
.header .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;
}
@media (max-width: 767px) {
  .header .header-inner {
    gap: 4.8717948718vw;
    padding: 2.3076923077vw 3.8461538462vw;
  }
}
.header .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 .header-col {
    padding: 0.859375vw 4.6875vw;
  }
}
@media (max-width: 767px) {
  .header .header-col {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .header .header-col:nth-child(1) {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header .header-col:nth-child(1) span {
  font-size: 14px;
  color: #07080c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-col:nth-child(1) span {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .header .header-col:nth-child(1) span {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 9px;
  }
}
.header .header-logo {
  width: 114px;
  height: auto;
  margin-right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-logo {
    width: 8.90625vw;
    margin-right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .header .header-logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 25.641025641vw;
    margin-right: 0;
  }
}
.header .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 .header-link {
    font-size: 0.9375vw;
    margin-right: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .header .header-link {
    display: none;
  }
}
.header .header-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;
  padding: 10px 17px;
  color: #FFF;
  background-color: #EF340B;
  font-size: 16px;
  font-weight: 700;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(92, 92, 92, 0.25);
          box-shadow: 0px 2px 3px 0px rgba(92, 92, 92, 0.25);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-btn {
    font-size: 1.25vw;
    padding: 0.78125vw 1.328125vw;
  }
}
@media (max-width: 767px) {
  .header .header-btn {
    padding: 2.5641025641vw 0;
    font-size: 3.8461538462vw;
    width: 44.358974359vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header .header-btn::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url("/content_assets/53lc/img/header-btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-btn::after {
    width: 1.015625vw;
    height: 1.015625vw;
    margin-left: 0.3125vw;
  }
}
.header .header-btn span {
  color: #EF340B;
  background-color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 5px;
  display: inline-block;
  line-height: 1.2;
  margin-right: 10px;
  border-radius: 2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-btn span {
    font-size: 0.78125vw;
    padding: 0.3125vw 0.390625vw;
    margin-right: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .header .header-btn span {
    font-size: 8px;
    padding: 1.0256410256vw;
  }
}
.header .header-btn span strong {
  font-size: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-btn span strong {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header .header-btn span strong {
    font-size: 11px;
  }
}

.fv {
  position: relative;
  overflow: hidden;
  background: #F5F5F5;
}
@media (min-width: 1800px) {
  .fv {
    background: -webkit-gradient(linear, left top, right top, from(#07080C), color-stop(15%, #07080C), color-stop(15%, #F5F5F5), to(#F5F5F5));
    background: linear-gradient(90deg, #07080C 0%, #07080C 15%, #F5F5F5 15%, #F5F5F5 100%);
  }
}
@media (min-width: 2400px) {
  .fv {
    background: -webkit-gradient(linear, left top, right top, from(#07080C), color-stop(30%, #07080C), color-stop(30%, #F5F5F5), to(#F5F5F5));
    background: linear-gradient(90deg, #07080C 0%, #07080C 30%, #F5F5F5 30%, #F5F5F5 100%);
  }
}
.fv::before {
  content: "";
  display: inline-block;
  background-image: url("/content_assets/53lc/img/fv-rect.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1023px;
  height: 460px;
  position: absolute;
  top: 0;
  right: 50%;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv::before {
    width: 79.921875vw;
    height: 35.9375vw;
  }
}
@media (max-width: 767px) {
  .fv::before {
    background-image: url("/content_assets/53lc/img/fv-rect_sp.svg");
    width: 74.8717948718vw;
    height: 91.2820512821vw;
    top: unset;
    right: unset;
    left: 0;
    bottom: 0;
  }
}
.fv .fv-inner {
  height: 460px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv .fv-inner {
    height: 35.9375vw;
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-inner {
    height: 130.7692307692vw;
  }
}
.fv .fv-inner::before {
  content: "";
  display: inline-block;
  width: 609px;
  height: 494px;
  background-image: url("/content_assets/53lc/img/fv-tamaki-pc.webp");
  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 .fv-inner::before {
    width: 47.578125vw;
    height: 38.59375vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-inner::before {
    background-image: url("/content_assets/53lc/img/fv-tamaki-sp.webp");
    width: 90.7692307692vw;
    height: 79.2307692308vw;
    top: unset;
    left: calc(50% - 45.3846153846vw);
    bottom: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.fv .fv-content {
  font-family: "Gothic MB101 Bold", sans-serif;
  position: absolute;
  top: 36px;
  left: 50%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv .fv-content {
    top: 2.8125vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-content {
    position: static;
    text-align: center;
  }
}
.fv .fv-main-copy {
  color: #07080C;
  font-size: 77px;
  font-weight: 800;
  line-height: 110%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv .fv-main-copy {
    font-size: 6.015625vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-main-copy {
    font-size: 13.0769230769vw;
    margin: 6.9230769231vw auto 0 auto;
    display: inline-block;
    text-align: left;
  }
}
.fv .fv-main-copy span {
  margin-top: 20px;
  font-size: 50px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv .fv-main-copy span {
    margin-top: 1.5625vw;
    font-size: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .fv .fv-main-copy span {
    margin-top: 0;
    -webkit-transform: translateY(-1.5384615385vw);
            transform: translateY(-1.5384615385vw);
    display: inline-block;
    font-size: 8.7179487179vw;
  }
}

.fv-btn {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  width: 420px;
  margin-top: 42px;
  margin-left: 13px;
  padding: 26px 0 26px 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  background: #EF340B;
  -webkit-filter: drop-shadow(0px 0px 30px rgba(92, 92, 92, 0.4));
          filter: drop-shadow(0px 0px 30px rgba(92, 92, 92, 0.4));
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-btn {
    width: 32.8125vw;
    margin-top: 3.28125vw;
    margin-left: 1.015625vw;
    padding: 2.03125vw 0 2.03125vw 4.0625vw;
    gap: 2.1875vw;
    font-size: 1.796875vw;
  }
}
@media (max-width: 767px) {
  .fv-btn {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 6.9230769231vw 6.9230769231vw 6.9230769231vw 11.7948717949vw;
    position: relative;
    z-index: 2;
    font-size: 5.1282051282vw;
    -webkit-filter: drop-shadow(0px 0px 15px rgba(92, 92, 92, 0.4));
            filter: drop-shadow(0px 0px 15px rgba(92, 92, 92, 0.4));
  }
}
.fv-btn::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 15px;
  background-image: url("/content_assets/53lc/img/icon-cv-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-btn::after {
    width: 1.953125vw;
    height: 1.171875vw;
  }
}
.fv-btn.is-pc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media (max-width: 767px) {
  .fv-btn.is-pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .fv-btn.is-sp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 6.4102564103vw;
  }
}

.fv-btn-bubble {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  text-align: center;
  width: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-btn-bubble {
    -webkit-transform: translateY(-1.171875vw);
            transform: translateY(-1.171875vw);
  }
}
.fv-btn-bubble span {
  color: #EF340B;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 6px 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  border-radius: 45px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(31, 73, 123, 0.3);
          box-shadow: 0px 0px 12px 0px rgba(31, 73, 123, 0.3);
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-btn-bubble span {
    font-size: 1.25vw;
    padding: 0.46875vw 1.40625vw;
    gap: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .fv-btn-bubble span {
    font-size: 3.5897435897vw;
  }
}
.fv-btn-bubble span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 19px;
  background-image: url("/content_assets/53lc/img/icon-bubble-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-btn-bubble span::before {
    width: 1.5625vw;
    height: 1.484375vw;
  }
}
@media (max-width: 767px) {
  .fv-btn-bubble span::before {
    width: 4.358974359vw;
    height: 4.1025641026vw;
  }
}

.achievements {
  padding: 25px 0 35px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements {
    padding: 1.953125vw 0 2.734375vw 0;
  }
}
@media (max-width: 767px) {
  .achievements {
    padding: 7.9487179487vw 0 8.9743589744vw 0;
  }
}
.achievements .achievements-inner {
  max-width: 866px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-inner {
    max-width: 67.65625vw;
    gap: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .achievements .achievements-inner {
    display: block;
  }
}
.achievements .achievements-copy {
  font-family: "Gothic MB101 Bold", sans-serif;
  color: #07080C;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-copy {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .achievements .achievements-copy {
    font-size: 4.358974359vw;
    text-align: center;
    line-height: 1.7;
  }
}
.achievements .achievements-copy strong {
  font-size: 27px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #1468CC));
  background: linear-gradient(transparent 85%, #1468CC 85%);
  padding-bottom: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-copy strong {
    font-size: 2.109375vw;
    padding-bottom: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .achievements .achievements-copy strong {
    font-size: 6.4102564103vw;
  }
}
.achievements .achievements-ornament {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .achievements .achievements-ornament {
    margin-top: 4.358974359vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.achievements .achievements-ornament::before {
  content: "";
  display: inline-block;
  width: 43px;
  height: 67px;
  background-image: url("/content_assets/53lc/img/fv-ornament.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-ornament::before {
    width: 3.359375vw;
    height: 5.234375vw;
  }
}
.achievements .achievements-ornament::after {
  content: "";
  display: inline-block;
  width: 43px;
  height: 67px;
  background-image: url("/content_assets/53lc/img/fv-ornament.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-ornament::after {
    width: 3.359375vw;
    height: 5.234375vw;
  }
}
.achievements .achievements-ornament-inner {
  text-align: center;
}
.achievements .achievements-ornament-inner span {
  font-family: "Gothic MB101 Bold", sans-serif;
  color: #07080C;
  font-size: 25px;
  font-weight: 800;
  line-height: 110%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-ornament-inner span {
    font-size: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .achievements .achievements-ornament-inner span {
    font-size: 5.8974358974vw;
  }
}
.achievements .achievements-ornament-inner span strong {
  font-size: 42px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-ornament-inner span strong {
    font-size: 3.28125vw;
  }
}
@media (max-width: 767px) {
  .achievements .achievements-ornament-inner span strong {
    font-size: 10.2564102564vw;
  }
}
.achievements .achievements-ornament-inner small {
  font-size: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-ornament-inner small {
    font-size: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .achievements .achievements-ornament-inner small {
    font-size: 2.5641025641vw;
  }
}
.achievements .achievements-notice {
  color: #07080C;
  font-size: 10px;
  font-weight: 400;
  text-align: right;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements .achievements-notice {
    font-size: 0.78125vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .achievements .achievements-notice {
    font-size: 2.0512820513vw;
  }
}

.achievements-sliders {
  margin-top: 30px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements-sliders {
    margin-top: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .achievements-sliders {
    display: none;
  }
}
.achievements-sliders img {
  width: 128px;
  height: auto;
}

.achievements-slider2 {
  margin-top: 18px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .achievements-slider2 {
    margin-top: 1.40625vw;
  }
}

.achievements-logos {
  display: none;
}
@media (max-width: 767px) {
  .achievements-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5.1282051282vw;
  }
}
@media (max-width: 767px) {
  .achievements-logos img {
    width: 29.7435897436vw;
    height: auto;
  }
}

.opening {
  font-family: "Gothic MB101 Bold", sans-serif;
  background: linear-gradient(252deg, #00D7D7 20.19%, #1468CC 100%);
  padding: 111px 0 120px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening {
    padding: 8.671875vw 0 9.375vw 0;
  }
}
@media (max-width: 767px) {
  .opening {
    background: linear-gradient(18deg, #1468CC 0%, #00D7D7 95.14%);
    padding: 12.8205128205vw 0;
  }
}
.opening .opening-heading {
  color: #07080C;
  font-size: 55px;
  font-weight: 800;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading {
    font-size: 4.296875vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading {
    font-size: 7.1794871795vw;
    line-height: 1.2;
  }
}
.opening .opening-heading strong {
  font-size: 100px;
  vertical-align: -15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading strong {
    font-size: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading strong {
    font-size: 17.9487179487vw;
  }
}
.opening .opening-heading strong img {
  width: 335px;
  height: auto;
  vertical-align: -10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading strong img {
    width: 26.171875vw;
    vertical-align: -0.78125vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading strong img {
    width: 61.2820512821vw;
    vertical-align: -3.8461538462vw;
  }
}
.opening .opening-heading-emphasis {
  font-size: 70px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading-emphasis {
    font-size: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading-emphasis {
    font-size: 9.7435897436vw;
    line-height: 1.2;
  }
}
.opening .opening-heading-sub {
  margin-top: 43px;
  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: 22px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading-sub {
    margin-top: 3.359375vw;
    gap: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading-sub {
    display: block;
    margin-top: 2.5641025641vw;
  }
}
.opening .opening-heading-sub img {
  width: 160px;
  height: 160px;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading-sub img {
    width: 12.5vw;
    height: 12.5vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading-sub img {
    display: block;
    margin: 0 auto;
    width: 23.0769230769vw;
    height: 23.0769230769vw;
  }
}
.opening .opening-heading-sub-text {
  color: #07080C;
  text-align: center;
  font-size: 35px;
  font-weight: 800;
  line-height: 140%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading-sub-text {
    font-size: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading-sub-text {
    font-size: 4.8717948718vw;
    margin-top: 1.7948717949vw;
  }
}
.opening .opening-heading-sub-text small {
  font-size: 28px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading-sub-text small {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading-sub-text small {
    font-size: 4.1025641026vw;
  }
}
.opening .opening-heading-sub-text strong {
  color: #FFF;
  background-color: #07080c;
  font-size: 44px;
  font-weight: 800;
  line-height: 140%;
  padding: 10px 11px;
  margin-right: 5px;
  display: inline-block;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-heading-sub-text strong {
    font-size: 3.4375vw;
    padding: 0.78125vw 0.859375vw;
    margin-right: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-heading-sub-text strong {
    font-size: 6.6666666667vw;
    padding: 1.2820512821vw;
  }
}
.opening .opening-adviser-box {
  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;
  gap: 48px;
  margin-top: 52px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-adviser-box {
    gap: 3.75vw;
    margin-top: 4.0625vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-adviser-box {
    margin-top: 6.6666666667vw;
    gap: 5.1282051282vw;
  }
}
.opening .opening-adviser-col {
  text-align: center;
  line-height: 1;
}
.opening .opening-adviser-col img {
  width: 215px;
}
@media (max-width: 767px) {
  .opening .opening-adviser-col img {
    width: 100%;
  }
}
.opening .opening-adviser-copy {
  margin-top: 20px;
  color: #FFF;
  font-size: 26px;
  font-weight: 800;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-adviser-copy {
    font-size: 2.03125vw;
    margin-top: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-adviser-copy {
    margin-top: 3.0769230769vw;
    font-size: 4.8717948718vw;
  }
}
.opening .opening-adviser-copy small {
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-adviser-copy small {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-adviser-copy small {
    font-size: 3.0769230769vw;
  }
}
.opening .opening-adviser-name {
  margin-top: 20px;
  color: #07080C;
  font-size: 23px;
  font-weight: 800;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-adviser-name {
    font-size: 1.796875vw;
    margin-top: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-adviser-name {
    margin-top: 3.3333333333vw;
    font-size: 4.8717948718vw;
  }
}
.opening .opening-adviser-name span {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #07080C;
  font-size: 13px;
  font-weight: 500;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .opening .opening-adviser-name span {
    font-size: 1.015625vw;
  }
}
@media (max-width: 767px) {
  .opening .opening-adviser-name span {
    font-size: 2.5641025641vw;
  }
}

@media (max-width: 767px) {
  .opening-adviser-box .slick-slide {
    margin: 0 10px;
  }
}

.point {
  font-family: "Gothic MB101 Bold", sans-serif;
  padding: 0;
}
.point .point-block + .point-block {
  padding-top: 100px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block + .point-block {
    padding-top: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .point .point-block + .point-block {
    padding-top: 11.5384615385vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(1) .point-data-sub-col:nth-child(2) .point-data-sub-title {
    display: block;
    margin-bottom: 1.2820512821vw;
  }
}
.point .point-block:nth-child(2) .point-bubble-img {
  width: 301px;
  height: 192px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(2) .point-bubble-img {
    width: 23.515625vw;
    height: 15vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(2) .point-bubble-img {
    width: 55.1282051282vw;
    height: auto;
    -webkit-transform: translateX(-19.2307692308vw);
            transform: translateX(-19.2307692308vw);
  }
}
.point .point-block:nth-child(2) .point-bubble-text {
  padding-left: 330px;
  padding-right: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(2) .point-bubble-text {
    padding-left: 25.78125vw;
    padding-right: 3.125vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(2) .point-bubble-text {
    padding: 5.641025641vw 3.8461538462vw 7.6923076923vw 33.3333333333vw;
  }
}
.point .point-block:nth-child(2) .point-bubble-border {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #0D92D0));
  background: linear-gradient(transparent 85%, #0D92D0 85%);
}
.point .point-block:nth-child(2) .point-data {
  background: #A9D9EF;
}
.point .point-block:nth-child(2) .point-data-main-inner {
  padding: 34px 78px 34px 83px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(2) .point-data-main-inner {
    padding: 2.65625vw 6.09375vw 2.65625vw 6.484375vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(2) .point-data-main-inner {
    padding: 6.4102564103vw 2.5641025641vw;
    gap: 3.3333333333vw;
  }
}
.point .point-block:nth-child(2) .point-data-main-copy {
  margin-right: 25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(2) .point-data-main-copy {
    margin-right: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(2) .point-data-main-copy {
    margin-right: 0;
  }
}
.point .point-block:nth-child(2) .point-data-main-copy strong {
  color: #0D92D0;
}
.point .point-block:nth-child(2) .point-data-main-adviser {
  margin-right: 42px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(2) .point-data-main-adviser {
    margin-right: 2.5vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(2) .point-data-main-adviser {
    margin-right: 0;
  }
}
.point .point-block:nth-child(2) .point-data-copy-text01::before {
  background-image: url(/content_assets/53lc/img/point-data-copy-check02.svg);
}
.point .point-block:nth-child(2) .point-data-sub-col {
  background: rgba(13, 146, 208, 0.6);
}
@media (max-width: 767px) {
  .point .point-block:nth-child(2) .point-data-sub-col:nth-child(1) .point-data-sub-title {
    display: block;
    margin-bottom: 1.2820512821vw;
  }
}
.point .point-block:nth-child(3) .point-bubble-img {
  width: 220px;
  height: 197px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(3) .point-bubble-img {
    width: 17.1875vw;
    height: 15.390625vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(3) .point-bubble-img {
    width: 33.3333333333vw;
    height: auto;
    -webkit-transform: translateX(-3.8461538462vw);
            transform: translateX(-3.8461538462vw);
  }
}
.point .point-block:nth-child(3) .point-bubble-text {
  padding-left: 250px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(3) .point-bubble-text {
    padding-left: 19.53125vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(3) .point-bubble-text {
    padding: 4.6153846154vw 3.8461538462vw 3.5897435897vw 29.7435897436vw;
  }
}
.point .point-block:nth-child(3) .point-bubble-border {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #05BCD5));
  background: linear-gradient(transparent 85%, #05BCD5 85%);
}
.point .point-block:nth-child(3) .point-data {
  background: #B6E1F1;
}
.point .point-block:nth-child(3) .point-data-main-inner {
  padding: 34px 33px 34px 33px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(3) .point-data-main-inner {
    padding: 2.65625vw 2.578125vw 2.65625vw 2.578125vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(3) .point-data-main-inner {
    padding: 6.4102564103vw 2.5641025641vw;
  }
}
.point .point-block:nth-child(3) .point-data-main-copy {
  margin-right: 25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(3) .point-data-main-copy {
    margin-right: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .point .point-block:nth-child(3) .point-data-main-copy {
    margin-right: 0;
    width: calc(100% - 20.5128205128vw);
  }
}
.point .point-block:nth-child(3) .point-data-main-copy strong {
  color: #05BCD5;
  letter-spacing: -0.04em;
}
.point .point-block:nth-child(3) .point-data-main-adviser {
  margin-right: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-block:nth-child(3) .point-data-main-adviser {
    margin-right: 2.03125vw;
  }
}
.point .point-block:nth-child(3) .point-data-copy-text01::before {
  background-image: url(/content_assets/53lc/img/point-data-copy-check03.svg);
}
.point .point-block:nth-child(3) .point-data-sub-col {
  background: rgba(5, 188, 213, 0.6);
}
@media (max-width: 767px) {
  .point .point-block:nth-child(3) .point-data-sub-col:nth-child(1) .point-data-sub-title {
    display: block;
    margin-bottom: 1.2820512821vw;
  }
}
.point .point-bubble {
  width: 100%;
  max-width: 946px;
  margin: 64px auto 0 auto;
  position: relative;
  border-radius: 6px;
  background: #FFF;
  -webkit-filter: drop-shadow(0px 0px 30px rgba(152, 152, 152, 0.25));
          filter: drop-shadow(0px 0px 30px rgba(152, 152, 152, 0.25));
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-bubble {
    max-width: 73.90625vw;
    margin: 5vw auto 0 auto;
  }
}
@media (max-width: 767px) {
  .point .point-bubble {
    margin: 7.1794871795vw 2.5641025641vw 0 2.5641025641vw;
    width: calc(100% - 5.1282051282vw);
  }
}
.point .point-bubble-img-box {
  position: absolute;
  bottom: 0;
  left: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-bubble-img-box {
    left: 0.625vw;
  }
}
@media (max-width: 767px) {
  .point .point-bubble-img-box {
    left: 0;
    overflow: hidden;
  }
}
.point .point-bubble-img {
  width: 271px;
  height: 183px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-bubble-img {
    width: 21.171875vw;
    height: 14.296875vw;
  }
}
@media (max-width: 767px) {
  .point .point-bubble-img {
    width: 44.358974359vw;
    height: auto;
    -webkit-transform: translateX(-5.1282051282vw);
            transform: translateX(-5.1282051282vw);
  }
}
.point .point-bubble-text {
  color: #07080C;
  font-size: 27px;
  font-weight: 800;
  line-height: 130%;
  padding: 28px 70px 28px 250px;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-bubble-text {
    font-size: 2.109375vw;
    padding: 2.1875vw 5.46875vw 2.1875vw 19.53125vw;
  }
}
@media (max-width: 767px) {
  .point .point-bubble-text {
    font-size: 4.1025641026vw;
    padding: 4.6153846154vw 3.8461538462vw 3.5897435897vw 30.7692307692vw;
    line-height: 1.7;
  }
}
.point .point-bubble-text:after {
  content: "";
  position: absolute;
  margin: 0;
  bottom: -47px;
  right: 180px;
  z-index: -1;
  display: block;
  border-top: 85px solid #FFF;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-bubble-text:after {
    bottom: -3.671875vw;
    right: 14.0625vw;
    border-top: 6.640625vw solid #FFF;
    border-left: 0.9375vw solid transparent;
    border-right: 0.9375vw solid transparent;
  }
}
@media (max-width: 767px) {
  .point .point-bubble-text:after {
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    right: 22.5641025641vw;
    bottom: -10.5128205128vw;
    border-top: 25.641025641vw solid #FFF;
    border-left: 6.6666666667vw solid transparent;
  }
}
.point .point-bubble-text strong {
  font-size: 35px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-bubble-text strong {
    font-size: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .point .point-bubble-text strong {
    font-size: 6.1538461538vw;
  }
}
.point .point-bubble-border {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #1468CC));
  background: linear-gradient(transparent 85%, #1468CC 85%);
  padding-bottom: 10px;
  line-height: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-bubble-border {
    padding-bottom: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .point .point-bubble-border {
    line-height: 1.5;
    padding-bottom: 1.5384615385vw;
  }
}
.point .point-data {
  border-radius: 6px;
  background: #B8D2F0;
  padding: 10px;
  max-width: 1080px;
  width: 100%;
  margin: 33px auto 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data {
    padding: 0.78125vw;
    max-width: 84.375vw;
    margin: 2.578125vw auto 0 auto;
  }
}
@media (max-width: 767px) {
  .point .point-data {
    width: calc(100% - 5.1282051282vw);
    margin: 8.4615384615vw 2.5641025641vw 0 2.5641025641vw;
  }
}
.point .point-data-main {
  border-radius: 6px;
  background: #FFF;
}
.point .point-data-main-inner {
  padding: 34px 42px 34px 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-inner {
    padding: 2.65625vw 3.28125vw 2.65625vw 3.671875vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-inner {
    padding: 6.4102564103vw 2.5641025641vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.point .point-data-main-adviser {
  text-align: center;
  margin-right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-adviser {
    margin-right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-adviser {
    width: 20.5128205128vw;
  }
}
.point .point-data-main-adviser img {
  width: 120px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-adviser img {
    width: 9.375vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-adviser img {
    width: 17.9487179487vw;
  }
}
.point .point-data-main-adviser p {
  font-family: "Gothic MB101 Regular", sans-serif;
  margin-top: 10px;
  color: #07080C;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-adviser p {
    font-size: 1.015625vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-adviser p {
    font-size: 2.0512820513vw;
  }
}
.point .point-data-main-adviser p span {
  font-family: "Gothic MB101 Bold", sans-serif;
  font-weight: 800;
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-adviser p span {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-adviser p span {
    font-size: 3.3333333333vw;
  }
}
.point .point-data-main-copy {
  color: #07080C;
  font-size: 32px;
  font-weight: 800;
  line-height: 115%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-copy {
    font-size: 2.5vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-copy {
    font-size: 5.1282051282vw;
  }
}
.point .point-data-main-copy strong {
  color: #1468CC;
  font-size: 60px;
  font-weight: 800;
  line-height: 115%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-copy strong {
    font-size: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-copy strong {
    font-size: 9.2307692308vw;
  }
}
.point .point-data-main-graph {
  width: 180px;
  height: 180px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-graph {
    width: 14.0625vw;
    height: 14.0625vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-graph {
    display: none;
  }
}
.point .point-data-main-graph-notice {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #07080C;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 12px;
  padding-right: 5px;
  padding-bottom: 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-main-graph-notice {
    font-size: 1.09375vw;
    line-height: 0.9375vw;
    padding-right: 0.390625vw;
    padding-bottom: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-main-graph-notice {
    text-align: left;
    margin-top: 3.5897435897vw;
    font-size: 2.5641025641vw;
    line-height: 1.2;
  }
}
.point .point-data-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 17px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-copy {
    gap: 3.90625vw;
    margin-top: 1.328125vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-copy {
    display: block;
  }
}
.point .point-data-copy-text01 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #07080C;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%; /* 31.2px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-copy-text01 {
    font-size: 1.875vw;
    gap: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-copy-text01 {
    display: block;
    font-size: 4.1025641026vw;
    padding: 0 2.0512820513vw;
  }
}
.point .point-data-copy-text01::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("/content_assets/53lc/img/point-data-copy-check01.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-copy-text01::before {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-copy-text01::before {
    display: none;
  }
}
.point .point-data-copy-text02 {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #07080C;
  font-size: 18px;
  line-height: 140%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-copy-text02 {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-copy-text02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.0512820513vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 4.1025641026vw;
    margin-top: 3.8461538462vw;
  }
}
.point .point-data-copy-text02 strong {
  background: #07080C;
  padding: 12px 13px;
  display: inline-block;
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-copy-text02 strong {
    font-size: 2.5vw;
    padding: 0.9375vw 1.015625vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-copy-text02 strong {
    font-size: 5.1282051282vw;
    padding: 2.0512820513vw 1.5384615385vw;
  }
}
.point .point-data-sub {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-sub {
    margin-top: 1.328125vw;
    gap: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-sub {
    display: block;
    margin-top: 3.8461538462vw;
  }
}
.point .point-data-sub-col {
  border-radius: 6px;
  background: rgba(20, 104, 204, 0.6);
  width: calc(50% - 5px);
  color: #FFF;
  padding: 12px 0;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-sub-col {
    width: calc(50% - 0.390625vw);
    padding: 0.9375vw 0;
  }
}
@media (max-width: 767px) {
  .point .point-data-sub-col {
    width: 100%;
    padding: 2.5641025641vw 0;
  }
}
@media (max-width: 767px) {
  .point .point-data-sub-col + .point-data-sub-col {
    margin-top: 1.5384615385vw;
  }
}
.point .point-data-sub-title {
  font-size: 18px;
  font-weight: 800;
  vertical-align: 3px;
  margin-right: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-sub-title {
    font-size: 1.40625vw;
    vertical-align: 0.234375vw;
    margin-right: 0.625vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-sub-title {
    font-size: 3.3333333333vw;
  }
}
.point .point-data-sub-value {
  font-size: 30px;
  font-weight: 800;
  margin-right: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-sub-value {
    font-size: 2.34375vw;
    margin-right: -0.15625vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-sub-value {
    font-size: 5.8974358974vw;
  }
}
.point .point-data-sub-unit {
  font-size: 18px;
  font-weight: 800;
  margin-right: 3px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-sub-unit {
    font-size: 1.40625vw;
    margin-right: 0.234375vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-sub-unit {
    font-size: 3.8461538462vw;
  }
}
.point .point-data-sub-notice {
  font-family: "Gothic MB101 Regular", sans-serif;
  font-size: 10px;
  font-weight: 400;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-data-sub-notice {
    font-size: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .point .point-data-sub-notice {
    font-size: 2.0512820513vw;
  }
}
.point .point-btn {
  display: block;
  position: relative;
  padding: 31px 0 26px 0;
  line-height: 1;
  margin: 80px auto 0 auto;
  max-width: 520px;
  width: 100%;
  background: #EF340B;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(92, 92, 92, 0.4);
          box-shadow: 0px 0px 30px 0px rgba(92, 92, 92, 0.4);
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-btn {
    padding: 2.421875vw 0 2.03125vw 0;
    margin: 6.25vw auto 0 auto;
    max-width: 40.625vw;
  }
}
@media (max-width: 767px) {
  .point .point-btn {
    padding: 6.6666666667vw 17.1794871795vw 5.641025641vw 8.2051282051vw;
    margin: 10.2564102564vw 3.0769230769vw 0 3.0769230769vw;
    width: calc(100% - 6.1538461538vw);
    max-width: unset;
  }
}
.point .point-btn:hover {
  opacity: 0.7 !important;
}
.point .point-btn::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 15px;
  background-image: url("/content_assets/53lc/img/icon-cv-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7.5px);
  right: 38px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-btn::after {
    width: 1.953125vw;
    height: 1.171875vw;
    top: calc(50% - 0.5859375vw);
    right: 2.96875vw;
    -webkit-transform: translateY(0.234375vw);
            transform: translateY(0.234375vw);
  }
}
@media (max-width: 767px) {
  .point .point-btn::after {
    width: 5.641025641vw;
    height: 3.3333333333vw;
    right: 7.9487179487vw;
  }
}
.point .point-btn-main-text {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #FFF;
  font-size: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-btn-main-text {
    font-size: 1.875vw;
  }
}
@media (max-width: 767px) {
  .point .point-btn-main-text {
    font-size: 4.8717948718vw;
  }
}
.point .point-btn-bubble {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  text-align: center;
  width: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-btn-bubble {
    -webkit-transform: translateY(-1.171875vw);
            transform: translateY(-1.171875vw);
  }
}
.point .point-btn-bubble span {
  color: #EF340B;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 6px 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  border-radius: 45px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(31, 73, 123, 0.3);
          box-shadow: 0px 0px 12px 0px rgba(31, 73, 123, 0.3);
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-btn-bubble span {
    font-size: 1.25vw;
    padding: 0.46875vw 1.40625vw;
    gap: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .point .point-btn-bubble span {
    font-size: 3.3333333333vw;
    padding: 1.2820512821vw 3.0769230769vw;
  }
}
.point .point-btn-bubble span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 19px;
  background-image: url("/content_assets/53lc/img/icon-bubble-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point .point-btn-bubble span::before {
    width: 1.5625vw;
    height: 1.484375vw;
  }
}
@media (max-width: 767px) {
  .point .point-btn-bubble span::before {
    width: 3.5897435897vw;
    height: 3.5897435897vw;
  }
}

#fixed-heading { /* Safari support */
  position: sticky;
  top: 0;
  z-index: 9;
  margin-top: 120px;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#07080C), to(#515667));
  background: linear-gradient(90deg, #07080C 0%, #515667 100%);
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  #fixed-heading {
    padding: 0.625vw 0;
    gap: 1.5625vw;
  }
}
@media (max-width: 767px) {
  #fixed-heading {
    display: none;
  }
}

#fixed-heading.non-sticky {
  position: relative;
}

.point-heading {
  display: none;
}
@media (max-width: 767px) {
  .point-heading {
    text-align: center;
    background: -webkit-gradient(linear, left top, right top, from(#07080C), to(#515667));
    background: linear-gradient(90deg, #07080C 0%, #515667 100%);
    padding: 13px 0 17px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.point-heading-main {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #FFF;
  font-size: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point-heading-main {
    font-size: 2.5vw;
  }
}
@media (max-width: 767px) {
  .point-heading-main {
    font-size: 5.641025641vw;
    width: 100%;
  }
}

.point-heading-sub {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  color: #07080C;
  text-align: center;
  font-size: 13px;
  line-height: 100%;
  padding: 6px 10px;
  border-radius: 6px;
  background: #FFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point-heading-sub {
    font-size: 1.015625vw;
    padding: 0.46875vw 0.78125vw;
    gap: 0.234375vw;
  }
}
@media (max-width: 767px) {
  .point-heading-sub {
    font-size: 2.5641025641vw;
  }
}
.point-heading-sub b {
  font-size: 22px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .point-heading-sub b {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .point-heading-sub b {
    font-size: 3.5897435897vw;
  }
}

.band {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  background: linear-gradient(252deg, #00D7D7 20.19%, #1468CC 100%);
}
.band .band-inner {
  max-width: 1080px;
  width: 100%;
  margin: 163px auto 0 auto;
  padding: 40px 0 57px 0;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band .band-inner {
    max-width: 84.375vw;
    margin: 12.734375vw auto 0 auto;
    padding: 3.125vw 0 4.453125vw 0;
  }
}
@media (max-width: 767px) {
  .band .band-inner {
    margin: 19.7435897436vw auto 0 auto;
    padding-top: 6.9230769231vw;
    padding-bottom: 28.9743589744vw;
  }
}
.band .band-image {
  width: 494px;
  height: 389px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band .band-image {
    width: 38.59375vw;
    height: 30.390625vw;
  }
}
@media (max-width: 767px) {
  .band .band-image {
    width: 84.358974359vw;
    height: auto;
    left: -19.2307692308vw;
  }
}
.band .band-copy {
  color: #07080C;
  font-size: 64px;
  font-weight: 700;
  padding-left: 298px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band .band-copy {
    font-size: 5vw;
    padding-left: 23.28125vw;
  }
}
@media (max-width: 767px) {
  .band .band-copy {
    padding-left: 21.0256410256vw;
    font-size: 7.1794871795vw;
    text-align: center;
  }
}
.band .band-copy strong {
  font-size: 84px;
  font-weight: 700;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band .band-copy strong {
    font-size: 6.5625vw;
  }
}
@media (max-width: 767px) {
  .band .band-copy strong {
    font-size: 10.2564102564vw;
  }
}
.band .band-copy strong span {
  color: #FFF;
  font-size: 86px;
  font-weight: 700;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band .band-copy strong span {
    font-size: 6.71875vw;
  }
}
@media (max-width: 767px) {
  .band .band-copy strong span {
    font-size: 10.7692307692vw;
  }
}

.band-btn {
  font-family: "Gothic MB101 Bold", sans-serif;
  width: 420px;
  margin-top: 42px;
  margin-left: 526px;
  padding: 31px 0 26px 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-size: 23px;
  font-weight: 700;
  background: #EF340B;
  -webkit-filter: drop-shadow(0px 0px 30px rgba(92, 92, 92, 0.4));
          filter: drop-shadow(0px 0px 30px rgba(92, 92, 92, 0.4));
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band-btn {
    font-size: 1.796875vw;
    width: 32.8125vw;
    margin-top: 3.28125vw;
    margin-left: 41.09375vw;
    padding: 2.421875vw 0 2.03125vw 4.0625vw;
    gap: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .band-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 6.9230769231vw 0 6.6666666667vw 11.7948717949vw;
    position: relative;
    font-size: 5.1282051282vw;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}
.band-btn::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 15px;
  background-image: url("/content_assets/53lc/img/icon-cv-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7.5px);
  right: 31px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band-btn::after {
    width: 1.953125vw;
    height: 1.171875vw;
    top: calc(50% - 0.5859375vw);
    right: 2.421875vw;
  }
}
@media (max-width: 767px) {
  .band-btn::after {
    top: calc(50% - 1.9230769231vw + 0.7692307692vw);
    right: 7.0512820513vw;
  }
}
@media (max-width: 767px) {
  .band-btn.is-pc {
    display: none !important;
  }
}

.band-btn-bubble {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  text-align: center;
  width: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band-btn-bubble {
    -webkit-transform: translateY(-1.171875vw);
            transform: translateY(-1.171875vw);
  }
}
.band-btn-bubble span {
  font-family: "Gothic MB101 Bold", sans-serif;
  color: #EF340B;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 6px 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  border-radius: 45px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(31, 73, 123, 0.3);
          box-shadow: 0px 0px 12px 0px rgba(31, 73, 123, 0.3);
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band-btn-bubble span {
    font-size: 1.25vw;
    padding: 0.46875vw 1.40625vw;
    gap: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .band-btn-bubble span {
    font-size: 4.1025641026vw;
  }
}
.band-btn-bubble span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 19px;
  background-image: url("/content_assets/53lc/img/icon-bubble-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .band-btn-bubble span::before {
    width: 1.5625vw;
    height: 1.484375vw;
  }
}

.success {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  padding: 80px 0;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success {
    padding: 6.25vw 0;
  }
}
@media (max-width: 767px) {
  .success {
    padding: 8.4615384615vw 0 2.3076923077vw 0;
  }
}
.success::after {
  content: "";
  max-width: 1440px;
  width: 100%;
  height: 368px;
  margin: 96px auto 0 auto;
  background: radial-gradient(50% 50% at 50% 50%, rgba(20, 104, 204, 0.3) 0%, rgba(20, 104, 204, 0) 50%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 1440px) {
  .success::after {
    max-width: unset;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success::after {
    max-width: 112.5vw;
    height: 28.75vw;
    margin: 7.5vw auto 0 auto;
  }
}
@media (max-width: 767px) {
  .success::after {
    margin: 4.6153846154vw auto 0 auto;
    background: radial-gradient(50% 34% at 52% 50%, rgba(20, 104, 204, 0.3) 0%, rgba(20, 104, 204, 0) 68%);
  }
}
.success .success-heading {
  color: #07080C;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success .success-heading {
    font-size: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .success .success-heading {
    font-size: 5.641025641vw;
  }
}
.success .success-visual {
  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;
  position: relative;
  z-index: 2;
  margin-top: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success .success-visual {
    margin-top: 1.25vw;
  }
}
.success .success-img-peaple {
  width: 180px;
  height: 104px;
  margin-right: 21px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success .success-img-peaple {
    width: 14.0625vw;
    height: 8.125vw;
    margin-right: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .success .success-img-peaple {
    width: 17.6923076923vw;
    height: 9.7435897436vw;
    margin-right: 0.46875vw;
  }
}
.success .success-visual-text {
  color: #07080C;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-right: 28px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success .success-visual-text {
    font-size: 3.90625vw;
    margin-right: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .success .success-visual-text {
    font-size: 6.1538461538vw;
    text-align: center;
    margin-right: 2.0512820513vw;
  }
}
.success .success-graph {
  width: 160px;
  height: 160px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success .success-graph {
    width: 12.5vw;
    height: 12.5vw;
  }
}
@media (max-width: 767px) {
  .success .success-graph {
    width: 20.5128205128vw;
    height: 20.5128205128vw;
  }
}
.success #success-graph-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Gothic MB101 Bold", sans-serif;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: none;
}
.success .success-graph-value {
  font-size: 53px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success .success-graph-value {
    font-size: 4.140625vw;
  }
}
@media (max-width: 767px) {
  .success .success-graph-value {
    font-size: 7.1794871795vw;
  }
}
.success .success-graph-unit {
  font-size: 25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success .success-graph-unit {
    font-size: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .success .success-graph-unit {
    font-size: 4.1025641026vw;
  }
}
.success .success-notice {
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #07080C;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  margin-top: 50px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .success .success-notice {
    font-size: 0.859375vw;
    margin-top: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .success .success-notice {
    font-size: 2.0512820513vw;
    text-align: left;
    margin: 10.2564102564vw 2.5641025641vw 0 2.5641025641vw;
  }
}

.voice {
  font-family: "Gothic MB101 DemiBold", sans-serif;
}
.voice::after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFF), to(#F3F7FC));
  background: linear-gradient(0deg, #FFF 0%, #F3F7FC 100%);
  width: 100%;
  height: 130px;
  -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: -130px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice::after {
    height: 10.15625vw;
    margin-bottom: -10.15625vw;
  }
}
@media (max-width: 767px) {
  .voice::after {
    margin-top: -0.2564102564vw;
    height: 10.7692307692vw;
    margin-bottom: -10.7692307692vw;
  }
}
.voice .voice-inner {
  padding: 120px 0 106px 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(36.5%, #07080C), color-stop(68.25%, #8E9AA9), color-stop(87.3%, #D4DEE7), to(#F3F7FC));
  background: linear-gradient(180deg, #07080C 36.5%, #8E9AA9 68.25%, #D4DEE7 87.3%, #F3F7FC 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-inner {
    padding: 9.375vw 0 8.28125vw 0;
  }
}
@media (max-width: 767px) {
  .voice .voice-inner {
    padding: 17.9487179487vw 0 14.8717948718vw 0;
  }
}
.voice .voice-heading {
  font-family: "Gothic MB101 Heavy", sans-serif;
  color: #FFF;
  font-size: 80px;
  font-weight: 900;
  line-height: 0.7;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-heading {
    font-size: 6.25vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-heading {
    font-size: 8.4615384615vw;
  }
}
.voice .voice-heading-sub {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  margin-top: 28px;
  font-size: 23px;
  font-weight: 700;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-heading-sub {
    margin-top: 2.1875vw;
    font-size: 1.796875vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-heading-sub {
    font-size: 3.3333333333vw;
    margin-top: 4.6153846154vw;
  }
}
.voice .voice-block {
  overflow: hidden;
  max-width: 930px;
  width: 100%;
  margin: 73px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-block {
    max-width: 72.65625vw;
    margin: 5.703125vw auto 0 auto;
  }
}
@media (max-width: 767px) {
  .voice .voice-block {
    display: block;
    margin: 9.7435897436vw auto 0 auto;
    overflow: hidden;
  }
}
.voice .voice-block + .voice-block {
  margin-top: 17px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-block + .voice-block {
    margin-top: 1.328125vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-block + .voice-block {
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  .voice .voice-block:nth-child(1) {
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px);
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-block:nth-child(1) {
    -webkit-transform: translateX(-5.46875vw);
            transform: translateX(-5.46875vw);
  }
}
@media (min-width: 1280px) {
  .voice .voice-block:nth-child(3) {
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-block:nth-child(3) {
    -webkit-transform: translateX(5.46875vw);
            transform: translateX(5.46875vw);
  }
}
@media (min-width: 1280px) {
  .voice .voice-block:nth-child(even) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 1280px) {
  .voice .voice-block:nth-child(even) .voice-col:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 1280px) {
  .voice .voice-block:nth-child(even) .voice-col:nth-child(1) .voice-bg-text {
    left: unset;
    right: 0;
  }
}
@media (min-width: 1280px) {
  .voice .voice-block:nth-child(even) .voice-col:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.voice .voice-col:nth-child(1) {
  position: relative;
  width: calc(100% - 250px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-col:nth-child(1) {
    width: calc(100% - 19.53125vw);
  }
}
@media (max-width: 767px) {
  .voice .voice-col:nth-child(1) {
    width: 100%;
  }
}
.voice .voice-col:nth-child(2) {
  width: 250px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-col:nth-child(2) {
    width: 19.53125vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-col:nth-child(2) {
    width: 100%;
  }
}
.voice .voice-col .voice-col-img {
  width: 250px;
  height: 235px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-col .voice-col-img {
    width: 19.53125vw;
    height: 18.359375vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-col .voice-col-img {
    width: 100%;
    height: auto;
  }
}
.voice .voice-bg-text {
  font-family: "Gothic MB101 Bold", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 94px;
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 104, 204, 0.13)), to(rgba(1, 190, 216, 0.13)));
  background: linear-gradient(180deg, rgba(20, 104, 204, 0.13) 0%, rgba(1, 190, 216, 0.13) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  line-height: 1;
  display: inline-block;
  color: transparent;
  -webkit-transform: translateY(-18px);
          transform: translateY(-18px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-bg-text {
    font-size: 7.34375vw;
    -webkit-transform: translateY(-1.40625vw);
            transform: translateY(-1.40625vw);
  }
}
@media (max-width: 767px) {
  .voice .voice-bg-text {
    font-size: 13.5897435897vw;
    -webkit-transform: translate(50%, -2.5641025641vw);
            transform: translate(50%, -2.5641025641vw);
  }
}
.voice .voice-text-inner {
  padding-top: 43px;
  padding-left: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-text-inner {
    padding-top: 3.359375vw;
    padding-left: 3.125vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-text-inner {
    padding: 4.1025641026vw 6.4102564103vw;
  }
}
.voice .voice-detail {
  color: #0D181E;
  font-size: 30px;
  font-weight: 700;
  line-height: 130%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-detail {
    font-size: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-detail {
    font-size: 4.358974359vw;
  }
}
.voice .voice-profile {
  margin-top: 13px;
  color: #1468CC;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-profile {
    font-size: 1.25vw;
    margin-top: 1.015625vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-profile {
    margin-top: 1.7948717949vw;
    font-size: 3.0769230769vw;
  }
}
@media (max-width: 767px) {
  .voice .voice-box {
    margin-top: 38px;
  }
}
@media (max-width: 767px) {
  .voice .voice-box .slick-slide {
    margin: 0 10px;
  }
}
.voice .voice-notice {
  max-width: 930px;
  width: 100%;
  margin: 10px auto 0 auto;
  font-family: "Gothic MB101 Regular", sans-serif;
  color: #07080C;
  text-align: right;
  font-size: 11px;
  font-weight: 400;
  margin-top: 10px;
}
@media (min-width: 1280px) {
  .voice .voice-notice {
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .voice .voice-notice {
    font-size: 0.859375vw;
    max-width: 72.65625vw;
    margin: 0.78125vw auto 0 auto;
    -webkit-transform: translateX(5.46875vw);
            transform: translateX(5.46875vw);
  }
}
@media (max-width: 767px) {
  .voice .voice-notice {
    font-size: 2.0512820513vw;
    text-align: right;
    margin: 2.5641025641vw 0 0 0;
    display: block;
  }
}

.contact {
  font-family: "Gothic MB101 DemiBold", sans-serif;
  padding-top: 235px;
  padding-bottom: 160px;
  background: linear-gradient(252deg, #00D7D7 20.19%, #1468CC 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact {
    padding-top: 18.359375vw;
    padding-bottom: 12.5vw;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-top: 22.3076923077vw;
    padding-bottom: 16.6666666667vw;
  }
}
.contact .contact-heading {
  text-align: center;
}
.contact .contact-heading-sub {
  color: #FFF;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  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;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-heading-sub {
    font-size: 2.109375vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-heading-sub {
    font-size: 4.1025641026vw;
  }
}
.contact .contact-heading-sub::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 24px;
  background-image: url("/content_assets/53lc/img/contact-heading-sub-ornament.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-heading-sub::before {
    width: 1.484375vw;
    height: 1.875vw;
    margin-right: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-heading-sub::before {
    width: 3.3333333333vw;
    height: 3.8461538462vw;
    margin-right: 0.2564102564vw;
  }
}
.contact .contact-heading-sub::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 24px;
  background-image: url("/content_assets/53lc/img/contact-heading-sub-ornament.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 6px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-heading-sub::after {
    width: 1.484375vw;
    height: 1.875vw;
    margin-left: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-heading-sub::after {
    width: 3.3333333333vw;
    height: 3.8461538462vw;
    margin-left: 0.2564102564vw;
  }
}
.contact .contact-heading-main {
  color: #07080C;
  font-size: 58px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 20px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-heading-main {
    font-size: 4.53125vw;
    margin-top: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-heading-main {
    font-size: 7.4358974359vw;
    margin-top: 3.8461538462vw;
  }
}
.contact .contact-heading-main strong {
  color: #FFF;
  font-size: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-heading-main strong {
    font-size: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-heading-main strong {
    font-size: 7.9487179487vw;
  }
}
.contact .contact-box {
  max-width: 1080px;
  width: 100%;
  margin: 60px auto 0 auto;
  padding: 75px 0 84px 0;
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 2px 4px 28px 0px #0C91D2;
          box-shadow: 2px 4px 28px 0px #0C91D2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-box {
    max-width: 84.375vw;
    margin: 4.6875vw auto 0 auto;
    padding: 5.859375vw 0 6.5625vw 0;
  }
}
@media (max-width: 767px) {
  .contact .contact-box {
    margin: 7.1794871795vw 5.641025641vw 0 5.641025641vw;
    width: calc(100% - 11.2820512821vw);
    padding: 9.2307692308vw 5.641025641vw 10.7692307692vw 5.641025641vw;
  }
}
.contact .contact-title {
  font-family: "Gothic MB101 Medium", sans-serif;
  color: #07080C;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-title {
    font-size: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-title {
    font-size: 4.6153846154vw;
  }
}
.contact .contact-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("/content_assets/53lc/img/point-data-copy-check01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-title::before {
    width: 1.875vw;
    height: 1.875vw;
    margin-right: 0.625vw;
    vertical-align: -0.15625vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-title::before {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
}
.contact .contact-title b {
  font-family: "Gothic MB101 Bold", sans-serif;
}
.contact .contact-btn-box {
  max-width: 612px;
  width: 100%;
  margin: 40px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-btn-box {
    max-width: 47.8125vw;
    margin: 3.125vw auto 0 auto;
    gap: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-btn-box {
    margin: 6.6666666667vw auto 0 auto;
    gap: 2.0512820513vw;
  }
}
.contact .contact-btn-box .contact-btn {
  display: inline-block;
  width: calc(50% - 6px);
  padding: 24px 0;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  background: #07080C;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-btn-box .contact-btn {
    width: calc(50% - 0.46875vw);
    padding: 1.875vw 0;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-btn-box .contact-btn {
    width: calc(50% - 1.0256410256vw);
    font-size: 4.1025641026vw;
    padding: 4.6153846154vw 0;
    border-radius: 4px;
  }
}
.contact .contact-btn-box .contact-btn:last-child {
  width: 100%;
  background: #e4e4e4;
  color: #07080C;
  font-size: 16px;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-btn-box .contact-btn:last-child {
    font-size: 1.25vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-btn-box .contact-btn:last-child {
    font-size: 13px;
    margin-top: 1.0256410256vw;
  }
}
.contact .contact-btn-box .contact-btn::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 15px;
  background-image: url("/content_assets/53lc/img/contact-btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7.5px);
  right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-btn-box .contact-btn::before {
    width: 0.859375vw;
    height: 1.171875vw;
    top: calc(50% - 0.5859375vw);
    right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-btn-box .contact-btn::before {
    width: 1.7948717949vw;
    height: 2.5641025641vw;
    right: 2.0512820513vw;
  }
}/*# sourceMappingURL=index.css.map */