@charset "utf-8";

/*------------------------------------------------------------------------------------------
*
*
    /webcatalog/styling/3d/
    Responsive / SP
*
*
------------------------------------------------------------------------------------------ */

/* 3D View iframe style */
  @media screen and (max-width: 768px) {
  .l-container__inner {
    padding: 40px 10px;
}
  #iframeWrap-parent {
    width: 100%; 
    max-width: 900px;
      margin-left: auto;
      margin-right: auto;
  } 
  #iframeWrap-child {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    /* 以下タテヨコ比（アスペクト比） */
    padding-top: 100%;
  }
  #iframeWrap-child iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
 }
  @media screen and (max-width: 768px) and (orientation:landscape) {
#iframeWrap-parent {
    width: 80%; 
  } 
 }