@charset "UTF-8";

/* 製品情報メニュー */

/* PC用 */
@media screen and (min-width: 768px) , print {
  /* 詳細ギャラリーページ用 */
  section#detail_gallery_ex {
    width: calc(100% - 20px);
    margin-bottom: 40px;
  }
  section#detail_gallery_ex > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    width: calc(100% - 8px);
  }
  section#detail_gallery_ex > ul > li {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 33%;
    text-align: center;
  }
  section#detail_gallery_ex > ul > li > div:first-child {
    display: flex;
    flex-grow: 1;
    align-items:flex-end;
    margin-bottom: 10px;
  }
  section#detail_gallery_ex > ul > li > div:first-child > img {
    width: 100%;
  }
  
  
}
 
/* 小さい画面用 */
@media screen and (max-width: 767px) {
  /* 詳細ギャラリーページ用 */
  section#detail_gallery_ex {
    width: calc(100% - 20px);
    margin-bottom: 40px;
  }
  section#detail_gallery_ex > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    width: calc(100% - 8px);
  }
  section#detail_gallery_ex > ul > li {
    display: flex;
    position: relative;
    flex-direction: column;
    margin-bottom: 20px;
    width: 45%;
    text-align: center;
  }
  section#detail_gallery_ex > ul > li > div:first-child {
    display: flex;
    flex-grow: 1;
    align-items:flex-end;
    margin-bottom: 10px;
  }
  
}


