@charset "UTF-8";
/*default*/
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700");
@import url("https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,700");
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.att3 {
  padding-left: 0.4em;
  text-indent: 0.8em;
}

/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Expanded CSS Variables */
.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);
  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);
  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));
  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));
  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));
  /* Absolute distance from center, only positive */
  --distance: calc( (var(--char-offset) * var(--char-offset)) / var(--char-center) );
  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.center {
  text-align: center;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.scroll {
  content: "";
  position: relative;
  height: 50px;
  width: 1px;
  background: #ccc;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .scroll {
    height: 30px;
  }
}
.scroll .in {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  -webkit-animation: masking 2s ease infinite;
  animation: masking 2s ease infinite;
}
@media only screen and (max-width: 768px) {
  .scroll .in {
    height: 30px;
  }
}
.scroll .in2 {
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  z-index: 999;
  -webkit-animation: masking 2s ease infinite;
  animation: masking 2s ease infinite;
}
.scroll a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2000;
}

.inview.fadeInup {
  opacity: 0;
}

.inview.fadeInup.active {
  -webkit-animation: fadeInup .5s ease-out;
  animation: fadeInup .5s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.inview.show {
  opacity: 0;
}

.inview.show.active {
  -webkit-animation: show 1s ease-out;
  animation: show 1s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.adelay01 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.adelay02 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.adelay03 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.adelay04 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.adelay05 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.adelay06 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}

.adelay07 {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}

.adelay08 {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}

.adelay09 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}

.adelay10 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.tdelay01 {
  transition-delay: 0.1s !important;
}

.tdelay02 {
  transition-delay: 0.2s !important;
}

.tdelay03 {
  transition-delay: 0.3s !important;
}

.tdelay04 {
  transition-delay: 0.4s !important;
}

.tdelay05 {
  transition-delay: 0.5s !important;
}

.tdelay06 {
  transition-delay: 0.6s !important;
}

.tdelay07 {
  transition-delay: 0.7s !important;
}

.tdelay08 {
  transition-delay: 0.8s !important;
}

.tdelay09 {
  transition-delay: 0.9s !important;
}

.tdelay10 {
  transition-delay: 1s !important;
}

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

@keyframes fadeInup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mt0 {
  margin-top: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mr0 {
  margin-right: 0px;
}

.pt0 {
  padding-top: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.pr0 {
  padding-right: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.parenthesis {
  position: relative;
}

.parenthesis::before,
.parenthesis::after {
  position: absolute;
  top: 0%;
  content: '';
  width: 10px;
  height: 100%;
  border-top: 1px solid #0089cb;
  border-bottom: 1px solid #0089cb;
  box-sizing: border-box;
}

.parenthesis::before {
  left: 0;
  border-left: 1px solid #0089cb;
}

.parenthesis::after {
  right: 0;
  border-right: 1px solid #0089cb;
}

/*スクロールバー全体*/
::-webkit-scrollbar {
  width: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.image100 img {
  width: 100%;
}

@-webkit-keyframes masking {
  0% {
    -webkit-transform: translate(0, -101%);
    transform: translate(0, -101%);
  }
  42%, 58% {
    -webkit-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, 101%);
    transform: translate(0, 101%);
  }
}

@keyframes masking {
  0% {
    -webkit-transform: translate(0, -101%);
    transform: translate(0, -101%);
  }
  42%, 58% {
    -webkit-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, 101%);
    transform: translate(0, 101%);
  }
}
#hero {
  height: 75vh;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #hero {
    height: 75vh;
    width: 100%;
  }
}
#hero .copy {
  position: absolute;
  top: 50%;
  left: 30%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  #hero .copy {
    width: 100%;
    top: 50%;
    left: 60%;
  }
}
#hero .copy p.en {
  font-weight: bold;
  margin: 0 0 1rem 0;
}
#hero .copy p.jp {
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  #hero .copy p.jp {
    font-size: 20px;
    font-size: 2rem;
  }
}
#hero .mark {
  width: 218px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #hero .mark {
    width: 100px;
    top: 50%;
    left: 80%;
  }
}

section#message {
  padding: 10rem 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  section#message {
    padding: 3rem 0;
    width: 100%;
    overflow: hidden;
  }
}
section#message .title {
  text-align: center;
  position: relative;
}
section#message .title p.en {
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  color: #0089cb;
}
@media only screen and (max-width: 768px) {
  section#message .title p.en {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
section#message .title p.jp {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  section#message .title p.jp {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
section#message .title:after {
  content: '';
  display: block;
  margin: 2rem auto 2rem auto;
  text-align: center;
  width: 100px;
  height: 1px;
  background: #ccc;
}
section#message .message_lead {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  section#message .message_lead {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
section#message .earth {
  width: 600px;
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  section#message .earth {
    width: 100%;
  }
}

section#top_nav .inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  section#top_nav .inner {
    display: block;
  }
}
section#top_nav .inner .box {
  width: 33.333333333333%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  section#top_nav .inner .box {
    width: 100%;
  }
}
section#top_nav .inner .box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 999;
}
section#top_nav .inner .box .image {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  section#top_nav .inner .box .image {
    height: 200px;
  }
}
section#top_nav .inner .box .image:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  transition: all .3s ease;
}
section#top_nav .inner .box .image img {
  transition: all 2s ease;
}
section#top_nav .inner .box .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  z-index: 9;
  text-align: center;
}
section#top_nav .inner .box .txt p.en {
  font-weight: bold;
}
section#top_nav .inner .box .txt p.jp {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
}
section#top_nav .inner .box:hover .image:after {
  background: rgba(0, 86, 203, 0.8);
}
section#top_nav .inner .box.box1 {
  border-bottom: 20px solid #0089cb;
}
section#top_nav .inner .box.box1 .image:after {
  background: rgba(0, 137, 203, 0.3);
}
section#top_nav .inner .box.box1:hover .image:after {
  background: rgba(0, 137, 203, 0.8);
}
section#top_nav .inner .box.box2 {
  border-bottom: 20px solid #0056cb;
}
section#top_nav .inner .box.box2 .image:after {
  background: rgba(0, 86, 203, 0.3);
}
section#top_nav .inner .box.box2:hover .image:after {
  background: rgba(0, 86, 203, 0.8);
}
section#top_nav .inner .box.box3 {
  border-bottom: 20px solid #001679;
}
section#top_nav .inner .box.box3 .image:after {
  background: rgba(0, 22, 121, 0.3);
}
section#top_nav .inner .box.box3:hover .image:after {
  background: rgba(0, 22, 121, 0.8);
}
