@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
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;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; }

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity 1.0s ease;
  /* アニメーション時間は 0.8秒 */
  transition: opacity 1.0s ease; }

body.fadeout::after {
  opacity: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

input[type="button"], input[type="text"], input[type="submit"], input[type="email"], textarea {
  -webkit-appearance: none;
  border-radius: 0; }

/*@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);*/
html {
  width: 100%;
  overflow-y: scroll; }

body {
  width: 100%;
  min-width: 980px;
  margin: 0;
  overflow-y: scroll; }
  @media only screen and (max-width: 768px) {
    body {
      min-width: 100%;
      margin: 0; } }

::selection {
  background: #ccd2dc;
  /* Safari用 */ }

::-moz-selection {
  background: #ccd2dc;
  /* Firefox用 */ }

img {
  width: 100%; }

.clearfix:after {
  content: " ";
  display: block;
  clear: both; }

body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: normal;
  overflow: hidden; }

/* ===================================

↑リセット、共通css

=================================== */
/* ===================================

↓ローディング用 css

=================================== */
#pageloading-wrap {
  background: #20334d;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  display: table;
  z-index: 9999; }
  @media only screen and (max-width: 768px) {
    #pageloading-wrap {
      display: none; } }

#pageloading-icon {
  display: table-cell;
  vertical-align: middle; }
  @media only screen and (max-width: 768px) {
    #pageloading-icon {
      display: none; } }

/* ===================================

↓サイドのグローバルナビ用 css

=================================== */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 301; }
  @media only screen and (max-width: 768px) {
    .overlay {
      -webkit-transition: all .3s ease;
      transition: all .3s ease; } }

/*.side-openがjsで付与されたとき*/
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(32, 51, 77, 0.4); }

/* サイドメニュー */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  padding-top: 27vh;
  padding-left: 40px;
  text-align: left;
  font-size: 13px;
  background: #fff;
  z-index: 400;
  transition: 0.5s;
  /*ul*/
  /*↓検索窓*/ }
  @media only screen and (max-width: 768px) {
    .side-menu {
      width: 100%;
      right: -100%;
      text-align: center;
      padding-top: 10vh;
      padding-left: 0;
      z-index: 400; } }
  .side-menu ul {
    /*li a*/ }
    .side-menu ul li a {
      color: #20334d;
      font-size: 14px;
      text-decoration: none;
      letter-spacing: 0.3em;
      line-height: 4em;
      position: relative; }
      @media only screen and (max-width: 768px) {
        .side-menu ul li a {
          line-height: 10vh; } }
      .side-menu ul li a:before, .side-menu ul li a:after {
        position: absolute;
        top: 1.5em;
        content: "";
        display: inline-block;
        width: 0%;
        height: 1px;
        background: #a0aab7;
        transition: 0.2s; }
      .side-menu ul li a:before {
        left: 50%; }
      .side-menu ul li a:after {
        right: 50%; }
    .side-menu ul li a:hover:before,
    .side-menu ul li a:hover:after {
      width: 50%; }
    .side-menu ul li:last-of-type a {
      margin-right: 0; }
  .side-menu dl.search {
    display: none;
    margin-top: 50px;
    position: relative;
    border-bottom: 1px solid #aaa;
    width: 220px;
    height: 30px; }
    @media only screen and (max-width: 768px) {
      .side-menu dl.search {
        display: block;
        width: 80%;
        margin: 10vh auto 0; } }
  .side-menu dl.search dt {
    margin-right: 40px;
    padding: 8px 0 8px 8px; }
  .side-menu dl.search dt input {
    width: 100%;
    height: 15px;
    background-color: none;
    line-height: 15px;
    border: none; }
  .side-menu dl.search dd {
    position: absolute;
    bottom: 5px;
    right: 0; }
  .side-menu dl.search dd button {
    display: block;
    background-color: #fff;
    padding: 0;
    height: 16px;
    width: 16px;
    border: none;
    position: relative;
    cursor: pointer; }
    .side-menu dl.search dd button:before {
      content: "";
      display: block;
      width: 8px;
      height: 8px;
      border: 1px solid #20334d;
      border-radius: 8px;
      float: left;
      margin-top: 0px;
      margin-left: 1px; }
    .side-menu dl.search dd button:after {
      content: "";
      display: block;
      width: 8px;
      height: 1px;
      background-color: #20334d;
      float: right;
      margin-top: 1px;
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg); }

/* サイドメニューここまで */
/* 開閉用ボタン */
.side-menu-btn {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 35px;
  padding: 15px 0 0 12px;
  background: #ffffff;
  cursor: pointer;
  z-index: 500; }
  @media only screen and (max-width: 768px) {
    .side-menu-btn {
      display: block;
      top: 0;
      right: 0;
      width: 39px;
      height: 39px;
      background: #fff;
      padding: 20px 0 0 17px;
      z-index: 400; } }
  .side-menu-btn .trigger,
  .side-menu-btn .trigger span {
    display: inline-block;
    transition: all .2s; }
  .side-menu-btn .trigger {
    position: relative;
    width: 28px;
    height: 19px; }
  .side-menu-btn .trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #20334d; }
  .side-menu-btn .trigger span:nth-of-type(1) {
    top: 1px; }
  .side-menu-btn .trigger span:nth-of-type(2) {
    top: 9px; }
  .side-menu-btn .trigger span:nth-of-type(3) {
    bottom: 1px;
    width: 80%; }
  .side-menu-btn .trigger.active span:nth-of-type(1),
  .side-menu-btn .trigger.active span:nth-of-type(3) {
    width: 10px; }
  .side-menu-btn .trigger.active span:nth-of-type(1) {
    -webkit-transform: translate(20px, 4.5px) rotate(45deg);
    transform: translate(20px, 4.5px) rotate(45deg); }
  .side-menu-btn .trigger.active span:nth-of-type(3) {
    -webkit-transform: translate(20px, -4.5px) rotate(-45deg);
    transform: translate(20px, -4.5px) rotate(-45deg); }

/* メインコンテンツ */
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 300; }
  @media only screen and (max-width: 768px) {
    .wrapper {
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      z-index: 300; } }

/* サイドメニューオープン */
.side-open .wrapper,
.side-open .overlay {
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0); }
  @media only screen and (max-width: 768px) {
    .side-open .wrapper,
    .side-open .overlay {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0); } }

.side-open .side-menu {
  right: 0; }

/* ===================================

↓コンテンツ　ファーストビューcss 

=================================== */
.first_view {
  width: 100%;
  min-width: 1000px;
  height: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3); }
  @media only screen and (max-width: 768px) {
    .first_view {
      min-width: 100%;
      min-height: inherit;
      height: 0;
      padding-bottom: 100vh;
      background: url(../img/top/sp_main.jpg) no-repeat center center;
      background-size: cover; } }

.first_view2 {
  width: 100%;
  min-width: 1000px;
  min-height: 700px;
  height: 100vh;
  background-size: cover;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .first_view2 {
      min-width: 100%;
      min-height: inherit;
      height: 0;
      padding-bottom: 60%;
      background-color: #fff; } }

/*メインイメージ*/
video {
  position: fixed;
  z-index: -100;
  object-fit: cover; }
  @media only screen and (max-width: 768px) {
    video {
      display: none; } }

@media (aspect-ratio: 16 / 9), (min-aspect-ratio: 16 / 9) {
  video {
    width: 100%;
    top: 50%;
    transform: translateY(-50%); } }
@media (max-aspect-ratio: 16 / 9) {
  video {
    height: 100%;
    left: 50%;
    transform: translateX(-50%); } }
.first_view h1 {
  width: 250px;
  overflow: hidden;
  position: absolute;
  top: 30px;
  left: 30px; }
  @media only screen and (max-width: 768px) {
    .first_view h1 {
      z-index: 100;
      width: 190px; } }
  .first_view h1 > a > img {
    width: 160px;
    padding-top: 3px; }
    @media only screen and (max-width: 768px) {
      .first_view h1 > a > img {
        width: 120px; } }
  .first_view h1 span {
    display: block;
    width: 70px;
    float: right; }
    @media only screen and (max-width: 768px) {
      .first_view h1 span {
        width: 55px; } }

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .first_view {
    min-height: 768px;
    height: 768px;
    background: url(../img/top/pad_main.jpg) no-repeat center center;
    background-size: 100% 100%; }

  .first_view2 {
    min-height: 768px;
    height: 768px; } }
.first_view h2 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-feature-settings: "palt";
  font-size: 28px;
  letter-spacing: 0.3em;
  color: #fff;
  position: absolute;
  top: 45%;
  right: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  animation: fadeIn 7.0s 2.0s;
  animation-fill-mode: both; }
  @media only screen and (max-height: 700px) {
    .first_view h2 {
      top: 45%;
      height: 265px;
      font-size: 22px;
      letter-spacing: 0.2em; } }
  @media only screen and (max-width: 768px) {
    .first_view h2 {
      display: none; } }

/* ================== スクロールボタン ================== */
.first_view .scroll a {
  position: absolute;
  color: #fff;
  font-size: 12px;
  bottom: 80px;
  right: 0;
  letter-spacing: 0.3em;
  z-index: 2;
  display: inline-block;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  text-decoration: none;
  padding-top: 50px; }
  @media only screen and (max-width: 768px) {
    .first_view .scroll a {
      padding: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
      bottom: 30px;
      right: 42vw; } }
  .first_view .scroll a span {
    position: absolute;
    top: 26px;
    left: 20px;
    width: 44px;
    height: 34px;
    margin-left: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-sizing: border-box; }
    @media only screen and (max-width: 768px) {
      .first_view .scroll a span {
        width: 44px;
        height: 10px;
        left: -20px;
        top: 40px; } }
    .first_view .scroll a span:after {
      content: "";
      display: block;
      position: absolute;
      bottom: 1px;
      right: -3px;
      width: 10px;
      height: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.8);
      -webkit-transform: rotate(35deg);
      transform: rotate(35deg); }
      @media only screen and (max-width: 768px) {
        .first_view .scroll a span:after {
          display: none; } }

.first_view .scroll a {
  padding-top: 50px; }
  @media only screen and (max-width: 768px) {
    .first_view .scroll a {
      padding-top: 10px; } }

.first_view .scroll a span {
  animation: sdb 1.5s infinite;
  -webkit-animation: sdb 1.5s infinite;
  box-sizing: border-box; }
  @media only screen and (max-width: 768px) {
    .first_view .scroll a span {
      animation: sdb_sp 1.5s infinite;
      -webkit-animation: sdb_sp 1.5s infinite; } }

@-webkit-keyframes sdb {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: rotate(0deg) translate(20px);
    -webkit-transform: rotate(0deg) translate(20px);
    opacity: 0; } }
@keyframes sdb {
  0% {
    transform: rotate(0deg) translate(0);
    -webkit-transform: rotate(0deg) translate(0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: rotate(0deg) translate(20px);
    -webkit-transform: rotate(0deg) translate(20px);
    opacity: 0; } }
@keyframes sdb_sp {
  0% {
    transform: rotate(90deg) translate(0);
    -webkit-transform: rotate(90deg) translate(0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: rotate(90deg) translate(40px);
    -webkit-transform: rotate(90deg) translate(40px);
    opacity: 0; } }
/* ================== スクロールボタンここまで ================== */
.first_view header nav {
  width: 835px;
  height: 100px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 200; }
  @media only screen and (max-width: 768px) {
    .first_view header nav {
      display: none; } }
  @media only screen and (max-height: 700px) {
    .first_view header nav {
      font-size: 24px;
      height: 80px; } }
  .first_view header nav ul li a {
    color: #fff;
    letter-spacing: 0.5em;
    text-decoration: none;
    display: inline-block;
    float: left;
    font-size: 15px;
    margin-right: 90px;
    padding: 15px 0;
    text-align: center;
    line-height: 1.5em;
    position: relative;
    transition: 0.3s;
    /*@media only screen and (max-width:768px) {
    	font-size: 2.5vw;
    	padding: 2% 0;
    	margin-right: 2.2vw;
    }*/ }
    .first_view header nav ul li a:after {
      position: absolute;
      bottom: 4px;
      left: 0;
      content: '';
      width: 95%;
      height: 1px;
      background: rgba(255, 255, 255, 0.7);
      transform: scale(0.3, 1);
      transform-origin: center top;
      transition: transform .3s; }
    .first_view header nav ul li a:hover:after {
      transform: scale(1, 1); }
  .first_view header nav ul li:first-of-type a:after {
    transform: scale(0.4, 1); }
  .first_view header nav ul li:first-of-type a:hover:after {
    transform: scale(1, 1); }
  .first_view header nav ul li:last-of-type a {
    margin-right: 0; }
    .first_view header nav ul li:last-of-type a:after {
      transform: scale(0.2, 1); }
    .first_view header nav ul li:last-of-type a:hover:after {
      transform: scale(1, 1); }

.search_wrap {
  position: absolute;
  top: 30px;
  right: -175px;
  height: 25px;
  width: 200px;
  overflow: hidden;
  transition: .5s;
  /*.search*/ }
  @media only screen and (max-width: 768px) {
    .search_wrap {
      display: none; } }
  .search_wrap .search {
    position: relative;
    width: 25px;
    height: 25px;
    background-color: #20334d;
    float: left;
    transition: .3s;
    cursor: pointer;
    top: -16px; }
    .search_wrap .search:before {
      content: "";
      display: block;
      position: absolute;
      width: 8px;
      height: 8px;
      top: 5px;
      left: 5px;
      border: 1px solid #fff;
      border-radius: 8px; }
    .search_wrap .search:after {
      content: "";
      display: block;
      position: absolute;
      width: 8px;
      height: 1px;
      background-color: #fff;
      bottom: 9px;
      right: 5px;
      transform: rotate(45deg); }
  .search_wrap input.search_box {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 170px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 5px;
    -webkit-appearance: none; }
  .search_wrap input::-webkit-input-placeholder {
    color: #20334d; }

/*.search_wrap*/
.search_wrap_active {
  right: 0; }

/* ===================================

↓コンテンツ

=================================== */
/* ------------------エリア1*/
#area01 {
  background-color: #101e37;
  overflow: hidden;
  width: 100%;
  min-width: 1000px;
  /*.box01*/
  /*.box02*/
  /*ブロックアニメーションのブロック部分、jsで.animateがついた時のCSS*/ }
  @media only screen and (max-width: 768px) {
    #area01 {
      min-width: 100%;
      height: 750px;
      background-color: #fff; } }
  #area01 .box01 {
    width: 50%;
    min-width: 500px;
    background: url(../img/top/about_bg.jpg) center top no-repeat;
    height: 100%;
    background-size: cover;
    float: right;
    color: #fff;
    position: relative;
    /*p a*/ }
    @media only screen and (max-width: 768px) {
      #area01 .box01 {
        width: 100%;
        min-width: 100%;
        height: auto;
        padding-bottom: 70px;
        float: none; } }
    #area01 .box01 .inner {
      position: absolute;
      top: 50%;
      left: 16%;
      -webkit-transform: translateY(-50%);
      /* Safari用 */
      transform: translateY(-50%);
      overflow: hidden;
      width: 440px; }
      @media only screen and (max-width: 768px) {
        #area01 .box01 .inner {
          position: static;
          -webkit-transform: none;
          /* Safari用 */
          transform: none;
          width: 80%;
          margin: 0 auto; } }
    #area01 .box01 h3 {
      font-size: 22px;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      float: right;
      margin-left: 80px;
      letter-spacing: 0.2em; }
      @media only screen and (max-width: 768px) {
        #area01 .box01 h3 {
          font-size: 6.5vw;
          width: 100%;
          letter-spacing: 0.1em;
          text-align: center;
          -webkit-writing-mode: horizontal-tb;
          -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
          float: none;
          margin: 80px 0 0; } }
    #area01 .box01 p {
      font-size: 14px;
      line-height: 3em;
      letter-spacing: 0.1em;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      float: right;
      padding-top: 70px; }
      @media only screen and (max-width: 768px) {
        #area01 .box01 p {
          font-size: 14px;
          -webkit-writing-mode: horizontal-tb;
          -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
          line-height: 3em;
          margin-top: 50px;
          float: none;
          padding-top: 0; }
          #area01 .box01 p br {
            display: none; } }
    #area01 .box01 .link_btn a {
      color: #000;
      font-size: 14px;
      text-decoration: none;
      display: block;
      background-color: #fff;
      width: 170px;
      text-align: center;
      line-height: 3.5em;
      letter-spacing: 0.2em;
      position: absolute;
      bottom: 80px;
      left: -85px;
      z-index: 2;
      transition: 0.5s;
      box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.4);
      /*&:hover*/ }
      @media only screen and (max-width: 768px) {
        #area01 .box01 .link_btn a {
          bottom: -22px;
          left: 0;
          right: 0;
          margin: 0 auto;
          box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1); } }
      #area01 .box01 .link_btn a:after {
        content: "";
        display: block;
        width: 12px;
        height: 1px;
        border-bottom: 1px solid #aaa;
        position: absolute;
        right: 25px;
        bottom: 24px;
        transition: 0.5s; }
      #area01 .box01 .link_btn a:before {
        content: "";
        display: block;
        width: 6px;
        height: 1px;
        border-bottom: 1px solid #aaa;
        position: absolute;
        right: 24px;
        bottom: 25px;
        transform: rotate(30deg);
        transition: 0.5s; }
      #area01 .box01 .link_btn a:hover {
        bottom: 90px;
        box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.2); }
        @media only screen and (max-width: 768px) {
          #area01 .box01 .link_btn a:hover {
            bottom: -20px;
            box-shadow: 0px 30px 40px rgba(0, 0, 0, 0); } }
        #area01 .box01 .link_btn a:hover:after {
          right: 18px; }
        #area01 .box01 .link_btn a:hover:before {
          right: 17px; }
  #area01 .box02 {
    width: 50%;
    min-width: 500px;
    min-height: 768px;
    height: 100vh;
    float: left;
    position: relative;
    overflow: hidden;
    /*ブロックアニメーションのブロック部分*/ }
    @media only screen and (max-width: 768px) {
      #area01 .box02 {
        width: 100%;
        min-width: 100%;
        min-height: 120vw;
        height: 60vw;
        float: none; } }
    #area01 .box02:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      background-color: #101e37; }
  #area01 .box02.animate:after {
    animation: secondaryImageOverlayIn 0.1s 0s cubic-bezier(0.77, 0, 0.175, 1), secondaryImageOverlayOut 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    animation-fill-mode: both; }
    @media only screen and (max-width: 768px) {
      #area01 .box02.animate:after {
        animation: none; } }
  #area01 .box02 img {
    position: absolute;
    width: 800px;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translateX(-50%) translateY(-50%); }
    @media only screen and (max-width: 768px) {
      #area01 .box02 img {
        width: 100%;
        top: 40%; } }
  #area01 .box02.animate img {
    /*jsで.animateがついた時、写真がフェードイン*/
    animation: fadeIn 3.0s 0s;
    animation-fill-mode: both; }

/* #area01*/
/*ipadだけエリア１調整*/
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #area01 .box01 h3 {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    float: none;
    margin-left: 0px; }
  #area01 .box01 p {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    float: none; }
    #area01 .box01 p br {
      display: none; }

  #area01 .box02 img {
    width: 700px;
    top: auto;
    left: -10%;
    min-height: 0;
    min-width: 0;
    transform: none; } }
/*縦組レイアウトバグ　IEのみ対応CSS*/
@media all and (-ms-high-contrast: none) {
  #area01 h3 {
    width: 20px;
    padding-right: 10px;
    /* IE10以上 */ } }
/* ------------------エリア2 (加工技術)*/
#area02 {
  width: 100%;
  min-width: 1000px;
  background-color: #fff;
  padding-top: 250px;
  position: relative;
  /*h3*/
  /*.tec_main*/
  /*ブロックアニメーションのブロック部分、jsで.animateがついた時のCSS*/
  /*.inner*/ }
  @media only screen and (max-width: 768px) {
    #area02 {
      min-width: 100%; } }
  #area02 h3 {
    font-size: 22px;
    width: 22px;
    height: 142px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-feature-settings: "palt";
    letter-spacing: 0.6em;
    position: absolute;
    left: 0;
    right: 0;
    top: 180px;
    bottom: 0;
    margin: 0 auto; }
    @media only screen and (max-width: 768px) {
      #area02 h3 {
        top: 100px;
        font-size: 20px;
        width: 20px; } }
    #area02 h3:before {
      content: "";
      display: block;
      width: 1px;
      height: 100px;
      background-color: #c9c9c9;
      position: absolute;
      top: -45px;
      right: -20px; }
      @media only screen and (max-width: 768px) {
        #area02 h3:before {
          height: 80px;
          top: -30px;
          right: -15px; } }
    #area02 h3:after {
      content: "";
      display: block;
      width: 1px;
      height: 100px;
      background-color: #c9c9c9;
      position: absolute;
      bottom: -30px;
      left: -20px; }
      @media only screen and (max-width: 768px) {
        #area02 h3:after {
          height: 80px;
          bottom: -5px;
          left: -15px; } }
  #area02 .tec_main {
    width: 95%;
    min-width: 1000px;
    position: relative;
    float: right;
    overflow: hidden;
    margin-top: 180px;
    /*ブロックアニメーションのブロック部分*/ }
    @media only screen and (max-width: 768px) {
      #area02 .tec_main {
        width: 1vw;
        min-width: 100%;
        float: none;
        border-left: 9.5vw solid #fff;
        margin-top: 50px;
        box-sizing: border-box; } }
    #area02 .tec_main:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      background-color: #101e37; }
  #area02 .tec_main.animate:after {
    animation: secondaryImageOverlayIn 0.6s 0s cubic-bezier(0.77, 0, 0.175, 1), secondaryImageOverlayOut 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    animation-fill-mode: both; }
  #area02 .tec_main.animate img {
    /*jsで.animateがついた時、写真がフェードイン*/
    animation: fadeIn 5.0s 0.1s, scale 4.0s 0.4s;
    animation-fill-mode: both; }
  #area02 .inner {
    clear: both;
    width: 1000px;
    height: 650px;
    margin: 0 auto;
    position: relative;
    /*.tec_copy*/ }
    @media only screen and (max-width: 768px) {
      #area02 .inner {
        width: 90%;
        height: 120vw; } }
    #area02 .inner .tec_copy {
      position: absolute;
      top: -80px;
      width: 350px;
      margin-left: 50px;
      padding-top: 80px;
      background-color: #fff;
      /*.link_btn */ }
      @media only screen and (max-width: 768px) {
        #area02 .inner .tec_copy {
          position: static;
          width: 90%;
          margin: 30px auto;
          padding-top: 0; } }
      #area02 .inner .tec_copy p {
        font-size: 14px;
        text-align: justify;
        text-justify: inter-ideograph;
        letter-spacing: 0.06em;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        width: 140px;
        height: 330px;
        line-height: 2.5em;
        position: absolute;
        left: 0;
        right: 0;
        top: 70px;
        bottom: 0;
        margin: 0 auto; }
        @media only screen and (max-width: 768px) {
          #area02 .inner .tec_copy p {
            -webkit-writing-mode: horizontal-tb;
            -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
            width: 100%;
            height: auto;
            margin-bottom: 20px;
            position: static; } }
      #area02 .inner .tec_copy .link_btn {
        position: relative;
        width: 170px;
        margin: 380px auto 0;
        border-bottom: 1px solid #aaa;
        overflow: hidden;
        /* 上のボーダー */
        /*a*/ }
        @media only screen and (max-width: 768px) {
          #area02 .inner .tec_copy .link_btn {
            border: 1px solid #aaa;
            margin-top: 0; } }
        #area02 .inner .tec_copy .link_btn:before {
          content: '';
          position: absolute;
          background: #aaa;
          /*線の色*/
          top: 0;
          left: -170px;
          width: 170px;
          height: 1px;
          transition: 0.3s; }
        #area02 .inner .tec_copy .link_btn:hover:before {
          left: 0px; }
          @media only screen and (max-width: 768px) {
            #area02 .inner .tec_copy .link_btn:hover:before {
              left: -170px; } }
        #area02 .inner .tec_copy .link_btn a {
          color: #000;
          font-size: 14px;
          text-decoration: none;
          display: block;
          text-align: center;
          line-height: 3.2em;
          letter-spacing: 0.2em;
          position: relative; }
          #area02 .inner .tec_copy .link_btn a:after {
            content: "";
            display: block;
            width: 12px;
            height: 1px;
            border-bottom: 1px solid #aaa;
            position: absolute;
            right: 25px;
            bottom: 22px;
            transition: 0.3s; }
          #area02 .inner .tec_copy .link_btn a:before {
            content: "";
            display: block;
            width: 6px;
            height: 1px;
            border-bottom: 1px solid #aaa;
            position: absolute;
            right: 24px;
            bottom: 23px;
            transform: rotate(30deg);
            transition: 0.3s; }
          #area02 .inner .tec_copy .link_btn a:hover:after {
            right: 15px; }
          #area02 .inner .tec_copy .link_btn a:hover:before {
            right: 14px; }
    #area02 .inner .tec_copy.animate {
      animation: fadeIn 2.0s 1.0s;
      animation-fill-mode: both; }
    #area02 .inner .fade img {
      width: 215px;
      height: 340px;
      position: absolute;
      top: 100px;
      right: 320px; }
      @media only screen and (max-width: 768px) {
        #area02 .inner .fade img {
          width: 42%;
          height: auto;
          top: 80px;
          left: 5vw; } }
    #area02 .inner .fade2 img {
      width: 215px;
      height: 340px;
      position: absolute;
      top: -80px;
      right: 50px; }
      @media only screen and (max-width: 768px) {
        #area02 .inner .fade2 img {
          width: 42%;
          height: auto;
          top: 20px;
          right: 5vw; } }

/* #area02*/
/*縦組レイアウトバグ　IEのみ対応CSS*/
@media all and (-ms-high-contrast: none) {
  #area02 h3 {
    width: 14px;
    /* IE10以上 */ } }
/* ------------------エリア3 (設備紹介)*/
#area03 {
  width: 100%;
  height: 1300px;
  min-width: 1000px;
  position: relative;
  color: #fff;
  background: url(../img/top/facility_bg.jpg) no-repeat bottom center;
  background-size: 1300px auto;
  background-color: #000;
  /*.inner*/ }
  @media only screen and (max-width: 768px) {
    #area03 {
      min-width: 100%;
      height: auto;
      z-index: -1;
      padding-top: 200px;
      padding-bottom: 50%;
      background-size: 150%; } }
  #area03 .inner {
    width: 1000px;
    margin: 0 auto;
    /*h3*/
    /*p*/
    /*.link_box*/ }
    @media only screen and (max-width: 768px) {
      #area03 .inner {
        width: 90%; } }
    #area03 .inner h3 {
      font-size: 22px;
      width: 22px;
      height: 142px;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      font-feature-settings: "palt";
      margin: 0 auto 80px;
      letter-spacing: 0.6em;
      position: absolute;
      left: 0;
      right: 0;
      top: 180px;
      bottom: 0;
      margin: 0 auto; }
      @media only screen and (max-width: 768px) {
        #area03 .inner h3 {
          font-size: 20px;
          width: 20px;
          top: 150px;
          margin-bottom: 60px; } }
      #area03 .inner h3:before {
        content: "";
        display: block;
        width: 1px;
        height: 100px;
        background-color: #333;
        position: absolute;
        top: -45px;
        right: -20px; }
        @media only screen and (max-width: 768px) {
          #area03 .inner h3:before {
            height: 80px;
            top: -30px;
            right: -15px; } }
      #area03 .inner h3:after {
        content: "";
        display: block;
        width: 1px;
        height: 100px;
        background-color: #333;
        position: absolute;
        bottom: -30px;
        left: -20px; }
        @media only screen and (max-width: 768px) {
          #area03 .inner h3:after {
            height: 80px;
            bottom: -3px;
            left: -15px; } }
    #area03 .inner p {
      font-size: 14px;
      text-align: center;
      line-height: 2.5em;
      letter-spacing: 0.05em;
      margin-bottom: 50px;
      padding-top: 400px; }
      @media only screen and (max-width: 768px) {
        #area03 .inner p {
          width: 90%;
          padding-top: 150px;
          margin: 0 auto 30px;
          text-align: left; }
          #area03 .inner p br {
            display: none; } }
    #area03 .inner .link_box {
      width: 205px;
      height: 300px;
      float: left;
      margin-right: 60px;
      box-sizing: border-box;
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      background-color: rgba(0, 0, 0, 0.7);
      transition: 1.0s; }
      @media only screen and (max-width: 768px) {
        #area03 .inner .link_box {
          width: 90%;
          height: 115px;
          float: none;
          margin: 0 auto 20px; } }
      #area03 .inner .link_box:last-of-type {
        margin-right: 0; }
        @media only screen and (max-width: 768px) {
          #area03 .inner .link_box:last-of-type {
            margin: 0 auto 20px; } }
      #area03 .inner .link_box:hover {
        background-color: rgba(255, 255, 255, 0.05); }
      #area03 .inner .link_box:before {
        content: "";
        display: block;
        background-color: #999;
        width: 30px;
        height: 1px;
        position: absolute;
        top: -1px;
        left: -1px;
        transition: 0.15s; }
      #area03 .inner .link_box:after {
        content: "";
        display: block;
        background-color: #999;
        width: 0px;
        height: 0px;
        position: absolute;
        top: -1px;
        right: -1px;
        transition: 0.15s;
        transition-delay: 0.15s; }
      #area03 .inner .link_box a {
        font-size: 16px;
        box-sizing: border-box;
        display: block;
        width: 100%;
        height: 100%;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: "palt";
        text-decoration: none;
        letter-spacing: 0.3em;
        color: #fff;
        text-align: center;
        padding-right: 90px; }
        @media only screen and (max-width: 768px) {
          #area03 .inner .link_box a {
            -webkit-writing-mode: horizontal-tb;
            -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
            padding-right: 0;
            padding-top: 50px; } }
        #area03 .inner .link_box a:before {
          content: "";
          display: block;
          background-color: #999;
          width: 0px;
          height: 0px;
          position: absolute;
          bottom: -1px;
          right: -1px;
          transition: 0.15s;
          transition-delay: 0.3s; }
        #area03 .inner .link_box a:after {
          content: "";
          display: block;
          background-color: #999;
          width: 0px;
          height: 0px;
          position: absolute;
          bottom: -1px;
          left: -1px;
          transition: 0.15s;
          transition-delay: 0.45s; }
    #area03 .inner .link_box.animate a {
      animation: fadeIn 3.0s 0.1s;
      animation-fill-mode: both; }
    #area03 .inner .link_box:hover:before {
      width: 205px; }
    #area03 .inner .link_box:hover:before {
      width: 205px; }
      @media only screen and (max-width: 768px) {
        #area03 .inner .link_box:hover:before {
          width: 100%; } }
    #area03 .inner .link_box:hover:after {
      width: 1px;
      height: 300px; }
      @media only screen and (max-width: 768px) {
        #area03 .inner .link_box:hover:after {
          display: none; } }
    #area03 .inner .link_box a:hover:before {
      width: 205px;
      height: 1px; }
      @media only screen and (max-width: 768px) {
        #area03 .inner .link_box a:hover:before {
          display: none; } }
    #area03 .inner .link_box a:hover:after {
      width: 1px;
      height: 300px; }
      @media only screen and (max-width: 768px) {
        #area03 .inner .link_box a:hover:after {
          display: none; } }

/*#area03*/
/*縦組レイアウトバグ　IEのみ対応CSS*/
@media all and (-ms-high-contrast: none) {
  #area03 .inner h3 {
    width: 14px;
    /* IE10以上 */ } }
/*消えている状態から現れるアニメーション*/
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*じわっと拡大するアニメーション*/
@keyframes scale {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.05); } }
/*はじめにブロックを伸ばすアニメーション*/
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0; }
  100% {
    width: 100%; } }
/*のび太ブロックを横に追いやるアニメーション*/
@keyframes secondaryImageOverlayOut {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(102%); } }
 /* ===================================

↓フッターcss 

=================================== */
footer {
  width: 100%;
  min-width: 1000px;
  background-color: #fff;
  padding-top: 100px;
  /*.f_inner*/ }
  @media only screen and (max-width: 768px) {
    footer {
      min-width: 100%;
      padding-top: 40px; } }
  footer .f_inner {
    width: 1000px;
    margin: 0 auto;
    /*.contact*/ }
    @media only screen and (max-width: 768px) {
      footer .f_inner {
        width: 90%; } }
    footer .f_inner .read_copy {
      font-size: 20px;
      font-feature-settings: "palt";
      font-weight: 100;
      color: #333;
      line-height: 2em;
      text-align: center;
      letter-spacing: 0.1em;
      margin-bottom: 40px; }
      @media only screen and (max-width: 768px) {
        footer .f_inner .read_copy {
          font-size: 16px;
          line-height: 1.7em;
          text-align: left;
          margin-bottom: 20px; }
          footer .f_inner .read_copy br {
            display: none; } }
    footer .f_inner .contact {
      width: 650px;
      margin: 0 auto 40px;
      overflow: hidden;
      padding-bottom: 30px;
      border-bottom: 1px solid #ddd;
      /*address*/
      /*.form_link*/ }
      @media only screen and (max-width: 768px) {
        footer .f_inner .contact {
          width: 100%; } }
      footer .f_inner .contact address {
        display: block;
        text-align: center;
        width: 340px;
        float: left;
        font-size: 14px; }
        @media only screen and (max-width: 768px) {
          footer .f_inner .contact address {
            width: 100%;
            float: none;
            margin-bottom: 20px;
            font-size: 12px; } }
        footer .f_inner .contact address p:first-child {
          font-size: 30px;
          color: #20334d;
          margin-bottom: 10px; }
          @media only screen and (max-width: 768px) {
            footer .f_inner .contact address p:first-child {
              font-size: 8vw; } }
          footer .f_inner .contact address p:first-child span {
            font-size: 24px; }
      footer .f_inner .contact .form_link {
        float: right;
        margin-right: 30px;
        /*p a*/ }
        @media only screen and (max-width: 768px) {
          footer .f_inner .contact .form_link {
            float: none;
            margin-right: 0;
            width: 100%; } }
        footer .f_inner .contact .form_link p a {
          background: #761616;
          color: #fff;
          display: block;
          font-size: 16px;
          font-weight: bold;
          height: 55px;
          line-height: 55px;
          overflow: hidden;
          position: relative;
          text-align: center;
          letter-spacing: 0.1em;
          text-decoration: none;
          width: 280px; }
          @media only screen and (max-width: 768px) {
            footer .f_inner .contact .form_link p a {
              width: 90%;
              margin: 0 auto;
              font-size: 4vw; } }
          footer .f_inner .contact .form_link p a:after {
            content: '';
            position: absolute;
            top: 18px;
            right: 0;
            display: block;
            width: 30px;
            height: 10px;
            border-bottom: 1px solid #a46464;
            transition: 0.3s; }
          footer .f_inner .contact .form_link p a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            background: #981618; }
          footer .f_inner .contact .form_link p a:hover:after {
            width: 20px; }
          footer .f_inner .contact .form_link p a:hover:before {
            transform: scaleX(1);
            transform-origin: left; }
          footer .f_inner .contact .form_link p a .inner-text {
            position: relative;
            z-index: 3;
            top: 0;
            left: 0;
            display: block;
            width: 100%; }
    footer .f_inner h4 {
      text-align: center;
      font-size: 20px;
      margin-bottom: 16px;
      color: #333; }
    footer .f_inner h4 + p {
      text-align: center;
      padding-right: 10px;
      font-size: 14px;
      margin-bottom: 50px;
      color: #333; }
      footer .f_inner h4 + p br {
        display: none; }
      @media only screen and (max-width: 768px) {
        footer .f_inner h4 + p {
          font-size: 12px;
          text-align: center;
          line-height: 1.5em; }
          footer .f_inner h4 + p br {
            display: block; } }
    footer .f_inner .trademark_copy {
      font-size: 12px;
      text-align: center;
      margin-bottom: 15px;
      font-feature-settings: "palt";
      letter-spacing: 0.02em;
      line-height: 1.5em; }
  footer .under {
    height: 40px;
    background-color: #eeeeee;
    padding-top: 20px;
    /* ul*/ }
    @media only screen and (max-width: 768px) {
      footer .under {
        height: auto;
        height: 50px;
        padding-left: 20px; } }
    footer .under ul {
      margin-left: 20px; }
      @media only screen and (max-width: 768px) {
        footer .under ul {
          margin-left: 0; } }
      footer .under ul li {
        float: left;
        margin-right: 40px; }
        @media only screen and (max-width: 768px) {
          footer .under ul li {
            margin-right: 30px; } }
        footer .under ul li a {
          color: #333;
          font-size: 12px;
          text-decoration: none;
          display: block;
          position: relative;
          transition: 0.3s; }
          footer .under ul li a:before {
            content: "";
            display: block;
            width: 5px;
            height: 4px;
            border: 1px solid #999;
            position: absolute;
            right: -12px;
            top: 4px; }
          footer .under ul li a:after {
            content: "";
            display: block;
            width: 5px;
            height: 4px;
            border-right: 1px solid #999;
            border-bottom: 1px solid #999;
            position: absolute;
            right: -14px;
            top: 7px; }
          footer .under ul li a:hover {
            opacity: 0.7; }
    footer .under p small {
      float: right;
      font-size: 12px;
      margin-right: 20px;
      padding-top: 5px; }
      @media only screen and (max-width: 768px) {
        footer .under p small {
          float: none;
          display: block;
          width: 100%;
          margin-top: 17px; } }
  footer #page-top a {
    height: 40px;
    border-right: 40px solid #20334d;
    border-top: 30px solid transparent;
    position: absolute;
    z-index: 10;
    bottom: 60px;
    right: 0;
    transition: 0.3s; }
    @media only screen and (max-width: 768px) {
      footer #page-top a {
        height: 50px;
        border-right: 30px solid #20334d;
        border-top: 20px solid transparent;
        bottom: 0; } }
    footer #page-top a:hover {
      height: 50px; }
      @media only screen and (max-width: 768px) {
        footer #page-top a:hover {
          height: 55px; } }
    footer #page-top a:before {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      border-top: 1px solid #758191;
      border-right: 1px solid #758191;
      bottom: 22px;
      right: -25px;
      transform: rotate(-45deg);
      transition: 0.3s; }
      @media only screen and (max-width: 768px) {
        footer #page-top a:before {
          right: -20px;
          bottom: 28px; } }
    footer #page-top a:after {
      content: "";
      position: absolute;
      display: block;
      width: 1px;
      height: 15px;
      background-color: #758191;
      bottom: 17px;
      right: -21px;
      transition: 0.3s; }
      @media only screen and (max-width: 768px) {
        footer #page-top a:after {
          right: -16px;
          bottom: 22px; } }
    footer #page-top a:hover:before {
      bottom: 27px; }
    footer #page-top a:hover:after {
      bottom: 22px; }

/*footer　IEの游明朝ズレの対応CSS*/
@media all and (-ms-high-contrast: none) {
  footer {
    /*.f_inner*/
    /*.under*/ }
    footer .f_inner {
      /*.contact*/ }
      footer .f_inner .contact {
        /*address*/
        /*.form_link*/ }
        footer .f_inner .contact address p:first-child {
          padding-top: 4px; }
        footer .f_inner .contact .form_link p a {
          line-height: 60px; }
    footer .under ul li a {
      padding-top: 5px; }

  /*footer*/ }
