@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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/*============================
mixin
============================*/
/*
* keyframes animationの定義
* ※_anim.scssに定義
*/
/*
* keyframesで定義したkeyframes animationの設定
* @include animation(animation_name $time linear infinite);
*/
/*
* css animationの時間とeasing指定
*/
/*
* position:absoluteで縦横中央ぞろえ
*/
/*
* 左右に均等のマージンをとった幅指定
*/
/*============================
easing
============================*/
@font-face {
  font-family: 'fontello';
  src: url("../font/fontello.eot?346051312");
  src: url("../font/fontello.eot?346051312#iefix") format("embedded-opentype"), url("../font/fontello.woff2?346051312") format("woff2"), url("../font/fontello.woff?346051312") format("woff"), url("../font/fontello.ttf?346051312") format("truetype"), url("../font/fontello.svg?346051312#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

i {
  font-family: 'fontello';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* SlierIcons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("../font/slick.eot");
  src: url("../font/slick.eot?#iefix") format("embedded-opentype"), url("../font/slick.woff") format("woff"), url("../font/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
}

i.top:before {
  content: '\e80e';
}
i.news:before {
  content: '\e801';
}
i.office:before {
  content: '\e802';
}
i.people:before {
  content: '\e803';
}
i.pin:before {
  content: '\e804';
}
i.work:before {
  content: '\e805';
}
i.about:before {
  content: '\e806';
}
i.fb:before {
  content: '\e808';
}
i.in:before {
  content: '\e809';
}
i.link:before {
  content: '\e80a';
}
i.close:before {
  content: '\e80b';
}
i.tri:before {
  content: '\e80c';
}

@-webkit-keyframes menu {
  0% {
    -webkit-transform: translate(0, -0.2em);
    -moz-transform: translate(0, -0.2em);
    -ms-transform: translate(0, -0.2em);
    -o-transform: translate(0, -0.2em);
    transform: translate(0, -0.2em);
  }

  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-moz-keyframes menu {
  0% {
    -webkit-transform: translate(0, -0.2em);
    -moz-transform: translate(0, -0.2em);
    -ms-transform: translate(0, -0.2em);
    -o-transform: translate(0, -0.2em);
    transform: translate(0, -0.2em);
  }

  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes menu {
  0% {
    -webkit-transform: translate(0, -0.2em);
    -moz-transform: translate(0, -0.2em);
    -ms-transform: translate(0, -0.2em);
    -o-transform: translate(0, -0.2em);
    transform: translate(0, -0.2em);
  }

  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes ani_h_t_100 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes stanTop {
  0% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeInOutIn {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes rotate_right {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes horizontal {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-10px);
  }
}

@keyframes vertical {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(10px);
  }
}

@keyframes bgSlider {
  0% {
    background-position: 0% 15px;
  }

  100% {
    background-position: 1280px 15px;
  }

  /* 1518pxとは使用した背景画像の長さ */
}

@keyframes bgSliderIntro {
  0% {
    background-position: 0 bottom;
  }

  100% {
    background-position: 1280px bottom;
  }

  /* 1518pxとは使用した背景画像の長さ */
}

@-webkit-keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@-moz-keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/*color*/
/*opacity*/
/*anim*/
html {
  /* font-feature-settings: "palt";*/
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1vw;
  letter-spacing: 0.08vw;
  line-height: 1.8vw;
  color: #000;
  position: relative;
  width: 100%;
  float: left;
  /***********************************
  * debug
  ************************************/
}
body ::selection {
  background: #7c7c7c;
}
body ::-moz-selection {
  background: #7c7c7c;
}
body img::selection {
  background: none;
}
body img::-moz-selection {
  background: none;
}
body .yu {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
}
body #loader {
  width: 100%;
  height: 100%;
  float: left;
  position: fixed;
  z-index: 5000;
  text-align: center;
  background: #1f2c5c;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
}
body #loader .bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2vw;
  background: white;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  z-index: 9999;
}
body #loader .bar.away {
  -webkit-transform: translate(0, 1em);
  -moz-transform: translate(0, 1em);
  -ms-transform: translate(0, 1em);
  -o-transform: translate(0, 1em);
  transform: translate(0, 1em);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
body #loader.away {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
body #line {
  width: 100%;
  height: 100%;
  float: left;
  position: fixed;
  z-index: 5001;
  background: #1f2c5c;
}
body #line .line_area {
  position: relative;
  width: 100%;
  height: 100%;
}
body .mons {
  font-family: "Montserrat";
}
body #wrapper {
  width: 100%;
  float: left;
  position: relative;
  z-index: 2;
}
body #wrapper #main {
  width: 100%;
  float: left;
  position: relative;
}
body #wrapper #main section {
  float: left;
  position: relative;
  overflow: hidden;
}
body #wrapper footer {
  width: 100%;
  float: left;
}
body #more {
  width: 100%;
  height: 1px;
  float: left;
}
body a {
  text-decoration: none;
  display: block;
  outline: none;
  color: #1f2c5c;
  -webkit-transition: 0.06s;
  -moz-transition: 0.06s;
  -o-transition: 0.06s;
  transition: 0.06s;
  transition-timing-function: linear;
}
body a:hover {
  opacity: 0.5;
}
body img {
  width: 100%;
  display: block;
}
body .hide {
  display: none !important;
}
body .banish {
  visibility: hidden !important;
}
body .show {
  -webkit-transform: translate(0, 0%);
  -moz-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  -o-transform: translate(0, 0%);
  transform: translate(0, 0%);
}
body .area {
  width: 100%;
  float: left;
  position: relative;
}
body .btn {
  border: 1px solid white;
  box-sizing: border-box;
  border-radius: 100px;
  background: #1f2c5c;
  color: white;
  padding: 1.25em;
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 1em;
  display: inline-block;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}
body .btn:hover {
  background: white;
  color: #1f2c5c;
  opacity: 1;
}
body .btn i {
  position: absolute;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
body .btn.btn_video {
  border: 2px solid white;
  height: 2.75em;
  line-height: 1.0em;
  padding: 0.65em;
  text-align: center;
  font-size: 1.2em;
  width: 40vw;
}
body .btn.btn_video:hover {
  background: white;
  color: #1f2c5c;
  opacity: 1;
}
body .btn.btn_video i {
  position: relative;
  font-size: 0.75em;
  margin: 0 0.75em 0 0;
  vertical-align: 0.1em;
}
body .wc {
  will-change: transform;
}
body .oh {
  overflow: hidden;
}
body .way, body .way_end {
  opacity: 0;
}
body .way.ani_t, body .way_end.ani_t {
  transform: translate(0, 100px);
}
body .way.ani_b, body .way_end.ani_b {
  transform: translate(0, -100px);
}
body .way.ani_l, body .way_end.ani_l {
  transform: translate(100px, 0);
}
body .way.ani_r, body .way_end.ani_r {
  transform: translate(-100px, 0);
}
body .way.active, body .way_end.active {
  transition-property: opacity, transform;
  transition-duration: .8s;
  opacity: 1;
  transform: translate(0);
}
body .cf:after {
  content: " ";
  display: block;
  clear: both;
}
body .iScrollIndicator {
  border: none !important;
}
body .iScrollVerticalScrollbar {
  width: 2px !important;
}
body .iScrollHorizontalScrollbar {
  height: 2px !important;
}
body .iScrollIndicator {
  background: black !important;
}
body #stats {
  z-index: 5000;
}

/*size*/
/*
$m1:4%;// 15px
$m1_5:$m1 * 1.5;// 22.5px
$m2:$m1 * 2;// 30px
$m3: $m1 * 3;// 45px
$m4: $m1 * 4;// 60px
*/
@media screen and (min-width: 769px) {
  body .pc {
    display: block;
  }
  body .sp {
    display: none;
  }
  body .pc_view_i {
    display: inline-block !important;
  }
  body .sp_view_i {
    display: none !important;
  }
  body .pc_inline {
    display: inline !important;
  }
  body img {
    width: 100%;
  }
  body .btn i {
    top: 0.05em;
    left: 0.2em;
  }
  body #loader {
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #loader.active {
    transform: translateX(-100%);
  }
  body #loader .block {
    width: 13vw;
    height: 5.5vw;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  body #loader .block .tabline {
    margin: 0.5vw 0 0 -0.5vw;
  }
  body #loader .bar {
    height: 1vw;
  }
  body #header {
    position: relative;
    padding: 3vw;
    box-sizing: border-box;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    width: 100%;
    float: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #header.passive {
    opacity: 0;
  }
  body #header h1 {
    width: 100%;
    float: left;
  }
  body #header h1 .logo {
    width: 7.3vw;
    float: left;
  }
  body #header h1 .tagline {
    width: 14.5vw;
    float: left;
    margin: 0 0 0 0.6em;
  }
  body footer {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 500;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    -webkit-transform: translate(0, 10em);
    -moz-transform: translate(0, 10em);
    -ms-transform: translate(0, 10em);
    -o-transform: translate(0, 10em);
    transform: translate(0, 10em);
  }
  body footer.show {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  body footer .inner .bg {
    display: none;
  }
  body footer .inner #footer_scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
    float: left;
  }
  body footer .inner ul {
    width: 100%;
    height: 5.79vw;
    float: left;
    margin: 0 0 0 0;
    background: #1f2c5c;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1vw solid white;
    outline: none;
  }
  body footer .inner ul li {
    width: 8.667vw;
    margin: 0 0.5vw 0vw 0.5vw;
    position: relative;
    display: inline-block;
  }
  body footer .inner ul li a {
    font-size: 5.5em;
    text-align: center;
    color: #3f4c80;
    padding: 0.3vw 0 0 0;
    height: 3.7vw;
  }
  body footer .inner ul li a.current {
    color: #1f2c5c;
  }
  body footer .inner ul li a.current span {
    background: white;
    border-radius: 0 0 0.5vw 0.5vw;
    -webkit-animation: menu 0.3s cubic-bezier(0.16, 0.84, 0.61, 1.01);
    -moz-animation: menu 0.3s cubic-bezier(0.16, 0.84, 0.61, 1.01);
    animation: menu 0.3s cubic-bezier(0.16, 0.84, 0.61, 1.01);
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
  }
  body footer .inner ul li a.current:hover span {
    background: white;
    border-radius: 0 0 0.5vw 0.5vw;
    opacity: 1;
  }
  body footer .inner ul li a:hover {
    cursor: pointer;
    opacity: 1;
  }
  body footer .inner ul li a:hover span {
    background: #2f3d6e;
    border-radius: 0 0 0.5vw 0.5vw;
    opacity: 1;
  }
  body footer .inner ul li a i {
    position: relative;
    display: inline-block;
    top: -0.6vw;
    height: 0.5em;
    z-index: 10;
  }
  body footer .inner ul li a span {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    opacity: 1;
  }
}
/*color*/
/*opacity*/
/*anim*/
/*size*/
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
    line-height: 6.2vw;
  }
  body .pc {
    display: none;
  }
  body .sp {
    display: block;
  }
  body .sp_view_i {
    display: inline-block !important;
  }
  body .pc_view_i {
    display: none !important;
  }
  body img {
    width: 100%;
  }
  body .btn i {
    top: 0.05em;
    left: 0.1em;
  }
  body #loader {
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #loader.active {
    transform: translateX(-100%);
  }
  body #loader .block {
    width: 40vw;
    height: 17vw;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  body #loader .block .tabline {
    margin: 1vw 0 0 -1.5vw;
  }
  body #header {
    position: relative;
    padding: 5.6vw 5.6vw 4vw;
    box-sizing: border-box;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    width: 100%;
    float: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
  }
  body #header.passive {
    opacity: 0;
  }
  body #header h1 {
    width: 100%;
    float: left;
  }
  body #header h1 .logo {
    width: 16.8vw;
    float: left;
  }
  body #header h1 .tagline {
    width: 33.335vw;
    float: left;
    margin: 0 0 0 0.6em;
  }
  body footer {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 5000;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    -webkit-transform: translate(0, 10em);
    -moz-transform: translate(0, 10em);
    -ms-transform: translate(0, 10em);
    -o-transform: translate(0, 10em);
    transform: translate(0, 10em);
  }
  body footer.show {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  body footer .inner .bg {
    background: #1f2c5c;
    height: 19.6vw;
    width: 150%;
    -webkit-transform: translate(0, -25%);
    -moz-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    position: absolute;
    z-index: 1;
    top: 11vw;
    left: -25%;
  }
  body footer .inner .bg:after {
    position: absolute;
    content: " ";
    display: block;
    background: white;
    width: 100%;
    height: 3vw;
    z-index: 10;
    top: 0;
    left: 0;
  }
  body footer .inner #footer_scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 18vw;
    float: left;
    z-index: 10;
  }
  body footer .inner ul {
    width: 138vw;
    float: left;
    margin: 0 0 0 0;
    background: #1f2c5c;
    position: relative;
    overflow: hidden;
    border-top: 3vw solid white;
    outline: none;
  }
  body footer .inner ul li {
    width: 24vw;
    float: left;
    margin: 0 1vw 3vw 1vw;
    position: relative;
  }
  body footer .inner ul li:first-child {
    margin: 0 1vw 3vw 5vw;
  }
  body footer .inner ul li:last-child {
    margin: 0 5vw 3vw 1vw;
  }
  body footer .inner ul li a {
    font-size: 5.5em;
    text-align: center;
    color: #3f4c80;
    cursor: pointer;
  }
  body footer .inner ul li a.current {
    color: #1f2c5c;
  }
  body footer .inner ul li a.current span {
    background: white;
    border-radius: 0 0 2vw 2vw;
    -webkit-animation: menu 0.3s cubic-bezier(0.16, 0.84, 0.61, 1.01);
    -moz-animation: menu 0.3s cubic-bezier(0.16, 0.84, 0.61, 1.01);
    animation: menu 0.3s cubic-bezier(0.16, 0.84, 0.61, 1.01);
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 1;
  }
  body footer .inner ul li a.current:hover {
    opacity: 1;
  }
  body footer .inner ul li a.current:hover span {
    background: white;
    border-radius: 0 0 2vw 2vw;
    opacity: 1;
  }
  body footer .inner ul li a i {
    position: relative;
    display: inline-block;
    top: -1.5vw;
    height: 0.5em;
    z-index: 10;
  }
  body footer .inner ul li a span {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transition-timing-function: cubic-bezier(0.16, 0.84, 0.61, 1.01);
    opacity: 1;
  }
}
