@charset "UTF-8";
/**
 * Config
 */
/**
 * Mixin
 */
/*! 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;
}

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;
}

button, a {
  outline: 0;
}

/**
 * Base
 */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  font-size: 16px;
  font-family: "Ubuntu", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background: #fff;
  line-height: 1.6;
}

a {
  color: #000;
  line-height: 1.6;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img {
  vertical-align: bottom;
}

/**
 * Layout Footer
 */
.l-footer {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 55px;
}

.l-footer a:first-child {
  margin-right: 30px;
}

.l-footer p {
  color: #888888;
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-top: 30px;
  font-weight: 300;
}

/**
 * Layout Header
 */
.l-header {
  z-index: 10;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 999;
  -webkit-transform: translateZ(10px);
          transform: translateZ(10px);
}

/**
 * Layout Main
 */
.l-main {
  z-index: 1;
  position: relative;
}

/*
---
name: Container
category:
  - component
  - component/container
fullWidth: true
---

```html
<div class="c-container" style="background-color: #ccc;">
  <p>Container</p>
</div>
```
*/

/*
---
name: Button
category:
  - component
  - component/button
---

```html
<p><a class="c-button">Button</a></p>
<p><a class="c-button is-selected">Button</a></p>
<p><button class="c-button c-button-large">Button</button></p>
<p><a class="c-button c-button-fullWidth">Button</a></p>
```
*/
.pageHead {
  margin-top: 28px;
  margin-left: 40px;
  margin-bottom: 43px;
  z-index: 1;
  -webkit-transform: translateZ(3px);
          transform: translateZ(3px);
}

.pageHead.pageHead-w {
  color: #fff;
}

.pageHead.pageHead-ab {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
}

.pageHead h1 {
  margin-bottom: 20px;
  visibility: hidden;
}

.pageHead h2 {
  font-weight: bold;
  line-height: 1em;
}

.pageHead p {
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  /*letter-spacing: 0.2em;*/
  letter-spacing: 0.18em;
}

/*
---
name: Grid
category:
  - component
  - component/grid
---

- 12カラムをベースをしたグリッドシステム
- 実際に利用するときは`div.col`は不要

```html
 <style>.col { background-color: #ccc; border: solid 1px #999; }</style>
<div class="c-grid">
  <div class="c-grid_item c-grid_item-1"><div class="col">1</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">2</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">3</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">4</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">5</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">6</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">7</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">8</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">9</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">10</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">11</div></div>
  <div class="c-grid_item c-grid_item-1"><div class="col">12</div></div>
</div>
<div class="c-grid">
  <div class="c-grid_item c-grid_item-4"><div class="col">1</div></div>
  <div class="c-grid_item c-grid_item-4"><div class="col">2</div></div>
  <div class="c-grid_item c-grid_item-4"><div class="col">3</div></div>
</div>
<div class="c-grid c-grid-gutter">
  <div class="c-grid_item c-grid_item-3"><div class="col">1</div></div>
  <div class="c-grid_item c-grid_item-3"><div class="col">2</div></div>
  <div class="c-grid_item c-grid_item-3"><div class="col">3</div></div>
  <div class="c-grid_item c-grid_item-3"><div class="col">4</div></div>
</div>
```
*/
.c-grid {
  display: block;
  width: 100%;
}

.c-grid:after {
  content: "";
  display: block;
  clear: both;
}

.c-grid > .c-grid_item {
  float: left;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-grid > .c-grid_item.c-grid_item-1 {
  width: 8.33333%;
}

.c-grid > .c-grid_item.c-grid_item-2 {
  width: 16.66667%;
}

.c-grid > .c-grid_item.c-grid_item-3 {
  width: 25%;
}

.c-grid > .c-grid_item.c-grid_item-4 {
  width: 33.33333%;
}

.c-grid > .c-grid_item.c-grid_item-5 {
  width: 41.66667%;
}

.c-grid > .c-grid_item.c-grid_item-6 {
  width: 50%;
}

.c-grid > .c-grid_item.c-grid_item-7 {
  width: 58.33333%;
}

.c-grid > .c-grid_item.c-grid_item-8 {
  width: 66.66667%;
}

.c-grid > .c-grid_item.c-grid_item-9 {
  width: 75%;
}

.c-grid > .c-grid_item.c-grid_item-10 {
  width: 83.33333%;
}

.c-grid > .c-grid_item.c-grid_item-11 {
  width: 91.66667%;
}

.c-grid > .c-grid_item.c-grid_item-12 {
  width: 100%;
}

.c-grid.c-grid-gutter {
  width: auto;
  margin-left: -10px;
  margin-right: -10px;
}

.c-grid.c-grid-gutter > .c-grid_item {
  padding-left: 10px;
  padding-right: 10px;
}

/*
---
name: Media
category:
  - component
  - component/media
---

```html
<div class="c-media">
  <div class="c-media_image">
    <img src="" alt="" width="120" height="120" style="background-color: #ccc">
  </div>
  <div class="c-media_body">
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate</p>
  </div>
</div>
<div class="c-media">
  <div class="c-media_image c-media_image-rev">
    <img src="" alt="" width="120" height="120" style="background-color: #ccc">
  </div>
  <div class="c-media_body">
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate</p>
  </div>
</div>
```
*/
.c-media {
  font-size: 14px;
}

.c-media:after {
  content: "";
  display: block;
  clear: both;
}

.c-media_image {
  float: left;
  margin-right: 10px;
}

.c-media_image-rev {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}

.c-media_body {
  overflow: hidden;
}

/*
---
name: Card
category:
  - component
  - component/card
---

```html
<div class="c-card">
  <div class="c-card_image">
    <img src="" alt="" width="120" height="120" style="background-color: #ccc">
  </div>
  <div class="c-card_body">
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate</p>
  </div>
</div>
<div class="c-card">
  <div class="c-card_image c-card_image-rev">
    <img src="" alt="" width="120" height="120" style="background-color: #ccc">
  </div>
  <div class="c-card_body">
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate</p>
  </div>
</div>
```
*/
.c-card {
  background-color: #fcfcfc;
}

.c-card_image > img {
  width: 100%;
  height: auto;
}

.c-card_content {
  padding: 10px;
}

.c-card_title {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
}

.c-card_text {
  font-size: 14px;
}

.c-card_link {
  padding: 10px;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 12px;
}

.c-card_link > a {
  margin: 0 10px;
}

/**
 * Footer
 */
.p-info {
  margin: 0 auto;
}

.p-info:after {
  content: "";
  display: block;
  clear: both;
}

.p-info_itemAnchor {
  position: relative;
}

.p-info_itemAnchor:before {
  content: ' ';
  position: absolute;
  top: 50%;
  right: -11px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: translate(0, -50%) rotate(45deg);
      -ms-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}

.p-info_logo {
  display: block;
}

.p-info_logo img {
  width: 100%;
}

.p-info_copy {
  text-align: center;
}

/**
 * Footer
 */
.p-footer {
  background: #fff;
  position: relative;
  z-index: 2;
}

.p-footer_copy {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999;
  -webkit-transform: translateZ(999px);
          transform: translateZ(999px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.loading_logo {
  width: 200px;
  height: 200px;
  position: relative;
  opacity: 0;
}

.loading_bg {
  background: #666;
  position: absolute;
  top: 15%;
  left: 15%;
  width: 69%;
  height: 58%;
}

.loading_progress {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 69%;
  height: 58%;
  background: #fff;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 1000ms linear 1000ms;
  transition: -webkit-transform 1000ms linear 1000ms;
  transition: transform 1000ms linear 1000ms;
  transition: transform 1000ms linear 1000ms, -webkit-transform 1000ms linear 1000ms;
}

.loading_cover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common/loading_cover.png") no-repeat;
}

@-webkit-keyframes animationFrames {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animationFrames {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * TopAnchor
 */
.p-topAnchor {
  height: 0;
  position: relative;
}

/**
 * Header
 */
.p-header {
  position: relative;
  width: 100%;
  background-color: #FFF;
}

.p-header * img {
  width: 100%;
}

.p-header * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#TB1 {
  position: fixed;
  top: 0;
  width: 10px;
  height: 0px;
  background: #000;
}

#TB2 {
  position: fixed;
  bottom: 0;
  width: 10px;
  height: 0px;
  background: #000;
}

.shareSNS {
  display: inline-block;
  width: 21px;
  height: 21px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}

.shareSNS:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-left: -2.5px;
  width: 120%;
  height: 120%;
  border-radius: 0.5px;
  z-index: -1;
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  background: #fff;
}

.shareSNS.shareSNS-w:after {
  background: #000;
}

.shareSNS:hover:after {
  background: #000;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.shareSNS.shareSNS-w:hover:after {
  background: #fff;
}

.shareSNS-twitter-b {
  background: url("../images/common/tw_b.png") no-repeat;
  background-size: contain;
}

.shareSNS-twitter-b:hover {
  background: url("../images/common/tw_w.png") no-repeat;
  background-size: contain;
}

.shareSNS-facebook-b {
  background: url("../images/common/fb_b.png") no-repeat;
  background-size: contain;
}

.shareSNS-facebook-b:hover {
  background: url("../images/common/fb_w.png") no-repeat;
  background-size: contain;
}

.shareSNS-twitter-w {
  background: url("../images/common/tw_w.png") no-repeat;
  background-size: contain;
}

.shareSNS-twitter-w:hover {
  background: url("../images/common/tw_b.png") no-repeat;
  background-size: contain;
}

.shareSNS-facebook-w {
  background: url("../images/common/fb_w.png") no-repeat;
  background-size: contain;
}

.shareSNS-facebook-w:hover {
  background: url("../images/common/fb_b.png") no-repeat;
  background-size: contain;
}

/**
 * Menu
 */
.p-menu_container {
  position: relative;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0;
  background: rgba(0, 0, 0, 0.96);
  overflow: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-menu_container.active {
  height: 100vh;
}

.p-menu_contents_wrap {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: relative;
}

.p-menu_contents {
  position: absolute;
  left: 0;
  right: 0;
  width: 315px;
  height: auto;
  margin: auto;
  padding-top: 130px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-menu_contents a {
  display: block;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
  position: relative;
}

.p-menu_contents a p {
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.p-menu_contents a span {
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  display: block;
  font-size: 10px;
  line-height: 24px;
  -webkit-transition: -webkit-transform 500ms ease 50ms;
  transition: -webkit-transform 500ms ease 50ms;
  transition: transform 500ms ease 50ms;
  transition: transform 500ms ease 50ms, -webkit-transform 500ms ease 50ms;
}

.p-menu_contents a .hoverBg {
  background: rgba(255, 255, 255, 0.2);
  padding: 0 300%;
  margin: 0 -300%;
  position: absolute;
  height: 100%;
  z-index: -1;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all 500ms cubic-bezier(0, 0.75, 0.47, 0.99);
  transition: all 500ms cubic-bezier(0, 0.75, 0.47, 0.99);
}

.p-menu_contents a:hover {
  color: white;
}

.p-menu_contents a:hover p {
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
          transform: translateX(15px);
}

.p-menu_contents a:hover span {
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
          transform: translateX(15px);
}

.p-menu_contents a:hover .hoverBg {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.p-menu_contents a.active {
  color: white;
}

.p-menu_contents .p-menu_corporate {
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  border: 1px solid white;
  text-align: center;
  color: white;
  font-size: 11px;
  padding: 11px 0;
  line-height: 1em;
  position: relative;
  overflow: hidden;
  position: relative;
}

.p-menu_contents .p-menu_corporate:hover {
  color: black;
}

.p-menu_contents .p-menu_corporate:after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 13px;
  margin: auto;
  width: 10px;
  height: 0px;
  border-bottom: solid 1px #fff;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.p-menu_contents .p-menu_corporate:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 13px;
  margin: auto;
  width: 20px;
  height: 0px;
  border-bottom: solid 1px #fff;
}

.p-menu_contents .p-menu_corporate:after {
  right: 83px;
}

.p-menu_contents .p-menu_corporate:before {
  right: 83px;
}

.p-menu_contents .p-menu_corporate .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: #fff;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}

.p-menu_contents .p-menu_corporate:hover:after {
  border-color: #000;
}

.p-menu_contents .p-menu_corporate:hover:before {
  border-color: #000;
}

.p-menu_contents .p-menu_corporate:hover .bg {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.p-menu_logo {
  position: absolute;
  top: 27px;
  left: 40px;
  z-index: 99;
}

.p-menu_ctrl {
  position: absolute;
  top: 0;
  right: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-menu_ctrl_inline {
  width: 76px;
  height: 86px;
  position: relative;
  cursor: pointer;
  z-index: 4;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.p-menu_ctrl_inline .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-menu_ctrl_inline .bar {
  overflow: hidden;
  width: 39px;
  height: 34px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.p-menu_ctrl_inline span {
  position: absolute;
  width: 19px;
  height: 4px;
  top: 3px;
  left: 20px;
  background-color: #111111;
}

.p-menu_ctrl_inline span:nth-child(2) {
  left: 0;
  width: 39px;
  top: 13px;
}

.p-menu_ctrl_inline span:nth-child(3) {
  left: 0;
  width: 39px;
  top: 24px;
}

.p-menu_ctrl_inline.active span {
  background: #fff;
}

.fp-viewing-works .p-menu_ctrl_inline span {
  background-color: #fff;
}

.p-menu_entry {
  position: relative;
  border-radius: 1px;
  display: block;
  width: 105px;
  height: 33px;
  line-height: 33px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  padding-left: 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 26px;
  z-index: 2;
  overflow: hidden;
}

.p-menu_entry:after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 13px;
  margin: auto;
  width: 10px;
  height: 0px;
  border-bottom: solid 1px #fff;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.p-menu_entry:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 13px;
  margin: auto;
  width: 20px;
  height: 0px;
  border-bottom: solid 1px #fff;
}

.p-menu_entry:after, .p-menu_entry:before {
  z-index: 2;
}

.p-menu_entry span {
  position: absolute;
}

.p-menu_entry img {
  position: absolute;
  top: -130px;
  left: -490px;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

@-webkit-keyframes rotateEntry {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateEntry {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.p-menu_sns a {
  display: inline-block;
  margin-right: 28px;
  margin-top: 33px;
}

/*
  
  
    LOGO
    
    
  */
.logo {
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 40px;
}

.logo.hide .link {
  opacity: 0;
}

.logo .link {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.logo img {
  position: absolute;
}

.logo .logo_b {
  display: none;
}

.logo .logo_w {
  display: none;
}

.logo .u-xsp {
  display: none;
}

/**
 * pagetitle
 */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  transition: background-color .2s linear, opacity .2s linear;
  height: 12px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  transition: background-color .2s linear, opacity .2s linear;
  width: 12px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}

.ps__rail-y * {
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 1px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 1px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 9px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 9px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

/**
 * Clearfix
 */
.u-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.u-fl {
  float: left;
}

.u-fr {
  float: right;
}

/**
 * Margin
 */
.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-ml-15 {
  margin-left: 15px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-ml-25 {
  margin-left: 25px !important;
}

.u-ml-30 {
  margin-left: 30px !important;
}

.u-ml-35 {
  margin-left: 35px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-ml-45 {
  margin-left: 45px !important;
}

.u-ml-50 {
  margin-left: 50px !important;
}

.u-mr-5 {
  margin-right: 5px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-mr-15 {
  margin-right: 15px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-mr-25 {
  margin-right: 25px !important;
}

.u-mr-30 {
  margin-right: 30px !important;
}

.u-mr-35 {
  margin-right: 35px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-mr-45 {
  margin-right: 45px !important;
}

.u-mr-50 {
  margin-right: 50px !important;
}

/**
 * Padding
 */
.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-s {
  padding-top: 8px !important;
}

.u-pt-m {
  padding-top: 16px !important;
}

.u-pt-l {
  padding-top: 24px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-s {
  padding-bottom: 8px !important;
}

.u-pb-m {
  padding-bottom: 16px !important;
}

.u-pb-l {
  padding-bottom: 24px !important;
}

.u-pl-5 {
  padding-left: 5px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-pl-15 {
  padding-left: 15px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-pl-25 {
  padding-left: 25px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-pl-35 {
  padding-left: 35px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-pl-45 {
  padding-left: 45px !important;
}

.u-pl-50 {
  padding-left: 50px !important;
}

.u-pl-s {
  padding-left: 8px !important;
}

.u-pl-m {
  padding-left: 16px !important;
}

.u-pl-l {
  padding-left: 24px !important;
}

.u-pr-5 {
  padding-right: 5px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-pr-15 {
  padding-right: 15px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pr-25 {
  padding-right: 25px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-pr-35 {
  padding-right: 35px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pr-45 {
  padding-right: 45px !important;
}

.u-pr-50 {
  padding-right: 50px !important;
}

.u-pr-s {
  padding-right: 8px !important;
}

.u-pr-m {
  padding-right: 16px !important;
}

.u-pr-l {
  padding-right: 24px !important;
}

/**
 * Only
 */

/**
 * Top page
 */
body {
  overflow-x: hidden;
}

.page-home {
  overflow: hidden;
}

.page-home .ps__rail-x {
  display: none;
}

.page-home .home {
  position: relative;
  height: 100vh;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  /*
      
      
        CATCH
        
        
      */
  /*
      
      
        NEWS
        
        
      */
}

.page-home .home .catch_wrap {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.page-home .home #mv_canvas,
.page-home .home iframe {
  position: absolute;
}

.page-home .home .txtmsk_w {
  background: #fff;
  position: absolute;
  -webkit-transform-origin: right 0;
      -ms-transform-origin: right 0;
          transform-origin: right 0;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.page-home .home .txtmsk_b {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

.page-home .home .txtmsk1 {
  left: 2%;
  top: 2%;
  width: 16.5%;
  height: 48%;
}

.page-home .home .txtmsk2 {
  left: 18.3%;
  top: 2%;
  width: 16.5%;
  height: 48%;
}

.page-home .home .txtmsk3 {
  left: 35.2%;
  top: 2%;
  width: 16%;
  height: 48%;
}

.page-home .home .txtmsk4 {
  left: 51.2%;
  top: 2%;
  width: 18%;
  height: 48%;
}

.page-home .home .txtmsk5 {
  left: 69%;
  top: 2%;
  width: 15%;
  height: 48%;
}

.page-home .home .txtmsk6 {
  left: 84.2%;
  top: 2%;
  width: 14.5%;
  height: 48%;
}

.page-home .home .txtmsk7 {
  left: 1%;
  top: 51%;
  width: 18.2%;
  height: 48%;
}

.page-home .home .txtmsk8 {
  left: 19%;
  top: 51%;
  width: 16%;
  height: 48%;
}

.page-home .home .txtmsk9 {
  left: 36%;
  top: 51%;
  width: 17%;
  height: 48%;
}

.page-home .home .txtmsk10 {
  left: 53%;
  top: 51%;
  width: 15%;
  height: 48%;
}

.page-home .home .txtmsk11 {
  left: 69%;
  top: 51%;
  width: 13.5%;
  height: 48%;
}

.page-home .home .txtmsk12 {
  left: 84.5%;
  top: 51%;
  width: 6.5%;
  height: 48%;
}

.page-home .home .mainvisual {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-home .home .mainvisual .mainvisual_objs {
  max-width: 750px;
  width: 88%;
}

.page-home .home .mainvisual .mainvisual_catch {
  width: 100%;
  position: relative;
}

.page-home .home .mainvisual .mainvisual_catch img {
  width: 100%;
}

.page-home .home .mainvisual .mv_img,
.page-home .home .mainvisual .mv_movie,
.page-home .home .mainvisual .mv_textCover,
.page-home .home .mainvisual .mv_textEffect {
  position: absolute;
  top: 0;
}

.page-home .home .mainvisual .mv_img {
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 96%;
  width: 98%;
  overflow: hidden;
}

.page-home .home .mainvisual .mv_img img {
  width: 150%;
  height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.page-home .home .mainvisual .mv_movie {
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 96%;
  width: 98%;
  overflow: hidden;
}

.page-home .home .mainvisual .mv_movie iframe {
  width: 150%;
  height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.page-home .home .mainvisual .mv_movie #mv_canvas {
  width: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.page-home .home .mainvisual .mv_textEffect {
  padding-top: 38.04348%;
  width: 100%;
}

.page-home .home .mainvisual .mv_textCover {
  background: url("../images/home/catch.png") no-repeat center center;
  background-size: cover;
  padding-top: 38.04348%;
  width: 100%;
}

.page-home .home .mainvisual .mainvisual_txt {
  width: 100%;
  font-size: 14px;
  line-height: 1.5em;
  z-index: 1;
  font-weight: bold;
}

.page-home .home .scrollAttention {
  position: absolute;
  right: 40px;
  bottom: 30px;
  height: 133px;
  overflow: hidden;
}

.page-home .home .scrollAttention .scrollAttention_bace {
  width: 1px;
  right: 0;
  opacity: 1;
  position: relative;
  background: #ccc;
  height: 100%;
}

.page-home .home .scrollAttention .scrollAttention_bar {
  height: 80%;
  background: #000;
  width: 1px;
  right: 0;
  position: absolute;
  -webkit-animation: scrollAttentionAnim ease 5s;
          animation: scrollAttentionAnim ease 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes scrollAttentionAnim {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

@keyframes scrollAttentionAnim {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

.page-home .home .news {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100vw;
  height: 71px;
  padding: 0 60px 30px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page-home .home .news_ttl {
  font-size: 0;
  margin-right: 20px;
}

.page-home .home .news_ttl p {
  font-size: 30px;
  line-height: 1em;
  font-weight: bold;
}

.page-home .home .news_ttl span {
  font-size: 12px;
  line-height: 1em;
  padding-top: 13px;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  letter-spacing: 0.02em;
}

.page-home .home .news_container {
  height: 95px;
  margin-left: 108px;
  position: relative;
}

.page-home .home .news_list a {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-home .home .news_list a .news_listtxt {
  position: relative;
}

.page-home .home .news_list a .news_listtxt p {
  text-decoration: underline;
  font-size: 12px;
  line-height: 1em;
  height: 1em;
  height: 100%;
}

.page-home .home .news_list a .news_listtxt p .date {
  font-weight: bold;
}

.page-home .home .news_list a .morebtn {
  font-size: 13px;
  padding: 10px 80px 10px 19px;
  margin-left: 15px;
  border: 1px solid black;
  font-weight: bold;
  line-height: 1em;
  border-radius: 2px;
  overflow: hidden;
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  position: relative;
  display: block;
}

.page-home .home .news_list a .morebtn:after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 13px;
  margin: auto;
  width: 10px;
  height: 0px;
  border-bottom: solid 1px #fff;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.page-home .home .news_list a .morebtn:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 13px;
  margin: auto;
  width: 20px;
  height: 0px;
  border-bottom: solid 1px #fff;
}

.page-home .home .news_list a .morebtn .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: #000;
  -webkit-transform: translateX(-101%);
      -ms-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}

.page-home .home .news_list a .morebtn:after {
  left: 76px;
  border-color: #000;
}

.page-home .home .news_list a .morebtn:before {
  left: 66px;
  border-color: #000;
}

.page-home .home .news_list a:hover p {
  text-decoration: none;
}

.page-home .home .news_list a:hover .morebtn {
  color: #fff;
}

.page-home .home .news_list a:hover .morebtn .bg {
  left: 0;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.page-home .home .news_list a:hover .morebtn:after {
  border-color: #fff;
}

.page-home .home .news_list a:hover .morebtn:before {
  border-color: #fff;
}

.page-news a .formbtn {
  /*font-size: 13px;*/
  padding: 15px 19px 15px 19px;
  border: 1px solid black;
  /*font-weight: bold;*/
  /*line-height: 1em;*/
  border-radius: 2px;
  overflow: hidden;
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  position: relative;
  display: block;
}
.page-news a .formbtn .fb{
  font-weight: bold;
}

.page-news a .formbtn:after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 13px;
  margin: auto;
  width: 10px;
  height: 0px;
  border-bottom: solid 1px #fff;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.page-news a .formbtn:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 13px;
  margin: auto;
  width: 20px;
  height: 0px;
  border-bottom: solid 1px #fff;
}

.page-news a .formbtn .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: #000;
  -webkit-transform: translateX(-101%);
      -ms-transform: translateX(-101%);
          transform: translateX(-101%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}

.page-news a .formbtn:after {
  right: 19px;
  border-color: #000;
}

.page-news a .formbtn:before {
  right: 19px;
  border-color: #000;
}

.page-news a:hover p {
  text-decoration: none;
}

.page-news a:hover .formbtn {
  color: #fff;
}

.page-news a:hover .formbtn .bg {
  left: 0;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.page-news a:hover .formbtn:after {
  border-color: #fff;
}

.page-news a:hover .formbtn:before {
  border-color: #fff;
}



.page-home .works {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.page-home .works * {
  display: block;
}

.page-home .works #worksMovie {
  position: absolute;
}

.page-home .works #works_canvas {
  position: absolute;
}

.page-home .works .worksMovieWrap {
  width: 100vw;
  overflow: hidden;
  position: relative;
  background: url("../images/home/works_movieimg.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

.page-home .works .worksMovieWrap.nobg {
  background: #000;
}

.page-home .works .works_movieimg {
  position: absolute;
  background: url("../images/home/works_movieimg.jpg") no-repeat center center;
  background-size: cover;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}

.page-home .works .overlay {
  width: 100vw;
  height: 100vh;
  background: #000;
  -webkit-clip-path: circle(100px at center);
          clip-path: circle(100px at center);
  -webkit-transform: translateZ(2px);
          transform: translateZ(2px);
}

.page-home .works #worksPlayBtnCover {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}

.page-home .works .playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 150px;
  height: 150px;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
}

.page-home #message {
  background: rgba(255, 255, 255, 0.1);
}

.page-home .message {
  position: relative;
}

.page-home .message .contents {
  padding-top: 228px;
}

.page-home .message .contents:after {
  content: "";
  display: block;
  clear: both;
}

.page-home .message .ceo_img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  text-indent: -999em;
  overflow: hidden;
}

.page-home .message .ceo_img img {
  width: 100%;
}

.page-home .message .ceo_message {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.05em;
  display: inline-block;
}

.page-home .interview {
  position: relative;
}

.page-home .interview .contents {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  font-size: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.page-home .interview .employee {
  display: inline-block;
  position: relative;
  overflow: hidden;
  max-width: 320px;
}

.page-home .interview .employee img {
  width: 100%;
}

.page-home .interview .employee .img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.page-home .interview .employee .text {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.page-home .interview .employee .text .text_txt {
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 36px;
  letter-spacing: 0.035em;
  line-height: 1em;
  font-weight: bold;
}

.page-home .interview .employee .text .text_txt .position {
  color: #655c4c;
}

.page-home .interview .employee .text .text_txt .name {
  margin-top: 5px;
  line-height: 1em;
}

.page-home .interview .employee .text_inline {
  background: #000;
  color: #fff;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-align: left;
}

.page-home .whats {
  position: relative;
}

.page-home .whats dl dt {
  color: #000;
  background: #fff;
  padding: 17px;
  line-height: 1em;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-weight: bold;
  margin-bottom: 50px;
  font-size: 14px;
}

.page-home .whats dl dt .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.001);
  -webkit-box-shadow: inset 0 0 0 1px #000;
          box-shadow: inset 0 0 0 1px #000;
}

.page-home .whats dl dt .bg {
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #000;
}

.page-home .whats dl dd {
  overflow: hidden;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page-home .whats dl .icon {
  width: 42px;
  height: 0;
  top: 5px;
  position: relative;
}

.page-home .whats dl .icon span {
  position: absolute;
  width: 6px;
  height: 5px;
  background-color: #000;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.page-home .whats dl .icon span:nth-child(2) {
  left: 11px;
  width: 16px;
  height: 5px;
}

.page-home .whats dl .icon span:nth-child(3) {
  width: 27px;
  height: 5px;
  -webkit-transform: rotateZ(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotateZ(-90deg);
}

.page-home .whats dl.active dt {
  color: #fff;
  background: #000;
}

.page-home .whats dl.active .icon span {
  background: #fff;
}

.page-home .whats dl.active .icon span:nth-child(3) {
  -webkit-transform: rotateZ(0deg);
      -ms-transform: rotate(0deg);
          transform: rotateZ(0deg);
}

.page-home .whats dl h4 {
  font-size: 20px;
  letter-spacing: 0.025em;
  line-height: 1em;
  font-weight: bold;
}

.page-home .whats dl p {
  max-width: 920px;
  font-size: 14px;
  margin: 20px auto 30px;
}

.page-home .whats .whats1 .grafWrap {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 50px;
}

.page-home .whats .whats1 .grafWrap:after {
  content: "";
  display: block;
  clear: both;
}

.page-home .whats .whats1 .grafWrap .legend {
  display: table;
  width: 64.13043%;
  max-width: 590px;
  float: left;
}

.page-home .whats .whats1 .grafWrap .legend .total {
  display: table-cell;
  width: 37.5%;
}

.page-home .whats .whats1 .grafWrap .legend .total img {
  width: 100%;
}

.page-home .whats .whats1 .grafWrap .legend .gender {
  display: table-cell;
  width: 26.52174%;
  text-align: right;
}

.page-home .whats .whats1 .grafWrap .legend .gender img {
  width: 79.5082%;
}

.page-home .whats .whats1 .grafWrap .graf {
  width: 17.6087%;
  max-width: 162px;
  text-align: right;
  float: right;
}

.page-home .whats .whats1 .grafWrap .graf img {
  width: 100%;
}

.page-home .whats .whats2 div {
  max-width: 920px;
  margin: 0 auto 50px;
  position: relative;
}

.page-home .whats .whats2 .ttl {
  width: 23.91304%;
  max-width: 220px;
  position: absolute;
  margin: 0;
}

.page-home .whats .whats2 .ttl img {
  width: 100%;
}

.page-home .whats .whats2 .txt {
  width: 68.47826%;
  max-width: 630px;
  margin-left: 31.52174%;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6em;
  display: block;
}

.page-home .whats .whats2 .img {
  margin-left: 31.52174%;
  width: 68.47826%;
  max-width: 630px;
}

.page-home .whats .whats2 .img img {
  width: 100%;
}

.page-home .whats .whats3 .ttl {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.page-home .whats .whats3 .ttl img {
  width: 100%;
  max-width: 921px;
  width: 100%;
}

.page-home .whats .whats3 .bar > li {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.page-home .whats .whats3 .bar > li img {
  width: 100%;
  max-width: 921px;
  width: 100%;
}

.page-home .whats .whats4 .inline {
  /*display: table;*/
  display:block;
  margin: 0 auto 50px;
  max-width: 921px;
}
.page-home .whats .whats4 .inline .ttl {
  text-align: left;
  width: 100%;
}
.page-home .whats .whats4 .inline .ttl_img {
  display: table-cell;
  vertical-align: top;
  text-align: center;
}
.page-home .whats .whats4 .inline .ttl_img .ttl img {
  width: 97.19934%;
  max-width: 590px;
}
.page-home .whats .whats4 .inline .ttl_img .img img {
  margin: 0 auto;
  width: 100%;
  max-width: 591px;
  text-align: center;
}
.page-home .whats .whats4 .img2 img {
  width: 100%;
  max-width: 921px;
  margin: 20px auto 0;
}
.page-home .whats .whats5 h4 {
  max-width: 920px;
  margin: 0 auto;
}

.page-home .whats .whats5 h4 img {
  width: 100%;
}

.page-home .whats .whats5 p {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.page-home .whats .whats5 .img {
  margin: 0 auto;
  width: 100%;
  max-width: 920px;
}

.page-home .whats .whats5 .img img {
  width: 100%;
}

.page-home .videoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(40px);
          transform: translateZ(40px);
}

.page-home .videoModal * {
  -webkit-transform: translateZ(40px);
          transform: translateZ(40px);
}

.page-home .videoModal_overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
}

.page-home .videoModal_overlay iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.page-home .videoModal_overlay .p-menu_ctrl_inline {
  position: fixed;
  top: 0;
  right: 0;
}

.iScrollIndicator {
  background: rgba(0, 0, 0, 0.5) !important;
  opacity: 1 !important;
  z-index: 999 !important;
}

.fullpage {
  width: 100vw;
}

.scrollContents {
  width: 100vw;
  position: relative;
  overflow: hidden;
}

/**
 * Top page
 */
body {
  overflow-x: hidden;
}

.page-interview .head {
  display: table;
  width: 100%;
}

.page-interview .head:after {
  content: "";
  display: block;
  clear: both;
}

.page-interview .head .img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  height: 100%;
  display: table-cell;
}

.page-interview .head .panel {
  display: table-cell;
  width: 50%;
  background: #000;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: 0.035em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.page-interview .head .panel .name {
  color: #fff;
  font-weight: bold;
}

.page-interview .head .panel .position {
  color: #655c4c;
  font-weight: bold;
}

.page-interview .head .panel .txt {
  font-size: 13px;
  letter-spacing: 0.025em;
  color: #fff;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  margin-top: 100px;
  line-height: normal;
}

.page-interview .contents {
  max-width: 960px;
}

.page-interview .contents .q {
  color: #a08d6e;
  font-weight: bold;
  letter-spacing: 0.025em;
  position: relative;
  text-indent: 1.2em;
  padding-left: 1.2em;
  padding-left: 0em;
  position: relative;
}

.page-interview .contents .q:before {
  content: "ー";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.2em;
  margin: auto;
}

.page-interview .contents .a {
  letter-spacing: 0.025em;
  margin-bottom: 55px;
}

/**
 * Top page
 */
body {
  overflow-x: hidden;
}

.page-news .contents {
  max-width: 960px;
}

/*.page-news .contents .event_title h3 {
  color: #fff;
  text-shadow: 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000;
  line-height: 1em;
  font-weight: bold;
}*/
.page-news .event_title h3 {
  color: #000;
  line-height: 1em;
  font-weight: bold;
}

.page-news .event_title p {
  line-height: 2.68em;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.page-news .contents .event_list {
  width: 100%;
}

.page-news .contents .event_list .txt {
  vertical-align: top;
}

.page-news .contents .event_list .txt .date {
  letter-spacing: 0.025em;
  font-weight: bold;
}

.page-news .contents .event_list .txt .ttl {
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.page-news .contents .event_list .txt .url {
  color: #d2c5b2;
  letter-spacing: 0.025em;
  text-decoration: underline;
  /*font-weight: bold;*/
}

.page-news .contents .event_list .txt .url:hover {
  text-decoration: none;
}

.page-news .contents .event_list .img {
  vertical-align: top;
}
.page-news .contents .event_list a {
  word-break: break-all;
}

.page-news .contents .detail_box .url {
  color: #d2c5b2;
  letter-spacing: 0.025em;
  text-decoration: underline;
}

.page-news .contents .detail_box .url:hover {
  text-decoration: none;
}
.page-news .contents .privacy {
  letter-spacing: 0.025em;
  font-size: 12px;
  padding-top: 15px;
}
.page-news .contents .privacy a {
  text-decoration: underline;
}
.page-news .contents .privacy a:hover {
  text-decoration: none;
}

/**
 * Top page
 */
body {
  overflow-x: hidden;
}

.page-recruitment .caption {
  max-width: 1286px;
  line-height: 1.64em;
}

.page-recruitment .contents {
  max-width: 960px;
}

.page-recruitment .contents .detail_box {
  width: 100%;
}

.page-recruitment .contents .entry_txt {
  text-align: center;
}

.page-recruitment .contents .entry_txt a {
  display: inline-block;
  overflow: hidden;
  width: 302px;
  height: 66px;
  font-weight: bold;
  color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  border-radius: 1px;
}

.page-recruitment .contents .entry_txt a span {
  position: absolute;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 69px;
  display: block;
  width: 100%;
}

.page-recruitment .contents .entry_txt a img {
  position: absolute;
  top: -82px;
  left: -280px;
  width: 1000px;
  height: 1000px;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.page-recruitment .contents .entry_txt a img.bg2 {
  opacity: 0.3;
}

.page-recruitment .contents .entry_txt a:hover img {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.page-recruitment .contents .entry_txt a:hover img.bg2 {
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
.page-news .contents .detail_box {
  width: 100%;
}

@keyframes rotateEntry {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.page-recruitment .contents .detail_box-entry {
  display: table;
  width: 100%;
}

.page-recruitment .contents .detail_ttl {
  vertical-align: top;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #a08d6e;
  font-weight: bold;
}

.page-recruitment .contents .detail_txt {
  vertical-align: top;
}

.page-recruitment .contents .detail_txt ul li {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.05em;
}

.page-recruitment .contents .detail_txt dl {
  display: table;
  vertical-align: top;
  width: 100%;
}

.page-recruitment .contents .detail_txt dl dt {
  font-weight: bold;
  letter-spacing: 0.1em;
}

.page-recruitment .contents .detail_txt dl dd {
  line-height: 1.7em;
  letter-spacing: 0.1em;
}

.page-recruitment .contents .detail_txt .flow {
  margin-bottom: 30px;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 10.3%;
  text-indent: -999em;
  background: url("../images/recruitment/flow_pc.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.page-recruitment .contents .detail_txt p {
  line-height: 1.6em;
  letter-spacing: 0.1em;
}

.page-recruitment .contents .entry_box .entry_ttl {
  display: block;
  width: 100%;
}

.page-recruitment .contents .entry_box .entry_ttl h3 {
  font-size: 13px;
  line-height: 1.6em;
  letter-spacing: 0.1em;
}

.page-recruitment .contents .entry_box .entry_ttl p {
  font-size: 14px;
  line-height: 1.57em;
  letter-spacing: 0.1em;
  font-weight: normal;
}

.page-recruitment .videoModal {
  display: none;
}

.page-news .contents .detail_ttl {
  vertical-align: top;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #a08d6e;
  font-weight: bold;
}

.page-news .contents .detail_txt {
  vertical-align: top;
}

.page-news .contents .detail_txt ul li {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.05em;
}

.page-news .contents .detail_txt dl {
  display: table;
  vertical-align: top;
  width: 100%;
}

.page-news .contents .detail_txt dl dt {
  font-weight: bold;
  letter-spacing: 0.1em;
}

.page-news .contents .detail_txt dl dd {
  line-height: 1.7em;
  letter-spacing: 0.1em;
}

.page-news .contents .detail_txt .flow {
  margin-bottom: 30px;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 10.3%;
  text-indent: -999em;
  background: url("../images/recruitment/flow_pc.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.page-news .contents .detail_txt p {
  line-height: 1.6em;
  letter-spacing: 0.1em;
}

.page-news .contents .event_list dl {
  display: table;
  vertical-align: top;
  width: 100%;
}

.page-news .contents .event_list dl dt {
  font-weight: bold;
  letter-spacing: 0.1em;
}

.page-news .contents .event_list dl dd {
  line-height: 1.7em;
  letter-spacing: 0.1em;
}


/**
 * Top page
 */
#TB1, #TB2 {
  height: 0px;
}

.test .fullpage {
  width: 100vw;
}

.test .scrollContents {
  width: 100vw;
  position: relative;
  overflow: hidden;
}

@media (max-width: 599px) {
  .l-footer {
    margin-bottom: 25px;
  }
  .l-footer p {
    font-size: 8px;
  }
  .l-footer a:first-child {
    margin-right: 24px;
  }
  .l-footer p {
    font-size: 8px;
    margin-top: 5px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .pageHead {
    margin-left: 20px;
    margin-bottom: 26px;
    margin-bottom: 18px;
  }
  .pageHead {
    margin-top: 20px;
    margin-left: 20px;
  }
  .pageHead h1 {
    width: 130px;
    margin-bottom: 30px;
  }
  .pageHead h1 img {
    width: 100%;
  }
  .pageHead p {
    margin-top: 1px;
    font-size: 12px;
  }
  .pageHead h2 {
    font-size: 45px;
  }
  .shareSNS {
    width: 17px;
    height: 17px;
  }
  .shareSNS:after {
    margin-left: -2.5px;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .p-menu_contents {
    padding-top: 117.5px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-menu_contents .p-menu_corporate {
    padding: 8px 0;
    font-size: 10px;
  }
  .p-menu_contents .p-menu_corporate:after {
    top: 3px;
    right: 9px;
    width: 9px;
  }
  .p-menu_contents .p-menu_corporate:before {
    top: 3px;
    right: 9px;
    width: 15px;
  }
  .p-menu_contents .p-menu_corporate:after {
    right: 65px;
  }
  .p-menu_contents .p-menu_corporate:before {
    right: 65px;
  }
  .p-menu_logo {
    top: 20px;
    left: 20px;
  }
  .p-menu_ctrl {
    right: 0;
  }
  .p-menu_ctrl_inline {
	width: 70px;
    /*width: 78px;*/
    height: 59px;
  }
  .p-menu_ctrl_inline .bar {
    top: 4px;
    width: 30px;
    height: 20px;
    height: 23px;
    margin-left: 20px;
  }
  .p-menu_ctrl_inline span {
    width: 15px;
    height: 3px;
    left: 15px;
    top: 2px;
  }
  .p-menu_ctrl_inline span:nth-child(2) {
    width: 30px;
    top: 9px;
    left: 0;
  }
  .p-menu_ctrl_inline span:nth-child(3) {
    width: 30px;
    top: 17px;
  }
  .p-menu_entry:after {
    top: 3px;
    right: 9px;
    width: 9px;
  }
  .p-menu_entry:before {
    top: 3px;
    right: 9px;
    width: 15px;
  }
  .p-menu_entry {
    width: 80px;
    height: 25px;
    line-height: 25px;
    font-size: 11px;
    padding-left: 14px;
    margin-top: 20px;
  }
  .p-menu_sns a {
    margin-top: 50px;
    margin-right: 20px;
    margin-bottom: 30px;
  }
  .logo {
    top: 20px;
    left: 20px;
    width: 130px;
  }
  .logo img {
    width: 100%;
  }
  .logo .logo_b_p {
    width: 20%;
  }
  .u-pc {
    display: none;
  }
  .page-home .home .mainvisual .mainvisual_txt {
    width: 95.45455%;
    font-size: 12px;
    padding-top: 1em;
    margin: 0 auto;
    padding-bottom: 2em;
  }
  .page-home .home .news {
    bottom: 25px;
    height: 38px;
    padding: 0 20px;
  }
  .page-home .home .news_ttl {
    margin-right: 11px;
  }
  .page-home .home .news_ttl p {
    font-size: 22px;
  }
  .page-home .home .news_ttl span {
    display: block;
    font-size: 10px;
    padding-top: 6px;
    letter-spacing: 0.05em;
  }
  .page-home .home .news_container {
    height: 48px;
    margin-left: 73px;
    position: absolute;
  }
  .page-home .home .news_list a .news_listtxt p {
    font-size: 11px;
    line-height: 1.5em;
  }
  .page-home .message {
    margin-top: 0;
  }
  .page-home .message .contents {
    padding-top: 148px;
    padding-bottom: 10px;
  }
  .page-home .message .ceo_img {
    width: 100%;
    float: none;
    display: block;
    padding-bottom: 60%;
  }
  .page-home .message .ceo_message {
    font-size: 12px;
	line-height: 1.8em;
    /*line-height: unset;*/
    max-width: none;
    width: 100%;
    float: none;
    display: block;
    margin: 0;
    padding: 25px 20px 30px;
  }
  .page-home .interview {
    padding-top: 56px;
    padding-bottom: 10px;
  }
  .page-home .interview .employee {
    width: 50%;
  }
  .page-home .interview .employee .text .text_txt {
    font-size: 19px;
  }
  .page-home .interview .employee:nth-child(4n+1) .text_inline {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .page-home .interview .employee:nth-child(4n+1).okHover:hover .img {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .page-home .interview .employee:nth-child(4n+1).okHover:hover .text_inline {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .page-home .interview .employee:nth-child(4n+2) .text_inline {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .page-home .interview .employee:nth-child(4n+2).okHover:hover .img {
    -webkit-transform: translatey(100%);
        -ms-transform: translatey(100%);
            transform: translatey(100%);
  }
  .page-home .interview .employee:nth-child(4n+2).okHover:hover .text_inline {
    -webkit-transform: translatey(0%);
        -ms-transform: translatey(0%);
            transform: translatey(0%);
  }
  .page-home .interview .employee:nth-child(4n) .text_inline {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .page-home .interview .employee:nth-child(4n).okHover:hover .img {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .page-home .interview .employee:nth-child(4n).okHover:hover .text_inline {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  .page-home .interview .employee:nth-child(4n+3) .text_inline {
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
  }
  .page-home .interview .employee:nth-child(4n+3).okHover:hover .img {
    -webkit-transform: translatey(-100%);
        -ms-transform: translatey(-100%);
            transform: translatey(-100%);
  }
  .page-home .interview .employee:nth-child(4n+3).okHover:hover .text_inline {
    -webkit-transform: translatey(0%);
        -ms-transform: translatey(0%);
            transform: translatey(0%);
  }
  .page-home .whats {
    padding-top: 55px;
  }
  .page-home .whats .contents {
    width: 88%;
	/*width: 84%;*/
    max-width: none;
    margin: 0 auto 80px;
    padding-bottom: 30px;
  }
  .page-home .whats dl dt {
    padding: 8px;
    font-size: 12px;
    margin-bottom: 25px;
  }
  .page-home .whats dl dd {
    padding: 0 10px;
  }
  .page-home .whats dl .icon {
    width: 20px;
  }
  .page-home .whats dl .icon span {
    width: 2.5px;
    height: 2.5px;
  }
  .page-home .whats dl .icon span:nth-child(2) {
    left: 8px;
    width: 5.35px;
    height: 2.5px;
  }
  .page-home .whats dl .icon span:nth-child(3) {
    width: 13.5px;
    height: 2.5px;
  }
  .page-home .whats dl h4 {
    font-size: 12px;
    letter-spacing: 0.025em;
    line-height: 1em;
    font-weight: bold;
  }
  .page-home .whats dl p {
    font-size: 11px;
    margin: 15px 0 20px;
  }
  .page-home .whats .whats1 .grafWrap {
    margin-bottom: 25px;
  }
  .page-home .whats .whats1 .grafWrap .legend {
    display: block;
    width: 55.46751%;
  }
  .page-home .whats .whats1 .grafWrap .legend .total {
    width: 60.57143%;
    display: block;
  }
  .page-home .whats .whats1 .grafWrap .legend .total img {
    width: 100%;
  }
  .page-home .whats .whats1 .grafWrap .legend .gender {
    width: 102%;
    display: block;
    margin-top: 11px;
  }
  .page-home .whats .whats1 .grafWrap .legend .gender img {
    width: 100%;
  }
  .page-home .whats .whats1 .grafWrap .graf {
    width: 28.52615%;
    display: inline-block;
    float: right;
  }
  .page-home .whats .whats1 .grafWrap .graf img {
    width: 100%;
  }
  .page-home .whats .whats2 div {
    margin-bottom: 25px;
    display: block;
  }
  .page-home .whats .whats2 .ttl {
    position: relative;
    display: inline-block;
  }
  .page-home .whats .whats2 .txt {
    margin: 0;
    display: inline-block;
    width: 58.47458%;
    margin-left: 7.62712%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 11px;
  }
  .page-home .whats .whats2 .img {
    margin: 20px 0 0;
    width: 100%;
  }
  .iScrollVerticalScrollbar {
    display: none;
  }
  .page-interview .pageHead {
    margin-bottom: 0px;
  }
  .page-interview .head {
    margin-top: 22px;
  }
  .page-interview .head .img {
    width: 100%;
    padding-bottom: 50%;
    display: block;
  }
  .page-interview .head .panel {
    padding: 25px 21.5px 25px 21.5px;
    width: 100%;
    display: block;
  }
  .page-interview .head .panel .name {
    font-size: 40px;
    line-height: 1em;
	margin-bottom: 5px;
  }
  .page-interview .head .panel .position {
    font-size: 18px;
    line-height: 1em;
  }
  .page-interview .head .panel .txt {
    font-size: 11px;
    line-height: 16.5px;
    margin-top: 20px;
  }
  .page-interview .head {
    display: block;
  }
  .page-interview .contents {
    margin: 32px auto 82px auto;
    /*width: 84%;*/
	width: 88%;
  }
  .page-interview .contents .q {
    font-size: 14px;
    margin-bottom: 13px;
  }
  .page-interview .contents .a {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .page-news .pageHead {
    margin-bottom: 0;
  }
  .page-news .event_title {
    margin-bottom: 27.5px;
  }
  .page-news .event_title h3 {
    font-size: 37px;
  }
  .page-news .event_title p {
    font-size: 9px;
  }
  .page-news .contents .evet_container {
    margin-bottom: 45px;
  }
  .page-news .contents .event_list {
    display: block;
    margin-bottom: 35px;
  }
  .page-news .contents .event_list .txt {
    display: block;
  }
  .page-news .contents .event_list .txt .date {
    font-size: 25px;
  }
  .page-news .contents .event_list .txt .ttl {
    font-size: 12px;
  }
  .page-news .contents .event_list .txt .url {
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
  }
  .page-news .contents .detail_box .url {
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
  }
  .page-news .contents .event_list .img {
    display: block;
    text-align: center;
    width: 100%;
  }
  .page-news .contents .event_list .img img {
    max-width: 315px;
    width: 100%;
  }
  .page-news .contents {
    margin: 32px auto 82px;
    width: 84%;
  }
  .page-recruitment .pageHead {
    margin-bottom: 0;
  }
  .page-recruitment .caption {
    font-size: 12px;
    margin: 20px 20px 35px;
  }
  .page-recruitment .contents .detail_box {
    display: block;
    margin-bottom: 35px;
  }
  .page-recruitment .contents .entry_txt a {
    display: block;
    margin-bottom: 35px;
    width: 100%;
    height: 56px;
  }
  .page-recruitment .contents .entry_txt a img {
    position: absolute;
    width: 1000px;
    height: 1000px;
  }
  .page-recruitment .contents .entry_txt a span {
    line-height: 58px;
  }
  .page-recruitment .contents .detail_box-entry {
    margin-bottom: 20px;
  }
  .page-recruitment .contents .detail_ttl {
    display: block;
    width: 100%;
    margin-bottom: 11px;
  }
  .page-recruitment .contents .detail_txt {
    display: block;
    width: 100%;
  }
  .page-recruitment .contents .detail_txt ul {
    margin-bottom: 0;
  }
  .page-recruitment .contents .detail_txt ul li {
    line-height: 1.75em;
    font-size: 14px;
  }
  .page-recruitment .contents .detail_txt dl {
    margin-bottom: 10px;
  }
  .page-recruitment .contents .detail_txt dl dt {
    width: 100%;
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
  }
  .page-recruitment .contents .detail_txt dl dd {
    width: 100%;
    display: block;
    font-size: 12px;
    padding-left: 0;
  }
  .page-recruitment .contents .detail_txt .flow {
    width: 56.26667%;
    padding-bottom: 109%;
    background: url("../images/recruitment/flow_sp.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto 20px;
  }
  .page-recruitment .contents .detail_txt p {
    font-size: 11px;
  }
  .page-recruitment .contents .entry_box .entry_ttl h3 {
    font-size: 12px;
  }
  .page-recruitment .contents .entry_box .entry_ttl p {
    font-size: 11px;
  }
  .page-recruitment .contents {
    margin: 28px auto 57px;
    width: 88%;
  }
  .page-news .caption {
    font-size: 12px;
    margin: 20px 20px 35px;
  }
  .page-news .contents .detail_box {
    display: block;
    margin-bottom: 35px;
  }
  .page-news .contents .entry_txt a {
    display: block;
    margin-bottom: 35px;
    width: 100%;
    height: 56px;
  }
  .page-news .contents .entry_txt a img {
    position: absolute;
    width: 1000px;
    height: 1000px;
  }
  .page-news .contents .entry_txt a span {
    line-height: 58px;
  }
  .page-news .contents .detail_box-entry {
    margin-bottom: 20px;
  }
  .page-news .contents .detail_ttl {
    display: block;
    width: 100%;
    margin-bottom: 11px;
  }
  .page-news .contents .detail_txt {
    display: block;
    width: 100%;
  }
  .page-news .contents .detail_txt ul {
    margin-bottom: 0;
  }
  .page-news .contents .detail_txt ul li {
    line-height: 1.75em;
    font-size: 14px;
  }
  .page-news .contents .detail_txt dl {
    margin-bottom: 10px;
  }
  .page-news .contents .detail_txt dl dt {
    width: 100%;
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
  }
  .page-news .contents .detail_txt dl dd {
    width: 100%;
    display: block;
    font-size: 12px;
    padding-left: 0;
  }
  .page-news .contents .detail_txt .flow {
    width: 56.26667%;
    padding-bottom: 109%;
    background: url("../images/recruitment/flow_sp.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto 20px;
  }
  .page-news .contents .detail_txt p {
    font-size: 11px;
  }
  .page-news .contents .entry_box .entry_ttl h3 {
    font-size: 12px;
  }
  .page-news .contents .entry_box .entry_ttl p {
    font-size: 11px;
  }
  .page-news .contents {
    margin: 28px auto 57px;
    width: 88%;
  }
  .page-news .contents .event_list dl {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .page-news .contents .event_list dl dt {
    width: 100%;
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
  }
  .page-news .contents .event_list dl dd {
    width: 100%;
    display: block;
    font-size: 12px;
    padding-left: 0;
  }

}

@media screen and (min-width: 769px) {
  .c-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 22px;
    padding-right: 22px;
    width: 980px;
  }
  .p-info {
    max-width: 383.5px;
  }
  .p-info_item {
    float: left;
    font-size: 14px;
    margin-top: 90px;
    margin-right: 35px;
  }
  .p-info_item:last-child {
    margin-right: 0;
  }
  .p-info_item img {
    width: 50%;
  }
  .p-info_logo {
    margin: 50px auto;
    width: 183.5px;
  }
  .p-info_copy {
    margin: 0 auto;
    padding-bottom: 11px;
    width: 100%;
    font-size: 11px;
  }
  .p-info_copy-last {
    padding-bottom: 85px;
  }
  .p-footer .p-info_item {
    margin-top: 10%;
  }
  .u-mt-s {
    margin-top: 16px !important;
  }
  .u-mt-m {
    margin-top: 32px !important;
  }
  .u-mt-l {
    margin-top: 48px !important;
  }
  .u-mb-s {
    margin-bottom: 16px !important;
  }
  .u-mb-m {
    margin-bottom: 32px !important;
  }
  .u-mb-l {
    margin-bottom: 48px !important;
  }
  .u-ml-s {
    margin-left: 16px !important;
  }
  .u-ml-m {
    margin-left: 32px !important;
  }
  .u-ml-l {
    margin-left: 48px !important;
  }
  .u-mr-s {
    margin-right: 16px !important;
  }
  .u-mr-m {
    margin-right: 32px !important;
  }
  .u-mr-l {
    margin-right: 48px !important;
  }
}

@media screen and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
  .p-info_item {
    text-align: center;
    padding-top: 35px;
    font-size: 13px;
  }
  .p-info_itemAnchor:before {
    border-top: 1px solid #333;
    border-right: 1px solid #333;
  }
  .p-info_logo {
    margin: 30px auto;
    width: 41.33333%;
  }
  .p-info_copy {
    margin: 0 auto;
    padding-bottom: 11px;
    width: 100%;
    line-height: 1em;
    font-size: 10px;
  }
  .u-mt-s {
    margin-top: 8px !important;
  }
  .u-mt-m {
    margin-top: 16px !important;
  }
  .u-mt-l {
    margin-top: 24px !important;
  }
  .u-mb-s {
    margin-bottom: 8px !important;
  }
  .u-mb-m {
    margin-bottom: 16px !important;
  }
  .u-mb-l {
    margin-bottom: 24px !important;
  }
  .u-ml-s {
    margin-left: 8px !important;
  }
  .u-ml-m {
    margin-left: 16px !important;
  }
  .u-ml-l {
    margin-left: 24px !important;
  }
  .u-mr-s {
    margin-right: 8px !important;
  }
  .u-mr-m {
    margin-right: 16px !important;
  }
  .u-mr-l {
    margin-right: 24px !important;
  }
}

@media (max-width: 321px) {
  .pageHead h1 {
    width: 119px;
  }
  .pageHead {
    margin-left: 20px;
    margin-right: 20px;
  }
  .pageHead h2 {
    font-size: 36px;
  }
  .p-menu_logo {
    width: 119px;
  }
  .p-menu_logo img {
    width: 100%;
  }
  .p-menu_ctrl_inline {
    width: 70px;
  }
  .logo {
    left: 20px;
  }
  .page-home .home .news {
    padding: 0 20px;
  }
  .page-home .message .ceo_message {
    padding: 25px 20px 30px;
  }
  .page-home .whats dl .ttl {
    line-height: 1.4em;
  }
}

@media (min-width: 1200px) {
  .pageHead h2 {
    font-size: 90px;
  }
  .u-sp {
    display: none;
  }
  .page-home .message .ceo_message {
    width: 27.74524%;
    margin-left: 40px;
    margin-right: 0;
    padding: 0;
  }
  .page-home .interview .employee {
    width: 320px;
  }
  .page-home .whats {
    padding-top: 63px;
  }
  .page-home .whats .contents {
    width: 70.27818%;
    max-width: 960px;
    margin: 0 auto 175px;
  }
  .page-interview .head {
    margin-top: 47px;
  }
  .page-interview .head .img {
    display: table-cell;
  }
  .page-interview .head .panel {
    display: table-cell;
  }
  .page-interview .head {
    display: table;
  }
  .page-interview .contents {
    margin: 66px auto 165px auto;
  }
  .page-interview .contents .q {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .page-interview .contents .a {
    font-size: 14px;
    margin-bottom: 55px;
  }
  .page-news .event_title {
    margin-bottom: 80px;
  }
  .page-news .event_title h3 {
    font-size: 70px;
  }
  .page-news .event_title p {
    font-size: 16px;
  }
  .page-news .contents .evet_container {
    margin-bottom: 100px;
  }
  .page-news .contents .event_list {
    display: table;
    margin-bottom: 50px;
  }
  .page-news .contents .event_list .txt {
    display: table-cell;
  }
  .page-news .contents .event_list .txt .date {
    font-size: 38px;
  }
  .page-news .contents .event_list .txt .ttl {
    font-size: 18px;
  }
  .page-news .contents .event_list .txt .url {
    font-size: 20px;
  }
  .page-news .contents .detail_box .url {
    font-size: 20px;
  }
  .page-news .contents .event_list .img {
    display: table-cell;
    text-align: right;
  }
  .page-news .contents {
    margin: 66px auto 165px;
  }
	
.page-newst .caption {
    font-size: 14px;
    margin: 0 40px 97px;
  }
  .page-news .contents .detail_box {
    display: table;
    margin-bottom: 85px;
  }
  .page-news .contents .detail_ttl {
    display: table-cell;
    width: 19.375%;
  }
  .page-news .contents .detail_txt {
    display: table-cell;
    width: 80.72917%;
  }
  .page-news .contents .detail_txt ul {
    margin-bottom: 85px;
  }
  .page-news .contents .detail_txt dl {
    margin-bottom: 23px;
  }
  .page-news .contents .detail_txt dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-news .contents .detail_txt dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 0;
  }
  .page-news .contents .detail_txt p {
    font-size: 13px;
  }
  .page-news .contents {
    margin: 66px auto 165px;
  }
	
  .page-news .contents .event_list dl {
    margin-bottom: 23px;
  }
  .page-news .contents .event_list dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-news .contents .event_list dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 0;
  }
  .page-news .contents .event_list p {
    font-size: 13px;
  }
	
	
  .page-recruitment .caption {
    font-size: 14px;
    margin: 0 40px 97px;
  }
  .page-recruitment .contents .detail_box {
    display: table;
    margin-bottom: 85px;
  }
  .page-recruitment .contents .detail_box-entry {
    margin-bottom: 0;
  }
  .page-recruitment .contents .detail_ttl {
    display: table-cell;
    width: 19.375%;
  }
  .page-recruitment .contents .detail_txt {
    display: table-cell;
    width: 80.72917%;
  }
  .page-recruitment .contents .detail_txt ul {
    margin-bottom: 85px;
  }
  .page-recruitment .contents .detail_txt dl {
    margin-bottom: 23px;
  }
  .page-recruitment .contents .detail_txt dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-recruitment .contents .detail_txt dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 0;
  }
  .page-recruitment .contents .detail_txt p {
    font-size: 13px;
  }
  .page-recruitment .contents {
    margin: 66px auto 165px;
  }
}

@media (min-width: 600px) {
  .pageHead h2 {
    font-size: 90px;
  }
  .u-sp {
    display: none;
  }
  .page-home .home .mainvisual .mainvisual_txt {
    padding-top: 1em;
  }
  .page-home .home .news_list a .news_listtxt p {
    font-size: 11px;
    line-height: 1.5em;
  }
  .page-home .message .contents {
    padding-top: 308px;
    padding-bottom: 10px;
  }
  .page-home .message .ceo_img {
    width: 100%;
    float: none;
    display: block;
    padding-bottom: 50%;
  }
  .page-home .message .ceo_message {
    width: 100%;
    max-width: none;
    float: none;
    margin: 0;
    padding: 25px 30px 30px;
  }
  .page-home .interview {
    padding-top: 66px;
    padding-bottom: 10px;
  }
  .page-home .interview .employee {
    width: 33%;
  }
  .page-home .interview .employee .text .text_txt {
    font-size: 19px;
  }
  .page-home .whats {
    padding-top: 63px;
  }
  .page-home .whats .contents {
    width: 84%;
    max-width: none;
    margin: 0 auto 80px;
  }
  .page-home .whats .whats4 .inline .ttl_img .ttl {
    width: 100%;
    display: block;
  }
  .page-interview .head {
    margin-top: 22px;
  }
  .page-interview .head .img {
    width: 100%;
    padding-bottom: 50%;
    display: block;
  }
  .page-interview .head .panel {
    padding: 25px 31.5px 25px 31.5px;
    width: 100%;
    display: block;
  }
  .page-interview .head .panel .name {
    font-size: 40px;
    line-height: 1em;
  }
  .page-interview .head .panel .position {
    font-size: 18px;
    line-height: 1em;
  }
  .page-interview .head .panel .txt {
    font-size: 11px;
    line-height: normal;
    margin-top: 20px;
  }
  .page-interview .head {
    display: block;
  }
  .page-interview .contents {
    margin: 32px auto 82px auto;
    width: 84%;
  }
  .page-interview .contents .q {
    font-size: 14px;
    margin-bottom: 13px;
  }
  .page-interview .contents .a {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .page-news .event_title {
    margin-bottom: 27.5px;
  }
  .page-news .event_title h3 {
    font-size: 37px;
  }
  .page-news .event_title p {
    font-size: 9px;
  }
  .page-news .contents .evet_container {
    margin-bottom: 45px;
  }
  .page-news .contents .event_list {
    display: table;
    margin-bottom: 35px;
  }
  .page-news .contents .event_list .txt {
    display: table-cell;
  }
  .page-news .contents .event_list .txt .date {
    font-size: 25px;
  }
  .page-news .contents .event_list .txt .ttl {
    font-size: 12px;
  }
  .page-news .contents .event_list .txt .url {
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
  }
  .page-news .contents .detail_box .url {
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
  }
  .page-news .contents .event_list .img {
    display: table-cell;
    text-align: right;
    width: 40%;
  }
  .page-news .contents .event_list .img img {
    max-width: 315px;
    width: 100%;
  }
  .page-news .contents {
    margin: 32px auto 82px;
    width: 84%;
  }
	
.page-news .caption {
    font-size: 14px;
    margin: 0 40px 97px;
  }
  .page-news .contents .detail_box {
    display: table;
    margin-bottom: 85px;
  }
  .page-news .contents .detail_ttl {
    display: table-cell;
    width: 19.375%;
  }
  .page-news .contents .detail_txt {
    display: table-cell;
    width: 80.72917%;
  }
  .page-news .contents .detail_txt ul {
    margin-bottom: 85px;
  }
  .page-news .contents .detail_txt dl {
    margin-bottom: 23px;
  }
  .page-news .contents .detail_txt dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-news .contents .detail_txt dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 1em;
  }
  .page-news .contents .detail_txt p {
    font-size: 13px;
  }
  .page-news .contents {
    margin: 32px auto 82px;
    width: 84%;
  }
	
 .page-news .contents .event_list dl {
    margin-bottom: 23px;
  }
  .page-news .contents .event_list dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-news .contents .event_list dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 1em;
  }
  .page-news .contents .event_list p {
    font-size: 13px;
  }
	
  .page-recruitment .caption {
    font-size: 14px;
    margin: 0 40px 97px;
  }
  .page-recruitment .contents .detail_box {
    display: table;
    margin-bottom: 85px;
  }
  .page-recruitment .contents .detail_box-entry {
    margin-bottom: 0;
  }
  .page-recruitment .contents .detail_ttl {
    display: table-cell;
    width: 19.375%;
  }
  .page-recruitment .contents .detail_txt {
    display: table-cell;
    width: 80.72917%;
  }
  .page-recruitment .contents .detail_txt ul {
    margin-bottom: 85px;
  }
  .page-recruitment .contents .detail_txt dl {
    margin-bottom: 23px;
  }
  .page-recruitment .contents .detail_txt dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-recruitment .contents .detail_txt dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 1em;
  }
  .page-recruitment .contents .detail_txt p {
    font-size: 13px;
  }
  .page-recruitment .contents {
    margin: 32px auto 82px;
    width: 84%;
  }
}

@media (max-width: 360px) {
  .logo {
    width: 119px;
  }
  .logo img {
    display: none;
    width: 100%;
  }
  .logo .u-xsp {
    width: 119px;
    display: block;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

@media (min-width: 1800px) {
  .u-sp {
    display: none;
  }
}

@media (min-width: 900px) {
  .u-sp {
    display: none;
  }
  .page-home .home .news_list a .news_listtxt p {
    font-size: 12px;
  }
  .page-home .message .contents {
    padding-top: 228px;
    padding-bottom: 10px;
  }
  .page-home .message .ceo_img {
    float: left;
    width: 55.12445%;
    height: 500px;
    padding-bottom: 0;
  }
  .page-home .message .ceo_message {
    width: 35%;
    max-width: 379px;
    float: left;
    margin-left: 40px;
    margin-right: 0;
    margin-top: 0;
    padding: 0;
  }
  .page-home .interview {
    padding-top: 66px;
    padding-bottom: 10px;
  }
  .page-home .interview .employee {
    width: 33%;
  }
  .page-home .interview .employee .text .text_txt {
    font-size: 36px;
  }
  .page-home .whats {
    padding-top: 63px;
  }
  .page-home .whats .contents {
    width: 84%;
    max-width: none;
    margin: 0 auto 175px;
  }
  .page-home .whats dl dt:hover:after {
    left: 0;
  }
  .page-home .whats .whats4 .inline {
    /*display: table;*/
  }
  .page-interview .head {
    margin-top: 47px;
  }
  .page-interview .head .img {
    display: table-cell;
    padding-bottom: 0%;
  }
  .page-interview .head .panel {
    display: table-cell;
    padding: 47px 37px 30px 37px;
  }
  .page-interview .head .panel .name {
    font-size: 80px;
    line-height: 1em;
  }
  .page-interview .head .panel .position {
    font-size: 80px;
    line-height: 1em;
  }
  .page-interview .head .panel .txt {
    font-size: 13px;
    margin-top: 100px;
  }
  .page-interview .head {
    display: table;
  }
  .page-interview .contents {
    margin: 66px auto 165px auto;
  }
  .page-interview .contents .q {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .page-interview .contents .a {
    font-size: 14px;
    margin-bottom: 55px;
  }
  .page-news .event_title {
    margin-bottom: 0;
  }
  .page-news .event_title h3 {
    font-size: 70px;
  }
  .page-news .event_title p {
    font-size: 16px;
  }
  .page-news .contents .evet_container {
    margin-bottom: 100px;
  }
  .page-news .contents .event_list {
    display: table;
    margin-bottom: 50px;
  }
  .page-news .contents .event_list .txt {
    display: table-cell;
  }
  .page-news .contents .event_list .txt .date {
    font-size: 38px;
  }
  .page-news .contents .event_list .txt .ttl {
    font-size: 18px;
  }
  .page-news .contents .event_list .txt .url {
    font-size: 20px;
  }
  .page-news .contents .detail_box .url {
    font-size: 18px;
  }
  .page-news .contents .event_list .img {
    display: table-cell;
    text-align: right;
  }
  .page-news .contents {
    margin: 66px auto 165px;
  }
	
 .page-news .caption {
    font-size: 14px;
    margin: 0 40px 97px;
  }
  .page-news .contents .detail_box {
    display: table;
    margin-bottom: 85px;
  }
  .page-news .contents .detail_ttl {
    display: table-cell;
    width: 40.375%;
  }
  .page-news .contents .detail_txt {
    display: table-cell;
    width: 80.72917%;
  }
  .page-news .contents .detail_txt ul {
    margin-bottom: 85px;
  }
  .page-news .contents .detail_txt dl {
    margin-bottom: 23px;
  }
  .page-news .contents .detail_txt dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-news .contents .detail_txt dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 0;
  }
  .page-news .contents .detail_txt p {
    font-size: 13px;
  }
  .page-news .contents {
    margin: 66px auto 165px;
  }
	
 .page-news .contents .event_list dl {
    margin-bottom: 23px;
  }
  .page-news .contents .event_list dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-news .contents .event_list dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 0;
  }
  .page-news .contents .event_list p {
    font-size: 13px;
  }
	
  .page-recruitment .caption {
    font-size: 14px;
    margin: 0 40px 97px;
  }
  .page-recruitment .contents .detail_box {
    display: table;
    margin-bottom: 85px;
  }
  .page-recruitment .contents .detail_box-entry {
    margin-bottom: 0;
  }
  .page-recruitment .contents .detail_ttl {
    display: table-cell;
    width: 19.375%;
  }
  .page-recruitment .contents .detail_txt {
    display: table-cell;
    width: 80.72917%;
  }
  .page-recruitment .contents .detail_txt ul {
    margin-bottom: 85px;
  }
  .page-recruitment .contents .detail_txt dl {
    margin-bottom: 23px;
  }
  .page-recruitment .contents .detail_txt dl dt {
    width: 14.58065%;
    display: table-cell;
    font-size: 14px;
  }
  .page-recruitment .contents .detail_txt dl dd {
    width: 85.29032%;
    display: table-cell;
    font-size: 14px;
    padding-left: 0;
  }
  .page-recruitment .contents .detail_txt p {
    font-size: 13px;
  }
  .page-recruitment .contents {
    margin: 66px auto 165px;
  }
}

@media (max-width: 450px) {
  .page-home .home .txtmsk_w {
    -webkit-transform: scaleX(1) translateZ(0);
            transform: scaleX(1) translateZ(0);
  }
  .page-home .home .txtmsk_b {
    -webkit-transform: scaleX(0) translateZ(0);
            transform: scaleX(0) translateZ(0);
  }
}

@media (max-width: 670px) {
  .page-home .home .scrollAttention {
    display: none;
  }
}

@media (max-width: 379px) {
  .page-home .home .news_list a .morebtn {
    font-size: 11px;
    padding: 9px 60px 9px 13px;
  }
  .page-home .home .news_list a .morebtn:after {
    top: 3px;
    right: auto;
    left: 58px;
    width: 9px;
  }
  .page-home .home .news_list a .morebtn:before {
    top: 3px;
    right: auto;
    left: 52px;
    width: 15px;
  }
  .page-news a .formbtn {
    font-size: 11px;
    padding: 9px 60px 9px 13px;
  }
  .page-news a .formbtn:after {
    top: 3px;
    right: 19px;
    left: auto;
    width: 9px;
  }
  .page-news a .formbtn:before {
    top: 3px;
    right: 19px;
    left: auto;
    width: 15px;
  }
}

@media (max-width: 1279px) {
  .page-home .interview .contents {
    max-width: 960px;
  }
}

@media (min-width: 1280px) {
  .page-home .interview .employee:nth-child(4n+1) .text_inline {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .page-home .interview .employee:nth-child(4n+1).okHover:hover .img {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .page-home .interview .employee:nth-child(4n+1).okHover:hover .text_inline {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .page-home .interview .employee:nth-child(4n+2) .text_inline {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .page-home .interview .employee:nth-child(4n+2).okHover:hover .img {
    -webkit-transform: translatey(100%);
        -ms-transform: translatey(100%);
            transform: translatey(100%);
  }
  .page-home .interview .employee:nth-child(4n+2).okHover:hover .text_inline {
    -webkit-transform: translatey(0%);
        -ms-transform: translatey(0%);
            transform: translatey(0%);
  }
  .page-home .interview .employee:nth-child(4n+3) .text_inline {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .page-home .interview .employee:nth-child(4n+3).okHover:hover .img {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .page-home .interview .employee:nth-child(4n+3).okHover:hover .text_inline {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  .page-home .interview .employee:nth-child(4n) .text_inline {
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
  }
  .page-home .interview .employee:nth-child(4n).okHover:hover .img {
    -webkit-transform: translatey(-100%);
        -ms-transform: translatey(-100%);
            transform: translatey(-100%);
  }
  .page-home .interview .employee:nth-child(4n).okHover:hover .text_inline {
    -webkit-transform: translatey(0%);
        -ms-transform: translatey(0%);
            transform: translatey(0%);
  }
}

@media (max-width: 1279px) and (min-width: 599px) {
  .page-home .interview .employee:nth-child(3n+1) .text_inline {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .page-home .interview .employee:nth-child(3n+1).okHover:hover .img {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .page-home .interview .employee:nth-child(3n+1).okHover:hover .text_inline {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .page-home .interview .employee:nth-child(3n+2) .text_inline {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .page-home .interview .employee:nth-child(3n+2).okHover:hover .img {
    -webkit-transform: translatey(100%);
        -ms-transform: translatey(100%);
            transform: translatey(100%);
  }
  .page-home .interview .employee:nth-child(3n+2).okHover:hover .text_inline {
    -webkit-transform: translatey(0%);
        -ms-transform: translatey(0%);
            transform: translatey(0%);
  }
  .page-home .interview .employee:nth-child(3n) .text_inline {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .page-home .interview .employee:nth-child(3n).okHover:hover .img {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .page-home .interview .employee:nth-child(3n).okHover:hover .text_inline {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (max-width: 1200px) {
  .page-home .whats .whats2 .ttl {
    width: 23.91304%;
  }
}

@media (max-width: 900px) {
  .page-home .whats .whats4 .inline {
    display: block;
  }
}

