@charset "utf-8";
/* CSS Document */



/* パソコンで見たときは"pc"のclassがついた画像が表示される */
@media screen and (min-width:750px) {
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 749.98px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

@media only screen and (max-width: 749.98px) {
img { max-width: 100%; }
}


img {
 /*max-width: 90%;
 max-height: 90%;
 width: auto;
 height: auto;*/
 max-width: 100%;
 margin: 0 auto;


}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}