@charset "UTF-8";

/* PC用 */
@media screen and (min-width: 768px) , print {
  #documentvideo {
    width: 100%;
  }
  #documentvideo > #main-space {
    width: 100%;
    float: left;
  }
  #documentvideo > #sub-space {
    width: calc(32% - 20px);
    padding: 10px;
    background-color: #eeeeee;
    float: left;
  }
  
  #video-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
  }
  #video-flex > li {
    width: calc(33% - 20px - 1em);
    margin-left: 1em;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
  #content_area > section#detail_spec > ul {
    align-items: stretch;
  }
  #content_area > section#detail_spec > ul > li {
    width: auto;
    flex-grow: 1;
  }
  #content_area > section#detail_spec > ul.four-views > li > img {
    margin: auto;
    width: 60%;
  }
  .flex-components {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: flex-end;
    width: 100%;
  }
  .flex-components > div {
    width: auto;
    flex-grow: 1;
    text-align: center;
  }
  .flex-components > div > img.s60 {
    width: 60%;
  }
}
 
/* 小さい画面用 */
@media screen and (max-width: 767px) {
  #documentvideo {
    width: 100%;
  }
  #documentvideo > #main-space {
    width: 100%;
  }
  #documentvideo > #sub-space {
    width: calc(100% - 20px);
    padding: 10px;
    background-color: #eeeeee;
  }
  
  #video-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    width: calc(100% - 10px);
  }
  #video-flex > li {
    width: calc(50% - 20px - 1em);
    margin-left: 1em;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
  .flex-components {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: flex-end;
    width: 100%;
  }
  .flex-components > div {
    width: calc(50% - 20px - 1em);
    text-align: center;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .flex-components > div > img.s60 {
    width: 60%;
  }
}




