@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;

  -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: rgba(255, 255, 255, .9);
  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: 100;
  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;
}

#boxer.mobile .boxer-close,#boxer.mobile .boxer-close:hover {
  top: 25vw;
  right: 10px;
  border-radius: 0;
}

#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-close:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  content: "";
  transition: color .15s linear;
  text-align: center;
  text-indent: 0;
  color: #333;
  background: url(../img/prod/icon_close.png) center center no-repeat;
  background-size: 30px;
}

#boxer.mobile .boxer-loading:before {
  border-color: rgba(153, 153, 153, .25);
}

#boxer.mobile .boxer-loading:after {
  border-top-color: #999;
}

#boxer.mobile .boxer-control {
  width: 50px;
  height: 100%;
  opacity: 1;
  border-radius: 0;
  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;
}

#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;
}

#boxer.mobile.loading .boxer-container {
  background: #000;
}

#boxer-overlay {
  background: #fff;
}

/*---------------------------------------------------------------------------------------------------------
 TITLE:
 PAGE: index.html
---------------------------------------------------------------------------------------------------------*/
/* BGM -----------------------------------------------------------------------------------------*/
#bgm {
  position: absolute;
  z-index: 100; 
  top: 75px;
  right: 240px;
  width: 241px;
  height: 56px;
  background: url(../img/index/bgm_frame.png) center center no-repeat;
  background-size: 100% auto;
}
#bgm .ui {
  height: 35px; 
  margin: 9px 0 0;
  padding: 0;
}
#bgm .ui a {
  transition: .3s;
}
#bgm .ui a:hover {
  opacity: .7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
#bgm .ui a + a {
  display: none;
}
#bgm .status {
  position: absolute;
  top: 17px; 
  left: 15px;
}
#bgm .status img {
  width: 22px;
  height: auto;
}
#bgm .status.play a {
  display: none;
}
#bgm .status a + a {
  display: none;
}
#bgm .status.play a + a {
  display: block;
}
#bgm .next {
  line-height: 0; 
  position: absolute;
  top: 34px;
  left: 215px;
}
#bgm .next img {
  width: 10px;
  height: auto;
}
#bgm .prev {
  line-height: 0; 
  position: absolute;
  top: 14px;
  left: 215px;
}
#bgm .prev img {
  width: 10px;
  height: auto;
}
#bgm .bgmIndex a {
  display: none;
}
#bgm .bgmtitle {
  font-family: "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", Georgia, "Times New Roman", Times, serif;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 40px;
  float: left;
  overflow: hidden;
  width: 150px;
  height: 30px;
  margin-left: 8px;
  padding: 0;
  text-align: left; 
  letter-spacing: .1em;
  color: #000;
}
#bgm .bgmtitle span {
  line-height: 32px;
  position: relative;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 154px; 
  white-space: nowrap;
}
#bgm .bgmtitle span b {
  font-weight: normal;
  position: relative;
  left: 0;
}

#spbgm {
  display: none;
}

@media screen and (max-width: 639px) {
  #bgm {
    display: none;
  }
  #spbgm {
    position: relative;
    z-index: 100; 
    display: block;
    width: 91.40625vw;
    height: 22.5vw;
    margin: 0 auto 40px;
    background: url(../img/index/bgm_frame.png) center center no-repeat;
    background-size: 100% auto;
  }
  #spbgm .status {
    position: absolute;
    top: 7vw; 
    left: 7.03125vw;
  }
  #spbgm .status a + a {
    display: none;
  }
  #spbgm .status a img {
    width: 8.28125vw;
    height: auto;
  }
  #spbgm .status.play a {
    display: none;
  }
  #spbgm .status.play a + a {
    display: block;
  }
  #spbgm .prev {
    position: absolute;
    top: 6.3vw; 
    right: 7.03125vw;
  }
  #spbgm .prev img,#spbgm .next img {
    width: 3.90625vw;
    height: auto;
  }
  #spbgm .next {
    position: absolute;
    top: 12.7vw; 
    right: 7.03125vw;
  }
  #spbgm .bgmIndex {
    float: left;
  }
  #spbgm .bgmIndex br {
    display: none;
  }
  #spbgm .bgmIndex a {
    display: none;
  }
  #spbgm .bgmtitle {
    font-family: "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", Georgia, "Times New Roman", Times, serif;
    font-size: 4.0625vw;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 18.75vw;
    float: left;
    overflow: hidden;
    width: 54.6875vw;
    margin-left: 0;
    padding: 0;
    transform: translate(0, -50%);
    text-align: left; 
    color: #000;
  }
  #spbgm .bgmtitle span {
    line-height: 3.7rem;
    position: relative;
    left: 0;
    display: inline-block;
    overflow: hidden;
    width: 54.6875vw; 
    white-space: nowrap;
  }
  #spbgm .bgmtitle span b {
    font-weight: normal;
    position: relative;
    left: 0;
  }
  #spbgm .bgmtitle span em {
    font-weight: bold;
    padding-left: .5em; 
    color: #f00;
  }
}

/* MAIN CONTENT -----------------------------------------------------------------------------------------*/
.main {
  position: relative;
  width: 100%;
  padding: 40px 0 0;
  background: url(../img/bg_patern01.png) center top;
}

/* MAIN BLOCK */
.mainVisual {
  position: relative;
  width: calc( 100% - 400px);
  margin: 0 auto;
  /*padding: 0 200px;*/
}

/* MAIN VISUAL */
.visualBg {
  width: 100%;
}

.mainVisual img {
  width: 100%;
  vertical-align: bottom;
}

.mainBlock {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}

.mainBlock img {
  width: 100%;
}

.copy01 {
  width: 46%;
  margin: 0 0 0 40px;
  padding: 1% 0 0;
}

.mainBlock h1 {
  width: 58%;
  margin: 64% auto -10px;
}

.releaseday {
  width: 45.0%;
  margin: 0 auto;
}

.copy02 {
  position: absolute;
  top: 7%;
  left: 6%;
  width: 12.3%;
}

/* SIDE BAR */
.side {
  z-index: 1;
  left: 0;
  width: 100%;
  min-width: 1240px;
  height: calc(100vh - 40px);
  min-height: 584px;
}

.soff {
  position: fixed;
  top: 40px;
}

.son {
  position: absolute;
  bottom: 0;
}

.LeftSide,.RightSide {
  position: absolute;
  top: 0;
  width: 200px;
  height: calc(100vh - 40px);
  min-height: 584px;
  /*background: #082;*/
}

.LeftSide {
  left: 0;
}

.RightSide {
  right: 0;
}

.LeftSide > img,.RightSide > img {
  position: relative;
  z-index: 2;
}

.sideBg {
  position: absolute;
  z-index: 1;
  top: 184px;
  left: 0;
  width: 200px;
  height: calc( 100% - 184px - 126px);
  background: url(../img/index/sideBg_mdl.png) repeat-y;
}

.LeftSide:before,.RightSide:before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 200px;
  height: 184px;
  content: "";
  background: url(../img/index/sideBg_top.png) no-repeat 0 0;
}

.LeftSide:after,.RightSide:after {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 126px;
  content: "";
  background: url(../img/index/sideBg_bottom.png) no-repeat 0 0;
}

/* MAin CONTENT */
.mainCont {
  z-index: 2;
  left: 0;
  width: 100%;
  min-width: 1240px;
  height: calc(100vh - 40px);
  min-height: 584px;
}

.topBnr {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 77px;
  width: 200px;
}

.topBnr p {
  margin: 0 0 20px;
}

.topBnr p a {
  transition: opacity .3s ease-out;
}

.topBnr p a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* NEWS -----------------------------------------------------------------------------------------*/
.mainNews_box {
  border-top: 1px solid rgba(0, 0, 0, .4);
}

.mainNews_box dt {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  color: #fff;
  background: #009dbf;
}

.mainNews_box dd {
  line-height: 1.7;
}

.mainNews_box a {
  text-decoration: none;
  color: #b90b50;
}

/* INTRODUCTION -----------------------------------------------------------------------------------------*/
.intro {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.introWrapp01 {
  position: relative;
  z-index: 1;
  width: 1240px;
  height: 1050px;
  margin: 0 auto;
}

.intro01-01 {
  position: absolute;
  top: 152px;
  left: 35px;
  width: 566px;
}

.intro01_txt01 {
  margin: 20px 0 0;
  padding: 0 40px 0 5px;
}

.intro01_btn {
  margin: 0 auto 80px;
  text-align: center;
}

.intro01_btn a {
  transition: opacity .3s ease-out;
}

.intro01_btn a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.intro01-02 {
  position: absolute;
  top: -40px;
  right: 40px;
  width: 610px;
  height: 1122px;
}

.intro01_img02 {
  position: relative;
  z-index: 1;
}

/* movie */
.intro01Box {
  margin: 0 0 70px;
}

.intro01_movie {
  position: relative;
  width: 504px;
  height: 283px;
  margin: 40px auto 30px;
}

.intro01_movie img {
  width: 100%;
}

.intro01_prayBtn {
  position: absolute;
  top: 50%;
  left: 75%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
}

.intro01_caption {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #b90b50;
  text-shadow: white 1px 1px 1px,  white 1px -1px 1px, white -1px 1px 1px, white -1px -1px 1px;
}

.intro01_movie:after {
  position: absolute;
  top: -12px;
  left: -12px;
  display: block;
  width: 546px;
  height: 318px;
  content: "";
  background: url(../img/index/movie_frame_red.png) no-repeat 0 0;

  pointer-gallerys: none;
}

/* intro02
========================================== */
.introWrap_wrap {
  background: url(../img/bg_patern01.png) center top;
}

/* intro03
========================================== */
/* SLICK */
button:focus {
  outline: none;
}

.slick-prev {
  position: absolute;
  top: 50%;
  left: -80px;
  width: 66px;
  height: 48px;
  cursor: pointer;
  transition: all .25s linear;
  text-indent: -9999px;
  border: none;
  background: url(../img/index/intro/intro_slick_prev.png) no-repeat 0 0;
}

.slick-prev:hover {
  transform: translate(-10%, 0);
}

.slick-next {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 66px;
  height: 48px;
  cursor: pointer;
  transition: all .25s linear;
  text-indent: -9999px;
  border: none;
  background: url(../img/index/intro/intro_slick_next.png) no-repeat 0 0;
}

.slick-next:hover {
  transform: translate(10%, 0);
}

.slick-dots {
  position: absolute;
  z-index: 1;
  bottom: -110px;
  left: 0;
  width: 100%;
  height: 16px;
  text-align: center;
  letter-spacing: -.4em;
}

.intro03_img .slick-dots {
  bottom: -54px;
}

.slick-dots li {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 4px;
  cursor: pointer;
  text-indent: -9999px;
  letter-spacing: normal;
  border: none;
}

.slick-dots li {
  background: url(../img/index/intro/dots_off.png) no-repeat 0 0;
  background-size: 100% 100%;
}

.slick-dots li.slick-active {
  background: url(../img/index/intro/dots_on.png) no-repeat 0 0;
  background-size: 100% 100%;
}

/* INTRO TXT */
.introTxt01 {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: #000;
  text-shadow: white 1px 1px 1px,  white 1px -1px 1px,  white -1px 1px 1px, white -1px -1px 1px;
}

/* PRODUCT ----------------------------------------------------------------------------------------------*/
.product {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* p-box */
.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: 0 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;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 18px;
  color: #000;
}

.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)";
}

/* prod04
========================================== */
.prodWrap_wrap {
  background: url(../img/bg_patern01.png) center top;
}

/* 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 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;
}

/* LINK --------------------------------------------------------------------------------------------------*/
.link {
  margin: 120px 0 150px;
  text-align: center;
}

.link ul {
  letter-spacing: -.4em;
}

.link li {
  display: inline-block;
  margin: 0 20px;
}

.gustLink {
  margin: 40px 0 0;
}

.gustLink p {
  margin: 20px 0 0;
}

.link a {
  transition: opacity .3s ease-out;
}

.link a:hover {
  opacity: .8;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

/* LINK TXT */
.linkTxt01 {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: #000;
  text-shadow: white 1px 1px 1px,  white 1px -1px 1px,  white -1px 1px 1px, white -1px -1px 1px;
}

/* PAGE FOOTER BANNER --------------------------------------------------------------------------------------------------*/
.pageFtBnr {
  box-sizing: border-box;
  width: 1160px;
  margin: 0 auto;
  padding-bottom: 220px;
}

.pageFtBnrList {
  display: -ms-flexbox;
  display: flex;

  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* page top --------------------------------------------------------------------------------------------------*/
.BackTop {
  position: fixed;
  z-index: 10;
  right: 23px;
  bottom: 100px;
  display: none;
  width: 82px;
  height: 97px;
  cursor: pointer;
}

.BackTop:not(.sp):hover p:first-child {
  animation: rot01 .3s linear 0s infinite;
}

@keyframes rot01 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.clearfix:after {
  display: block;
  clear: both;
  height: 0;
  content: "";
}

#canvas {
  position: absolute;
  z-index: 1;
  width: 100%;
  opacity: .45;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=45)";
}

/*-------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 374px) {
  .sps-none {
    display: none;
  }
  .sps-none {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .sp-none {
    display: none;
  }
  .sp-none {
    display: none;
  }
  .main {
    position: relative;
    width: 100%;
    margin: 0 0;
    padding: 0;
    background: transparent;
  }
  .mainContSP {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }
  .main h1 {
    position: absolute;
    z-index: 1;
    top: 74vw;
    left: 50%;
    width: 60vw;
    margin: 0 0 0 -30vw;
  }
  .mainContSP .releaseday {
    position: absolute;
    z-index: 1;
    top: 105vw;
    left: 50%;
    width: 80vw;
    margin: 0 0 0 -40vw;
  }
  .mainContSP .copy01 {
    position: absolute;
    z-index: 1;
    top: 98vw;
    left: 50%;
    width: 88vw;
    margin: 0 0 0 -44vw;
  }
  .mainContSP .copy02 {
    position: absolute;
    z-index: 1;
    top: 7vw;
    left: 4.6vw;
    width: 13.75vw;
  }
  .visualBg {
    width: 100%;
  }
  .mainBtn01 {
    position: relative;
    z-index: 1;
    width: 62.5vw;
    margin: 9.3vw auto 0;
  }
  .mainBtn02 {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 14vw 0 0;
    text-align: center;
    letter-spacing: -.4em;
  }
  .mainBtn02 li {
    display: inline-block;
    width: 42vw;
    margin: 0 3vw 2vw;
    letter-spacing: normal;
  }
  .mainNews {
    position: relative;
    z-index: 3;
    width: 90.6vw;
    margin: 0 auto;
  }
  .mainNews_inner {
    position: relative;
    background: url(../img/index/sp/news_bg.png);
    background-size: 100% auto;
  }
  .mainNews_inner:before {
    position: absolute;
    top: -12vw;
    width: 90.6vw;
    height: 12vw;
    content: "";
    background: url(../img/index/sp/news_bg_top.png) bottom center no-repeat;
    background-size: 100% auto;
  }
  .mainNews_inner:after {
    position: absolute;
    bottom: -12vw;
    width: 90.6vw;
    height: 12vw;
    content: "";
    background: url(../img/index/sp/news_bg_under.png) no-repeat;
    background-size: 100% auto;
  }
  .mainNews_box {
    font-size: 14px;
    position: relative;
    overflow-y: inherit;
    margin: 0 20px;
    padding: 15px 0 0;
  }
  .mainNews_box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .mainNews_box:last-child dd {
    padding-bottom: 0;
  }
  .mainNews_box.is-first {
    padding-top: 0;
    padding-bottom: 0;
    border: none;
  }
  .mainNews_box.is-first dd {
    padding-bottom: 0;
  }
  .mainNews_box dt {
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-block;
    margin: 0 0 8px;
    padding: 2px 4px;
  }
  .mainNews_box dd {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    padding: 0 30px 10px 5px;
  }
  .mainNews_moreBtn {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 28px;
    height: 33px;
    background: url(../img/index/sp/icon_more.png) center bottom no-repeat;
    background-size: 25px, auto;
  }
  .mainNews_moreBtn.active {
    background: url(../img/index/sp/icon_close.png) center bottom no-repeat;
    background-size: 28px, auto;
  }
  .mainNews_more {
    position: absolute;
    z-index: 10;
    visibility: hidden;
    width: 100%;
    padding: 10px 0 0;
    transition: opacity .3s;
    opacity: 0;
    background: url(../img/index/sp/news_bg.png);
    background-size: 100% auto; 

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .mainNews_more:after {
    position: absolute;
    bottom: -12vw;
    width: 90.6vw;
    height: 12vw;
    content: "";
    background: url(../img/index/sp/news_bg_under.png) no-repeat;
    background-size: 100% auto;
  }
  .mainNews_more.active {
    visibility: visible;
    transition: opacity .3s;
    opacity: 1;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  .introWrapp01 {
    width: 100%;
    height: 260vw;
    margin: 0 auto;
  }
  .intro01-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 90.6vw;
    margin: 0 auto;
  }
  .intro01-01 h2 {
    width: 88.2vw;
  }
  .intro01_txt01 {
    margin: 3vw 0 0;
    padding: 0;
  }
  .intro01_btn {
    width: 90.625vw;
    margin: 6vw auto 7vw;
  }
  .intro01-02 {
    position: relative;
    top: 0;
    left: 0;
    width: 90.6vw;
    margin: 4.6vw auto 0;
  }
  .intro01_img02 {
    width: 78vw;
    margin: 0 auto;
  }
  .intro01Box {
    margin: 0 0 30px;
  }
  .intro01_movie {
    position: relative;
    width: 95%;
    height: auto;
    margin: 8.5vw auto 3vw;
    padding: 0;
  }
  .intro01_movie:after {
    top: -2.5vw;
    left: -2.5vw;
    width: 105%;
    height: 109%;
    margin: 0;
    background-size: 100% auto;
  }
  .intro01_prayBtn {
    position: absolute;
    top: 50%;
    left: 75%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
  }
  .introWrapp02 {
    width: 100%;
    height: auto;
  }
  .introWrapp02 {
    position: relative;
    width: 100%;
    padding-top: 20px;
  }
  .intro02-01 {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
  }
  .intro02_box {
    position: absolute;
    z-index: 2;
    top: 68.75vw;
    width: 100%;
  }
  .intro02_ttl {
    width: 83.59375vw;
    margin: 0 auto 3vw;
    text-align: center;
  }
  .intro02_btn {
    width: 60vw;
    margin: 0 auto;
  }
  .introWrapp03 {
    width: 100%;
    margin: -1.8vw auto 0;
    padding-bottom: 40px;
  }
  .intro03-01 {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
  }
  .intro03_box {
    position: absolute;
    z-index: 2;
    top: 53vw;
    width: 100%;
  }
  .intro03_ttl {
    width: 71.40625vw;
    margin: 0 auto 2vw;
  }
  .intro03_btn {
    width: 60vw;
    margin: 0 auto;
  }
  .slick-prev {
    z-index: 2;
    top: 134%;
    left: 3vw;
    width: 10.3vw;
    height: 7.5vw;
    background-size: 100% 100%;
  }
  .slick-next {
    z-index: 2;
    top: 134%;
    right: 3vw;
    width: 10.3vw;
    height: 7.5vw;
    background-size: 100% 100%;
  }
  .slick-dots {
    bottom: -24vw;
  }
  .intro03_img .slick-dots {
    bottom: -14.6vw;
  }
  .intro03_img .slick-prev,.intro03_img .slick-next {
    top: 116%;
  }
  .introTxt01 {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .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;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 .9rem;
    color: #000;
  }
  .productBox03 dt,.productBox03 dd {
    display: block;
    margin: 0 0 .6rem;
  }
  .productBox03 .buyBtn {
    width: 62.5vw;
    margin: 6vw auto 0;
  }
  .prodWrap_wrap {
    width: 100%;
    height: auto;
    margin: 40px 0;
    padding: 5vw 0;
  }
  .productBox04 {
    position: relative;
    width: 100%;
  }
  .prod04-01 {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
  }
  .prod04_box {
    position: absolute;
    z-index: 2;
    top: 60vw;
    width: 100%;
  }
  .prod04_ttl {
    position: static !important;
    width: 79.6875vw;
    margin: 0 auto 2vw !important;
  }
  .prod04_btn {
    width: 60vw;
    margin: 0 auto;
  }
  .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;
  }
  .productBox11 h2 {
    top: -5vw;
    left: 6.25vw;
    width: 29.0625vw;
  }
  .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;
  }
  .link {
    margin: 23.4vw 0 0;
  }
  .link li {
    width: 42vw;
    margin: 0 3vw;
  }
  .gustLink {
    margin: 6.2vw 0 0;
  }
  .gustLink p {
    width: 90vw;
    margin: 3vw auto 0;
  }
  .linkTxt01 {
    font-size: 12px;
    font-size: 1.2rem;
    padding-bottom: 50px !important;
  }
  .pageFtBnr {
    width: 100%;
    margin: 0;
    padding: 0 20px 100px;
  }
  .pageFtBnrList li {
    width: calc((100% - 20px) / 2);
    margin: 0 0 10px;
  }
  .pageFtBnrList li img {
    width: 100%;
  }
  .BackTop {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 12.5vw;
    background: #ffa400;
  }
  .BackTop p {
    line-height: 0;
    width: 11vw;
    margin: 0 auto;
  }
  .product{
    margin-top: 40px;
  }
}

@media screen and (min-width: 640px) {
  .pc-none {
    display: none;
  }
  .pc-none {
    display: none;
  }
  .mainNews {
    position: absolute;
    z-index: 3;
    bottom: 58px;
    left: 40px;
    width: 200px;
    height: 260px;
    padding: 20px;
    background: url(../img/index/news_bg.png) top center no-repeat;
  }
  .mainNews_inner {
    overflow-y: scroll;
    height: 220px;
    margin: 0 20px 0 20px;
    padding: 0 10px 0 0;
  }
  .mainNews_box {
    font-size: 14px;
    margin: 0;
    padding-top: 15px;
  }
  .mainNews_box.is-first {
    padding-top: 0;
    border: none;
  }
  .mainNews_box dt {
    display: inline-block;
    margin: 0 0 10px;
    padding: 2px 4px;
  }
  .mainNews_box dd {
    padding: 0 0 10px;
  }
  .mainNews_box a:hover {
    text-decoration: underline;
  }
  /* スクロールバー */
  .mainNews_inner::-webkit-scrollbar {
    width: 8px;
  }
  .mainNews_inner::-webkit-scrollbar-track {
    background: #ccc;
  }
  .mainNews_inner::-webkit-scrollbar-thumb {
    background-color: #009dbf;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .9);
  }
  .introWrapp02 {
    position: relative;
    width: 100%;
    height: 439px;
    padding-top: 20px;
  }
  .intro02-01 {
    position: relative;
    z-index: 2;
    width: 1236px;
    height: 439px;
    margin: 0 auto;
  }
  .intro02_box {
    position: absolute;
    z-index: 2;
    top: 110px;
    right: 55px;
    width: 610px;
  }
  .intro02_ttl {
    margin: 50px 0 10px;
    text-align: center;
  }
  .intro02_btn {
    text-align: center;
  }
  .intro02_btn a:hover {
    transition: opacity .3s;
    opacity: .8;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  }
  .intro02_img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    margin-left: -618px;
  }
  .introWrapp03 {
    position: relative;
    width: 100%;
    height: 412px;
    margin-top: -33px;
    margin-bottom: 125px;
    padding-bottom: 80px;
  }
  .intro03-01 {
    position: relative;
    z-index: 2;
    width: 1236px;
    height: 412px;
    margin: 0 auto;
  }
  .intro03_box {
    position: absolute;
    z-index: 2;
    top: 78px;
    left: 55px;
    width: 540px;
    text-align: center;
  }
  .intro03_ttl {
    margin: 50px 0 15px;
  }
  .intro03_btn a:hover {
    transition: opacity .3s;
    opacity: .8;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  }
  .intro03_img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    margin-left: -618px;
  }
  .prodWrap_wrap {
    margin: 30px auto 0;
    padding: 40px 0 50px;
    background: url(../img/bg_patern01.png) center top;
  }
  .productBox04 {
    position: relative;
    width: 100%;
  }
  .prod04-01 {
    position: relative;
    z-index: 2;
    width: 1230px;
    height: 450px;
    margin: 0 auto;
  }
  .prod04_box {
    position: absolute;
    z-index: 2;
    top: 195px;
    right: 55px;
    width: 610px;
  }
  .prod04_ttl {
    padding: 0 0 10px;
    text-align: center;
  }
  .prod04_btn {
    text-align: center;
  }
  .prod04_btn a:hover {
    transition: opacity .3s;
    opacity: .8;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  }
  .prod04_img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    margin-left: -618px;
  }
}