@charset "UTF-8";
/*
 * Boxer v3.3.0 - 2015-04-04
 * A jQuery plugin for displaying images, videos or content in a modal overlay. Part of the Formstone Library.
 * http://classic.formstone.it/boxer/
 *
 * Copyright 2015 Ben Plum; MIT Licensed
 */
.boxer-lock {
  overflow: hidden !important;
}

#boxer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .25s linear;
  opacity: 0;
  background: #000; 

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.boxer-open #boxer-overlay {
  opacity: .75;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}

#boxer {
  position: absolute;
  z-index: 101;
  right: 0;
  left: 0;
  height: auto;
  margin: 0 auto;
  padding: 10px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, .1); 

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#boxer * {
  transition: none;
}

#boxer,#boxer * {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

#boxer,#boxer *,#boxer *:before,#boxer *:after {
  box-sizing: border-box;
}

#boxer.fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
}

#boxer.inline {
  padding: 30px;
}

#boxer.animating {
  transition: height .25s ease, width .25s ease, opacity .25s linear, top .25s ease;
}

.boxer-open #boxer {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#boxer .boxer-close {
  position: absolute;
  z-index: 105;
  top: 0;
  right: -104px;
  display: block;
  overflow: hidden;
  width: 64px;
  height: 85px;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  text-indent: 200%;
}

#boxer .boxer-close:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  content: url(../img/prod/icon_close.png);
  transition: color .15s linear;
  text-align: center;
  text-indent: 0;
  color: #333;
}

#boxer .boxer-loading {
  position: absolute;
  z-index: 105;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 50px;
  margin: auto;
  transition: opacity .25s linear;
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#boxer .boxer-loading:before,#boxer .boxer-loading:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 110%;
}

#boxer .boxer-loading:before {
  border: 5px solid rgba(51, 51, 51, .25);
}

#boxer .boxer-loading:after {
  animation: boxer-loading-spin .75s linear infinite;
  border: 5px solid transparent;
  border-top-color: #333;
}

#boxer.loading .boxer-loading {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@keyframes boxer-loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#boxer .boxer-container {
  position: relative;
  z-index: 103;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#boxer .boxer-content {
  overflow: hidden;
  width: 100%;
  padding: 0;
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#boxer.inline .boxer-content,#boxer.iframe .boxer-content {
  width: auto;
}

#boxer .boxer-image {
  line-height: 0;
  float: left;
}

#boxer .boxer-video {
  width: 100%;
  height: 100%;
}

#boxer .boxer-iframe {
  float: left;
  overflow: auto;
  width: 100%;
  height: 100%;
  border: none;
}

#boxer .boxer-meta {
  clear: both;
}

#boxer .boxer-control {
  position: absolute;
  top: 0;
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
  transition: opacity .15s linear;
  white-space: nowrap;
  text-indent: 200%;
  opacity: 1;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .25); 

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#boxer .boxer-control:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  content: "";
}

#boxer .boxer-control.previous {
  left: 20px;
}

#boxer .boxer-control.previous:before {
  margin-left: 14px;
  border-top: 8px solid transparent;
  border-right: 10.4px solid #333;
  border-bottom: 8px solid transparent;
}

#boxer .boxer-control.next {
  right: 20px;
}

#boxer .boxer-control.next:before {
  margin-right: 14px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10.4px solid #333;
}

#boxer .boxer-control.disabled {
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.no-opacity #boxer .boxer-control {
  text-indent: -999px;
}

.no-touch #boxer .boxer-control {
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.no-touch #boxer:hover .boxer-control {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.no-touch #boxer:hover .boxer-control.disabled {
  cursor: default !important;
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#boxer .boxer-position {
  font-size: 12px;
  margin: 0;
  padding: 15px 15px 0 15px;
  color: #999;
}

#boxer .boxer-caption {
  display: none;
}

#boxer .boxer-caption.gallery p {
  padding-top: 0;
}

#boxer .boxer-error {
  width: 250px;
}

#boxer .boxer-error p {
  font-size: 14px;
  margin: 0;
  padding: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #900;
}

#boxer.mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 0 0;
  border-radius: 0;
  background: #111;
}

#boxer.mobile .boxer-close,#boxer.mobile .boxer-close:hover {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: #111;
}

#boxer.mobile .boxer-close:before,#boxer.mobile .boxer-close:hover:before {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  color: #ccc;
}

#boxer.mobile .boxer-loading:before {
  border-color: rgba(153, 153, 153, .25);
}

#boxer.mobile .boxer-loading:after {
  border-top-color: #999;
}

#boxer.mobile .boxer-container {
  background: #111;
}

#boxer.mobile .boxer-content {
  background-color: #111;
}

#boxer.mobile .boxer-control {
  width: 50px;
  height: 100%;
  opacity: 1;
  border-radius: 0;
  background: #111;
  box-shadow: none; 

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#boxer.mobile .boxer-control.previous {
  left: 0;
}

#boxer.mobile .boxer-control.previous:before {
  margin-left: 19px;
  border-right-color: #eee;
}

#boxer.mobile .boxer-control.next {
  right: 0;
}

#boxer.mobile .boxer-control.next:before {
  margin-right: 19px;
  border-left-color: #eee;
}

.no-touch #boxer.mobile .boxer-control,.no-touch #boxer.mobile:hover .boxer-control {
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.no-touch #boxer.mobile .boxer-control.disabled,.no-touch #boxer.mobile:hover .boxer-control.disabled {
  cursor: default !important;
  opacity: 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#boxer.mobile .boxer-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 65px;
  background-color: #111;
}

#boxer.mobile .boxer-position {
  font-size: 12px;
  margin: 0;
  padding: 0 15px 0 0;
  color: #999;
}

#boxer.mobile .boxer-caption p {
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #eee;
}

#boxer.mobile .boxer-image {
  transition: none !important;
  transform: translate(0, 0);
}

#boxer.mobile.animated .boxer-image {
  transition: transform .25s ease-out !important;
}

#boxer.mobile.inline .boxer-content,#boxer.mobile.iframe .boxer-content {
  overflow-x: hidden;
  overflow-y: scroll;

  -webkit-overflow-scrolling: touch;
}

/* modal
========================================== */
#boxer.loading .boxer-container {
  background: #fff url(../images/boxer/jquery.fs.boxer-loading.gif) no-repeat center;
}

#boxer.mobile.loading .boxer-container {
  background: #000 url(../images/boxer/jquery.fs.boxer-loading-dark.gif) no-repeat center;
}

#boxer-overlay {
  background: #fff;
}

/*---------------------------------------------------------------------------------------------------------
 TITLE:
 PAGE: products.html
---------------------------------------------------------------------------------------------------------*/
/* PRODUCTS -----------------------------------------------------------------------------------------*/
/* title
========================================== */
.pageHeader {
  width: 100%;
  height: 250px;
  margin: 40px 0 0;
  text-align: center;
  background: url(../img/bg_page_header.png) center center no-repeat;
}

.header_ttl {
  padding-top: 20px;
}

/* PRODUCT ----------------------------------------------------------------------------------------------*/
/* DLbtn */
.dlBtn {
  position: relative;
  overflow: hidden; 
  width: 510px;
}

.dlBtn li {
  float: left; 
  width: 245px;
  margin-bottom: 20px;
}

.dlBtn li:nth-child(even) {
  margin-left: 20px;
}

.buyBtn li a {
  transition: opacity .3s ease-out;
}

.buyBtn li a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.product {
  position: relative;
  width: 100%;
  margin: 80px auto 0;
  padding: 0 0 220px;
}

.p-box {
  width: 1160px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, .8);
}

.p-box:before {
  display: block;
  width: 1160px;
  height: 77px;
  content: "";
  background: url(../img/index/product/f01_top.png) no-repeat left top;
}

.p-box:after {
  display: block;
  width: 1160px;
  height: 77px;
  content: "";
  background: url(../img/index/product/f01_bot.png) no-repeat left top;
}

.productInner {
  padding: 0 60px;
  background: url(../img/index/product/f01_mid.png) repeat-y left top;
}

/* p-box02 */
.p-box02 {
  width: 1160px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, .8);
}

.p-box02:before {
  display: block;
  width: 1160px;
  height: 77px;
  content: "";
  background: url(../img/index/product/f03_top.png) no-repeat left top;
}

.p-box02:after {
  display: block;
  width: 1160px;
  height: 77px;
  content: "";
  background: url(../img/index/product/f03_bot.png) no-repeat left top;
}

.productInner02 {
  padding: 0 60px;
  background: url(../img/index/product/f03_mid.png) repeat-y left top;
}

.productImg {
  border: 1px solid #ccc;
}

.productImg img {
  width: 100%;
  vertical-align: bottom;
}

.pronoTxt03 {
  font-size: 16px;
  line-height: 1;
  color: #000;
}

.product h2 {
  line-height: 0;
  margin: -20px 0 0;
}

/* PRODUCT 01 */
.productBox01 {
  width: 100%;
  margin: 40px 0 0;
}

.productBox01 .p01_txt {
  margin: 30px 0 40px;
}

.productBox01 .p01_img {
  margin: 0 0 40px;
}

.productBox01 dl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 18px;
  color: #000;
}

.productBox01 dt,.productBox01 dd {
  display: inline-block;
  margin: 0 1em 0 0;
}

.p01_price dt {
  font-size: 18px;
}

.p01_price dd {
  font-weight: normal;
}

.productBox01 ul {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  margin: 40px 0 0;
  color: #b90b50;
}

.productBox01 .buyBtn {
  width: 100%;
  margin: 38px 0 0;
  text-align: center;
  letter-spacing: -.4em;
}

.productBox01 .buyBtn p {
  display: inline-block;
  margin: 0 0 0 20px;
  letter-spacing: normal;
}

.productBox01 .buyBtn p:first-child {
  margin: 0;
}

.productBox01 .buyBtn p a {
  transition: opacity .3s ease-out;
}

.productBox01 .buyBtn p a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* PRODUCT 02 */
.productBox02 {
  width: 100%;
  margin: 40px 0 0;
}

.productBox02 h2 {
  margin: -20px 0 40px;
}

.productBox02 .p02_img {
  float: left;
  width: 598px;
}

.productBox02 .p02_txt {
  margin: 5px 0 0 638px;
}

.productBox02 dl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 18px;
  color: #000;
}

.productBox02 dt,.productBox02 dd {
  display: inline-block;
  margin: 0 1em 0 0;
}

.productBox02 ul {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  margin: 40px 0 0;
  color: #b90b50;
}

.productBox02 .buyBtn {
  width: 100%;
  margin: 38px 0 0;
}

.productBox02 .buyBtn p a {
  transition: opacity .3s ease-out;
}

.productBox02 .buyBtn p a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* PRODUCT 02 */
.productBox02 {
  width: 100%;
  margin: 40px 0 0;
}

.productBox02 h2 {
  margin: -20px 0 40px;
}

.productBox02 .p02_img {
  float: left;
  width: 598px;
}

.productBox02 .p02_txt {
  margin: 5px 0 0 638px;
}

.productBox02 .p02_box {
  overflow: hidden;
}

.productBox02 dl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 18px;
  color: #000;
}

.productBox02 dt,.productBox02 dd {
  display: inline-block;
  margin: 0 1em 0 0;
}

.productBox02 dt {
  font-size: 18px;
}

.productBox02 dd {
  font-weight: normal;
}

.p02_price {
  padding: 0 0 30px;
}

.p02_price dt {
  display: block;
  margin: 0 0 15px;
}

.p02_price dd {
  margin: 0 0 50px;
}

.p02_price dd:last-child {
  margin: 0;
}

.productBox02 ul {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  margin: 40px 0 0;
  color: #b90b50;
}

.productBox02 .buyBtn {
  width: 100%;
  margin: 38px 0 0;
}

.productBox02 .buyBtn p a {
  transition: opacity .3s ease-out;
}

.productBox02 .buyBtn p a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* PRODUCT 03 */
.productBox03 {
  width: 100%;
  margin: 40px 0 0;
}

.productBox03 h2 {
  margin: -20px 0 40px;
}

.productBox03 .p03_img {
  float: left;
  width: 340px;
}

.productBox03 .p03_txt {
  margin: 0 0 0 380px;
}

.productBox03 dl {
  font-size: 16px;
  line-height: 1;
  margin: 0 0 18px;
  color: #000;
}

.productBox03 dt {
  font-weight: bold;
}

.productBox03 dt,.productBox03 dd {
  display: inline-block;
  margin: 0 1em 0 0;
}

.productBox03 .buyBtn {
  width: 100%;
  margin: 38px 0 0;
}

.productBox03 .buyBtn p a {
  transition: opacity .3s ease-out;
}

.productBox03 .buyBtn p a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* PRODUCT 04 */
.productBox04 {
  width: 100%;
  margin: 40px 0 0;
}

.productBox04 h2 {
  margin: -20px 0 40px;
}

/* TOKUTEN CARD */
.p04_box {
  width: 100%;
  text-align: center;
  letter-spacing: -.4em;
}

.p04_box > div {
  display: inline-block;
  width: 320px;
  margin: 0 40px 40px 0;
  vertical-align: top;
  letter-spacing: normal;
}

.p04_box > div:nth-child(3n+3) {
  margin: 0 0 40px 0;
}

.topBox p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  display: table-cell;
  width: 320px;
  height: 84px;
  text-align: center;
  vertical-align: middle;
  color: #b90b50;
  background: url(../img/index/product/f02_mid.png) repeat-y;
}

.topBox:before {
  display: block;
  width: 320px;
  height: 8px;
  content: "";
  background: url(../img/index/product/f02_top.png) no-repeat left top;
}

.topBox:after {
  display: block;
  width: 320px;
  height: 8px;
  content: "";
  background: url(../img/index/product/f02_bot.png) no-repeat left top;
}

.midBox {
  line-height: 0;
  background: url(../img/index/product/f02_mid.png) repeat-y;
}

.botBox p {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  display: table-cell;
  width: 320px;
  height: 84px;
  text-align: center;
  vertical-align: middle;
  color: #000;
  background: url(../img/index/product/f02_mid.png) repeat-y;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.botBox:before {
  display: block;
  width: 320px;
  height: 8px;
  content: "";
  background: url(../img/index/product/f02_top.png) no-repeat left top;
}

.botBox:after {
  display: block;
  width: 320px;
  height: 8px;
  content: "";
  background: url(../img/index/product/f02_bot.png) no-repeat left top;
}

.productBox04 .buyBtn {
  width: 100%;
  margin: 20px 0 0;
}

.productBox04 .buyBtn p a {
  transition: opacity .3s ease-out;
}

.productBox04 .buyBtn p a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* PRODUCT 05 */
.productBox05 {
  width: 100%;
  margin: 40px 0 0;
}

.productBox05 h2 {
  margin: -20px 0 40px;
}

.productBox05 .p05_img {
  float: left;
  width: 340px;
}

.productBox05 .p05_txt {
  margin: 0 0 0 380px;
}

.p05_txt h3 {
  margin: 0 0 40px;
}

.release {
  line-height: 0;
  margin: 0 0 20px;
}

.product_detail,.product_detail02 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}

.product_detail > dt,.product_detail02 > dt,.product_detail > dd,.product_detail02 > dd {
  display: inline-block;
  vertical-align: top;
}

.product_detail dd dt {
  color: #b90b50;
}

.p05_txt hr {
  margin: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, .4);
}

/* PRODUCT 06 SoundTrack */
.productBox06 {
  width: 100%;
  margin: 40px 0 0;
}

.productBox06 h2 {
  margin: -20px 0 40px;
}

.productBox06 .p06_box {
  overflow: hidden;
}

.productBox06 .p06_img {
  float: left;
  width: 470px;
}

.productBox06 .p06_txt {
  margin: 0 0 0 510px;
}

.productBox06 .p06_txt2 {
  line-height: 2;
  margin: 0 0 30px;
}

.productBox06 dl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 18px;
  color: #000;
}

.productBox06 dt,.productBox06 dd {
  display: inline-block;
  margin: 0 1em 0 0;
}

.productBox06 dt {
  font-size: 18px;
}

.productBox06 dd {
  font-weight: normal;
}

.p06_price {
  padding: 10px 0 30px;
}

.p06_price dt {
  display: block;
  margin: 0 0 10px;
}

.p06_price dd {
  margin: 0 0 25px;
}

.p06_price dd:last-child {
  margin: 0;
}

.productBox06 .buyBtn {
  width: 100%;
  margin: 0;
}

.productBox06 .buyBtn p a {
  transition: opacity .3s ease-out;
}

.productBox06 .buyBtn p a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* profile */
.prof {
  position: relative;
  width: 960px;
  margin: 50px auto 0;
}

.prof:before {
  display: block;
  width: 960px;
  height: 93px;
  content: "";
  background: url(../img/prod/prof_top.png) no-repeat left top;
}

.prof:after {
  display: block;
  width: 960px;
  height: 93px;
  content: "";
  background: url(../img/prod/prof_bot.png) no-repeat left top;
}

.profInner {
  padding: 0 60px;
  background: url(../img/prod/prof_mid.png) repeat-y left top;
}

.prof_ttl {
  z-index: 2;
}

.prof h3 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  text-align: center;
}

.prof_box {
  overflow: hidden;
}

.prof_img {
  float: left;
  width: 300px;
}

.prof_txt {
  position: relative;
  margin: 0 0 0 340px;
}

.prof_tw {
  position: absolute;
  top: 0;
  right: 0;
}

.prof_txt p {
  line-height: 2;
  margin-top: 25px;
}

/* PRODUCT 11 bonus */
.productBox11 h2 {
  margin: -20px 0 40px;
}

.p11_txt {
  line-height: 2;
  margin: 0 0 30px;
}

.p11Box {
  margin: 0 0 40px;
  border: #ccc 1px solid;
  padding: 20px;
  background: #fff;
}

.p11Box_inline {
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 30px;
}

.p11Box_txt {
  line-height: 1.8;
  color: #b90b50;
}

.p11List li {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: #b90b50;
}
.p11List li small {
  color: #333;
}

.p11List_inline {
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 5px;
}

.p11List_inline li {
  margin: 0 20px 5px 1em;
  text-indent: -1em;
}

.p11List_ttl {
  margin: 0 0 10px;
}

.p11ImgBox {
  box-sizing: border-box;
  padding: 30px 40px;
  text-align: center;
  border: 1px solid #ccc;
  background: #fff;
}

.p11ImgBox.is-single {
  width: 357px;
  padding-right: 20px;
  padding-left: 20px;
}

.p11ImgBox.is-double {
  width: 642px;
}

.p11ImgBox:nth-child(-n+2) {
  margin: 0 40px 0 0;
}

.p11ImgList {
  margin: 0 0 35px;
}

.p11ImgList_inline {
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 35px;

  -ms-flex-pack: justify;

      justify-content: space-between;
}

.p11ImgList_inline li {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.p11ImgList_img {
  margin: 15px 0 0;
}

.p11AttnList {
  line-height: 2;
}

.p11AttnList li:before {
  content: "※";
}

.prodBonusList {
  overflow: hidden;
}

.prodBonusBox_ttl {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 18px; 
  color: #b90b50;
}

.prodBonusBox dt {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  display: block;
  margin: 0;
  color: #b90b50;
}

.prodBonusBox dd {
  font-weight: normal;
  line-height: 2;
  color: #000;
}

.prodBonusImgBox {
  position: relative;
  box-sizing: border-box;
  height: 260px;
  margin: 0 !important;
  padding: 30px 370px 30px 40px;
  border: 1px solid #ccc;
  background: #fff;
}
.prodBonusImgBox li {
  font-weight: normal;
  line-height: 2;
  color: #000;
}

.prodBonusImgBox_outer {
  position: relative;
  margin: 0 0 20px;
}

.prodBonusImgBox {
  display: -ms-flexbox;
  display: flex;
}
.prodBonusImgBox li:first-child {
  width: 450px;
}

.prodBonusImgBox_link {
  line-height: 0; 
  position: absolute;
  display: block;
}
.prodBonusImgBox_link.is-01 {
  top: 50%;
  right: 245px;
  transform: translate(0, -50%);
}
.prodBonusImgBox_link.is-02 {
  top: -20px;
  right: 0;
  padding: 0 75px 0 0;
}

.prodBonusImgBox_img.is-01 img {
  width: 280px;
}

.prodBonus_zoomIcon {
  position: absolute;
  top: 0;
  right: 0;
}
.prodBonus_zoomIcon.is-02 {
  top: 20px;
  right: 0;
}

/* zoom
========================================== */
.midBox {
  position: relative;
}

.zoomIcon {
  position: absolute;
  top: 0;
  right: 4px;
}

/*-------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 374px) {
  .sps-none {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  /* DLbtn */
  .dlBtn {
    width: 100%;
    margin: 38px 0 0;
    text-align: center;
    letter-spacing: -.4em;
  }
  .dlBtn li {
    display: inline-block;
    width: 62.5vw; 
    margin: 0 0 20px 0;
    letter-spacing: normal;
  }
  .dlBtn li:nth-child(1) {
    margin-top: 20px;
  }
  .dlBtn li:nth-child(even) {
    margin-left: 0;
  }
  .dlBtn li img {
    width: 100%;
  }
  .sp-none {
    display: none;
  }
  .pageHeader {
    width: 100%;
    height: 38.28125vw;
    margin: 0 0 6.25vw;
    padding: 0;
    text-align: center;
    background: url(../img/sp/bg_page_header.png) center top repeat;
    background-size: cover;
  }
  .header_ttl {
    width: 42.1875vw;
    margin: 0 auto;
    padding-top: 5.625vw;
  }
  .product {
    margin: 20px auto 0;
    padding: 0 0 110px;
  }
  .p-box {
    width: 90.6vw;
    margin: 0 auto;
  }
  .p-box:before {
    display: block;
    width: 90.6vw;
    height: 12vw;
    content: "";
    background: url(../img/index/product/sp/f01_top.png) no-repeat left top;
    background-size: 100% 100%;
  }
  .p-box:after {
    display: block;
    width: 90.6vw;
    height: 12vw;
    content: "";
    background: url(../img/index/product/sp/f01_bot.png) no-repeat left top;
    background-size: 100% 100%;
  }
  .productInner {
    position: relative;
    padding: 0 6.25vw;
    background: url(../img/index/product/sp/f01_mid.png) repeat-y left top;
    background-size: 100% auto;
  }
  .p-box02 {
    width: 90.6vw;
    margin: 0 auto;
  }
  .p-box02:before {
    display: block;
    width: 90.6vw;
    height: 12vw;
    content: "";
    background: url(../img/index/product/sp/f03_top.png) no-repeat left top;
    background-size: 100% 100%;
  }
  .p-box02:after {
    display: block;
    width: 90.6vw;
    height: 12vw;
    content: "";
    background: url(../img/index/product/sp/f03_bot.png) no-repeat left top;
    background-size: 100% 100%;
  }
  .productInner02 {
    position: relative;
    padding: 0 6.25vw;
    background: url(../img/index/product/sp/f03_mid.png) repeat-y left top;
    background-size: 100% auto;
  }
  .pronoTxt03 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000;
  }
  .product h2 {
    line-height: 0;
    position: absolute;
    margin: 0;
  }
  .p01_price dt {
    font-size: 12px;
  }
  .p01_price dd {
    padding: 0 0 5px;
  }
  .productBox01 h2 {
    top: -5vw;
    left: 6.25vw;
    width: 43vw;
  }
  .productBox01 .p01_txt {
    margin: 0 0 3.4vw;
    padding: 3vw 0 0;
  }
  .productBox01 .p01_img {
    margin: 0 0 4.6vw;
  }
  .productBox01 dl {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 .9rem;
    color: #000;
  }
  .productBox01 dt,.productBox01 dd {
    display: block;
    margin: 0 0 .6rem;
  }
  .productBox01 ul {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2;
    margin: 4.3vw 0 0;
    color: #b90b50;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .productBox01 .buyBtn {
    width: 62.5vw;
    margin: 6vw auto 0;
  }
  .productBox01 .buyBtn p {
    display: block;
    margin: 3vw 0 0;
  }
  .p02_price {
    padding: 0;
  }
  .p02_price dt {
    font-size: 12px;
  }
  .p02_price dd {
    padding: 0 0 5px;
  }
  .productBox02 {
    margin: 4.6vw 0 0;
  }
  .productBox02 .productInner {
    padding: 4.6vw 6.25vw 0;
  }
  .productBox02 h2 {
    top: -5vw;
    left: 6.25vw;
    width: 39vw;
    margin: 0;
  }
  .productBox02 .p02_img {
    float: none;
    width: 100%;
    margin: 0 0 4.6vw;
  }
  .productBox02 .p02_txt {
    margin: 0;
  }
  .productBox02 dl {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 .9rem;
    color: #000;
  }
  .productBox02 dt,.productBox02 dd {
    display: block;
    margin: 0 0 .6rem;
  }
  .productBox02 ul {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2;
    margin: 4.3vw 0 0;
    color: #b90b50;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .productBox02 .buyBtn {
    width: 62.5vw;
    margin: 6vw auto 0;
  }
  .productBox03 {
    margin: 4.6vw 0 0;
  }
  .productBox03 .productInner {
    padding: 4.6vw 6.25vw 0;
  }
  .productBox03 h2 {
    top: -5vw;
    left: 6.25vw;
    width: 15vw;
    margin: 0;
  }
  .productBox03 .p03_img {
    float: none;
    width: 100%;
    margin: 0 0 4.6vw;
  }
  .productBox03 .p03_txt {
    margin: 0 0 0;
  }
  .productBox03 dl {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0 0 .9rem;
    color: #000;
  }
  .productBox03 dt {
    font-weight: bold;
  }
  .productBox03 dt,.productBox03 dd {
    display: block;
    margin: 0 0 .6rem;
  }
  .productBox03 .buyBtn {
    width: 62.5vw;
    margin: 6vw auto 0;
  }
  .productBox04 {
    margin: 4.6vw 0 0;
  }
  .productBox04 .productInner {
    padding: 4.6vw 6.25vw 0;
  }
  .productBox04 h2 {
    top: -5vw;
    left: 6.25vw;
    width: 25vw;
    margin: 0;
  }
  .p04_box {
    width: 78vw;
    margin: 0 auto;
  }
  .p04_box > div {
    display: block;
    width: 78vw;
    margin: 0 0 9.3vw 0;
  }
  .p04_box > div:nth-child(3n+3) {
    margin: 0 0 9.3vw 0;
  }
  .p04_box > div:last-child {
    margin: 0;
  }
  .topBox {
    width: 78vw;
  }
  .topBox p {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    width: 78vw;
    height: auto;
    padding: 2.8vw 0;
    background: url(../img/index/product/sp/f02_mid.png) repeat-y;
    background-size: 100% auto;
  }
  .topBox:before {
    display: block;
    width: 78vw;
    height: 1.4vw;
    content: "";
    background: url(../img/index/product/sp/f02_top.png) no-repeat left top;
    background-size: 100% auto;
  }
  .topBox:after {
    display: block;
    width: 78vw;
    height: 1.4vw;
    content: "";
    background: url(../img/index/product/sp/f02_bot.png) no-repeat left top;
    background-size: 100% auto;
  }
  .midBox {
    line-height: 0;
    background: url(../img/index/product/sp/f02_mid.png) repeat-y;
    background-size: 100% auto;
  }
  .midBox img {
    width: 76.8vw;
    margin: 0 auto;
  }
  .botBox p {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2;
    display: block;
    width: 78vw;
    height: auto;
    padding: 2.8vw 0;
    background: url(../img/index/product/sp/f02_mid.png) repeat-y;
    background-size: 100% auto;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .botBox:before {
    display: block;
    width: 78vw;
    height: 1.4vw;
    content: "";
    background: url(../img/index/product/sp/f02_top.png) no-repeat left top;
    background-size: 100% auto;
  }
  .botBox:after {
    display: block;
    width: 78vw;
    height: 1.4vw;
    content: "";
    background: url(../img/index/product/sp/f02_bot.png) no-repeat left top;
    background-size: 100% auto;
  }
  .productBox04 .buyBtn {
    width: 62.5vw;
    margin: 4.6vw auto 0;
  }
  .productBox05 {
    margin: 4.6vw 0 0;
  }
  .productBox05 .productInner {
    padding: 4.6vw 6.25vw 0;
  }
  .productBox05 h2 {
    top: -5vw;
    left: 6.25vw;
    width: 42vw;
    margin: 0;
  }
  .productBox05 .p05_img {
    float: none;
    width: 100%;
  }
  .productBox05 .p05_txt {
    margin: 4.6vw 0 0;
  }
  .p05_txt h3 {
    margin: 0 0 4.6vw;
  }
  .release {
    width: 54.6vw;
    margin: 0 0 4.3vw;
  }
  .product_detail,.product_detail02 {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2;
  }
  .product_detail > dt,.product_detail > dd {
    display: block;
  }
  .p05_txt hr {
    margin: 4.3vw 0;
  }
  .productBox06 {
    margin: 4.6vw 0 0;
  }
  .productBox06 .productInner02 {
    padding: 4.6vw 6.25vw 0;
  }
  .productBox06 h2 {
    top: -5vw;
    left: 6.25vw;
    width: 40vw;
    margin: 0;
  }
  .productBox06 .p06_img {
    float: none;
    width: 99%;
    margin: 0 0 4.6vw;
  }
  .productBox06 .p06_txt {
    margin: 0;
  }
  .productBox06 .p06_txt2 {
    margin: 0 0 3.4vw;
  }
  .productBox06 dl {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 .9rem;
    color: #000;
  }
  .productBox06 dt,.productBox06 dd {
    display: block;
    margin: 0 0 .6rem;
  }
  .p06_price {
    padding: 0;
  }
  .p06_price dt {
    font-size: 12px;
  }
  .p06_price dt.sp_big {
    font-size: 125%;
    line-height: 1.3;
  }
  .p06_price dd {
    padding: 0 0 5px;
  }
  .productBox06 .buyBtn {
    width: 62.5vw;
    margin: 6vw auto 0;
  }
  .prof {
    width: 78.6vw;
    margin: 12vw auto 0;
  }
  .prof:before {
    display: block;
    width: 78.6vw;
    height: 8vw;
    content: "";
    background: url(../img/prod/prof_top.png) no-repeat left top;
    background-size: 100% 100%;
  }
  .prof:after {
    display: block;
    width: 78.6vw;
    height: 8vw;
    content: "";
    background: url(../img/prod/prof_bot.png) no-repeat left top;
    background-size: 100% 100%;
  }
  .profInner {
    position: relative;
    padding: 0 6.25vw;
    background: url(../img/prod/prof_mid.png) repeat-y left top;
    background-size: 100% auto;
  }
  .prof_ttl img {
    width: 50vw;
  }
  .prof_img {
    float: none;
    width: 100%;
    margin: 4.6vw 0;
  }
  .prof_txt {
    margin: 0;
  }
  .prof_name img {
    width: 33.59375vw;
  }
  .prof_tw img {
    width: 28.125vw;
  }
  .prof_txt p {
    margin-top: 3.4vw;
  }
  .prof_txt p strong.sp_big {
    font-size: 125%;
    line-height: 1.0;
  }
  .productBox11 h2 {
    width: 29.0625vw;
    margin: -20px 0 0;
  }
  .p11_txt {
    line-height: 1.8;
    margin: 0 0 10px;
    padding-top: 10px;
  }
  .p11Box {
    margin: 0 0 10px;
  }
  .p11Box_inline {
    display: block;
    margin: 0 0 20px;
  }
  .p11Box_txt {
    line-height: 1.5;
  }
  .p11List li {
    font-size: 12px;
    line-height: 1.5;
  }
  .p11List_inline {
    display: block;
  }
  .p11ImgBox {
    width: 100%;
    padding: 20px;
  }
  .p11ImgBox:nth-child(-n+2) {
    width: 100%;
    margin: 0 0 15px;
  }
  .p11ImgBox:nth-child(3) {
    width: 100%;
  }
  .p11ImgList {
    margin: 0 0 5px;
  }
  .p11ImgList_inline {
    margin: 0 0 10px;
  }
  .p11ImgList_img {
    width: 42.96875vw;
    margin: 0;
  }
  .p11AttnList {
    line-height: 1.8;
  }
  .prodBonusList li {
    margin: 0 0 15px;
  }
  .prodBonusBox dt {
    font-size: 12px;
    line-height: 1.5;
  }
  .prodBonusBox dd {
    line-height: 1.8;
  }
  .prodBonusImgBox {
    height: auto;
    padding: 20px 20px 10px;
  }
  .prodBonusImgBox_img {
    position: static;
    margin: 0 auto 15px;
    text-align: center;
  }
  .prodBonusImgBox_img img:first-child {
    width: 50vw;
    margin: 0 0 10px;
  }
  .prodBonusImgBox_img img:nth-child(2) {
    width: 100%;
  }
  .prodBonusImgBox dt {
    text-align: center;
  }
}

@media screen and (min-width: 640px) {
  .pc-none {
    display: none;
  }
}