@charset "utf-8";
/*――――――――――　heder　――――――――――*/
#main_visual > h1 {
  display: flex;
  align-items: center;
  max-width: 500px;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 16px auto 16px auto;
  padding: .5em 0px 0px 0px;
  border-radius: 10px;
  background-image: url(../img/cherry_liquor/cherry_liquor1.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  color: black;  
  font-size: 50px;
  text-indent: 0em;
  line-height: 1em;
  letter-spacing : 4px;
  text-shadow    : 
     4px  4px 1px white,
    -4px  4px 1px white,
     4px -4px 1px white,
    -4px -4px 1px white,
     4px  0px 1px white,
     0px  4px 1px white,
    -4px  0px 1px white,
     0px -4px 1px white;
  writing-mode: vertical-rl;
}
/*――――――――――　main　――――――――――*/
.poster_clippings {
  display: grid;
  grid-template-columns: repeat(auto-fit, 250px);
  gap: 16px 16px;
  justify-content: center;
  margin: 0px 0px 32px 0px;
  padding: 0px;
}
/*@media(min-width: 1280px) {
  .poster_clippings {
    max-width: 1280px;
    margin: 0px auto 0px auto;
  }
}*/
@media(max-width: 500px) {
  .poster_clippings {
    grid-template-columns: repeat(auto-fit, minmax(179.5px, 1fr));
  }
}
figure > img {
  max-width: 500px;
  width: 100%;
}
figcaption {
  text-align: center;
  line-height: 1.25em;
}
/*クリック前　戻る要素*/
.modal_window:not(:target) {
  display: none;
}
/*クリック後　戻る要素*/
.modal_window:target {  
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}
.modal_window:target img {
  border-radius: 100%;
}
.modal_window:target figcaption {
  color: white;
}