@charset "utf-8";

@media screen and ( min-width:767px ) { /* PC ==================== */
  .contents-header h1.logo_dg01{
    width:509px;
    margin-top:16px;
    margin-bottom:2px;
    margin-left:150px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .contents-header h1.logo_dg01{
    clear: none;
    width: 50%;
    float: right;
    /*margin-top: 18px;*/
    margin-top: 10px;
    margin-right: 10px;
  }
  .contents-header h1.logo_dg01 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: 460px;
    position: absolute;
    top: 170px;
    left:600px;
  }
}
@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:20px 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;
  }
}

/*サンダークラッシュキャリバー*/
.img_004{
  position: relative;
}
@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 p{
    position: absolute;
    width: 200px;
    top:250px;
    right:20px;
  }
  .img_004 img{
    width:100%;
  }
}
/*サンダークラッシュキャリバー　詳細*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_005{
    width:920px;
    overflow: hidden;
  }
  .img_005 .products-photo{
    position: absolute;
    top: 450px;
    right: -360px;
    overflow: hidden;
  }
  .img_005 .swiper-button-prev{
  	left:140px !important;
  }
  .img_005 .swiper-button-next{
  	right:380px !important;
  }
  .img_005 .swiper-pagination{
    left: 160px;
    width:700px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_005{
  }
  .img_005 .products-photo img{
    width:100%;
  }
}
/*　バトルハンガー　*/
.img_010 .products-photo{
  background: url("../img/010_bg.png") no-repeat;
  background-size: 100%;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_010 .products-photo{
    background-position: 0 -85px;
  }
  .img_010 .title-right{
    width:1165px;
    margin-left: 0;
  }
  .img_010 h3{

  }
  .img_010 h3,
  .img_010 h4,
  .img_010 p{
    width:920px;
    margin-left: 160px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_010{
    width:100%;
  }
  .img_010 h3,
  .img_010 h4{
    width:90%;
    margin:0 auto:
  }
  .img_010 p{
    width: 90%;
    margin: 20px auto 0;
  }
  .img_010 .products-photo{
    margin-top:10px;
    background-size: 100%;
    background-position: 0 -8px;
  }
  .img_010 img{
    width:100%;
  }
}

/*バトルハンガー：ライドアタックモード*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_011{
    margin-top: 30px;
  }
  .img_011 .title-center{
    width:960px;
    margin:0 auto;
  }
  .img_011 .title-center h3,
  .img_011 .title-center h4{
    width:100%;
    margin:0 auto;
  }
  .img_011 p{
    width:960px;
    margin:30px auto 0;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_011 .title-center{
    width:90%;
    margin: 0 auto;
  }
  .img_011 h3,
  .img_011 h4{
    width:100%;
  }
  .img_011 p{
    width: 90%;
    margin: 20px auto;
  }
  .img_011 img{
    width:100%;
    margin:0 0 30px 0;
    padding:0;

  }
}

/* ダイアクロン隊員 */
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_014{
    width:960px;
    margin: 30px auto 0;
  }
  .img_014 img{
}
  .img_014_left,
  .img_014_right{
    width:50%;
  }
  .img_014_left{
    float:left;
  }
  .img_014_right{
    float:right;
  }
  .img_014 .title-center{
    width:100%;
  }
  .img_014_left h3,
  .img_014_left h4{
    width:100%;
    margin-left:0;
  }
  .img_014_left p{
    width:100%;
    margin-top: 20px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_014{
    margin-top:30;
  }
  .img_014 .title-center{
    width:90%;
    margin: 0 auto;
  }
  .img_014 h3,
  .img_014 h4{
    width:100%;
  }
  .img_014 p{
    width: 90%;
    margin: 20px auto;
  }
  .img_014 img{
    width:95%;
    margin: 0 auto;
  }
}

/*ボレットファイター*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_013{
    position: relative;
    margin-top:20px;
    margin-bottom:30px;
  }
  .img_013_left{

  }
  .img_013_right{
    position: absolute;
    width: 420px;
    top: 0;
    right: 170px;
  }
  .img_013 .title-center{
    width:100%;
    top:0;
  }
  .img_013_right h3,
  .img_013_right h4{
    margin:0;
    width:100%;
  }
  .img_013_right p{
    width:420px;
    margin-top: 20px;
  }
  .img_013 .swiper-button-prev{
  	left: 70px;
  }
  .img_013 .swiper-button-next{
  	left: 605px;
  }
  .img_013 .swiper-pagination{
    left: 40px;
    width:600px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_013{
    width:100%;
    margin-bottom:30px;
  }
  .img_013 img{
    width:100%;
  }
  .img_013_left{
  }
  .img_013_right{
    width: 100%;
  }
  .img_013 .title-center{
    width:90%;
    margin:0 auto;
  }
  .img_013_right h3,
  .img_013_right h4{
    margin:0;
    width:100%;
  }
  .img_013_right p{
    width:90%;
    margin: 20px auto 0;
  }
  .img_013 .swiper-button-prev,
  .img_013 .swiper-button-next{
  }
  .img_013 .swiper-pagination{
  }
}

/*　グランドオメガクロス　*/
.title-goc{
  width:100%;
  background: url("../../img/title_bg_GOC.png") no-repeat;
  background-size: 100%;
  background-position: top;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .title-goc{
  }
  .title-goc h3,
  .title-goc h4{
    padding: 0;
    text-align: center;
    color:#fff;
  }
  .title-goc h3{
    background: none;
    padding-top:40px !important;
    font-size:50px;
  }
  .title-goc h4{
    background: none;
    padding-bottom:20px !important;
    font-size:35px;
  }
  .img_015{
    width:100%;
  }
  .img_015 img{
    margin:20px;
  }
  .img_015 p{
    position: absolute;
    width: 700px;
    top: 80px;
    left:50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .img_015 p span{
    color:#fff;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .title-goc{
    padding:0;
  }
  .title-goc h3 span{
    font-size:13px;
  }
  .title-goc h3,
  .title-goc h4{
    width:100%;
    text-align: center;
    color:#fff;
  }
  .title-goc h3{
    background: none;
    padding-top: 20px;
  }
  .title-goc h4{
    padding-bottom: 10px;
  }
  .img_015{
  }
  .img_015 p{
    width: 90%;
    margin:20px auto 0;
  }
  .img_015 img{
    width: 100%;
  }
}

/*　Aモード　*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_006{
    position: relative;
  }
  .img_006 .title-left{
    margin-top:56px;
    width:1280px;
    background-size: cover;
  }

  .img_006 p{
    width: 440px;
    position: absolute;
    top: 200px;
    left: 160px;
  }
  .img_006 img{
    margin-top: ;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_006{
  }
  .img_006 .title-right{
    width:100%;
    margin-top:50px;
  }
  .img_006 h3,
  .img_006 h4{
  }
  .img_006 p{
    width: 90%;
    margin: 0 auto;
  }
  .img_006 img{
    width:100%;
    margin-top:10px;
  }
}

/*　Aモード　02*/
.img_007{
  background: url("../img/007_bg.png") no-repeat;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_007{
    background-position: 0 285px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_007{
    background-size: 100%;
    background-position: 0 97px;
  }
  .img_007 img{
    width:100%;
  }
}

/*　Aモード　03*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_008 .title-right{
    margin-top:50px;

    width:1047px;
    margin-left: 30px;
  }
  .img_008 h3,
  .img_008 h4{
    width: 850px;
    margin-left: 130px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_008 .title-right{
    margin-top:30px;

  }
  .img_008{
    width:100%;
  }
  .img_008 img{
    width:100%;
  }
}

/*　Bモード　*/
.img_009{
  background: url("../img/009_bg.png") no-repeat;
}
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_009{
    background-position: 0 535px;
    margin-top:30px;
  }
  .img_009 .title-left{
    width:1169px;
    margin-left:28px;
  }
  .img_009 h3,
  .img_009 h4{
    width:960px;
    margin-left: 130px;
  }
  .img_009 p{
    width: 960px;
    margin-left: 160px;
  }
  .img_009 img{
    margin-top:20px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_009{
    background-size: 100%;
    background-position: 0 310px;
    margin-top:20px;
  }
  .img_009 .title-left{
    width:100%;
  }
  .img_009 h3,
  .img_009 h4{
    width:90%;
    margin: 0 auto;
  }
  .img_009 p{
    width: 90%;
    margin: 20px auto 0;
  }
  .img_009 img{
    width:100%;
  }
}

/*戦闘支援機*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_012{
  }
  .img_012 .title-right{
    width:1280px;
    background-size: cover;
    margin-top:50px;
  }
  .img_012 h3,
  .img_012 h4{
    width:960px;
    margin-left:160px;
  }
  .img_012 p{
    width: 960px;
    margin-top:20px;
    margin-left:160px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_012{
    width:100%;
    margin-top:20px;
  }
  .img_012 .title-right{
    width:100%;
  }
  .img_012 h3,
  .img_012 h4{
    width:90%;
    margin:0 auto;
  }
  .img_012 p{
    width: 90%;
    margin: 0 auto;
  }
  .img_012 img{
    width:100%;
  }
}

/*別製品との接続*/
@media screen and ( min-width:767px ) { /* PC ==================== */
  .img_016{
    position: relative;
  }
  .img_016 .title-left{
    width:1174px;
    background-size: 100%;
  }
  .img_016 h3{
    width:960px;
    margin-left:160px;
  }
  .img_016 p.vunitjoint{
    position: absolute;
    width: 500px;
    top: 200px;
    left: 160px;
    text-align:left;
  }
  .img_016 p.v2joint{
    width: 500px;
    text-align:left;
    margin-left:200px;
  }

  .img_016 p.attention{
    width: 100%;
    text-align: center;
    margin-top:50px;
    margin-bottom: 100px;
  }
}
@media screen and ( max-width:767px ) { /* SP ==================== */
  .img_016{
  }
  .img_016 img{
    width:100%;
  }
  .img_016 .title-left{
    margin-top:20px;
  }
  .img_016 p.vunitjoint,
  .img_016 p.v2joint{
    width: 90%;
    margin:0 auto;
  }
  .img_016 p.attention{
    width: 90%;
    margin:0 auto;
    margin-top:30px;
    margin-bottom: 50px;
  }
}

@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:20px;
    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_017{
    position: relative;
    margin-top: 50px;
    padding-bottom:50px;
  }
  .img_017 span{
    position: absolute;
    right: 225px;
    bottom: 120px;
  }
  .img_017 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_017 span{
    display: block;
    width:75%;
    margin: 20px auto 0;
  }
  .img_017 img.sp{
    width:100%;
    margin-top:30px;
  }
  .img_017 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;}
