@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--- iosのスタイルリセット  ---*/
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper {
  position: relative;
}

/* =============================================================================
Image
========================================================================== */
a {
  display: block;
}

img {
  width: 100%;
  height: inherit;
}

/* =============================================================================
Basic style
========================================================================== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: “游ゴシック体“, YuGothic, “游ゴシック“, “Yu Gothic”, sans-serif;
  word-break: break-all;
}

img {
  vertical-align: top;
}

/*==============================================================================
Media
============================================================================= */
/*
  sp
----------------------------------------------- */
/*
  pc
----------------------------------------------- */
/*
  xl-pc
----------------------------------------------- */
/*==============================================================================
Accessibility
============================================================================= */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.hidden {
  display: none;
}

/*==============================================================================
font-size
============================================================================= */
/*
	  mobile
  ----------------------------------------------- */
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  PC
  ----------------------------------------------- */
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
  p {
    font-size: 1rem;
  }
}
/*==============================================================================
Responsive
============================================================================= */
@media screen and (max-width: 767px) {
  .inner {
    width: 43.125rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    width: 75rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
/*==============================================================================
font-family
============================================================================= */
.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.hiragino {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}

.shippori {
  font-family: "Shippori Mincho", serif;
}

/*==============================================================================
Header
============================================================================= */
@media screen and (max-width: 767px) {
  .header {
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.2);
  }
  .header-bg {
    padding: 1.0625rem 0;
    background: #fff;
  }
  .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header h1 {
    width: 23.75rem;
  }
  .header a {
    width: 13.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .header {
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.2);
  }
  .header-bg {
    padding: 0.625rem 0;
    background: #fff;
  }
  .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header h1 {
    width: 18.4375rem;
  }
  .header a {
    width: 18.0625rem;
  }
}
/*==============================================================================
footer
============================================================================= */
@media screen and (max-width: 767px) {
  .footer {
    margin: 0 0 8.75rem;
  }
  .footer-fix {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-fix a {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .footer-fix {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .footer-fix a {
    width: 6.25rem;
    margin: 0 0 0.9375rem;
  }
}
/*==============================================================================
Header
============================================================================= */
@media screen and (max-width: 767px) {
  .kv {
    position: relative;
    background: #fdfdf2;
  }
  .kv-video {
    position: absolute;
    top: 50.56rem;
    left: 50.1%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 30.625rem;
  }
  .kv-video video {
    width: 30.625rem;
  }
  .cta {
    position: relative;
    z-index: 10;
    margin: -5rem 0 0;
  }
  .cta-btn {
    position: absolute;
    top: 34.375rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 42.5rem;
  }
  .cta__03 {
    margin: -16.25rem 0 0;
  }
  .cta__04 {
    margin: -1.875rem 0 0;
  }
  .notice {
    position: relative;
  }
  .notice-img {
    position: absolute;
    top: 22.8125rem;
    left: 16.25rem;
    width: 16.25rem;
  }
  @-webkit-keyframes loop-slide {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-50rem);
      transform: translateX(-50rem);
    }
  }
  @keyframes loop-slide {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-50rem);
      transform: translateX(-50rem);
    }
  }
  .notice-logo01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 61.875rem;
    width: 125rem;
    margin: 0 calc(50% - 50vw);
    -webkit-animation: loop-slide 20s infinite linear 0s both;
    animation: loop-slide 20s infinite linear 0s both;
  }
  .notice-logo02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 81.25rem;
    width: 156.25rem;
    margin: 0 calc(50% - 50vw);
    -webkit-animation: loop-slide 20s infinite linear 0s both;
    animation: loop-slide 20s infinite linear 0s both;
  }
  .possibility {
    position: relative;
    padding: 4.375rem 0 2.8125rem;
    background: #fefefe;
  }
  .possibility-wave {
    position: absolute;
    top: -0.625rem;
    width: 106%;
  }
  .different {
    position: relative;
  }
  .different-container01 {
    position: absolute;
    top: 320.625rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
  }
  .different-container01 .swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .different-container01 .swiper-wrapper img {
    width: 41.25rem;
    margin: 0 0 0 3.125rem;
  }
  .different .swiper-slide {
    height: 56.25rem;
  }
  .different .swiper-button-prev01, .different .swiper-button-next01 {
    position: absolute;
    outline: 0;
    width: 8.125rem;
    height: 8.125rem;
    z-index: 5;
  }
  .different .swiper-button-prev01 {
    cursor: pointer;
    top: 21.875rem;
    left: 0;
    background: url(../images/swiper-prev.webp) no-repeat center/contain;
  }
  .different .swiper-button-next01 {
    cursor: pointer;
    top: 21.875rem;
    right: 0;
    background: url(../images/swiper-next.webp) no-repeat center/contain;
  }
  .different .swiper-pagination01 {
    position: absolute;
    top: 57.5rem;
    left: 53%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 13.75rem;
  }
  .different .swiper-pagination01 span {
    width: 1.125rem;
    height: 1.125rem;
    margin: 0 0.625rem;
    background: #aeaeae;
    border-radius: 50%;
    opacity: 1;
  }
  .different .swiper-pagination01 .swiper-pagination-bullet-active {
    background: #25ad7c;
  }
  .different-container02 {
    position: absolute;
    top: 387.5rem;
    left: 53%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
  }
  .different-container02 .swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .different-container02 .swiper-wrapper img {
    width: 41.25rem;
    margin: 0 0 0 1.875rem;
  }
  .different .swiper-button-prev02, .different .swiper-button-next02 {
    position: absolute;
    outline: 0;
    width: 8.125rem;
    height: 8.125rem;
    z-index: 5;
  }
  .different .swiper-button-prev02 {
    cursor: pointer;
    top: 21.875rem;
    left: -0.625rem;
    background: url(../images/swiper-prev02.webp) no-repeat center/contain;
  }
  .different .swiper-button-next02 {
    cursor: pointer;
    top: 21.875rem;
    right: 1.875rem;
    background: url(../images/swiper-next02.webp) no-repeat center/contain;
  }
  .different .swiper-pagination02 {
    position: absolute;
    top: 57.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 13.75rem;
  }
  .different .swiper-pagination02 span {
    width: 1.125rem;
    height: 1.125rem;
    margin: 0 0.625rem;
    background: #aeaeae;
    border-radius: 50%;
    opacity: 1;
  }
  .different .swiper-pagination02 .swiper-pagination-bullet-active {
    background: #f74845;
  }
  .course-bg {
    margin: 0 0 -8.125rem;
  }
  .course-balloon {
    position: relative;
    z-index: 10;
    width: 31.4375rem;
    margin: -0.625rem auto 1.25rem;
  }
  .course h2 {
    width: 40.625rem;
    margin: 0 auto 3.75rem;
  }
  .course-thumbnail {
    margin: 0 0 0.8125rem;
  }
  .course-thumbnail .swiper-slide {
    width: 13.125rem !important;
    margin: 0 1.875rem 0 0;
  }
  .course-thumbnail .swiper-slide:last-child {
    margin: 0;
  }
  .course .sketchfab-embed-wrapper, .course .course-movie {
    position: absolute;
    z-index: 10;
    bottom: 33.4375rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 43.125rem;
    height: 30rem;
  }
  .course .sketchfab-embed-wrapper-basic, .course .course-movie-basic {
    bottom: 31.25rem;
  }
  .course .sketchfab-embed-wrapper-tecenical, .course .course-movie-tecenical {
    bottom: 26.5625rem;
  }
  .course .sketchfab-embed-wrapper iframe, .course .course-movie iframe {
    width: 100%;
    height: 100%;
  }
  .voice-bg {
    padding: 4.6875rem 0 6.25rem;
    background: #fdfae9;
  }
  .voice h2 {
    width: 29.375rem;
    margin: 0 auto 3.125rem;
  }
  .voice-thumbnail {
    margin: 0 0 1.75rem;
  }
  .voice-thumbnail .swiper-slide {
    width: 9.6875rem !important;
    margin: 0 1.3125rem 0 0;
  }
  .voice-thumbnail .swiper-slide:last-child {
    margin: 0;
  }
  .voice #voice-slideContent .swiper-slide {
    -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.3);
    border-radius: 0.625rem;
  }
  .voice #voice-slideContent .swiper-slide img {
    border-radius: 0.625rem;
  }
  .voice #voice-slideContent .swiper-slide01 {
    margin: 0 0 0 -1.875rem;
  }
  .voice #voice-slideContent .swiper-slide-active.swiper-slide01 {
    margin: 0 1.875rem 0 0;
  }
  .voice #voice-slideContent .swiper-slide-active.swiper-slide02 {
    margin: 0 1.875rem;
  }
  .voice #voice-slideContent .swiper-slide-active.swiper-slide03 {
    margin: 0 1.875rem;
  }
  .voice #voice-slideContent .swiper-slide-active.swiper-slide04 {
    margin: 0 0 0 1.875rem;
  }
  .online-cta {
    position: relative;
    margin: -0.625rem 0;
  }
  .online-cta-button {
    width: 37.5rem;
    position: absolute;
    top: 17.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .online-cta02 {
    position: relative;
    margin: -0.625rem 0 0;
  }
  .online-cta02-button {
    width: 37.5rem;
    position: absolute;
    top: 12.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .footer-fix {
    position: fixed;
    bottom: -0.125rem;
    left: 0;
    z-index: 200;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .kv {
    position: relative;
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
    margin: -5rem 0 0;
    background: #fdfdf2;
  }
  .kv-video {
    position: absolute;
    top: 40.2rem;
    left: 49.7rem;
    width: 28.4375rem;
  }
  .kv-video video {
    width: 28.4375rem;
  }
  .cta {
    position: relative;
    z-index: 10;
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
    margin: -5rem 0 0;
  }
  .cta-btn {
    position: absolute;
    top: 20rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 41.875rem;
  }
  .cta__02 {
    margin: -6.25rem 0 0;
  }
  .cta__03 {
    margin: -2.5rem 0 0;
  }
  .cta__04 {
    margin: -3.125rem 0 0;
  }
  .notice {
    position: relative;
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
  }
  @-webkit-keyframes loop-slide {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-50rem);
      transform: translateX(-50rem);
    }
  }
  @keyframes loop-slide {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-50rem);
      transform: translateX(-50rem);
    }
  }
  .notice-img {
    position: absolute;
    top: 16.25rem;
    left: 35.625rem;
    width: 18.75rem;
  }
  .notice-logo01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 38.75rem;
    margin: 0 calc(50% - 50vw);
    -webkit-animation: loop-slide 20s infinite linear 0s both;
    animation: loop-slide 20s infinite linear 0s both;
  }
  .notice-logo01 img {
    width: 68.75rem;
    margin: 0 1.25rem 0 0;
  }
  .notice-logo02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 50.625rem;
    margin: 0 calc(50% - 50vw);
    -webkit-animation: loop-slide 20s infinite linear 0s both;
    animation: loop-slide 20s infinite linear 0s both;
  }
  .notice-logo02 img {
    width: 87.5rem;
    margin: 0 -1.25rem 0 0;
  }
  .possibility {
    position: relative;
  }
  .possibility-bg {
    padding: 3.8125rem 0 5rem;
  }
  .possibility-img {
    width: 56.25rem;
    margin: 0 auto;
  }
  .possibility-wave {
    position: absolute;
    top: -0.625rem;
    width: 125%;
  }
  .merit {
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
  }
  .curriculum {
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
  }
  .different {
    position: relative;
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
    margin: -0.3125rem 0 0;
  }
  .different-container01-pc svg {
    position: absolute;
    top: 176.25rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 43.75rem;
    height: auto;
    display: block;
    overflow: visible;
    -webkit-box-shadow: 0 0.1875rem 0.925rem 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.1875rem 0.925rem 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 0.6875rem;
  }
  .different-container01-pc image {
    height: 100%;
    width: 100%;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .different-container01-pc #leftimg image {
    -webkit-clip-path: url(#leftclip);
            clip-path: url(#leftclip);
  }
  .different-container01-pc #rightimg image {
    -webkit-clip-path: url(#rightclip);
            clip-path: url(#rightclip);
  }
  .different .swiper-button-prev01, .different .swiper-button-next01 {
    position: absolute;
    outline: 0;
    width: 3.125rem;
    height: 3.125rem;
    z-index: 5;
    border: none;
  }
  .different .swiper-button-prev01 {
    cursor: pointer;
    top: 190.625rem;
    left: 29.375rem;
    background: url(../images/swiper-prev.webp) no-repeat center/contain;
  }
  .different .swiper-button-next01 {
    cursor: pointer;
    top: 190.625rem;
    right: 29.375rem;
    background: url(../images/swiper-next.webp) no-repeat center/contain;
  }
  .different .swiper-pagination01 {
    position: absolute;
    top: 210rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 10.625rem;
    text-align: center;
  }
  .different .swiper-pagination01 span {
    width: 0.8125rem;
    height: 0.8125rem;
    margin: 0 0.125rem;
    background: #aeaeae;
    border-radius: 50%;
    opacity: 1;
  }
  .different .swiper-pagination01 .swiper-pagination-bullet-active {
    background: #25ad7c;
  }
  .different-container02-pc svg {
    position: absolute;
    top: 219.375rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 43.75rem;
    height: auto;
    display: block;
    overflow: visible;
    -webkit-box-shadow: 0 0.1875rem 0.925rem 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.1875rem 0.925rem 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 0.6875rem;
  }
  .different-container02-pc image {
    height: 100%;
    width: 100%;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .different-container02-pc #leftimg02 image {
    -webkit-clip-path: url(#leftclip);
            clip-path: url(#leftclip);
  }
  .different-container02-pc #rightimg02 image {
    -webkit-clip-path: url(#rightclip);
            clip-path: url(#rightclip);
  }
  .different .swiper-button-prev02, .different .swiper-button-next02 {
    position: absolute;
    outline: 0;
    width: 3.125rem;
    height: 3.125rem;
    z-index: 5;
    border: none;
  }
  .different .swiper-button-prev02 {
    cursor: pointer;
    top: 234.375rem;
    left: 29.375rem;
    background: url(../images/swiper-prev02.webp) no-repeat center/contain;
  }
  .different .swiper-button-next02 {
    cursor: pointer;
    top: 234.375rem;
    right: 29.375rem;
    background: url(../images/swiper-next02.webp) no-repeat center/contain;
  }
  .different .swiper-pagination02 {
    position: absolute;
    top: 253.125rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 10.625rem;
    text-align: center;
  }
  .different .swiper-pagination02 span {
    display: inline-block;
    width: 0.8125rem;
    height: 0.8125rem;
    margin: 0 0.125rem;
    background: #aeaeae;
    border-radius: 50%;
    opacity: 1;
  }
  .different .swiper-pagination02 .swiper-pagination-bullet-active {
    background: #f74845;
  }
  .course {
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
  }
  .course-bg {
    margin: 4.25rem 0 0;
    background: #fff;
  }
  .course-balloon {
    position: absolute;
    z-index: 10;
    top: -3.125rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 26.125rem;
    margin: -1.875rem auto 0.625rem;
  }
  .course-imgs {
    position: absolute;
    bottom: 11.5625rem;
    left: 22.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 67.5rem;
  }
  .course-imgs div {
    width: 20.75rem;
    height: 15rem;
  }
  .course-imgs .sketchfab-embed-wrapper iframe, .course-imgs .course-movie iframe {
    width: 100%;
    height: 100%;
  }
  .voice-bg {
    padding: 5.6875rem 0 7.5rem;
    background: #fdfae9;
  }
  .voice h2 {
    width: 25.3125rem;
    margin: 0 auto 3.125rem;
  }
  .voice-thumbnail {
    margin: 0 auto 1.125rem;
  }
  .voice-thumbnail #voice-slideNav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .voice-thumbnail .swiper-slide {
    width: 13.125rem !important;
    margin: 0 1.875rem 0 0;
  }
  .voice-thumbnail .swiper-slide:last-child {
    margin: 0;
  }
  .voice #voice-slideContent {
    margin: 0 0 0 5rem;
  }
  .voice #voice-slideContent .swiper-slide {
    width: 65.625rem !important;
  }
  .voice #voice-slideContent .swiper-slide01 {
    margin: 0 0 0 -12.5rem;
  }
  .voice #voice-slideContent .swiper-slide-active.swiper-slide01 {
    margin: 0 12.5rem 0 0;
  }
  .voice #voice-slideContent .swiper-slide-active.swiper-slide02 {
    margin: 0 21.875rem;
  }
  .voice #voice-slideContent .swiper-slide-active.swiper-slide03 {
    margin: 0 31.25rem;
  }
  .voice #voice-slideContent .swiper-slide-active.swiper-slide04 {
    margin: 0 41.25rem;
  }
  .online-cta {
    position: relative;
    z-index: 10;
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
    margin: 0 0 -4.375rem;
  }
  .online-cta-bg {
    background: url(../images/main-bg.webp) no-repeat top left;
    background-size: cover;
  }
  .online-cta-button {
    width: 26.875rem;
    position: absolute;
    top: 8.75rem;
    right: 30rem;
  }
  .online-cta02 {
    position: relative;
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
  }
  .online-cta02-button {
    width: 26.875rem;
    position: absolute;
    top: 6.875rem;
    right: 30rem;
  }
  .free {
    width: 112.5rem;
    -webkit-transform: translateX(-11.875rem);
            transform: translateX(-11.875rem);
  }
  .footer-fix {
    position: fixed;
    top: 25rem;
    right: 0;
    z-index: 200;
    width: 6.25rem;
  }
}