@charset "UTF-8";
@keyframes innershow {
  0% {
    opacity: 0;
    transform: translateY(5%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
html {
  font-size: 62.5%;
  background-color: #000;
  overflow: hidden; }

body {
  max-width: 2560px;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック", "Yu Gothic", "Helvetica Neue", Verdana, Meiryo, sans-serif;
  margin: auto;
  overflow-x: hidden;
  position: relative;
  background: url(../img/bg-pattern-07.png) center 0/50% auto repeat;
  min-height: 100vh;
  transition: background-color 1s; }

#error {
  color: #F00;
  background-image: url(../img/mfp_error.gif);
  background-repeat: no-repeat;
  padding-left: 18px;
  background-position: left 36%;
  font-size: 12px;
  line-height: 2; }

.hasbg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center; }

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 555555555555555555;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px; }

.loading .loading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.6s; }

.loading .loading-wrap img {
  width: 70%;
  max-width: 400px;
  display: block; }

.loading.fadeout .loading-wrap {
  transform: translateY(-15%);
  opacity: 0; }

#circleG {
  width: 34px;
  margin: 20px auto;
  overflow: hidden; }

.circleG {
  background-color: #01a7bf;
  float: left;
  height: 7px;
  margin: 0 2px;
  width: 7px;
  animation-name: bounce_circleG;
  animation-duration: 1.0675s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  border-radius: 5px; }

#circleG_1 {
  animation-delay: 0.2095s; }

#circleG_2 {
  animation-delay: 0.4955s; }

#circleG_3 {
  animation-delay: 0.6385s; }

@keyframes bounce_circleG {
  50% {
    background-color: black; } }
@-webkit-keyframes bounce_circleG {
  50% {
    background-color: black; } }
#fullpage {
  z-index: 10; }
  #fullpage .section {
    overflow: hidden; }
    #fullpage .section > .fp-tableCell {
      display: flex;
      align-items: center;
      justify-content: center; }

.fp-tableCell {
  position: relative; }

.ghost-nav {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 200;
  height: 0;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition: background 0.35s linear, height 0.35s ease-in 200ms;
  transition: background 0.35s linear, height 0.35s ease-in 200ms; }
  .ghost-nav a {
    display: block;
    text-align: center;
    color: #01a7bf;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    padding: .8em 2em;
    display: block;
    font-weight: normal; }
    .ghost-nav a:hover {
      text-decoration: none;
      color: #01a7bf; }
  .ghost-nav ul {
    transition: 0.3s;
    transform: translateY(-30px);
    opacity: 0; }
    .ghost-nav ul li {
      opacity: 0;
      transition: 0.5s;
      transform: translate(-5px, -3px); }
      .ghost-nav ul li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .ghost-nav .main-menu-container {
    width: 100%;
    max-width: 400px; }

.clientIE .inner.hasbg {
  max-height: 80%;
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%); }

.hero {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000', GradientType=0); }
  .hero .inner {
    height: 100%;
    width: 90vw;
    max-width: 1600px; }
    .hero .inner > img {
      max-height: 80%;
      width: 100%;
      height: 100%;
      margin: auto;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      display: block;
      object-fit: contain;
      object-position: center top;
      transform: rotateY(0) translateY(-101%);
      opacity: 0;
      transition: 1s;
      transition-delay: 0.2s;
      transition-timing-function: ease; }
  .hero .ani-active img {
    transform: rotateY(360deg) translateY(0);
    opacity: 1;
    transition: 1.2s;
    transition-timing-function: cubic-bezier(0.16, 0.83, 0.2, 0.99); }

@keyframes headshow {
  0% {
    opacity: 0;
    transform: translateY(-101%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.site-header {
  position: fixed;
  animation-delay: 1000ms; }

@keyframes flashing {
  0% {
    color: #01a7bf;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0); }
  25% {
    color: white;
    text-shadow: 0px 0px 10px white; }
  50% {
    color: #01a7bf;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0); }
  70% {
    color: white;
    text-shadow: 0px 0px 10px white; }
  100% {
    color: #01a7bf;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0); } }
.magic-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 1s;
  transform: translate(-50%, 0);
  z-index: 50;
  width: 250px;
  height: 250px;
  cursor: pointer; }
  .magic-btn a {
    display: block;
    width: 50%;
    height: 50%;
    position: absolute;
    z-index: 5;
    left: 25%;
    top: 25%;
    border-radius: 100%;
    overflow: hidden; }
  .magic-btn .btn-graphics {
    transition: 1s;
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    .magic-btn .btn-graphics img {
      width: 250px;
      height: 250px;
      display: block;
      position: absolute;
      top: 0;
      left: 0; }
  .magic-btn .lines,
  .magic-btn .btn {
    transition: 1s; }
  .magic-btn .ray {
    transition: 1s;
    opacity: 0;
    transform: rotate(0deg); }
  .magic-btn .circle {
    transition: 1s;
    opacity: 0;
    transform: rotate(0deg); }
  .magic-btn .ring {
    transition: 1s;
    opacity: 0;
    transform: rotate(0deg); }
  .magic-btn .lines {
    opacity: 0;
    transform: scale(0.9) rotate(0deg); }
  .magic-btn .btn {
    opacity: 0;
    transform: scale(1.5) rotate(0deg); }
  .magic-btn.do {
    background-color: black;
    border-radius: 100%; }
    .magic-btn.do .ray {
      animation: btn-circle 50s linear infinite 0.8s;
      opacity: 1;
      will-change: transform; }
    .magic-btn.do .circle {
      animation: btn-circle-reverse 30s linear infinite 0.4s;
      opacity: 1;
      will-change: transform; }
    .magic-btn.do .ring {
      animation: btn-circle 10s linear infinite 0s;
      opacity: 1;
      will-change: transform; }
    .magic-btn.do .lines,
    .magic-btn.do .btn {
      transition: 1s;
      opacity: 1;
      transform: scale(1); }
    .magic-btn.do a:hover + .btn-graphics {
      transform: scale(1.2);
      transition: 0.2s; }
      .magic-btn.do a:hover + .btn-graphics .lines {
        transform: scale(0.9);
        transition: 0.2s; }
      .magic-btn.do a:hover + .btn-graphics .btn {
        transform: scale(0.7);
        transition: 0.2s; }
  .magic-btn.show {
    overflow: hidden;
    transition-delay: 0.5s;
    background-color: black;
    transition: 3s; }
    .magic-btn.show .btn {
      opacity: 1;
      transition: 0.4s;
      transition-delay: 0.2s;
      transform: scale(0.85); }
    .magic-btn.show .lines {
      opacity: 1;
      transition: 0.4s;
      transition-delay: 0.7s;
      transform: scale(0.9); }
    .magic-btn.show .ring {
      opacity: 1;
      transition: 0.6s;
      transition-delay: 0.8s;
      transform: scale(1); }
    .magic-btn.show .circle {
      opacity: 1;
      transition: 0.6s;
      transition-delay: 0.9s;
      transform: scale(1); }
    .magic-btn.show .ray {
      opacity: 1;
      transition: 0.7s;
      transition-delay: 1s;
      transform: scale(1); }

.small-client .magic-btn a {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background-color: rgba(255, 255, 255, 0.3); }

#fp-nav ul li a.active span {
  background-color: #01a7bf; }

#fp-nav ul li {
  position: relative; }

#fp-nav ul li .fp-tooltip.right {
  position: absolute;
  white-space: nowrap;
  right: 20px;
  font-size: 18px;
  line-height: 1em;
  top: 50%;
  margin-top: -0.5em;
  color: #01a7bf;
  user-select: none; }

@keyframes btn-circle {
  100% {
    transform: rotate(-1turn); } }
@keyframes btn-circle-reverse {
  100% {
    transform: rotate(1turn); } }
.arrow {
  width: 80px;
  height: 36px;
  display: block;
  position: absolute;
  z-index: 30;
  left: 50%;
  margin-left: -40px;
  bottom: 40px; }
  .arrow .st0 {
    fill: none;
    stroke: #169EB4;
    stroke-width: 7.1846;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    opacity: 0;
    animation: doarrow 2s ease infinite 0s; }
    .arrow .st0:nth-child(2) {
      animation-delay: 0.4s; }
    .arrow .st0:nth-child(3) {
      animation-delay: 0.8s; }
@keyframes doarrow {
  0% {
    opacity: 0; }
  40% {
    opacity: 1; }
  80% {
    opacity: 0; } }
.about {
  user-select: none;
  color: white; }
  .about h2 {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 1.6;
    text-align: center;
    user-select: none; }
  .about h3 {
    padding: 4px 0;
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
    user-select: none;
    background: #fff;
    color: #000; }
  .about .content {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    margin-top: 2em;
    color: #01a7bf;
    transform: scale(0.95);
    opacity: 0;
    transition: 0.3s;
    transition-delay: 0s; }
  .about ul li {
    position: relative;
    padding-left: 20px; }
    .about ul li::before {
      position: absolute;
      display: none;
      top: 0;
      bottom: 0;
      left: 0;
      content: "";
      width: 8px;
      height: 8px;
      margin: auto;
      border: 0px;
      border-top: solid 3px #fff;
      border-right: solid 3px #fff;
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
  .about .ani-active .content {
    transform: scale(1);
    opacity: 1;
    transition: 0.6s;
    transition-delay: 0.2s; }

.icon-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  z-index: 3; }

.icon-bg span:before {
  background-color: rgba(255, 255, 255, 0.5); }

.icon-bg .bg-icon-01:before {
  width: 2px;
  top: -2px;
  right: 267px; }

.icon-bg.active .bg-icon-01:before {
  width: 100px;
  top: 34px;
  right: 183px; }

.icon-bg .bg-icon-02:before {
  width: 2px;
  top: -2px;
  right: 369px; }

.icon-bg.active .bg-icon-02:before {
  width: 400px;
  top: 122px;
  right: 46px;
  transition-delay: 0.06s; }

.icon-bg .bg-icon-03:before {
  width: 2px;
  bottom: -2px;
  left: 317px; }

.icon-bg.active .bg-icon-03:before {
  width: 320px;
  bottom: 76px;
  left: 80px;
  transition-delay: 0.06s; }

.bg-icon-01:before,
.bg-icon-02:before,
.bg-icon-03:before {
  position: fixed;
  content: '';
  display: block;
  height: 2px;
  transform: rotate(45deg);
  transition: all 0.28s ease; }

.information h2 {
  font-size: 42px;
  display: block;
  text-align: center;
  line-height: 1.2;
  color: #01a7bf;
  text-transform: capitalize;
  user-select: none; }
.information .btn-box {
  opacity: 0; }
  .information .btn-box a {
    margin: 0 auto; }
.information .ani-active .news-list li {
  opacity: 1;
  transform: translateY(0px);
  transition: 0.6s; }
  .information .ani-active .news-list li:nth-child(1) {
    transition-delay: 0.2s; }
  .information .ani-active .news-list li:nth-child(2) {
    transition-delay: 0.3s; }
  .information .ani-active .news-list li:nth-child(3) {
    transition-delay: 0.4s; }
  .information .ani-active .news-list li:nth-child(4) {
    transition-delay: 0.5s; }
  .information .ani-active .news-list li:nth-child(5) {
    transition-delay: 0.6s; }
.information .ani-active .btn-box {
  opacity: 1;
  transform: translateY(0px);
  transition: 0.4s;
  transition-delay: .8s; }
.information .ani-active .place-list .col {
  opacity: 1;
  transform: translateY(0px);
  transition: 0.6s; }
  .information .ani-active .place-list .col:nth-child(1) {
    transition-delay: 0.5s; }
  .information .ani-active .place-list .col:nth-child(2) {
    transition-delay: 0.6s; }
  .information .ani-active .place-list .col:nth-child(3) {
    transition-delay: 0.7s; }
  .information .ani-active .place-list .col:nth-child(4) {
    transition-delay: 0.8s; }
  .information .ani-active .place-list .col:nth-child(5) {
    transition-delay: 0.9s; }

.news-list {
  width: 90%;
  margin: 25px auto 60px; }
  .news-list li {
    transition: 0.3s;
    opacity: 0;
    transform: translateY(20px);
    margin: 20px auto;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    /*&:before,
    &:after {
        content: "";
        display: block;
        min-width: 120px;
        max-width: 120px;
        background: url(../img/news-list-style.svg) center bottom / 120px 32px no-repeat;
        transform: translateX(3px);
    }
    &:after {
        background: url(../img/news-list-style-after.svg) center bottom / 120px 32px no-repeat;
        transform: translateX(-3px);
    }*/ }
    .news-list li small,
    .news-list li br {
      display: none; }
  .news-list a {
    position: relative;
    width: 100%;
    /*calc( 100% - 250px);*/
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px 10px 20px;
    border-bottom: 2px solid #01a7bf;
    font-size: 14px;
    font-size: 1.4rem; }
    .news-list a::after {
      position: absolute;
      display: block;
      top: 0;
      bottom: 0;
      right: 2%;
      content: "";
      width: 10px;
      height: 10px;
      margin: auto;
      border: 0px;
      border-top: solid 3px #01a7bf;
      border-right: solid 3px #01a7bf;
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .news-list a .date {
      letter-spacing: 2px; }
    .news-list a .title {
      width: calc(100% - 110px);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      letter-spacing: 1px; }
    .news-list a:hover {
      text-decoration: none;
      color: #01a7bf; }

.place-list {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 35px 0 0; }
  .place-list .col {
    transition: 0.3s;
    width: 100%;
    max-width: 22%;
    flex-basis: 22%;
    background-color: #00374c;
    margin-bottom: 2%;
    opacity: 0;
    transform: translateY(30px); }
  .place-list figcaption {
    padding: 20px;
    color: white;
    line-height: 1.5;
    font-size: 14px; }
    .place-list figcaption h3 {
      font-size: 20px;
      line-height: 1.1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 15px; }

.place-more {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end; }
  .place-more:after {
    content: "";
    display: block;
    min-width: 120px;
    max-width: 120px;
    background: url(../img/news-list-style-after.svg) center bottom/120px 32px no-repeat;
    transform: translateX(-3px); }
  .place-more a {
    color: white;
    padding: 6px 15px;
    border-bottom: 2px solid #01a7bf;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase; }
    .place-more a:hover {
      text-decoration: none;
      color: #01a7bf; }

.course h2 {
  font-size: 42px;
  display: block;
  text-align: center;
  line-height: 1.2;
  color: #01a7bf;
  text-transform: capitalize;
  user-select: none; }
.course .inner {
  color: white;
  max-width: 80%;
  display: flex;
  height: 100%;
  position: relative;
  flex-direction: column;
  align-content: center;
  justify-content: center; }
.course .course-slide {
  width: 100%;
  position: relative;
  margin-top: 35px; }
.course .slide-item {
  width: 100%;
  position: relative;
  color: white; }
  .course .slide-item img {
    width: 100%;
    z-index: 2;
    position: relative;
    margin: auto; }
.course .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 30; }
.course .slick-prev.slick-arrow {
  border: 0;
  height: 56px;
  width: 50px;
  background: url(../img/slide-arrow.svg) center center/50px 56px no-repeat;
  left: -65px;
  overflow: hidden;
  text-indent: -999999px; }
.course .slick-next.slick-arrow {
  border: 0;
  height: 56px;
  width: 50px;
  background: url(../img/slide-arrow.svg) center center/50px 56px no-repeat;
  transform: rotateY(180deg);
  right: -65px;
  overflow: hidden;
  text-indent: -999999px; }
.course .slide-headling {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  z-index: 5;
  padding: 40px;
  text-align: center;
  text-shadow: 0 0.1em 0.5em rgba(0, 0, 0, 0.2); }
  .course .slide-headling img {
    max-width: 300px;
    width: 100%;
    margin-bottom: 30px; }
  .course .slide-headling h3 {
    font-size: 75px;
    display: block;
    text-align: center;
    line-height: 1.3; }
  .course .slide-headling h4 {
    font-size: 32px;
    display: block;
    text-align: center;
    line-height: 1.3; }
  .course .slide-headling p {
    max-width: 600px;
    text-align: center;
    margin: auto;
    margin-top: 40px; }

section.video h2 {
  font-size: 48px;
  text-align: center;
  color: #01a7bf;
  text-transform: capitalize;
  margin-bottom: 35px;
  line-height: 1.2;
  user-select: none; }

.video-content {
  max-width: 1000px;
  margin: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.3s;
  position: relative; }
  .video-content:after {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.5); }
  .video-content .magic-btn {
    background-color: transparent;
    transform: translate(-50%, -50%);
    z-index: 5; }
  .video-content img {
    position: relative;
    z-index: 1; }

.video .ani-active .video-content {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s;
  transition-delay: 0.2s; }

.lightbox {
  background-color: rgba(0, 0, 0, 0.94);
  overflow: hidden;
  position: fixed;
  display: none;
  z-index: 10000000;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0; }

.lightbox-container {
  position: absolute;
  max-width: 960px;
  width: 100%;
  transform: translate(-50%, -50%);
  display: block;
  height: auto;
  z-index: 10;
  top: 50%;
  left: 50%;
  padding: 0 20px; }

.lightbox-close {
  text-transform: uppercase;
  background: transparent;
  position: absolute;
  font-weight: 300;
  font-size: 12px;
  display: block;
  border: none;
  color: white;
  top: -30px;
  right: 20px; }
  .lightbox-close:hover {
    color: #01a7bf; }

.video-container {
  padding-bottom: 56.25%;
  position: relative;
  padding-top: 30px;
  overflow: hidden;
  height: 0; }

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0; }

.product h2 {
  font-size: 48px;
  text-align: center;
  color: #01a7bf;
  text-transform: capitalize;
  margin-bottom: 35px;
  line-height: 1.2;
  user-select: none; }
.product .ani-active li {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s;
  transition-delay: 0.2s; }

.product-content {
  width: 100%;
  margin-top: 35px;
  padding: 0 7%; }
  .product-content img {
    width: 1.2em;
    height: 1.2em;
    display: block;
    transform: rotate(180deg); }
  .product-content li {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    background: -moz-linear-gradient(left, rgba(0, 15, 22, 0.95) 0%, rgba(0, 15, 22, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 15, 22, 0.95) 0%, rgba(0, 15, 22, 0) 100%);
    background: linear-gradient(to right, rgba(0, 15, 22, 0.95) 0%, rgba(0, 15, 22, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2000f16', endColorstr='#00000f16', GradientType=1); }
    .product-content li:not(:last-child) {
      margin-bottom: 20px; }
    .product-content li a {
      padding: 30px 30px 30px 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #01a7bf;
      transition: 0.3s; }
      .product-content li a:hover {
        text-decoration: none;
        color: white; }
    .product-content li .prod_name {
      font-size: 64px;
      line-height: 1.2; }
      .product-content li .prod_name span {
        display: block;
        font-size: 0.5em; }
    .product-content li .prod_more {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      line-height: 1; }
      .product-content li .prod_more img {
        margin-left: 10px; }

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: rgba(255, 255, 255, 0.5); }
  footer .link-list {
    display: flex; }
  footer a {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    line-height: 1;
    padding: 5px 20px; }
    footer a:not(:last-child) {
      border-right: 1px solid rgba(255, 255, 255, 0.2); }
    footer a:hover {
      text-decoration: none;
      color: #01a7bf; }

#fp-nav.fp-right {
  right: 30px; }

.information .fp-tableCell,
.privacy-policy .fp-tableCell,
.company .fp-tableCell,
.contact-us .fp-tableCell {
  display: table-cell !important; }
.information .inner,
.privacy-policy .inner,
.company .inner,
.contact-us .inner {
  padding: 100px 20px;
  color: white; }

.company .fp-tableCell {
  position: relative;
  z-index: 5; }

::selection {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.8); }

.section-title {
  font-size: 42px;
  display: block;
  text-align: center;
  line-height: 1.2;
  color: #01a7bf;
  text-transform: capitalize;
  user-select: none;
  font-weight: bold;
  margin-bottom: 1em; }

@keyframes onshow {
  0% {
    opacity: 0;
    transform: translateY(101%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.bnr-fix-box {
  position: fixed;
  bottom: 6%;
  right: 8%;
  transition: all .2s;
  animation: onshow .4s forwards;
  animation-delay: 1500ms;
  opacity: 0;
  z-index: 10000;
  cursor: pointer; }
  .bnr-fix-box a {
    display: block; }
  .bnr-fix-box img {
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 50%; }
    .bnr-fix-box img:hover {
      transform: scale(1.1); }

.notice-box {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
  text-align: center; }

@media (max-width: 1680px) {
  .information .ani-active .place-list .col figure {
    overflow: hidden;
    position: relative; }
    .information .ani-active .place-list .col figure:before {
      content: "";
      z-index: 3;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      background-color: rgba(0, 0, 0, 0.6);
      transition: 0.3s; }
  .information .ani-active .place-list .col:hover figure:before {
    opacity: 0; }
  .information .ani-active .place-list .col:hover figcaption {
    transform: translateY(101%); } }
@media (max-width: 1400px) {
  .magic-btn {
    width: 220px;
    height: 220px; }

  .magic-btn .btn-graphics img {
    width: 220px;
    height: 220px; }

  .about h2 {
    font-size: 52px; }

  .about .content {
    font-size: 18px; }

  .information .inner {
    padding: 0 7%; }

  .information h2,
  section.video h2,
  .product h2,
  .course h2 {
    font-size: 34px; }

  #fp-nav ul li .fp-tooltip.right {
    font-size: 16px; }

  .section-title {
    font-size: 28px; } }
@media (max-width: 1200px) {
  #fp-nav {
    display: none; }

  .ghost-nav {
    display: flex; }

  .header-nav {
    display: none; }

  .about h2 {
    font-size: 42px; }

  .about .content {
    font-size: 16px; } }
@media (max-width: 1024px) {
  .information .ani-active .place-list .col {
    user-select: none; }
    .information .ani-active .place-list .col:hover figcaption {
      transform: none; }
    .information .ani-active .place-list .col:hover figure:before {
      opacity: 1; }

  #fp-nav ul li .fp-tooltip.right {
    font-size: 14px; }

  #fullpage {
    touch-action: auto !important; } }
@media (max-width: 860px) {
  .hero .inner {
    width: 100vw; }

  .bg-icon-01:before {
    background-color: #01a7bf !important; }

  .bg-icon-02:before {
    background-color: rgba(255, 255, 255, 0.1) !important; }

  .bg-icon-03:before {
    background-color: rgba(255, 255, 255, 0.2) !important; } }
@media (max-width: 768px) {
  .about h2 {
    font-size: 32px;
    font-size: 3.2rem; }
  .about h3 {
    font-size: 24px;
    font-size: 2.4rem; }

  .bnr-fix-box a {
    width: 80%; } }
@media (max-width: 767px) {
  .bnr-fix-box {
    display: none; }

  .information ul li:nth-of-type(4), .information ul li:nth-of-type(5) {
    display: none; } }
@media (max-width: 700px) {
  .loading .loading-wrap img {
    width: 50%;
    max-width: 250px; }

  .hero .inner img {
    width: 130vw;
    left: -15vw;
    max-width: none; }

  .about h2 {
    font-size: 18px;
    font-size: 1.8rem; }
  .about h3 {
    font-size: 16px;
    font-size: 1.6rem; }
  .about .content {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left; } }
@media (max-width: 500px) {
  .hero .inner img {
    width: 140vw;
    left: -20vw; }

  .information h2 {
    font-size: 28px; }

  .news-list {
    width: 100%;
    margin: 6px auto 28px; }
    .news-list a {
      padding: 2px;
      flex-wrap: wrap; }
      .news-list a .date {
        width: 100%;
        min-width: inherit;
        max-width: inherit; }
      .news-list a .title {
        width: 90%; }

  .magic-btn {
    top: 45%; }

  .video-content .magic-btn {
    top: 50%; }

  .video-content .magic-btn {
    width: 200px;
    height: 200px; }

  .video-content .magic-btn .btn-graphics img {
    width: 200px;
    height: 200px; }

  .video-content {
    height: 60vw;
    position: relative; }
    .video-content img {
      width: 100%;
      height: 100%;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      object-fit: cover;
      object-position: center; }

  #fp-nav ul li .fp-tooltip.right {
    font-size: 12px; }

  .section-title {
    font-size: 28px; } }
@media (max-width: 350px) {
  .about h2 {
    font-size: 16px;
    font-size: 1.6rem; }

  .about h3 {
    font-size: 14px;
    font-size: 1.4rem; }

  .about .content {
    font-size: 11px;
    font-size: 1.1rem; } }

/*# sourceMappingURL=top.css.map */