@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  position: relative;
}

body {
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

a {
  text-decoration: none;
}

#root,
#__next {
  isolation: isolate;
}

ul {
  list-style: none;
}

em {
  font-style: normal;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

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

select {
  color: #122E3C;
}

/*
 * htmlのフォントサイズ
 * @args ベースの画面幅
 */
/*
   * ルートのフォントサイズを基準にフォントサイズを可変にする
   * @args 最大値（デザイン上の数値）
   */
/*
   * get_vwの設定
   */
/*
   * breakpointの設定
   */
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
@-webkit-keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes transformUpDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes transformUpDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes transformDownUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes transformDownUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes transformUpDown {
  0% {
    -webkit-transform: translate(50%, -300%);
            transform: translate(50%, -300%);
  }
  100% {
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
@keyframes transformDownUp {
  0% {
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
  100% {
    -webkit-transform: translate(50%, 300%);
            transform: translate(50%, 300%);
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes arrow-slide {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrow-slide {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
  100% {
    opacity: 0;
  }
}
.pc_contents {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc_contents {
    display: none !important;
  }
}

.pc_contentsFlex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc_contentsFlex {
    display: none !important;
  }
}

.sp_contents {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp_contents {
    display: block !important;
  }
}

.sp_contentsFlex {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp_contentsFlex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

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

.justifyContentCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn {
  margin: 0 auto;
  text-align: center;
}
.btn__link {
  display: inline-block;
  width: clamp(1px, 21.484375vw, 330px);
  background: -webkit-gradient(linear, left top, right top, from(#EB8E78), color-stop(#E83085), to(#EB8E78));
  background: linear-gradient(90deg, #EB8E78, #E83085, #EB8E78);
  background-position: 0 50%;
  background-size: 300% 100%;
  -webkit-transition: background-position 0.5s;
  transition: background-position 0.5s;
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 700;
  color: #fff;
  border-radius: 500px;
  padding: clamp(1px, 1.5625vw, 24px) clamp(1px, 1.5625vw, 24px);
}
.btn__link:hover {
  background-position: 100% 50%;
}
@media screen and (max-width: 767px) {
  .btn__link {
    width: 70.4vw;
    font-size: 4.2666666667vw;
    padding: 4.2666666667vw 6.4vw;
  }
}

.cta {
  background: linear-gradient(125deg, #60737C, #122E3C 15%, #60737C);
  background-position: 0 50%;
  background-size: 300% 100%;
  -webkit-transition: background-position 0.5s;
  transition: background-position 0.5s;
  color: #fff;
  position: relative;
  z-index: 0;
}
.cta:hover {
  background-position: 100% 50%;
}
@media screen and (max-width: 767px) {
  .cta {
    background: linear-gradient(125deg, #60737C 0%, #132934 40%, #122E3C 100%) 0 50%;
    background-size: auto;
  }
}
.cta__bg {
  text-decoration: none;
  color: #fff;
  position: relative;
  display: block;
}
.cta__bg-img {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
  height: 100%;
  background: url("../img/cta_bg.svg") no-repeat center/cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cta__bg-img {
    background: url("../img/cta_bg-sp.svg") no-repeat center/cover;
  }
}
.cta__inner {
  margin: 0 auto;
  padding: clamp(1px, 5.9895833333vw, 92px) 0;
  max-width: clamp(1px, 76.5625vw, 1176px);
}
@media screen and (max-width: 767px) {
  .cta__inner {
    max-width: none;
    padding: 13.0666666667vw 5.3333333333vw 10.6666666667vw;
  }
}
.cta__title-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-family: "Inter", sans-serif;
  font-size: clamp(1px, 5.2083333333vw, 80px);
  line-height: 1.1764705882;
  font-weight: 700;
  gap: clamp(1px, 2.6692708333vw, 41px);
}
@media screen and (max-width: 767px) {
  .cta__title-en {
    font-size: 13.0666666667vw;
    gap: 8vw;
    line-height: 1.1;
  }
}
.cta__title-arrow {
  border: 2px solid #fff;
  padding: clamp(1px, 0.9765625vw, 15px);
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .cta__title-arrow {
    width: 9.0666666667vw;
    height: 9.0666666667vw;
    padding: 2.6666666667vw 2.1333333333vw 2.1333333333vw 2.4vw;
  }
}
.cta__title-arrow-img {
  width: clamp(1px, 1.4322916667vw, 22px);
  height: clamp(1px, 1.4322916667vw, 22px);
}
@media screen and (max-width: 767px) {
  .cta__title-arrow-img {
    width: 3.2vw;
    height: 3.2vw;
  }
}
.cta__title-jp {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cta__title-jp {
    font-size: 3.7333333333vw;
  }
}
.cta__content {
  margin-top: clamp(1px, 5.2083333333vw, 80px);
  font-size: clamp(1px, 1.3020833333vw, 20px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cta__content {
    margin-top: 7.4666666667vw;
    font-size: 4.2666666667vw;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  background: #122E3C;
  padding: clamp(1px, 8.3333333333vw, 128px) 0 clamp(1px, 1.6927083333vw, 26px);
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 19.2vw 10.6666666667vw 24.5333333333vw;
  }
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    max-width: 295px;
  }
}
.footer__logo {
  width: clamp(1px, 22.0703125vw, 339px);
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 61.3333333333vw;
    margin: 0 auto;
  }
}
.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  gap: clamp(1px, 7.8125vw, 120px);
  margin-top: clamp(1px, 4.1666666667vw, 64px);
}
@media screen and (max-width: 767px) {
  .footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 17.0666666667vw;
    margin-top: 19.2vw;
  }
}
.footer .address:not(:first-of-type) {
  margin-top: clamp(1px, 1.5625vw, 24px);
}
@media screen and (max-width: 767px) {
  .footer .address:not(:first-of-type) {
    margin-top: 8.5333333333vw;
  }
}
.footer .address__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer .address__title {
    font-size: 4vw;
  }
}
.footer .address__text {
  font-size: clamp(1px, 0.9114583333vw, 14px);
  margin-top: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .footer .address__text {
    font-size: 3.4666666667vw;
    margin-top: 2.1333333333vw;
  }
}
.footer .address__text--number {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(1px, 0.9114583333vw, 14px);
}
@media screen and (max-width: 767px) {
  .footer .address__text--number {
    font-size: 3.4666666667vw;
  }
}
.footer__right {
  width: clamp(1px, 35.6770833333vw, 548px);
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
  }
}
.footer__wrap-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1px, 1.0416666667vw, 16px);
}
@media screen and (max-width: 767px) {
  .footer__wrap-title {
    font-size: 4vw;
  }
}
.footer__wrap-title:not(:first-of-type) {
  margin-top: clamp(1px, 2.6041666667vw, 40px);
}
@media screen and (max-width: 767px) {
  .footer__wrap-title:not(:first-of-type) {
    margin-top: 17.0666666667vw;
  }
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(1px, 0.5208333333vw, 8px) clamp(1px, 2.6041666667vw, 40px);
  margin-top: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .footer__list {
    gap: 4.2666666667vw 10.6666666667vw;
    margin-top: 2.1333333333vw;
  }
}
.footer__item {
  width: clamp(1px, 6.5104166667vw, 100px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer__item {
    width: 24.2666666667vw;
  }
}
.footer__item a {
  font-size: clamp(1px, 0.9114583333vw, 14px);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__item a {
    font-size: 3.4666666667vw;
  }
}
.footer__item--other {
  width: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__item--other {
    width: auto;
    max-width: 266px;
    line-height: 1.2;
  }
}
.footer__item--other:after {
  position: absolute;
  bottom: 0;
  content: url("../img/footer_link.svg");
  width: 16px;
  height: 16px;
  padding-left: 8px;
}
@media screen and (max-width: 767px) {
  .footer__item--other:after {
    right: -16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.footer__bottom {
  margin: clamp(1px, 6.5104166667vw, 100px) auto 0;
  padding-top: clamp(1px, 2.0833333333vw, 32px);
  border-top: 1px solid #414141;
  text-align: center;
  max-width: 1300px;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    margin-top: 14.9333333333vw;
    padding-top: 6.4vw;
  }
}
.footer__bottom-list {
  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: clamp(1px, 2.0833333333vw, 32px);
  color: #CCCCCC;
}
@media screen and (max-width: 767px) {
  .footer__bottom-list {
    gap: 2.1333333333vw;
  }
}
.footer__bottom-item a {
  font-size: clamp(1px, 0.8463541667vw, 13px);
  color: #CCCCCC;
}
@media screen and (max-width: 767px) {
  .footer__bottom-item a {
    font-size: 3.2vw;
  }
}
.footer__bottom-separator {
  font-size: clamp(1px, 0.8463541667vw, 13px);
  color: #CCCCCC;
  display: inline;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer__bottom-separator {
    font-size: 3.2vw;
  }
}
.footer__bottom-copyright {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1px, 0.78125vw, 12px);
  color: #CCCCCC;
  margin-top: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .footer__bottom-copyright {
    margin-top: 2.1333333333vw;
    font-size: 3.2vw;
  }
}

html {
  height: 100%;
  position: relative;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #122E3C;
  height: -webkit-fill-available;
  overflow-x: hidden;
}
body.active {
  height: 100%;
  overflow: hidden;
}

h2 {
  font-weight: 700;
}

.top-container {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.nav {
  position: fixed;
  width: 100%;
  padding: clamp(1px, 1.0416666667vw, 16px) clamp(1px, 2.6041666667vw, 40px) clamp(1px, 1.0416666667vw, 16px) clamp(1px, 2.6041666667vw, 40px);
  margin-bottom: 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .nav {
    padding: 5.3333333333vw;
    background: #fff;
  }
}
.nav.is-scrolled {
  background: #fff;
}
.nav.active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.nav .headerLogo {
  width: clamp(1px, 13.671875vw, 210px);
  padding: clamp(1px, 2.2786458333vw, 35px) clamp(1px, 2.6041666667vw, 40px);
}
@media screen and (max-width: 767px) {
  .nav .headerLogo {
    width: 56vw;
    padding: 9.3333333333vw 10.6666666667vw;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 2.0833333333vw, 32px);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .nav__inner {
    gap: 8.5333333333vw;
    opacity: 1;
  }
}
.nav__single {
  text-decoration: none;
  font-size: clamp(1px, 0.9114583333vw, 14px);
  font-weight: 400;
  color: #122E3C;
  position: relative;
}
@media screen and (max-width: 767px) {
  .nav__single {
    width: 100%;
    font-size: 4.8vw;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-bottom: 2px solid #efefef;
    padding: 5.3333333333vw 2.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .nav__single::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #E92F84;
    border-bottom: 2px solid #E92F84;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
}
.nav__single--contact {
  width: clamp(1px, 9.8958333333vw, 152px);
  height: clamp(1px, 2.8645833333vw, 44px);
  background: #122E3C;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  color: #fff;
  font-size: clamp(1px, 0.8463541667vw, 13px);
  font-weight: 700;
  height: 44px;
  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: clamp(1px, 1.6927083333vw, 26px);
  text-transform: uppercase;
  text-decoration: none;
  padding: clamp(1px, 0.2604166667vw, 4px) clamp(1px, 0.2604166667vw, 4px) clamp(1px, 0.2604166667vw, 4px) clamp(1px, 1.0416666667vw, 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .nav__single--contact {
    background: -webkit-gradient(linear, left top, right top, from(#E83085), to(#EB8E78));
    background: linear-gradient(90deg, #E83085, #EB8E78);
    width: 82.6666666667vw;
    height: 18.6666666667vw;
    font-size: 4.8vw;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 200px;
    margin: 10.6666666667vw auto 0;
  }
}
.nav__single--contact:hover .nav__single--contact-arrow::before {
  -webkit-animation-name: transformDownUp;
          animation-name: transformDownUp;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.nav__single--contact:hover .nav__single--contact-arrow::after {
  -webkit-animation-name: transformUpDown;
          animation-name: transformUpDown;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.nav__single--contact-text {
  position: relative;
  z-index: 1;
  margin-right: clamp(1px, 3.2552083333vw, 50px);
}
.nav__single--contact-arrow {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  width: 28px;
  height: 36px;
  margin: auto 0;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#E83085), to(#EB8E78));
  background: linear-gradient(180deg, #E83085, #EB8E78);
}
.nav__single--contact-arrow::before, .nav__single--contact-arrow::after {
  content: url("../img/arrow-down-white.svg");
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}
.nav__single--contact-arrow::after {
  -webkit-transform: translate(50%, -300%);
          transform: translate(50%, -300%);
}
.nav .hamburger {
  width: 26px;
  height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav .hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: #000;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.nav .hamburger.active {
  height: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav .hamburger.active .hamburger__line {
  width: 26px;
}
.nav .hamburger.active .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
}
.nav .hamburger.active .hamburger__line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-sp {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 98;
  overflow-y: scroll;
  right: -100%;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-sp.active {
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-sp__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  padding: 90px 20px 40px;
}
.nav-sp .nav__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
}

.foot-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#E83085), to(#EB8E78));
  background: linear-gradient(90deg, #E83085, #EB8E78);
  color: #fff;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.foot-contact__inner {
  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: 10px;
  width: 100%;
  padding: 4.2666666667vw 5.3333333333vw;
  font-size: 4.8vw;
  font-weight: 700;
  color: #fff;
}
.foot-contact__img {
  width: 4.8vw;
  height: 3.4666666667vw;
}

.kv {
  width: 100%;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, transparent), to(#fff)), url("../img/kv_bg1.jpg") no-repeat;
  background: linear-gradient(to bottom, transparent 0%, transparent 90%, #fff 100%), url("../img/kv_bg1.jpg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.kv__inner {
  background: url("../img/kv_bg2.svg") no-repeat;
  background-size: 200% 200%;
  background-position: 0px 75%;
  padding-top: 8.0729166667vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv__inner {
    margin-top: 16vw;
    background-position: -15% 70%;
  }
}
.kv__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 clamp(1px, 9.1145833333vw, 140px);
}
@media screen and (max-width: 767px) {
  .kv__main {
    margin-top: 6.6666666667vw;
    padding: 0 5.3333333333vw;
  }
}
.kv__main-title {
  width: clamp(1px, 43.2291666667vw, 664px);
}
@media screen and (max-width: 767px) {
  .kv__main-title {
    width: auto;
  }
}
.kv__main-title-sub {
  width: 22.5911458333vw;
}
@media screen and (max-width: 767px) {
  .kv__main-title-sub {
    width: 66.1333333333vw;
  }
}
.kv__main-title-main1 {
  width: 34.8307291667vw;
  margin-top: clamp(1px, 1.3020833333vw, 20px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kv__main-title-main1 {
    width: 71.7333333333vw;
    margin-top: 3.7333333333vw;
  }
}
.kv__main-title-main1-img {
  -webkit-animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}
.kv__main-title-main2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: clamp(1px, 1.5625vw, 24px);
  overflow: hidden;
  width: 43.2291666667vw;
}
@media screen and (max-width: 767px) {
  .kv__main-title-main2 {
    width: 84.2666666667vw;
    margin-top: 3.7333333333vw;
  }
}
.kv__main-title-main2-inner {
  position: relative;
}
.kv__main-title-main2-inner--1 {
  width: 17.578125vw;
}
@media screen and (max-width: 767px) {
  .kv__main-title-main2-inner--1 {
    width: 33.6vw;
  }
}
.kv__main-title-main2-inner--2 {
  width: 25.0651041667vw;
}
@media screen and (max-width: 767px) {
  .kv__main-title-main2-inner--2 {
    width: 49.3333333333vw;
  }
}
.kv__main-title-main2-img {
  -webkit-animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .kv__main-title-main2-img {
    width: 49.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .kv__main-title-main2-img-black {
    width: 33.6vw;
    height: auto;
  }
}
.kv__main-title-main2-img-color {
  position: absolute;
  top: 0;
  left: 0;
}
.kv__main-title-main3 {
  width: 24.5442708333vw;
  margin-top: clamp(1px, 1.953125vw, 30px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .kv__main-title-main3 {
    width: 53.8666666667vw;
    margin-top: 3.7333333333vw;
  }
}
.kv__main-title-main3-img {
  -webkit-animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}
.kv__main-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 1.3020833333vw, 20px);
  width: 100%;
  margin-top: clamp(1px, 3.5807291667vw, 55px);
  padding: 0 clamp(1px, 9.1145833333vw, 140px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv__main-catch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 31.2vw;
    padding: 0 5.3333333333vw;
    gap: 5.3333333333vw;
  }
}
.kv__main-catch .scroll-down {
  position: absolute;
  bottom: 120%;
  right: 40px;
  -webkit-transform: translate(0, -120%);
          transform: translate(0, -120%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 0.78125vw, 12px);
}
@media screen and (max-width: 767px) {
  .kv__main-catch .scroll-down {
    display: none;
  }
}
.kv__main-catch .scroll-down__text {
  font-size: clamp(1px, 0.6510416667vw, 10px);
  line-height: 1.4;
  font-family: "Futura";
}
.kv__main-catch .scroll-down__img {
  width: clamp(1px, 0.390625vw, 6px);
  height: clamp(1px, 1.5625vw, 24px);
  -webkit-animation: arrow-slide 2s linear infinite;
          animation: arrow-slide 2s linear infinite;
}
.kv__main-catch-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 0.78125vw, 12px);
}
@media screen and (max-width: 767px) {
  .kv__main-catch-inner {
    gap: 3.2vw;
  }
}
.kv__main-catch-img {
  width: clamp(1px, 3.125vw, 48px);
  height: clamp(1px, 3.125vw, 48px);
}
@media screen and (max-width: 767px) {
  .kv__main-catch-img {
    width: 12.8vw;
    height: 12.8vw;
  }
}
.kv__main-catch-text {
  font-size: clamp(1px, 0.9765625vw, 15px);
}
@media screen and (max-width: 767px) {
  .kv__main-catch-text {
    font-size: 4vw;
  }
}
.kv__main-catch-text-bold {
  font-size: clamp(1px, 1.171875vw, 18px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .kv__main-catch-text-bold {
    font-size: 4.8vw;
  }
}
.kv__head {
  width: 57.9427083333vw;
  height: 6.9010416667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 4.8828125vw;
  margin-bottom: 2.6041666667vw;
  background: url("../img/kv_head.webp") no-repeat;
  background-size: 100% 100%;
  background-position: left;
}
@media screen and (max-width: 767px) {
  .kv__head {
    display: none;
  }
}
.kv__head-single {
  font-size: 1.171875vw;
  font-weight: 700;
  color: #000fbe;
  text-align: center;
  line-height: 1;
  z-index: 1;
  position: relative;
  margin-top: -5%;
}
.kv__head-single::before {
  content: "";
  position: absolute;
  width: 13.0208333333vw;
  height: 5.7942708333vw;
  background: url("../img/baloon.webp") no-repeat;
  background-size: contain;
  background-position: center;
  top: 18%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.kv__head-single--1 {
  margin-right: 8.203125vw;
}
.kv__head-single--2 {
  margin-right: 7.8125vw;
}
.kv__head-single span {
  font-size: 0.8463541667vw;
}
.kv__title-wrap {
  margin: 0 0 2.6041666667vw 5.078125vw;
}
@media screen and (max-width: 767px) {
  .kv__title-wrap {
    margin: 0 5.3333333333vw 6.9333333333vw 5.3333333333vw;
  }
}
.kv__title {
  font-size: 3.2552083333vw;
  letter-spacing: 0;
  line-height: 1.32;
}
@media screen and (max-width: 767px) {
  .kv__title {
    font-size: 6.9333333333vw;
    letter-spacing: -0.03em;
    margin-bottom: 1.8666666667vw;
    line-height: 1.5;
  }
}
.kv__title .gradient-text {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(13%, #000fbe), color-stop(64%, #6706eb));
  background: linear-gradient(to bottom, #000fbe 13%, #6706eb 64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  position: relative;
}
.kv__title .gradient-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.5208333333vw;
  height: 0.5208333333vw;
  background: #000fbe;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .kv__title .gradient-text::before {
    top: 5%;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
.kv__subtitle {
  font-size: 1.953125vw;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .kv__subtitle {
    font-size: 4.5333333333vw;
  }
}
.kv__circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 2.6041666667vw;
}
@media screen and (max-width: 767px) {
  .kv__circles {
    position: absolute;
    bottom: 24vw;
    left: 4vw;
    margin-left: 0;
    z-index: 3;
  }
}
.kv__circle {
  width: 12.3697916667vw;
  height: 12.3697916667vw;
  background: #fff;
  border-radius: 200px;
  -webkit-box-shadow: 9px 11px 15px rgba(0, 15, 190, 0.2196078431);
          box-shadow: 9px 11px 15px rgba(0, 15, 190, 0.2196078431);
  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;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv__circle {
    width: 30.1333333333vw;
    height: 30.1333333333vw;
  }
}
.kv__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 13.9322916667vw;
  height: 13.9322916667vw;
  border: 2px solid #000fbe;
  border-radius: 200px;
}
@media screen and (max-width: 767px) {
  .kv__circle::before {
    width: 33.8666666667vw;
    height: 33.8666666667vw;
    border: 1px solid #000fbe;
  }
}
.kv__circle-text {
  font-size: 1.3020833333vw;
  font-weight: 700;
  color: #000fbe;
}
@media screen and (max-width: 767px) {
  .kv__circle-text {
    font-size: 3.4666666667vw;
  }
}
.kv__circle-text--18 {
  font-size: 1.171875vw;
}
@media screen and (max-width: 767px) {
  .kv__circle-text--18 {
    font-size: 2.6666666667vw;
  }
}
.kv__circle-text--33 {
  font-size: 2.1484375vw;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .kv__circle-text--33 {
    font-size: 5.3333333333vw;
    line-height: 1;
  }
}
.kv__circle--2 {
  width: 10.6770833333vw;
  height: 10.6770833333vw;
  margin: 5.859375vw 0 0 -0.3%;
}
@media screen and (max-width: 767px) {
  .kv__circle--2 {
    width: 25.0666666667vw;
    height: 25.0666666667vw;
    margin: 25.3333333333vw 0 0 -11%;
  }
}
.kv__circle--2::before {
  width: 12.0442708333vw;
  height: 12.0442708333vw;
}
@media screen and (max-width: 767px) {
  .kv__circle--2::before {
    width: 28.2666666667vw;
    height: 28.2666666667vw;
  }
}
.kv__circle--2 .kv__circle-text {
  font-size: 1.171875vw;
  color: #000fbe;
}
@media screen and (max-width: 767px) {
  .kv__circle--2 .kv__circle-text {
    font-size: 2.6666666667vw;
  }
}
.kv__circle--2 .kv__circle-text span {
  font-size: 1.5625vw;
  font-weight: 900;
  line-height: 1.2916666667;
}
@media screen and (max-width: 767px) {
  .kv__circle--2 .kv__circle-text span {
    font-size: 4.2666666667vw;
  }
}
.kv__circle--3 {
  width: 9.8958333333vw;
  height: 9.8958333333vw;
  margin: 0.3255208333vw 0 0 -1%;
}
@media screen and (max-width: 767px) {
  .kv__circle--3 {
    width: 26.4vw;
    height: 26.4vw;
    margin: 5.8666666667vw 0 0 -7%;
  }
}
.kv__circle--3::before {
  width: 11.1979166667vw;
  height: 11.1979166667vw;
}
@media screen and (max-width: 767px) {
  .kv__circle--3::before {
    width: 29.8666666667vw;
    height: 29.8666666667vw;
  }
}
.kv__circle--3 .kv__circle-text {
  font-size: 0.9114583333vw;
  color: #000fbe;
}
@media screen and (max-width: 767px) {
  .kv__circle--3 .kv__circle-text {
    font-size: 2.6666666667vw;
  }
}
.kv__circle--3 .kv__circle-text span {
  font-size: 1.5625vw;
  font-weight: 900;
  line-height: 1.2916666667;
}
@media screen and (max-width: 767px) {
  .kv__circle--3 .kv__circle-text span {
    font-size: 4.2666666667vw;
  }
}
.kv__slider-wrap {
  width: 58.2682291667vw;
  height: 53.515625vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kv__slider-wrap {
    width: 100%;
    height: wv_sp(400);
    position: relative;
  }
}
.kv__slider {
  width: 100%;
  height: 100%;
}
.kv__btn {
  position: fixed;
  bottom: 8%;
  right: -3%;
  z-index: 3;
  width: 29.8177083333vw;
  height: 7.8776041667vw;
  background: -webkit-gradient(linear, left top, right top, from(#3056f8), to(#6706eb));
  background: linear-gradient(90deg, #3056f8, #6706eb);
  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;
  text-align: center;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}
@media screen and (max-width: 767px) {
  .kv__btn {
    width: 49.8666666667vw;
    height: 25.8666666667vw;
    bottom: 0;
    right: -7%;
    -webkit-clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.kv__btn-text {
  color: #fff;
}
.kv__btn-text span {
  font-size: 0.9114583333vw;
  font-weight: 700;
}
.kv__btn-text p {
  font-size: 1.5625vw;
  font-weight: 700;
  padding-right: 1.953125vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv__btn-text p {
    font-size: 4.2666666667vw;
    padding-right: 5.8666666667vw;
  }
}
.kv__btn-text p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6927083333vw;
  height: 1.6927083333vw;
  background: url("../img/kv-arrow.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .kv__btn-text p::after {
    width: 4.8vw;
    height: 4.8vw;
    top: 96%;
    right: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.kv__bg-sp {
  position: relative;
  z-index: 2;
  margin-top: -9%;
}

.companies {
  margin-top: clamp(1px, 5.078125vw, 78px);
}
@media screen and (max-width: 767px) {
  .companies {
    margin-top: 10.6666666667vw;
  }
}
.companies__pages {
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 0.78125vw, 12px);
}
@media screen and (max-width: 767px) {
  .companies__pages {
    gap: 2.1333333333vw;
    padding: 0;
  }
}
.companies__page-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 0.78125vw, 12px);
  -webkit-animation: 60s linear infinite top-markee;
          animation: 60s linear infinite top-markee;
}
@media screen and (max-width: 767px) {
  .companies__page-list {
    gap: 2.1333333333vw;
  }
}
.companies__page-item {
  min-width: clamp(1px, 36.4583333333vw, 560px);
}
@media screen and (max-width: 767px) {
  .companies__page-item {
    min-width: 69.6vw;
  }
}
.companies__logos {
  overflow-x: hidden;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 1.3020833333vw, 20px);
}
@media screen and (max-width: 767px) {
  .companies__logos {
    gap: 3.2vw;
    padding: 2.4vw 0;
  }
}
.companies__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 1.3020833333vw, 20px);
  -webkit-animation: 60s linear infinite top-markee;
          animation: 60s linear infinite top-markee;
}
@media screen and (max-width: 767px) {
  .companies__list {
    gap: 3.2vw;
  }
}
@-webkit-keyframes top-markee {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes top-markee {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.companies .company {
  min-width: clamp(1px, 13.671875vw, 210px);
}
@media screen and (max-width: 767px) {
  .companies .company {
    min-width: 34.1333333333vw;
  }
}

.logos__inner {
  overflow-x: hidden;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 1.3020833333vw, 20px);
}
@media screen and (max-width: 767px) {
  .logos__inner {
    gap: 3.2vw;
    padding: 2.1333333333vw 0;
  }
}
.logos__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 1.3020833333vw, 20px);
  -webkit-animation: 60s linear infinite top-markee;
          animation: 60s linear infinite top-markee;
}
@media screen and (max-width: 767px) {
  .logos__list {
    gap: 3.2vw;
  }
}
@keyframes top-markee {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.logos .company {
  min-width: clamp(1px, 13.671875vw, 210px);
}
@media screen and (max-width: 767px) {
  .logos .company {
    min-width: 34.1333333333vw;
  }
}

.trouble {
  background-color: #122E3C;
  padding: clamp(1px, 8.3333333333vw, 128px) 0;
}
@media screen and (max-width: 767px) {
  .trouble {
    padding: 21.3333333333vw 0;
  }
}
.trouble__inner {
  margin: 0 auto;
  max-width: clamp(1px, 76.5625vw, 1176px);
}
@media screen and (max-width: 767px) {
  .trouble__inner {
    max-width: none;
    padding: 0 5.3333333333vw;
  }
}
.trouble__title {
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trouble__title {
    line-height: 1.2;
  }
}
.trouble__title-main {
  font-size: clamp(1px, 1.953125vw, 30px);
}
@media screen and (max-width: 767px) {
  .trouble__title-main {
    font-size: 4.8vw;
  }
}
.trouble__title-sub {
  font-size: clamp(1px, 2.6041666667vw, 40px);
}
@media screen and (max-width: 767px) {
  .trouble__title-sub {
    font-size: 5.3333333333vw;
  }
}
.trouble__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(1px, 1.3020833333vw, 20px);
  margin-top: clamp(1px, 4.1666666667vw, 64px);
}
@media screen and (max-width: 767px) {
  .trouble__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10.6666666667vw;
    gap: 12.8vw;
  }
}
.trouble__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #122E3C;
  font-size: clamp(1px, 1.3020833333vw, 20px);
  background-color: #fff;
  border-radius: 2px;
  padding: clamp(1px, 2.0833333333vw, 32px);
  width: clamp(1px, 23.7630208333vw, 365px);
}
.trouble__item::after {
  content: url("../img/trouble_circle.svg");
  position: absolute;
  bottom: -5%;
  right: 50%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  width: clamp(1px, 2.6041666667vw, 40px);
  height: clamp(1px, 4.4270833333vw, 68px);
}
@media screen and (max-width: 767px) {
  .trouble__item {
    width: 100%;
    font-size: 4.2666666667vw;
    padding: 6.4vw;
  }
  .trouble__item::after {
    width: 6.9333333333vw;
    height: 11.7333333333vw;
    bottom: -5%;
  }
}
.trouble__answer {
  margin-top: clamp(1px, 6.25vw, 96px);
  text-align: center;
  color: #fff;
  font-size: clamp(1px, 2.6041666667vw, 40px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .trouble__answer {
    margin-top: 18.6666666667vw;
    font-size: 4.8vw;
  }
}
.trouble__answer-num {
  font-size: clamp(1px, 3.0598958333vw, 47px);
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  .trouble__answer-num {
    font-size: 6.1333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .trouble__answer-text {
    font-size: 6.1333333333vw;
  }
}

.reason {
  background-color: #fff;
  padding: clamp(1px, 8.3333333333vw, 128px) 0;
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 21.3333333333vw 0;
  }
}
@media screen and (max-width: 767px) {
  .reason__inner {
    text-align: center;
  }
}
.reason__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background-image: url("../img/reason_title_line.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: clamp(1px, 1.5625vw, 24px);
  font-size: clamp(1px, 1.953125vw, 30px);
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .reason__title {
    font-size: 4.8vw;
    display: inline-block;
    padding-bottom: 5.3333333333vw;
    background-image: url("../img/reason_title_line_sp.svg");
    background-size: 100% auto;
  }
}
.reason__title-bold {
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .reason__title-bold {
    font-size: 6.4vw;
  }
}
.reason__title-num {
  font-size: clamp(1px, 3.0598958333vw, 47px);
  line-height: 1.1914893617;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  .reason__title-num {
    font-size: 9.0666666667vw;
  }
}
.reason__contents {
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .reason__contents {
    margin-top: 12.8vw;
  }
}
.reason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 3.6458333333vw, 56px);
  margin-left: clamp(1px, 11.71875vw, 180px);
}
@media screen and (max-width: 767px) {
  .reason__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    gap: 4.2666666667vw;
  }
}
.reason__item:not(:first-child) {
  margin-top: clamp(1px, 4.1666666667vw, 64px);
}
@media screen and (max-width: 767px) {
  .reason__item:not(:first-child) {
    margin-top: 12.8vw;
  }
}
.reason__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: 0;
  margin-right: clamp(1px, 11.71875vw, 180px);
}
@media screen and (max-width: 767px) {
  .reason__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}
.reason__content-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 clamp(1px, 36.4583333333vw, 560px);
          flex: 0 1 clamp(1px, 36.4583333333vw, 560px);
}
@media screen and (max-width: 767px) {
  .reason__content-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    display: block;
    text-align: left;
    margin-left: 5.3333333333vw;
  }
}
.reason__content-right {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 clamp(1px, 48.1770833333vw, 740px);
          flex: 1 0 clamp(1px, 48.1770833333vw, 740px);
}
@media screen and (max-width: 767px) {
  .reason__content-right {
    margin-left: 5.3333333333vw;
  }
  .reason__item--reverse .reason__content-right {
    margin-left: 0;
    margin-right: 5.3333333333vw;
  }
}
.reason__content-num {
  font-size: clamp(1px, 5.2083333333vw, 80px);
  line-height: 1.1764705882;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .reason__content-num {
    font-size: 10.6666666667vw;
  }
}
.reason__content-title {
  display: inline;
  color: #fff;
  font-size: clamp(1px, 1.953125vw, 30px);
  line-height: 1.4666666667;
  font-weight: 700;
  margin-top: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .reason__content-title {
    display: inline-block;
    font-size: 5.3333333333vw;
    line-height: 1.2;
    padding-top: 4.2666666667vw;
  }
}
.reason__content-title span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#E83085), to(#EB8E78));
  background: linear-gradient(90deg, #E83085, #EB8E78);
  padding: 0 4px;
}
.reason__content-title span + span {
  margin-top: clamp(1px, 0.5208333333vw, 8px);
}
.reason__content-title span em {
  font-size: clamp(1px, 2.1484375vw, 33px);
  line-height: 1.1;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .reason__content-title span em {
    font-size: 5.6vw;
  }
}
.reason__content-text {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  line-height: 1.625;
  margin-top: clamp(1px, 1.5625vw, 24px);
}
@media screen and (max-width: 767px) {
  .reason__content-text {
    font-size: 4.2666666667vw;
    margin-top: 3.2vw;
    margin-right: 5.3333333333vw;
  }
}

.view {
  background-color: #F4F4F4;
  padding: clamp(1px, 8.3333333333vw, 128px) 0 clamp(1px, 2.6041666667vw, 40px);
}
@media screen and (max-width: 767px) {
  .view {
    padding: 21.3333333333vw 0 10.6666666667vw;
  }
}
.view__inner {
  margin: 0 auto;
  max-width: clamp(1px, 76.5625vw, 1176px);
}
@media screen and (max-width: 767px) {
  .view__inner {
    text-align: center;
    max-width: none;
    padding: 0 5.3333333333vw;
  }
}
.view__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background-image: url("../img/view_title_line.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: clamp(1px, 1.5625vw, 24px);
  font-size: clamp(1px, 1.953125vw, 30px);
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .view__title {
    font-size: 4.8vw;
    display: inline-block;
    padding-bottom: 5.3333333333vw;
    background-image: url("../img/view_title_line_sp.svg");
    background-size: 100% auto;
  }
}
.view__title-bold {
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .view__title-bold {
    font-size: 6.4vw;
  }
}
.view__title-num {
  font-size: clamp(1px, 3.0598958333vw, 47px);
  line-height: 1.1914893617;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  .view__title-num {
    font-size: 9.0666666667vw;
  }
}
.view__text {
  margin: clamp(1px, 2.6041666667vw, 40px) auto 0;
}
@media screen and (max-width: 767px) {
  .view__text {
    margin-top: 10.6666666667vw;
  }
}
.view__text-main {
  font-size: clamp(1px, 1.3020833333vw, 20px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .view__text-main {
    text-align: left;
    font-size: 4.2666666667vw;
  }
}
.view__text-line {
  display: block;
}
@media screen and (max-width: 767px) {
  .view__text-line {
    display: inline;
  }
}
.view__text-line:nth-child(n+2) {
  margin-top: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .view__text-line:nth-child(n+2) {
    margin-top: 1.0666666667vw;
  }
}
.view__text-bold {
  color: #E92F84;
  font-weight: 700;
}
.view__contents {
  margin-top: clamp(1px, 4.2317708333vw, 65px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(1px, 2.6041666667vw, 40px);
}
@media screen and (max-width: 767px) {
  .view__contents {
    margin-top: 15.2vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8.8vw;
  }
}
.view__content {
  background-color: #fff;
  padding: clamp(1px, 3.2552083333vw, 50px) clamp(1px, 2.6041666667vw, 40px);
  border-radius: 2px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .view__content {
    padding: 8.5333333333vw 6.4vw;
  }
}
.view__content-num {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: clamp(1px, 2.0833333333vw, 32px);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  display: inline-block;
  color: #E92F84;
}
@media screen and (max-width: 767px) {
  .view__content-num {
    font-size: 6.4vw;
  }
}
.view__content-title {
  font-size: clamp(1px, 1.953125vw, 30px);
  font-weight: 700;
  line-height: 1.4666666667;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .view__content-title {
    font-size: 4.8vw;
  }
}
.view__content-title-bold {
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .view__content-title-bold {
    font-size: 6.4vw;
  }
}
.view__content-img {
  margin-top: clamp(1px, 1.5625vw, 24px);
}
@media screen and (max-width: 767px) {
  .view__content-img {
    margin-top: 4.2666666667vw;
  }
}
.view__content-img-01, .view__content-img-02, .view__content-img-03 {
  margin: auto;
  width: clamp(1px, 9.0494791667vw, 139px);
  height: clamp(1px, 5.6640625vw, 87px);
}
@media screen and (max-width: 767px) {
  .view__content-img-01, .view__content-img-02, .view__content-img-03 {
    width: 33.8666666667vw;
    height: 28.2666666667vw;
  }
}
.view__content-text {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  line-height: 1.625;
  margin-top: clamp(1px, 1.5625vw, 24px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .view__content-text {
    font-size: 4.2666666667vw;
    margin-top: 1.0666666667vw;
  }
}

.point {
  background-color: #fff;
  padding: clamp(1px, 5.2083333333vw, 80px) 0 clamp(1px, 8.3333333333vw, 128px);
}
@media screen and (max-width: 767px) {
  .point {
    padding: 8.5333333333vw 0 21.3333333333vw;
  }
}
.point__inner {
  margin: 0 auto;
  max-width: clamp(1px, 76.5625vw, 1176px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point__inner {
    max-width: none;
    padding: 0 5.3333333333vw;
  }
}
.point__title {
  display: inline-block;
  font-size: clamp(1px, 2.6041666667vw, 40px);
  text-align: center;
  border-bottom: 8px solid;
  -o-border-image: linear-gradient(90deg, #E83085, #EB8E78) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#E83085), to(#EB8E78)) 1;
     border-image: linear-gradient(90deg, #E83085, #EB8E78) 1;
}
@media screen and (max-width: 767px) {
  .point__title {
    font-size: 4.8vw;
  }
}
.point__title-bold {
  font-size: clamp(1px, 2.9947916667vw, 46px);
  line-height: 1.4782608696;
}
@media screen and (max-width: 767px) {
  .point__title-bold {
    font-size: 6.4vw;
  }
}
.point__content {
  margin-top: clamp(1px, 5.6640625vw, 87px);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .point__content {
    margin-top: 22.1333333333vw;
  }
  .point__content:not(:first-of-type) {
    margin-top: 11.4666666667vw;
  }
}
.point__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 2.0833333333vw, 32px);
  font-size: clamp(1px, 1.953125vw, 30px);
  font-weight: 700;
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .point__subtitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.point__subtitle-num {
  font-size: clamp(1px, 1.3020833333vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  .point__subtitle-num {
    font-size: 3.7333333333vw;
  }
}
.point__subtitle-num-bold {
  font-size: clamp(1px, 4.3619791667vw, 67px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .point__subtitle-num-bold {
    font-size: 9.0666666667vw;
  }
}
.point__subtitle-text {
  font-size: clamp(1px, 1.953125vw, 30px);
  line-height: 1.4666666667;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .point__subtitle-text {
    text-align: center;
    font-size: 4.8vw;
    margin-top: 6.4vw;
  }
}
.point__subtitle-bold {
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.25;
  color: #E92F84;
}
@media screen and (max-width: 767px) {
  .point__subtitle-bold {
    font-size: 6.4vw;
  }
}
.point__content-text {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  line-height: 1.625;
  margin-top: clamp(1px, 1.0416666667vw, 16px);
}
@media screen and (max-width: 767px) {
  .point__content-text {
    font-size: 4.2666666667vw;
    margin-top: 6.4vw;
  }
}
.point__content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 2.6041666667vw, 40px);
  margin-top: clamp(1px, 2.6041666667vw, 40px);
}
@media screen and (max-width: 767px) {
  .point__content-items {
    margin-top: 6.4vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
  }
}
.point__content-item-text {
  font-size: clamp(1px, 0.9114583333vw, 14px);
  line-height: 1.8571428571;
  margin-top: clamp(1px, 0.9114583333vw, 14px);
}
@media screen and (max-width: 767px) {
  .point__content-item-text {
    font-size: 3.2vw;
    margin-top: 3.2vw;
  }
}

.achievement {
  background-color: #F4F4F4;
  padding: clamp(1px, 8.3333333333vw, 128px) 0;
}
@media screen and (max-width: 767px) {
  .achievement {
    padding: 21.3333333333vw 0;
  }
}
.achievement__inner {
  margin: 0 auto;
  max-width: clamp(1px, 76.5625vw, 1176px);
}
@media screen and (max-width: 767px) {
  .achievement__inner {
    max-width: none;
    padding: 0 5.3333333333vw;
    text-align: center;
  }
}
.achievement__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background-image: url("../img/achievement_title_line.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: clamp(1px, 1.5625vw, 24px);
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .achievement__title {
    font-size: 6.4vw;
    padding: 0 1.0666666667vw 4.2666666667vw;
    display: inline-block;
    background-image: url("../img/achievement_title_line_sp.svg");
    background-size: 100% auto;
  }
}
.achievement__contents {
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .achievement__contents {
    margin-top: 10.6666666667vw;
  }
}
.achievement__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 3.6458333333vw, 56px);
}
@media screen and (max-width: 767px) {
  .achievement__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.8vw;
  }
}
.achievement__content:not(:first-child) {
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .achievement__content:not(:first-child) {
    margin-top: 10.6666666667vw;
  }
}
.achievement__content-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 clamp(1px, 36.4583333333vw, 560px);
          flex: 0 1 clamp(1px, 36.4583333333vw, 560px);
}
@media screen and (max-width: 767px) {
  .achievement__content-left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.achievement__content-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 clamp(1px, 36.4583333333vw, 560px);
          flex: 0 1 clamp(1px, 36.4583333333vw, 560px);
}
@media screen and (max-width: 767px) {
  .achievement__content-right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
  }
}
.achievement__content-img {
  width: 100%;
  height: auto;
}
.achievement__content-right-sub {
  display: inline-block;
  width: 100%;
  font-size: clamp(1px, 1.0416666667vw, 16px);
  line-height: 2;
  font-weight: 700;
  color: #969696;
}
@media screen and (max-width: 767px) {
  .achievement__content-right-sub {
    font-size: 3.7333333333vw;
    line-height: 1.5714285714;
  }
}
.achievement__content-right-title {
  font-size: clamp(1px, 1.953125vw, 30px);
  line-height: 1.4666666667;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .achievement__content-right-title {
    display: block;
    font-size: 4.8vw;
    margin-top: 1.0666666667vw;
  }
}
.achievement__content-right-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(1px, 1.0416666667vw, 16px);
  margin-top: clamp(1px, 1.5625vw, 24px);
}
@media screen and (max-width: 767px) {
  .achievement__content-right-tags {
    margin-top: 4.2666666667vw;
    gap: 3.2vw;
  }
}
.achievement__content-right-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: flex;
  gap: clamp(1px, 1.0416666667vw, 16px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .achievement__content-right-tag {
    gap: 3.7333333333vw;
  }
}
.achievement__content-right-tag--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.achievement__content-right-tag-sub {
  font-size: clamp(1px, 0.9114583333vw, 14px);
  line-height: 1.8571428571;
  color: #E92F84;
  border: 1px solid #E92F84;
  padding: clamp(1px, 0.390625vw, 6px) clamp(1px, 1.3020833333vw, 20px);
  border-radius: 500px;
  line-height: 1;
  min-width: 100px;
  width: clamp(1px, 6.5104166667vw, 100px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .achievement__content-right-tag-sub {
    font-size: 3.2vw;
    padding: 1.0666666667vw 2.1333333333vw;
    min-width: 21.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .achievement__content-right-tag-text {
    font-size: 3.7333333333vw;
  }
}
.achievement__content-right-tag-text--small {
  font-size: clamp(1px, 0.9114583333vw, 14px);
}
@media screen and (max-width: 767px) {
  .achievement__content-right-tag-text--small {
    font-size: 3.7333333333vw;
  }
}
.achievement__content-right-text {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  line-height: 1.625;
  margin-top: clamp(1px, 2.0833333333vw, 32px);
}
@media screen and (max-width: 767px) {
  .achievement__content-right-text {
    font-size: 4.2666666667vw;
    margin-top: 4.2666666667vw;
  }
}
.achievement__content-right-text em {
  display: inline;
  font-weight: 700;
  background-image: linear-gradient(#F2CCDD 7px, transparent 0);
  background-repeat: no-repeat;
  background-position: 0 1em;
  background-size: 100% 7px;
}
.achievement__2row-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 3.6458333333vw, 56px);
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .achievement__2row-contents {
    margin-top: 10.6666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10.6666666667vw;
  }
}
.achievement__2row-contents .achievement__content {
  margin-top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1px, 1.5625vw, 24px);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.achievement__2row-contents .achievement__content-left,
.achievement__2row-contents .achievement__content-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .achievement__2row-contents .achievement__content-left,
  .achievement__2row-contents .achievement__content-right {
    margin-top: 4.8vw;
  }
}
.achievement__btn {
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .achievement__btn {
    margin-top: 10.6666666667vw;
  }
}

.voice {
  background-color: #122E3C;
  padding: clamp(1px, 8.3333333333vw, 128px) 0;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 21.3333333333vw 0;
  }
}
.voice__inner {
  margin: 0 auto;
  max-width: clamp(1px, 76.5625vw, 1176px);
}
@media screen and (max-width: 767px) {
  .voice__inner {
    max-width: none;
    padding: 0 5.3333333333vw;
    text-align: center;
  }
}
.voice__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background-image: url("../img/voice_title_line.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: clamp(1px, 1.5625vw, 24px);
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .voice__title {
    font-size: 6.4vw;
    padding: 0 2.1333333333vw 5.3333333333vw;
    display: inline-block;
    background-image: url("../img/voice_title_line_sp.svg");
    background-size: 100% auto;
  }
}
.voice__contents {
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .voice__contents {
    margin-top: 10.6666666667vw;
  }
}
.voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 2.6041666667vw, 40px);
}
@media screen and (max-width: 767px) {
  .voice__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 5.3333333333vw;
  }
}
.voice__item:not(:first-child) {
  margin-top: clamp(1px, 3.125vw, 48px);
}
@media screen and (max-width: 767px) {
  .voice__item:not(:first-child) {
    margin-top: 6.4vw;
  }
}
.voice__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .voice__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.voice__item--reverse .voice__item-text::before {
  left: unset;
  right: -18px;
  -webkit-transform: translate(0%, -25%) rotate(90deg);
          transform: translate(0%, -25%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  .voice__item--reverse .voice__item-text::before {
    top: auto;
    bottom: -12px;
    left: auto;
    right: 64px;
    -webkit-transform: translate(0%, 0%) rotate(268deg);
            transform: translate(0%, 0%) rotate(268deg);
  }
}
.voice__item-img {
  width: clamp(1px, 6.5104166667vw, 100px);
  height: clamp(1px, 6.5104166667vw, 100px);
}
@media screen and (max-width: 767px) {
  .voice__item-img {
    width: 16.5333333333vw;
    height: 16.5333333333vw;
  }
}
.voice__item-text {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice__item-text {
    text-align: left;
  }
}
.voice__item-text::before {
  content: "";
  position: absolute;
  width: 37px;
  height: 32px;
  background-color: #fff;
  left: -18px;
  top: 25%;
  -webkit-clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  -webkit-transform: translate(0%, -25%) rotate(-90deg);
          transform: translate(0%, -25%) rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .voice__item-text::before {
    top: auto;
    bottom: -12px;
    left: 50px;
    -webkit-transform: translate(0%, 0%) rotate(328deg);
            transform: translate(0%, 0%) rotate(328deg);
  }
}
.voice__item-text-inner {
  padding: clamp(1px, 2.6041666667vw, 40px);
}
@media screen and (max-width: 767px) {
  .voice__item-text-inner {
    padding: 6.4vw;
  }
}
.voice__item-text-main {
  font-size: clamp(1px, 1.3020833333vw, 20px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .voice__item-text-main {
    font-size: 4.8vw;
  }
}
.voice__item-text-sub {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  line-height: 1.625;
  margin-top: clamp(1px, 1.0416666667vw, 16px);
}
@media screen and (max-width: 767px) {
  .voice__item-text-sub {
    font-size: 4.2666666667vw;
  }
}

.price {
  background-color: #F4F4F4;
  padding: clamp(1px, 8.3333333333vw, 128px) 0;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 21.3333333333vw 0;
  }
}
.price__inner {
  margin: 0 auto;
  max-width: clamp(1px, 76.5625vw, 1176px);
}
@media screen and (max-width: 767px) {
  .price__inner {
    max-width: none;
    padding: 0 5.3333333333vw;
    text-align: center;
  }
}
.price__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background-image: url("../img/price_title_line.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: clamp(1px, 1.5625vw, 24px);
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .price__title {
    font-size: 6.4vw;
    padding-bottom: 4.2666666667vw;
    display: inline-block;
    background-image: url("../img/price_title_line_sp.svg");
    background-size: 100% auto;
  }
}
.price__text {
  font-size: clamp(1px, 1.3020833333vw, 20px);
  line-height: 1.6;
  margin-top: clamp(1px, 3.6458333333vw, 56px);
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .price__text {
    font-size: 4.2666666667vw;
    margin-top: 10.6666666667vw;
  }
}
.price__text--2 {
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .price__text--2 {
    margin-top: 10.6666666667vw;
  }
}
.price__container {
  margin-top: clamp(1px, 2.6041666667vw, 40px);
}
.price__sub-title {
  font-size: clamp(1px, 1.171875vw, 18px);
  font-weight: 700;
  padding-left: clamp(1px, 1.1067708333vw, 17px);
  position: relative;
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .price__sub-title {
    text-align: left;
    font-size: 4.8vw;
    padding-left: 4.5333333333vw;
    margin-top: 10.6666666667vw;
    margin-left: 0;
  }
}
.price__sub-title::before {
  content: "";
  position: absolute;
  width: clamp(1px, 0.5859375vw, 9px);
  height: clamp(1px, 0.5859375vw, 9px);
  background: -webkit-gradient(linear, left top, left bottom, from(#E83085), to(#EB8E78));
  background: linear-gradient(to bottom, #E83085, #EB8E78);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .price__sub-title::before {
    width: 2.4vw;
    height: 2.4vw;
  }
}
.price .sec-title--price {
  width: clamp(1px, 76.6276041667vw, 1177px);
  margin-inline: auto;
  text-align: left;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .price .sec-title--price {
    width: 89.3333333333vw;
  }
}
.price__inner {
  width: clamp(1px, 76.6276041667vw, 1177px);
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price__inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .price__container--1 {
    width: 94.6666666667vw;
    margin: 6.4vw 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .price__container--2 {
    width: 94.6666666667vw;
    margin: 6.4vw 0 0 auto;
  }
}
.price__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .price__wrap {
    gap: 1.0666666667vw;
  }
}
.price__left {
  width: clamp(1px, 11.328125vw, 174px);
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .price__left {
    min-width: 17.8666666667vw;
  }
}
.price__left p {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 700;
  color: #E92F84;
}
@media screen and (max-width: 767px) {
  .price__left p {
    font-size: 2.9333333333vw;
  }
}
.price__left-up {
  height: clamp(1px, 21.3541666667vw, 328px);
  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;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF8F2), to(#ffffff));
  background: linear-gradient(to bottom, #FFF8F2, #ffffff);
  margin-bottom: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .price__left-up {
    height: 100.5333333333vw;
    margin-bottom: 1.0666666667vw;
  }
}
.price__left-down {
  height: clamp(1px, 5.3385416667vw, 82px);
  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;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF8F2), to(#ffffff));
  background: linear-gradient(to bottom, #FFF8F2, #ffffff);
}
@media screen and (max-width: 767px) {
  .price__left-down {
    height: 21.8666666667vw;
  }
}
.price__right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .price__right {
    gap: 1.0666666667vw;
    overflow-x: scroll;
  }
}
.price .price-single {
  height: clamp(1px, 33.59375vw, 516px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .price .price-single {
    height: 145.3333333333vw;
    min-width: 66.1333333333vw;
  }
}
.price .price-single__head {
  background: linear-gradient(-45deg, #E83085, #EB8E78);
  color: #fff;
  padding: clamp(1px, 1.3020833333vw, 20px) 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price .price-single__head {
    padding: 4.2666666667vw 0;
  }
}
.price .price-single:first-child .price-single__head {
  border-top-left-radius: 4px;
}
.price .price-single:last-child .price-single__head {
  border-top-right-radius: 4px;
}
.price .price-single__title {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .price .price-single__title {
    font-size: 3.7333333333vw;
  }
}
.price .price-single__title span {
  font-size: clamp(1px, 1.4322916667vw, 22px);
  font-weight: 700;
  margin-right: clamp(1px, 0.2604166667vw, 4px);
}
@media screen and (max-width: 767px) {
  .price .price-single__title span {
    font-size: 4.8vw;
  }
}
.price .price-single__wrap {
  padding: 0 clamp(1px, 1.5625vw, 24px);
}
@media screen and (max-width: 767px) {
  .price .price-single__wrap {
    padding: 0 3.7333333333vw;
  }
}
.price .price-single__main {
  height: clamp(1px, 21.3541666667vw, 328px);
  padding: clamp(1px, 1.3020833333vw, 20px) 0;
}
@media screen and (max-width: 767px) {
  .price .price-single__main {
    height: 101.6vw;
    padding: 4.8vw 0;
  }
}
.price .price-single__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1px, 0.1953125vw, 3px);
}
@media screen and (max-width: 767px) {
  .price .price-single__list {
    gap: 0.5333333333vw;
  }
}
.price .price-single__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.price .price-single__item span {
  font-size: clamp(1px, 0.9114583333vw, 14px);
  font-weight: 400;
  color: #112F3B;
}
@media screen and (max-width: 767px) {
  .price .price-single__item span {
    font-size: 3.7333333333vw;
    text-align: left;
  }
}
.price .price-single__item--purple span {
  color: #000fbe;
}
.price .price-single__foot {
  padding: clamp(1px, 1.2369791667vw, 19px) 0;
  text-align: center;
  margin-top: auto;
  border-top: 1px solid #efefef;
}
@media screen and (max-width: 767px) {
  .price .price-single__foot {
    padding: 3.7333333333vw 0;
  }
}
.price .price-single__price {
  font-size: clamp(1px, 1.4322916667vw, 22px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price .price-single__price {
    font-size: 4.8vw;
  }
}
.price .price-single__price span {
  font-family: "Inter", sans-serif;
  font-size: clamp(1px, 1.953125vw, 30px);
  font-weight: 700;
  padding-top: clamp(1px, 0.2604166667vw, 4px);
  margin-right: clamp(1px, 0.2604166667vw, 4px);
}
@media screen and (max-width: 767px) {
  .price .price-single__price span {
    font-size: 8.2666666667vw;
  }
}
.price__wrap--2 .price__left-up {
  height: clamp(1px, 13.6067708333vw, 209px);
}
@media screen and (max-width: 767px) {
  .price__wrap--2 .price__left-up {
    height: 56.8vw;
  }
}
.price__wrap--2 .price__left-down {
  height: clamp(1px, 5.2734375vw, 81px);
}
@media screen and (max-width: 767px) {
  .price__wrap--2 .price__left-down {
    height: 20.8vw;
  }
}
.price__wrap--2 .price-single {
  height: clamp(1px, 25.78125vw, 396px);
}
@media screen and (max-width: 767px) {
  .price__wrap--2 .price-single {
    height: 100.5333333333vw;
  }
}
.price__wrap--2 .price-single__head {
  background: linear-gradient(-45deg, #E83085, #EB8E78);
  padding: clamp(1px, 1.8880208333vw, 29px) 0;
}
@media screen and (max-width: 767px) {
  .price__wrap--2 .price-single__head {
    padding: 7.2vw 0;
  }
}
.price__wrap--2 .price-single__main {
  height: clamp(1px, 14.0625vw, 216px);
  padding: clamp(1px, 1.5625vw, 24px) 0;
}
@media screen and (max-width: 767px) {
  .price__wrap--2 .price-single__main {
    height: 57.8666666667vw;
    padding: 4.8vw 0;
  }
}
.price__wrap--2 .price-single__foot {
  padding: clamp(1px, 1.5625vw, 24px) 0;
}
@media screen and (max-width: 767px) {
  .price__wrap--2 .price-single__foot {
    padding: 3.7333333333vw 0;
  }
}
.price__wrap--2 .price-single__price span {
  padding-top: 0;
}
.price__ps {
  font-size: clamp(1px, 0.78125vw, 12px);
  margin-top: clamp(1px, 1.3020833333vw, 20px);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .price__ps {
    font-size: 3.2vw;
    margin-top: 5.3333333333vw;
  }
}
.price__cta {
  width: clamp(1px, 68.0989583333vw, 1046px);
  height: clamp(1px, 19.53125vw, 300px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 0.78125vw, 12px);
  background: url("../img/price_cta_bkg.jpg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: clamp(1px, 5.2083333333vw, 80px) auto 0;
  -webkit-box-shadow: 10px 10px 30px rgba(65, 65, 65, 0.3098039216);
          box-shadow: 10px 10px 30px rgba(65, 65, 65, 0.3098039216);
}
@media screen and (max-width: 767px) {
  .price__cta {
    width: 89.3333333333vw;
    height: 42.6666666667vw;
    margin: 8vw auto 0;
    gap: 2.4vw;
    background: url("../img/price_cta_bkg_sp.jpg") no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
}
.price__cta:hover {
  background-size: 110% 110%;
}
.price__cta span {
  display: block;
  font-size: clamp(1px, 1.171875vw, 18px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price__cta span {
    font-size: 3.7333333333vw;
    text-align: center;
  }
}
.price__cta p {
  font-size: clamp(1px, 2.8645833333vw, 44px);
  font-weight: 700;
  padding-right: clamp(1px, 3.2552083333vw, 50px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .price__cta p {
    font-size: 5.8666666667vw;
    padding-right: 7.4666666667vw;
  }
}
.price__cta p::after {
  content: "";
  position: absolute;
  width: clamp(1px, 2.8645833333vw, 44px);
  height: clamp(1px, 2.8645833333vw, 44px);
  background: url("../img/kv-arrow.svg") no-repeat;
  background-size: 100% 100%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .price__cta p::after {
    width: 6.4vw;
    height: 6.4vw;
  }
}

.faq {
  padding: clamp(1px, 8.3333333333vw, 128px) 0;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 21.3333333333vw 0;
  }
}
.faq__inner {
  margin: 0 auto;
  max-width: clamp(1px, 54.0364583333vw, 830px);
}
@media screen and (max-width: 767px) {
  .faq__inner {
    max-width: none;
    padding: 0 5.3333333333vw;
    text-align: center;
  }
}
.faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background-image: url("../img/faq_title_line.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: clamp(1px, 1.5625vw, 24px);
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 6.4vw;
    padding-bottom: 5.3333333333vw;
    display: inline-block;
    background-image: url("../img/faq_title_line_sp.svg");
    background-size: 100% auto;
  }
}
.faq__wrap {
  margin-top: clamp(1px, 5.46875vw, 84px);
}
@media screen and (max-width: 767px) {
  .faq__wrap {
    margin-top: 10.6666666667vw;
  }
}
.faq .faq-single {
  padding: clamp(1px, 1.5625vw, 24px) 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq .faq-single {
    width: 100%;
    padding: 6.4vw 0;
  }
}
.faq .faq-single:first-child {
  border-top: none;
  padding-top: 0;
}
.faq .faq-single__header {
  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;
}
.faq .faq-single__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(1px, 1.2369791667vw, 19px);
}
@media screen and (max-width: 767px) {
  .faq .faq-single__wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.6666666667vw;
  }
}
.faq .faq-single__icon {
  font-family: "Inter", sans-serif;
  font-size: clamp(1px, 1.953125vw, 30px);
  color: #E92F84;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faq .faq-single__icon {
    font-size: 6.1333333333vw;
    line-height: 1.2;
  }
}
.faq .faq-single__title {
  font-size: clamp(1px, 1.3020833333vw, 20px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .faq .faq-single__title {
    width: 74.4vw;
    font-size: 4.2666666667vw;
    text-align: left;
  }
}
.faq .faq-single .plus {
  display: block;
  width: clamp(1px, 1.5625vw, 24px);
  height: clamp(1px, 1.5625vw, 24px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq .faq-single .plus {
    display: block;
    width: 6.4vw;
    height: 6.4vw;
    position: relative;
  }
}
.faq .faq-single .plus::before, .faq .faq-single .plus::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #E92F84;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.faq .faq-single .plus::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq .faq-single.is-active .plus::before {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  opacity: 0;
}
.faq .faq-single.is-active .plus::after {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.faq .faq-single__content {
  display: none;
  padding: clamp(1px, 1.0416666667vw, 16px) 0 0 clamp(1px, 2.734375vw, 42px);
}
@media screen and (max-width: 767px) {
  .faq .faq-single__content {
    padding: 6.4vw 0 0;
  }
}
.faq .faq-single__text {
  font-size: clamp(1px, 1.0416666667vw, 16px);
}
@media screen and (max-width: 767px) {
  .faq .faq-single__text {
    font-size: 3.7333333333vw;
    width: 74.4vw;
    text-align: left;
    margin: auto;
  }
}

.flow {
  background-color: #122E3C;
  padding: clamp(1px, 8.3333333333vw, 128px) 0;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 21.3333333333vw 0;
    text-align: center;
  }
}
.flow__inner {
  margin: 0 auto;
  max-width: clamp(1px, 76.5625vw, 1176px);
}
@media screen and (max-width: 767px) {
  .flow__inner {
    max-width: none;
    padding: 0 5.3333333333vw;
    text-align: center;
  }
}
.flow__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background-image: url("../img/flow_title_line.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: clamp(1px, 1.5625vw, 24px);
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 6.4vw;
    padding: 0 2.1333333333vw 5.3333333333vw;
    display: inline-block;
    background-image: url("../img/flow_title_line_sp.svg");
    background-size: 100% auto;
  }
}
.flow__text {
  font-size: clamp(1px, 1.3020833333vw, 20px);
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-top: clamp(1px, 3.6458333333vw, 56px);
}
@media screen and (max-width: 767px) {
  .flow__text {
    margin-top: 10.6666666667vw;
    margin-bottom: 8.5333333333vw;
    font-size: 4.2666666667vw;
  }
}
.flow__header {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  margin-top: clamp(1px, 5.4036458333vw, 83px);
}
@media screen and (max-width: 767px) {
  .flow__header {
    width: 89.3333333333vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.flow__header::before {
  content: "";
  display: block;
  width: 200%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 54%;
  left: 2%;
}
@media screen and (max-width: 767px) {
  .flow__header::before {
    bottom: unset;
    top: 5.3333333333vw;
    left: 8vw;
    width: 1px;
    height: 80%;
  }
}
.flow__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .flow__header-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10.6666666667vw;
  }
}
.flow__header-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: clamp(1px, 1.5625vw, 24px);
}
@media screen and (max-width: 767px) {
  .flow__header-single {
    gap: 3.2vw;
  }
}
.flow__header-single--1 {
  width: clamp(1px, 21.3541666667vw, 328px);
}
@media screen and (max-width: 767px) {
  .flow__header-single--1 {
    width: 100%;
  }
}
.flow__header-single--2 {
  width: clamp(1px, 19.921875vw, 306px);
}
@media screen and (max-width: 767px) {
  .flow__header-single--2 {
    width: 100%;
  }
}
.flow__header-single--3 {
  width: clamp(1px, 18.6848958333vw, 287px);
}
@media screen and (max-width: 767px) {
  .flow__header-single--3 {
    width: 100%;
  }
}
.flow__header-single--4 {
  width: clamp(1px, 13.7369791667vw, 211px);
}
@media screen and (max-width: 767px) {
  .flow__header-single--4 {
    width: 100%;
  }
}
.flow__header-single .circle {
  display: block;
  width: clamp(1px, 4.3619791667vw, 67px);
  height: clamp(1px, 4.3619791667vw, 67px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__header-single .circle {
    width: 16.2666666667vw;
    height: 16.2666666667vw;
  }
}
.flow__header-single .circle-big {
  display: block;
  width: clamp(1px, 4.3619791667vw, 67px);
  height: clamp(1px, 4.3619791667vw, 67px);
  background: #E92F84;
  opacity: 0.6;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .flow__header-single .circle-big {
    width: 16.2666666667vw;
    height: 16.2666666667vw;
  }
}
.flow__header-single .circle-mid {
  display: block;
  width: clamp(1px, 3.3203125vw, 51px);
  height: clamp(1px, 3.3203125vw, 51px);
  background: #E92F84;
  opacity: 0.6;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .flow__header-single .circle-mid {
    width: 12vw;
    height: 12vw;
  }
}
.flow__header-single .circle-small {
  display: block;
  width: clamp(1px, 2.1484375vw, 33px);
  height: clamp(1px, 2.1484375vw, 33px);
  background: #fff;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .flow__header-single .circle-small {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.flow__header-single .text {
  color: #fff;
  line-height: 1.1;
  margin-bottom: clamp(1px, 4.2317708333vw, 65px);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .flow__header-single .text {
    text-align: left;
  }
}
.flow__header-single .text::before {
  content: "";
  display: block;
  width: clamp(1px, 1.5625vw, 24px);
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: clamp(1px, 0.4557291667vw, 7px);
  left: calc(-1 * clamp(1px, 2.1484375vw, 33px));
}
@media screen and (max-width: 767px) {
  .flow__header-single .text::before {
    display: none;
  }
}
.flow__header-single .text::after {
  content: "";
  display: block;
  width: clamp(1px, 3.2552083333vw, 50px);
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: clamp(1px, 0.4557291667vw, 7px);
  left: calc(-1 * clamp(1px, 2.1484375vw, 33px));
  -webkit-transform: rotate(121deg);
          transform: rotate(121deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media screen and (max-width: 767px) {
  .flow__header-single .text::after {
    display: none;
  }
}
.flow__header-single .text span {
  font-size: clamp(1px, 0.9114583333vw, 14px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow__header-single .text span {
    font-size: 3.7333333333vw;
  }
}
.flow__header-single .text p {
  font-size: clamp(1px, 1.3020833333vw, 20px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .flow__header-single .text p {
    font-size: 4.8vw;
  }
}
.flow__header-ps {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 700;
  padding: 0 clamp(1px, 5.3385416667vw, 82px);
  margin: clamp(1px, 1.953125vw, 30px) 0 0 clamp(1px, 2.734375vw, 42px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__header-ps {
    text-align: left;
    font-size: 3.2vw;
  }
}
.flow__header-ps::before {
  content: "";
  display: block;
  width: clamp(1px, 4.5572916667vw, 70px);
  height: clamp(1px, 0.78125vw, 12px);
  background: url("../img/flow-ps-left.svg") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .flow__header-ps::before {
    text-align: center;
    width: 2.4vw;
    height: 12vw;
    background: none;
    border: 1px solid #fff;
    border-left: none;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.flow__header-ps::after {
  content: "";
  display: block;
  width: clamp(1px, 4.5572916667vw, 70px);
  height: clamp(1px, 0.78125vw, 12px);
  background: url("../img/flow-ps-right.svg") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .flow__header-ps::after {
    display: none;
  }
}
.flow__main {
  width: clamp(1px, 76.6276041667vw, 1177px);
  padding-top: clamp(1px, 4.1666666667vw, 64px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .flow__main {
    width: 94.6666666667vw;
    padding-top: 8.5333333333vw;
  }
}
.flow__main-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  margin: 0 0 clamp(1px, 1.953125vw, 30px) 0;
}
@media screen and (max-width: 767px) {
  .flow__main-wrap {
    margin: 0 2.6666666667vw 4.2666666667vw 2.6666666667vw;
  }
}
.flow__main-title {
  width: clamp(1px, 56.3802083333vw, 866px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .flow__main-title {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .flow__main-title .nr-title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.1333333333vw;
  }
}
.flow__main-title .nr {
  font-size: clamp(1px, 1.8880208333vw, 29px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow__main-title .nr {
    font-size: 5.8666666667vw;
    font-weight: 700;
  }
}
.flow__main-title .title {
  font-size: clamp(1px, 2.4739583333vw, 38px);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .flow__main-title .title {
    font-size: 5.8666666667vw;
    font-weight: 700;
  }
}
.flow__main-title .text {
  font-size: clamp(1px, 1.3020833333vw, 20px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .flow__main-title .text {
    font-size: 3.7333333333vw;
    margin-top: 2.1333333333vw;
    text-align: left;
  }
}
.flow__main-title .text .point {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-right: clamp(1px, 0.9114583333vw, 14px);
  background-color: transparent;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .flow__main-title .text .point {
    margin-right: 2.1333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .flow__main-title .text .text-main {
    display: block;
    height: 10.9333333333vw;
  }
}
.flow__main .progress-bar {
  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: clamp(1px, 0.7161458333vw, 11px);
}
@media screen and (max-width: 767px) {
  .flow__main .progress-bar {
    gap: 3.7333333333vw;
    margin-top: 4.2666666667vw;
  }
}
.flow__main .progress-bar span {
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .flow__main .progress-bar span {
    font-size: 3.7333333333vw;
  }
}
.flow__main .progress-bar .bar {
  width: clamp(1px, 16.6666666667vw, 256px);
  height: 3px;
  background: #fff;
  border-radius: 200px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__main .progress-bar .bar {
    width: 73.3333333333vw;
  }
}
.flow__main .progress-bar .bar__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(1px, 4.1666666667vw, 64px);
  height: 3px;
  background: #E92F84;
  border-radius: 200px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .flow__main .progress-bar .bar__inner {
    width: 18.3333333333vw;
  }
}
.flow__main .flow-slider {
  cursor: pointer;
  z-index: 0;
}
.flow__main .flow-slider .slick-list {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .slick-list {
    overflow: hidden;
  }
}
.flow__main .flow-slider .flow-slide {
  height: clamp(1px, 39.0625vw, 600px);
  background: linear-gradient(45deg, #FFF8F2 0%, #FFFFFF 100%);
  margin-right: clamp(1px, 2.6041666667vw, 40px);
  padding: clamp(1px, 1.953125vw, 30px);
  border-radius: 9px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide {
    width: 89.3333333333vw;
    height: 171.4666666667vw;
    padding: 4.8vw;
    margin: 0 2.6666666667vw;
    text-align: left;
  }
}
.flow__main .flow-slider .flow-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: clamp(1px, 1.0416666667vw, 16px);
  background: #FACAE0;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide::after {
    height: 4.2666666667vw;
  }
}
.flow__main .flow-slider .flow-slide--3, .flow__main .flow-slider .flow-slide--4 {
  background: linear-gradient(45deg, #FFF8F2 0%, #FFFFFF 100%);
}
.flow__main .flow-slider .flow-slide--3::after, .flow__main .flow-slider .flow-slide--4::after {
  background: #F496C1;
}
.flow__main .flow-slider .flow-slide--5, .flow__main .flow-slider .flow-slide--6 {
  background: -webkit-gradient(linear, right top, left bottom, from(#FFF8F2), to(#FFFFFF));
  background: linear-gradient(to bottom left, #FFF8F2 0%, #FFFFFF 100%);
}
.flow__main .flow-slider .flow-slide--5::after, .flow__main .flow-slider .flow-slide--6::after {
  background: #EE63A3;
}
.flow__main .flow-slider .flow-slide--7, .flow__main .flow-slider .flow-slide--8 {
  background: -webkit-gradient(linear, right top, left bottom, from(#FFF8F2), to(#FFFFFF));
  background: linear-gradient(to bottom left, #FFF8F2 0%, #FFFFFF 100%);
}
.flow__main .flow-slider .flow-slide--7::after, .flow__main .flow-slider .flow-slide--8::after {
  background: #E92F84;
}
.flow__main .flow-slider .flow-slide__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 1.0416666667vw, 16px);
  margin-bottom: clamp(1px, 1.0416666667vw, 16px);
}
.flow__main .flow-slider .flow-slide__img {
  width: clamp(1px, 4.0364583333vw, 62px);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide__img {
    width: 11.2vw;
  }
}
.flow__main .flow-slider .flow-slide__title p {
  font-size: clamp(1px, 1.5625vw, 24px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide__title p {
    font-size: 4.8vw;
  }
}
.flow__main .flow-slider .flow-slide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1px, 0.5208333333vw, 8px);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide__list {
    gap: 1.6vw;
  }
}
.flow__main .flow-slider .flow-slide__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flow__main .flow-slider .flow-slide__text {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide__text {
    font-size: 3.7333333333vw;
  }
}
.flow__main .flow-slider .flow-slide .foot__ps {
  font-weight: 500;
  font-size: clamp(1px, 0.78125vw, 12px);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide .foot__ps {
    font-size: 3.2vw;
  }
}
.flow__main .flow-slider .flow-slide__foot {
  border-top: 1px solid #122E3C;
  margin-top: clamp(1px, 0.78125vw, 12px);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide__foot {
    margin-top: 4.2666666667vw;
  }
}
.flow__main .flow-slider .flow-slide__foot-wrap .foot__title {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 700;
  padding: clamp(1px, 0.78125vw, 12px) 0 clamp(1px, 0.390625vw, 6px);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide__foot-wrap .foot__title {
    font-size: 3.7333333333vw;
    padding: 3.2vw 0 0;
  }
}
.flow__main .flow-slider .flow-slide__foot-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 1.5625vw, 24px);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide__foot-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.flow__main .flow-slider .flow-slide__foot-inner .foot__list .foot__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1px, 0.9114583333vw, 14px);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide__foot-inner .foot__list .foot__item {
    font-size: 3.7333333333vw;
  }
  .flow__main .flow-slider .flow-slide__foot-inner .foot__list .foot__item--small {
    font-size: 3.2vw;
  }
}
.flow__main .flow-slider .flow-slide--6 .flow-slide__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 1.3020833333vw, 20px);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .flow-slide--6 .flow-slide__foot {
    gap: 4.2666666667vw;
  }
}
.flow__main .flow-slider .flow-slide .foot__ps {
  margin-top: clamp(1px, 0.9114583333vw, 14px);
}
.flow__main .flow-slider .slick-prev,
.flow__main .flow-slider .slick-next {
  width: 2.9947916667vw;
  height: 2.9947916667vw;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .slick-prev,
  .flow__main .flow-slider .slick-next {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    -webkit-transform: translate(-25%, -50%);
            transform: translate(-25%, -50%);
  }
}
.flow__main .flow-slider .slick-prev::before,
.flow__main .flow-slider .slick-next::before {
  content: "";
  position: absolute;
  width: 2.9947916667vw;
  height: 2.9947916667vw;
  background: url("../img/slider-arrow.png") no-repeat;
  background-size: contain;
  opacity: 1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .slick-prev::before,
  .flow__main .flow-slider .slick-next::before {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    background: url("../img/slider-arrow.png") no-repeat;
    background-size: contain;
  }
}
.flow__main .flow-slider .slick-next {
  left: unset;
  right: 0;
  -webkit-transform: rotate(180deg) translate(calc(-50% + clamp(1px, 2.6041666667vw, 40px)), 50%);
          transform: rotate(180deg) translate(calc(-50% + clamp(1px, 2.6041666667vw, 40px)), 50%);
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .slick-next {
    -webkit-transform: translate(-25%, -50%);
            transform: translate(-25%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .flow__main .flow-slider .slick-next::before {
    -webkit-transform: rotate(180deg) translate(-50%, 0%);
            transform: rotate(180deg) translate(-50%, 0%);
  }
}

.contact {
  padding: clamp(1px, 8.3333333333vw, 128px) 0 clamp(1px, 10.4166666667vw, 160px);
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 21.3333333333vw 0;
  }
}
.contact__inner {
  margin: 0 auto;
  max-width: clamp(1px, 76.5625vw, 1176px);
}
@media screen and (max-width: 767px) {
  .contact__inner {
    text-align: center;
  }
}
.contact__title {
  font-size: clamp(1px, 2.6041666667vw, 40px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .contact__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
    background-image: url("../img/contact_title_line_sp.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    padding-bottom: 4.2666666667vw;
    font-size: 6.4vw;
    display: inline-block;
  }
}
.contact .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: clamp(1px, 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .contact .form {
    margin-top: 10.6666666667vw;
  }
}
.contact .wpcf7-form {
  width: clamp(1px, 37.7604166667vw, 580px);
}
@media screen and (max-width: 767px) {
  .contact .wpcf7-form {
    width: 89.3333333333vw;
  }
}
.contact .wpcf7-form .head-label {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 700;
  margin-bottom: clamp(1px, 0.5859375vw, 9px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact .wpcf7-form .head-label {
    font-size: 4.2666666667vw;
    margin-bottom: 2.4vw;
    gap: 2.6666666667vw;
  }
}
.contact .wpcf7-form abbr {
  width: 40px;
  height: 20px;
  background: #E92F84;
  border-radius: 2px;
  color: #fff;
  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;
  font-size: 11px;
  text-decoration: none;
}
.contact .wpcf7-form abbr .mandatory {
  margin-top: -1px;
}
.contact .wpcf7-form abbr.not-required {
  background: #969696;
}
.contact .wpcf7-form .wpcf7-list-item {
  width: 100%;
  margin-left: 0;
}
.contact .wpcf7-form .form-group {
  margin-bottom: 35px;
}
.contact .wpcf7-form .form-group.how-known {
  margin-bottom: 32px;
}
.contact .wpcf7-form .form-input {
  text-align: left;
}
.contact .wpcf7-form .form-input input:not([type=checkbox]),
.contact .wpcf7-form .form-input select,
.contact .wpcf7-form .form-input textarea {
  width: 100%;
  height: 45px;
  background: transparent;
  border: 1px solid #122E3C;
  border-radius: 2px;
  padding: 10px 15px 11px;
}
.contact .wpcf7-form .form-input.select-arrow .wpcf7-form-control-wrap {
  position: relative;
}
.contact .wpcf7-form .form-input.select-arrow .wpcf7-form-control-wrap::before {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #122E3C;
  border-left: 2px solid #122E3C;
  pointer-events: none;
}
.contact .wpcf7-form .form-input select:focus {
  outline: none;
}
.contact .wpcf7-form .form-input input:not([type=checkbox])[name=search-keyword], .contact .wpcf7-form .form-input input:not([type=checkbox])[name=article-title], .contact .wpcf7-form .form-input input:not([type=checkbox])[name=other-detail] {
  margin-bottom: 15px;
  font-size: 16px;
}
.contact .wpcf7-form .form-input textarea {
  height: 145px;
}
.contact .wpcf7-form .form-input input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -7px;
}
.contact .wpcf7-form .form-input input[type=checkbox]:checked::after {
  position: absolute;
  top: 2px;
  left: 5px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
.contact .wpcf7-form .form-group.center {
  font-size: clamp(1px, 1.0416666667vw, 16px);
  font-weight: 700;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .contact .wpcf7-form .form-group.center {
    font-size: 4.2666666667vw;
  }
}
.contact .wpcf7-form .form-group.center input[type=checkbox] {
  background: transparent;
}
.contact .submit {
  margin: 36px auto 0;
  cursor: pointer;
  width: clamp(1px, 21.484375vw, 330px);
  height: clamp(1px, 4.5572916667vw, 70px);
  background: -webkit-gradient(linear, left top, right top, from(#E83085), color-stop(#EB8E78), to(#E83085));
  background: linear-gradient(90deg, #E83085, #EB8E78, #E83085);
  background-position: 0 50%;
  background-size: 300% 100%;
  -webkit-transition: background-position 0.5s;
  transition: background-position 0.5s;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 40px;
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: clamp(1px, 1.171875vw, 18px);
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  border: none;
}
.contact .submit:hover {
  background-position: 100% 50%;
}
@media screen and (max-width: 767px) {
  .contact .submit {
    width: 82.6666666667vw;
    height: 18.6666666667vw;
    font-size: 4.8vw;
  }
}
.contact .form-alert-reCaptcha {
  margin-bottom: 10px;
}
.contact .privacypolicy-doc {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact .privacypolicy-doc__inner {
  font-size: clamp(1px, 0.9114583333vw, 14px);
  color: #122E3C;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .contact .privacypolicy-doc__inner {
    font-size: 3.7333333333vw;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .contact .privacypolicy-doc__wrap {
    text-align: left;
  }
}