@charset "UTF-8";

@-webkit-keyframes scroll-anime {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll-anime {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@-webkit-keyframes show-nav {
  0% {
    position: absolute;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
  100% {
    position: fixed;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
}

@keyframes show-nav {
  0% {
    position: absolute;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
  100% {
    position: fixed;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
}

body {
  color: #ffffff;
  font-family: YakuHanJP_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

a {
  -webkit-transition: color 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: color 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #50525F;
}

.l-content {
  margin: 0 auto;
  width: 92.18%;
  max-width: 1600px;
}

.l-section {
  overflow: hidden;
}

.c-btn {
  -webkit-transition: background-color 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s, color 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: background-color 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s, color 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  border-radius: 50px;
  background-color: #2c2c34;
}

.c-btn:hover {
  background-color: #ffffff;
}

.c-btn a {
  display: block;
  padding: 30px 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.c-btn a:hover {
  color: #50525F;
}

.c-btn.-white {
  background-color: #ffffff;
}

.c-btn.-white a {
  color: #50525F;
}

.c-btn.-white:hover {
  background-color: #50525F;
}

.c-btn.-white:hover a {
  color: #ffffff;
}

.c-ttl {
  position: absolute;
  font-family: "Libre Baskerville", serif;
  font-size: 72px;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
}

.c-fixbg__wrap {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.c-fixbg {
  position: absolute;
  top: -140px;
  left: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 700px;
}

.c-fixbg.is-glasses {
  background-image: url(../img/bg_1.jpg);
}

.c-fixbg.is-lip {
  background-image: url(../img/bg_2.jpg);
}

.c-fixbg.is-wagara {
  background-image: url(../img/bg_3.jpg);
}

.p-kv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.p-nav__wrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60%;
}

.p-nav__list {
  position: relative;
}

.p-nav__item a {
  display: block;
  -webkit-transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  padding: 10px;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
}

.p-nav__item a:hover {
  color: #2c2c34;
}

.p-nav__under-kv {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  margin: 0;
  background-color: #2c2c34;
  padding: 5px;
  width: 100%;
}

body.is-nav-show .p-nav__under-kv {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.p-nav__under-kv .p-nav__list {
  margin: 0 auto;
  width: 70%;
  min-width: 1200px;
}

.p-nav__under-kv .p-nav__item a:hover {
  color: #9194A2;
}

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

.p-nav__hamburger {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 50px;
}

.p-nav__hamburger span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: opacity cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  background-color: #ffffff;
  width: 40px;
  height: 1px;
}

.p-nav__hamburger-top {
  -webkit-transform: translateY(12px);
      -ms-transform: translateY(12px);
          transform: translateY(12px);
}

body.is-nav-opened .p-nav__hamburger-top {
  -webkit-transform: translateY(0) rotate(-45deg);
      -ms-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

body.is-nav-opened .p-nav__hamburger-middle {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
}

.p-nav__hamburger-bottom {
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
          transform: translateY(-12px);
}

body.is-nav-opened .p-nav__hamburger-bottom {
  -webkit-transform: translateY(0) rotate(45deg);
      -ms-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

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

.p-kv__bg {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  background: url(../img/kv_pc.jpg?20220128) center top no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

body.is-loaded .p-kv__bg {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 2s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 2s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, transform 2s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, transform 2s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 2s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.p-kv__shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), black);
  width: 100%;
  height: 50%;
}

body.is-loaded .p-kv__shadow {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.p-kv__ttl {
  position: absolute;
  bottom: 7%;
  left: 4%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1s, transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1s, transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1s;
  width: 60%;
  max-width: 900px;
}

body.is-loaded .p-kv__ttl {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.p-kv__logo {
  position: absolute;
  top: 6%;
  left: 7%;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0s, transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0s, transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  width: 20%;
  max-width: 360px;
}

body.is-loaded .p-kv__logo {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.p-kv__logo img {
  width: 100%;
  max-width: none;
  height: 100%;
}

.p-scroll {
  position: absolute;
  right: 20px;
  bottom: 100px;
  cursor: pointer;
  font-size: 12px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.p-scroll a {
  color: #ffffff;
  text-decoration: none;
}

.p-scroll::before {
  display: block;
  position: absolute;
  top: 0;
  left: -8px;
  -webkit-animation: scroll-anime 4s cubic-bezier(0.33, 1, 0.68, 1) 0s infinite;
          animation: scroll-anime 4s cubic-bezier(0.33, 1, 0.68, 1) 0s infinite;
  background-color: #ffffff;
  width: 1px;
  height: 150px;
  content: '';
}

.p-scroll::after {
  display: block;
  position: absolute;
  top: 0;
  left: -8px;
  background-color: rgba(255, 255, 255, 0.6);
  width: 1px;
  height: 150px;
  content: '';
}

.p-info {
  background: url(../img/bg_pt_2.png) center center repeat;
  padding: 89px 0 86px;
}

.p-info__ttl {
  margin-bottom: 28px;
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  text-align: center;
}

.p-info__item {
  position: relative;
  -webkit-transition: background-color 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: background-color 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  cursor: pointer;
  margin-bottom: 5px;
  background-color: #9194A2;
  line-height: 1.6;
}

.p-info__item:hover {
  background-color: #808291;
}

.p-info__item-inner {
  position: relative;
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  margin: 0 auto;
  padding: 30px 0 30px;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  color: #ffffff;
}

.p-info__item-inner div {
  font-size: 18px;
  line-height: 1.6;
}

.p-info__item-inner span {
  display: block;
  color: #2c2c34;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
}

.p-info__icon {
  position: absolute;
  top: 30px;
  right: 0;
  border-radius: 50%;
  background: #9CA0AB;
  width: 50px;
  height: 50px;
}

.p-info__icon::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  background-color: #ffffff;
  width: 2px;
  height: 15px;
  content: '';
}

.p-info__item.isOpened .p-info__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-info__icon::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  background-color: #ffffff;
  width: 15px;
  height: 2px;
  content: '';
}

.p-info__item.isOpened .p-info__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-info__detail-inner {
  display: none;
  margin: 0 auto;
  padding-bottom: 30px;
  width: 90%;
  max-width: 1200px;
  line-height: 1.6;
}

.p-info__detail-inner a {
  text-decoration: underline;
}

.p-info__more {
  -webkit-transition: background-color 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: background-color 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  cursor: pointer;
  background-color: #2c2c34;
  padding: 10px 0;
  font-family: "Oswald", sans-serif;
  text-align: center;
}

.p-info__more.is-hidden {
  display: none;
}

.p-info__more:hover {
  background-color: #50525F;
}

.p-dx {
  background: url(../img/bg_pt_1.png) center center repeat;
  padding: 120px 0 28px;
}

.p-release__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #808291;
  padding: 88px 120px;
  padding: 5% 10%;
}

.p-release__pic {
  margin-right: 100px;
  width: 50%;
  max-width: 320px;
}

.p-release__pic img {
  text-align: center;
}

.p-release__box {
  padding-top: 30px;
  width: 50%;
}

.p-release__box-inner {
  margin-bottom: 50px;
}

.p-release__btn {
  cursor: pointer;
  margin: 0 auto 15px;
  width: 95%;
  min-width: 300px;
}

.p-release__btn:last-child() {
  margin-bottom: 0;
}

.p-release__btn a {
  font-size: 16px;
  line-height: 1.5em;
}

.p-release__description {
  background-color: #9194a3;
  padding: 6% 8%;
}

.p-release__description-inner {
  font-size: 18px;
  line-height: 1.7;
}

.p-release__description-catch {
  margin-bottom: 43px;
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.p-release__description-catch.-dvd {
  font-size: 44px;
}

.p-dx__disc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-disc__inner {
  margin: 0 auto;
  width: 70%;
  height: 100%;
}

.p-dx__disc-left {
  background-color: #666875;
  padding: 6.56% 0;
  width: 50%;
}

.p-dx__disc-right {
  background-color: #50525F;
  padding: 6.56% 0;
  width: 50%;
}

.p-dx__disc-pic {
  margin: 0 auto 30px;
}

.p-disc__txt {
  margin: 0 auto;
  width: 90%;
}

.p-disc__name {
  margin-bottom: 22px;
  font-size: 40px;
  font-weight: 600;
}

.p-disc__list {
  margin-bottom: 20px;
}

.p-disc__item {
  line-height: 1.6;
}

.p-dx__disc-special {
  font-size: 14px;
  line-height: 1.7;
}

.p-release__detail {
  margin-bottom: 5px;
  background: #9194A2;
  padding: 65px 80px;
  padding: 8% 8%;
}

.p-release__detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-release__detail-box + .p-release__detail-box {
  padding-top: 55px;
}

.p-release__detail-ttl-box {
  margin-right: 5%;
  width: 30%;
}

.p-release__detail-ttl-box .p-comment__item {
  cursor: pointer;
  margin-top: 60px;
}

.p-release__detail-ttl-box .p-comment__item a {
  font-size: 16px;
  line-height: 1.5em;
}

.p-release__detail-ttl {
  margin-bottom: 10px;
  width: 80%;
}

.p-release__detail-inner {
  width: 70%;
}

.p-release__detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #9CA0AB;
  padding-top: 17px;
  padding-bottom: 16px;
  font-size: 23px;
  line-height: 1.6;
}

.p-release__detail-item:first-of-type {
  padding-top: 0;
  line-height: 1.4;
}

.p-release__detail-item .p-num {
  display: inline-block;
  margin-right: 23px;
  margin-left: 9px;
  color: #2c2c34;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.p-release__detail-item .p-small {
  padding-top: 0.25em;
  padding-left: 0.5em;
  font-size: 15px;
}

.p-release__detail-item .p-original {
  display: block;
  font-size: 13px;
}

.p-release__detail-annotation {
  padding-top: 20px;
  color: #2c2c34;
  font-size: 13px;
  line-height: 1.6;
}

.p-release__detail-ul-list {
  width: 75%;
}

.p-release__detail-ul-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #9CA0AB;
  padding-top: 17px;
  padding-bottom: 16px;
  font-size: 18px;
  line-height: 1.6;
}

.p-release__detail-ul-item:first-of-type {
  padding-top: 0;
}

.p-release__detail-ul-item span {
  display: inline-block;
  margin-right: 23px;
  margin-left: 9px;
  color: #2c2c34;
  font-size: 14px;
}

.p-release__detail-encore {
  margin-top: 36px;
  margin-bottom: 20px;
}

.p-dx__content {
  position: relative;
}

.p-dvd {
  background: url(../img/bg_pt_1.png) center center repeat;
  padding: 50px 0 140px;
}

.p-release__dvd-pic {
  margin-right: 50px;
  width: 50%;
  max-width: 550px;
}

.p-dvd__disc-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-dvd__pic {
  background-color: #808291;
  padding: 5% 7%;
  width: 50%;
}

.p-dvd__pic-inner {
  margin: 0 auto;
}

.p-dvd__inner {
  width: 50%;
}

.p-dvd__disc-special {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.p-release__dvd-box {
  padding: 70px 12%;
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.p-release__dvd-box:first-child {
  background-color: #5F616F;
}

.p-release__dvd-box:last-child {
  background-color: #50525F;
}

.p-disc__dl-inner + .p-disc__dl-inner {
  margin-top: 26px;
}

.p-disc__dt {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.p-release__detail-disc1 {
  margin-bottom: 50px;
}

.p-release__detail-disc1-item {
  font-size: 20px;
  line-height: 1.8;
}

.p-radius {
  display: inline-block;
  position: relative;
  margin-right: 4px;
}

.p-radius::after {
  position: absolute;
  top: 3px;
  left: -2.5px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  content: '';
}

.p-wbuy {
  background: url(../img/bg_pt_1.png) center center repeat;
  padding: 50px 0 135px;
}

.p-wbuy__content {
  background-color: #50525F;
  padding: 4% 5%;
}

.wbuy__pic {
  margin: 0 auto 50px;
  width: 100%;
  max-width: 750px;
}

.wbuy__ttl {
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 1.25em;
  text-align: center;
}

.wbuy__desctription {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}

.wbuy__desctription .p-small {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
}

.wbuy__gift {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  width: 70%;
}

.wbuy__gift .p-in-award {
  width: 120px;
  height: 100%;
  font-size: 30px;
  font-weight: 700;
  line-height: 3.5;
  text-align: center;
}

.wbuy__gift .p-in-award.-a {
  background: #808291;
}

.wbuy__gift .p-in-award.-b {
  background: #5f616f;
}

.wbuy__gift .p-in-cap {
  margin: 0 20px;
  width: 70%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.wbuy__gift .p-in-cap .p-in-sup {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.25;
}

.wbuy__gift .p-in-num {
  width: 120px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.wbuy__limit {
  display: block;
  margin: 30px auto 0;
  background: #2c2c34;
  padding: 20px 15px;
  width: 50%;
  max-width: 650px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.wbuy__attention {
  margin: 20px auto 0;
  max-width: 450px;
}

.wbuy__attention li {
  position: relative;
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.wbuy__attention li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '※';
}

.p-videos {
  background: url(../img/bg_pt_3.png) center center repeat;
  padding: 180px 0 140px;
}

.p-videos .p-videos__content {
  position: relative;
  background-color: #9194A2;
  padding: 110px 0 90px;
}

.p-videos .p-videos__ttl {
  top: -50px;
  right: -27px;
}

.p-videos .p-videos__box {
  margin: 0 auto 25px;
  width: 70%;
  max-width: 800px;
}

.p-videos .p-videos__movie {
  position: relative;
  cursor: pointer;
  padding-top: 56.25%;
  height: 0;
}

.p-videos .p-videos__movie-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-videos .p-videos__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  width: 100px;
  height: 100px;
}

.p-videos .p-videos__play:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
      -ms-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}

.p-videos .p-videos__movie-ttl {
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 1.5em;
  text-align: center;
}

.p-videos .p-videos__btn {
  margin: 0 auto;
  width: 45%;
  min-width: 300px;
}

.p-shop {
  background: url(../img/bg_pt_1.png) center center repeat;
  padding: 180px 0 0;
}

.p-shop__inner {
  position: relative;
}

.p-shop__ttl {
  top: -54px;
  left: -12px;
}

.p-shop__subttl {
  margin-bottom: 52px;
  font-size: 34px;
  line-height: 1.5;
  text-align: center;
}

.p-shop__box {
  padding: 100px 5.5% 50px;
}

.p-shop__box.-lite {
  background-color: #9194A2;
}

.p-shop__box.-lite .p-shop__card {
  background-color: #808291;
}

.p-shop__box.-midium {
  background-color: #808291;
}

.p-shop__box.-midium .p-shop__card {
  background-color: #9194A2;
}

.p-shop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-shop__card {
  margin-right: 1%;
  margin-bottom: 20px;
  padding: 40px 30px;
  width: 32.6%;
}

.p-shop__card:nth-of-type(3n) {
  margin-right: 0;
}

.p-shop__img {
  margin-bottom: 25px;
  width: 100%;
  height: auto;
}

.p-shop__name {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.6;
}

.p-shop__goods {
  color: #2c2c34;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.p-shop__item {
  margin-right: 4.8%;
  margin-bottom: 67px;
  width: 30%;
}

.p-shop__item:nth-of-type(3n) {
  margin-right: 0;
}

.p-shop__cover {
  position: relative;
  cursor: pointer;
  margin-bottom: 23px;
  padding-top: 100%;
}

.p-shop__item-pic {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #50525F;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.p-shop__cover-inner {
  position: absolute;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  width: 100%;
  height: 100%;
}

.p-shop__cover-inner:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.p-shop__cover-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #50525F;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: '';
}

.p-shop__cover-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-shop__cover-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  width: 50%;
  height: 100%;
  text-align: center;
}

.p-shop__cover-item:hover {
  background-color: #50525F;
}

.p-shop__cover-item:hover .p-shop__cover-txt {
  color: #ffffff;
}

.p-shop__cover-txt {
  -webkit-transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.p-shop__cover-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-shop__cover-txt {
  color: #50525F;
}

.p-shop__item-ttl {
  margin-bottom: 17px;
}

.p-shop__item-place {
  line-height: 1.6;
}

.p-shop__caution {
  background-color: #9194A2;
  padding: 50px 9.37% 50px;
  font-size: 14px;
}

.p-shop__caution-item {
  padding-left: 16px;
  line-height: 1.6;
  text-indent: -16px;
}

.p-shop__link {
  width: 100%;
  text-align: center;
}

.p-shop__btn {
  display: inline-block;
  vertical-align: top;
  margin: 25px 1.5% 0;
  width: 45%;
  min-width: 300px;
}

.p-tour {
  background: url(../img/bg_pt_1.png) center center repeat;
  padding: 180px 0 160px;
}

.p-tour__inner {
  position: relative;
  background-color: #9194A2;
  padding: 100px 0;
}

.p-tour__ttl {
  top: -57px;
  right: -10px;
}

.p-tour__name {
  margin-bottom: 70px;
  font-family: "Oswald", sans-serif;
  font-size: 66px;
  font-weight: 200;
  line-height: 1.3;
  text-align: center;
}

.p-tour__name span {
  display: block;
  margin-bottom: 9px;
  font-size: 40px;
}

.p-tour__list {
  margin: 0 auto;
  padding-bottom: 66px;
  width: 80%;
}

.p-tour__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #9CA0AB;
  padding: 24px 0 24px 60px;
}

.p-tour__item:first-of-type {
  border-top: 1px solid #9CA0AB;
}

.p-tour__date {
  margin-right: 67px;
  color: #50525F;
  font-size: 20px;
  font-weight: 600;
}

.p-tour__place {
  font-size: 22px;
}

.p-tour__btn {
  margin: 0 auto;
  width: 50%;
  min-width: 300px;
}

.l-footer {
  background-color: #2c2c34;
  padding: 50px 24px;
  text-align: center;
}

.p-footer__logo {
  margin: 0 auto 46px;
  width: 120px;
}

.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 46px;
  width: 30%;
}

.p-footer__item a {
  -webkit-transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
}

.p-footer__item a:hover {
  color: #9194A2;
}

.c-copy {
  font-size: 12px;
}

.js-scroll {
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.js-scroll.is-active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.m-comment {
  position: fixed;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  z-index: 50;
  -webkit-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.m-comment.is-comment-open {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 0.25s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.25s cubic-bezier(0.5, 1, 0.89, 1);
  pointer-events: auto;
}

.m-comment__bg {
  position: absolute;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  opacity: 0.9;
  background-color: #000;
  width: 100%;
  height: 100%;
}

.m-comment__main {
  position: relative;
  padding: 146px 0 110px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.m-comment__box {
  position: relative;
  margin: 0 auto 72px;
  width: 90%;
  max-width: 960px;
  color: #fff;
}

.m-comment__head {
  margin-bottom: 16px;
  width: 100%;
}

.m-comment__name {
  font-size: 1.8em;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.m-comment__position {
  margin-top: 10px;
  font-size: 0.8em;
  letter-spacing: 0.05em;
  line-height: 2;
}

.m-comment__text {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.m-comment__catch {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.m-comment__song {
  margin-bottom: 40px;
  font-size: 1.1em;
}

.m-comment__read {
  color: #cfcfcf;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 2.0;
}

.m-comment__read .is-martin {
  color: #fff;
  font-weight: bold;
}

.m-comment__writer {
  position: relative;
  margin: 0 auto 72px;
  width: 90%;
  max-width: 960px;
  color: #cfcfcf;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 2.0;
  text-align: right;
}

.m-comment__close {
  position: absolute;
  top: 30px;
  right: 47px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.m-comment__close::before, .m-comment__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.83, 0.03, 0.19, 0.97) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.83, 0.03, 0.19, 0.97) 0s;
  transition: transform 0.5s cubic-bezier(0.83, 0.03, 0.19, 0.97) 0s;
  transition: transform 0.5s cubic-bezier(0.83, 0.03, 0.19, 0.97) 0s, -webkit-transform 0.5s cubic-bezier(0.83, 0.03, 0.19, 0.97) 0s;
  background-color: #fff;
  width: 2px;
  height: 98px;
  content: "";
}

.m-comment__close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-comment__close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal_back {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  opacity: .9;
  z-index: 200;
  filter: alpha(opacity=90);
  background: #000;
  width: 100%;
  height: 100%;
}

.modal_in {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  max-width: 750px;
  text-align: center;
}

.modal_in .modal_wrap {
  display: none;
  position: relative;
  padding-top: 56.25%;
  width: 750px;
}

.modal_in .modal_wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.modal_in .modal_access {
  display: none;
  position: relative;
  width: 750px;
}

.modal_close {
  position: absolute;
  top: -60px;
  right: -20px;
  z-index: 310;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.modal_close span {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: #fff;
  width: 100%;
  height: 2px;
}

.modal_close span:nth-child(1) {
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
      transform: rotateZ(45deg);
}

.modal_close span:nth-child(2) {
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotateZ(-45deg);
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
  .c-fixbg.is-lip {
    height: 750px;
  }
  .p-nav__wrap {
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    margin: 20px 40px 0 0;
    max-width: 1200px;
  }
  body.is-loaded .p-nav__wrap {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    -webkit-transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s;
    transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s;
    transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s, transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s;
    transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s, transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s;
  }
  .p-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-kv__ttl {
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  .p-release__inner.-dvd {
    padding-top: 4.2%;
    padding-bottom: 5.5%;
  }
  .p-dx__disc-pic {
    position: relative;
    margin-bottom: 40px;
    padding-top: 89.74%;
    height: 0;
  }
  .p-dx__disc-pic-inner {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .p-dx__disc-pic-inner.-jk1 {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 94.8%;
  }
  .m-comment__close {
    -webkit-transition: opacity 0.3s cubic-bezier(0.7, 0.2, 0.1, 1);
    transition: opacity 0.3s cubic-bezier(0.7, 0.2, 0.1, 1);
  }
  .m-comment__close:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    opacity: 0.6;
  }
  .m-comment__close::before {
    margin-top: -49px;
    margin-left: -1px;
  }
  .m-comment__close::after {
    margin-top: -49px;
    margin-left: -1px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
  .l-content {
    width: 100%;
  }
  .c-btn a {
    padding: 20px 0;
    font-size: 14px;
  }
  .c-ttl {
    position: static;
    font-size: 35px;
    font-weight: normal;
    text-align: center;
  }
  .c-fixbg__wrap {
    height: 230px;
  }
  .c-fixbg {
    height: 400px;
  }
  .c-fixbg.is-glasses {
    background-position: center 20%;
  }
  .p-nav__wrap {
    position: fixed;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
    transition: -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
    width: 100%;
    height: 100vh;
  }
  body.is-nav-opened .p-nav__wrap {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .p-nav__list {
    display: block;
    padding: 50px 20px;
    height: 60%;
  }
  .p-nav__list.-sub {
    padding: 25px 20px;
  }
  .p-nav__list.-sub .p-nav__item a {
    font-size: 16px;
  }
  .p-nav__item {
    margin-bottom: 10px;
  }
  .p-nav__item a {
    font-size: 20px;
  }
  .p-nav__bg {
    background: url(../img/bg_pt_1.png) center center repeat;
  }
  .p-kv__bg {
    background: url(../img/kv_sp.jpg?20220128) center top no-repeat;
    background-size: cover;
  }
  .p-kv__shadow {
    position: static;
    background: none;
  }
  .p-kv__ttl {
    bottom: 4%;
    left: 50%;
    -webkit-transform: translate(-50%, 60px);
        -ms-transform: translate(-50%, 60px);
            transform: translate(-50%, 60px);
    width: 90%;
  }
  body.is-loaded .p-kv__ttl {
    -webkit-transform: translate(-50%, 0px);
        -ms-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
  .p-kv__logo {
    width: 30%;
  }
  .p-info {
    padding: 50px 0 40px;
  }
  .p-info__ttl {
    margin-bottom: 16px;
    font-size: 19px;
  }
  .p-info__item-inner {
    padding: 20px 0;
    width: 85%;
  }
  .p-info__item-inner div {
    font-size: 13px;
  }
  .p-info__item-inner span {
    font-size: 12px;
  }
  .p-info__icon {
    top: 20px;
    right: -22px;
    width: 25px;
    height: 25px;
  }
  .p-info__icon::before {
    width: 1px;
    height: 10px;
  }
  .p-info__icon::after {
    width: 10px;
    height: 1px;
  }
  .p-info__detail-inner {
    width: 85%;
    font-size: 13px;
  }
  .p-info__detail-inner img {
    width: 100%;
    height: auto;
  }
  .p-info__detail-inner iframe {
    width: 100%;
    height: auto;
  }
  .p-info__more {
    font-size: 14px;
  }
  .p-dx {
    padding: 73px 0 15px;
  }
  .p-release__inner {
    display: block;
    padding: 40px 0 50px;
  }
  .p-release__pic {
    margin: 0 auto 30px;
    width: 60%;
  }
  .p-release__box {
    width: 100%;
  }
  .p-release__box-inner {
    margin: 0 auto 37px;
    width: 90%;
  }
  .p-release__btn {
    margin-bottom: 10px;
    width: 90%;
  }
  .p-release__btn a {
    font-size: 12px;
  }
  .p-release__description {
    padding: 50px 5%;
  }
  .p-release__description-inner {
    font-size: 14px;
    line-height: 2;
  }
  .p-release__description-catch {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .p-release__description-catch.-dvd {
    font-size: 17px;
    line-height: 1.6;
  }
  .p-dx__disc {
    display: block;
  }
  .p-disc__inner {
    width: 100%;
  }
  .p-dx__disc-left {
    padding: 50px 0 50px;
    width: 100%;
  }
  .p-dx__disc-right {
    padding: 50px 0 50px;
    width: 100%;
  }
  .p-dx__disc-pic.-jk1 {
    width: 73%;
  }
  .p-dx__disc-pic {
    width: 76%;
  }
  .p-disc__name {
    margin-bottom: 17px;
    font-size: 28px;
    text-align: center;
  }
  .p-disc__list {
    margin-bottom: 16px;
  }
  .p-disc__item {
    font-size: 12px;
    text-align: center;
  }
  .p-dx__disc-special {
    font-size: 11.5px;
    text-align: center;
  }
  .p-release__detail {
    margin-bottom: 0;
    padding: 40px 20px 50px;
  }
  .p-release__detail-box {
    display: block;
  }
  .p-release__detail-ttl-box {
    margin: 0 0 24px;
    width: 100%;
  }
  .p-release__detail-ttl-box img {
    width: 65%;
  }
  .p-release__detail-ttl-box:last-of-type img {
    width: 86%;
  }
  .p-release__detail-ttl-box .p-comment__item {
    margin: 24px auto 32px;
    width: 100%;
  }
  .p-release__detail-ttl-box .p-comment__item a {
    font-size: 12px;
  }
  .p-release__detail-ttl.-dvd {
    width: 53%;
  }
  .p-release__detail-inner {
    width: 100%;
  }
  .p-release__detail-item {
    padding-bottom: 13px;
    font-size: 19px;
  }
  .p-release__detail-item .p-num {
    margin-right: 18px;
    margin-left: 0;
    font-size: 11px;
  }
  .p-release__detail-item .p-small {
    font-size: 12px;
  }
  .p-release__detail-item .p-original {
    font-size: 11px;
  }
  .p-release__detail-annotation {
    padding-top: 10px;
    font-size: 11.5px;
  }
  .p-release__detail-ul-list {
    width: 100%;
  }
  .p-release__detail-ul-item {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    line-height: 1.45;
  }
  .p-release__detail-ul-item span {
    margin-right: 5px;
    margin-left: 8px;
    font-size: 11px;
    line-height: 2;
  }
  .p-dvd {
    padding: 25px 0 70px;
  }
  .p-release__dvd-pic {
    margin: 0 auto;
    width: 80%;
  }
  .p-dvd__disc-content {
    display: block;
  }
  .p-dvd__pic {
    padding: 50px 0;
    width: 100%;
  }
  .p-dvd__pic-inner {
    width: 70%;
  }
  .p-dvd__inner {
    width: 100%;
  }
  .p-dvd__disc-special {
    font-size: 11.5px;
    text-align: center;
  }
  .p-release__dvd-box {
    padding: 40px 0;
    height: auto;
  }
  .p-disc__dl {
    margin: 0 auto;
    width: 80%;
    text-align: center;
  }
  .p-disc__dt {
    font-size: 20px;
  }
  .p-disc__dd {
    font-size: 13px;
  }
  .p-release__detail-disc1-item {
    padding-left: 18px;
    font-size: 18px;
    line-height: 1.5;
    text-indent: -18px;
  }
  .p-radius::after {
    top: 3px;
    left: -3px;
    width: 23px;
    height: 23px;
  }
  .p-wbuy {
    padding: 28px 0 60px;
  }
  .p-wbuy__content {
    display: block;
    margin: 0 auto;
    padding: 15px 20px 40px;
    width: 90%;
  }
  .wbuy__pic {
    margin: 0 0 30px 20px;
    width: auto;
  }
  .wbuy__box {
    text-align: center;
  }
  .wbuy__ttl {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .wbuy__desctription {
    font-size: 16px;
  }
  .wbuy__desctription .p-small {
    margin-top: 10px;
    font-size: 14px;
  }
  .wbuy__gift {
    display: block;
    position: relative;
    margin: 0 auto 25px;
    width: 100%;
  }
  .wbuy__gift + .wbuy__gift {
    margin-bottom: 0;
  }
  .wbuy__gift .p-in-award {
    width: 50%;
    font-size: 20px;
    line-height: 3;
  }
  .wbuy__gift .p-in-cap {
    margin: 15px auto 0;
    width: 100%;
    font-size: 16px;
    text-align: left;
  }
  .wbuy__gift .p-in-cap .p-in-sup {
    line-height: 1.5;
  }
  .wbuy__gift .p-in-num {
    position: absolute;
    top: 0;
    right: 0;
    background: #9194A2;
    width: 50%;
    font-size: 20px;
    line-height: 3;
  }
  .wbuy__limit {
    width: 100%;
    font-size: 16px;
  }
  .wbuy__attention li {
    font-size: 11px;
  }
  .p-videos {
    padding: 88px 0 70px;
  }
  .p-videos .p-videos__content {
    padding: 63px 0 50px;
  }
  .p-videos .p-videos__ttl {
    -webkit-transform: translateY(-85px);
        -ms-transform: translateY(-85px);
            transform: translateY(-85px);
  }
  .p-videos .p-videos__box {
    margin-bottom: 12px;
    width: 90%;
  }
  .p-videos .p-videos__play {
    width: 60px;
    height: 60px;
  }
  .p-videos .p-videos__movie-ttl {
    font-size: 14px;
  }
  .p-shop {
    padding: 50px 0 25px;
  }
  .p-shop__ttl {
    -webkit-transform: translateY(12px);
        -ms-transform: translateY(12px);
            transform: translateY(12px);
  }
  .p-shop__subttl {
    margin-bottom: 35px;
    font-size: 18px;
  }
  .p-shop__box {
    padding: 50px 20px 50px;
  }
  .p-shop__list {
    display: block;
  }
  .p-shop__card {
    margin: 0 0 3px;
    padding: 20px;
    width: 100%;
  }
  .p-shop__name {
    margin-bottom: 0;
    font-size: 14px;
  }
  .p-shop__goods {
    font-size: 14px;
  }
  .p-shop__caution {
    padding: 34px 20px;
    font-size: 10px;
  }
  .p-shop__btn {
    display: block;
    margin: 25px auto 0;
  }
  .p-shop__btn:last-child {
    margin: 10px auto 0;
  }
  .p-tour {
    padding: 90px 0 80px;
  }
  .p-tour__inner {
    padding: 16px 0 50px;
  }
  .p-tour__ttl {
    -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  .p-tour__name {
    margin-bottom: 27px;
    font-size: 33px;
  }
  .p-tour__name span {
    font-size: 20px;
  }
  .p-tour__list {
    padding-bottom: 32px;
    width: 90%;
  }
  .p-tour__item {
    display: block;
    padding: 20px 0 20px 15px;
  }
  .p-tour__date {
    margin-bottom: 6px;
    font-size: 12px;
  }
  .p-tour__place {
    font-size: 14px;
  }
  .l-footer {
    padding: 30px;
  }
  .p-footer__logo {
    margin-bottom: 27px;
    width: 80px;
  }
  .p-footer__list {
    margin-bottom: 36px;
    width: 90%;
    font-size: 14px;
  }
  .c-copy {
    font-size: 10px;
  }
  .m-modal__close-btn {
    top: -50px !important;
    right: 0 !important;
    width: 40px !important;
    height: 40px !important;
  }
  .m-modal__close-btn::before {
    height: 40px !important;
  }
  .m-modal__close-btn::after {
    height: 40px !important;
  }
  .m-comment__main {
    padding: 100px 0 60px;
  }
  .m-comment__box {
    margin: 0 auto 75px;
  }
  .m-comment__head {
    margin-bottom: 0;
    width: 100%;
  }
  .m-comment__name {
    font-size: 1.6em;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }
  .m-comment__position {
    margin-top: 5px;
    font-size: 0.8em;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  .m-comment__body {
    margin-top: 24px;
    margin-left: 0;
    padding-left: 0;
  }
  .m-comment__text {
    padding: 0 1px;
    font-size: 1.3em;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: justify;
  }
  .m-comment__catch {
    font-size: 0.9em;
  }
  .m-comment__song {
    margin-bottom: 25px;
    font-size: 0.9em;
  }
  .m-comment__read {
    font-size: 13px;
  }
  .m-comment__writer {
    margin: 0 auto 75px;
    font-size: 13px;
  }
  .m-comment__close {
    top: 25px;
    right: 20px;
    border-width: 1px;
    width: 59px;
    height: 59px;
  }
  .m-comment__close::before {
    top: 0;
    left: 28px;
    width: 1px;
    height: 55px;
  }
  .m-comment__close::after {
    top: 0;
    left: 28px;
    width: 1px;
    height: 55px;
  }
  .modal_in {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
  }
  .modal_in .modal_wrap {
    width: 100%;
  }
  .modal_in .modal_access {
    margin: 0 auto;
    width: 92%;
  }
  .modal_close {
    top: -40px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}
