img {
  pointer-events: none;
}

.pc-show {
  display: block;
}

.sp-show {
  display: none;
}

.js-flowup {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  -webkit-transition: 0.75s opacity cubic-bezier(0.6, 0, 0.3, 1) 0.25s, 1s -webkit-transform cubic-bezier(0.6, 0, 0.3, 1) 0.25s;
  transition: 0.75s opacity cubic-bezier(0.6, 0, 0.3, 1) 0.25s, 1s -webkit-transform cubic-bezier(0.6, 0, 0.3, 1) 0.25s;
  transition: 0.75s opacity cubic-bezier(0.6, 0, 0.3, 1) 0.25s, 1s transform cubic-bezier(0.6, 0, 0.3, 1) 0.25s;
  transition: 0.75s opacity cubic-bezier(0.6, 0, 0.3, 1) 0.25s, 1s transform cubic-bezier(0.6, 0, 0.3, 1) 0.25s, 1s -webkit-transform cubic-bezier(0.6, 0, 0.3, 1) 0.25s;
}

.js-flowup.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.js-border {
  position: relative;
  z-index: 0;
  /*
  &:before {
    content: "";
    display: block;
    position: absolute;
    top: calc(200% + 50px);
    left: -100%;
    z-index: -1;
    width: 0;
    height: 1px;
    background: #000;
    transform-origin: bottom left;
    transform: rotate(-15deg);
    transition: width .5s cubic-bezier(0.6, 0, 0.3, 1),
                background .75s cubic-bezier(0.6, 0, 0.3, 1);
  }
  */
}

.js-border:before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - 120px);
  left: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 calc(30vw - 120px) 0;
  border-color: transparent;
  -webkit-transition: border-width 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.25s, border-color 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.25s;
  transition: border-width 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.25s, border-color 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.25s;
}

.js-border:after {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - 121px);
  left: 0;
  z-index: -1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 calc(30vw - 120px) calc(100vw - 120px);
  border-color: transparent transparent #fff transparent;
  -webkit-transition: border-width 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.25s, border-color 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.25s;
  transition: border-width 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.25s, border-color 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.25s;
}

.js-border.active:before {
  border-width: 0 0 calc(30vw - 120px) calc(100vw - 120px);
  border-color: transparent transparent rgba(0, 0, 0, 0.25) transparent;
}

body {
  font-size: 14px;
}

body .wrapper {
  padding: 60px;
  position: relative;
}

body .wrapper:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  background: #fff;
}

body .wrapper:after {
  content: "";
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  background: #fff;
}

body .wrapper > div:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 60px;
  height: 100%;
  background: #fff;
}

body .wrapper > div:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 60px;
  height: 100%;
  background: #fff;
}

nav {
  position: fixed;
  top: 50%;
  left: 12px;
  z-index: 100;
}

nav h2 {
  padding: 0 0 12px 0;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  z-index: 101;
  cursor: pointer;
  /*
    @media screen and (min-width: 769px) {
      &:hover {
        span {
          transform: translate3d(calc(-50% + 5px), 0, 0);
        }
      }
    }
    */
}

nav h2 > span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.18, 1, 0.22, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.18, 1, 0.22, 1);
  transition: transform 0.2s cubic-bezier(0.18, 1, 0.22, 1);
  transition: transform 0.2s cubic-bezier(0.18, 1, 0.22, 1), -webkit-transform 0.2s cubic-bezier(0.18, 1, 0.22, 1);
}

nav h2 > span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 1px;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transform: rotate(18deg);
  transform: rotate(18deg);
  background: #000;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.18, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.18, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.22, 1);
}

nav h2 > span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 1px;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: rotate(-18deg);
  transform: rotate(-18deg);
  background: #000;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.18, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.18, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.18, 1, 0.22, 1);
}

nav > div {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 60px 0 80px;
  background: #fff;
  text-align: left;
  z-index: 100;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0.25, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0, 0.25, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0, 0.25, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0, 0.25, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0, 0.25, 0.5, 1);
}

nav > div:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: width 0.6s cubic-bezier(0, 0.25, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0, 0.25, 0.5, 1);
  transition: width 0.6s cubic-bezier(0, 0.25, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0, 0.25, 0.5, 1);
  transition: width 0.6s cubic-bezier(0, 0.25, 0.5, 1), transform 0.6s cubic-bezier(0, 0.25, 0.5, 1);
  transition: width 0.6s cubic-bezier(0, 0.25, 0.5, 1), transform 0.6s cubic-bezier(0, 0.25, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0, 0.25, 0.5, 1);
  background: #fff;
}

nav > div ul {
  position: relative;
  z-index: 101;
}

nav > div ul li {
  margin: 0 0 40px 0;
  -webkit-transform: translate3d(-200%, 0, 0);
  transform: translate3d(-200%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0.25, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0, 0.25, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0, 0.25, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0, 0.25, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0, 0.25, 0.5, 1);
}

nav > div ul li:nth-of-type(1) {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

nav > div ul li:nth-of-type(2) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

nav > div ul li:nth-of-type(3) {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

nav > div ul li:nth-of-type(4) {
  -webkit-transition-delay: .25s;
  transition-delay: .25s;
}

nav > div ul li:nth-of-type(5) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

nav > div ul li:nth-of-type(6) {
  -webkit-transition-delay: .35s;
  transition-delay: .35s;
}

nav > div ul li:nth-of-type(7) {
  -webkit-transition-delay: .4s;
  transition-delay: .4s;
}

nav > div ul li:nth-of-type(8) {
  -webkit-transition-delay: .45s;
  transition-delay: .45s;
}

nav > div ul li:last-of-type {
  margin: 0;
}

nav > div ul li a {
  font-size: 24px;
  color: #000;
  position: relative;
}

nav > div ul li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  left: -2px;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: width .2s ease;
  transition: width .2s ease;
}

@media screen and (min-width: 769px) {
  nav > div ul li a:hover:before {
    width: calc(100% + 4px);
  }
}

nav > div ul li span {
  font-size: 24px;
  color: #e5e5e5;
}

nav > div ul li .current:before {
  width: calc(100% + 4px);
}

nav > div ul .nav-share {
  display: none;
}

.share {
  position: fixed;
  top: 50%;
  right: 12px;
  z-index: 101;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.share h2 {
  margin: 0 0 20px 0;
  font-size: 12px;
  font-weight: 400;
}

.share ul li {
  margin: 0 0 18px 0;
}

.share ul li a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

@media screen and (min-width: 769px) {
  .share ul li a:hover {
    opacity: .5;
  }
}

.share ul li:nth-of-type(1) a img {
  width: 24px;
  height: 19px;
}

.share ul li:nth-of-type(2) {
  margin: 0;
}

.share ul li:nth-of-type(2) a img {
  width: 9px;
  height: 19px;
}

.scroll {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 101;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.scroll:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 1px;
  height: 20px;
  background: #000;
}

.scroll p {
  padding: 0 0 26px 0;
  font-size: 12px;
  font-weight: 400;
}

.attention {
  position: fixed;
  /*
  bottom: 28px;
  right: 28px;
  */
  bottom: 18px;
  right: 18px;
  z-index: 101;
  width: 200px;
  height: 200px;
  background: url(../img/txt_attention.svg) center center no-repeat;
  background-size: 200px 200px;
  -webkit-mix-blend-mode: difference;
  mix-blend-mode: difference;
}

article {
  background: #fff;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0.25, 0.5, 1);
  transition: opacity 0.4s cubic-bezier(0, 0.25, 0.5, 1);
}

footer {
  padding: 40px 0;
  /*
  ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 40px 0;
    li {
      margin: 0 30px 0 0;
      &:last-of-type {
        margin: 0;
      }
      a {
        width: 100%;
        height: 100%;
        color: #000;
        position: relative;
        &:before {
          content: "";
          display: block;
          position: absolute;
          top: 9px;
          left: -2px;
          width: 0;
          height: 1px;
          background: #000;
          transition: width .2s ease;
        }
        @media screen and (min-width: 769px) {
          &:hover {
            &:before {
              width: calc(100% + 4px);
            }
          }
        }
      }
      .current {
        pointer-events: none;
        &:before {
          width: calc(100% + 4px);
        }
      }
    }
  }
  > div {
    display: flex;
    justify-content: center;
    align-items: center;
    > iframe {
      width: 100px !important;
      margin: 0 30px 0 0 !important;
    }
    > p {
      small {
        font-size: 12px;
      }
    }
  }
  */
}

footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 40px 0;
}

footer ul li {
  margin: 0 30px 0 0;
}

footer ul li:last-of-type {
  margin: 0;
}

footer ul li a {
  width: 100%;
  height: 100%;
  color: #000;
  position: relative;
}

footer ul li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: -2px;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: width .2s ease;
  transition: width .2s ease;
}

@media screen and (min-width: 769px) {
  footer ul li a:hover:before {
    width: calc(100% + 4px);
  }
}

footer > p small {
  font-size: 12px;
  -webkit-transform: rotate(0.001deg);
  transform: rotate(0.001deg);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 100%;
  padding: 0;
  background: #fff;
}

.loader:before {
  display: none;
}

.loader > div:before, .loader > div:after {
  display: none;
}

.loader > div:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 301;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 0;
  height: 2px;
  background: #000;
}

.loader > div:nth-of-type(2) {
  position: absolute;
  top: calc(50% - 26px);
  left: 50%;
  z-index: 301;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #000;
}

/*
.ripple-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 0;
  background: url(http://ice-amaoto.com/common/img/ripple_spacer.png) center center no-repeat;
  background-size: cover;
  &:before,
  &:after {
    display: none;
  }
}
*/
.active nav h2 > span:before {
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: translate3d(-24px, 0, 0) rotate(-18deg);
  transform: translate3d(-24px, 0, 0) rotate(-18deg);
}

.active nav h2 > span:after {
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: translate3d(-24px, 0, 0) rotate(18deg);
  transform: translate3d(-24px, 0, 0) rotate(18deg);
}

.active nav > div {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.active nav > div:before {
  /*
        transition: width .4s cubic-bezier(0, .25, .5, 1),
                    transform .75s cubic-bezier(0.18, 1, 0.22, 1);
        */
  -webkit-transform: skewX(15deg);
  transform: skewX(15deg);
}

.active nav > div ul li {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.active article {
  opacity: .5;
}

.pjax-fadeout nav > div {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pjax-fadeout nav > div:before {
  width: 100vw;
  -webkit-transform: translate3d(0, 0, 0) skewX(0);
  transform: translate3d(0, 0, 0) skewX(0);
}

.pjax-fadeout nav > div ul li {
  -webkit-transform: translate3d(-200%, 0, 0);
  transform: translate3d(-200%, 0, 0);
}

.sec-ttl-01 {
  margin: 0 0 35px 0;
  font-family: 'Lora', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.75em;
  letter-spacing: .075em;
  text-align: left;
}

.sec-ttl-02 {
  margin: 0 0 25px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75em;
  letter-spacing: .075em;
  text-align: left;
}

.sec-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: .075em;
  text-align: left;
  word-wrap: break-word;
  -webkit-transform: rotate(0.001deg);
  transform: rotate(0.001deg);
}

.sec-cap {
  font-size: 12px;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: .075em;
  text-align: left;
  -webkit-transform: rotate(0.001deg);
  transform: rotate(0.001deg);
}

.link-01 {
  text-align: right;
}

.link-01 a {
  display: inline-block;
  padding: 0 0 0 52px;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: .075em;
  color: #000;
  position: relative;
}

.link-01 a:before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 32px;
  height: 5px;
  background: url(../img/icn_vec.svg);
  background-size: 32px 5px;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

@media screen and (min-width: 769px) {
  .link-01 a:hover:before {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.btn-01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px 40px;
  border: 1px solid #e5e5e5;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75em;
  letter-spacing: .075em;
  position: relative;
}

.btn-01 a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}

.btn-01 a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background: #000;
  -webkit-transition: width 0.2s cubic-bezier(0.6, 0, 0.3, 1);
  transition: width 0.2s cubic-bezier(0.6, 0, 0.3, 1);
}

.btn-01 a span {
  display: block;
  font-size: 12px;
}

.btn-01 a:hover:after {
  left: 0;
  right: auto;
  width: 100%;
}

#home .main {
  /*
    min-width: 880px;
    width: 100%;
    height: calc(52.5vw - 120px);
    */
  width: 100%;
  min-height: 58vw;
  height: calc(100vh - 120px);
  margin: 0 auto 40px;
  background: url(../img/bg_main_pc.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

#home .main .main-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}

#home .main .main-logo a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

@media screen and (min-width: 769px) {
  #home .main .main-logo a:hover {
    opacity: .5;
  }
}

#home .main .main-logo a img {
  width: 150px;
  height: 77px;
}

#home .lede {
  margin: 0 0 120px 0;
  padding: 0 10px;
}

#home .lede .lede-txt {
  width: 880px;
  margin: 0 auto;
}

#home .lede .lede-txt img:nth-of-type(1) {
  width: 880px;
  height: 87px;
}

#home .lede .lede-txt img:nth-of-type(2) {
  display: none;
  width: 880px;
  height: 132px;
}

#home .lede .lede-logo {
  display: none;
}

#home .news {
  margin: 0 0 180px 0;
  padding: 0 10px;
}

#home .news > div {
  width: 880px;
  margin: 0 auto;
}

#home .news > div .sec-ttl-01 {
  margin: 0 0 15px 0;
  font-size: 40px;
  /*
        &:before,
        &:after {
          display: none;
        }
        */
}

#home .news > div dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 30px 0;
  border-top: 1px solid #000;
}

#home .news > div dl dt,
#home .news > div dl dd {
  padding: 14px 0;
  border-bottom: 1px solid #000;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .075em;
  -webkit-transform: rotate(0.001deg);
  transform: rotate(0.001deg);
}

#home .news > div dl dt {
  width: 180px;
  text-align: left;
}

#home .news > div dl dd {
  width: calc(100% - 180px);
  text-align: left;
}

#home .news > div dl dd a {
  color: #000;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  #home .news > div dl dd a:hover {
    text-decoration: none;
  }
}

#home .intro {
  margin: 0 0 180px 0;
  padding: 0 10px;
  background: url(../img/bg_introduction_01_pc.jpg) center center no-repeat;
  background-size: auto 100%;
  position: relative;
  z-index: 6;
}

#home .intro > div {
  width: 640px;
  margin: 0 auto;
  padding: 100px 0 120px;
}

#home .intro > div .sec-ttl-01 {
  color: #fff;
  text-align: center;
}

#home .intro > div .sec-ttl-02 {
  color: #fff;
  text-align: center;
}

#home .intro > div .sec-txt {
  margin: 0 0 25px 0;
  color: #fff;
  text-align: center;
}

#home .intro > div .sec-txt:last-of-type {
  margin: 0;
}

#home .story {
  margin: 0 0 180px 0;
  padding: 0 10px;
  position: relative;
  z-index: 5;
}

#home .story > div {
  width: 880px;
  margin: 0 auto;
  /*
      ul {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: wrap;
        background: #000;
        li {
          width: calc(100% / 3);
          font-size: 0;
          line-height: 0;
          letter-spacing: 0;
          img {
            width: 100%;
          }
        }
      }
      */
}

#home .story > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#home .story > div > div > div {
  width: calc(100% - 370px);
}

#home .story > div > div > div .sec-txt {
  margin: 0 0 30px 0;
}

#home .story > div > div > div .sec-txt:last-of-type {
  margin: 0;
}

#home .story > div > div > figure {
  width: 370px;
  height: 420px;
  background: url(../img/img_story_01_pc.jpg) top left no-repeat;
  background-size: 370px 420px;
}

#home .trailer {
  margin: 0 0 180px 0;
  padding: 0 10px;
  position: relative;
  z-index: 4;
}

#home .trailer > div {
  width: 880px;
  margin: 0 auto;
}

#home .trailer > div .sec-ttl-02 {
  margin: 5px 0 0 0;
  text-align: center;
}

#home .trailer > div .trailer-box {
  width: 100%;
  position: relative;
}

#home .trailer > div .trailer-box:before {
  content: "";
  display: block;
  padding-top: 56.3%;
}

#home .trailer > div .trailer-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#home .trailer > div .trailer-box .trailer-box-btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url(../img/bg_trailer_01.jpg) top center no-repeat;
  background-size: cover;
}

#home .trailer > div .trailer-box .trailer-box-btn > div {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

@media screen and (min-width: 769px) {
  #home .trailer > div .trailer-box .trailer-box-btn > div:hover {
    opacity: .5;
  }
}

#home .trailer > div .trailer-box .trailer-box-btn > div img {
  width: 84px;
  height: 84px;
}

#home .cast {
  margin: 0 0 180px 0;
  padding: 0 10px;
  position: relative;
  z-index: 3;
}

#home .cast > div {
  width: 880px;
  margin: 0 auto;
}

#home .cast > div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 60px 0;
}

#home .cast > div ul li {
  width: 180px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

#home .cast > div ul li img {
  width: 100%;
}

#home .cast > div ul:nth-of-type(1) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 0 25px 0;
}

#home .cast > div ul:nth-of-type(1) li {
  margin: 0 0 0 10px;
}

#home .cast > div ul:nth-of-type(1) li:nth-of-type(1) {
  -webkit-transform: translate(0, -5px) rotate(-5deg);
  transform: translate(0, -5px) rotate(-5deg);
}

#home .cast > div ul:nth-of-type(1) li:nth-of-type(2) {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

#home .cast > div ul:nth-of-type(1) li:nth-of-type(3) {
  -webkit-transform: translate(0, -20px) rotate(2deg);
  transform: translate(0, -20px) rotate(2deg);
}

#home .cast > div ul:nth-of-type(1) li:nth-of-type(4) {
  -webkit-transform: translate(0, 10px) rotate(5deg);
  transform: translate(0, 10px) rotate(5deg);
}

#home .cast > div ul:nth-of-type(2) {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#home .cast > div ul:nth-of-type(2) li {
  margin: 0 10px 0 0;
}

#home .cast > div ul:nth-of-type(2) li:nth-of-type(1) {
  -webkit-transform: translate(0, -5px) rotate(-10deg);
  transform: translate(0, -5px) rotate(-10deg);
}

#home .cast > div ul:nth-of-type(2) li:nth-of-type(2) {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

#home .cast > div ul:nth-of-type(2) li:nth-of-type(3) {
  -webkit-transform: translate(0, -20px) rotate(2deg);
  transform: translate(0, -20px) rotate(2deg);
}

#home .cast > div ul:nth-of-type(2) li:nth-of-type(4) {
  -webkit-transform: translate(0, 10px) rotate(5deg);
  transform: translate(0, 10px) rotate(5deg);
}

#home .staff {
  margin: 0 0 180px 0;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

#home .staff > div {
  width: 880px;
  margin: 0 auto;
}

#home .staff > div > div {
  width: 640px;
  margin: 0 0 0 auto;
  /*
        .staff-box-02 {
          display: flex;
          justify-content: flex-start;
          align-items: flex-start;
          margin: 0 0 60px 0;
          &:last-of-type {
            margin: 0;
          }
          > div {
            margin: 0 60px 0 0;
            &:last-of-type {
              margin: 0;
            }
            .sec-ttl-02 {
              margin: 0;
            }
          }
        }
        */
}

#home .staff > div > div .staff-box-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 40px 0;
}

#home .staff > div > div .staff-box-01 > figure {
  width: 200px;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}

#home .staff > div > div .staff-box-01 > figure img {
  width: 100%;
}

#home .staff > div > div .staff-box-01 > figure figcaption {
  display: none;
}

#home .staff > div > div .staff-box-01 > figure figcaption br {
  display: none;
}

#home .staff > div > div .staff-box-01 > div {
  width: calc(100% - 200px);
  margin: -5px 0 0 0;
  padding: 0 0 0 40px;
}

#home .staff > div > div .staff-box-02 {
  margin: 0 0 60px 0;
}

#home .staff > div > div .staff-box-02:last-of-type {
  margin: 0;
}

#home .staff > div > div .staff-box-02 .sec-ttl-02 {
  margin: 0;
}

#home .staff > div > div .staff-box-03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

#home .staff > div > div .staff-box-03 ul:nth-of-type(1) {
  width: 40%;
}

#home .staff > div > div .staff-box-03 ul:nth-of-type(2) {
  width: 60%;
}

#home .staff > div > div .staff-box-03 ul li {
  font-size: 14px;
  line-height: 2em;
}

#home .music {
  margin: 0 0 180px 0;
  padding: 0 10px;
}

#home .music > div {
  width: 880px;
  margin: 0 auto 80px;
}

#home .music > div:last-of-type {
  margin: 0 auto;
}

#home .music > div.music-contents > figure {
  margin: 0 0 30px 0;
}

#home .music > div.music-contents > figure img {
  width: 100%;
}

#home .music > div.music-lyric {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#home .music > div.music-lyric > figure {
  width: calc(50% - 10px);
}

#home .music > div.music-lyric > figure img {
  width: 100%;
}

#home .music > div.music-lyric > div {
  width: calc(50% - 15px);
  text-align: left;
}

#home .music > div.music-lyric > div p {
  margin: 0 0 40px 0;
}

#home .music > div.music-lyric > div p img {
  width: 216px;
}

#home .music > div.music-dl-01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 40px 0;
  border: solid #e5e5e5;
  border-width: 1px 0;
  color: #000;
  -webkit-transition: opacity 0.2s cubic-bezier(0.6, 0, 0.3, 1);
  transition: opacity 0.2s cubic-bezier(0.6, 0, 0.3, 1);
}

#home .music > div.music-dl-01 a:hover {
  opacity: .5;
}

#home .music > div.music-dl-01 a > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#home .music > div.music-dl-01 a > div .sec-ttl-02 {
  margin: 0 80px 0 0;
}

#home .music > div.music-dl-01 a > div .sec-ttl-02 span {
  display: block;
  font-size: 14px;
  line-height: 28px;
}

#home .music > div.music-dl-01 a > div figure {
  text-align: left;
}

#home .music > div.music-dl-01 a > div figure img {
  width: 110px;
}

#home .music > div.music-dl-02 > div {
  margin: 0 0 80px 0;
}

#home .music > div.music-dl-02 > div:last-of-type {
  margin: 0;
}

#home .music > div.music-dl-02 > div .sec-ttl-02 {
  margin: 0 0 20px 0;
}

#home .music > div.music-dl-02 > div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#home .music > div.music-dl-02 > div ul li {
  width: 25%;
  border-right: 1px solid #e5e5e5;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}

#home .music > div.music-dl-02 > div ul li:nth-of-type(1), #home .music > div.music-dl-02 > div ul li:nth-of-type(5) {
  border-left: 1px solid #e5e5e5;
}

#home .music > div.music-dl-02 > div ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  text-align: center;
  -webkit-transition: opacity 0.2s cubic-bezier(0.6, 0, 0.3, 1);
  transition: opacity 0.2s cubic-bezier(0.6, 0, 0.3, 1);
}

#home .music > div.music-dl-02 > div ul li a:hover {
  opacity: .5;
}

#home .music > div.music-dl-02 > div ul li a img {
  max-width: 200px;
  width: 100%;
}

#lyric {
  background-color: #0d0d0d;
  color: #fff;
  text-align: left;
  position: relative;
}

#lyric .loader {
  background: #0d0d0d;
}

#lyric .loader > div:nth-of-type(1) {
  background: #fff;
}

#lyric .loader > div:nth-of-type(2) {
  color: #fff;
}

#lyric .link-01 {
  text-align: right;
}

#lyric .link-01 a {
  color: #fff;
}

#lyric .link-01 a:before {
  background: url(../img/icn_vec_w.svg);
}

#lyric .lyric-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: #0d0d0d;
  -webkit-box-shadow: 0px 0px 75px 75px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0px 0px 75px 75px rgba(0, 0, 0, 0.5) inset;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

#lyric .lyric-bg > div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  margin: -50vh 0 0 -50vw;
  background: center center no-repeat;
  background-size: cover;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

#lyric .lyric-bg > div.lyric-bg-01 {
  background-image: url(../img/lyric/bg_01.jpg);
  -webkit-animation: 30s slide linear infinite 0s;
  animation: 30s slide linear infinite 0s;
}

#lyric .lyric-bg > div.lyric-bg-02 {
  background-image: url(../img/lyric/bg_02.jpg);
  -webkit-animation: 30s slide linear infinite 10s;
  animation: 30s slide linear infinite 10s;
}

#lyric .lyric-bg > div.lyric-bg-03 {
  background-image: url(../img/lyric/bg_03.jpg);
  -webkit-animation: 30s slide linear infinite 20s;
  animation: 30s slide linear infinite 20s;
}

#lyric .lyric-bg > div:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes slide {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

#lyric .lyric-header {
  width: 100%;
  min-height: 915px;
  height: 100vh;
  position: relative;
}

#lyric .lyric-header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#lyric .lyric-header h1 figure {
  cursor: pointer;
}

#lyric .lyric-header h1 figure img {
  width: 680px;
}

#lyric .lyric-header h1 figure .sec-txt {
  margin: 10px 0 0 0;
  text-align: center;
}

#lyric .lyric-header h1 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0 -14px;
}

#lyric .lyric-header h1 ul li:nth-of-type(1) {
  padding: 0 20px 0 0;
  border-right: 1px solid #fff;
}

#lyric .lyric-header h1 ul li:nth-of-type(1) a img {
  width: 24px;
  height: 19px;
}

#lyric .lyric-header h1 ul li:nth-of-type(2) {
  margin: -2px 0 0 0;
  padding: 0 0 0 20px;
}

#lyric .lyric-header h1 ul li:nth-of-type(2) a img {
  width: 9px;
  height: 19px;
}

#lyric .lyric-header .lyric-header-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 101;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

#lyric .lyric-header .lyric-header-scroll:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 1px;
  height: 20px;
  background: #fff;
}

#lyric .lyric-header .lyric-header-scroll p {
  padding: 0 0 26px 0;
  font-size: 12px;
  font-weight: 400;
}

#lyric .lyric-contents {
  margin: 40px auto 0;
}

#lyric .lyric-contents .lyric-contents-lede > div,
#lyric .lyric-contents .lyric-contents-txt > div,
#lyric .lyric-contents .lyric-contents-back > div {
  width: 540px;
  margin: 0 auto;
}

#lyric .lyric-contents .lyric-contents-lede,
#lyric .lyric-contents .lyric-contents-txt {
  padding: 120px 0;
  border-bottom: 1px solid #fff;
}

#lyric .lyric-contents .lyric-contents-lede h2 {
  margin: 0 0 40px 0;
}

#lyric .lyric-contents .lyric-contents-lede h2 img {
  width: 100%;
}

#lyric .lyric-contents .lyric-contents-lede .sec-txt {
  margin: 0 0 30px 0;
}

#lyric .lyric-contents .lyric-contents-lede .sec-txt:last-of-type {
  margin: 0 0 80px 0;
}

#lyric .lyric-contents .lyric-contents-lede figure img {
  width: 100%;
}

#lyric .lyric-contents .lyric-contents-txt > div {
  margin: 0 auto 120px;
}

#lyric .lyric-contents .lyric-contents-txt > div:last-of-type {
  margin: 0 auto;
}

#lyric .lyric-contents .lyric-contents-txt > div p img {
  width: 100%;
}

#lyric .lyric-contents .lyric-contents-txt > div p:nth-of-type(1) {
  margin: 0 0 120px 0;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 {
  max-width: 880px;
  width: 100%;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 40px 0;
  border: solid #fff;
  border-width: 1px 0;
  color: #fff;
  -webkit-transition: opacity 0.2s cubic-bezier(0.6, 0, 0.3, 1);
  transition: opacity 0.2s cubic-bezier(0.6, 0, 0.3, 1);
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a:hover {
  opacity: .5;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a > div .sec-ttl-02 {
  margin: 0 80px 0 0;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a > div .sec-ttl-02 span {
  display: block;
  font-size: 14px;
  line-height: 28px;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a > div figure {
  text-align: left;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a > div figure img {
  width: 110px;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 {
  max-width: 880px;
  width: 100%;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div {
  margin: 0 0 80px 0;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div:last-of-type {
  margin: 0;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div .sec-ttl-02 {
  margin: 0 0 20px 0;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li {
  width: 25%;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
  margin: 0 0 20px 0;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li:nth-of-type(n + 5) {
  margin: 0;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  text-align: center;
  -webkit-transition: opacity 0.2s cubic-bezier(0.6, 0, 0.3, 1);
  transition: opacity 0.2s cubic-bezier(0.6, 0, 0.3, 1);
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li a:hover {
  opacity: .5;
}

#lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li a img {
  max-width: 200px;
  width: 100%;
}

#lyric .lyric-contents .lyric-contents-back {
  padding: 40px 0;
}

#lyric .lyric-contents .lyric-contents-back > div {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pc-show {
    display: none;
  }
  .sp-show {
    display: block;
  }
  .js-border:before, .js-border:after {
    display: none;
  }
  body .wrapper {
    padding: 0;
  }
  body .wrapper:before, body .wrapper:after {
    display: none;
  }
  body .wrapper > div:before, body .wrapper > div:after {
    display: none;
  }
  nav {
    top: 0;
    left: 0;
    background: #fff;
  }
  nav h2 {
    padding: 3.12vw 3.12vw calc(3.12vw + 18px);
    color: #000;
  }
  nav h2 > span {
    bottom: calc(3.12vw + 12px);
    left: calc(3.12vw + 1px);
    width: 30px;
    height: 1px;
    background: #000;
    -webkit-transition: background 0.5s cubic-bezier(0.18, 1, 0.22, 1);
    transition: background 0.5s cubic-bezier(0.18, 1, 0.22, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  nav h2 > span:before {
    top: 5px;
    bottom: auto;
    left: 0;
    width: 30px;
    height: 1px;
    background: #000;
    -webkit-transform-origin: center center !important;
    transform-origin: center center !important;
    -webkit-transition: all 0.5s cubic-bezier(0.18, 1, 0.22, 1);
    transition: all 0.5s cubic-bezier(0.18, 1, 0.22, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  nav h2 > span:after {
    top: 10px;
    bottom: auto;
    left: 0;
    width: 30px;
    height: 1px;
    background: #000;
    -webkit-transform-origin: center center !important;
    transform-origin: center center !important;
    -webkit-transition: all 0.5s cubic-bezier(0.18, 1, 0.22, 1);
    transition: all 0.5s cubic-bezier(0.18, 1, 0.22, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  nav > div {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 45vw;
    height: 100%;
    padding: 0 12.5vw;
    background: #fff;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  nav > div ul li {
    -webkit-transform: translate3d(-200%, 0, 0);
    transform: translate3d(-200%, 0, 0);
  }
  nav > div ul li:nth-last-of-type(2) {
    margin: 0 0 40px 0;
  }
  nav > div ul li:last-of-type {
    margin: 0;
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) {
  nav > div ul li {
    margin: 0 0 20px 0;
  }
  nav > div ul li a {
    font-size: 14px;
  }
  nav > div ul li a:before {
    top: 10px;
  }
  nav > div ul li span {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  nav > div ul .nav-share {
    display: block;
  }
  nav > div ul .nav-share ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  nav > div ul .nav-share ul li {
    margin: 0 30px 0 0;
  }
  nav > div ul .nav-share ul li:last-of-type {
    margin: 0;
  }
  nav > div ul .nav-share ul li:nth-of-type(1) a img {
    width: 24px;
    height: 19px;
  }
  nav > div ul .nav-share ul li:nth-of-type(2) {
    margin: 0;
  }
  nav > div ul .nav-share ul li:nth-of-type(2) a img {
    width: 9px;
    height: 19px;
  }
  .share {
    display: none;
  }
  .scroll {
    display: none;
  }
  .attention {
    display: none;
    bottom: 15px;
    right: 15px;
    width: 100px;
    height: 100px;
    background: url(../img/txt_attention.svg) center center no-repeat;
    background-size: 100px 100px;
  }
  footer {
    padding: 30px 0;
    /*
    ul {
      flex-wrap: wrap;
      margin: 0;
      border-top: 1px solid #eee;
      li {
        width: 50%;
        margin: 0;
        border-bottom: 1px solid #eee;
        &:nth-of-type(odd) {
          border-right: 1px solid #eee;
        }
        &:last-of-type {
          width: 100%;
          border-right: 0;
        }
        a {
          display: block;
          width: 100%;
          height: 100%;
          padding: 15px 10px;
          font-size: 12px;
          &:before {
            display: none;
          }
        }
        .current {
          color: #bbb;
          pointer-events: none;
        }
      }
    }
    > div {
      padding: 25px 10px 20px;
      display: block;
      > iframe {
        margin: 0 0 25px 0!important;
      }
      > p {
        small {
          font-size: 10px;
        }
      }
    }
    */
  }
  footer ul {
    margin: 0 0 30px 0;
  }
  .loader > div:nth-of-type(1) {
    height: 1px;
  }
  .loader > div:nth-of-type(2) {
    top: calc(50% - 18px);
    font-size: 18px;
  }
  .active nav h2 > span {
    background: transparent;
  }
  .active nav h2 > span:before {
    top: 5px;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  .active nav h2 > span:after {
    top: 5px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  .active article {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  #home .sec-ttl-01 {
    margin: 0 0 10px 0;
    font-size: 40px;
    /*
      &:before {
        display: none;
      }
      &:after {
        display: none;
      }
      */
  }
  #home .sec-ttl-02 {
    margin: 0 0 20px 0;
  }
  #home .btn-01 a {
    padding: 30px 6.25vw;
    font-size: 16px;
  }
  #home .btn-01 a:after {
    display: none;
  }
  #home .btn-01 a span {
    display: block;
    font-size: 12px;
  }
  #home .main {
    width: 100%;
    min-height: calc(79.4vw - 120px);
    height: calc(79.4vw - 120px);
    max-height: 864px;
    height: 112.5vw;
    margin: 0 0 40px 0;
    background: url(../img/bg_main_sp.jpg) center center no-repeat;
    background-size: cover;
  }
  #home .main .main-logo {
    display: none;
  }
  #home .lede {
    margin: 0 0 80px 0;
    padding: 0 6.25vw;
  }
  #home .lede .lede-txt {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #home .lede .lede-txt img:nth-of-type(1) {
    width: 100%;
    margin: 0 0 5px 0;
    height: auto;
  }
  #home .lede .lede-txt img:nth-of-type(2) {
    display: block;
    width: 100%;
    height: auto;
  }
  #home .lede .lede-logo {
    display: block;
    width: 25%;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) {
  #home .lede .lede-logo {
    width: calc(100% / 3);
  }
}

@media screen and (max-width: 768px) {
  #home .lede .lede-logo a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
  }
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  #home .lede .lede-logo a:hover {
    opacity: .5;
  }
}

@media screen and (max-width: 768px) {
  #home .lede .lede-logo a img {
    width: 100%;
    height: auto;
  }
  #home .news {
    margin: 0 0 100px 0;
    padding: 0 6.25vw;
  }
  #home .news > div {
    width: 100%;
  }
  #home .news > div .sec-ttl-01 {
    margin: 0;
    font-size: 40px;
  }
  #home .news > div dl {
    display: block;
    margin: 0 0 30px 0;
    border-top: 1px solid #000;
  }
  #home .news > div dl dt {
    width: 100%;
    padding: 20px 0 0;
    border-bottom: 0;
  }
  #home .news > div dl dd {
    width: 100%;
    padding: 0 0 20px;
  }
  #home .intro {
    margin: 0 0 100px 0;
    padding: 0 6.25vw calc(56.25vw - 6.25vw);
    background: none;
  }
  #home .intro > div {
    width: 100%;
    padding: 0;
    position: relative;
  }
  #home .intro > div:before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(56.25vw - 6.25vw);
    background: url(../img/bg_introduction_01_sp.jpg) center center no-repeat;
    background-size: cover;
  }
  #home .intro > div .sec-ttl-01 {
    margin: 0 0 10px 0;
    color: #000;
    text-align: left;
  }
  #home .intro > div .sec-ttl-02 {
    color: #000;
    text-align: left;
  }
  #home .intro > div .sec-txt {
    margin: 0 0 20px 0;
    text-align: left;
    color: #000;
  }
  #home .intro > div .sec-txt:last-of-type {
    margin: 0;
    padding: 0 0 40px 0;
  }
  #home .story {
    margin: 0 0 100px 0;
    padding: 0 6.25vw;
  }
  #home .story > div {
    width: 100%;
    /*
        ul {
          li {
            @media screen and (max-width: 600px) {
                width: 50%;
            }
          }
        }
        */
  }
  #home .story > div > div {
    display: block;
  }
  #home .story > div > div > div {
    width: 100%;
    margin: 0 0 40px 0;
  }
  #home .story > div > div > div .sec-txt {
    margin: 0 0 20px 0;
  }
  #home .story > div > div > div .sec-txt:last-of-type {
    margin: 0;
  }
  #home .story > div > div > figure {
    width: 100%;
    height: calc(28.2vw - 3.12vw);
    background: url(../img/img_story_01_sp.jpg) center center no-repeat;
    background-size: cover;
  }
  #home .trailer {
    margin: 0 0 100px 0;
    padding: 0 6.25vw;
  }
  #home .trailer > div {
    width: 100%;
  }
  #home .trailer > div .trailer-box {
    width: 100%;
    position: relative;
  }
  #home .trailer > div .trailer-box:before {
    content: "";
    display: block;
    padding-top: 56.3%;
  }
  #home .trailer > div .trailer-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  #home .cast {
    margin: 0 0 100px 0;
    padding: 0 6.25vw;
  }
  #home .cast > div {
    width: 100%;
  }
  #home .cast > div ul {
    margin: 0 0 20px 0;
  }
  #home .cast > div ul li {
    width: 25%;
    padding: 0 2vw 2vw;
    -webkit-transform: none !important;
    transform: none !important;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) {
  #home .cast > div ul li {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #home .cast > div ul li img {
    width: 100%;
  }
  #home .cast > div ul:nth-of-type(1) {
    margin: 0;
  }
  #home .cast > div ul:nth-of-type(1) li {
    margin: 0;
  }
  #home .cast > div ul:nth-of-type(2) li {
    margin: 0;
  }
  #home .staff {
    margin: 0 0 100px 0;
    padding: 0 6.25vw;
  }
  #home .staff > div {
    width: 100%;
  }
  #home .staff > div > div {
    width: 100%;
    margin: 0;
    /*
          .staff-box-02 {
            @media screen and (max-width: 600px) {
              display: block;
            }
            > div {
              @media screen and (max-width: 600px) {
                margin: 0 0 40px 0;
              }
              &:last-of-type {
                margin: 0;
              }
            }
          }
          */
  }
  #home .staff > div > div .staff-box-01 {
    display: block;
    margin: 0 0 40px 0;
  }
  #home .staff > div > div .staff-box-01 > figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 30px;
  }
  #home .staff > div > div .staff-box-01 > figure img {
    width: 50%;
  }
  #home .staff > div > div .staff-box-01 > figure figcaption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
  }
  #home .staff > div > div .staff-box-01 > figure figcaption .sec-ttl-02 {
    margin: 0;
    line-height: 1.5em;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) {
  #home .staff > div > div .staff-box-01 > figure figcaption .sec-ttl-02 br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #home .staff > div > div .staff-box-01 > div {
    width: 100%;
    padding: 0;
    /*
              padding: 0 0 0 3.12vw;
              @media screen and (max-width: 600px) {
                margin: 0;
                padding: 0;
              }
              */
  }
  #home .staff > div > div .staff-box-01 > div .sec-cap {
    display: none;
  }
  #home .staff > div > div .staff-box-01 > div .sec-ttl-02 {
    display: none;
  }
  #home .staff > div > div .staff-box-02 {
    margin: 0 0 40px 0;
  }
  #home .staff > div > div .staff-box-02:last-of-type {
    margin: 0;
  }
  #home .staff > div > div .staff-box-03 ul:nth-of-type(1) {
    width: 50%;
  }
  #home .staff > div > div .staff-box-03 ul:nth-of-type(2) {
    width: 50%;
  }
}

@media screen and (max-width: 768px) and (max-width: 600px) {
  #home .staff > div > div .staff-box-03 {
    display: block;
  }
  #home .staff > div > div .staff-box-03 ul:nth-of-type(1) {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #home .staff > div > div .staff-box-03 ul:nth-of-type(2) {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #home .music {
    margin: 0 0 100px 0;
    padding: 0 6.25vw;
  }
  #home .music > div {
    width: 100%;
    margin: 0 0 40px 0;
  }
  #home .music > div.music-contents > figure {
    margin: 0 0 30px 0;
  }
  #home .music > div.music-lyric {
    display: block;
  }
  #home .music > div.music-lyric > figure {
    width: 100%;
    margin: 0 0 40px 0;
  }
  #home .music > div.music-lyric > div {
    width: 100%;
    text-align: left;
  }
  #home .music > div.music-lyric > div p {
    margin: 0 0 40px 0;
  }
  #home .music > div.music-lyric > div p img {
    width: 206px;
  }
  #home .music > div.music-dl-01 a {
    padding: 30px 6.25vw;
  }
  #home .music > div.music-dl-01 a > div {
    display: block;
  }
  #home .music > div.music-dl-01 a > div .sec-ttl-02 {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 32px;
  }
  #home .music > div.music-dl-01 a > div .sec-ttl-02 span {
    font-size: 12px;
    line-height: 24px;
  }
  #home .music > div.music-dl-02 > div {
    margin: 0 0 40px 0;
  }
  #home .music > div.music-dl-02 > div .sec-ttl-02 {
    font-size: 16px;
  }
  #home .music > div.music-dl-02 > div ul {
    border-left: 1px solid #e5e5e5;
  }
  #home .music > div.music-dl-02 > div ul li {
    width: 50%;
  }
  #home .music > div.music-dl-02 > div ul li:nth-of-type(1), #home .music > div.music-dl-02 > div ul li:nth-of-type(5) {
    border-left: 0;
  }
  #lyric .lyric-bg > div:before {
    opacity: 0.5;
  }
  #lyric .lyric-header {
    min-height: auto;
    height: auto;
    padding: 6.25vw 6.25vw 0;
    position: relative;
  }
  #lyric .lyric-header h1 {
    position: static;
    -webkit-transform: none;
    transform: none;
  }
  #lyric .lyric-header h1 figure img {
    width: 100%;
  }
  #lyric .lyric-header .lyric-header-scroll {
    display: none;
  }
  #lyric .lyric-contents {
    margin: 0;
  }
  #lyric .lyric-contents .lyric-contents-lede > div,
  #lyric .lyric-contents .lyric-contents-txt > div,
  #lyric .lyric-contents .lyric-contents-back > div {
    width: 100%;
    padding: 0 6.25vw;
  }
  #lyric .lyric-contents .lyric-contents-lede,
  #lyric .lyric-contents .lyric-contents-txt {
    padding: 80px 0;
  }
  #lyric .lyric-contents .lyric-contents-txt > div {
    margin: 0 auto 80px;
  }
  #lyric .lyric-contents .lyric-contents-txt > div p:nth-of-type(1) {
    margin: 0 0 80px 0;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a {
    padding: 30px 6.25vw;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a > div {
    display: block;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a > div .sec-ttl-02 {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 32px;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-01 a > div .sec-ttl-02 span {
    font-size: 12px;
    line-height: 24px;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div {
    margin: 0 0 40px 0;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div .sec-ttl-02 {
    font-size: 16px;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li {
    width: 50%;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li:nth-of-type(n + 5) {
    margin: 0 0 20px 0;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li:last-of-type, #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li:nth-last-of-type(2) {
    margin: 0;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li a {
    padding: 0 10px 0 0;
  }
  #lyric .lyric-contents .lyric-contents-txt .lyric-contents-txt-dl-02 > div ul li:nth-of-type(2n) a {
    padding: 0 0 0 10px;
  }
  #lyric .lyric-contents .lyric-contents-back {
    padding: 30px 0;
  }
}