@charset "UTF-8";
/* CSS Document */
.gallery-header{
  position:fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 12vh;
  background-color: #FFF;
}
@media (max-width: 425px){
  .gallery-header{
   height: 10vh;  
  }
}

.gallery{
  margin: 0 auto;
  padding-top:12vh;
  padding-bottom: 90vh;
}
.gallery h1{
  font-size: calc(16px + 380 *(100vw - 280px)/1640);
  font-weight: 400;
  text-align: left;
  padding-left: 4vw;
  padding-right: 4vw;
}
.gallery-inner{
  padding: 10vh 4vw 4vh;
  display: flex;
  flex-direction: column;
  gap:6vw;
}
.gallery-inner ul{
  list-style: none;
}
.gallery-inner img{
  display: block;
  width: 100%;
  z-index: 99;
}
.itemA_flex-end{
  display: flex;
  justify-content: flex-end;
}
.itemA_flex-end li{
  width: 50%;
}
.itemB_flex-start {
  display: flex;
  justify-content: flex-start;
  gap: 4vw;
}
.itemB_flex-start li{
  width: calc((100% - 4vw * 2)/3);
}
.itemA_two{
  display: flex;
  gap: 4vw;
}
.itemB_space-between{
  display: flex;
  justify-content: space-between;
  gap: 4vw;
}
.itemB_space-between li{
  width: calc((100% - 4vw * 2)/3);
}
.itemB_flex-end{
  display: flex;
  justify-content: flex-end;
  gap: 4vw;
}
.itemB_flex-end li{
  width: calc((100% - 4vw * 2)/3);
}
.itemA_flex-start{
   display: flex;
  justify-content: flex-start;
}
.itemA_flex-start li{
  width: 50%;
}
@media (max-width: 425px){
  .gallery{
  padding-bottom: 18vh;
  }
  .gallery-inner{
    gap: 12vh;
  }
  .gallery-inner ul{  
  gap: 12vh;
}
  .itemA_flex-end{
  display: flex;
  flex-direction: column;
}
.itemA_flex-end li{
  width: 100%;
}
.itemB_flex-start {
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
.itemB_flex-start li{
  width: 70%;
  margin: 0 auto;
}
.itemA_two{
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
.itemA_two li{
  width: 100%;
}
  
.itemB_space-between{
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
.itemB_space-between li{
  width: 70%;
  margin: 0 auto;
}
.itemB_flex-end{
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
.itemB_flex-end li{
  width: 70%;
  margin: 0 auto;
}
.itemA_flex-start{
   display: flex;
  flex-direction: column;
}
.itemA_flex-start li{
  width: 100%;
}
}
