@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Gabarito:500,600|Noto+Sans+JP:500,700,400");
:root {
  --black: #000000;
  --cloud: #c4c4c4;
  --gallery: #eeeeee;
  --mine-shaft: #333333;
  --persian-pink: #eb75c9;
  --white: #ffffff;
  --white-2: #ffffff87;
  --font-size-l: 18px;
  --font-size-m: 16px;
  --font-size-s: 14px;
  --font-size-xl: 20px;
  --font-size-xs: 12px;
  --font-size-xxl: 24px;
  --font-size-xxxl: 40px;
  --font-family-gabarito: "Gabarito", Helvetica;
  --font-family-noto_sans_jp: "Noto Sans JP", Helvetica;
}

img {
  height: auto;
}

a {
  text-decoration: none;
}

html {
  height: -webkit-fill-available;
}

body {
    height: -webkit-fill-available;
    min-height: 100vh;
    font-family: var(--font-family-noto_sans_jp);
    text-align: justify;
}

* {
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .u-display-pc {
    display: block;
  }
  .u-display-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-display-pc {
    display: none !important;
  }
  .u-display-sp {
    display: block;
  }
}
.header {
  align-items: center;
  background-color: var(--white);
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 14.9333333333vw;
  }
}

.header__container {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__container {
    max-width: 1080px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__container {
    padding: 0 5.3333333333vw;
  }
}

.header__logo-wrapper {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .header__logo-wrapper {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo-wrapper {
    gap: 2.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .header__logo {
    width: 238px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 45.3333333333vw;
  }
}

.header__logo-image {
  width: 100%;
}

.header__menu-button {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (min-width: 768px) {
  .hamburger {
    padding: 10px 0;
    height: 34px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    padding: 2.6666666667vw 0;
    height: 9.0666666667vw;
  }
}

.hamburger__line {
  background-color: var(--black);
}
@media screen and (min-width: 768px) {
  .hamburger__line {
    height: 2px;
    width: 46px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger__line {
    height: 0.5333333333vw;
    width: 12.2666666667vw;
  }
}

.header__modal {
  background-color: var(--black);
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .header__modal {
    background-image: url(/images/bg_menu-pc.svg);
    background-position: 0 0;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .header__modal {
    background-image: url(/images/bg_menu-sp.svg);
    background-position: center right 0;
    padding-bottom: 26.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .header__modal-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

.header__modal--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .header__modal-close {
    position: relative;
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .header__modal-close {
    position: sticky;
    top: 0;
  }
}

.header__modal-close-button {
  cursor: pointer;
  position: absolute;
  background: none;
  border: none;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (min-width: 768px) {
  .header__modal-close-button {
    top: 20px;
    right: 0px;
  }
  .header__modal-close-button img {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .header__modal-close-button {
    top: 0vw;
    right: 5.3333333333vw;
  }
  .header__modal-close-button img {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}

.header__menu-list {
  list-style: none;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .header__menu-list {
    padding-top: 128px;
    width: 330px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-list {
    padding-top: 12.8vw;
    width: 76vw;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .header__menu-item {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-item {
    margin-bottom: 5.3333333333vw;
  }
}

.header__menu-link {
  display: block;
  text-decoration: none;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .header__menu-link {
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .header__menu-link:hover {
    opacity: 0.64;
  }
}

.header__menu-text {
  font-family: var(--font-family-gabarito);
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .header__menu-text {
    line-height: 1.5;
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-text {
    line-height: 1.3;
    margin-bottom: 1.3333333333vw;
    font-size: 8.5333333333vw;
  }
}

.header__menu-text--sub {
  display: block;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .header__menu-text--sub {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-text--sub {
    font-size: 3.7333333333vw;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.header__modal-link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header__modal-link-wrapper {
    gap: 22px;
  }
}

.header__modal-link-text {
  width: 427px;
}
.header__modal-link-text img {
  width: 100%;
}

.header__modal-link {
  color: var(--white);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--color-azure-63, #5FA5E1) 0%, var(--color-rose-54, #B85C9D) 100%);
}
@media screen and (min-width: 768px) {
  .header__modal-link {
    font-size: 18px;
    width: 285px;
    padding: 18px 0;
    border-radius: 32px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .header__modal-link {
    border-radius: 8.5333333333vw;
    font-size: 4.2666666667vw;
    width: 76vw;
    margin: 10.6666666667vw auto 0;
    height: 14.4vw;
    padding: 3.8133333333vw 4.2666666667vw 3.92vw 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .header__modal-link:hover {
    opacity: 0.64;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 50px 40px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__container {
  background-color: #000000;
}

.footer__content {
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .footer__content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 88px 0px 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    gap: 8vw;
    padding: 8vw 5.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 427px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 72vw;
  }
}

@media screen and (min-width: 768px) {
  .footer__links-container {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__links-container {
    display: flex;
    flex-direction: column;
  }
}

.footer__links {
  font-size: 3.2vw;
  color: #ffffff;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__links {
    width: 505px;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 12px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__links {
    font-size: 3.2vw;
    gap: 5.3333333333vw;
  }
}

.footer__link {
  align-items: center;
  display: flex;
  gap: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .footer__link {
    gap: 5px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .footer__link {
    gap: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .footer__link:hover {
    opacity: 0.64;
  }
}

.footer__link-text {
  font-size: 3.2vw;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__link-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer__link-text {
    font-size: 3.2vw;
  }
}

@media screen and (min-width: 768px) {
  .footer__link-icon {
    margin-left: 5px;
    height: 12px;
    width: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer__link-icon {
    margin-left: 1.3333333333vw;
    height: 3.2vw;
    width: 3.2vw;
  }
}

.footer__social {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer__social {
    margin-top: 60px;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer__social {
    margin-top: 15.4666666667vw;
    gap: 8.5333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .footer__social-icon {
    height: 30px;
    width: 30px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .footer__social-icon {
    height: 6.4vw;
    width: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .footer__social-icon:hover {
    opacity: 0.64;
  }
}

.footer__fants {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer__fants {
    margin-top: 48px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer__fants {
    margin-top: 10.6666666667vw;
    gap: 2.6666666667vw;
  }
}

.footer__fants-logo {
  background-image: url(/images/icon_fants_white.png);
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .footer__fants-logo {
    height: 14px;
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer__fants-logo {
    height: 3.7333333333vw;
    width: 16vw;
  }
}

.footer__fants-description {
  font-size: 3.2vw;
  color: #ffffff;
  line-height: 4vw;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .footer__fants-description {
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer__fants-description {
    font-size: 3.2vw;
    line-height: 4vw;
  }
}

.footer__copyright {
  display: block;
  background: linear-gradient(90deg, var(--color-azure-63, #5FA5E1) 0%, var(--color-rose-54, #B85C9D) 100%);
  color: #ffffff;
  font-family: var(--font-family-noto_sans_jp);
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 12px;
    line-height: 18px;
    padding: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 3.2vw;
    line-height: 4.2666666667vw;
    padding: 4.2666666667vw 0;
  }
}

.fv {
  align-items: flex-end;
  display: flex;
}
@media screen and (min-width: 768px) {
  .fv {
    max-width: 1080px;
    padding-top: 80px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 15.2vw;
  }
}
.fv .fv__container {
  margin-bottom: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv .fv__container {
    height: 510px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__container {
    height: 120.8vw;
    width: 100vw;
  }
}
.fv .fv__vector-top {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv .fv__vector-top {
    height: 96px;
    width: 750px;
    top: 474px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__vector-top {
    height: 9.8666666667vw;
    left: 50.1333333333vw;
    top: 90.9333333333vw;
    width: 49.8666666667vw;
  }
}
.fv .fv__vector-bottom {
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv .fv__vector-bottom {
    height: 91px;
    width: 100%;
    top: 509px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__vector-bottom {
    height: 29.8666666667vw;
    top: 90.9333333333vw;
    width: 100%;
  }
}
.fv .fv__background {
  background: linear-gradient(180deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv .fv__background {
    height: 510px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__background {
    height: 90.6666666667vw;
    top: 0.2666666667vw;
    width: 100vw;
  }
}
.fv .fv__image {
  object-fit: cover;
  position: absolute;
  top: 0vw;
}
@media screen and (min-width: 768px) {
  .fv .fv__image {
    max-width: 1051px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__image {
    height: 90.9333333333vw;
    left: 5.3333333333vw;
    width: 94.6666666667vw;
  }
}
.fv .fv__btn {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv .fv__btn {
    left: 60px;
    bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__btn {
    left: 5.3333333333vw;
    top: 104.8vw;
  }
}
.fv .fv__three-min {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv .fv__three-min {
    left: 180px;
    bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__three-min {
    height: 10.1333333333vw;
    left: 38.9333333333vw;
    top: 93.0666666667vw;
    width: 22.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .fv .fv__three-min .fv__three-min-icon {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__three-min .fv__three-min-icon {
    width: 22.1333333333vw;
  }
}
.fv .fv__title {
  align-items: flex-start;
  display: flex;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv .fv__title {
    height: 333px;
    width: 108px;
    top: 30px;
    left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__title {
    gap: 0.8vw;
    height: 90.6666666667vw;
    min-width: 30.9333333333vw;
/*    left: 11.4666666667vw;
    top: 7.7333333333vw;*/
    left: 9vw;
    top: 55vw;
  }
}
@media screen and (min-width: 768px) {
  .fv .fv__title img {
    width: 439px;
    height: 161px;
  }
}
@media screen and (max-width: 767px) {
  .fv .fv__title img {
    width: 85vw;
    /*height: 88.8vw;*/
  }
}

.about {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 157px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 13.3333333333vw;
    min-height: 118.9333333333vw;
  }
}

.about__title {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.about__title-heading {
  font-family: var(--font-family-gabarito);
  font-style: normal;
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  text-align: center;
  text-fill-color: transparent;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .about__title-heading {
    font-size: 60px;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .about__title-heading {
    font-size: 12.8vw;
  }
}

.about__title-concept {
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__title-concept {
    font-size: 26px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about__title-concept {
    font-size: 4.8vw;
    margin-top: 1.6vw;
  }
}
.about__title-concept::after {
  content: "";
  display: block;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .about__title-concept::after {
    margin: 24px auto 0;
    width: 70px;
    height: 2px;
  }
}
@media screen and (max-width: 767px) {
  .about__title-concept::after {
    width: 10.6666666667vw;
    height: 0.2666666667vw;
    margin: 4.2666666667vw auto 0;
  }
}

.about__content {
  line-height: 1.75;
}
.about__content strong {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__content {
    text-align: center;
    font-size: 16px;
    padding: 0 20px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about__content {
    font-size: 4.2666666667vw;
    padding: 0 5.3333333333vw;
    margin-top: 8vw;
  }
}

.about__images {
  overflow: hidden;
  position: relative;
  display: flex;
}
@media screen and (min-width: 768px) {
  .about__images {
    width: 100%;
    margin-top: 72px;
  }
}
@media screen and (max-width: 767px) {
  .about__images {
    width: 100vw;
    margin-top: 10.6666666667vw;
  }
}

.about__images-item {
  animation: slide 60s linear infinite;
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .about__images-item {
    height: 142px;
  }
}
@media screen and (max-width: 767px) {
  .about__images-item {
    height: 37.8666666667vw;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.strengths__title {
  text-align: center;
  font-weight: bold;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .strengths__title {
    font-size: 26px;
    line-height: 1.75;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .strengths__title {
    font-size: 4.8vw;
    line-height: 1.75;
  }
}

.strengths__container {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .strengths__container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
  }
  .strengths__container:after {
      content: "";
      display: block;
      width: 280px;
  }
}

.strengths__item {
  width: 100%;
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .strengths__item {
    margin-top: 60px;
    width: 280px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .strengths__item {
    margin-top: 10.6666666667vw;
    gap: 2.6666666667vw;
  }
}
/*.strengths__item.strengths__item--1 {
  background-image: url(/images/img_strength_threestrength-01.png);
  background-repeat: no-repeat;
}*/
@media screen and (min-width: 768px) {
  .strengths__item.strengths__item--1 {
    background-size: 142px 134px;
    background-position: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .strengths__item.strengths__item--1 {
    background-size: 38.4vw 34.6666666667vw;
    background-position: 2.9333333333vw 5.8666666667vw;
  }
}
/*.strengths__item.strengths__item--2 {
  background-image: url(/images/img_strength_threestrength-02.png);
  background-repeat: no-repeat;
}*/
@media screen and (min-width: 768px) {
  .strengths__item.strengths__item--2 {
    background-size: 157px 156px;
    background-position: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .strengths__item.strengths__item--2 {
    background-size: 40.5333333333vw 36.2666666667vw;
    background-position: 62.4vw 1.6vw;
  }
}
/*.strengths__item.strengths__item--3 {
  background-image: url(/images/img_strength_threestrength-03.png);
  background-repeat: no-repeat;
}*/
@media screen and (min-width: 768px) {
  .strengths__item.strengths__item--3 {
    background-size: 147px 136px;
    background-position: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .strengths__item.strengths__item--3 {
    background-size: 39.2vw 36.2666666667vw;
    background-position: 2.4vw 1.6vw;
  }
}

.strengths__number-wrapper {
  width: 100%;
}

.strengths__content {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.strengths__content img {
  width: 100%;
    height: auto;
}
.strengths__label {
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  line-height: 1.5;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .strengths__label {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .strengths__label {
    font-size: var(--font-size-m);
  }
}

.strengths__number {
  font-family: var(--font-family-gabarito);
  font-style: normal;
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  line-height: 1;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .strengths__number {
    font-size: 64px;
  }
}
@media screen and (max-width: 767px) {
  .strengths__number {
    font-size: 17.0666666667vw;
  }
}

.strengths__heading {
  color: var(--white);
  font-size: 6.4vw;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strengths__heading {
    font-size: 20px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .strengths__heading {
    font-size: 6.4vw;
  }
}

.strengths__description {
  color: var(--white);
  position: relative;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .strengths__description {
    font-size: 16px;
    width: 270px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .strengths__description {
    font-size: 4.2666666667vw;
    padding: 0 5.3333333333vw;
  }
}
.strengths__description span {
  color: var(--persian-pink);
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .instructors {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .instructors {
    margin-top: 8vw;
  }
}

.instructors__title-wrapper {
  text-align: center;
  color: var(--white);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .instructors__title-wrapper {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__title-wrapper {
    font-size: 4.8vw;
  }
}
.instructors__title-wrapper::after {
  content: "";
  display: block;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .instructors__title-wrapper::after {
    margin: 24px auto 0;
    width: 70px;
    height: 2px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__title-wrapper::after {
    width: 10.6666666667vw;
    height: 0.2666666667vw;
    margin: 4.2666666667vw auto 0;
  }
}

.instructors__filter {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .instructors__filter {
    margin-top: 30px;
    padding: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__filter {
    margin-top: 8vw;
    padding: 0 5.3333333333vw;
  }
}

.instructors__radio-group {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .instructors__radio-group {
    gap: 8px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__radio-group {
    gap: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}

.instructors__radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.instructors__radio-input:not(:checked) + .instructors__radio-label .instructors__radio-icon {
  background-image: url("/images/icon_radio-off.svg");
}
.instructors__radio-input:checked + .instructors__radio-label {
  background-color: var(--white);
}
.instructors__radio-input:checked + .instructors__radio-label .instructors__radio-icon {
  background-image: url("/images/icon_radio-on.svg");
}
.instructors__radio-input:checked + .instructors__radio-label .instructors__radio-text {
  color: var(--black);
}

.instructors__radio-label {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .instructors__radio-label {
    margin-bottom: 5px;
    gap: 6px;
    height: 40px;
    border-radius: 100px;
    padding: 0 12px 0 8px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .instructors__radio-label {
    gap: 1.6vw;
    height: 10.6666666667vw;
    border-radius: 100px;
    padding: 0 3.2vw 0 2.1333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .instructors__radio-label:hover {
    opacity: 0.64;
  }
}

.instructors__radio-icon {
  width: 6.4vw;
  height: 6.4vw;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .instructors__radio-icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__radio-icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}

.instructors__radio-text {
  color: var(--black);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .instructors__radio-text {
    margin-top: -2px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__radio-text {
    margin-top: -0.5333333333vw;
    font-size: 4.2666666667vw;
  }
}

.instructors__list {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .instructors__list {
    gap: 24px;
    margin-top: 30px;
    padding: 0 20px 20px;
    width: calc(100% - 120px);
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .instructors__list {
    gap: 6.4vw;
    margin-top: 8vw;
    padding: 0 5.3333333333vw 13.3333333333vw;
    width: 100%;
  }
}

.instructors__list-item {
  display: block;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  outline: none;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .instructors__list-item {
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    padding-bottom: 10px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .instructors__list-item {
    border-right: 0.5333333333vw solid var(--white);
    border-bottom: 0.5333333333vw solid var(--white);
    padding-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .instructors__list-item:hover {
    opacity: 0.64;
  }
}

.instructors__list-item-wrapper {
  position: relative;
  width: 48vw;
}
@media screen and (min-width: 768px) {
  .instructors__list-item-wrapper {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__list-item-wrapper {
    width: 48vw;
  }
}

.instructors__image {
  position: relative;
  width: 48vw;
  height: 60vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .instructors__image {
    width: 180px;
    height: 225px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__image {
    width: 48vw;
    height: 60vw;
  }
}
.instructors__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.instructors__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructors__name-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .instructors__name-wrapper {
    width: 180px;
    bottom: 10px;
    gap: 6px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__name-wrapper {
    width: 48vw;
    bottom: 2.6666666667vw;
    gap: 1.6vw;
  }
}

.instructors__position {
  color: var(--white);
  font-size: 3.7333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .instructors__position {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__position {
    font-size: 3.7333333333vw;
  }
}

.instructors__name {
  color: var(--white);
  font-weight: 700;
  align-self: stretch;
  position: relative;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .instructors__name {
    font-size: 16px;
    height: 19px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__name {
    font-size: 4.2666666667vw;
    height: 5.0666666667vw;
  }
}

.instructors__content {
  align-items: flex-start;
  align-self: stretch;
  flex: 0 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .instructors__content {
    margin-top: 10px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__content {
    margin-top: 2.6666666667vw;
    gap: 2.6666666667vw;
  }
}

.instructors__category {
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .instructors__category {
    font-size: 16px;
    border: 1px solid var(--white);
    border-radius: 4px;
    padding: 6px 10px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__category {
    font-size: 4.2666666667vw;
    line-height: 4.2666666667vw;
    border: 0.2666666667vw solid var(--white);
    border-radius: 1.0666666667vw;
    padding: 1.6vw 2.6666666667vw;
  }
}

.instructors__description {
  color: var(--white);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .instructors__description {
    font-size: 14px;
    line-height: 21px;
    padding-right: 10px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__description {
    font-size: 3.7333333333vw;
    line-height: 5.6vw;
    padding-right: 2.6666666667vw;
    margin-top: 2.6666666667vw;
  }
}

.instructors__item-container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .instructors__item-container {
    gap: 12px;
    width: 184px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__item-container {
    gap: 3.2vw;
    width: 49.0666666667vw;
  }
}

.instructors__more {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .instructors__more {
    margin-top: 10px;
    padding-right: 10px;
    gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__more {
    margin-top: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    gap: 1.0666666667vw;
  }
}

.instructors__more-text {
  color: var(--white);
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .instructors__more-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__more-text {
    font-size: 4.2666666667vw;
  }
}

.instructors__more-arrow {
  position: relative;
}
@media screen and (min-width: 768px) {
  .instructors__more-arrow {
    height: 11px;
    width: 11px;
  }
}
@media screen and (max-width: 767px) {
  .instructors__more-arrow {
    height: 2.9333333333vw;
    width: 2.9333333333vw;
  }
}

.instructor-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}
.instructor-modal--active {
  display: block;
}

.instructor-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.instructor-modal__content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .instructor-modal__content {
    width: 810px;
    padding: 88px 72px;
    border-radius: 16px;
    max-height: 80vh;
    overflow: hidden;
    top: 10vh;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__content {
    border-radius: 4.2666666667vw;
    width: 85.3333333333vw;
    top: 16vw;
    padding: 10.6666666667vw 5.3333333333vw;
    max-height: calc(100vh - 26.6666666667vw);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.instructor-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media screen and (min-width: 768px) {
  .instructor-modal__close {
    position: absolute;
    top: 30px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__close {
    position: fixed;
    top: 2.6666666667vw;
    right: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .instructor-modal__close img {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__close img {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}

.instructor-modal__body {
  display: flex;
}
@media screen and (min-width: 768px) {
  .instructor-modal__body {
    gap: 56px;
    max-height: calc(80vh - 176px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 10px;
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__body {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}

.instructor-modal__image {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .instructor-modal__image {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__image {
    width: 48vw;
  }
}
.instructor-modal__image-img {
  width: 100%;
  height: auto;
}

.instructor-modal__info {
  color: var(--black);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .instructor-modal__info {
    width: 430px;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__info {
    width: 100%;
    gap: 2.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .instructor-modal__achievements-note {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__achievements-note {
    font-size: 3.7333333333vw;
  }
}

.instructor-modal__position {
  color: var(--black);
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .instructor-modal__position {
    margin-top: 12px;
    font-size: 16px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__position {
    margin-top: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}

.instructor-modal__name {
  color: var(--black);
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .instructor-modal__name {
    font-size: 26px;
    margin-top: 8px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__name {
    font-size: 6.9333333333vw;
    margin-top: 2.1333333333vw;
  }
}

.instructor-modal__title {
  color: var(--black);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .instructor-modal__title {
    font-size: 24px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__title {
    font-size: 6.4vw;
    margin-top: 2.6666666667vw;
  }
}

.instructor-modal__description-text {
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .instructor-modal__description-text {
    font-size: 14px;
    line-height: 21px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__description-text {
    font-size: 3.7333333333vw;
    line-height: 5.6vw;
    margin-top: 2.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .instructor-modal__achievements {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__achievements {
    margin-top: 5.3333333333vw;
  }
}

.instructor-modal__achievements-list {
  list-style-type: disc;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .instructor-modal__achievements-list {
    font-size: 14px;
    line-height: 21px;
    margin-top: 10px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__achievements-list {
    font-size: 3.7333333333vw;
    line-height: 5.6vw;
    margin-top: 2.6666666667vw;
    padding-left: 5.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .instructor-modal__achievements-list li {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__achievements-list li {
    margin-bottom: 2.1333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .instructor-modal__lecture {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__lecture {
    margin-top: 5.3333333333vw;
  }
}

.instructor-modal__lecture-content {
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .instructor-modal__lecture-content {
    font-size: 14px;
    line-height: 21px;
    white-space: pre-line;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__lecture-content {
    font-size: 3.7333333333vw;
    line-height: 5.6vw;
    white-space: pre-line;
    margin-top: 2.6666666667vw;
  }
}

.instructor-modal__category {
  display: flex;
}
@media screen and (min-width: 768px) {
  .instructor-modal__category {
    gap: 6px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__category {
    gap: 1.6vw;
    justify-content: center;
  }
}

.instructor-modal__category-tag {
  display: inline-block;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .instructor-modal__category-tag {
    border: 1px solid var(--black);
    border-radius: 4px;
    padding: 6px 10px;
    line-height: 16px;
    font-size: 16px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .instructor-modal__category-tag {
    border: 0.2666666667vw solid var(--black);
    border-radius: 1.0666666667vw;
    padding: 1.6vw 2.6666666667vw;
    line-height: 4.2666666667vw;
    font-size: 4.2666666667vw;
  }
}

.polygon-3-1-wrapper {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .polygon-3-1 {
    margin-top: 40px;
    width: 410px;
  }
}
@media screen and (max-width: 767px) {
  .polygon-3-1 {
    margin-top: 8vw;
    width: 49.8666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .three-strengths {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .three-strengths {
    margin-top: 13.3333333333vw;
  }
}

.vector-container-2 {
  position: relative;
}
@media screen and (min-width: 768px) {
  .vector-container-2 {
    height: 70px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .vector-container-2 {
    height: 18.6666666667vw;
    width: 100vw;
  }
}

.vector-5 {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 768px) {
  .vector-5 {
    bottom: 0px;
    width: 566px;
    height: 57px;
  }
}
@media screen and (max-width: 767px) {
  .vector-5 {
    height: 8vw;
    top: 10.6666666667vw;
  }
}

.vector-6 {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .vector-6 {
    height: 70px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .vector-6 {
    height: 18.6666666667vw;
    width: 100vw;
  }
}

.overlap-group16-1 {
  background-color: var(--black);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .overlap-group16-1 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .overlap-group16-1 {
    width: 100vw;
  }
}

@media screen and (min-width: 768px) {
  .group-2 {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .group-2 {
    height: 18.6666666667vw;
    width: 100vw;
  }
}

@media screen and (min-width: 768px) {
  .join.mt-60 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .join.mt-60 {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .join.mt-80 {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .join.mt-80 {
    margin-top: 10.6666666667vw;
  }
}

.join__title-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.join__heading {
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .join__heading {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .join__heading {
    font-size: 12.8vw;
  }
}

.join__subheading {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .join__subheading {
    font-size: 26px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .join__subheading {
    font-size: 4.8vw;
    margin-top: 1.6vw;
  }
}
.join__subheading::after {
  content: "";
  display: block;
  background: #000;
}
@media screen and (min-width: 768px) {
  .join__subheading::after {
    width: 70px;
    height: 2px;
    margin: 27px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .join__subheading::after {
    width: 10.6666666667vw;
    height: 0.2666666667vw;
    margin: 4.2666666667vw auto 0;
  }
}

.join__campaign {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__campaign {
    margin-top: 64px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .join__campaign {
    margin-top: 10.6666666667vw;
    gap: 5.3333333333vw;
  }
}

.join__price {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .join__price {
    width: 626px;
  }
}
@media screen and (max-width: 767px) {
  .join__price {
    width: 91.4666666667vw;
  }
}

.join__price-content {
  background-color: var(--black);
}
@media screen and (min-width: 768px) {
  .join__price-content {
    height: 227px;
    width: 626px;
  }
}
@media screen and (max-width: 767px) {
  .join__price-content {
    height: 39.4666666667vw;
    width: 91.4666666667vw;
  }
}

.join__price-text {
  position: absolute;
  text-align: center;
  color: var(--white);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .join__price-text {
    font-size: 24px;
    top: 39px;
    left: 0;
    right: 0;
    margin: 0 auto;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .join__price-text {
    top: 2.9333333333vw;
    height: 14.4vw;
    left: 3.7333333333vw;
    line-height: 7.2vw;
    font-size: 4.8vw;
  }
}

.join__price-line {
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  position: absolute;
}
@media screen and (min-width: 768px) {
  .join__price-line {
    height: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 193px;
    width: 225px;
  }
}
@media screen and (max-width: 767px) {
  .join__price-line {
    height: 2.6666666667vw;
    left: 26.1333333333vw;
    top: 34.1333333333vw;
    width: 37.0666666667vw;
  }
}

.join__price-unit {
  position: absolute;
  text-align: center;
  white-space: nowrap;
  color: var(--white);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .join__price-unit {
    font-size: 40px;
    height: 24px;
    left: 379px;
    top: 172px;
    letter-spacing: 1.92px;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .join__price-unit {
    top: 28.5333333333vw;
    height: 6.4vw;
    left: 55.7333333333vw;
    letter-spacing: 0.512vw;
    line-height: 6.4vw;
    font-size: 6.4vw;
  }
}

.join__price-amount {
  color: var(--white);
  position: absolute;
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-family-gabarito);
}
@media screen and (min-width: 768px) {
  .join__price-amount {
    font-size: 111px;
    font-weight: 700;
    top: 120px;
    left: 301px;
    letter-spacing: 6.4px;
  }
}
@media screen and (max-width: 767px) {
  .join__price-amount {
    font-size: 21.3333333333vw;
    font-weight: 700;
    height: 21.3333333333vw;
    top: 18.6666666667vw;
    left: 41.6vw;
    letter-spacing: 1.7066666667vw;
    line-height: 21.3333333333vw;
  }
}
.join__price-amount img {
  display: block;
}
@media screen and (min-width: 768px) {
  .join__price-amount img {
    height: 85px;
    width: 55px;
  }
}
@media screen and (max-width: 767px) {
  .join__price-amount img {
    width: 10.6666666667vw;
    height: 16.2666666667vw;
  }
}

.join__price-period {
  position: absolute;
  text-align: center;
  color: var(--white);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .join__price-period {
    font-size: 40px;
    top: 172px;
    left: 210px;
    letter-spacing: 1.92px;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .join__price-period {
    height: 6.4vw;
    left: 26.9333333333vw;
    letter-spacing: 0.512vw;
    font-size: 6.4vw;
    top: 28.5333333333vw;
    width: 14.6666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .join__price-bg-img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .join__price-bg-img {
    width: 100%;
  }
}

.join__benefits {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .join__benefits {
    margin-top: 20px;
    width: 520px;
  }
}
@media screen and (max-width: 767px) {
  .join__benefits {
    width: 91.4666666667vw;
  }
}

.join__benefits-item {
  position: relative;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .join__benefits-item {
    text-indent: -16px;
    padding-left: 16px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .join__benefits-item {
    text-indent: -2.6666666667vw;
    padding-left: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.join__benefits-item::before {
  content: "";
  background-image: url("/images/icon_check.svg");
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .join__benefits-item::before {
    background-size: 14px 10px;
    width: 14px;
    height: 10px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .join__benefits-item::before {
    background-size: 2.9333333333vw 2vw;
    width: 2.9333333333vw;
    height: 2vw;
    margin-right: 1.3333333333vw;
  }
}

.join__plans {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .join__plans {
    padding: 0 20px;
    gap: 24px;
    margin-top: 72px;
  }
}
@media screen and (max-width: 767px) {
  .join__plans {
    padding: 0 5.3333333333vw;
    gap: 6.4vw;
    margin-top: 8vw;
  }
}

.join__plans-title {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .join__plans-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .join__plans-title {
    font-size: 5.3333333333vw;
  }
}

.join__plan-options {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__plan-options {
    max-width: 793px;
    margin: 0 auto;
  }
}

.join__plan-options-grid {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__plan-options-grid {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-options-grid {
    gap: 2.6666666667vw;
  }
}

.join__plan-option {
  background-clip: padding-box;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .join__plan-option {
    position: relative;
    border-radius: 10px;
    padding: 32px 0;
    width: calc((100% - 20px) / 3);
    background-origin: border-box;
    background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option {
    border: 0.5333333333vw solid transparent;
    border-radius: 2.6666666667vw;
    padding: 3.4666666667vw;
    width: calc((100% - 2.6666666667vw * 2) / 3);
  }
}
.join__plan-option::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
}
@media screen and (min-width: 768px) {
  .join__plan-option::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option::before {
    margin: -0.5333333333vw;
  }
}

.join__plan-option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.0666666667vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__plan-option-content {
    gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option-content {
    gap: 1.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .join__plan-option--half-yearly .join__plan-option-content, .join__plan-option--yearly .join__plan-option-content {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option--half-yearly .join__plan-option-content, .join__plan-option--yearly .join__plan-option-content {
    gap: 1.6vw;
  }
}

.join__plan-option-name {
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .join__plan-option-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option-name {
    font-size: 3.7333333333vw;
  }
}

.join__plan-option-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .join__plan-option-price-container {
    flex-direction: row;
  }
}

.join__plan-option-price {
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .join__plan-option-price {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option-price {
    font-size: 5.8666666667vw;
  }
}

.join__plan-option-price-amount img {
  display: block;
  width: auto;
}
@media screen and (min-width: 768px) {
  .join__plan-option-price-amount img {
    height: 34px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option-price-amount img {
    height: 5.8666666667vw;
  }
}

.join__plan-option-tax {
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .join__plan-option-tax {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option-tax {
    font-size: 3.7333333333vw;
  }
}

.join__plan-option-discount {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .join__plan-option-discount {
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option-discount {
    height: 5.3333333333vw;
    width: 23.4666666667vw;
  }
}

.join__plan-option-discount-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .join__plan-option-discount-badge {
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .join__plan-option-discount-badge {
    font-size: 3.2vw;
    padding: 0.5333333333vw 1.8666666667vw;
    border-radius: 2.6666666667vw;
  }
}

.join__special-offers {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .join__special-offers {
    margin-top: 24px;
    gap: 8px;
    width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offers {
    margin-top: 6.4vw;
    gap: 2.1333333333vw;
  }
}

.join__special-offer {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .join__special-offer {
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer {
    border-radius: 5.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .join__special-offer--registered .join__special-offer-wrapper {
    padding: 50px 0 0;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer--registered .join__special-offer-wrapper {
    padding: 8vw 0 0;
    gap: 2.6666666667vw;
  }
}
.join__special-offer--registered::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .join__special-offer--registered::before {
    height: 172px;
    width: 322px;
    background-image: url("/images/bg_corner_top.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: 0px;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer--registered::before {
    background-image: url("/images/bg_corner_top-sp.svg");
    background-repeat: no-repeat;
    background-position: top right;
    height: 44.2666666667vw;
    width: 51.4666666667vw;
    right: 5.3333333333vw;
    background-size: 51.4666666667vw 44.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .join__special-offer--contracted .join__special-offer-wrapper {
    padding: 16px 0 50px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer--contracted .join__special-offer-wrapper {
    padding: 4.2666666667vw 0 8vw;
    gap: 2.6666666667vw;
  }
}
.join__special-offer--contracted::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .join__special-offer--contracted::after {
    width: 320px;
    height: 171px;
    background-image: url("/images/bg_corner_bottom.svg");
    background-size: contain;
    background-repeat: no-repeat;
    left: 0px;
    bottom: 0px;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer--contracted::after {
    left: 5.3333333333vw;
    height: 44.5333333333vw;
    width: 51.4666666667vw;
    bottom: 0vw;
    left: 5.3333333333vw;
    background-image: url("/images/bg_corner_bottom-sp.svg");
    background-size: contain;
  }
}

.join__special-offer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.join__special-offer-title {
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__special-offer-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer-title {
    font-size: 3.7333333333vw;
  }
}

.join__special-offer-benefit {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.join__special-offer-benefit-text {
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  white-space: nowrap;
}
.join__special-offer--registered .join__special-offer-benefit-text {
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .join__special-offer--registered .join__special-offer-benefit-text {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer--registered .join__special-offer-benefit-text {
    font-size: 8.5333333333vw;
  }
}
.join__special-offer--contracted .join__special-offer-benefit-text {
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .join__special-offer--contracted .join__special-offer-benefit-text {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer--contracted .join__special-offer-benefit-text {
    font-size: 7.4666666667vw;
  }
}

.join__special-offer-benefit::after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .join__special-offer-benefit::after {
    margin-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer-benefit::after {
    margin-left: 1.3333333333vw;
  }
}
.join__special-offer--registered .join__special-offer-benefit::after {
  background-image: url("/images/vector_20-2.svg");
}
@media screen and (min-width: 768px) {
  .join__special-offer--registered .join__special-offer-benefit::after {
    width: 15px;
    height: 19px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer--registered .join__special-offer-benefit::after {
    width: 4vw;
    height: 5.0666666667vw;
  }
}
.join__special-offer--contracted .join__special-offer-benefit::after {
  background-image: url("/images/vector_20-3.svg");
}
@media screen and (min-width: 768px) {
  .join__special-offer--contracted .join__special-offer-benefit::after {
    width: 14.5px;
    height: 19px;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer--contracted .join__special-offer-benefit::after {
    width: 3.8666666667vw;
    height: 5.0666666667vw;
  }
}

.join__special-offer-note {
  font-weight: 400;
  line-height: 1.75;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .join__special-offer-note {
    font-size: 12px;
    /*padding-left: 13px;*/
    /*width: 284px;*/
      width: 80%;
      margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .join__special-offer-note {
    font-size: 3.2vw;
    padding-left: 3.4666666667vw;
    width: 72.2666666667vw;
  }
}

.join__special-offer-note-mark {
  position: absolute;
  left: 0;
  top: 0;
  line-height: inherit;
}

.join__contact-info {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__contact-info {
    padding-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .join__contact-info {
    padding-top: 3.2vw;
  }
}

.join__contact-info-text {
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .join__contact-info-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .join__contact-info-text {
    font-size: 3.7333333333vw;
  }
}

.join__contact-info-link {
  text-decoration: underline;
  color: inherit;
}
.join__contact-info-link:hover {
  text-decoration: none;
}

.join__how-to-steps {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__how-to-steps {
    margin-top: 40px;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .join__how-to-steps {
    margin-top: 10.6666666667vw;
    gap: 5.3333333333vw;
  }
}

.join__how-to-steps-title {
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .join__how-to-steps-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .join__how-to-steps-title {
    font-size: 4.8vw;
  }
}

.join__how-to-steps-title-highlight {
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .join__how-to-steps-title-highlight {
    font-size: 40px;
    margin: 0 2px;
  }
}
@media screen and (max-width: 767px) {
  .join__how-to-steps-title-highlight {
    font-size: 6.9333333333vw;
    margin: 0 0.5333333333vw;
  }
}

.join__steps-container {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .join__steps-container {
    width: 833px;
  }
}
@media screen and (max-width: 767px) {
  .join__steps-container {
    width: 89.3333333333vw;
  }
}

.join__steps-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .join__steps-list {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .join__steps-list {
    gap: 2.6666666667vw;
    flex-direction: column;
  }
}

.join__step {
  align-self: stretch;
  background-clip: padding-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .join__step {
    border: 2px solid transparent;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .join__step {
    border: 0.5333333333vw solid transparent;
    border-radius: 5.3333333333vw;
    height: 26.6666666667vw;
    padding: 4.2666666667vw 3.7333333333vw;
  }
}
.join__step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -0.5333333333vw;
  border-radius: inherit;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
}

.join__step-content {
  display: flex;
  align-items: center;
  gap: 5.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .join__step-content {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .join__step-content {
    gap: 5.3333333333vw;
  }
}

.join__step-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .join__step-icon {
    width: 24px;
    height: 24px;
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .join__step-icon {
    justify-content: center;
    width: 6.4vw;
    height: 6.4vw;
  }
}

.join__step-icon-label {
  font-family: var(--font-family-gabarito);
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .join__step-icon-label {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .join__step-icon-label {
    font-size: 4.2666666667vw;
  }
}

.join__step-icon-number {
  font-family: var(--font-family-gabarito);
  font-size: 9.6vw;
  display: inline-block;
  font-weight: 700;
  color: #B85C9D;
}
@media screen and (min-width: 768px) {
  .join__step-icon-number {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .join__step-icon-number {
    font-size: 9.6vw;
  }
}

.join__step-text {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .join__step-text {
    gap: 16px;
    width: 245px;
    min-height: 147px;
    background-origin: border-box;
    background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .join__step-text {
    gap: 1.6vw;
    width: 64vw;
  }
}

.join__step-title {
  align-self: stretch;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .join__step-title {
    text-align: center;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .join__step-title {
    font-size: 4.8vw;
  }
}

.join__step-description {
  align-self: stretch;
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .join__step-description {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .join__step-description {
    font-size: 3.7333333333vw;
  }
}

.join__step-separator {
  display: flex;
  justify-content: center;
  align-items: center;
}
.join__step-separator img {
  display: block;
}
@media screen and (min-width: 768px) {
  .join__step-separator img {
    transform: translateY(20px);
    height: 74px;
    width: 17px;
  }
}
@media screen and (max-width: 767px) {
  .join__step-separator img {
    height: 3.4vw;
    width: 17.0906666667vw;
  }
}

.join__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .join__cta {
    margin-top: 40px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .join__cta {
    margin-top: 8vw;
    gap: 2.6666666667vw;
  }
}

.join__cta-text img {
  display: block;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 768px) {
  .marquee {
    margin-top: 100px;
    height: 174px;
  }
}
@media screen and (max-width: 767px) {
  .marquee {
    margin-top: 26.6666666667vw;
    height: 43.7333333333vw;
  }
}

.marquee img {
  display: inline-block;
  animation: marquee 60s linear infinite;
}
@media screen and (min-width: 768px) {
  .marquee img {
    height: 174px;
    padding-right: 100px;
  }
}
@media screen and (max-width: 767px) {
  .marquee img {
    height: 43.7333333333vw;
    padding-right: 26.6666666667vw;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.contents {
  z-index: 8;
}
@media screen and (min-width: 768px) {
  .contents {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .contents {
    margin-top: 26.6666666667vw;
  }
}

.contents__group-image {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contents__group-image {
    height: 18.6666666667vw;
  }
}

.contents__title-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.contents__title-heading {
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .contents__title-heading {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contents__title-heading {
    font-size: 12.8vw;
  }
}

.contents__title-subheading {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .contents__title-subheading {
    font-size: 26px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contents__title-subheading {
    font-size: 4.8vw;
    margin-top: 1.6vw;
  }
}
.contents__title-subheading::after {
  content: "";
  display: block;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .contents__title-subheading::after {
    width: 70px;
    height: 2px;
    margin: 27px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .contents__title-subheading::after {
    width: 10.6666666667vw;
    height: 0.2666666667vw;
    margin: 4.2666666667vw auto 0;
  }
}

.contents__vector-container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents__vector-container {
    width: 100%;
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .contents__vector-container {
    width: 100vw;
    height: 18.6666666667vw;
  }
}
.contents__vector-container .contents__vector {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .contents__vector-container .contents__vector {
    width: 100%;
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .contents__vector-container .contents__vector {
    width: 100vw;
  }
}
.contents__vector-container .contents__vector.contents__vector--first {
  left: auto;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .contents__vector-container .contents__vector.contents__vector--first {
    width: 566px;
    height: 57px;
  }
}
@media screen and (max-width: 767px) {
  .contents__vector-container .contents__vector.contents__vector--first {
    width: 100vw;
    height: 13.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .contents__overlap {
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .contents__overlap {
    margin-top: 4.2666666667vw;
  }
}

.contents__overlap-inner {
  background-color: var(--black);
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents__overlap-inner {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .contents__overlap-inner {
    padding-bottom: 13.3333333333vw;
  }
}

.contents__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents__title {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contents__title {
    gap: 4.2666666667vw;
  }
}

.contents__frame {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.5333333333vw;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contents__frame {
    gap: 2px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contents__frame {
    gap: 0.5333333333vw;
  }
}

.contents__frame-inner {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 17.6vw;
}
@media screen and (min-width: 768px) {
  .contents__frame-inner {
    width: 66px;
  }
}
@media screen and (max-width: 767px) {
  .contents__frame-inner {
    width: 17.6vw;
  }
}

.contents__heading {
  font-family: var(--font-family-gabarito);
  font-style: normal;
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  align-self: stretch;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  line-height: 1;
  position: relative;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .contents__heading {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contents__heading {
    font-size: 4.2666666667vw;
  }
}

.contents__heading--large {
  font-family: var(--font-family-gabarito);
  font-style: normal;
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  line-height: 1;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .contents__heading--large {
    font-size: 64px;
  }
}
@media screen and (max-width: 767px) {
  .contents__heading--large {
    font-size: 17.0666666667vw;
  }
}

.contents__subheading {
  color: var(--white);
  font-family: var(--font-family-noto_sans_jp);
  font-style: normal;
  font-weight: 700;
  align-self: stretch;
  line-height: 1;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents__subheading {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .contents__subheading {
    font-size: 6.4vw;
  }
}
.contents__subheading::after {
  content: "";
  display: block;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .contents__subheading::after {
    margin: 18px auto 0;
    width: 45px;
    height: 1px;
  }
}
@media screen and (max-width: 767px) {
  .contents__subheading::after {
    margin: 4.2666666667vw auto 0;
    width: 10.6666666667vw;
    height: 0.2666666667vw;
  }
}

.contents__image {
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents__image {
    display: flex;
    flex-direction: row;
    gap: 48px;
    justify-content: center;
  }
}

.contents__image-frame {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4.2666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents__image-frame {
    width: 417px;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-frame {
    gap: 4.2666666667vw;
  }
}

.contents__image-title {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 47.4666666667vw;
}
@media screen and (min-width: 768px) {
  .contents__image-title {
    height: 90px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-title {
    width: 47.4666666667vw;
    gap: 2.6666666667vw;
  }
}

.contents__image-heading {
  align-self: stretch;
  text-align: center;
  color: var(--white);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contents__image-heading {
    margin-top: 40px;
    font-size: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-heading {
    margin-top: 10.6666666667vw;
    font-size: 5.3333333333vw;
  }
}

.contents__image-subheading {
  color: var(--white);
  align-self: stretch;
  font-size: 4.2666666667vw;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents__image-subheading {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-subheading {
    font-size: 4.2666666667vw;
  }
}

.contents__image-content {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contents__image-content {
    gap: 16px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-content {
    gap: 3.2vw;
    padding: 0 5.3333333333vw;
  }
}

.contents__image-group {
  position: relative;
  width: 89.6586666667vw;
}
@media screen and (min-width: 768px) {
  .contents__image-group {
    width: 417px;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-group {
    width: 89.6586666667vw;
    height: 50.1333333333vw;
  }
}

.contents__image-overlap img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contents__image-text {
    height: 92px;
    margin-right: -4px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-text {
    height: 24.5333333333vw;
    margin-right: -1.0666666667vw;
    position: relative;
    width: 90.192vw;
  }
}

.contents__image-description {
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .contents__image-description {
    line-height: 24px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-description {
    line-height: 6.4vw;
    font-size: 4.2666666667vw;
  }
}

.contents__image-note {
  color: var(--white);
  font-family: var(--font-family-noto_sans_jp);
  font-size: var(--font-size-xs);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contents__image-note {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-note {
    margin-top: 2.6666666667vw;
    height: 4.8vw;
    width: 89.0666666667vw;
  }
}

.contents__image-caption {
  color: var(--white);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .contents__image-caption {
    font-size: 16px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contents__image-caption {
    font-size: 4.2666666667vw;
    margin-top: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .contents__polygon {
    margin-top: 40px;
    width: 527px;
  }
}
@media screen and (max-width: 767px) {
  .contents__polygon {
    height: 9.6vw;
    margin-top: 10.6666666667vw;
    width: 49.8666666667vw;
    margin-left: -0.5333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .contents__stream-sample {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contents__stream-sample {
    margin-top: 10.6666666667vw;
    background-image: url(/images/bg_logo.svg);
    background-repeat: no-repeat;
    background-size: 93.0666666667vw 86.1333333333vw;
    background-position: 21.3333333333vw 5.3333333333vw;
  }
}

.contents__view-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .contents__view-section {
    margin-top: 80px;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contents__view-section {
    margin-top: 21.3333333333vw;
    gap: 10.6666666667vw;
  }
}

.contents__view-title {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents__view-title {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .contents__view-title {
    gap: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .contents__view-image-container {
    display: flex;
    flex-direction: row;
    gap: 48px;
    justify-content: center;
    max-width: 874px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .contents__view-image-container {
    display: flex;
    flex-direction: column;
    gap: 12.8vw;
  }
}

.contents__view-image {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contents__view-image {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .contents__view-image {
    padding: 0 5.3333333333vw;
  }
}

.contents__view-image-frame {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contents__view-image-frame {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .contents__view-image-frame {
    gap: 2.1333333333vw;
  }
}

.contents__view-image-title {
  color: var(--white);
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents__view-image-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .contents__view-image-title {
    font-size: 4.8vw;
  }
}

@media screen and (min-width: 768px) {
  .contents__view-image-group {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contents__view-image-group {
    margin-top: 4.2666666667vw;
  }
}
.contents__view-image-group img {
  width: 100%;
}

.stream-sample__filter {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .stream-sample__filter {
    margin-top: 48px;
    padding: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__filter {
    margin-top: 8vw;
    padding: 0 5.3333333333vw;
  }
}

.stream-sample__radio-group {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .stream-sample__radio-group {
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__radio-group {
    gap: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}

.stream-sample__radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.stream-sample__radio-input:not(:checked) + .stream-sample__radio-label .stream-sample__radio-icon {
  background-image: url("/images/icon_radio-off.svg");
}
.stream-sample__radio-input:checked + .stream-sample__radio-label {
  background-color: var(--white);
}
.stream-sample__radio-input:checked + .stream-sample__radio-label .stream-sample__radio-icon {
  background-image: url("/images/icon_radio-on.svg");
}
.stream-sample__radio-input:checked + .stream-sample__radio-label .stream-sample__radio-text {
  color: var(--black);
}

.stream-sample__radio-label {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .stream-sample__radio-label {
    margin-bottom: 5px;
    gap: 6px;
    height: 40px;
    padding: 0 12px 0 8px;
    border-radius: 100px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__radio-label {
    margin-bottom: 1.3333333333vw;
    gap: 1.6vw;
    height: 10.6666666667vw;
    padding: 0 3.2vw 0 2.1333333333vw;
    border-radius: 26.6666666667vw;
  }
}
.stream-sample__radio-label:hover {
  opacity: 0.64;
}

.stream-sample__radio-icon {
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .stream-sample__radio-icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__radio-icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}

.stream-sample__radio-text {
  color: var(--black);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .stream-sample__radio-text {
    font-size: 16px;
    margin-top: -2px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__radio-text {
    font-size: 4.2666666667vw;
    margin-top: -0.5333333333vw;
  }
}

.stream-sample__list {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .stream-sample__list {
    gap: 24px;
    margin-top: 30px;
    width: calc(100% - 120px);
    margin: 48px auto 0;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__list {
    width: 100%;
    gap: 6.4vw;
    margin-top: 8vw;
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
}

.stream-sample__list-item {
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  outline: none;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .stream-sample__list-item {
    padding-bottom: 10px;
    transition: opacity 0.3s ease;
  }
  .stream-sample__list-item:hover {
    opacity: 0.64;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__list-item {
    padding-bottom: 2.6666666667vw;
  }
}

.stream-sample__list-item-wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .stream-sample__list-item-wrapper {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__list-item-wrapper {
    width: 53.3333333333vw;
  }
}

.stream-sample__image {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .stream-sample__image {
    width: 180px;
    height: 225px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__image {
    width: 48vw;
    height: 60vw;
  }
}
.stream-sample__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.81%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .stream-sample__image--stream {
    width: 200px;
    height: 112px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__image--stream {
    width: 53.3333333333vw;
    height: 29.8666666667vw;
  }
}

.stream-sample__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stream-sample__content {
  align-items: flex-start;
  align-self: stretch;
  flex: 0 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .stream-sample__content {
    margin-top: 12px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__content {
    margin-top: 2.6666666667vw;
    gap: 2.6666666667vw;
  }
}

.stream-sample__category {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .stream-sample__category {
    border: 1px solid var(--white);
    border-radius: 4px;
    padding: 6px 10px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__category {
    border: 0.2666666667vw solid var(--white);
    border-radius: 1.0666666667vw;
    padding: 1.6vw 2.6666666667vw;
    color: var(--white);
    font-size: 4.2666666667vw;
    font-weight: 700;
    line-height: 4.2666666667vw;
  }
}

.stream-sample__title {
  color: var(--white);
  font-weight: 700;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .stream-sample__title {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__title {
    font-size: 4.2666666667vw;
    margin-top: 2.6666666667vw;
  }
}

.stream-sample__description {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .stream-sample__description {
    padding-right: 10px;
    margin-top: 10px;
    color: var(--white);
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__description {
    padding-right: 2.6666666667vw;
    margin-top: 2.6666666667vw;
    color: var(--white);
    font-size: 3.7333333333vw;
    line-height: 5.6vw;
  }
}

.stream-sample-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}
.stream-sample-modal--active {
  display: block;
}

.stream-sample-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stream-sample-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 853px;
}

.stream-sample-modal__close {
  position: absolute;
  top: -10.6666666667vw;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media screen and (min-width: 768px) {
  .stream-sample-modal__close {
    top: -40px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample-modal__close {
    top: -10.6666666667vw;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .stream-sample-modal__close img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample-modal__close img {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}

#youtube-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

#youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.stream-sample__image--pdf::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("/images/icon_pdf.svg") no-repeat center center/contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .stream-sample__image--pdf::before {
    width: 45px;
    height: 56px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__image--pdf::before {
    width: 12vw;
    height: 14.9333333333vw;
  }
}

.stream-sample__image--video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("/images/icon_play.svg") no-repeat center center/contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .stream-sample__image--video::before {
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .stream-sample__image--video::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}

.information {
  margin-top: 8vw;
  position: relative;
  z-index: 7;
}
@media screen and (min-width: 768px) {
  .information {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .information {
    margin-top: 8vw;
  }
}

.information__title-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.information__title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.information__title-heading {
  display: inline-block;
  margin: 0 auto;
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .information__title-heading {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .information__title-heading {
    font-size: 12.8vw;
  }
}

.information__title-subheading {
  display: block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .information__title-subheading {
    font-size: 26px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .information__title-subheading {
    font-size: 4.8vw;
    margin-top: 1.6vw;
  }
}
.information__title-subheading::after {
  content: "";
  display: block;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .information__title-subheading::after {
    width: 70px;
    height: 2px;
    margin: 27px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .information__title-subheading::after {
    width: 10.6666666667vw;
    height: 0.2666666667vw;
    margin: 4.2666666667vw auto 0;
  }
}

.information__list {
  display: flex;
  position: relative;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .information__list {
    margin-top: 60px;
    gap: 24px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    width: calc(100% - 120px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .information__list {
    margin-top: 8vw;
    gap: 6.4vw;
    padding-bottom: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}

.information__item {
  flex-shrink: 0;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  width: 74.6666666667vw;
}
@media screen and (min-width: 768px) {
  .information__item {
    width: 280px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .information__item {
    width: 74.6666666667vw;
  }
}
.information__item a {
  display: block;
  color: #000;
}
@media screen and (min-width: 768px) {
  .information__item:hover {
    opacity: 0.64;
  }
}

.information__item-image img {
  width: 100%;
}

.information__item-content {
  margin-right: -1px;
  position: relative;
  width: 281px;
}
@media screen and (min-width: 768px) {
  .information__item-content {
    width: 281px;
  }
}
@media screen and (max-width: 767px) {
  .information__item-content {
    width: 74.9333333333vw;
  }
}

.information__item-text-wrapper {
  position: relative;
}

.information__item-text {
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: break-word;
  white-space: normal;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .information__item-text {
    margin-top: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .information__item-text {
    margin-top: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}

.information__item-link-icon {
  display: inline;
}
@media screen and (min-width: 768px) {
  .information__item-link-icon {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .information__item-link-icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .voice-section {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section {
    margin-top: 16vw;
    padding: 0 5.3333333333vw;
  }
}

.voice-section__title-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.voice-section__title-heading {
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .voice-section__title-heading {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__title-heading {
    font-size: 12.8vw;
  }
}

.voice-section__title-subheading {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .voice-section__title-subheading {
    font-size: 26px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__title-subheading {
    font-size: 4.8vw;
    margin-top: 1.6vw;
  }
}
.voice-section__title-subheading::after {
  content: "";
  display: block;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .voice-section__title-subheading::after {
    width: 70px;
    height: 2px;
    margin: 27px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__title-subheading::after {
    width: 10.6666666667vw;
    height: 0.2666666667vw;
    margin: 4.2666666667vw auto 0;
  }
}

.voice-section__list {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voice-section__list {
    margin-top: 60px;
    gap: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__list {
    margin-top: 8vw;
    gap: 6.4vw;
  }
}

.voice-section__item {
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .voice-section__item {
    width: 460px;
  }
}

.voice-section__comment {
  align-items: center;
  background-color: var(--white);
  border: none;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voice-section__comment {
    padding: 20px 26px;
    gap: 4px;
    border-radius: 30px 30px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__comment {
    padding: 5.3333333333vw 6.9333333333vw;
    gap: 1.0666666667vw;
    border-radius: 8vw 8vw 0 8vw;
  }
}
.voice-section__comment::before {
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  border-radius: 8vw 8vw 0 8vw;
  content: "";
  inset: 0;
  mask-composite: exclude;
  padding: 0.5333333333vw;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .voice-section__comment::before {
    border-radius: 30px 30px 0 30px;
    padding: 2px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__comment::before {
    border-radius: 8vw 8vw 0 8vw;
    padding: 0.5333333333vw;
  }
}

.voice-section__comment-quote {
  font-weight: 700;
  position: relative;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .voice-section__comment-quote {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__comment-quote {
    font-size: 4.2666666667vw;
    line-height: 6.4vw;
  }
}

.voice-section__comment-text {
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voice-section__comment-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__comment-text {
    font-size: 3.7333333333vw;
  }
}

.voice-section__user {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .voice-section__user {
    margin-top: 8px;
    gap: 13px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__user {
    margin-top: 2.1333333333vw;
    gap: 3.4666666667vw;
  }
}

.voice-section__user-details {
  display: flex;
  flex-direction: column;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .voice-section__user-details {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__user-details {
    gap: 2.1333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .voice-section__user-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__user-name {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .voice-section__user-description {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__user-description {
    font-size: 3.7333333333vw;
  }
}

.voice-section__user-avatar {
  object-fit: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voice-section__user-avatar {
    height: 80px;
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .voice-section__user-avatar {
    height: 21.3333333333vw;
    width: 21.3333333333vw;
  }
}

.voice-section__images {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.voice-section__image {
  height: 120px;
  object-fit: cover;
  position: relative;
  width: 195px;
}

.qa-section {
  margin-top: 80px;
  padding: 0 5.3333333333vw;
}

.qa-section__title-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.qa-section__heading {
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  text-align: center;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .qa-section__heading {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__heading {
    font-size: 12.8vw;
  }
}
.qa-section__heading .and {
  letter-spacing: 0.26px;
  line-height: 36px;
  font-size: 9.6vw;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .qa-section__heading .and {
    font-size: 60px;
  }
}

.qa-section__subheading {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .qa-section__subheading {
    font-size: 26px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__subheading {
    font-size: 4.8vw;
    margin-top: 1.6vw;
  }
}
.qa-section__subheading::after {
  content: "";
  display: block;
  background: #000;
}
@media screen and (min-width: 768px) {
  .qa-section__subheading::after {
    width: 70px;
    height: 2px;
    margin: 27px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__subheading::after {
    width: 10.6666666667vw;
    height: 0.2666666667vw;
    margin: 4.2666666667vw auto 0;
  }
}

.qa-section__list {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa-section__list {
    border-top: 1px solid #ccc;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__list {
    border-top: 0.2666666667vw solid #ccc;
    margin-top: 8.5333333333vw;
  }
}

.qa-section__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .qa-section__item {
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__item {
    border-bottom: 0.2666666667vw solid #ccc;
  }
}

.qa-section__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .qa-section__question {
    padding: 24px 0;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__question {
    padding: 4.2666666667vw 0;
  }
}
.qa-section__question::-webkit-details-marker {
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-section__question:hover {
    opacity: 0.64;
  }
}

.qa-section__question-content {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .qa-section__question-content {
    gap: 24px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__question-content {
    gap: 2.1333333333vw;
    padding-right: 2.6666666667vw;
  }
}

.qa-section__question-label {
  font-family: var(--font-family-gabarito);
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .qa-section__question-label {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__question-label {
    font-size: 10.6666666667vw;
  }
}

.qa-section__question-text {
  font-size: 4.2666666667vw;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .qa-section__question-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__question-text {
    font-size: 4.2666666667vw;
  }
}

.qa-section__toggle-icon {
  width: 4.8vw;
  height: 4.8vw;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .qa-section__toggle-icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__toggle-icon {
    width: 4.8vw;
    height: 4.8vw;
  }
}
.qa-section__toggle-icon::before, .qa-section__toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #000;
  transition: transform 0.2s ease-out;
}
.qa-section__toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}
.qa-section__toggle-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}

.qa-section__details[open] > summary .qa-section__toggle-icon {
  transform: rotate(180deg);
}
.qa-section__details[open] > summary .qa-section__toggle-icon::after {
  transform: rotate(90deg);
}

.qa-section__answer {
  position: relative;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-out;
  box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .qa-section__answer {
    padding: 0 0 16px 50px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__answer {
    padding: 0 0 4.2666666667vw 9.6vw;
  }
}

.qa-section__answer-label {
  font-family: var(--font-family-gabarito);
  font-size: 10.6666666667vw;
  font-weight: 600;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(95, 165, 225) 0%, rgb(184, 92, 157) 100%);
  background-clip: text;
  left: 0;
  position: absolute;
  text-fill-color: transparent;
  top: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .qa-section__answer-label {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__answer-label {
    font-size: 10.6666666667vw;
  }
}

.qa-section__answer-text {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .qa-section__answer-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .qa-section__answer-text {
    font-size: 3.7333333333vw;
  }
}
.qa-section__answer-text ol {
  list-style-type: decimal;
  margin-left: 1.5em;
  padding-left: 0;
}
.qa-section__answer-text ol li {
  margin-bottom: 0.5em;
}
.qa-section__answer-text ul {
  list-style-type: disc;
  margin-left: 1.5em;
  padding-left: 0;
}
.qa-section__answer-text ul li {
  margin-bottom: 0.5em;
}
.qa-section__answer-text a {
  color: #000;
  text-decoration: underline;
}
.qa-section__answer-text a:hover {
  text-decoration: none;
}

.contact-form {
  z-index: 3;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 109px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 21.3333333333vw;
  }
}

.contact-form__bg-container {
  background-color: var(--gallery);
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-image: url(/images/logo_form.svg);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .contact-form__bg-container {
    padding: 100px 0;
    background-size: 100% 100%;
    background-position: top 154px right 0px;
    background-size: 548px 606px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__bg-container {
    padding: 16vw 5.3333333333vw 16vw;
    background-position: top 41.0666666667vw right;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__content-wrapper {
    max-width: 794px;
    margin: 0 auto;
  }
}

.contact-form__header {
  width: 100%;
  text-align: center;
}

.contact-form__title-container {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-form__title-container {
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__title-container {
    padding-bottom: 2.6666666667vw;
  }
}
.contact-form__title-container::after {
  content: "";
  display: block;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .contact-form__title-container::after {
    height: 1px;
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__title-container::after {
    height: 0.2666666667vw;
    width: 10.6666666667vw;
  }
}

.contact-form__title {
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .contact-form__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__title {
    font-size: 6.4vw;
  }
}

.contact-form__description {
  font-size: 4.2666666667vw;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-form__description {
    font-size: 16px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__description {
    font-size: 4.2666666667vw;
    margin-top: 6.4vw;
  }
}

.contact-form__form {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-form__form {
    margin-top: 40px;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__form {
    margin-top: 8.5333333333vw;
    gap: 4.2666666667vw;
  }
}

.contact-form__field-group {
  display: flex;
  flex-direction: column;
  gap: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .contact-form__field-group {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__field-group {
    gap: 2.1333333333vw;
  }
}

.contact-form__label {
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .contact-form__label {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__label {
    font-size: 4vw;
  }
}

.contact-form__required-mark {
  font-size: 3.2vw;
  color: var(--required-red);
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .contact-form__required-mark {
    font-size: 12px;
    margin-left: 4px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__required-mark {
    font-size: 3.2vw;
    margin-left: 1.0666666667vw;
  }
}

.contact-form__input,
.contact-form__textarea {
  font-family: var(--font-family-noto_sans_jp);
  background-color: var(--white);
  border: 1px solid var(--mine-shaft);
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .contact-form__input,
  .contact-form__textarea {
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__input,
  .contact-form__textarea {
    border-radius: 1.0666666667vw;
    padding: 2.6666666667vw 3.2vw;
    font-size: 4vw;
  }
}

.contact-form__input {
  height: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .contact-form__input {
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__input {
    height: 11.7333333333vw;
  }
}

.contact-form__textarea {
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .contact-form__textarea {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__textarea {
    height: 26.6666666667vw;
  }
}

.contact-form__privacy-agreement {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy-agreement {
    padding-top: 42px;
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-agreement {
    padding-top: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}

.contact-form__checkbox {
  appearance: none;
  background-color: var(--white);
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact-form__checkbox {
    height: 20px;
    width: 20px;
    border: 2px solid var(--mine-shaft);
    border-radius: 2px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__checkbox {
    height: 5.3333333333vw;
    width: 5.3333333333vw;
    border: 0.5333333333vw solid var(--mine-shaft);
    border-radius: 0.5333333333vw;
  }
}
.contact-form__checkbox:checked {
  background-color: var(--mine-shaft);
}
.contact-form__checkbox:checked::after {
  content: "✓";
  color: var(--white);
  font-size: 3.7333333333vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .contact-form__checkbox:checked::after {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__checkbox:checked::after {
    font-size: 3.7333333333vw;
  }
}

.contact-form__privacy-label {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-label {
    font-size: 4vw;
  }
}
.contact-form__privacy-label a {
  color: var(--black);
  text-decoration: underline;
}
.contact-form__privacy-label a:hover {
  text-decoration: none;
}
.contact-form__privacy-label a img {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy-label a img {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__privacy-label a img {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    margin-left: 1.0666666667vw;
    margin-right: 1.0666666667vw;
  }
}

.contact-form__submit-container {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact-form__submit-container {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__submit-container {
    margin-top: 8.5333333333vw;
  }
}

.contact-form__submit-button {
  background-color: var(--black);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .contact-form__submit-button {
    font-size: 15px;
    border-radius: 30px;
    padding: 13px 80px;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .contact-form__submit-button {
    border-radius: 8vw;
    padding: 4.8vw 10.6666666667vw;
    font-size: 4vw;
    width: 100%;
    letter-spacing: 0.4vw;
  }
}
.contact-form__submit-button:hover {
  opacity: 0.64;
}

.how-to-use {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .how-to-use {
    margin-top: 100px;
    gap: 30px;
    padding: 0 100px 140px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use {
    margin-top: 16vw;
    gap: 8vw;
    padding: 0 5.3333333333vw 26.6666666667vw;
  }
}

.how-to-use__content {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .how-to-use__content {
    gap: 30px;
    padding-bottom: 9px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__content {
    max-width: 89.3333333333vw;
    gap: 6.4vw;
    padding-bottom: 2.4vw;
  }
}

.how-to-use__header {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .how-to-use__header {
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__header {
    padding-bottom: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.how-to-use__header::after {
  content: "";
  display: block;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .how-to-use__header::after {
    height: 1px;
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__header::after {
    height: 0.2666666667vw;
    width: 10.6666666667vw;
  }
}

.how-to-use__title {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-to-use__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__title {
    font-size: 6.4vw;
  }
}

.how-to-use__topic {
  display: flex;
  flex-direction: column;
  gap: 2.1333333333vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .how-to-use__topic {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__topic {
    gap: 2.1333333333vw;
  }
}

.how-to-use__topic-title {
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .how-to-use__topic-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__topic-title {
    font-size: 4.2666666667vw;
  }
}

.how-to-use__topic-description {
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .how-to-use__topic-description {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__topic-description {
    font-size: 3.7333333333vw;
  }
}

.how-to-use__link {
  color: #000;
  text-decoration: underline;
}
.how-to-use__link:hover {
  text-decoration: none;
}
.how-to-use__link.how-to-use__link--underline {
  text-decoration: underline;
}
.how-to-use__link.how-to-use__link--blank img {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .how-to-use__link.how-to-use__link--blank img {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__link.how-to-use__link--blank img {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    margin-left: 1.0666666667vw;
    margin-right: 1.0666666667vw;
  }
}

.how-to-use__note {
  font-size: 3.7333333333vw;
  font-weight: 400;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .how-to-use__note {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__note {
    font-size: 3.7333333333vw;
  }
}

.how-to-use__app-links {
  align-self: stretch;
  background-color: var(--gallery);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .how-to-use__app-links {
    padding: 19px 20px;
    border-radius: 20px;
    width: 460px;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__app-links {
    padding: 5.0666666667vw 5.3333333333vw;
    border-radius: 5.3333333333vw;
  }
}

.how-to-use__app-info {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4.2666666667vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .how-to-use__app-info {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__app-info {
    gap: 4.2666666667vw;
  }
}

.how-to-use__app-details {
  align-items: center;
  display: flex;
  gap: 3.2vw;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .how-to-use__app-details {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__app-details {
    gap: 3.2vw;
  }
}

.how-to-use__app-icon {
  height: 14.9333333333vw;
  width: 14.9333333333vw;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .how-to-use__app-icon {
    height: 56px;
    width: 56px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__app-icon {
    height: 14.9333333333vw;
    width: 14.9333333333vw;
  }
}

.how-to-use__app-name-container {
  display: flex;
  flex-direction: column;
}

.how-to-use__app-type {
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .how-to-use__app-type {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__app-type {
    font-size: 3.2vw;
  }
}

.how-to-use__app-name {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .how-to-use__app-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__app-name {
    font-size: 4.2666666667vw;
  }
}

.how-to-use__app-store-buttons {
  display: flex;
  gap: 3.2vw;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .how-to-use__app-store-buttons {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__app-store-buttons {
    gap: 3.2vw;
  }
}

@media screen and (min-width: 768px) {
  .how-to-use__app-store-button {
    transition: opacity 0.3s ease;
  }
}
.how-to-use__app-store-button img {
  display: block;
  height: 10.6666666667vw;
  width: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .how-to-use__app-store-button img {
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .how-to-use__app-store-button img {
    height: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .how-to-use__app-store-button:hover {
    opacity: 0.64;
  }
}

.btn_conversion {
  display: block;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(90deg, #238AE2 0%, #6A5BC0 48%, #B22689 100%);
  box-shadow: 0px 12px 24px 0px rgba(108, 108, 247, 0.36);
  font-weight: bold;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .btn_conversion {
    width: 360px;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 0;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .btn_conversion {
    width: 89.3333333333vw;
    padding: 4.8vw 6.4vw;
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .btn_conversion:hover {
    opacity: 0.64;
  }
}

.floating-buttons {
  position: fixed;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 1000;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: rgba(255, 239, 253, 0.9);
}
@media screen and (min-width: 768px) {
  .floating-buttons {
    right: 0px;
    bottom: 20px;
    padding: 8px 22px;
    border-radius: 10px 0px 0px 10px;
    transform: translateX(100%) translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .floating-buttons {
    left: 0vw;
    bottom: 0vw;
    width: 100%;
    padding: 2.1333333333vw 0;
    transform: translateX(0) translateY(100%);
  }
}
.floating-buttons--visible {
  transform: translateX(0) translateY(0);
}
.floating-buttons__cta {
  display: block;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(90deg, #238AE2 0%, #6A5BC0 48%, #B22689 100%);
  font-weight: bold;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .floating-buttons__cta {
    width: 239px;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 0;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .floating-buttons__cta {
    width: 72.2666666667vw;
    padding: 3.7333333333vw 6.4vw;
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .floating-buttons__cta:hover {
    opacity: 0.64;
  }
}
.floating-buttons__top {
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .floating-buttons__top {
    width: 48px;
    height: 48px;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .floating-buttons__top {
    width: 12.8vw;
    height: 12.8vw;
  }
}
.floating-buttons__top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .floating-buttons__top:hover {
    opacity: 0.64;
  }
}

.form__body {
  background-color: #DDE2ED;
}

@media screen and (min-width: 768px) {
  .main-container {
    background-color: #DDE2ED;
  }
}

@media screen and (min-width: 768px) {
  main {
    max-width: 1080px;
    margin: 0 auto;
    background-color: #fff;
  }
}

.form__main {
  background-color: #eee;
  background-image: url(/images/bg_contact.svg);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .form__main {
    background-size: 548px 606px;
    background-position: top 140px right 0;
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .form__main {
    background-position: top 53.3333333333vw right 0;
    padding-top: 15.2vw;
  }
}

.container {
  padding: 16vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 100px 20px;
    max-width: 794px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 16vw 5.3333333333vw;
  }
}

.container__title {
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .container__title {
    font-size: 24px;
    margin-top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .container__title {
    font-size: 6.4vw;
    margin-top: 1.6vw;
  }
}
.container__title::after {
  content: "";
  display: block;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .container__title::after {
    width: 40px;
    height: 1px;
    margin: 16px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .container__title::after {
    width: 10.6666666667vw;
    height: 0.2666666667vw;
    margin: 4.2666666667vw auto 0;
  }
}

.container__text {
  margin-top: 6.4vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .container__text {
    margin-top: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .container__text {
    margin-top: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .container__text--thanks {
    margin-top: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .container__text--thanks {
    margin-top: 10.6666666667vw;
    text-align: left;
  }
}
.container__text--thanks strong {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .formTable {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .formTable {
    margin-top: 6.4vw;
  }
}

.text-j {
  font-size: 4.2666666667vw;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .text-j {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .text-j {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}

.error_messe {
  color: #C60E0E;
  font-size: 4.2666666667vw;
  margin-top: 4.2666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .error_messe {
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
  }
}

.submit-button {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: none;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  width: 100%;
  letter-spacing: 1.5px;
  line-height: normal;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .submit-button {
    font-size: 15px;
    padding: 14.3px 16px 14.7px 16px;
    border-radius: 32px;
    width: 232px;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .submit-button {
    margin-top: 8.5333333333vw;
    font-size: 4.2666666667vw;
    padding: 4.8vw 4.2666666667vw;
    border-radius: 8.5333333333vw;
  }
}
.submit-button.back {
  display: block;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .submit-button.back {
    margin: 20px auto 0;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .submit-button.back {
    width: 76vw;
    margin: 10.6666666667vw auto 0;
  }
}
.submit-button:hover {
  opacity: 0.64;
}

.formTable {
  display: block;
}
.formTable tbody {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .formTable tbody {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .formTable tbody {
    gap: 3.2vw;
  }
}
.formTable tr {
  display: flex;
  flex-direction: column;
}
.formTable tr th {
  display: block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .formTable tr th {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .formTable tr th {
    font-size: 4vw;
  }
}
.formTable tr td {
  display: block;
  text-align: left;
  border: 1px solid #000;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .formTable tr td {
    padding: 16px 16px;
    margin-top: 16px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 767px) {
  .formTable tr td {
    padding: 4.2666666667vw 4.2666666667vw;
    margin-top: 4.2666666667vw;
    border-radius: 1.0666666667vw;
  }
}

span.atention {
    font-size: 1.15rem;
    font-weight: 600;
}

a.link_txt {
    text-decoration: underline;
    color: #29ABE2;
}
a.link_txt:hover {
    text-decoration: none;
}