@charset "utf-8";
@font-face {
  font-family: "sawarabi";
  src:
    url("fonts/sawarabi-mincho-medium.ttf") format("truetype"),
    url("fonts/sawarabi-mincho-medium.woff") format("woff");
}

/******************************************
 * 汎用クラス
 *****************************************/
.hidden { display: none; }

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

.over{
	transition: opacity 0.3s ease;
	opacity: 1;
}
.over:hover{ opacity: 0.6; }
.arrow-01 {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 .5em;
  vertical-align: middle;
}
.arrow-01:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: -10%;
  background: url(../images/icon-arrow-01.png) no-repeat left center / auto 100%;
}
.btn-01 {
  display: inline-block;
  width: 240px;
  height: 48px;
  line-height: 48px;
  padding-left: 2em;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .6);
  background: rgba(0, 0, 0, .6);
  transition: background-color .3s ease;
}
.btn-01:hover {
  box-shadow: none;
  background: #8c1419;
}
.btn-01:hover .arrow-01:before {
  background-position-x: right;
}
.btn-01.disable {
  opacity: .4;
  pointer-events: none;
}
.btn-01.disable .arrow-01:before {
  opacity: .7;
}
.js-tab-content {
  display: none;
}
small {
  font-size: 90%;
}
.lb-link {
	transition: all 0.3s ease;
	border-bottom: 1px solid #fff;
}
.lb-link:hover {
	border-bottom: 1px solid #ff000a;
	color: #ff000a;
}

@media screen and (min-width: 751px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pc-only {
    display: none;
  }
  .arrow-01 {
    width: calc(25 / 750 * 100vw);
    height: calc(25 / 750 * 100vw);
  }
  .btn-01 {
    width: 100%;
    max-width: calc(360 / 750 * 100vw);
    height: 2.6em;
    line-height: 2.6em;
  }
}


/******************************************
 * webkit スクロールバー
 *****************************************/
/*スクロールバー全体*/
.scroll::-webkit-scrollbar {
    width: 10px;
}

/*スクロールバーの軌道*/
.scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  /*box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);*/
}

/*スクロールバーの動く部分*/
.scroll::-webkit-scrollbar-thumb {
  background-color: rgb(210, 188, 149);
  /*border-radius: 10px;*/
  /*box-shadow:0 0 0 1px rgba(255, 255, 255, .3);*/
}


/******************************************
 * 共通部分レイアウト
*****************************************/
body {
  background: #000;
}
body > footer {
  position: relative;
}
@media screen and (min-width: 751px) {
  body {
    min-width: 1200px;
  }
}

@media screen and (max-width: 750px) {
  body {
    min-width: 320px;
  }
}


/******************************************
 * page
*****************************************/
.page {
  position: relative;
  width: 100%;
  font-family: "sawarabi", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  color: #fff;
  overflow: hidden;
}
.page * {
  box-sizing: border-box;
}
.page img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.page a {
  color: inherit;
  text-decoration: none;
}
.page-wrapper {
  position: relative;
  z-index: 0;
}
.page-bg-particle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  .page {
    font-size: 3.2vw;
  }
}

/* ie ハック */
@media all and (-ms-high-contrast:none){
}


/******************************************
 * page-bg
*****************************************/
.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -100;
  background: #000;
}
.page-bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-dotted.png) repeat 0 0;
  z-index: 1;
}
.page-bg-video {
  position: relative;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
}
.page-bg-video:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-bg-video:before {
  box-shadow:
    0 0 200px 0 #000 inset,
    0 0 200px 0 #000 inset,
    0 0 200px 0 #000 inset;
}
.page-bg-video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.page-bg-video-wrap > video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .page-bg-video:before {
    box-shadow:
      0 0 5vw 0 #000 inset,
      0 0 5vw 0 #000 inset;
  }
}

/******************************************
 * page-loading
*****************************************/
.page-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-loading-inner {
  color: #fff;
  text-align: center;
}
.page-loading-inner span,
.page-loading-inner img {
  vertical-align: middle;
}
.page-loading-inner span {
  display: inline-block;
  margin-right: .5em;
}

/******************************************
 * page-header
*****************************************/
.page-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 60%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 60%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
  z-index: 9999;
}

.page-nav li a i:nth-of-type(2) {
  transition: color .3s ease;
}
.page-nav li a i:nth-of-type(1):before {
  transition: width .3s ease;
}
.page-nav li a i:nth-of-type(1):after {
  transition: height .2s ease;
}
.page-nav li a:hover i:nth-of-type(1):after {
  transition-duration: .5s;
}

@media screen and (min-width: 751px) {
  .btn-nav {
    display: none;
  }
  .page-nav {
    display: block !important;
    padding-bottom: 10px;
  }
  .page-nav ul {
    display: flex;
    justify-content: center;
    font-size: 20px;
  }
  .page-nav li {
    letter-spacing: .1em;
  }
  .page-nav li a {
    position: relative;
    display: block;
    padding: 30px 1em 10px;
    z-index: 0;
  }
  .page-nav li a i {
    display: block;
    position: absolute;
    line-height: 0;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-nav li a i:before,
  .page-nav li a i:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .page-nav li a i:nth-of-type(1) {
    width: 16px;
    height: 16px;
    color: #c80008;
  }
  .page-nav li a i:nth-of-type(1):before {
    width: 0;
    border-top: 1px solid;
  }
  .page-nav li a:hover i:nth-of-type(1):before {
    width: 100%;
  }
  .page-nav li a i:nth-of-type(1):after {
    height: 0;
    border-left: 1px solid;
    margin-top: -25px;
  }
  .page-nav li a:hover i:nth-of-type(1):after {
    height: 66px;
  }

  .page-nav li a i:nth-of-type(2) {
    color: #fff;
  }
  .page-nav li a:hover i:nth-of-type(2) {
    color: #c80008;
  }
  .page-nav li a i:nth-of-type(2):before {
    width: 8px;
    height: 8px;
    border: 1px solid;
    border-radius: 50%;
    background: #000;
  }
  .page-nav li a i:nth-of-type(2):after {
    border: 2px solid;
    border-radius: 50%;
  }
  .page-nav li.page-nav-product a {
    position: relative;
    z-index: 0;
  }
  .page-nav li.page-nav-product a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c80008;
    transition: opacity .3s ease;
    z-index: -1;
  }
  .page-nav li.page-nav-product a:hover:before {
    opacity: .6;
  }
  .page-nav li.page-nav-product a i:nth-of-type(2):before {
    background: none;
  }
  .page-nav li.page-nav-product a i:nth-of-type(1) {
    display: none;
  }
  .page-nav li.page-nav-product a:hover i:nth-of-type(2) {
    color: #fff;
  }
}

@media screen and (min-width: 751px) and (max-width: 920px) {
  .page-nav ul {
    font-size: 18px;
  }
}

@media screen and (max-width: 750px) {
  .btn-nav {
    position: absolute;
    top: 2vw;
    right: 1vw;
    width: calc(260 / 2 / 750 * 100vw);
    height: calc(300 / 2 / 750 * 100vw);
    cursor: pointer;
    z-index: 10;
  }
  .btn-nav i {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center center / contain;
  }
  .btn-nav .btn-menu {
    background-image: url(../images/btn-menu.png);
  }
  .btn-nav .btn-close {
    display: none;
    background-image: url(../images/btn-close.png);
  }
  .btn-nav.open .btn-menu {
    display: none;
  }
  .btn-nav.open .btn-close {
    display: block;
  }
  .page-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
  }
  .page-nav-outer {
    height: 100%;
    overflow: hidden;
  }
  .page-nav-inner {
    width: calc(100% + 30px);
    height: 100%;
    padding-right: 30px;
    overflow: auto;
  }
  .page-nav__logo {
    width: 34.13vw;
    margin: 4vw auto 8vw;
  }
  .page-nav ul {
    padding-bottom: 4vw;
  }
  .page-nav li a {
    position: relative;
    display: block;
    padding: .75em;
    font-size: 117%;
    text-align: center;
  }
  .page-nav li a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: calc(400 / 2 / 750 * 100vw);
    height: calc(20 / 2 / 750 * 100vw);
    background: url(../images/line-nav.png) no-repeat center center / contain;
    transform: translate(-50%, 50%);
  }
  .page-nav li a i {
    display: none;
  }
}


/******************************************
 * page-footer
*****************************************/
.page-footer {
  position: relative;
  /*
  padding: 50px 0;
  height: 100vh;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  */
}
.page-footer:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 800px;
  margin-bottom: -150px;
  background: url(../images/bg-smoke-footer.png) repeat-x center bottom;
  z-index: -10;
}
.page-footer__logo {
  width: 360px;
  margin: 0 auto 40px;
}
.page-footer__copy {
  margin: 0 auto 80px;
  text-align: center;
}
.page-footer__copy img {
  height: 40px;
}

@media screen and (max-width: 750px) {
  .page-footer {
    /*
    padding: calc(250 / 750 * 100vw) 0;
    */
  }
  .page-footer:before {
    margin-bottom: -20vw;
    background-size: 300% auto;
  }
  .page-footer__logo {
    width: calc(360 / 750 * 100vw);
    margin: 0 auto calc(30 / 750 * 100vw);
  }
  .page-footer__copy {
    margin: 0 auto calc(70 / 750 * 100vw);
  }
  .page-footer__copy img {
    height: calc(35 / 750 * 100vw);
  }
  .share-link li {
    margin: 0 calc(20 / 750 * 100vw);
  }
  .share-link li img {
    height: calc(50 / 750 * 100vw);
  }
}


/******************************************
 * share-link
*****************************************/
.share-link ul {
  display: flex;
  justify-content: center;
}
.share-link li {
  margin: 0 10px;
}
.share-link li img {
  height: 25px;
}

@media screen and (max-width: 750px) {
  .share-link li {
    margin: 0 calc(20 / 750 * 100vw);
  }
  .share-link li img {
    height: calc(50 / 750 * 100vw);
  }
}


/******************************************
 * pagetop
*****************************************/
.pagetop-wrap {
  position: absolute;
  bottom: -30px;
  right: 0;
}
.pagetop {
  position: absolute;
  display: block;
  bottom: 50px;
  right: 20px;
  width: 130px;
  height: 150px;
  z-index: 100;
  overflow: hidden;
  transition: opacity .3s ease;
  visibility: hidden;
  opacity: 0;
}
.pagetop .icon-pagetop {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pagetop .icon-pagetop:before,
.pagetop .icon-pagetop:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/btn-pagetop.png) no-repeat left top / 100% auto;
}
.pagetop .icon-pagetop:before {
  background-position-y: top;
}
.pagetop .icon-pagetop:after {
  background-position-y: bottom;
  opacity: 0;
  transition: opacity .3s ease;
}
body:not(.touch-device) .pagetop:hover .icon-pagetop:after {
  opacity: 1;
}
.pagetop.fixed {
  position: fixed;
}
.pagetop.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 750px) {
  .pagetop-wrap {
    bottom: 0;
  }
  .pagetop {
    bottom: 2vw;
    right: .75vw;
    width: calc(130 / 750 * 100vw);
    height: calc(150 / 750 * 100vw);
  }
  body:not(.touch-device) .pagetop:hover img{
    margin-top: calc(150 / 750 * -100vw);
  }
}


/******************************************
 * page-container
*****************************************/
.page-container {
  position: relative;
  padding-bottom: 250px;
}
.page-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -10;
}
/*
.page-container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, .2);
  z-index: -20;
}
*/

@media screen and (min-width: 751px) {
  .page-container:before {
    height: calc(100% + 200px);
    margin-top: -200px;
    background: 
      url(../images/bg-smoke-01.png) no-repeat center 0px,
      url(../images/bg-smoke-02.png) no-repeat center 5000px,
      url(../images/bg-smoke-03.png) no-repeat center 10000px;
  }
  .page-container:after {
    height: calc(100% + 365px);
    margin-top: -365px;
  }
}

@media screen and (max-width: 750px) {
  .page-container {
    padding-bottom: 28vw;
  }
  .page-container:before {
    height: calc(100% + 50vw);
    margin-top: -50vw;
    background:
     url(../images/bg-smoke-sp.png) repeat-y center -100vw / 100% auto;
  }
  .page-container:after {
    height: calc(100% + 45vw);
    margin-top: -45vw;
  }
}


/******************************************
 * sec-content
*****************************************/
.content-anchor {
  padding-top: 100px;
  margin-top: -100px;
  pointer-events: none;
}
.sec-content {
  padding: 0 20px;
}
.content-inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  z-index: 0;
}
.content__txt {
  line-height: 2;
  text-shadow:
    0 0 .5em #000,
    0 0 .5em #000;
  letter-spacing: .1em;
}
.content-bg {
  position: absolute;
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  .content-anchor {
    padding-top: calc(150 / 750 * 100vw);
    margin-top: calc(150 / 750 * -100vw);
  }
  .sec-content {
    padding: 0 3.2vw;
  }
  .content__txt {
    line-height: 1.6;
  }
}


/******************************************
 * sec-top
*****************************************/
.sec-top {
  position: relative;
  padding-top: 100px;
  margin-bottom: 200px;
}
.sec-top:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 800px;
  margin-top: -400px;
  background: url(../images/bg-smoke-top.png) repeat-x center top;
  z-index: -10;
}
.top__platform {
  width: 460px;
  margin: 0 0 25px;
}
.top__logo {
  width: 600px;
  margin: 0 auto 30px;
}
.top__copy {
  margin: 0 auto 48px;
  text-align: center;
}
.top__copy img {
  height: 50px;
}
.top__day {
  width: 500px;
  margin: 0 auto 38px;
}
.top__btn-product {
  text-align: center;
}
.top__btn-product .btn-01 {
  max-width: 280px;
  height: 64px;
  line-height: 64px;
}
.news-slider-wrap {
  position: relative;
  margin: 130px -4px 0;
}
.news-slider__item {
  width: 25%;
  padding: 0 4px;
  overflow: hidden;

}
.news-slider__item a {
  display: block;
  padding: 1px;
  background: -moz-linear-gradient(top, rgba(255,240,182,1) 0%, rgba(255,255,255,0.2) 100%);
  background: -webkit-linear-gradient(top, rgba(255,240,182,1) 0%,rgba(255,255,255,0.2) 100%);
  background: linear-gradient(to bottom, rgba(255,240,182,1) 0%,rgba(255,255,255,0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff0b6', endColorstr='#33ffffff',GradientType=0 );
}
.news-slider__item dl {
  padding: 15px 20px;
  font-size: 14px;
  background: #000;
}
.news-slider__item dt {
  margin-bottom: .5em;
  color: #c80008;
}
.news-slider__item dd {
  display: -webkit-box;
  height: 6.8em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.news-slider-control :focus {
  outline: none;
}
.news-slider-control .slick-arrow {
  position: absolute;
  top: 50%;
  width: 90px;
  height: 90px;
  text-indent: 200%;
  border: none;
  background: none;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(-50%);
}
.news-slider-control .slick-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/btn-arrow-01.png) no-repeat center center / contain;
}
.news-slider-control .slick-arrow.slick-prev {
  left: -90px;
}
.news-slider-control .slick-arrow.slick-next {
  right: -90px;
}
.news-slider-control .slick-arrow.slick-next:before {
  transform: scale(-1, 1);
}
.news-slider-control-dots {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 20px;
}
.news-slider-control-dots ul {
  display: flex;
  justify-content: center;
}
.news-slider-control-dots li {
  margin: 0 10px;
}
.news-slider-control-dots button {
  position: relative;
  width: 16px;
  height: 16px;
  padding: 0;
  text-indent: 200%;
  line-height: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  overflow: hidden;
}
.news-slider-control-dots button:before {
  content: "";
  position: absolute;
  display: block;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 50%;
  background: #fff;
}
.news-slider-control-dots .slick-active button,
.news-slider-control-dots button:hover {
  border-color: #c80008;
}
.news-slider-control-dots .slick-active button:before,
.news-slider-control-dots button:hover:before {
  background: #c80008;
}

@media screen and (min-width: 751px) and (max-width: 1320px) {
  .news-slider-control .slick-arrow {
    top: 100%;
    transform: none;
  }
  .news-slider-control .slick-arrow.slick-prev {
    left: 0;
  }
  .news-slider-control .slick-arrow.slick-next {
    right: 0;
  }
  .news-slider-control-dots {
    padding-top: 30px;
  }
}

@media screen and (max-width: 750px) {
  .sec-top {
    padding-top: 0;
    margin-bottom: calc(280 / 750 * 100vw);
  }
  .sec-top:before {
    height: 100vw;
    margin-top: -70vw;
    background-size: 300% auto;
  }
  .top__platform {
    width: calc(430 / 750 * 100vw);
    margin: 2vw -3.2vw 0;
  }
  .top__logo {
    width: calc(500 / 750 * 100vw);
    margin: calc(100 / 750 * 100vw) auto calc(50 / 750 * 100vw);
  }
  .top__copy {
    margin: 0 auto calc(50 / 750 * 100vw);
  }
  .top__copy img {
    height: calc(55 / 750 * 100vw);
  }
  .top__copy img + img {
    margin-top: 4vw;
  }
  .top__day {
    width: calc(450 / 750 * 100vw);
    margin: 0 auto calc(50 / 750 * 100vw);
  }
  .top__btn-product .btn-01 {
    max-width: calc(500 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
    line-height: calc(80 / 750 * 100vw);
  }
  .news-slider-wrap {
    margin: calc(120 / 750 * 100vw) -1.6vw 0;
  }
  .news-slider__item {
    width: 50%;
    padding: 0 1.6vw;
  }
  .news-slider__item dl {
    padding: 2vw;
    font-size: 100%;
  }
  .news-slider__item dt {
    margin-bottom: .25em;
  }
  .news-slider__item dd {
    line-height: 1.4;
    height: 7em;
    -webkit-line-clamp: 5;
  }
  .news-slider-control .slick-arrow {
    top: 100%;
    width: calc(100 / 750 * 100vw);
    height: calc(100 / 750 * 100vw);
    transform: none;
  }
  .news-slider-control .slick-arrow.slick-prev {
    left: 0;
  }
  .news-slider-control .slick-arrow.slick-next {
    right: 0;
  }
  .news-slider-control-dots {
    padding-top: calc(20 / 750 * 100vw);
  }
  .news-slider-control-dots li {
    margin: 0 1.6vw;
  }
  .news-slider-control-dots button {
    width: calc(24 / 750 * 100vw);
    height: calc(24 / 750 * 100vw);
  }
  .news-slider-control-dots button:before {
    top: calc(4 / 750 * 100vw);
    left: calc(4 / 750 * 100vw);
    right: calc(4 / 750 * 100vw);
    bottom: calc(4 / 750 * 100vw);
  }
}


/******************************************
 * sec-about
*****************************************/
.sec-about {
  margin-bottom: 130px;
}
.sec-about .content__ttl {
  width: calc(1556px / 2);
  margin-left: -15px;
}
.sec-about .content__txt {
  margin-top: 50px;
  width: 680px;
}
.sec-about .content__txt p + p {
  margin-top: 2em;
}
.about__btn-play {
  position: relative;
  z-index: 1;
}
.about__btn-play a {
  display: inline-block;
}
.about__btn-play a .icon-play {
  content: "";
  display: block;
  position: absolute;
  top: 200px;
  left: 525px;
  width: 125px;
  height: 125px;
}
.about__btn-play a .icon-play:before,
.about__btn-play a .icon-play:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/btn-about-play.png) no-repeat left center / auto 100%;
}
.about__btn-play a .icon-play:before {
  background-position-x: left;
}
.about__btn-play a .icon-play:after {
  background-position-x: right;
  opacity: 0;
  transition: opacity .3s ease;
}
.about__btn-play a:hover .icon-play:after {
  opacity: 1;
}
.sec-about .content-bg {
  top: 50px;
  right: -100px;
}
.sec-about .content-bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-about-chara-02.png) no-repeat center center / cover;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .sec-about {
    margin-bottom: calc(180 / 750 * 100vw);
  }
  .sec-about .content__ttl {
    width: auto;
    margin-left: -1vw;
  }
  .sec-about .content__txt {
    position: relative;
    margin-top: calc(50 / 750 * 100vw);
    width: auto;
    z-index: 1;
  }
  .sec-about .content__txt p:nth-child(2) {
    padding-right: calc(170 / 750 * 100vw);
  }
  .about__btn-play {
    margin-right: -3.2vw;
  }
  .about__btn-play a .icon-play {
    top: calc(180 / 750 * 100vw);
    left: calc(390 / 750 * 100vw);
    width: calc(90 / 750 * 100vw);
    height: calc(90 / 750 * 100vw);
  }
  .sec-about .content-bg {
    top: auto;
    bottom: calc(20 / 750 * -100vw);
    right: calc(170 / 750 * -100vw);
    width: calc(500 / 750 * 100vw);
  }
}


/******************************************
 * sec-story
*****************************************/
.sec-story {
  margin-bottom: 200px;
}
.sec-story .content__ttl {
  width: calc(1462px / 2);
  margin: 0 auto;
}
.sec-story .content__txt {
  margin-top: 50px;
  font-size: 20px;
  text-align: center;
}
.sec-story .content__txt p + p {
  margin-top: 2rem;
}
.sec-story .content-bg-01 {
  top: -260px;
  left: -370px;
  z-index: -1;
}
.sec-story .content-bg-02 {
  top: -360px;
  right: -430px;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .sec-story {
    margin-bottom: calc(180 / 750 * 100vw);
  }
  .sec-story .content__ttl {
    width: auto;
  }
  .sec-story .content__txt {
    margin-top: calc(50 / 750 * 100vw);
    font-size: 100%;
  }
  .sec-story .content-bg-01 {
    top: calc(30 / 750 * 100vw);
    left: calc(200 / 750 * -100vw);
    width: calc(600 / 750 * 100vw);
  }
  .sec-story .content-bg-02 {
    top: calc(110 / 750 * -100vw);
    right: calc(290 / 750 * -100vw);
    width: calc(500 / 750 * 100vw);
  }
}


/******************************************
 * sec-action
*****************************************/
.sec-action {
  margin-bottom: 130px;
}
.sec-action .content__ttl {
  width: calc(1726px / 2);
  margin-left: auto;
}
.action__item {
  position: relative;
}
.action__item-txtbox {
  position: absolute;
  top: 0;
  width: 680px;
  padding-top: 130px;
  text-shadow:
    0 0 .5em #000,
    0 0 .5em #000;
}
.action__item__ttl {
  line-height: 1.4;
  margin-bottom: 1em;
  font-size: 48px;
  font-weight: bold;
  white-space: nowrap;
}
.action__item__txt {
  line-height: 2;
}
.action__item__image {
  margin: 0 -90px;
}
.action__item:nth-child(odd) .action__item-txtbox {
  left: 0;
}
.action__item:nth-child(odd) .action__item__image {
  text-align: right;
}
.action__item:nth-child(even) .action__item-txtbox {
  right: 0;
}
.action__item:nth-child(n+2) {
  margin-top: -60px;
}
.sec-action .content-bg {
  top: -40px;
  left: -20px;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .sec-action {
    margin-bottom: calc(140 / 750 * 100vw);
  }
  .sec-action .content__ttl {
    width: auto;
  }
  .action-list {
    margin-top: calc(60 / 750 * 100vw);
  }
  .action__item-txtbox {
    position: static;
    width: auto;
    padding-top: 0;
  }
  .action__item__ttl {
    margin-bottom: .5em;
    font-size: 190%;
  }
  .action__item__txt {
    position: relative;
    line-height: 1.6;
    z-index: 1;
  }
  .action__item__image {
    margin: calc(100 / 750 * -100vw) calc(60 / 750 * -100vw) 0;
  }
  .action__item:nth-child(n+2) {
    margin-top: calc(30 / 750 * 100vw); 
  }
  .sec-action .content-bg {
    top: calc(160 / 750 * -100vw);
    left: calc(0 / 750 * -100vw);
    width: calc(700 / 750 * 100vw);
  }
}


/******************************************
 * sec-new
*****************************************/
.sec-new {
  margin-bottom: 140px;
}
.sec-new .content-inner {
  z-index: 1;
}
.sec-new .content__ttl {
  width: calc(430px / 2);
  margin-left: -15px;
}
.new__item {
  position: relative;
  z-index: 0;
}
.new__item-txtbox {
  position: relative;
  width: 680px;
  text-shadow:
    0 0 .5em #000,
    0 0 .5em #000;
}
.new__item__ttl {
  line-height: 1.4;
  margin-bottom: 1em;
  font-size: 48px;
  font-weight: bold;
  white-space: nowrap;
}
.new__item__txt {
  line-height: 2;
}
.new__item__list {
  line-height: 2;
  text-shadow:
    0 0 .5em #000,
    0 0 .5em #000;
}
.new__item__list dt {
  margin-bottom: .25em;
  font-size: 20px;
  font-weight: bold;
  color: #c80008;
}
.new__item__list dd + dt {
  margin-top: 1em;
}
.new__item__image {
  margin: 0 -70px;
}
.new__item:nth-child(1) .new__item-txtbox {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 130px;
}
.new__item:nth-child(2),
.new__item:nth-child(3) {
  margin-top: 60px;
}
.new__item:nth-child(2) .new__item__image,
.new__item:nth-child(3) .new__item__image {
  margin-top: -20px;
}
.new__item:nth-child(4) .new__item-txtbox {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 60px;
}
.new__item:nth-child(4) .new__item__image {
  text-align: right;
}
.sec-new .content-bg {
  top: -100px;
  right: -100px;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .sec-new {
    margin-bottom: calc(160 / 750 * 100vw);
  }
  .sec-new .content__ttl {
    width: calc(180 / 750 * 100vw);
    margin-left: -1.6vw;
    margin-bottom: calc(60 / 750 * 100vw);
  }
  .new__item:nth-child(n+2) {
    margin-top: calc(30 / 750 * 100vw) !important; 
  }
  .new__item-txtbox {
    position: relative !important;
    width: auto;
    margin-top: 0 !important;
  }
  .new__item__ttl {
    margin-bottom: .5em;
    font-size: 190%;
  }
  .new__item__txt {
    line-height: 1.6;
  }
  .new__item__list {
    line-height: 1.6;
  }
  .new__item__list dt {
    font-size: 130%;
  }
  .new__item__list dd + dt {
    margin-top: 0;
  }
  .new__item__list .new__item__image {
    position: relative;
    z-index: -1;
  }
  .new__item__image {
    margin: calc(40 / 750 * -100vw) calc(60 / 750 * -100vw) 0;
    text-align: center;
  }
  .sec-new .content-bg {
    top: calc(100 / 750 * -100vw);
    right: calc(160 / 750 * -100vw);
    width: calc(750 / 750 * 100vw);
  }
}


/******************************************
 * sec-product
*****************************************/
.sec-product {
  margin-bottom: 200px;
}
.sec-product .content__ttl {
  width: calc(560px / 2);
  margin: 0 auto;
}

/* product-block-01 */
.product-block-01 {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.product-txtbox {
  width: 450px;
}
.product__logo {
  width: 280px;
  margin: 0 auto 30px;
}
.product__day {
  width: 300px;
  margin: 0 auto 20px;
}
.product__note {
  line-height: 2;
  text-align: center;
}
.product-table {
  width: 750px;
}
.product-table-inner {
  padding: 25px;
  background: rgba(255, 255, 255, .2);
}
.product-table table {
  width: 100%;
  table-layout: fixed;
  font-size: 14px;
  border-collapse: separate;
  border-spacing: 1px;
}
.product-table th,
.product-table td {
  height: 95px;
  text-align: center;
  vertical-align: middle;
}
.product-table thead th {
  height: 64px;
  background: #8c1419;
}
.product-table thead th:first-child {
  width: 16%;
}
.product-table tbody tr:nth-child(odd) > * {
  background: rgba(0, 0, 0, .8);
}
.product-table tbody tr:nth-child(even) > * {
  background: rgba(30, 30, 30, .85);
}

/* product-block-02 */
.product-block-02 {
  padding: 25px;
  background: rgba(255, 255, 255, .2);
}
.product__item-list {
  margin-bottom: 7px;
}
.product__item-list ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.product__item-list li {
  width: 24.5%;
}
.product__item-list li a {
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #000;
  transition: background-color .3s ease;
}
.product__item-list li.current a,
.product__item-list li a:hover {
  background: #8c1419;
}
.product__item {
  padding: 40px;
  background: #000;
}
.product__item__ttl {
  line-height: 1;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  background: url(../images/line-ttl.png) no-repeat center bottom / 200px auto;
}
.product__item-inner {
  position: relative;
}

/* product__item__shop-detail */
.product__item__shop-detail {
  display: flex;
  justify-content: space-between;
}
.product__item__shop__image {
  width: 48.5%;
  text-align: center;
}
.product__item__shop-txtbox {
  width: 48.5%;
}
.product__item__shop__price {
  height: 65px;
  line-height: 65px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background: rgba(255, 255, 255, .2);
}
.product__item__shop__btn a {
  padding-left: 1em;
  font-size: 90%;
}
.product__item__shop-info {
  margin-bottom: 30px;
}
.product__item__shop-info-list ul {
  counter-reset: count;
}
.product__item__shop-info-list li {
  counter-increment: count;
  padding-left: 1em;
}
.product__item__shop-info-list li + li {
  margin-top: .5em;
}
.product__item__shop-info-list li p,
.product__item__shop-info-list li dt {
  text-indent: -1em;
}
.product__item__shop-info-list li p:before,
.product__item__shop-info-list li dt:before {
  content: counter(count);
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
.product__item__shop-info-list li dd {
  font-size: 90%;
}
.product__item__shop-info-list li dd strong {
  color: #c80008;
}
.product__item__shop-info-note {
  margin-top: 1em;
  font-size: 80%;
}
.product__item__shop-info-note li {
  text-indent: -1em;
  margin-left: 1em;
}
.product__item__shop-info-note li:before {
  content: "※";
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
.js-select {
  position: relative;
  cursor: pointer;
  width: 240px;
}
.js-select-caption {
  position: relative;
  width: 100%;
  line-height: 40px;
  cursor: pointer;
  padding: 0 20px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .6);
  background: rgba(0, 0, 0, .6);
  overflow: hidden;
}
.js-select-caption .arrow-01 {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(90deg);
}
.js-select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  border: 0;
  cursor: pointer;
}

/* product__item__shop-detail-01 */
.product__item__shop-detail-01 .product__item__shop__btn li {
  margin-bottom: 40px;
}
.product__item__shop-detail-01 .product__item__shop__btn li {
  margin-bottom: 40px;
}
.product__item__shop-detail-01 .product__item__shop__btn dt {
  margin-bottom: 1em;
}

/* product__item__shop-detail-02 */
.product__item__shop-detail-02 .product__item__shop__btn {
  display: flex;
  align-items: center;
  height: 100%;
}
.product__item__shop-detail-02 .product__item__shop__btn ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product__item__shop-detail-02 .product__item__shop__btn li {
  margin: 10px 0;
}

/* product__item__shop-detail-03 */
.product__item__shop-detail-03 .product__item__shop-select {
  margin-bottom: 30px;
}
.product__item__shop-detail-03 .product__item__shop__btn {
  margin-top: 30px;
}
.product__item__shop-detail-03 .product__item__shop__btn a {
  width: 100%;
  font-size: 120%;
  height: 60px;
  line-height: 60px;
}
.product__item__shop-detail-03 .product__item__shop-select ul {
  display: flex;
  justify-content: space-between;
}
.product__item__shop-detail-03 .product__item__shop-select li dt {
  margin-bottom: .25em;
}
.product__item__shop-detail-03 .product__item__shop__price__note {
  font-size: 120%;
  text-align: right;
}
.product__item__shop-detail-03 .js-select-content {
  display: none;
}
.product__item__shop-detail-03[data-platform = "ps4"] .js-select-content-ps4,
.product__item__shop-detail-03[data-platform = "switch"] .js-select-content-switch,
.product__item__shop-detail-03[data-shop = "ecapcom"] .js-select-content-ecapcom,
.product__item__shop-detail-03[data-shop = "amazon"] .js-select-content-amazon,
.product__item__shop-detail-03[data-shop = "amiami"] .js-select-content-amiami,
.product__item__shop-detail-03[data-shop = "joshin"] .js-select-content-joshin,
.product__item__shop-detail-03[data-shop = "wondergoo"] .js-select-content-wondergoo {
  display: block;
}

/* product__item__shop-detail-04 */
.product__item__shop-detail-04 .product__item__shop__btn ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* product-special */
.product-special {
  margin-top: 45px;
}
.product-special__ttl {
  text-align: center;
  overflow: hidden;
}
.product-special__ttl span {
  position: relative;
  display: inline-block;
  padding: 0 .5em;
  font-size: 24px;
  font-weight: bold;
}
.product-special__ttl span:before,
.product-special__ttl span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 500px;
  height: 0;
  border-top: 1px solid;
  opacity: .4;
}
.product-special__ttl span:before {
  left: 100%;
}
.product-special__ttl span:after {
  right: 100%;
}
.product-special-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-special-item {
  width: 48.5%;
  margin: 30px 0;
}
.product-special-item__ttl {
  margin: 0 auto 1em;
  text-align: center;
}
.product-special-item__ttl img {
  width: 150px;
}
.product-special-item__name {
  margin: 1em 0;
}
.product-special-item__btn {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.product-special-item__btn a {
  padding-left: 1em;
  font-size: 90%;
}
.product-special-note {
  margin-bottom: 1em;
  font-size: 90%;
}
.product-special-note li {
  margin-left: 1em;
  text-indent: -1em;
}
.product-special-note li:before {
  content: "※";
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
.sec-product .content-bg {
  top: -380px;
  left: -370px;
  z-index: -1;
}

/* product-block-03 */
.product-block-03 {
  margin: 2em 0;
}
.product-note li {
  margin-left: 1em;
  text-indent: -1em;
}
.product-note li:before {
  content: "※";
  display: inline-block;
  width: 1em;
  text-indent: 0;
}

@media screen and (min-width: 751px) {
  .product-special-inner {
    display: block !important;
  }
  .js-accordion-trigger {
    pointer-events: none;
  }
  .product-special-item-largeblock {
    width: 100%;
  }
  .product-special-item-largeblock-inner {
    display: flex;
    justify-content: space-between;
  }
  .product-special-item-largeblock-inner > * {
    width: 48.5%;
  }
  .product-special-item-txtbox + .product-special-item-txtbox {
    margin-top: 2em;
    border-top: 1px solid;
  }
}
@media screen and (max-width: 750px) {
  .sec-product {
    margin-bottom: calc(180 / 750 * 100vw);
  }
  .sec-product .content__ttl {
    width: calc(250 / 750 * 100vw);
  }
  
  /* product-block-01 */
  .product-block-01 {
    display: block;
    margin-top: calc(50 / 750 * 100vw);
  }
  .product-txtbox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: auto;
  }
  .product__logo {
    width: calc(280 / 750 * 100vw);
    margin: 1.6vw;
  }
  .product__day {
    width: calc(360 / 750 * 100vw);
    margin: 1.6vw;
  }
  .product__note {
    margin: 1.6vw;
    line-height: 1.6;
    text-align: center;
  }
  .product-table {
    width: 100%;
    margin-top: 3.6vw;
    overflow: auto;
  }
  .product-table-inner {
    display: inline-block;
    padding: calc(20 / 750 * 100vw);
  }
  .product-table table {
    width: auto;
    font-size: 100%;
  }
  .product-table th,
  .product-table td {
    height: 6em;
    padding: 0 1em;
    white-space: nowrap;
  }
  .product-table thead th {
    height: 4em;
  }
  .product-table::-webkit-scrollbar {
    height: 6px;
  }
  .product-table::-webkit-scrollbar-track {
    border-radius: 3px;
    background: rgba(0, 0, 0, .8);
  }
  .product-table::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: rgba(255, 255, 255, .2);
  }

  /* product-block-02 */
  .product-block-02 {
    padding: calc(20 / 750 * 100vw);
  }
  .product__item-list {
    margin-bottom: 0;
  }
  .product__item-list ul {
    flex-wrap: wrap;
  }
  .product__item-list li {
    width: 49.5%;
    margin-bottom: 1%;
  }
  .product__item-list li a {
    height: auto;
    line-height: 1.4;
    padding: .5em 0;
    font-size: 90%;
  }
  .product__item {
    padding: calc(40 / 750 * 100vw);
  }
  .product__item__ttl {
    font-size: 133%;
    background-size: calc(200 / 750 * 100vw) auto;
  }
  .product__item__shop-detail {
    display: block;
  }
  .product__item__shop__image {
    width: auto;
  }
  .product__item__shop-txtbox {
    width: auto;
    margin: calc(40 / 750 * 100vw) 0 0;
  }
  .product__item__shop__btn dt {
    font-size: 90%;
    margin-bottom: .75em;
  }
  .product__item__shop__price {
    width: 100%;
    height: 2.6em;
    line-height: 2.6em;
    font-size: 133%;
  }

  .product__item__shop-info {
    margin-bottom: calc(30 / 750 * 100vw);
  }
  .js-select {
    width: 100%;
  }
  .js-select-caption {
    position: relative;
    width: 100%;
    line-height: calc(50 / 750 * 100vw);
    padding: 0 1em;
  }
  .js-select-caption .arrow-01 {
    right: 1em;
  }
  
  /* product__item__shop-detail-01 */
  .product__item__shop-detail-01 .product__item__shop__btn li {
    width: 100%;
    margin-bottom: calc(30 / 750 * 100vw);
  }
  .product__item__shop-detail-01 .product__item__shop__btn li dd {
    text-align: center;
  }

  /* product__item__shop-detail-02 */
  .product__item__shop-detail-02 .product__item__shop__btn {
    display: block;
  }
  .product__item__shop-detail-02 .product__item__shop__btn ul {
    display: block;
  }
  .product__item__shop-detail-02 .product__item__shop__btn li {
    width: 100%;
    margin-top: 1em;
    text-align: center;
  }

  /* product__item__shop-detail-03 */
  .product__item__shop-detail-03 .product__item__shop-select {
    margin-bottom: calc(50 / 750 * 100vw);
  }
  .product__item__shop-detail-03 .product__item__shop__btn {
    margin-top: calc(30 / 750 * 100vw);
  }
  .product__item__shop-detail-03 .product__item__shop__btn a {
    max-width: 100%;
    font-size: 100%;
    height: calc(80 / 750 * 100vw);
    line-height: calc(80 / 750 * 100vw);
  }
  .product__item__shop-detail-03 .product__item__shop-select ul {
    display: block;
    width: 70%;
  }
  .product__item__shop-detail-03 .product__item__shop-select li + li {
    margin-top: calc(30 / 750 * 100vw);
  }
  
  /* product__item__shop-detail-04 */
  .product__item__shop-detail-04 .product__item__shop-info {
    margin-top: calc(30 / 750 * 100vw);
  }
  .product__item__shop-detail-04 .product__item__shop__btn ul {
    display: block;
    margin-top: calc(30 / 750 * 100vw);
  }
  .product__item__shop-detail-04 .product__item__shop__btn li {
    width: 100%;
    text-align: center;
  }
  .product__item__shop-detail-04 .product__item__shop__btn li + li {
    margin-top: 1em;
  }
  
  /* product-special */
  .product-special {
    margin-top: calc(50 / 750 * 100vw);
  }
  .product-special__ttl {
    margin-bottom: 1em;
  }
  .product-special__ttl span {
    font-size: 133%;
  }
  .product-special-inner {
    display: none;
  }
  .product-special-list {
    display: block;
  }
  .product-special-item {
    width: 100%;
    margin-top: 0;
  }
  .product-special-item + .product-special-item {
    margin-top: 2em;
  }
  .product-special-item__ttl {
    margin-bottom: .5em;
    font-size: 100%;
  }
  .product-special-item__image {
    text-align: center;
  }
  .product-special-item__name {
    margin: .5em 0 1em;
  }
  .product-special-item__btn {
    display: block;
  }
  .product-special-item__btn a + a {
    margin-top: 1em;
  }

  .product-special__btn-open {
    display: block;
    width: 100%;
    line-height: 2.5;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .4);
  }
  .product-special__btn-open i:before {
    transform: rotate(90deg);
  }
  .product-special-item-txtbox + .product-special-item-txtbox {
    margin-top: 1em;
    border-top: 1px solid;
  }
  .js-accordion.open .product-special__btn-open i:before {
    transform: rotate(-90deg);
  }
  .js-accordion.open .product-special__btn-open .txt-open,
  .js-accordion:not(.open) .product-special__btn-open .txt-close {
    display: none;
  }
  
  .sec-product .content-bg {
    top: calc(210 / 750 * -100vw);
    left: calc(160 / 750 * -100vw);
    width: calc(600 / 750 * 100vw);
  }
}


/******************************************
 * sec-twitter
*****************************************/
.sec-twitter .content__ttl {
  width: calc(800px / 2);
  margin: 0 auto;
}
.twitter-content {
  width: 520px;
  margin: 80px auto 0;
}
.sec-twitter .content-bg-01 {
  top: -310px;
  right: -360px;
  z-index: -1;
}
.sec-twitter .content-bg-02 {
  top: -120px;
  left: -370px;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .sec-twitter .content__ttl {
    width: calc(340 / 750 * 100vw);
    margin: 0 auto;
  }
  .twitter-content {
    width: calc(520 / 750 * 100vw);
    min-width: 260px;
    margin: calc(60 / 750 * 100vw) auto 0;
  }
  .twitter-content iframe {
    width: inherit !important;
    min-width: inherit !important;
  }
  .sec-twitter .content-bg-01 {
    top: calc(220 / 750 * -100vw);
    right: calc(200 / 750 * -100vw);
    width: calc(750 / 750 * 100vw);
  }
  .sec-twitter .content-bg-02 {
    top: calc(100 / 750 * -100vw);
    left: calc(250 / 750 * -100vw);
    width: calc(700 / 750 * 100vw);
  }
}


/******************************************
 * modal-video
*****************************************/
.modal-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .8);
  z-index: 99999;
}
.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.modal-video-player-wrap-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal-video-player-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-video__btn-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 90px;
  z-index: 1;
}
.modal-video__btn-close img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.video-js .vjs-big-play-button {
  top: 50%;
  left: 50%;
  width: 3em;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border-width: 1px;
  transform: translate(-50%, -50%);
}
.vjs-resize-manager {
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .modal-video__btn-close {
    top: calc(40 / 750 * 100vw);
    right: calc(40 / 750 * 100vw);
    width: calc(75 / 750 * 100vw);
  }
}

.select-language {
  position: relative;
  text-align: center;
  padding: 1em;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  background: #000;
}

/******************************************
 * page-top
*****************************************/

/******************************************
 * opening enable
*****************************************/
body.page-top .page {
  opacity: 0;
}
body.page-top .page-bg,
body.page-top .page-bg-particle,
body.page-top .page-header,
body.page-top .pagetop-wrap,
body.page-top > footer {
  opacity: 0;
  transition: opacity 1s ease;
}
body.page-top.opening-end .page-bg,
body.page-top.opening-end .page-bg-particle,
body.page-top.opening-end .page-header,
body.page-top.opening-end .pagetop-wrap,
body.page-top.opening-end > footer {
  opacity: 1;
}
/*
body.page-top .page-footer .share-link {
  display: none;
}
body.page-top.opening-end .page-footer .share-link {
  display: block;
}
*/

/******************************************
 * page-news
*****************************************/
body.page-news .page-bg {
  background: url(../images/bg-page.jpg) no-repeat center center / cover;
}
body.page-news .page-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow:
    0 0 200px 0 #000 inset,
    0 0 200px 0 #000 inset,
    0 0 200px 0 #000 inset;
  background: rgba(0, 0, 0, .2);
}
body.page-news .page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* page-news-header */
.page-news-header {
  padding: 20px 0 80px;
}
.page-news__platform {
  width: 460px;
}
.page-news__logo {
  width: 200px;
  margin: -30px 0 0 auto;
}
.page-news__ttl {
  width: 280px;
  margin: 0 auto;
}

/* page-news-footer */
.page-news-footer {
  padding: 80px 0;
}
.page-news__btn-back {
  margin-bottom: 80px;
  text-align: center;
}
.page-news__btn-back .btn-01 {
  width: 180px;
  padding: 0 1.5em 0 0;
}
.page-news__btn-back .btn-01 .arrow-01 {
  transform: scale(-1, 1);
}

/* sec-news-detail */
.sec-news-detail {
  padding: 40px;
  background: rgba(0, 0, 0, .6);
}
.news-detail__date {
  color: #c80008;
}
.news-detail__ttl {
  padding: .25em 0 .75em;
  font-size: 20px;
  background: url(../images/line-ttl-news.png) no-repeat center bottom / contain;
}
.news-detail-content {
  padding-top: 40px;
  line-height: 2;
}
.news-detail__parts-section {
  margin-bottom: 2em;
}
.news-detail__parts-image {
  text-align: center;
  margin-bottom: 2em;
}
.news-detail__parts-title {
  display: inline-block;
  line-height: 1.6;
  padding: 0 .5em;
  margin-bottom: .5em;
  background: #8c1419;
}
.news-detail__parts-frame {
  padding: 20px 25px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: #000;
}
.news-detail__parts-btn .btn-01 {
  width: 180px;
}

@media screen and (max-width: 750px) {
  body.page-news .page-bg:before {
    box-shadow:
      0 0 5vw 0 #000 inset,
      0 0 5vw 0 #000 inset;
  }
  body.page-news .page-wrapper {
    padding: 0 3.2vw;
  }
  
  /* page-news-header */
  .page-news-header {
    padding: 0 0 calc(40 / 750 * 100vw);
  }
  .page-news__platform {
    width: calc(430 / 750 * 100vw);
    margin: 2vw -3.2vw 0;
  }
  .page-news__logo {
    width: calc(200 / 750 * 100vw);
    margin: calc(40 / 750 * -100vw) 0 calc(40 / 750 * 100vw) auto;
  }
  .page-news__ttl {
    width: calc(280 / 750 * 100vw);
    margin: 0 auto;
  }
  
  /* page-news-footer */
  .page-news-footer {
    padding: calc(80 / 750 * 100vw) 0;
  }
  .page-news__btn-back {
    margin-bottom: calc(80 / 750 * 100vw);
  }
  .page-news__btn-back .btn-01 {
    width: 100%;
    padding: 0 1.5em 0 0;
  }
  .page-news__btn-back .btn-01 .arrow-01 {
    transform: scale(-1, 1);
  }
  
  /* sec-news-detail */
  .sec-news-detail {
    padding: calc(40 / 750 * 100vw);
  }
  .news-detail__ttl {
    font-size: 120%;
  }
  .news-detail-content {
    padding-top: calc(40 / 750 * 100vw);
    line-height: 2;
  }
  .news-detail__parts-frame {
    padding: calc(20 / 750 * 100vw);
  }
  .news-detail__parts-btn .btn-01 {
    width: 100%;
  }
}




/******************************************
 * overwrite style 180926
*****************************************/
@media screen and (min-width: 751px) {
  .page-header {
    min-width: 1200px;
  }
}

/* sec-action */
.action__item:nth-child(1) {
  margin: 80px 0 0;
}
.action__item:nth-child(n+2) {
  margin: 90px 0 0;
}
.action__item-txtbox {
  padding-top: 40px;
  z-index: 2;
  pointer-events: none;
}
.action__item__image {
  position: relative;
  width: 680px;
  margin: 0;
}
.action__item:nth-child(odd) .action__item__image {
  margin-left: auto;
}
.action__item__image-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.action__item__image-wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(840 / 680 * 100%);
  height: calc(550 / 382 * 100%);
  background: url(../images/frame-video.png) no-repeat center center / contain;
  z-index: 1;
  pointer-events: none;
}
.action__item__image-wrap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sec-action-01 .content-bg {
  top: -200px;
  left: -220px;
}
.sec-action-02 .content-bg {
  top: -160px;
  left: 20px;
}

@media screen and (max-width: 750px) {
  .action__item:nth-child(1) {
    margin: 2rem 0 0;
  }
  .action__item:nth-child(n+2) {
    margin: 3rem 0 0;
  }
  .action__item-txtbox {
    position: relative;
    padding-top: 0;
  }
  .action__item__image {
    width: 100%;
  }
  .action__item:nth-child(odd) .action__item__image {
    margin-left: auto;
  }
  .sec-action-01 .content-bg {
    width: calc(500 / 750 * 100vw);
    left: calc(150 / 750 * -100vw);
    top: calc(220 / 750 * -100vw);
  }
  .sec-action-02 {
    margin-bottom: calc(180 / 750 * 100vw);
  }
  .sec-action-02 .content-bg {
    width: calc(350 / 750 * 100vw);
    left: calc(20 / 750 * -100vw);
    top: calc(150 / 750 * -100vw);
  }
}


/* sec-new */
.new__item__voice {
  margin-top: 2em;
  padding: 25px;
  background: rgba(255, 255, 255, .2);
}
.new__item__voice ul {
  display: flex;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, .8);
}
.new__item__voice dl {
  display: flex;
  padding: 1em 0;
  justify-content: center;
}
.new__item__voice dt {
  width: 50%;
  padding: 0 1em;
  font-weight: bold;
  color: #c80008;
  text-align: right;
}
.new__item__voice dd {
  width: 50%;
  padding: 0 1em;
  color: #fff;
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, .4);
}

@media screen and (min-width: 751px) {
  .sec-new {
    margin-bottom: 190px;
  }
  .new__item:last-child {
    margin-top: 130px;
  }
  .new__item:last-child .new__item-txtbox {
    width: 100%;
  }
  .new__item__voice li {
    width: 33.33%;
  }
  .new__item__voice li:nth-child(6n),
  .new__item__voice li:nth-child(6n+4),
  .new__item__voice li:nth-child(6n+5) {
    background: rgba(255, 255, 255, .1);
  }
}

@media screen and (max-width: 750px) {
  .new__item:last-child {
    margin-top: 3em !important;
  }
  .new__item__voice {
    padding: calc(20 / 750 * 100vw);
  }
  .new__item__voice li {
    width: 50%;
    font-size: 80%;
  }
  .new__item__voice li:nth-child(4n),
  .new__item__voice li:nth-child(4n+3) {
    background: rgba(255, 255, 255, .1);
  }
  .new__item__voice dl {
    width: 90%;
  }
  .new__item__voice li:nth-child(odd) dl {
    margin-left: auto;
    margin-right: 0;
  }
  .new__item__voice dt {
    width: 55%;
    padding: 0 .5em;
  }
  .new__item__voice dd {
    width: 45%;
    padding: 0 .5em;
  }
}


/* sec-character */
.sec-character {
  padding: 0;
  margin-bottom: 230px;
}
.sec-character .content__ttl {
  text-align: center;
}
.character-thumb {
  display: flex;
  justify-content: center;
  margin: 80px 0 20px;
}
.character-thumb__item {
  position: relative;
  cursor: pointer;
}
.character-thumb__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(130/ 82 * 100%);
  height: calc(130/ 82 * 100%);
  transform: translate(-50%, -50%);
  background: url(../images/thumb-character-frame.png) no-repeat center top / 100% auto;
}
.character-thumb__item.current:before {
  background-position-y: bottom;
}
.character-thumb__item + .character-thumb__item {
  margin-left: 50px;
}
.character-slider-wrap {
  position: relative;
}
.character-slider-control-arrows {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  pointer-events: none;
}
.character-slider-control-arrows :focus {
  outline: none;
}
.character-slider-control-arrows .slick-arrow {
  position: absolute;
  top: 250px;
  width: 90px;
  height: 90px;
  text-indent: 200%;
  border: none;
  background: none;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: auto;
}
.character-slider-control-arrows .slick-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/btn-arrow-01.png) no-repeat center center / contain;
}
.character-slider-control-arrows .slick-arrow.slick-prev {
  left: 0;
}
.character-slider-control-arrows .slick-arrow.slick-next {
  right: 0;
}
.character-slider-control-arrows .slick-arrow.slick-next:before {
  transform: scale(-1, 1);
}
.character__item-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 90px;
}
.character__item {
  position: relative;
  width: 100%;
}
.character__item__name {
  position: absolute;
}
.character__item__image-01 {
  position: absolute;
  z-index: -1;
}
.character__item__image-02 {
  margin: 0 -60px;
}
.character__item__txt {
  position: relative;
  max-width: 680px;
  margin-top: -2em;
  line-height: 2;
}

@media screen and (min-width: 751px) {
  .character__item-01 .character__item__name {
    top: 80px;
    right: 0;
  }
  .character__item-01 .character__item__image-01 {
    top: 0;
    right: 0;
  }
  .character__item-02 .character__item__name {
    top: 80px;
    right: 0;
  }
  .character__item-02 .character__item__image-01 {
    top: 0;
    right: -100px;
  }
  .character__item-03 {
    width: 46%;
    padding-top: 360px;
  }
  .character__item-03 .character__item__name {
    top: 80px;
    left: 150px;
  }
  .character__item-03 .character__item__image-01 {
    top: 0;
    right: 0;
  }
  .character__item-04 {
    width: 46%;
    padding-top: 360px;
  }
  .character__item-04 .character__item__name {
    top: 80px;
    right: 150px;
  }
  .character__item-04 .character__item__image-01 {
    top: 0;
    left: 50px;
  }
  .character__item-05 .character__item__name {
    top: 80px;
    right: 0;
  }
  .character__item-05 .character__item__image-01 {
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 750px) {
  .sec-character {
    margin-bottom: calc(190 / 750 * 100vw);
  }
  .sec-character .content__ttl img {
    width: calc(600 / 750 * 100vw);
  }
  .character-thumb {
    margin: calc(50 / 750 * 100vw) 0 calc(20 / 750 * 100vw);
  }
  .character-thumb__item {
    width: calc(80 / 750 * 100vw);
  }
  .character-thumb__item + .character-thumb__item {
    margin-left: calc(50 / 750 * 100vw);
  }
  .character-slider-wrap {
    position: relative;
  }
  .character-slider-control-arrows {
    display: none;
  }
  .character__item-wrap {
    padding: 0 1em;
  }
  .character__item {
    padding-top: calc(520 / 750 * 100vw);
  }
  .character__item__name {
    position: absolute;
  }
  .character__item__image-01 {
    position: absolute;
    z-index: -1;
  }
  .character__item__image-02 {
    margin: 0 -2em;
  }
  .character__item__txt {
    max-width: 100%;
  }
  .character__item-01 .character__item__name {
    width: calc(60 / 750 * 100vw);
    top: calc(40 / 750 * 100vw);
    right:  calc(120 / 750 * 100vw);
  }
  .character__item-01 .character__item__image-01 {
    width: calc(650 / 750 * 100vw);
    top: 0;
    left: calc(80 / 750 * -100vw);
  }
  .character__item-02 .character__item__name {
    width: calc(60 / 750 * 100vw);
    top: calc(40 / 750 * 100vw);
    right:  calc(120 / 750 * 100vw);
  }
  .character__item-02 .character__item__image-01 {
    width: calc(650 / 750 * 100vw);
    top: 0;
    left: calc(30 / 750 * 100vw);
  }
  .character__item-03 {
    width: 47.5%;
  }
  .character__item-03 .character__item__name {
    width: calc(60 / 750 * 100vw);
    top: calc(40 / 750 * 100vw);
    left:  calc(20 / 750 * 100vw);
  }
  .character__item-03 .character__item__image-01 {
    width: calc(300 / 750 * 100vw);
    top: 0;
    right: calc(60 / 750 * -100vw);
  }
  .character__item-04 {
    width: 47.5%;
  }
  .character__item-04 .character__item__name {
    width: calc(60 / 750 * 100vw);
    top: calc(40 / 750 * 100vw);
    right:  calc(20 / 750 * 100vw);
  }
  .character__item-04 .character__item__image-01 {
    width: calc(200 / 750 * 100vw);
    top: 0;
    left: calc(20 / 750 * 100vw);
  }
  .character__item-05 .character__item__name {
    width: calc(60 / 750 * 100vw);
    top: calc(40 / 750 * 100vw);
    right:  calc(120 / 750 * 100vw);
  }
  .character__item-05 .character__item__image-01 {
    width: calc(630 / 750 * 100vw);
    top: 0;
    left: calc(50 / 750 * -100vw);
  }
}


/******************************************
 * overwrite style 181005
*****************************************/
.sec-movie {
  position: relative;
}
.movie__ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  letter-spacing: .1em;
  pointer-events: none;
}
.about__btn-play {
  position: relative;
  z-index: 0;
}
.about__btn-play a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about__btn-play a .icon-play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec-about .content-bg:after {
  content: none;
}

@media screen and (min-width: 751px) {
  .movie-wrap {
    display: flex;
    justify-content: space-between;
    margin: 60px 0 0;
  }
  .sec-movie {
    width: 50%;
  }
  .movie__ttl {
    font-size: 24px;
  }
  .about__btn-play img {
    margin: 0 -75px;
    max-width: 710px;
  }
}

@media screen and (max-width: 750px) {
  .movie-wrap {
    margin-top: calc(40 / 750 * 100vw);
  }
  .movie__ttl {
    font-size: 120%;
  }
  .about__btn-play img {
    max-width: calc(100% + 6rem);
    margin: 0 -3rem;
  }
  .sec-about .content-bg {
    top: calc(380 / 750 * 100vw)
  }
}

/******************************************
 * overwrite style 181105
*****************************************/
.product-operating #accordion {
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 30px;
}
.product-operating #accordion dt {
  cursor:pointer;
  background: url("../images/arow01.png");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding: 20px 40px 20px 15px;
  font-weight: bold;
  text-align: center;
}
.product-operating #accordion dt.active{
  background: url("../images/arow02.png");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.product-operating #accordion dd {
  display: none;
}
.product-operating #accordion table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}
.product-operating #accordion table th,
.product-operating #accordion table td {
  border: solid 1px #626262;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5em;
  padding: 10px;
  font-size: 85%;
}
.product-operating #accordion table th {
  background: #242424;
  font-size: 90%;
}
.product-operating #accordion table td {
  background: #000;
}

@media screen and (max-width: 750px) {
  .product-operating #accordion {
    border: none;
    padding: 0;
  }
  .product-operating #accordion dt {
    border: 1px solid #fff;
  }
  .product-operating #accordion dt, 
  .product-operating #accordion dt.active{
    background-position: right 10px center;
  }
  .product-operating #accordion table th {
    padding: 10px 5px;
  }
}

/******************************************
 * overwrite style 181205
*****************************************/
.movie-wrap {
  display: block;
  position: relative;
  z-index: 1;
}
.movie-slider-wrap :focus {
  outline: none;
}
.sec-movie {
  width: auto;
}
.movie-slider-wrap .slick-list {
  overflow: visible;
}
.movie-slider-wrap .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.movie-slider-wrap .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}
.movie-slider-control .slick-arrow {
  position: absolute;
  top: 50%;
  width: 90px;
  height: 90px;
  text-indent: 200%;
  border: none;
  background: none;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(-50%);
}
.movie-slider-control .slick-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/btn-arrow-01.png) no-repeat center center / contain;
}
.movie-slider-control .slick-arrow.slick-prev {
  left: -90px;
}
.movie-slider-control .slick-arrow.slick-next {
  right: -90px;
}
.movie-slider-control .slick-arrow.slick-next:before {
  transform: scale(-1, 1);
}
.movie-slider-control-dots {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -20px;
}
.movie-slider-control-dots ul {
  display: flex;
  justify-content: center;
}
.movie-slider-control-dots li {
  margin: 0 10px;
}
.movie-slider-control-dots button {
  position: relative;
  width: 16px;
  height: 16px;
  padding: 0;
  text-indent: 200%;
  line-height: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  overflow: hidden;
}
.movie-slider-control-dots button:before {
  content: "";
  position: absolute;
  display: block;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 50%;
  background: #fff;
}
.movie-slider-control-dots .slick-active button,
.movie-slider-control-dots button:hover {
  border-color: #c80008;
}
.movie-slider-control-dots .slick-active button:before,
.movie-slider-control-dots button:hover:before {
  background: #c80008;
}

@media screen and (min-width: 751px) and (max-width: 1320px) {
  .movie-slider-control .slick-arrow.slick-prev {
    left: 0;
  }
  .movie-slider-control .slick-arrow.slick-next {
    right: 0;
  }
}

@media screen and (max-width: 750px) {
  .movie-slider-control .slick-arrow {
    width: calc(100 / 750 * 100vw);
    height: calc(100 / 750 * 100vw);
  }
  .movie-slider-control .slick-arrow.slick-prev {
    left: 0;
  }
  .movie-slider-control .slick-arrow.slick-next {
    right: 0;
  }
  .movie-slider-control-dots {
    margin-top: calc(-20 / 750 * 100vw);
  }
  .movie-slider-control-dots li {
    margin: 0 1.6vw;
  }
  .movie-slider-control-dots button {
    width: calc(24 / 750 * 100vw);
    height: calc(24 / 750 * 100vw);
  }
  .movie-slider-control-dots button:before {
    top: calc(4 / 750 * 100vw);
    left: calc(4 / 750 * 100vw);
    right: calc(4 / 750 * 100vw);
    bottom: calc(4 / 750 * 100vw);
  }
}

/******************************************
 * overwrite style 181212
*****************************************/
.product-textlink {
  display: flex;
  justify-content: space-between;
}
.product-textlink-block {
  border: 1px solid;
  background: rgba(0, 0, 0, 0.7);
  padding: .5em 2em;
}
.product-textlink-block.link01 {
  width: 74%;
  padding: .5em 4em;
}
.product-textlink-block ul {
  display: flex;
  justify-content: space-between;
}
.product-textlink-block ul li {
  padding-right: 20px;
}
.product-textlink-block a {
  display: block;
  position: relative;
}
.product-textlink-block a:hover {
  color: #d80009;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-textlink-block a span {
  -webkit-transform: rotate(135deg); */
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: -20px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  display: block;
}
.product-textlink-block a:hover span {
  border-top: solid 2px #d80009;
  border-left: solid 2px #d80009;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 750px) {
  .product-textlink {
    display: block;
  }
  .product-textlink-block {
    padding: .5em 1em;
  }
  .product-textlink-block + .product-textlink-block {
    margin-top: 1rem;
  }
  .product-textlink-block.link01 {
    width: 100%;
    padding: .5em 1em;
  }
  .product-textlink-block ul {
    display: block;
  }
  .product-textlink-block ul li {
    padding-right: 0;
    margin-bottom: .3rem;
    padding-top: .3rem;
  }
  .product-textlink-block a span {
    right: 10px;
    top: 6px;
    width: 8px;
    height: 8px;
  }
}
.--price-ttl{
  position: relative;
  display: inline-block;
}
.product-table-inner .--price-ttl{
  display: block;
}
@media screen and (max-width:750px){
  .--price-ttl{
    display: block;
  }
  .product__item__shop__price .--price-ttl,
  .product__item__shop__price__note  .--price-ttl {
    text-align: right;
    padding-right: 1em;
  }
  .--price-ttl.-no-em {
    padding-right: .5em;
  }
}
@media screen and (min-width:751px){
  .--price-ttl {
    text-indent: 4.3em;
 }
}
.--price-ttl:before{
  position: absolute;
  content: "希望小売価格";
  top: 0;
  left: .5em;
  font-size: .8em;
  color: #fff;
  text-indent: 0;
}
@media screen and (max-width:750px){
  .product-table-inner .--price-ttl:before{
    top: -1.5em;
    left: 0;
  }
}
@media screen and (min-width:751px){
  .product-table-inner .--price-ttl:before{
    line-height: 2.3;
  }
}
.product__item__shop__price .--price-ttl:before{
  left: -.5em;
}
@media screen and (max-width:750px){
  .product__item__shop__price .--price-ttl:before{
    left: 1em;
  }
  .product__item__shop__price .--price-ttl.-no-em:before{
    left: .5em;
  }
}
.product__item__shop__price__note .--price-ttl:before{
  left: -.5em;
  line-height: 2.2;
}
@media screen and (max-width:750px){
  .product__item__shop__price__note .--price-ttl:before{
    left: 3.5em;
  }
  .hide-sp{
    display: none;
  }
}