.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid black;
  font-weight: 600;
  padding: 10px 40px;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.3s;
  color: black;
  text-decoration: none !important;
}
.btn.float:hover {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled:hover {
  background-color: white;
  color: black;
  box-shadow: none;
}
.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: white;
}
.btn.shadow {
  box-shadow: none;
}
.btn.shadow:hover {
  transform: translate(-2.5px, -2.5px);
  box-shadow: 5px 5px 0 0 black;
}
.btn.solid {
  box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}
.btn.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn.slide-bg:hover {
  color: white;
}
.btn.slide-bg:hover::before {
  transform: none;
}
.btn.cover-3d {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 300px;
}
.btn.cover-3d span {
  display: inline-block;
  transform: translateZ(20px);
}
.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(90deg);
  transition: all 0.3s;
  transform-origin: top center;
  opacity: 0;
}
.btn.cover-3d:hover {
  color: white;
}
.btn.cover-3d:hover::before {
  transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}
.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  box-sizing: border-box;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
  color: black;
}
.btn-cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}
.btn-cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}
.btn-cubic:hover .hovering {
  transform: rotateX(0);
}
.btn-cubic:hover .default {
  transform: rotateX(-90deg);
}

.swiper {
  overflow: visible !important;
}

.swiper-slide {
  height: 500px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .swiper-slide {
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
}
.swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 1.9s ease;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}
.swiper-slide-active > img {
  transform: none;
}
.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero {
  overflow: hidden;
  padding-top: 100px;
}
.hero__title {
  position: absolute;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 30px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
}
.hero__footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  height: 68px;
  width: 22px;
  overflow: hidden;
}
.hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  animation-name: kf-arrow-anime;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.hero__scrolltext {
  position: absolute;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.7);
  left: -8px;
  top: 11px;
  font-size: 1.2em;
}

@keyframes kf-arrow-anime {
  0%, 50%, 100% {
    transform: translateY(-10%);
  }
  30% {
    transform: none;
  }
}
.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu .logo {
  padding: 0 40px;
  font-size: 38px;
}
.mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .mobile-menu__btn {
    display: none;
  }
}
.mobile-menu__btn > span {
  background-color: black;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.mobile-menu__main {
  padding: 0;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.mobile-menu__item {
  list-style: none;
  display: block;
  transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}
.mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none !important;
}

.menu-open #container {
  transform: translate(-300px, 60px);
  box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}
.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-open .mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .mobile-menu__btn > span {
  background-color: black;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}

body {
  font-family: "Kameron", "Noto Sans JP", sans-serif;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

video {
  max-width: 100%;
  vertical-align: bottom;
}

.mb-sm, .blog__img__wide, .blog__img, .question__img, .intro__img, .message__img, .consider__img, .parent__img, .coach__img, .try__title, .try__texts-inner, .try__texts, .sub-title {
  margin-bottom: 16px !important;
}

.mb-md, .policy__promo, .other__promo, .contents__promo, .blog__promo, .enroll__promo, .question__promo, .lesson__promo, .marquee {
  margin-bottom: 32px !important;
}
@media screen and (min-width: 960px) {
  .mb-md, .policy__promo, .other__promo, .contents__promo, .blog__promo, .enroll__promo, .question__promo, .lesson__promo, .marquee {
    margin-bottom: 80px !important;
  }
}

.mb-lg, .contact__promo, .intro, .message, .consider, .parent, .coach {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .mb-lg, .contact__promo, .intro, .message, .consider, .parent, .coach {
    margin-bottom: 150px !important;
  }
}

.mt-sm, .policy__description, .contact__description, .contact__img, .enroll__description, .question__description, .question__img, .lesson__description {
  margin-top: 16px !important;
}

.mt-lg {
  margin-top: 80px !important;
}
@media screen and (min-width: 960px) {
  .mt-lg {
    margin-top: 150px !important;
  }
}

.pb-sm, .other__menu, .contents__menu, .blog__menu, .intro__texts, .message__texts, .consider__texts, .parent__texts, .coach__texts {
  padding-bottom: 16px !important;
}

.pb-lg, .hero {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .pb-lg, .hero {
    padding-bottom: 150px !important;
  }
}

.pt-lg {
  padding-top: 80px !important;
}
@media screen and (min-width: 960px) {
  .pt-lg {
    padding-top: 150px !important;
  }
}

.content-width, .header__inner, .intro, .message, .consider, .parent, .coach, .footer {
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
}

.flex, .other__inner, .contents__inner, .blog__inner, .header__nav, .intro__inner, .consider__inner, .parent__inner, .coach__inner, .footer__nav, .footer__ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex, .other__inner, .contents__inner, .blog__inner, .header__nav, .intro__inner, .consider__inner, .parent__inner, .coach__inner, .footer__nav, .footer__ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.purple {
  color: #904669;
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
}

.font-sm, .policy__description, .contact__form-note, .other__texts, .contents__texts, .blog__texts {
  font-size: 14px;
}
@media screen and (min-width: 960px) {
  .font-sm, .policy__description, .contact__form-note, .other__texts, .contents__texts, .blog__texts {
    font-size: 16px;
  }
}

.font-md, .contact__description, .contact__form, .enroll__description, .question__description, .lesson__description, .marquee {
  font-size: 17px;
}
@media screen and (min-width: 960px) {
  .font-md, .contact__description, .contact__form, .enroll__description, .question__description, .lesson__description, .marquee {
    font-size: 19px;
  }
}

.font-lr, .try__title, .try__texts-inner, .sub-title, .main-title {
  font-size: 17px;
}
@media screen and (min-width: 960px) {
  .font-lr, .try__title, .try__texts-inner, .sub-title, .main-title {
    font-size: 23px;
  }
}

.font-lg, .title {
  font-size: 21px;
}
@media screen and (min-width: 960px) {
  .font-lg, .title {
    font-size: 36px;
  }
}

.title {
  font-weight: 600;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.title::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: black;
  transform: translate(-150%, -40%);
  box-shadow: 0 10px 0 black, 0 20px 0 black;
}
.title::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: black;
  transform: translate(150%, -40%);
  box-shadow: 0 10px 0 black, 0 20px 0 black;
}

.main-title {
  font-weight: 600;
  width: 100%;
  text-align: center;
  position: relative;
}

.sub-title {
  color: #535353;
}

#container {
  position: relative;
  z-index: 10;
  background: white;
  transition: transform 0.5s, box-shadow 0.5s;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
}
.header.triggered {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
  display: none;
}
@media screen and (min-width: 960px) {
  .header__nav {
    display: block;
  }
}
.header__ul {
  display: flex;
  align-items: center;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .header__li:first-child {
    margin-right: 20px;
    white-space: nowrap;
  }
  .header__li:not(:first-child) {
    padding-left: 30px;
    margin-right: 20px;
    white-space: nowrap;
  }
}
.header__li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: black;
  text-decoration: none;
}
.header__li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
.header__li a:hover::after {
  transform: translate(0, 0);
}
.header > .logo {
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .header > .logo {
    font-size: 35px;
    justify-content: flex-start;
  }
}
.header__icon {
  position: relative;
}
.header__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  width: 0.8em;
  height: 0.8em;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: none;
  background-size: contain;
}
.header__icon.instagram::before {
  background-image: url(../../images/instagram_gray.jpeg);
}
.header__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100px;
  width: 0.8em;
  height: 0.8em;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: none;
  background-size: contain;
}
.header__icon.tiktok::after {
  background-image: url(../../images/tiktok_gray.jpeg);
}
@media screen and (min-width: 600px) {
  .header__icon {
    opacity: 0;
  }
}

.intro__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  background: #eaebe6;
  padding: 15px;
}
@media screen and (min-width: 600px) {
  .intro__inner {
    padding: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .intro__inner {
    padding: 50px 150px;
  }
}
.intro__img {
  height: 300px;
  transition: box-shadow 0.5s ease 1.6s;
}
.intro__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .intro__img {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .intro__img {
    height: 400px;
  }
}
.intro__img > img {
  position: relative;
  z-index: -1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .intro__texts {
    display: flex;
    align-items: flex-end;
    flex-basis: 47%;
  }
}
.intro__texts.inview .intro__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.intro__title {
  position: relative;
}
.intro__title::before {
  display: none;
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  top: 50%;
  left: -120px;
  background: black;
  transform: scaleX(0);
  transform-origin: right;
}
@media screen and (min-width: 960px) {
  .intro__title::before {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .intro__description {
    margin-bottom: 40px;
    font-size: 18px;
  }
}

.message__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  padding: 15px;
}
@media screen and (min-width: 600px) {
  .message__inner {
    padding: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .message__inner {
    padding: 50px 50px;
  }
}
.message__img {
  height: 300px;
  transition: box-shadow 0.5s ease 1.6s;
}
.message__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .message__img {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .message__img {
    height: 500px;
  }
}
.message__img > img {
  position: relative;
  z-index: -1;
  opacity: 0.7;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .message__texts {
    align-items: flex-end;
    flex-basis: 47%;
  }
}
.message__texts.inview .message__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 960px) {
  .message__title {
    display: block;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1;
  }
}
@media screen and (min-width: 960px) {
  .message__ul {
    margin-bottom: 40px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}
.message__li {
  background: #eaebe6;
  padding: 10px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 1.2em;
  align-items: center;
}

.consider__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  padding: 15px;
}
@media screen and (min-width: 600px) {
  .consider__inner {
    padding: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .consider__inner {
    padding: 50px 150px;
  }
}
.consider__img {
  height: 200px;
  transition: box-shadow 0.5s ease 1.6s;
}
.consider__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .consider__img {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .consider__img {
    height: 300px;
  }
}
.consider__img > img {
  position: relative;
  z-index: -1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.consider__title {
  position: relative;
  color: #904669;
}
@media screen and (min-width: 600px) {
  .consider__texts {
    flex-basis: 47%;
  }
}
.consider__texts.inview .consider__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 960px) {
  .consider__description {
    margin-bottom: 40px;
  }
}

.parent__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  padding: 15px;
}
@media screen and (min-width: 600px) {
  .parent__inner {
    padding: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .parent__inner {
    padding: 50px 150px;
  }
}
.parent__img {
  height: 500px;
  transition: box-shadow 0.5s ease 1.6s;
}
.parent__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .parent__img {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .parent__img {
    height: 500px;
  }
}
.parent__img > img {
  position: relative;
  z-index: -1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .parent__texts {
    flex-basis: 47%;
  }
}
.parent__texts.inview .parent__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.parent__title {
  position: relative;
  color: #904669;
}
@media screen and (min-width: 960px) {
  .parent__title {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .parent__description {
    margin-bottom: 10px;
  }
}

.coach__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  background: #eaebe6;
  padding: 20px;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .coach__inner {
    padding: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .coach__inner {
    padding: 50px 50px;
  }
}
.coach__img {
  height: 300px;
  transition: box-shadow 0.5s ease 1.6s;
}
.coach__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .coach__img {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .coach__img {
    height: 400px;
  }
}
.coach__img > img {
  position: relative;
  z-index: -1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .coach__texts {
    flex-basis: 47%;
  }
}
.coach__texts.inview .coach__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.coach__title {
  position: relative;
}
@media screen and (min-width: 960px) {
  .coach__title {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .coach__description {
    margin-bottom: 40px;
  }
}

.try__inner {
  position: relative;
  z-index: -2;
  justify-content: space-between;
  background: #eaf6fd;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .try__inner {
    padding: 30px 150px 0px 150px;
  }
}
.try__title {
  padding-top: 16px;
}
.try__texts-inner {
  text-align: center;
}
.try__texts {
  font-size: 16px;
}
.try__logo {
  width: 6%;
}
@media screen and (min-width: 600px) {
  .try__logo {
    width: 3%;
  }
}
.try__logo2 {
  width: 20%;
  position: relative;
  left: -100px;
  margin-top: -42px;
}
@media screen and (min-width: 600px) {
  .try__logo2 {
    width: 9%;
    position: relative;
    left: -100px;
    margin-top: -5%;
  }
}
.try__contact {
  font-size: 20px;
}
.try__mail {
  vertical-align: top;
  position: absolute;
  font-size: 19px;
  margin-left: -120px;
}
.try__img {
  width: 100px;
  pointer-events: auto;
}

.footer {
  padding: 60px 0;
}
.footer > .address {
  text-align: center;
}
@media screen and (min-width: 600px) {
  .footer > .address {
    text-align: left;
  }
}
.footer__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer__ul {
  list-style: none;
  padding: 0;
}
.footer__li {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .footer__li {
    margin-left: 0;
    margin-right: 30px;
  }
}
.footer__li > a {
  color: #535353;
  text-decoration: none;
}
.footer > .logo {
  font-size: 38px;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .footer > .logo {
    justify-content: flex-start;
  }
}

.logo {
  font-size: 33px;
}
.logo > a {
  color: black;
  text-decoration: none;
}
.logo__issin {
  font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 3;
  margin: 0 auto;
}
.logo__img {
  width: 2em;
}

.logo2 {
  font-size: 33px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .logo2 {
    text-align: left;
  }
}
.logo2 > a {
  color: black;
  text-decoration: none;
}
.logo2__issin {
  font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 3;
  margin: 0 auto;
}
.logo2__img {
  width: 2em;
}

.side {
  display: none;
  position: fixed;
  top: 70%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .side {
    display: block;
  }
}
.side .tween-animate-title {
  color: black;
  text-decoration: none !important;
  margin: 0 40px;
  vertical-align: middle;
  letter-spacing: 2px;
}
.side.left {
  left: -50px;
}
.side.left.inview {
  left: 50px;
}
.side.left .side__inner {
  transform-origin: top left;
  transform: rotate(-90deg);
}
.side.right {
  right: -50px;
}
.side.right.inview {
  right: 50px;
}
.side.right .side__inner {
  transform-origin: top right;
  transform: rotate(90deg);
}

@keyframes scaleX {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.icon {
  position: relative;
}
.icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: none;
  background-size: contain;
}
.icon.instagram::before {
  background-image: url(../../images/instagram_gray.jpeg);
}
.icon.tiktok::before {
  background-image: url(../../images/tiktok_gray.jpeg);
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  color: #904669;
  font-weight: bold;
}
.marquee .marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}
.marquee__img {
  display: block;
  margin: 0 auto;
  width: 10%;
  height: 10%;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.lesson__inner {
  position: relative;
  z-index: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
@media screen and (min-width: 1280px) {
  .lesson__inner {
    padding-bottom: 100px;
  }
}
.lesson__promo {
  flex: 1 1 100%;
  padding-top: 35%;
  padding-left: 6%;
}
@media screen and (min-width: 960px) {
  .lesson__promo {
    padding-top: 12.5%;
    padding-left: 6%;
  }
}
.lesson__promo::before {
  content: "";
  display: block;
  width: 90%;
  height: 0.5px;
  background-color: #535353;
  position: relative;
}
.lesson__description {
  text-align: center;
  margin: 0 auto;
  width: 80%;
}
.lesson__img {
  text-align: center;
  transition: box-shadow 0.5s ease 1.6s;
}
.lesson__img.inview {
  box-shadow: inset 0 0 30px black;
}
.lesson__cost {
  position: relative;
  z-index: -1;
  opacity: 1;
  max-width: 80%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .lesson__cost {
    max-width: 40%;
  }
}
.lesson__such {
  position: relative;
  z-index: -1;
  opacity: 1;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .lesson__such {
    max-width: 70%;
  }
}
.lesson__such2 {
  position: relative;
  z-index: -1;
  opacity: 1;
  max-width: 90%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .lesson__such2 {
    max-width: 50%;
  }
}
@media screen and (min-width: 600px) {
  .lesson__texts {
    flex-basis: 47%;
  }
}
.lesson__texts.inview .lesson__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.lesson__title {
  position: relative;
  color: #904669;
}
@media screen and (min-width: 960px) {
  .lesson__title {
    display: block;
  }
}
.question__inner {
  position: relative;
  z-index: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 1280px) {
  .question__inner {
    padding: 100px 100px;
  }
}
.question__promo {
  flex: 1 1 100%;
  padding-top: 35%;
  padding-left: 6%;
}
@media screen and (min-width: 960px) {
  .question__promo {
    padding-top: 12.5%;
    padding-left: 6%;
  }
}
.question__promo::before {
  content: "";
  display: block;
  width: 90%;
  height: 0.5px;
  background-color: #535353;
  position: relative;
  bottom: 0;
}
.question__description {
  text-align: center;
  margin: 0 auto;
  width: 80%;
}
.question__img {
  text-align: center;
  transition: box-shadow 0.5s ease 1.6s;
  position: relative;
  z-index: -1;
  opacity: 1;
  max-width: 100%;
  height: auto;
}
.question__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .question__texts {
    flex-basis: 47%;
  }
}
.question__texts.inview .question__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.question__title {
  position: relative;
  color: #904669;
}
@media screen and (min-width: 960px) {
  .question__title {
    display: block;
  }
}

.enroll__inner {
  position: relative;
  z-index: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
@media screen and (min-width: 1280px) {
  .enroll__inner {
    padding-bottom: 100px;
  }
}
.enroll__promo {
  flex: 1 1 100%;
  padding-top: 35%;
  padding-left: 6%;
}
@media screen and (min-width: 1280px) {
  .enroll__promo {
    padding-top: 12.5%;
    padding-left: 6%;
  }
}
.enroll__promo::before {
  content: "";
  display: block;
  width: 90%;
  height: 0.5px;
  background-color: #535353;
  position: relative;
  bottom: 0;
}
.enroll__description {
  text-align: center;
  margin: 0 auto;
  width: 90%;
}
.enroll__img {
  padding-top: 20px;
  width: 85%;
}
@media screen and (min-width: 600px) {
  .enroll__texts {
    flex-basis: 47%;
  }
}
.enroll__texts.inview .enroll__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.enroll__title {
  position: relative;
  color: #904669;
}
@media screen and (min-width: 960px) {
  .enroll__title {
    display: block;
  }
}
.blog__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 85%;
}
.blog__inner::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 0;
  width: 70%;
  height: 2px;
  background-color: black;
}
@media screen and (min-width: 960px) {
  .blog__inner {
    padding: 40px 100px;
  }
}
.blog__promo {
  flex: 1 1 100%;
  padding-top: 35%;
  padding-left: 6%;
}
@media screen and (min-width: 960px) {
  .blog__promo {
    padding-top: 12.5%;
    padding-left: 6%;
  }
}
.blog__promo::before {
  content: "";
  display: block;
  width: 90%;
  height: 0.5px;
  background-color: #535353;
  position: relative;
}
.blog__category {
  margin-left: 10%;
}
.blog__category > a {
  text-decoration: none;
}
@media screen and (min-width: 600px) {
  .blog__texts {
    flex-basis: 47%;
  }
}
.blog__texts.inview .blog__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.blog__title {
  position: relative;
  color: #904669;
  font-size: 1.5em;
  line-height: 1.3;
}
@media screen and (min-width: 960px) {
  .blog__title {
    display: block;
  }
}
.blog__menu {
  padding-left: 10%;
  list-style-type: none;
}
@media screen and (min-width: 960px) {
  .blog__menu {
    width: 22%;
  }
}
.blog__menu > a {
  display: block;
  text-decoration: none;
}
.blog__menu > li {
  position: relative;
  cursor: pointer;
}
.blog__headline::before {
  content: "";
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .blog__headline::before {
    top: 60px;
    left: 1050px;
    width: 200px;
    height: 40px;
  }
}
.blog__submenu {
  margin-bottom: 30px;
}
.blog__submenu > span {
  opacity: 0;
  position: relative;
  top: 10px;
  margin-bottom: 10px;
}
.blog__submenu .down {
  position: relative;
  top: -70px;
}
.blog__submenu > li {
  text-decoration: underline;
  text-decoration-color: purple;
}
.blog__img__wide {
  height: 450px;
  transition: box-shadow 0.5s ease 1.6s;
}
.blog__img__wide.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .blog__img__wide {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .blog__img__wide {
    height: 1000px;
  }
}
.blog__img__wide > img {
  position: relative;
  z-index: -1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog__img {
  height: 450px;
  transition: box-shadow 0.5s ease 1.6s;
}
.blog__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .blog__img {
    flex-basis: 47%;
  }
}
@media screen and (min-width: 960px) {
  .blog__img {
    height: 1000px;
  }
}
.blog__img > img {
  position: relative;
  z-index: -1;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-menu-open > span {
  display: inline-block;
  position: relative;
  animation: move-in 0.5s ease-in-out forwards;
  left: 20px;
  cursor: pointer;
}
.blog-menu-open > .down {
  position: relative;
  animation: down 0.3s ease-in-out forwards;
}

@keyframes down {
  0% {
    top: -70px;
  }
  100% {
    top: 10px;
  }
}
@keyframes move-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contents__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contents__inner::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 0;
  width: 70%;
  height: 2px;
  background-color: black;
}
@media screen and (min-width: 960px) {
  .contents__inner {
    padding: 40px 100px;
  }
}
.contents__promo {
  flex: 1 1 100%;
  padding-top: 35%;
  padding-left: 6%;
}
@media screen and (min-width: 960px) {
  .contents__promo {
    padding-top: 12.5%;
    padding-left: 6%;
  }
}
.contents__promo::before {
  content: "";
  display: block;
  width: 90%;
  height: 0.5px;
  background-color: #535353;
  position: relative;
}
.contents__category {
  margin-left: 10%;
}
.contents__category > a {
  text-decoration: none;
}
.contents__texts {
  max-width: 85%;
}
@media screen and (min-width: 600px) {
  .contents__texts {
    flex-basis: 47%;
    white-space: nowrap;
  }
}
.contents__texts.inview .contents__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.contents__title {
  position: relative;
  color: #904669;
  padding-top: 2%;
  font-size: 1.5em;
  line-height: 1.3;
}
@media screen and (min-width: 960px) {
  .contents__title {
    display: block;
  }
}
.contents__menu {
  padding-left: 10%;
}
@media screen and (min-width: 960px) {
  .contents__menu {
    width: 22%;
  }
}
.contents__menu > a {
  display: block;
  text-decoration: none;
}
.contents__headline::before {
  content: "";
  position: absolute;
  background-color: rgba(144, 70, 105, 0.4);
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .contents__headline::before {
    top: 60px;
    left: 1050px;
    width: 200px;
    height: 40px;
  }
}

.other__inner {
  position: relative;
  z-index: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.other__inner::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 0;
  width: 70%;
  height: 2px;
  background-color: black;
}
@media screen and (min-width: 960px) {
  .other__inner {
    padding: 40px 100px;
  }
}
.other__promo {
  flex: 1 1 100%;
  padding-top: 35%;
  padding-left: 6%;
}
@media screen and (min-width: 960px) {
  .other__promo {
    padding-top: 12.5%;
    padding-left: 6%;
  }
}
.other__promo::before {
  content: "";
  display: block;
  width: 90%;
  height: 0.5px;
  background-color: #535353;
  position: relative;
}
.other__category {
  margin-left: 10%;
}
.other__category > a {
  text-decoration: none;
}
.other__texts {
  max-width: 85%;
}
@media screen and (min-width: 600px) {
  .other__texts {
    flex-basis: 47%;
    white-space: nowrap;
  }
}
.other__texts.inview .other__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.other__title {
  position: relative;
  color: #904669;
  padding-top: 2%;
  font-size: 1.5em;
  line-height: 1.3;
}
@media screen and (min-width: 960px) {
  .other__title {
    display: block;
  }
}
.other__menu {
  padding-left: 10%;
}
@media screen and (min-width: 960px) {
  .other__menu {
    width: 22%;
  }
}
.other__menu > a {
  display: block;
  text-decoration: none;
}
.other__headline::before {
  content: "";
  position: absolute;
  background-color: rgba(144, 70, 105, 0.4);
  z-index: -1;
}
@media screen and (min-width: 960px) {
  .other__headline::before {
    top: 60px;
    left: 1050px;
    width: 200px;
    height: 40px;
  }
}

.contact__inner {
  position: relative;
  z-index: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 1280px) {
  .contact__inner {
    padding: 100px 100px;
  }
}
.contact__promo {
  flex: 1 1 100%;
  padding-top: 35%;
  padding-left: 6%;
}
@media screen and (min-width: 960px) {
  .contact__promo {
    padding-top: 12.5%;
    padding-left: 6%;
  }
}
.contact__promo::before {
  content: "";
  display: block;
  width: 90%;
  height: 0.5px;
  background-color: #535353;
  position: relative;
  bottom: 0;
}
.contact__description {
  text-align: center;
  margin: 0 auto;
  width: 80%;
}
.contact__img {
  text-align: center;
  transition: box-shadow 0.5s ease 1.6s;
  position: relative;
  z-index: -1;
  opacity: 1;
  max-width: 60%;
  height: auto;
}
.contact__img.inview {
  box-shadow: inset 0 0 30px black;
}
@media screen and (min-width: 600px) {
  .contact__texts {
    flex-basis: 47%;
  }
}
.contact__texts.inview .contact__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.contact__title {
  position: relative;
  color: #904669;
}
@media screen and (min-width: 960px) {
  .contact__title {
    display: block;
  }
}
.contact__logo {
  width: 10%;
}
@media screen and (min-width: 600px) {
  .contact__logo {
    width: 3%;
  }
}
.contact__logo2 {
  width: 20%;
  position: relative;
  left: -100px;
}
@media screen and (min-width: 600px) {
  .contact__logo2 {
    width: 9%;
    position: relative;
    left: -100px;
    margin-top: -5%;
  }
}
.contact__contact {
  font-size: 20px;
}
.contact__mail {
  font-size: 20px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  width: min(760px, 92%);
  margin: 24px auto 0;
}
.contact__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media screen and (min-width: 600px) {
  .contact__form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 600px) {
  .contact__form-item--full {
    grid-column: 1/-1;
  }
}
.contact__form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.contact__form-label span, .contact__form-policy span span {
  color: #904669;
  font-size: 12px;
}
.contact__form-input {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  background-color: #fff;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
}
.contact__form-textarea {
  min-height: 160px;
  resize: vertical;
}
.contact__form-policy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 2px;
}
.contact__form-note {
  margin: 0;
  color: #535353;
  line-height: 1.6;
}
.contact__form-submit {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  align-self: center;
}
.contact__form-status {
  min-height: 1.5em;
  margin: 0;
  text-align: center;
}
.contact__form-status.is-error {
  color: #b00020;
}
.contact__form-status.is-success {
  color: #1f7a3a;
}

.policy__inner {
  position: relative;
  z-index: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
@media screen and (min-width: 1280px) {
  .policy__inner {
    padding-bottom: 100px;
  }
}
.policy__promo {
  flex: 1 1 100%;
  padding-top: 35%;
  padding-left: 6%;
}
@media screen and (min-width: 1280px) {
  .policy__promo {
    padding-top: 12.5%;
    padding-left: 6%;
  }
}
.policy__promo::before {
  content: "";
  display: block;
  width: 90%;
  height: 0.5px;
  background-color: #535353;
  position: relative;
  bottom: 0;
}
.policy__description {
  text-align: center;
  margin: 0 auto;
  width: 90%;
}
.policy__img {
  padding-top: 20px;
  width: 85%;
}
@media screen and (min-width: 600px) {
  .policy__texts {
    flex-basis: 47%;
  }
}
.policy__texts.inview .policy__title::before {
  animation-name: scaleX;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.policy__title {
  position: relative;
  color: #904669;
}
@media screen and (min-width: 960px) {
  .policy__title {
    display: block;
  }
}
.policy__contents {
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .policy__contents {
    margin-top: 100px;
  }
}/*# sourceMappingURL=style.css.map */
