@charset "utf-8";

@media screen and ( min-width:767px ) { /* PC ==================== */
  .contents-header h1.logo_dg02{
    width:594px;
    margin-top:0;
    margin-bottom:-10px;
    margin-left:100px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .contents-header h1.logo_dg02{
    clear: none;
    width: 50%;
    float: right;
    /*margin-top: 18px;*/
    margin-top: 10px;
    margin-right: 10px;
  }
  .contents-header h1.logo_dg02 img,{
    width: 90%;
    margin:0 auto;
  }
}

.contents-wrap-bg{
  background: url("../../img/bg.png") no-repeat;
  background-size: cover;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .contents-wrap-bg{
    background-position: 0 20px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
}

.contents-wrap-bg-img016{
  background: url("../../img/bg_img_016.png") no-repeat;
  background-size: 100%;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .contents-wrap-bg-img016{
    margin-top: 0;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .contents-wrap-bg-img016{
    margin-top: 0;
  }
}

.contents-wrap-bg-img017{
  background: url("../../img/bg_img_017.svg") no-repeat;
  background-size: cover;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .contents-wrap-bg-img017{
    margin-top: -60px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .contents-wrap-bg-img017{
    margin-top: -20px;
  }
}

.product-box{
  color: #fff;
}
.products-photo{
    overflow:hidden;
    position:relative;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .products-photo{
      width:1280px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .products-photo{
      width:100%;
  }
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 40% !important;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 9999;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .swiper-button-prev,
  .swiper-button-next{
  	width:27px;
  	top:240px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .swiper-button-prev,
  .swiper-button-next{
  	width:17px;
  	top:20px;
  }
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .swiper-button-prev{
  	left:120px;
  }
  .swiper-button-next{
  	right:120px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .swiper-button-prev{
  	left:20px;
  }
  .swiper-button-next{
  	right:20px;
  }
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled{
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}
.swiper-pagination-bullet {
  display: inline-block;
  border-radius: 100%;
  background: #666;
  opacity: 1.0;
}
.swiper-pagination-bullet-active{
  background: #3fa9f5;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .swiper-pagination {
    border-top: 1px solid;
    border-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,0));
    border-image-slice: 1;
  }
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .swiper-pagination {
  }
  .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
}

.cloud-left{
  animation:cloud-left ease-in-out 1s infinite alternate;
  -webkit-animation:cloud-left ease-in-out 1s infinite alternate;
  -moz-animation:cloud-left ease-in-out 1s infinite alternate;
}
@keyframes cloud-left{
  0%   { transform:translate(0%, 0%);  opacity:0;}
  100% { transform:translate(-20px, 0%); opacity:1;}
}
@-webkit-keyframes cloud-left{
  0%   { -webkit-transform:translate(0%, 0%);  opacity:0;}
  100% { -webkit-transform:translate(-20px, 0%); opacity:1;}
}
@-moz-keyframes cloud-left{
  0%   { -moz-transform:translate(0%, 0%);  opacity:0;}
  100% { -moz-transform:translate(-20px, 0%); opacity:1;}
}
.cloud-right{
  animation:cloud-right ease-in-out 1s infinite alternate;
  -webkit-animation:cloud-right ease-in-out 1s infinite alternate;
  -moz-animation:cloud-right ease-in-out 1s infinite alternate;
}
@keyframes cloud-right{
  0%   { transform:translate(0%, 0%);  opacity:0;}
  100% { transform:translate(20px, 0%); opacity:1;}
}
@-webkit-keyframes cloud-right{
  0%   { -webkit-transform:translate(0%, 0%);  opacity:0;}
  100% { -webkit-transform:translate(20px, 0%); opacity:1;}
}
@-moz-keyframes cloud-right{
  0%   { -moz-transform:translate(0%, 0%);  opacity:0;}
  100% { -moz-transform:translate(20px, 0%); opacity:1;}
}

.title-left{
  background: url("../../img/title_bg_left.svg") no-repeat;
}
.title-right{
  background: url("../../img/title_bg_right.svg") no-repeat;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .title-left,
  .title-right{
    height: 170px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .title-left,
  .title-right{
    width:100%;
    height: 90px;
  }
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .title-center{
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .title-center{
    width:100%;
  }
}

h3,
h4{
  line-height: 1.2;
}
h3{
  background: url("../../img/title_border.png") no-repeat;
  background-size: 100%;
  background-position: center bottom;
  font-family: 'M PLUS 1p', sans-serif;
}
h4{
  text-align: right;
  font-weight:normal;
  font-family: 'Syne', sans-serif;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  h3,
  h4{
    margin: 0 160px;
  }
  h3{
    font-size: 35px;
    background-size: 100%;
    padding-bottom: 10px;
  }
  h3 span{
    font-size: 25px;
  }
  .title-left h3{
    padding-top: 70px;
  }
  .title-right h3{
    padding-top: 60px;
  }
  h4{
    font-size: 20px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  h3,
  h4{
    width:90%;
    margin:0 auto;
  }
  h3{
    font-size: 20px;
    background-size: 100%;
    padding-bottom: 5px;
  }
    h3 img{
      width:100%;
    }
  h3 span{
    font-size: 14px;
  }
  .title-left h3{
    padding-top: 30px;
  }
  .title-right h3{
    padding-top: 30px;
  }
  h4{
    font-size: 12px;
  }
  p,ul{
    line-height: 1.2;
  }
}

@media screen and ( min-width:767px ) { /* PC ==================== */
  .product-dd{
    width:700px !important;
    margin:0 auto !important;
    padding:0 0 0 !important;
  }
  .product-dd p{
    padding:5px 0 !important;
    margin:10px 0 0 0 !important;
    border-bottom: 1px solid #fff !important;
    font-size: 20px !important;
    font-weight: bold !important;
  }
  .product-dd ul{
    padding-top:10px !important;
    list-style-type:disc !important;
    margin-left:20px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .product-dd{
    width:90% !important;
    margin:0 auto !important;
    padding:0 0 0 !important;
  }
  .product-dd p{
    width:100%;
    padding:10px !important;
    margin:0 !important;
    border-bottom: 1px solid #fff !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-align: center;
  }
  .product-dd ul{
    padding-top:10px !important;
    list-style-type:disc !important;
    margin-left:20px;
  }
}

/*バトルスグリッドマン*/
.img_001{
  position: relative;
}
.img_001 h3{
  background:none;
  line-height: 1.3;
  font-family: 'M PLUS 1p', sans-serif;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_001 h3{
    width:820px;
    margin:60px auto 0;
    font-size:35px;
    padding-left:20px;
  }
  .img_001 p{
    width: 650px;
    position: absolute;
    top: 170px;
    left: 350px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_001 h3{
    width: 95%;
    margin: 0 auto;
    text-align: center;
    font-size:16px;
    padding-top:20px;
  }
  .img_001 p{
    width: 90%;
    margin:0 auto;
  }
  .img_001 img{
    width:100%;
  }
}

/*グリッドマン*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_002 .title-left{
    width:1002px;
  }
  .img_002 h3,
  .img_002 h4{
    width: 800px;
  }
  .img_002 p{
    width: 800px;
    margin-top:20px;
    margin-left: 160px;
  }
  .img_002 .product-dd p{
    width:700px!important;
  }

}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_002{
    margin-top: 20px;
  }
  .img_002 .title-left{
    margin:0 auto;
  }
  .img_002 h3,
  .img_002 h4{
    width:90%;
  }
  .img_002 p{
    width:90%;
    margin:0 auto 0;
  }
  .img_002 .product-dd p{
    width:100% !important;
  }
  .img_002 .products-photo{
    margin-top:20px;
  }
  .img_002 img{
    width:100%;
  }
}

/*グリッドマン アクションポーズ*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_003{
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_003 img{
    width:100%;
    margin-top:20px;
  }
}

/*サンダークラッシュキャリバー*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_004{
    margin-top:30px;
  }
  .img_004 .title-center{
    width:1280px;
    margin:0 auto;
  }
  .img_004 p{
    width: 960px;
    margin: 30px auto 0;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_004 .title-center{
    width:90%;
    margin:30px auto 0;
  }
  .img_004 h3,
  .img_004 h4{
    width:100%;
  }
  .img_004 p{
    width: 90%;
      margin:20px auto 0;
  }
  .img_004 img{
    width:100%;
  }
}

@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_005006{
    width:960px;
    margin: 30px auto 100px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_005006{
    width:90%;
    margin: 20px auto 0;
  }
}
/* ダイアクロン隊員 */
.img_005 ul{
  padding-top:10px !important;
  list-style-type:disc !important;
  margin-left:20px;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_005{
    width:49%;
    float: left;
  }
  .img_005 img{
    width: 100%;
  }
  .img_005 h3,
  .img_005 h4{
    margin:0;
    width:100%;
  }
  .img_005 p{
    width:100%;
    margin-top: 20px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_005{
    margin-top:30;
  }
  .img_004 .title-center{
    width:90%;
    margin:30px auto 0;
  }
  .img_005 h3,
  .img_005 h4{
    width:100%;
  }
  .img_005 p{
    margin: 20px auto;
  }
  .img_005 img{
    width:95%;
    margin: 0 auto;
  }
}

/*ロードヴァイパー*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_006{
    width:49%;
    float: right;
  }
  .img_006 img{
    width: 100%;
  }
  .img_006 h3,
  .img_006 h4{
    margin:0;
    width:100%;
  }
  .img_006 p{
    width:100%;
    margin-top: 20px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_006{
    margin-top:50px;
    margin-bottom:30px;
  }
  .img_004 .title-center{
    width:90%;
    margin:30px auto 0;
  }
  .img_006 h3,
  .img_006 h4{
    margin:0;
    width:100%;
  }
  .img_006 p{
    margin: 20px auto 0;
  }
  .img_006 img{
    width:95%;
  }
}

@media screen and ( min-width:767px ) { /* PC ==================== */
  .pv{
    width: 960px;
    margin: 0 auto;
    padding-top: 100px;
  }
  .pv h3{
    width:100%;
    background: none;
    text-align: center;
    margin: 0;
    color: #fff;
    font-size:50px;
    font-weight: bold;
    text-shadow: 5px 5px 10px #333;
  }
  .pv p{
    color:#000;
    padding:20px 0;
    text-align: center;
  }
  .pv img{
    width: 100%;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .pv{
    width: 90%;
    margin: 0 auto;
    padding: 40px 0 0 0;
  }
  .pv h3{
    width:100%;
    background: none;
    text-align: center;
    margin: 0;
    color: #fff;
    font-size:18px;
    font-weight: bold;
    text-shadow: 5px 5px 10px #333;
  }
  .pv p{
    color:#000;
    padding:20px;
    margin-top:5px;
    background:#fff;
    opacity:0.7;
  }
  .pv img{
    width: 100%;
  }
}

@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_pro{
    position: relative;
    margin-top: 50px;
    padding-bottom:50px;
  }
  .img_pro span{
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .img_pro img{
    margin-top:50px;
  }
  .attention2{
    width: 100%;
    text-align: center !important;
    margin-top:0;
    margin-bottom: 50px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_pro span{
    display: block;
    width:75%;
    margin: 20px auto 0;
  }
  .img_pro img.sp{
    width:100%;
    margin-top:30px;
  }
  .img_pro img{
    width:100%;
  }
  .attention2{
    clear:both;
    width: 100%;
    text-align: center !important;
    margin-top:0 auto !important;
    padding-top:30px;
    font-size:12px;
  }
}

.product-copylight{color:#000;}
