@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  color: #384757;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.overflow {
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

video {
  width: 100%;
  height: auto;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 847px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .container {
    padding: 0 24px;
  }
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2.5%;
}
@media (max-width: 847px) {
  .wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 599px) {
  .wrapper {
    padding: 0 24px;
  }
}

.fa-solid,
.fa-regular {
  margin-left: 5px;
}

.font-small {
  font-size: 0.75rem !important;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}
.section-title-en, .section-title-jp {
  display: block;
  font-weight: 900;
}
.section-title-en {
  color: #005be1;
  font-size: 1.6rem;
}
.section-title-jp {
  color: #384757;
  font-size: 3.2rem;
}
@media (max-width: 847px) {
  .section-title-jp {
    font-size: 2rem;
  }
}
@media (max-width: 599px) {
  .section-title-jp {
    font-size: 1.6rem;
  }
}
.section-title::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 1px;
  background: rgba(0, 0, 0, 0);
  border-bottom: 0px solid #b8cbe8;
  border-left: 0px solid #b8cbe8;
  border-radius: 0;
  border-right: 0px solid #b8cbe8;
  border-top: 4px solid #b8cbe8;
  margin: 10px 0;
}

.content-title {
  font-size: 2.6rem;
  font-weight: 900;
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgb(255, 255, 255);
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 300px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*========= ページトップのためのCSS ===============*/
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}
/*画像の切り替えと動き*/
#page-top a {
  /*aタグの形状*/
  display: block;
  width: 100px;
  height: 100px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  /*背景画像の指定*/
  background: url("../img/air_support.svg") no-repeat center;
  background-size: contain;
}

#page-top.floatAnime a {
  width: 100px;
  height: 130px;
  /*背景画像の指定*/
  background: url("../img/floating.svg") no-repeat center;
  background-size: contain;
  /*アニメーションの指定*/
  -webkit-animation: floatAnime 2s linear infinite;
          animation: floatAnime 2s linear infinite;
  opacity: 0;
}

@-webkit-keyframes floatAnime {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
    opacity: 1;
  }
}

@keyframes floatAnime {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(-6px);
    opacity: 1;
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(6px);
    opacity: 1;
  }
}
/*Page Topと書かれたテキストの位置*/
#page-top span {
  position: absolute;
  bottom: -20px;
  right: 20px;
  color: #666;
}

.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.2s;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
}

.installment {
  font-size: 2.4rem;
  font-weight: 700;
  color: #005be1;
}
@media (max-width: 847px) {
  .installment {
    font-size: 1.4rem;
  }
}

.price-num-s {
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 847px) {
  .price-num-s {
    font-size: 3rem;
  }
}

.monthly {
  font-size: 2rem;
  font-weight: 700;
}

.btn-frame {
  border-radius: 8px;
  background: #384757;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  text-align: center;
  padding: 12px 32px;
  margin: 40px 0 40px;
  max-width: 400px;
  width: 100%;
}

.text-left {
  -moz-text-align-last: left;
       text-align-last: left;
}

.line-height {
  line-height: 1;
}

.skill__align {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 100px;
}
.skill__align li {
  height: 150px;
}
.skill__align li img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(10px 10px 8px #ccc);
}

#error404.container {
  text-align: center;
}
#error404 img {
  max-width: 600px;
  padding-block: 60px;
}

#default-template {
  padding-block: 96px;
}
#default-template .title-large {
  font-size: 6.4rem;
  margin-left: 50px;
}
@media (max-width: 847px) {
  #default-template .title-large {
    font-size: 4.8rem;
  }
}
@media (max-width: 599px) {
  #default-template .title-large {
    font-size: 4rem;
    margin-left: 20px;
  }
}
#default-template .section-title-jp.title-small {
  margin-left: 50px;
}
@media (max-width: 599px) {
  #default-template .section-title-jp.title-small {
    margin-left: 20px;
  }
}
#default-template p {
  font-size: 1.6rem;
}

.default-single {
  position: relative;
}
.default-single .post-thumb {
  width: 90%;
  height: 300px;
  border-bottom-left-radius: 80px;
  border-top-left-radius: 80px;
  margin-left: 10%;
  margin-bottom: 35px;
  -o-object-position: center 75%;
     object-position: center 75%;
}
@media (max-width: 599px) {
  .default-single .post-thumb {
    width: 95%;
    height: 200px;
    margin-left: 5%;
  }
}
.default-single-title-large {
  font-size: 4rem;
  margin-bottom: 10rem;
}
@media (max-width: 599px) {
  .default-single-title-large {
    font-size: 3rem;
  }
}
.default-single-title-large .marker {
  background: linear-gradient(transparent 64%, #FF9F80 0%);
}
.default-single .course__features-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6.4rem;
}
@media (max-width: 847px) {
  .default-single .course__features-item {
    flex-direction: column;
    align-items: center;
  }
}
.default-single .course__features-item img {
  width: 33%;
  border-radius: 8px;
}
@media (max-width: 847px) {
  .default-single .course__features-item img {
    width: 100%;
  }
}
.default-single .course__features-item-content {
  width: 62%;
}
@media (max-width: 847px) {
  .default-single .course__features-item-content {
    width: 100%;
  }
}

.blueColor {
  color: #005be1;
}

.btn-center {
  text-align: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: -200px;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.btn-center.show {
  bottom: 20px;
  opacity: 1;
}

#price {
  margin-bottom: 100px;
}

.price__card {
  width: 100%;
  background: #f0f3f9;
  border-radius: 12px;
  padding: 60px;
  padding-bottom: 10px;
  text-align: center;
}
@media (max-width: 847px) {
  .price__card {
    padding: 20px;
  }
}
.price__card-center {
  text-align: center;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px;
  padding: 0 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
}
.header .logo {
  width: 200px;
}
.header__item-nav {
  background: #1970ce;
  width: 100%;
  max-width: 640px;
  height: 100vh;
  position: fixed;
  top: 100px;
  right: 0;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 980;
  overflow: scroll;
}
@media (max-width: 847px) {
  .header__item-nav {
    max-width: 400px;
    padding: 64px;
  }
}
@media (max-width: 599px) {
  .header__item-nav {
    max-width: 100%;
    padding: 64px 40px 64px 40px;
  }
}
.header__item-nav .close_menu {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  top: 27px;
  right: 27px;
  transition: all 0.3s;
  z-index: 990;
}
.header__item-nav .close_menu:hover {
  background: #a0c8f2;
  transform: scale(0.9, 0.9);
}
.header__item-nav .close_menu:hover p {
  transform: scale(0, 0);
  transition-duration: 400ms;
}
.header__item-nav .close_menu:hover .fa-x {
  transform: scale(1, 1);
  transition-delay: 200ms;
  transition-duration: 400ms;
}
.header__item-nav .close_menu p {
  font-size: 1.4rem;
  color: #1970ce;
  font-family: var(--s-font-3684e39e);
  font-weight: 700;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 50px;
  text-align: center;
  width: auto;
  max-width: 100%;
  transition: all 0.3s;
}
.header__item-nav .close_menu .fa-x {
  color: #FFFFFF;
  font-size: 28px;
  margin: 0 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0, 0);
  width: 100%;
  height: 100%;
  line-height: 50px;
  max-width: 100%;
}
.header__item-nav-list {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.header__item-nav-list a {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  margin-left: 10px;
  transition: all 0.3s;
}
.header__item-nav-list a span {
  transition: all 0.3s;
}
.header__item-nav-list a::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header__item-nav-list a:hover span {
  transform: translate(16px, 0px);
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.header__item-nav-list a:hover::after {
  background: #87b9ee;
  transform: rotate(90deg);
  transition-duration: 600ms;
}
.header__item-nav-bottom {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 847px) {
  .header__item-nav-bottom {
    flex-direction: column;
    gap: 24px;
  }
}
.header__item-nav-bottom-btn {
  width: 48%;
  border-radius: 8px;
  padding: 40px 0;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
@media (max-width: 847px) {
  .header__item-nav-bottom-btn {
    width: 100%;
  }
}
.header__item-nav-bottom-btn .clicked-action span {
  transform: translate(0px, -8px);
  transition-delay: 50ms;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.03, 0.48, 0.36, 2.79);
}
.header__item-nav-bottom-btn:hover {
  background: #df643c !important;
}
.header__item-nav-bottom-btn:hover span {
  display: inline-block;
  transform: translate(0px, -8px);
  transition: transform 400ms cubic-bezier(0.4, 0.4, 0.29, 3.11) 100ms;
}
.header__item-nav-bottom-btn:hover p {
  transform: translate(0px, -8px);
  transition-delay: 50ms;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.03, 0.48, 0.36, 2.79);
}
.header__item-nav-bottom-btn:hover .fa-rocketchat {
  transform: translate(0px, -8px);
  transition-delay: 0ms;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0, 0, 0.48, 3.11);
}
.header__item-nav-bottom-btn:hover .fa-hand-holding-heart {
  transform: translate(0px, -8px);
  transition-delay: 0ms;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0, 0, 0.48, 3.11);
}
.header__item-nav-bottom-btn span {
  font-size: 1.4rem;
  padding: 0 10px;
  position: relative;
  transition: all 0.3s;
}
.header__item-nav-bottom-btn span::before {
  content: "";
  background: #FFFFFF;
  flex: none;
  height: 16px;
  margin: 0;
  transform: rotate(-24deg) translate(-5px, 0px);
  width: 2px;
  max-width: 100%;
  position: absolute;
  left: 0;
}
.header__item-nav-bottom-btn span::after {
  content: "";
  background: #FFFFFF;
  flex: none;
  height: 16px;
  margin: 0;
  transform: rotate(24deg);
  width: 2px;
  max-width: 100%;
  position: absolute;
  right: 0;
}
.header__item-nav-bottom-btn p {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 10px 0 0;
  transition: all 0.3s;
}
.header__item-nav-bottom-btn .fa-rocketchat {
  font-size: 4.8rem;
  margin-top: 16px;
  transition: all 0.3s;
}
.header__item-nav-bottom-btn .fa-hand-holding-heart {
  font-size: 4.8rem;
  margin-top: 16px;
  transition: all 0.3s;
}
.header__item-nav-bottom .left {
  background: #094e99;
}
.header__item-nav-bottom .left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #094e99;
  transform: translateX(-100%);
  transition: left 0.5s ease-in-out;
  z-index: -1;
}
@-webkit-keyframes slide-bg {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slide-bg {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.header__item-nav-bottom .left-anime {
  -webkit-animation: slide-bg 0.5s forwards;
          animation: slide-bg 0.5s forwards;
}
.header__item-nav-bottom .right {
  background: #5091d7;
}
.header__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__btn-download a {
  background: #FF4E12;
  border: 2px solid #FF4E12;
}
.header__btn-download a:hover {
  background: #fff;
  border: 2px solid #FF4E12;
  color: #FF4E12;
}
.header__btn-contact a {
  background: #fff;
  border: 2px solid #FF4E12;
  color: #FF4E12;
}
.header__btn-contact a:hover {
  background: #FF4E12;
  border: 2px solid #FF4E12;
  color: #fff;
}
.header__btn-btn {
  margin-left: 30px;
}
@media (max-width: 847px) {
  .header__btn-btn {
    display: none;
  }
}
.header__btn-btn a {
  border-radius: 8px;
  display: inline-block;
  font-size: 1.6rem;
  width: 180px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  transition: all 0.3s;
}
.header__btn .menu_bar {
  margin-left: 30px;
  width: 45px;
  height: 45px;
  position: relative;
}
.header__btn .menu_bar:hover .menu_bar-box {
  transform: scale(1.2, 1.2);
  transition-duration: 500ms;
  opacity: 1;
  visibility: visible;
}
.header__btn .menu_bar:hover span {
  transform: scale(0, 1);
}
.header__btn .menu_bar:hover span:nth-child(1) {
  transition-delay: 0ms;
}
.header__btn .menu_bar:hover span:nth-child(2) {
  transition-delay: 100ms;
}
.header__btn .menu_bar:hover span:nth-child(3) {
  transition-delay: 200ms;
}
.header__btn .menu_bar span {
  background: #5b5b5b;
  border-radius: 4px;
  flex: none;
  height: 2px;
  width: 40px;
  z-index: 1;
  max-width: 100%;
  transition: all 0.3s;
  position: absolute;
  left: 2px;
}
.header__btn .menu_bar span:nth-child(1) {
  top: 4px;
}
.header__btn .menu_bar span:nth-child(2) {
  top: 13px;
}
.header__btn .menu_bar span:nth-child(3) {
  top: 22px;
}
.header__btn .menu_bar::after {
  content: "menu";
  color: #5b5b5b;
  font-size: 1.6rem;
  position: absolute;
  bottom: -10px;
  left: 2px;
  transition: all 0.5s;
}
.header__btn .menu_bar:hover::after {
  color: #FFFFFF;
  bottom: 0;
  transform: translate(0px, -12px);
  transition-delay: 300ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.header__btn .menu_bar-box {
  opacity: 0;
  visibility: hidden;
  background: #1970ce;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0, 0);
  width: 100%;
  height: 45px;
  z-index: 0;
}

.open .header__item-nav {
  top: 0;
  visibility: visible;
  opacity: 1;
}

.mask {
  height: 100vh;
  left: 0;
  pointer-events: auto;
  position: fixed;
  top: 0;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  width: 100%;
  z-index: 910;
  display: none;
}

.open .mask {
  display: block;
  background: rgba(0, 0, 0, 0.16);
}

.hero {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
  padding-bottom: 140px;
}
@media (max-width: 847px) {
  .hero {
    flex-direction: column;
  }
}
.hero__col {
  width: 65%;
}
@media (max-width: 847px) {
  .hero__col {
    width: 100%;
  }
}
.hero__col-text {
  color: #005be1;
  font-family: var(--s-font-87b81790);
  font-size: 24px;
  font-weight: 900;
  height: auto;
  line-height: 1;
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 0px;
  text-align: left;
  width: auto;
  max-width: 100%;
}
.hero__col-title {
  font-size: clamp(2rem, 0.909rem + 5.45vw, 5rem);
  font-weight: bold;
  line-height: 1.25;
  margin: 0;
}
@media (max-width: 1080px) {
  .hero__col-title {
    font-size: 4rem;
  }
}
@media (max-width: 599px) {
  .hero__col-title {
    font-size: clamp(1.8rem, 1rem + 4vw, 4rem);
  }
}
.hero__col-videos {
  position: relative;
  left: -10%;
  width: 100%;
}
@media (max-width: 847px) {
  .hero__col-videos {
    padding-top: 60%;
    left: 0;
  }
}
.hero__col-videos-video {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}
.hero__col-videos-video.show {
  opacity: 1;
}
.hero__col-videos-video:nth-of-type(2), .hero__col-videos-video:nth-of-type(3) {
  transform: scale(1.2);
}
@media (max-width: 847px) {
  .hero__col-videos-video:nth-of-type(2), .hero__col-videos-video:nth-of-type(3) {
    transform: scale(1);
  }
}

.contact__item {
  width: 35%;
  border-radius: 8px;
  box-shadow: 0px 18px 24px rgba(0, 66, 164, 0.26);
  padding: 24px;
  background: #fff;
}
@media (max-width: 847px) {
  .contact__item {
    width: 100%;
  }
}
.contact__item-title {
  font-size: 2.2rem;
  color: #007BFF;
  text-align: center;
}
.contact__item-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact__item-form-label {
  font-size: 1.4rem;
  font-weight: 700;
  height: auto;
  line-height: 1.5;
}
.contact__item-form-label-required {
  color: red;
  font-size: 2rem;
  line-height: 1.5;
}
.contact__item-form-input {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
}
.contact__item-form-input input {
  font-size: 1.5rem;
  width: 100%;
  height: 50px;
  border: 1px solid #eeeeee;
  padding: 0.5rem 1rem;
}
.contact__item-form-input input:focus {
  outline: auto;
  outline-color: #007BFF;
}
.contact__item-attention {
  color: #384757;
  font-size: 1.5rem;
}
.contact__item-attention-color {
  color: #007BFF;
  font-size: 1.5rem;
  font-weight: 900;
}
.contact__item-policy {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.contact__item-policy-txt {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}
.contact__item-btn {
  background: #005be1;
  border-radius: 48px;
  font-weight: 900;
  text-align: center;
  margin-top: 20px;
  transition-duration: 0.5s;
}
.contact__item-btn:hover {
  background: #2d80fb;
  transform: scale(1.1, 1.1);
}
.contact__item-btn input {
  color: #f5f5f5;
  font-size: 1.5rem;
  padding: 15px;
  width: 100%;
}

.wpcf7-spinner {
  display: none !important;
}

.cta-button {
  background: #007BFF;
  color: #384757;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
}
.cta-button:hover {
  background: #0056b3;
}

.bg-circle {
  bottom: auto;
  flex: none;
  left: auto;
  margin: 0 0 0 0;
  padding: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 46%;
  max-width: 46%;
  z-index: -1;
}
@media (max-width: 847px) {
  .bg-circle {
    bottom: 0px;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding-top: 100%;
  }
}
.bg-circle .box1 {
  background: #1970ce;
  border-radius: 16px;
  bottom: auto;
  flex: none;
  height: 100px;
  left: -10px;
  margin: 0 0 0 0;
  padding: 0px;
  position: absolute;
  right: auto;
  top: 59px;
  transform: rotate(-32deg);
  width: 100px;
  z-index: 2;
  max-width: 100%;
}
@media (max-width: 847px) {
  .bg-circle .box1 {
    top: auto;
    bottom: -40%;
  }
}
.bg-circle .box2 {
  background: #cfe6ff;
  border-radius: 16px;
  bottom: 66px;
  flex: none;
  height: 70px;
  left: -10px;
  margin: 0 0 0 0;
  position: absolute;
  right: auto;
  top: auto;
  transform: rotate(-12deg);
  width: 70px;
  z-index: 2;
  max-width: 100%;
}
@media (max-width: 847px) {
  .bg-circle .box2 {
    bottom: -80%;
    left: 65px;
  }
}
@media (max-width: 599px) {
  .bg-circle .box2 {
    bottom: -100%;
  }
}
.bg-circle .box3 {
  background: #094f9b;
  border-radius: 24px;
  bottom: -78px;
  flex: none;
  height: 140px;
  left: auto;
  margin: 0 0 0 0;
  padding: 0px;
  position: absolute;
  right: 39px;
  top: auto;
  transform: rotate(24deg);
  width: 140px;
  z-index: 2;
  max-width: 100%;
}
@media (max-width: 847px) {
  .bg-circle .box3 {
    top: auto;
    bottom: -55%;
  }
}
@media (max-width: 599px) {
  .bg-circle .box3 {
    bottom: -110%;
  }
}
@media (max-width: 847px) {
  .bg-circle img {
    display: none;
  }
}

#about {
  color: #fff;
}
#about .section-title-en,
#about .section-title-jp {
  color: #fff;
}

.about {
  background: #417DD4;
  padding: 64px 0;
  font-size: 1.8rem;
}

.problems {
  background: #f0f3f9;
  padding: 96px 0 0;
  position: relative;
}
.problems .problems__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 847px) {
  .problems .problems__cards {
    flex-direction: column;
    width: 90%;
    padding: 0 80px;
  }
}
@media (max-width: 599px) {
  .problems .problems__cards {
    padding: 0 24px;
    width: 100%;
  }
}
.problems .problems__cards-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 18px 24px rgba(0, 66, 164, 0.26);
  padding: 24px 24px 32px 24px;
  width: 32%;
}
@media (max-width: 847px) {
  .problems .problems__cards-card {
    width: 100%;
    margin-bottom: 40px;
  }
}
.problems .problems__cards-card img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 847px) {
  .problems .problems__cards-card img {
    height: auto;
  }
}
.problems .problems__cards-card .problems__cards-title {
  color: #005be1;
  font-size: 2.2rem;
  text-align: center;
  margin-top: 24px;
}
.problems .problems__cards-card .problems__cards-text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 10px;
}
.problems .problems__solutions {
  text-align: center;
  padding: 0 0 50px;
}
.problems .problems__solutions-img {
  width: 30px;
  margin-bottom: 30px;
}
.problems .problems__solutions-text {
  font-size: 3.6rem;
  font-weight: 600;
}
@media (max-width: 847px) {
  .problems .problems__solutions-text {
    font-size: 3.4rem;
  }
}
@media (max-width: 599px) {
  .problems .problems__solutions-text {
    font-size: 2.2rem;
  }
}
.problems::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 35px solid #f0f3f8;
  border-bottom: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.features {
  padding-block: 96px;
}
.features__secondary-title {
  font-size: 2.4rem;
  text-align: center;
  margin: 60px 0 30px;
}
.features__item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 847px) {
  .features__item-content {
    flex-direction: column-reverse;
  }
}
.features__item-content-image {
  width: 49%;
  transform: scale(0.85);
}
@media (max-width: 847px) {
  .features__item-content-image {
    width: 80%;
  }
}
@media (max-width: 847px) {
  .features__item-content-image {
    width: 90%;
  }
}
.features__item-content-text {
  width: 49%;
}
@media (max-width: 847px) {
  .features__item-content-text {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .features__item-content-text {
    width: 100%;
  }
}
.features__item-content-text .number {
  font-size: 2rem;
  font-weight: 900;
  color: #005be1;
  margin-bottom: 32px;
}
.features__item-content-text .content-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .features__item-content-text .content-title {
    font-size: 2.2rem;
  }
}
.features__item-content-text .content-text {
  font-size: 1.8rem;
}
@media (max-width: 599px) {
  .features__item-content-text .content-text {
    font-size: 1.6rem;
  }
}
.features__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
}
.features__cards-card {
  background: #f0f3f9;
  border-radius: 8px;
  font-size: 1.6rem;
  padding: 24px;
  display: flex;
  align-items: center;
}
.features__cards-card::before {
  content: "";
  display: block;
  width: 8px;
  height: 38px;
  background: #005be1;
  margin-right: 10px;
}

.cta {
  background: #417dd4;
  padding: 64px 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.cta-title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 847px) {
  .cta-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 599px) {
  .cta-title {
    font-size: 2.4rem;
  }
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__wrapper-btn {
  border: 3px solid #fff;
  border-radius: 48px;
  background: #005be1;
  box-shadow: 0px 14px 24px rgba(0, 91, 225, 0.3);
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 900;
  padding: 24px 64px;
  transition: all 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 599px) {
  .cta__wrapper-btn {
    padding: 24px 32px;
  }
}
.cta__wrapper-btn:hover {
  background: #2d80fb;
  transform: scale(1.1, 1.1);
}
.cta__wrapper-btn .fa-comment-dots {
  font-size: 2.5rem;
  margin-left: 10px;
}
.cta__wrapper-contact {
  display: inline-block;
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 900;
  position: relative;
}
.cta__wrapper-contact::after {
  content: "";
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.cta__wrapper-contact:hover::after {
  opacity: 1;
  width: 100%;
  transform: scale(1, 1);
}
.cta__wrapper-contact .fa-envelope {
  font-size: 2rem;
}

.plan {
  padding-block: 96px;
}
.plan__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 847px) {
  .plan__cards {
    flex-direction: column;
  }
}
.plan__cards-recommend {
  outline: 3px solid #ff4e13;
}
.plan__cards-recommend:hover {
  outline: 3px solid #ff4e13 !important;
}
.plan__cards-item {
  background: #f0f3f9;
  border-radius: 12px;
  padding: 48px 25px 32px;
  transition: all 0.3s;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 847px) {
  .plan__cards-item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 50px;
  }
}
.plan__cards-item:nth-of-type(2) {
  outline: 3px solid #ff4e13;
}
.plan__cards-item:nth-of-type(2) .fa-circle-check {
  color: #ff4e13 !important;
}
.plan__cards-item:nth-of-type(2):hover {
  outline: 3px solid #ff4e13 !important;
}
.plan__cards-item:hover {
  outline: 3px solid #005be1;
  transform: translate(0px, -16px);
}
.plan__cards-item-subtitle {
  background-color: #ff4e13;
  border-radius: 32px;
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 16px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.plan__cards-item-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 847px) {
  .plan__cards-item-title {
    font-size: 2.2rem;
  }
}
.plan__cards-item-price {
  text-align: center;
}
.plan__cards-item-price .price-num {
  font-size: 6.4rem;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .plan__cards-item-price .price-num {
    font-size: 5rem;
  }
}
@media (max-width: 847px) {
  .plan__cards-item-price .price-num {
    font-size: 4rem;
  }
}
.plan__cards-item .card-btn {
  text-align: center;
}
.plan__cards-item .card-btn a {
  border-radius: 8px;
  background: #384757;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  padding: 12px 32px;
  margin: 40px 0 0;
  width: 100%;
}
.plan__cards-item-contents-list {
  display: flex;
  align-items: baseline;
  font-size: 1.6rem;
}
.plan__cards-item-contents-list .fa-circle-check {
  margin-right: 5px;
}

.flow {
  background: #f0f3f9;
  padding: 96px 0;
}
.flow__contents-list {
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 65px;
  gap: 48px;
  padding: 40px 48px;
  position: relative;
}
@media (max-width: 599px) {
  .flow__contents-list {
    flex-direction: column;
    gap: 10px;
    padding: 0px 24px 24px 24px;
  }
}
.flow__contents-list::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #303439 transparent transparent transparent;
  border-width: 30px 29px 0px 29px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.flow__contents-list-number {
  color: #acacac;
  font-size: 6.4rem;
  font-weight: 900;
}
.flow__contents-list-text {
  font-size: 1.6rem;
}
.flow__contents-list-text .title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 599px) {
  .flow__contents-list-text .title {
    font-size: 2.2rem;
    text-align: center;
  }
}

.faq {
  padding: 96px 0;
}
.faq__lists-list {
  font-size: 1.75rem;
  margin: 20px 0;
  /*アコーディオンで現れるエリア*/
}
.faq__lists-list-title {
  background: #f0f3f9;
  border-radius: 8px;
  /*アコーディオンタイトル*/
  position: relative;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
  /*アイコンの＋と×*/
}
@media (max-width: 599px) {
  .faq__lists-list-title {
    font-size: 1.8rem;
    padding: 3% 3% 3% 30px;
  }
}
.faq__lists-list-title::before, .faq__lists-list-title::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #333;
}
.faq__lists-list-title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
@media (max-width: 599px) {
  .faq__lists-list-title::before {
    left: 5px;
  }
}
.faq__lists-list-title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
@media (max-width: 599px) {
  .faq__lists-list-title::after {
    left: 5px;
  }
}
.faq__lists-list-title.close::before {
  transform: rotate(45deg);
}
.faq__lists-list-title.close::after {
  transform: rotate(-45deg);
}
.faq__lists-list-text {
  display: none;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
@media (max-width: 599px) {
  .faq__lists-list-text {
    font-size: 1.4rem;
  }
}

.contact {
  background: #f0f3f9;
  padding: 96px 0;
}
.contact__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 847px) {
  .contact__flex {
    flex-direction: column;
  }
}
.contact__wrapper {
  width: 50%;
}
@media (max-width: 847px) {
  .contact__wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.contact__wrapper-image {
  opacity: 0.8;
}
@media (max-width: 847px) {
  .contact__wrapper-image {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
}
.contact__wrapper-title {
  color: #005be1;
  font-size: 1.8rem;
  font-weight: 900;
  margin-top: 40px;
}
.contact__wrapper-lists li {
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media (max-width: 599px) {
  .contact__wrapper-lists li {
    font-size: 2rem;
  }
}
.contact__wrapper-lists li .fa-circle {
  font-size: 1rem;
}

.footer {
  background: #384757;
  color: white;
  font-size: 1.2rem;
  padding: 32px 0;
  text-align: center;
}
.footer-link {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 10px;
}

#contact-form {
  padding-block: 96px;
}
#contact-form .title-large {
  font-size: 6.4rem;
}
@media (max-width: 847px) {
  #contact-form .title-large {
    font-size: 4.8rem;
  }
}
@media (max-width: 599px) {
  #contact-form .title-large {
    font-size: 4rem;
  }
}
#contact-form .title-small {
  font-size: 1.8rem;
}
@media (max-width: 847px) {
  #contact-form .title-small {
    font-size: 1.6rem;
  }
}
@media (max-width: 599px) {
  #contact-form .title-small {
    font-size: 1.4rem;
  }
}
#contact-form form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
#contact-form form .contact__form {
  margin-top: 80px;
}
#contact-form form .contact__form label {
  font-size: 1.6rem;
  font-weight: 600;
}
#contact-form form .contact__form input,
#contact-form form .contact__form textarea,
#contact-form form .contact__form select {
  background: #f6f6f6;
  border-radius: 4px;
  font-size: 1.6rem;
  width: 100%;
  padding: 12px 16px;
  margin: 10px 0 20px;
}
#contact-form form .contact__form input::-moz-placeholder, #contact-form form .contact__form textarea::-moz-placeholder, #contact-form form .contact__form select::-moz-placeholder {
  color: #ccc;
}
#contact-form form .contact__form input:-ms-input-placeholder, #contact-form form .contact__form textarea:-ms-input-placeholder, #contact-form form .contact__form select:-ms-input-placeholder {
  color: #ccc;
}
#contact-form form .contact__form input::placeholder,
#contact-form form .contact__form textarea::placeholder,
#contact-form form .contact__form select::placeholder {
  color: #ccc;
}
#contact-form form .contact__form input:focus,
#contact-form form .contact__form textarea:focus,
#contact-form form .contact__form select:focus {
  outline: 2px solid #007BFF;
}
#contact-form form .contact__form select {
  -webkit-appearance: menulist;
     -moz-appearance: menulist;
          appearance: menulist;
}
#contact-form form .contact__form textarea {
  height: 200px;
  resize: none;
}
#contact-form form .submit-btn {
  text-align: center;
  margin-top: 40px;
}
#contact-form form .submit-btn input {
  background: #384757;
  border-radius: 8px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 24px 16px;
  max-width: 320px;
  width: 100%;
  transition: all 0.3s;
}
#contact-form form .submit-btn input:hover {
  background: #005be1;
}

.contact__item-policy-note {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}

#privacy {
  font-size: 1.4rem;
  padding-block: 96px;
}
#privacy h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
}

#tokushoho {
  padding-block: 96px;
}
#tokushoho h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
}
#tokushoho dl {
  font-size: 1.4rem;
}
#tokushoho dl dt {
  font-weight: 600;
}
#tokushoho dl dd {
  margin-bottom: 30px;
}

#btn_animation {
  -webkit-animation: btn_animation 2s infinite;
          animation: btn_animation 2s infinite;
}

@-webkit-keyframes btn_animation {
  0% {
    transform: scale(1.2);
  }
  5% {
    transform: scale(1);
  }
  90% {
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
  }
}

@keyframes btn_animation {
  0% {
    transform: scale(1.2);
  }
  5% {
    transform: scale(1);
  }
  90% {
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
  }
}
.press-btn {
  position: relative;
  -webkit-animation: press 2s infinite;
          animation: press 2s infinite;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes press {
  0% {
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
  10% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    top: 3px;
  }
  20% {
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
  30% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    top: 3px;
  }
  40% {
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
}

@keyframes press {
  0% {
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
  10% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    top: 3px;
  }
  20% {
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
  30% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    top: 3px;
  }
  40% {
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
}
.cta-btn {
  -webkit-animation: heartbeat 1300ms ease infinite;
          animation: heartbeat 1300ms ease infinite;
}
@media (max-width: 599px) {
  .cta-btn {
    -webkit-animation: none;
            animation: none;
  }
}

@-webkit-keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */