@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ==============================================
  COMMON SETTINGS

  memo:

  見出しゴ
  font-family: "a-otf-midashi-go-mb31-pr6n"

  中ゴBBB
  font-family: "a-otf-gothic-bbb-pr6n"

  Active Grotesk
  font-family: "a-otf-midashi-go-mb31-pr6n"

  例）
  h1 {
    font-family: "aktiv-grotesk";
  }

  ◎Medium
  font-family: "aktiv-grotesk",sans-serif;
  font-style: normal;
  font-weight: 500;
  ◎Regular
  font-family: "aktiv-grotesk",sans-serif;
  font-style: normal;
    font-weight: 400;

  @mixin ============================================= */
html, body, main, article {
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
  color: #46484c;
  backface-visibility: hidden;
  font-family: "aktiv-grotesk", "a-otf-gothic-bbb-pr6n",sans-serif;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

h1, h2, h3, h4, h5, h6, th {
  /* 見出しゴ */
  font-family: "aktiv-grotesk", "a-otf-midashi-go-mb31-pr6n", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

a {
  outline: none;
  text-decoration: none;
}

p a {
  color: #46484c;
  text-decoration: underline;
}

::selection {
  background: #b1ee00;
  color: #46484c;
}

::-moz-selection {
  background: #b1ee00;
  color: #46484c;
}

em {
  font-family: "a-otf-midashi-go-mb31-pr6n", sans-serif;
  font-style: normal;
  font-weight: normal;
  text-decoration: underline;
}

@media screen and (min-width: 801px) {
  .pcv {
    display: inherit;
  }
  .spv {
    display: none !important;
  }
}

#html-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ヘッダー */
#side {
  background: #ebeef2;
  display: block;
  width: 196px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  transition: 0.6s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  padding-top: 143px;
  box-sizing: border-box;
}

#side.start {
  opacity: 0;
}

#logo {
  position: absolute;
  top: 50px;
  left: 30px;
  z-index: 0;
  width: 144px;
}

#logo svg {
  width: 100%;
  height: auto;
}

#logo svg * {
  fill: #888e96;
}

/* グローバルメニュー */
#global-menu {
  color: #888e96;
  font-size: 15px;
  display: block;
}

#global-menu a {
  font-family: "aktiv-grotesk", "a-otf-midashi-go-mb31-pr6n", sans-serif;
  color: #888e96;
  line-height: 1;
  letter-spacing: 2px;
  display: block;
  padding: 17px 0 17px 30px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  transition-delay: 0.1s;
}

#global-menu li {
  position: relative;
}

#global-menu li:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  transition-delay: 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#global-menu li:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  transition-delay: 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#global-menu li.current {
  pointer-events: none;
}

#global-menu li.current a {
  color: #46484c;
}

#global-menu li.current:before {
  width: 100%;
  background: #b1ee00;
}

#global-menu li.current:after {
  width: 100%;
  background: #fff;
}

#global-menu li:hover a {
  color: #46484c;
  transition: 0.3s;
}

#global-menu li:hover:after {
  width: 100%;
  background: #fff;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#global-menu li span.update-date {
  color: #fff;
  background: #ff4b4b;
  height: 1em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 2px 6px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
  vertical-align: text-bottom;
  animation: updateBlink 5s infinite;
}

#global-menu .store {
  padding: 18px 0 17px;
}

#global-menu .store:before, #global-menu .store:after {
  display: none;
}

#global-menu .store a {
  padding: 0;
  display: block;
  height: 146px;
  background: #d4dbe4 url("/images/common/bnr_shaftten.svg") 50% 50% no-repeat;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
}

#global-menu .store a:hover {
  background-color: #b1ee00;
  transition: 0.3s;
}

@keyframes updateBlink {
  0% {
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

#side-footer-box {
  position: absolute;
  bottom: 0;
  padding-bottom: 38px;
  padding-left: 30px;
}

#side-footer-box .twitter {
  color: #888e96;
  margin-bottom: 65px;
  letter-spacing: 0.1em;
}

#side-footer-box .twitter .twitter__header {
  background: url("/images/common/side_ico_twi.png") no-repeat 0 center;
  font-size: 12px;
  padding-left: 20px;
}

#side-footer-box .twitter a {
  color: inherit;
  display: block;
  padding: 10px 0 0;
  line-height: 22px;
  font-size: 15px;
  margin-top: 20px;
}

#side-footer-box .twitter a + a {
  margin-top: 17px;
}

#side-footer-box .twitter a:hover {
  color: #46484c;
  transition: 0.3s;
}

#side-footer-box .copyright {
  color: #888e96;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 2px;
  padding: 0 0 6px 0;
  transform: scale(0.9);
  transform-origin: 0 0;
}

#side-footer-box .policy {
  color: #888e96;
  font-size: 10px;
  padding: 0 0 0 0;
  transform: scale(0.9);
  transform-origin: 0 0;
}

#side-footer-box .policy a {
  color: inherit;
  line-height: 1;
  letter-spacing: 1px;
}

#side-footer-box .policy a:hover {
  opacity: 0.7;
}

@media screen and (max-height: 833px) {
  #side .inner {
    overflow: scroll;
    height: 100%;
  }
  #side-footer-box {
    margin-top: 22px;
    position: relative;
    bottom: auto;
  }
}

#cover {
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
  z-index: 99;
}

#cover span {
  color: #888e96;
  font-size: 10px;
  width: 200px;
  height: 50px;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

#container {
  width: 100%;
  height: 100%;
  display: table;
}

#container-left,
#container-right {
  display: table-cell;
}

#container-left {
  width: 196px;
}

#container-right {
  position: relative;
}

#barba {
  width: 100%;
  height: 100%;
}

#page {
  width: 100%;
  height: 100%;
}

#archive-news {
  width: 227px;
  height: 100%;
  position: fixed;
  top: 0;
  left: -31px;
  z-index: 100;
  opacity: 0;
  transition: 0.6s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#archive-news.on {
  opacity: 1;
  left: 196px;
  transition: 1s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#archive-news ul {
  width: 227px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

#archive-news li {
  color: #888e96;
  font-size: 12px;
  line-height: 16px;
  font-feature-settings: "palt";
  display: block;
  width: 100%;
  height: 70px;
  position: relative;
  box-sizing: border-box;
  padding: 0 10px 0 0;
}

#archive-news .adjust-box {
  display: block;
  padding-right: 10px;
}

#archive-news a {
  color: inherit;
  display: block;
  width: 100%;
  height: 70px;
  padding: 10px 10px 0 35px;
  box-sizing: border-box;
  transition: 0.3s;
}

#archive-news a:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  transition-delay: 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#archive-news a:hover {
  color: #46484c;
}

#archive-news a:hover .date {
  color: #46484c;
}

#archive-news a:hover:after {
  width: 100%;
  background: #c0ff00;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#archive-news a span {
  position: relative;
  z-index: 1;
}

#archive-news li.on {
  pointer-events: none;
  color: #46484c;
}

#archive-news li.on .date {
  color: #46484c;
}

#archive-news li.on a:after {
  width: 100%;
  background: #c0ff00;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#archive-news .mm, #archive-news .yy {
  color: #888e96;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1px;
  position: absolute;
  top: 26px;
  left: 7px;
  z-index: 2;
  transform: rotate(90deg);
  transform-origin: 0 50%;
}

#archive-news .date {
  color: #888e96;
  font-size: 10px;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

@media screen and (min-width: 801px) and (max-width: 1300px) {
  #side {
    transition-delay: 0.2s;
  }
  #archive-news {
    left: -227px;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #archive-news.on {
    transition: 0.8s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
}

@media screen and (max-width: 800px) {
  /* ==============================================
    SP 共通

    memo:

    @mixin ============================================= */
  .pcv {
    display: none;
  }
  .spv {
    display: inherit;
  }
  #menu-toggle {
    width: 34px;
    width: 9.06667vw;
    height: 32px;
    height: 8.53333vw;
    position: absolute;
    top: 15px;
    top: 4vw;
    right: -49px;
    right: -13.06667vw;
    z-index: 101;
    cursor: pointer;
  }
  #menu-toggle .line1,
  #menu-toggle .line2,
  #menu-toggle .line3 {
    position: absolute;
    background: #888e96;
    width: 34px;
    width: 9.06667vw;
    height: 2px;
    height: 0.53333vw;
    transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
  }
  #menu-toggle .line1 {
    top: 0;
  }
  #menu-toggle .line2 {
    top: 15px;
    top: 4vw;
    transform-origin: 50%;
  }
  #menu-toggle .line3 {
    top: 30px;
    top: 8vw;
  }
  #menu-toggle.on .line1 {
    top: 50%;
    width: 43px;
    width: 11.46667vw;
    transform: rotate(135deg) scale(-1, 1);
    transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
  }
  #menu-toggle.on .line2 {
    opacity: 0;
    transform: rotate(180deg);
    transform-origin: 50%;
    transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
  }
  #menu-toggle.on .line3 {
    top: 50%;
    width: 43px;
    width: 11.46667vw;
    transform: rotate(-135deg) scale(-1, 1);
    transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
  }
  /* ヘッダー */
  #side {
    width: 136.5px;
    width: 36.4vw;
    left: -136.5px;
    left: -36.4vw;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.2s;
  }
  #side.on {
    left: 0;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #logo {
    position: absolute;
    top: 23.5px;
    top: 6.26667vw;
    left: 15px;
    left: 4vw;
    width: 107px;
    width: 28.53333vw;
    z-index: 0;
  }
  #logo img {
    width: 100%;
    height: auto;
  }
  #logo-sp {
    position: absolute;
    width: 107px;
    width: 28.53333vw;
    top: 15px;
    top: 4vw;
    right: 13px;
    right: 3.46667vw;
    line-height: 0;
    z-index: 100;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #logo-sp a {
    display: inline-block;
    width: 100%;
  }
  #logo-sp img {
    width: 100%;
    height: auto;
  }
  #logo-sp svg {
    width: 100%;
    height: auto;
  }
  #logo-sp svg * {
    fill: #888e96;
  }
  #logo-sp.on {
    right: -107px;
    right: -28.53333vw;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  /* グローバルメニュー */
  #global-menu {
    color: #888e96;
    font-size: 15px;
    font-size: 4vw;
    display: block;
  }
  #global-menu a {
    line-height: 1;
    letter-spacing: 2px;
    letter-spacing: 0.53333vw;
    display: block;
    padding: 20px 0 20px 15px;
    padding: 4vw 0 4vw 2.93333vw;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    transition: 0.3s;
    transition-delay: 0.1s;
  }
  #global-menu li {
    position: relative;
  }
  #global-menu li:hover a {
    color: inherit;
    transition: none;
  }
  #global-menu li:hover:after {
    content: none;
  }
  #global-menu li span.update-date {
    padding: 0.53333vw 1.33333vw;
    font-size: 8.5px;
    font-size: 2.26667vw;
  }
  #global-menu .store {
    padding: 15px 0 9px;
    padding: 4vw 0 2.26667vw;
  }
  #global-menu .store a {
    height: 23vw;
    background-size: 100%;
  }
  #global-menu .store a:hover {
    transition: none;
  }
  #side-footer-box {
    padding-left: 15px;
    padding-left: 4vw;
    padding-bottom: 20px;
    padding-bottom: 5.33333vw;
  }
  #side-footer-box .twitter {
    margin-bottom: 39.5px;
    margin-bottom: 10.53333vw;
  }
  #side-footer-box .twitter .twitter__header {
    font-size: 10px;
    font-size: 2.66667vw;
    padding-left: 15px;
    padding-left: 4vw;
    background: url("/images/common/side_ico_twi_sp.png") no-repeat 0 center;
    background-size: 2.53333vw auto;
  }
  #side-footer-box .twitter a {
    margin-top: 14px;
    padding: 0.8vw 0 0;
    font-size: 15px;
    font-size: 4vw;
    line-height: 21px;
    line-height: 5.6vw;
    margin-top: 10px;
  }
  #side-footer-box .copyright {
    font-size: 10px;
    font-size: 2.66667vw;
    letter-spacing: 2px;
    padding: 0 0 2.66667vw 0;
  }
  #side-footer-box .policy {
    font-size: 10px;
    font-size: 2.66667vw;
    padding: 0 0 0 0;
  }
  #side-footer-box .policy a {
    letter-spacing: 0;
  }
  #side-footer-box .policy a:hover {
    opacity: 1;
  }
  #container {
    width: 100%;
    height: 100%;
    display: block;
  }
  #container-left {
    display: none;
  }
  #container-right {
    display: block;
  }
  #page-inner {
    box-sizing: border-box;
  }
  #archive-news {
    background: #fff;
    width: 240.5px;
    width: 64.13333vw;
    position: absolute;
    left: -240.5px;
    left: -64.13333vw;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #archive-news .box {
    width: 100%;
    height: 100%;
  }
  #archive-news ul {
    width: 240.5px;
    width: 64.13333vw;
  }
  #archive-news.on {
    left: 136.5px;
    left: 36.4vw;
    transition: 0.8s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #archive-news li {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 18px;
    line-height: 4.8vw;
    height: 94px;
    height: 25.06667vw;
  }
  #archive-news a {
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    padding: 6vw 0 0 8vw;
    box-sizing: border-box;
    transition: 0.3s;
  }
  #archive-news a:after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #archive-news a:hover {
    color: #46484c;
  }
  #archive-news a:hover:after {
    width: 100%;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #archive-news li.on {
    pointer-events: none;
    color: #46484c;
  }
  #archive-news li.on a:after {
    width: 100%;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #archive-news .mm, #archive-news .yy {
    color: #888e96;
    font-size: 10px;
    font-size: 2.66667vw;
    top: 33px;
    top: 8.8vw;
    left: 7px;
    left: 1.86667vw;
  }
  #archive-news .date {
    font-size: 10px;
    font-size: 2.66667vw;
    margin-bottom: 5px;
    margin-bottom: 1.33333vw;
  }
}

/* ==============================================
  TOP

  memo:

  @mixin ============================================= */
#top {
  height: 100%;
  /* 作品紹介テキスト  */
  /* スライダーページング  */
}

#top #container-right {
  overflow: hidden;
}

#top #recent-news {
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.05em;
  width: 500px;
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 90;
  border-radius: 3px;
  box-sizing: border-box;
  transition: 0.3s;
  overflow: hidden;
}

#top #recent-news:hover {
  color: #999;
  background: white;
  transition: 0.3s;
}

#top #recent-news a {
  padding: 6px 40px 6px;
  box-sizing: border-box;
  display: inline-block;
  color: inherit;
}

#top #recent-news li {
  white-space: nowrap;
  display: none;
}

#top #recent-news li:first-child {
  display: block;
}

#top #recent-works-sp {
  display: none;
}

#top #recent-works {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#top #slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
}

#top #slider li {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#top #slider .prev-slide,
#top #slider .next-slide {
  display: block;
}

#top #slider .prev-slide img,
#top #slider .next-slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

#top .fill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: #fff;
  width: 100%;
  height: 100%;
}

#top .sheet-img {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-top: -50px;
  z-index: 2;
  background: url(/images/top/slide_sheet.png) 50% 50% no-repeat;
  background-size: contain;
}

#top .sheet-img img {
  display: none;
}

#top .line-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

#top .main-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

#top .main-img.news {
  max-width: 1285px;
  max-height: 906px;
  background-position: center center;
}

#top #slider-description {
  position: absolute;
  right: 50px;
  bottom: 60px;
  z-index: 10;
  color: #fff;
  text-align: right;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

#top #slider-description .title {
  font-size: 34px;
  margin: 0 0 10px;
  white-space: nowrap;
}

#top #slider-description .desc {
  font-size: 10px;
}

#top #slider-paging {
  position: absolute;
  right: 50px;
  bottom: 30px;
  z-index: 10;
}

#top #slider-paging li {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  border: 1px solid #fefefe;
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
  transition: 0.3s;
}

#top #slider-paging li:hover {
  opacity: 0.5;
  transition: 0.1s;
}

#top #slider-paging li.on {
  pointer-events: none;
  background: #fefefe;
  transition: 0.6s;
}

#top .link_shaftten {
  display: none;
}

@media screen and (max-width: 800px) {
  #container-right {
    width: 100%;
    height: 100%;
  }
  #top {
    width: 100%;
    height: 100%;
  }
  #top #recent-news {
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 18px;
    line-height: 4.8vw;
    border-radius: 0;
    width: 100%;
    transition: none;
  }
  #top #recent-news:hover {
    transition: none;
  }
  #top #recent-news a {
    padding: 3px 20px;
    padding: 0.8vw 5.33333vw;
    display: block;
  }
  #top #slider {
    display: none;
  }
  #top #slider img {
    width: 100% !important;
    height: auto !important;
  }
  #top #slider li {
    position: relative;
  }
  #top #slider-description,
  #top #slider-paging,
  #top .bg-sheet {
    display: none !important;
  }
  #top #recent-works-sp {
    display: block;
    width: 100%;
    height: 100%;
  }
  #top #slider-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #top #slider-sp img {
    width: 100% !important;
    height: auto !important;
  }
  #top #slider-sp li {
    z-index: 1;
  }
  #top #slider-sp a {
    width: 100%;
    height: 100%;
    display: block;
  }
  #top #slider-sp .swiper-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  #top #slider-sp .swiper-slide.news {
    background-color: #ececec;
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;
  }
  #top .link_shaftten {
    display: block;
    position: absolute;
    z-index: 80;
    left: 50%;
    margin-left: -38vw;
    bottom: 19vw;
    width: 76vw;
    height: 21vw;
    background: url("/images/top/bnr_shaftten-sp.png") 50% 50% no-repeat;
    background-size: 100%;
    filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.35));
  }
  #top .link_shaftten.is--hidden {
    opacity: 0;
    transition: 0.3s;
  }
}

/* ==============================================
  NEWS

  memo:

  @mixin ============================================= */
#news {
  transition: margin 0.6s;
}

.pc_wide #news.p-container {
  margin-left: 227px;
  transition: margin 0.6s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#news #page-inner {
  width: 805px;
  margin: 0 auto;
  padding: 110px 0;
}

#news .ttl-main {
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

#news .entry {
  display: block;
}

#news .entry-date {
  text-align: center;
  font-size: 10px;
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

#news .entry-title {
  text-align: center;
  font-size: 15px;
  line-height: 30px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

#news .entry-content {
  font-size: 12px;
  letter-spacing: 0.5px;
  margin: 0 0 30px;
}

#news .entry-content p {
  margin: 0 0 10px;
}

#news .entry-content p, #news .entry-content a {
  line-height: 24px;
  text-decoration: none;
}

#news .entry-content p:first-child {
  margin-top: -6px;
}

#news .entry-content.column2 {
  display: table;
}

#news .entry-content.column2 .left,
#news .entry-content.column2 .right {
  display: table-cell;
  vertical-align: top;
}

#news .entry-content.column2 .left {
  width: 403px;
}

#news .entry-content.column2 .left a {
  line-height: 0;
  opacity: 1;
  transition: 0.3s;
}

#news .entry-content.column2 .left a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

#news .entry-content.column2 .right {
  padding: 0 0 0 30px;
}

#news .entry-content.noImg {
  display: block;
}

#news .entry-content.noImg .right {
  vertical-align: top;
}

#news .entry-content.noImg .left {
  display: none;
}

#news .entry-content.noImg .right {
  display: block;
  padding: 0;
  width: 420px;
  margin: 0 auto;
}

#news .entry-content a.link {
  color: #888e96;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

#news .entry-content a.link:before {
  background: #888e96;
  content: "";
  position: absolute;
  bottom: 4px;
  width: 0;
  height: 2px;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#news .entry-content a.link:hover:before {
  width: 100%;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#news .entry-content a.link:after {
  content: "";
  background: url("/images/common/ico_link.png") no-repeat 0 0;
  background-size: 100% auto;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -22px;
  top: 2px;
}

#news .entry-content p.link a {
  color: #888e96;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

#news .entry-content p.link a:before {
  background: #888e96;
  content: "";
  position: absolute;
  bottom: 4px;
  width: 0;
  height: 2px;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#news .entry-content p.link a:hover:before {
  width: 100%;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#news .entry-content p.link a:after {
  content: "";
  background: url("/images/common/ico_link.png") no-repeat 0 0;
  background-size: 100% auto;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -22px;
  top: 2px;
}

#news #entry-popup {
  background: rgba(255, 255, 255, 0.5);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

#news #entry-popup div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 800px) {
  /* ==============================================
    NEWS

    memo:

    @mixin ============================================= */
  #news #page-inner {
    width: 100%;
    padding: 80px 30px;
    padding: 21.33333vw 8vw;
  }
  #news .ttl-main {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 50px;
    margin-bottom: 13.33333vw;
  }
  #news .entry {
    display: block;
  }
  #news .entry-date {
    text-align: center;
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 8px;
    margin-bottom: 2.13333vw;
  }
  #news .entry-title {
    text-align: center;
    font-size: 15px;
    font-size: 4vw;
    line-height: 23px;
    line-height: 6.13333vw;
    letter-spacing: 1px;
    margin-bottom: 30px;
    margin-bottom: 8vw;
  }
  #news .entry-content {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 24px;
    line-height: 6.4vw;
    margin-bottom: 30px;
    margin-bottom: 8vw;
  }
  #news .entry-content p {
    margin: 0 0 10px;
    margin: 0 0 2.66667vw;
  }
  #news .entry-content p, #news .entry-content a {
    line-height: 24px;
    line-height: 6.4vw;
    text-decoration: none;
  }
  #news .entry-content p:first-child {
    margin-top: 0;
  }
  #news .entry-content.column2 {
    display: block;
  }
  #news .entry-content.column2 .left,
  #news .entry-content.column2 .right {
    display: block;
    vertical-align: top;
  }
  #news .entry-content.column2 .left {
    width: auto;
    margin-bottom: 30px;
    margin-bottom: 8vw;
  }
  #news .entry-content.column2 .left p.popup {
    line-height: 1;
  }
  #news .entry-content.column2 .left img {
    width: 100%;
    height: auto;
  }
  #news .entry-content.column2 .left a,
  #news .entry-content.column2 .left a:hover {
    opacity: 1;
    transition: none;
  }
  #news .entry-content.column2 .right {
    padding: 0;
  }
  #news .entry-content.noImg .right {
    width: auto;
  }
  #news .entry-content a.link {
    color: #888e96;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    text-decoration: none;
  }
  #news .entry-content a.link:before {
    display: none;
  }
  #news .entry-content a.link:after {
    content: "";
    background: url("/images/common/ico_link.png") no-repeat 0 0;
    background-size: 100% auto;
    display: inline-block;
    width: 16px;
    height: 16px;
    width: 4.26667vw;
    height: 4.26667vw;
    position: absolute;
    right: -22px;
    right: -5.86667vw;
    top: 2px;
    top: 0.53333vw;
  }
  #news .entry-content p.link a {
    color: #888e96;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    text-decoration: none;
  }
  #news .entry-content p.link a:before {
    background: #888e96;
    content: "";
    position: absolute;
    bottom: 4px;
    width: 0;
    height: 2px;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #news .entry-content p.link a:hover:before {
    width: 100%;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #news .entry-content p.link a:after {
    content: "";
    background: url("/images/common/ico_link.png") no-repeat 0 0;
    background-size: 100% auto;
    display: inline-block;
    width: 16px;
    height: 16px;
    width: 4.26667vw;
    height: 4.26667vw;
    position: absolute;
    right: -22px;
    right: -5.86667vw;
    top: 2px;
    top: 0.53333vw;
  }
  #news #entry-popup div {
    padding: 0 30px;
    padding: 0 8vw;
  }
  #news #entry-popup div img {
    width: 100%;
    height: auto;
  }
}

/* ==============================================
  WORKS

  memo:

  @mixin ============================================= */
#works {
  height: 100%;
}

#works #archive-btn-prev,
#works #archive-btn-next {
  width: 52px;
  height: 38px;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  z-index: 10;
  color: #888e96;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  transition: 0.2s;
}

#works #archive-btn-prev span,
#works #archive-btn-next span {
  pointer-events: none;
}

#works #archive-btn-prev:hover,
#works #archive-btn-next:hover {
  opacity: 0.5;
  transition: 0.2s;
}

#works #archive-btn-prev {
  top: 30px;
}

#works #archive-btn-prev:hover {
  top: 25px;
}

#works #archive-btn-prev:before {
  text-align: center;
  background: url("/images/works/ico_arrow.png") no-repeat 0 0;
  content: '';
  width: 52px;
  height: 18px;
  display: block;
  margin-bottom: 3px;
}

#works #archive-btn-next {
  bottom: 30px;
}

#works #archive-btn-next:hover {
  bottom: 25px;
}

#works #archive-btn-next:after {
  text-align: center;
  background: url("/images/works/ico_arrow.png") no-repeat 0 0;
  content: '';
  width: 52px;
  height: 18px;
  display: block;
  transform: scale(1, -1);
  margin-top: 3px;
}

#works #archive-yymm {
  width: 227px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 196px;
  z-index: 98;
}

#works #archive-yymm ul {
  width: 227px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

#works #archive-yymm li {
  background: rgba(255, 255, 255, 0.8);
  color: #888e96;
  font-size: 12px;
  line-height: 18px;
  display: block;
  width: 100%;
  height: 70px;
  position: relative;
}

#works #archive-yymm li.year {
  display: flex;
  align-items: center;
}

#works #archive-yymm li.year .box {
  width: 100%;
  position: relative;
  text-align: center;
  padding-left: 5px;
}

#works #archive-yymm li.year .box:before, #works #archive-yymm li.year .box:after {
  position: absolute;
  top: 50%;
  content: '';
  display: block;
  height: 1px;
  width: 67px;
  background-color: #888e96;
}

#works #archive-yymm li.year .box:before {
  left: 25px;
}

#works #archive-yymm li.year .box:after {
  right: 20px;
}

#works #archive-yymm .adjust-box {
  display: block;
}

#works #archive-yymm span.clickable {
  pointer-events: none;
}

#works #archive-yymm .clickable {
  color: inherit;
  display: block;
  width: 100%;
  height: 70px;
  padding: 10px 0 0 35px;
  box-sizing: border-box;
  transition: 0.3s;
}

#works #archive-yymm .clickable:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  transition-delay: 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#works #archive-yymm .clickable:hover {
  color: #46484c;
}

#works #archive-yymm .clickable:hover .date {
  color: #46484c;
}

#works #archive-yymm .clickable:hover:after {
  width: 100%;
  background: #c0ff00;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#works #archive-yymm .clickable span {
  position: relative;
  z-index: 1;
}

#works #archive-yymm li.on {
  pointer-events: none;
  color: #46484c;
}

#works #archive-yymm li.on .date {
  color: #46484c;
}

#works #archive-yymm li.on .clickable:after {
  width: 100%;
  background: #c0ff00;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#works #archive-yymm .mm, #works #archive-yymm .yy {
  color: #888e96;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1px;
  position: absolute;
  top: 26px;
  left: 7px;
  z-index: 2;
  transform: rotate(90deg);
  transform-origin: 0 50%;
}

#works #archive-yymm .date {
  color: #888e96;
  font-size: 10px;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

#works #archive-content-inner {
  position: relative;
  margin-left: 16%;
  height: 100%;
  padding-bottom: 50px;
  overflow-x: hidden;
  box-sizing: border-box;
}

#works #archive-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

#works #archive-content .entry-sheet {
  width: 1026px;
  height: 728px;
  min-width: 1026px;
  min-height: 728px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
  opacity: 0;
}

#works #archive-content .entry-sheet path,
#works #archive-content .entry-sheet polygon,
#works #archive-content .entry-sheet polyline {
  /*破線*/
  stroke-DASHarray: 300;
  stroke-DASHoffset: 300;
}

#works #archive-content .entry-sheet rect,
#works #archive-content .entry-sheet line {
  fill: none !important;
  /*破線*/
  stroke-DASHarray: 3000;
  stroke-DASHoffset: 3000;
}

#works #archive-content .entry-sheet #svg-sharp-text {
  fill: #C3C6CA;
  stroke: #C6C6C6;
  stroke-miterlimit: 10;
}

#works #archive-content .entry-sheet #svg-time-text {
  fill: #C3C6CA;
  stroke: #C6C6C6;
  stroke-miterlimit: 10;
}

#works #archive-content .entry-sheet #svg-logo-text1 {
  fill: #C3C6CA;
  stroke: #C6C6C6;
  stroke-miterlimit: 10;
}

#works #archive-content .entry-sheet #svg-logo-text2 {
  fill: #C3C6CA;
  stroke: #C6C6C6;
  stroke-miterlimit: 10;
}

#works #archive-content .entry-sheet #svg-deco {
  fill: #c3c6ca;
  stroke: #c3c6ca;
  stroke-width: 0.5px;
  stroke-miterlimit: 10;
}

#works #archive-content .entry-sheet #svg-rect-outer {
  fill: none;
  stroke: #dbdddf;
  stroke-width: 2px;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-miterlimit: 1;
}

#works #archive-content .entry-sheet #svg-rect-inner {
  fill: none;
  stroke: #dbdddf;
  stroke-width: 1px;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-miterlimit: 1;
}

#works #archive-content .entry-sheet #svg-line-y {
  stroke: #dbdddf;
  stroke-width: 1px;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-miterlimit: 1;
}

#works #archive-content .entry-sheet #svg-line-x {
  stroke: #dbdddf;
  stroke-width: 1px;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-miterlimit: 1;
}

#works #archive-content .entry {
  display: none;
  width: 1027px;
  height: 726px;
  min-width: 1027px;
  min-height: 726px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
}

#works #archive-content .entry-detail {
  position: absolute;
  left: 120px;
  top: 200px;
  z-index: 1;
  padding: 0 0 40px;
}

#works #archive-content .date {
  font-size: 12px;
  margin-bottom: 30px;
}

#works #archive-content .entry-title {
  color: #46484c;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 36px;
  margin-top: -6px;
  margin-bottom: 30px;
}

#works #archive-content .entry-title-en {
  color: #888e96;
  font-size: 24px;
  line-height: 1;
  position: absolute;
  left: 100px;
  top: 92px;
}

#works #archive-content .entry-category {
  color: #46484c;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 30px;
}

#works #archive-content .entry-desc {
  color: #46484c;
  font-size: 12px;
  line-height: 24px;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 5px #fff;
}

#works #archive-content .entry-desc p {
  letter-spacing: 0;
  margin-bottom: 20px;
}

#works #archive-content figure.figure {
  line-height: 0;
  margin-bottom: 40px;
}

#works #archive-content .figure1 {
  margin-right: 20px;
}

#works #archive-content .figure1,
#works #archive-content .figure2 {
  font-size: 0;
  width: 130px;
  min-height: 180px;
  display: inline-block;
  border: 1px solid #f2f2f2;
  box-sizing: border-box;
}

#works #archive-content .figure1 img,
#works #archive-content .figure2 img {
  width: 100%;
  height: auto;
}

#works #archive-content a.popup {
  opacity: 1;
  transition: 0.3s;
}

#works #archive-content a.popup:hover {
  opacity: 0.7;
  transition: 0.3s;
}

#works #archive-content a.link {
  color: #888e96;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

#works #archive-content a.link:before {
  background: #888e96;
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 2px;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#works #archive-content a.link:hover:before {
  width: 100%;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#works #archive-content a.link:after {
  content: "";
  background: url("/images/common/ico_link.png") no-repeat 0 0;
  background-size: 100% auto;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -22px;
  top: -3px;
}

#works #archive-content .staff {
  font-size: 10px;
  margin-bottom: 20px;
}

#works #archive-content .staff h3 {
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
  line-height: 1;
  background: url("/images/works/ico_staff.png") no-repeat 0 0;
  cursor: pointer;
  min-height: 13px;
  padding: 0 0 20px 18px;
}

#works #archive-content .staff h3:hover {
  opacity: 0.7;
}

#works #archive-content .staff table {
  overflow: hidden;
  display: block;
}

#works #archive-content .staff td {
  line-height: 13px;
  padding-bottom: 10px;
}

#works #archive-content .staff .left {
  padding-right: 20px;
}

#works #archive-content .staff.on h3 {
  background: url("/images/works/ico_staff_on.png") no-repeat 0 0;
}

#works #archive-content .entry-copyright {
  color: #888e96;
  font-size: 8px;
  letter-spacing: 1px;
  text-align: left;
  margin-top: 30px;
}

#works #archive-content figure.vsl-main {
  line-height: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#works #archive-content figure.vsl-main img {
  position: relative;
}

#works #archive-content figure.vsl-main.rectangle {
  top: 120px;
  right: 40px;
}

#works #archive-content .vsl-main-shadow {
  pointer-events: none;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 0;
}

#works #archive-content .vsl-main-shadow img {
  position: relative;
}

#works #archive-content .entry.current {
  display: block;
}

#works #entry-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

#works #entry-popup div {
  text-align: center;
  width: auto;
  height: 80%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#works #entry-popup div img {
  border: 1px solid #f2f2f2;
  box-sizing: border-box;
  width: auto;
  max-height: 100%;
}

#works #scroll-icon {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: auto;
  width: 24px;
  height: 41px;
  z-index: 11;
}

#works #scroll-icon path {
  stroke-width: 0.5px;
}

#works #svg-scroll-circle {
  position: relative;
  animation: moveY 1.8s infinite cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

@keyframes moveY {
  0% {
    cy: 13px;
    opacity: 0.6;
  }
  70% {
    cy: 23px;
    opacity: 0;
  }
  71% {
    cy: 13px;
    opacity: 0;
  }
  100% {
    cy: 13px;
    opacity: 0.6;
  }
}

#works .scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-color: rgba(170, 170, 170, 0.6);
  z-index: 100;
}

#works .scrollbar-knob {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
}

@media screen and (min-width: 801px) and (max-width: 1300px) {
  /* ==============================================
   * PC  < 1580
   *
   * memo:
   *
   * ============================================== */
  #works #archive-yymm {
    left: 0;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #works #archive-yymm.on {
    left: 196px;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  /* ヘッダー */
  #side {
    left: -196px;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #side.on {
    left: 0;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #menu-toggle {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 15px;
    right: -49px;
    z-index: 101;
    cursor: pointer;
  }
  #menu-toggle .line1,
  #menu-toggle .line2,
  #menu-toggle .line3 {
    position: absolute;
    background: #888e96;
    width: 34px;
    height: 2px;
    transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
  }
  #menu-toggle .line1 {
    top: 0;
  }
  #menu-toggle .line2 {
    top: 15px;
    transform-origin: 50%;
  }
  #menu-toggle .line3 {
    top: 30px;
  }
  #menu-toggle.on .line1 {
    top: 50%;
    width: 43px;
    transform: rotate(135deg) scale(-1, 1);
    transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
  }
  #menu-toggle.on .line2 {
    opacity: 0;
    transform: rotate(180deg);
    transform-origin: 50%;
    transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
  }
  #menu-toggle.on .line3 {
    top: 50%;
    width: 43px;
    transform: rotate(-135deg) scale(-1, 1);
    transition: 0.5s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
  }
  #container {
    display: block;
  }
  #container-left {
    background: #fff;
    width: 0;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #container-right {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
}

@media screen and (min-width: 801px) and (max-width: 1080px) {
  /* ==============================================
   * PC  < 1280
   *
   * memo:
   *
   * ============================================== */
  #works #archive-btn-prev,
  #works #archive-btn-next {
    display: none;
  }
  #works #archive-content-inner {
    margin-left: 0;
  }
  #works #archive-yymm {
    left: -227px;
    transition: 0.4s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #works #archive-yymm li {
    background: rgba(250, 250, 250, 0.8);
  }
  #works #archive-yymm.on {
    left: 196px;
    transition: 0.8s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
}

@media screen and (min-width: 801px) and (max-width: 980px) {
  /* ==============================================
   * PC  < 1048
   *
   * memo:
   *
   * ============================================== */
  #works #archive-btn-prev,
  #works #archive-btn-next {
    display: none;
  }
  #works #archive-content-inner {
    margin-left: 0;
    overflow: visible;
  }
  #works #archive-content {
    position: static;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible;
  }
  #works #archive-content .entry-sheet {
    width: 100%;
    min-width: 0;
    min-height: 0;
    position: absolute;
    padding-top: 0;
  }
  #works #archive-content .entry {
    background: none;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    position: relative;
    padding-top: 15px;
    padding-top: 4vw;
  }
  #works #archive-content .entry-detail {
    position: static;
    padding: 0 0 40px;
  }
  #works #archive-content .date {
    padding: 0 8vw;
  }
  #works #archive-content .entry-title {
    padding: 0 8vw;
  }
  #works #archive-content .entry-title-en {
    display: none;
  }
  #works #archive-content .entry-category {
    padding: 0 8vw;
    position: static;
  }
  #works #archive-content .entry-desc {
    color: #46484c;
    padding: 0 8vw;
    position: static;
  }
  #works #archive-content .entry-desc p {
    margin-bottom: 10px;
    margin-bottom: 2.66667vw;
  }
  #works #archive-content .entry-desc figure {
    margin-bottom: 40px;
    margin-bottom: 10.66667vw;
  }
  #works #archive-content .figure1,
  #works #archive-content .figure2 {
    min-height: 0;
    line-height: 0;
  }
  #works #archive-content .entry-copyright {
    padding: 0 8vw;
    margin-top: 15px;
    margin-top: 4vw;
  }
  #works #archive-content figure.vsl-main {
    position: static;
    display: table;
    margin: 0 auto;
  }
  #works #archive-content figure.vsl-main img {
    width: 100%;
  }
  #works #archive-content .vsl-main-shadow {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  /* ==============================================
   * WORKS SP
   *
   * memo:
   *
   * ============================================== */
  #works #archive-btn-prev {
    top: 20px;
    top: 5.33333vw;
  }
  #works #scroll-icon {
    display: none;
  }
  #works #archive-yymm {
    overflow: auto;
    background: #fff;
    width: 240.5px;
    width: 64.13333vw;
    position: absolute;
    left: -240.5px;
    left: -64.13333vw;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #works #archive-yymm .box {
    width: 100%;
    height: 100%;
  }
  #works #archive-yymm ul {
    width: 240.5px;
    width: 64.13333vw;
  }
  #works #archive-yymm.on {
    left: 136.5px;
    left: 36.4vw;
    transition: 0.8s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #works #archive-yymm li {
    background: #fff;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 18px;
    line-height: 4.8vw;
    height: 49.5px;
    height: 13.2vw;
  }
  #works #archive-yymm li.year .box {
    height: 4.8vw;
  }
  #works #archive-yymm li.year .box:before, #works #archive-yymm li.year .box:after {
    width: 140px;
  }
  #works #archive-yymm li.year .box:before {
    left: 52px;
  }
  #works #archive-yymm li.year .box:after {
    right: 47px;
  }
  #works #archive-yymm .clickable {
    color: inherit;
    display: block;
    width: 100%;
    height: 35px;
    height: 9.33333vw;
    padding: 6vw 0 0 8vw;
    box-sizing: border-box;
    transition: 0.3s;
  }
  #works #archive-yymm .clickable:after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
    transition-delay: 0.1s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #works #archive-yymm .clickable:hover {
    color: #46484c;
  }
  #works #archive-yymm .clickable:hover:after {
    width: 100%;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #works #archive-yymm li.on {
    pointer-events: none;
    color: #46484c;
  }
  #works #archive-yymm li.on a:after {
    width: 100%;
    transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
  }
  #works #archive-yymm .mm, #works #archive-yymm .yy {
    color: #888e96;
    font-size: 10px;
    font-size: 2.66667vw;
    top: 16.5px;
    top: 4.4vw;
    left: 7px;
    left: 1.86667vw;
  }
  #works #archive-yymm .date {
    font-size: 10px;
    font-size: 2.66667vw;
    margin-bottom: 5px;
    margin-bottom: 1.33333vw;
  }
  #works #archive-content-inner {
    margin-left: 0;
    padding: 0 0 120px;
    padding: 0 0 32vw;
    overflow: visible;
  }
  #works #archive-content {
    position: static;
    width: 100%;
    height: 100%;
    top: 0;
    left: 20px;
    overflow: visible;
  }
  #works #archive-content .entry-sheet {
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    position: absolute;
    z-index: 0;
    padding-top: 70px;
    padding-top: 18.66667vw;
  }
  #works #archive-content .entry {
    display: none;
    background: none;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    position: relative;
    padding-top: 70px;
    padding-top: 18.66667vw;
  }
  #works #archive-content .entry-detail {
    max-width: 100%;
    position: static;
    padding: 20px 0;
    padding: 5.333vw 0;
  }
  #works #archive-content .date {
    font-size: 10px;
    font-size: 2.66667vw;
    margin-top: 15px;
    margin-top: 4vw;
    margin-bottom: 15px;
    margin-bottom: 4vw;
    padding: 0 8vw;
  }
  #works #archive-content .entry-title {
    font-size: 25px;
    font-size: 6.66667vw;
    line-height: 35px;
    line-height: 9.33333vw;
    margin-bottom: 12.5px;
    margin-bottom: 3.33333vw;
    padding: 0 8vw;
  }
  #works #archive-content .entry-title-en {
    display: none;
  }
  #works #archive-content .entry-category {
    font-size: 12px;
    font-size: 3.2vw;
    margin-bottom: 15px;
    margin-bottom: 4vw;
    padding: 0 8vw;
    position: static;
  }
  #works #archive-content .entry-desc {
    color: #46484c;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 24px;
    line-height: 6.4vw;
    padding: 0 8vw;
    position: static;
  }
  #works #archive-content .entry-desc br {
    display: none;
  }
  #works #archive-content .entry-desc p {
    margin-bottom: 10px;
    margin-bottom: 2.66667vw;
  }
  #works #archive-content .entry-desc figure {
    margin-bottom: 40px;
    margin-bottom: 10.66667vw;
  }
  #works #archive-content .entry-desc a.link {
    font-size: 12px;
    font-size: 3.2vw;
  }
  #works #archive-content .entry-desc a.link:after {
    content: "";
    background: url("/images/common/ico_link.png") no-repeat 0 0;
    background-size: 100% auto;
    width: 16px;
    right: -20px;
    top: -2px;
    width: 16px;
    width: 4.26667vw;
    height: 16px;
    height: 4.26667vw;
    right: -20px;
    right: -5.33333vw;
    top: -2px;
    top: -0.53333vw;
  }
  #works #archive-content .figure1,
  #works #archive-content .figure2 {
    min-height: 0;
    line-height: 0;
  }
  #works #archive-content .entry-copyright {
    font-size: 8px;
    font-size: 2.13333vw;
    padding: 0 8vw;
    margin-top: 15px;
    margin-top: 4vw;
  }
  #works #archive-content figure.vsl-main {
    position: static;
    display: table;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    padding: 0 4vw;
  }
  #works #archive-content figure.vsl-main img {
    position: static;
    width: 100%;
    height: auto;
  }
  #works #archive-content figure.vsl-main.rectangle {
    padding: 0 60px;
    padding: 0 16vw;
  }
  #works #archive-content .vsl-main-shadow {
    display: none !important;
  }
  #works #archive-content .vsl-main-shadow img {
    position: static;
  }
  #works #archive-content .entry:first-child {
    display: block;
  }
  #works #entry-popup div img {
    width: 100%;
    height: auto;
  }
}

/* ==============================================
  COMPANY

  memo:

  @mixin ============================================= */
#company {
  /* 作品紹介テキスト  */
}

#company #page-inner {
  width: 805px;
  margin: 0 auto;
  padding: 110px 0;
}

#company .block {
  display: block;
  padding: 0 0 50px;
}

#company .ttl-main {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}

#company .message {
  text-align: center;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 50px;
}

#company .signature {
  text-align: center;
  padding: 0 0 30px;
}

#company .signature dt {
  font-size: 15px;
  line-height: 1;
  margin: 0 0 5px;
}

#company .signature dd {
  line-height: 0;
}

#company .ttl {
  font-size: 30px;
  text-align: center;
  line-height: 1;
  margin: 0 0 30px;
}

#company .text {
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 10px;
}

#company .table-wrap {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #ebeef2;
}

#company table {
  font-size: 0;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

#company table th, #company table td {
  padding: 22px 25px 20px;
  border-bottom: 2px solid #ebeef2;
  box-sizing: border-box;
}

#company table th {
  width: 200px;
  font-size: 15px;
  line-height: 28px;
  border-right: 2px solid #ebeef2;
  box-sizing: border-box;
}

#company table td {
  font-size: 12px;
  line-height: 24px;
  padding-top: 20px;
}

#company table tr:last-child th, #company table tr:last-child td {
  border-bottom: 0px none;
}

#company span.bold {
  font-weight: bold;
}

#company .gmap {
  margin: 10px 0 10px;
}

#company #gmap {
  width: 100%;
  height: 290px;
  margin: 10px 0 10px;
}

#company .btn-contact {
  text-align: center;
  font-size: 24px;
  line-height: 1;
  background: #ebeef2;
  width: 100%;
  opacity: 1;
  transition: 0.3s;
}

#company .btn-contact:hover {
  opacity: 0.7;
  transition: 0.3s;
}

#company .btn-contact a {
  color: #46484c;
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 0;
  box-sizing: border-box;
}

@media screen and (max-width: 800px) {
  /* ==============================================
    SP COMPANY

    memo:

    @mixin ============================================= */
  #company {
    /* 作品紹介テキスト  */
  }
  #company #page-inner {
    width: 100%;
    margin: 0 auto;
    padding: 80px 30px;
    padding: 21.33333vw 8vw;
    box-sizing: border-box;
  }
  #company .block {
    display: block;
    padding: 0 0 25px;
    padding: 0 0 6.66667vw;
  }
  #company .ttl-main {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 50px;
    margin-bottom: 13.33333vw;
  }
  #company .message {
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 24px;
    line-height: 6.4vw;
    margin-bottom: 25px;
    margin-bottom: 6.66667vw;
    text-align: left;
    text-align: justify;
  }
  #company .signature {
    text-align: center;
    padding: 0 0 60px;
    padding: 0 0 16vw;
  }
  #company .signature dt {
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1;
    margin: 0 0 5px;
    margin: 0 0 1.33333vw;
  }
  #company .signature dd {
    width: 292px;
    width: 58.4vw;
    margin: 0 auto;
  }
  #company .signature dd img {
    width: 100%;
    height: auto;
  }
  #company .ttl {
    font-size: 16px;
    font-size: 4.26667vw;
    margin: 0 0 26px;
    margin: 0 0 6.93333vw;
  }
  #company .text {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 24px;
    line-height: 6.4vw;
    margin-bottom: 10px;
    margin-bottom: 2.66667vw;
  }
  #company .table-wrap {
    border: 0px none;
  }
  #company table {
    font-size: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
  #company table tbody, #company table tr {
    display: block;
    width: 100%;
  }
  #company table th, #company table td {
    text-align: left;
    display: block;
    width: 100%;
    padding: 6px 13px 6px;
    padding: 1.6vw 0 1.6vw;
  }
  #company table th {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 14px;
    line-height: 3.73333vw;
    border-right: 0px none;
    border-bottom: 2px solid #ebeef2;
    padding-bottom: 3px;
    padding-bottom: 0.8vw;
  }
  #company table td {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 20px;
    line-height: 5.33333vw;
    border: 0px none;
    margin-bottom: 20px;
    margin-bottom: 5.33333vw;
  }
  #company table tr:last-child th {
    border-bottom: 2px solid #ebeef2;
  }
  #company table tr:first-child th {
    border-bottom: 2px solid #ebeef2;
  }
  #company .gmap {
    width: 100%;
  }
  #company .btn-contact {
    font-size: 12px;
    font-size: 3.2vw;
    width: 100%;
    opacity: 1;
    transition: none;
  }
  #company .btn-contact:hover {
    opacity: 1;
    transition: none;
  }
  #company .btn-contact a {
    color: #46484c;
    display: block;
    padding: 18px 0;
    padding: 4.8vw 0;
  }
}

/* ==============================================
  CONTACT

  memo:

  @mixin ============================================= */
#contact {
  /* 作品紹介テキスト  */
}

#contact #page-inner {
  position: relative;
}

#contact .langSelector {
  position: absolute;
  right: 0;
  top: 40px;
}

#contact .langSelector:after {
  clear: both;
  content: ' ';
  display: block;
}

#contact .langSelector_btn {
  float: left;
  width: 70px;
  height: 20px;
  border-radius: 10px;
  background-color: #ebeef2;
  line-height: 20px;
  text-align: center;
  font-size: 9px;
  cursor: default;
}

#contact .langSelector_btn.disactive {
  color: #888e96;
  cursor: pointer;
}

#contact .langSelector_btn-en {
  margin-left: 4px;
}

#contact #page-inner {
  width: 805px;
  margin: 0 auto;
  padding: 110px 0;
}

#contact .block {
  display: block;
  padding: 0 0 50px;
}

#contact .ttl-main {
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

#contact .desc {
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 30px;
}

#contact .ttl {
  font-size: 24px;
  text-align: center;
  line-height: 1;
  margin: 0 0 26px;
}

#contact .text {
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 10px;
}

#contact .table-wrap {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #ebeef2;
  margin: 0 0 60px;
}

#contact table {
  font-size: 0;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

#contact table th, #contact table td {
  width: 50%;
  padding: 22px 25px 20px;
  border-bottom: 2px solid #ebeef2;
  box-sizing: border-box;
}

#contact table th {
  font-size: 15px;
  line-height: 28px;
  border-right: 2px solid #ebeef2;
}

#contact table th .notice {
  font-size: 10px;
  font-weight: normal;
  display: block;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

#contact table td {
  font-size: 12px;
  line-height: 24px;
  padding-top: 20px;
}

#contact table tr:last-child th, #contact table tr:last-child td {
  border-bottom: 0px none;
}

#contact .btn-back {
  opacity: 1;
  transition: 0.3s;
}

#contact .btn-back:hover {
  opacity: 0.7;
  transition: 0.3s;
}

#contact a.link {
  color: #888e96;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

#contact a.link:before {
  background: #888e96;
  content: "";
  position: absolute;
  bottom: 4px;
  width: 0;
  height: 2px;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#contact a.link:hover:before {
  width: 100%;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#contact a.link:after {
  content: "";
  background: url("/images/common/ico_link.png") no-repeat 0 0;
  background-size: 100%;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -22px;
  top: 2px;
}

#contact a.mailto {
  color: #888e96;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

#contact a.mailto:before {
  background: #888e96;
  content: "";
  position: absolute;
  bottom: 4px;
  width: 0;
  height: 2px;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

#contact a.mailto:hover:before {
  width: 100%;
  transition: 0.3s cubic-bezier(0.825, 0.005, 0.175, 0.995);
}

@media screen and (max-width: 800px) {
  /* ==============================================
    SP CONTACT

    memo:

    @mixin ============================================= */
  #contact {
    /* 作品紹介テキスト  */
  }
  #contact #page-inner {
    width: 100%;
    margin: 0 auto;
    padding: 80px 30px;
    padding: 21.33333vw 8vw;
    box-sizing: border-box;
  }
  #contact .block {
    display: block;
    padding: 0 0 25px;
    padding: 0 0 6.66667vw;
  }
  #contact .ttl-main {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 30px;
    margin-bottom: 8vw;
  }
  #contact .desc {
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 24px;
    line-height: 6.4vw;
    margin: 0 0 26px;
    margin: 0 0 6.93333vw;
    text-align: left;
    text-align: justify;
  }
  #contact .ttl {
    font-size: 16px;
    font-size: 4.26667vw;
    margin: 0 0 26px;
    margin: 0 0 6.93333vw;
  }
  #contact .text {
    text-align: left;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 24px;
    line-height: 6.4vw;
    margin-bottom: 10px;
    margin-bottom: 2.66667vw;
  }
  #contact .table-wrap {
    border: 0px none;
    margin: 0 0 26px;
    margin: 0 0 6.93333vw;
  }
  #contact table {
    font-size: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
  #contact table tbody, #contact table tr {
    display: block;
    width: 100%;
  }
  #contact table th, #contact table td {
    text-align: left;
    display: block;
    width: 100%;
    padding: 6px 0 6px;
    padding: 1.6vw 0 1.6vw;
  }
  #contact table th {
    font-size: 12px;
    font-size: 3.2vw;
    ine-height: 20px;
    line-height: 5.33333vw;
    border-right: 0px none;
    border-bottom: 2px solid #ebeef2;
    padding-bottom: 3px;
    padding-bottom: 0.8vw;
  }
  #contact table th .notice {
    color: #666;
    font-size: 8px;
    font-size: 2.13333vw;
    font-weight: normal;
    display: block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 5px;
    margin-bottom: 1.33333vw;
  }
  #contact table td {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 20px;
    line-height: 5.33333vw;
    border: 0px none;
    margin-bottom: 20px;
    margin-bottom: 5.33333vw;
  }
  #contact table tr:last-child th {
    border-bottom: 2px solid #ebeef2;
  }
  #contact table tr:first-child th {
    border-bottom: 2px solid #ebeef2;
  }
}

/* ==============================================
  RECRUIT

  memo:

  @mixin ============================================= */
#recruit {
  /* 作品紹介テキスト  */
}

#recruit #page-inner {
  width: 805px;
  margin: 0 auto;
  padding: 110px 0;
}

#recruit .block {
  display: block;
  padding: 0 0 50px;
}

#recruit .ttl-main {
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

#recruit .ttl {
  font-size: 24px;
  text-align: center;
  line-height: 1;
  margin: 0 0 26px;
}

#recruit .text {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

#recruit .table-wrap {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #ebeef2;
}

#recruit a {
  color: inherit;
  text-decoration: underline;
}

#recruit a:hover {
  opacity: 0.7;
}

#recruit table {
  font-size: 0;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

#recruit table th, #recruit table td {
  width: 50%;
  padding: 22px 25px 20px;
  border-bottom: 2px solid #ebeef2;
  box-sizing: border-box;
}

#recruit table th {
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.5px;
  border-right: 2px solid #ebeef2;
}

#recruit table td {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.5px;
  padding-top: 20px;
}

#recruit table tr:last-child th, #recruit table tr:last-child td {
  border-bottom: 0px none;
}

#recruit table.recruit-detail th {
  width: 200px;
}

#recruit table.recruit-detail td {
  width: auto;
}

#recruit table.recruit-detail tr:last-child th, #recruit table.recruit-detail tr:last-child td {
  border-bottom: 0px none;
}

@media screen and (max-width: 800px) {
  /* ==============================================
    SP RECRUIT

    memo:

    @mixin ============================================= */
  #recruit {
    /* 作品紹介テキスト  */
  }
  #recruit #page-inner {
    width: 100%;
    margin: 0 auto;
    padding: 80px 30px;
    padding: 21.33333vw 8vw;
    box-sizing: border-box;
  }
  #recruit .block {
    display: block;
    padding: 0 0 25px;
    padding: 0 0 6.66667vw;
  }
  #recruit .ttl-main {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 50px;
    margin-bottom: 13.33333vw;
  }
  #recruit .ttl {
    font-size: 16px;
    font-size: 4.26667vw;
    margin: 0 0 26px;
    margin: 0 0 6.93333vw;
  }
  #recruit .text {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 24px;
    line-height: 6.4vw;
    margin-bottom: 10px;
    margin-bottom: 2.66667vw;
  }
  #recruit .table-wrap {
    border: 0px none;
    margin: 0 0 26px;
    margin: 0 0 6.93333vw;
  }
  #recruit table {
    font-size: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    display: block;
    margin: 0 0 13px;
    margin: 0 0 3.46667vw;
  }
  #recruit table tbody, #recruit table tr {
    display: block;
    width: 100%;
  }
  #recruit table th, #recruit table td {
    text-align: left;
    display: block;
    width: 100%;
    padding: 6px 13px 6px;
    padding: 1.6vw 0 1.6vw;
  }
  #recruit table th {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 14px;
    line-height: 3.73333vw;
    border-right: 0px none;
    border-bottom: 2px solid #ebeef2;
    padding-bottom: 3px;
    padding-bottom: 0.8vw;
  }
  #recruit table td {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 20px;
    line-height: 5.33333vw;
    border: 0px none;
    margin-bottom: 20px;
    margin-bottom: 5.33333vw;
  }
  #recruit table tr:last-child th {
    border-bottom: 2px solid #ebeef2;
  }
  #recruit table tr:first-child th {
    border-bottom: 2px solid #ebeef2;
  }
  #recruit table.recruit-detail th {
    width: auto;
  }
  #recruit table.recruit-detail td {
    width: auto;
  }
  #recruit table.recruit-detail tr:last-child th {
    border-bottom: 2px solid #ebeef2;
  }
  #recruit table.recruit-detail tr:first-child th {
    border-bottom: 2px solid #ebeef2;
  }
}

/* ==============================================
  PRIVACY

  memo:

  @mixin ============================================= */
#privacy {
  /* 作品紹介テキスト  */
}

#privacy #page-inner {
  width: 805px;
  margin: 0 auto;
  padding: 110px 0;
}

#privacy .block {
  display: block;
  padding: 0 0 50px;
}

#privacy .ttl-main {
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
}

#privacy .ttl {
  font-size: 24px;
  text-align: center;
  line-height: 1;
  margin: 0 0 26px;
}

#privacy .text {
  text-align: justify;
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 10px;
}

#privacy .text a {
  opacity: 1;
  transition: 0.2s;
}

#privacy .text a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

@media screen and (max-width: 800px) {
  /* ==============================================
    SP PRIVACY

    memo:

    @mixin ============================================= */
  #privacy {
    /* 作品紹介テキスト  */
  }
  #privacy #page-inner {
    width: 100%;
    margin: 0 auto;
    padding: 80px 30px;
    padding: 21.33333vw 8vw;
    box-sizing: border-box;
  }
  #privacy .block {
    display: block;
    padding: 0 0 40px;
    padding: 0 0 10.66667vw;
  }
  #privacy .ttl-main {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 50px;
    margin-bottom: 13.33333vw;
  }
  #privacy .ttl {
    font-size: 14px;
    font-size: 3.73333vw;
    margin: 0 0 26px;
    margin: 0 0 6.93333vw;
  }
  #privacy .ttl.nowrap {
    letter-spacing: -1px;
    white-space: nowrap;
  }
  #privacy .text {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 24px;
    line-height: 6.4vw;
    margin-bottom: 10px;
    margin-bottom: 2.66667vw;
  }
}

/**
 * Swiper 3.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: April 25, 2015 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-fles-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 0.9;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #bc9b38;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  margin: 20px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
  /* Firefox 16+, IE10, Opera 12.50+ */
  /* Firefox 16+, IE10, Opera 12.50+ */
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* Firefox 16+, IE10, Opera 12.50+ */
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}

/* Cube */
.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-prev, .swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-cube.swiper-container-vertical .swiper-cube-shadow {
  z-index: 0;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
