@charset "utf-8";
/* CSS Document */

/*******************

 product page

********************/
html , body {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

/* content
--------------------------------------------------*/
.pd {
  font-size: clamp(11px,calc(22 / 750 * 100vw),22px);
  color:#303030;
  line-height: calc(34 / 22 * 1em);
  display: block;
  width: clamp(0px,100%,1200px);
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width:750px){
.pd {
    font-size: 14px;
  }
}
.pd a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}
.pd a:hover {
  text-decoration: underline;
}
.pd span, #lpfooter span {
  font-size: inherit;
  font-weight: inherit;
}
.pd img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  vertical-align: bottom;
}
.pd img.img-t {
  vertical-align: top;
}
/* cart css reset */

.pd header ,
.pd h1 ,
.pd h2 ,
.pd h3 ,
.pd p ,
.pd dl ,
.pd dt ,
.pd dd ,
.pd div ,
.pd section ,
.pd span {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
}

/* --------------------------------------------------------------- */ 
.pd .productmov {
  display: block;
  position: relative;
}
.pd .productmov__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.pd .productmov__size {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  width: clamp(305px,calc(610 / 750 * 100%),610px);
  height: 0;
  padding-bottom: clamp(145px,calc(370 / 750 * 100%),370px);
  border-radius: clamp(20px,calc(40 / 750 * 100vw ),40px);
}
.pd .productmov__size video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width:750px){
  .pd .productmov__size {
    width: clamp(305px,calc(610 / 1200 * 100%),610px);
    padding-bottom: clamp(145px,calc(370 / 1200 * 100%),370px);
    border-radius: clamp(20px,calc(40 / 1200 * 100vw ),40px);
  }
}
/* --------------------------------------------------------------- */ 

.pd .productdata {
  display: block;
  box-sizing: border-box;
  padding: clamp(15px,calc(30 / 750 * 100%), 30px);
  margin-bottom: clamp(40px,calc(80 / 750 * 100%), 80px);
}
.pd .productdata__title {
  background-image: -moz-linear-gradient( 120deg, rgb(236,219,253) 0%, rgb(236,219,253) 0%, rgb(221,236,253) 100%);
  background-image: -webkit-linear-gradient( 120deg, rgb(236,219,253) 0%, rgb(236,219,253) 0%, rgb(221,236,253) 100%);
  background-image: -ms-linear-gradient( 120deg, rgb(236,219,253) 0%, rgb(236,219,253) 0%, rgb(221,236,253) 100%);
  text-align: center;
  font-weight: 400;
  box-sizing: border-box;
  padding: clamp(5px,calc(10 / 750 * 100%), 10px);
  margin-bottom: clamp(15px,calc(30 / 750 * 100%), 30px);
  font-size: calc(14px,calc(28 / 750 * 100vw),28px);
  letter-spacing: 0.01em;
}
.pd .productdata__text {
  line-height: calc(34 / 22 * 1em);
  font-weight: 300;
  font-size: calc(11px,calc(22 / 750 * 100vw),22px);
  text-align: justify;
}


@media screen and (min-width:750px){
  .pd .productdata {
    padding: 30px;
    margin-bottom: 30px;
    max-width: 1060px;
    margin: 0 auto 50px;
  }
  .pd .productdata__title {
    background-image: -moz-linear-gradient( 120deg, rgb(236,219,253) 0%, rgb(236,219,253) 0%, rgb(221,236,253) 100%);
    background-image: -webkit-linear-gradient( 120deg, rgb(236,219,253) 0%, rgb(236,219,253) 0%, rgb(221,236,253) 100%);
    background-image: -ms-linear-gradient( 120deg, rgb(236,219,253) 0%, rgb(236,219,253) 0%, rgb(221,236,253) 100%);
    text-align: center;
    font-weight: 400;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 0.01em;
  }
  .pd .productdata__text {
    max-width: 840px;
    margin: 0 auto;
    line-height: 2em;
    font-size: 14px;
  }
}

