section {
  margin: 50px auto 80px;
}
.inner {
  width: 1200px;
  max-width: 90%;
  margin: auto
}
#search {
  background: #f6f6f6;
  padding: 50px 0;
}
.cinema h2 {
  font-size: 1.7rem;
  display: flex;
  justify-content: start;
  width: 1200px;
  margin: auto;
  align-items: center;
  gap: 20px;
}
.cinema h2:before {
  content: "";
  width: 4px;
  height: 35px;
  background: #7ecf46;
}
.cinema .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 1200px;
  max-width: 100%;
  margin: 20px auto;
}

.cinema .clm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cinema .grid .img_area {
  aspect-ratio: 3 / 4;
  position: relative;
  /* border-radius: 8px; */
  background: #3333330a;
}
.cinema .grid .img_area img {
  width: 100%;
  height: 100%;
  /* border-radius: 8px; */
  object-fit: contain;
}
.cinema .grid .img_area .no {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: #afafaf;
  /* border-radius: 8px 0 0 0; */
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cinema .grid .clm:first-child .img_area .no {
  background: #7ecf46;
}
.cinema .grid .clm:nth-child(2) .img_area .no {
  background: #aae185;
}
.cinema .grid .clm:nth-child(3) .img_area .no {
  background: #bad8a6;
}
.cinema .grid .txt_area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cinema .grid .txt_area p {
  font-weight: 600;
}
.cinema .grid .clm {
  transition: all 0.5s ease;
  transform: translateY(0);
}
.cinema .grid .clm:hover {
  transform: translateY(-8px);
}
.cinema .star {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cinema .star img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100px;
}
.cinema #main_wrapper .wp-block-columns #main {
  margin: 50px auto;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px auto;
}
.search {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #78d337;
  background: #fff;
}
.search h3 {
  font-size: 1.2rem;
  text-align: center;
  background: #78d337;
  padding: 10px;
}
.search ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 0 10px;
}

.search ul li a {
  aspect-ratio: 3 / 4;
  background: #f7f7f7;
}
.search ul li a:hover {
  opacity: 0.7;
}
.search ul li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search .button_wrapper .button {
  padding: 5px;
  margin: 0 auto 10px;
  max-width: 300px;
}
.vod-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #ddd;
}
.vod-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.vod-list a:hover {
  opacity: 0.7;
}
.vod-list a img {
  max-width: 50px;
}

#year ul {
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #ddd;
}
#year ul li {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}
#year ul li a {
  font-size: 1rem;
  padding: 5px 15px;
  border-right: 1px solid #ddd;
}
#year ul li a:first-child {
  font-weight: 600;
  border-right: none;
  padding-right: 40px;
}
#year ul li a:last-child {
  border-right: none;
}
#year ul li a:hover {
  opacity: 0.7;
}
#country ul {
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #ddd;
}
#country ul li {
  display: flex;
  flex-wrap: wrap;
}
#country ul li a {
  font-size: 1rem;
  padding: 5px 15px;
  border-right: 1px solid #ddd;
  margin: 6px 0;
}
#country ul li a:last-child {
  border-right: none;
}
#genre ul {
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #ddd;
}
#genre ul li a {
  font-size: 1rem;
  padding: 5px 15px;
  border-right: 1px solid #ddd;
}
#genre ul li a:last-child {
  border-right: none;
}
#review {
  background: #f6f6f6;
  padding: 50px 0;
}
#review .review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px auto;
}
#review .review-list .review-item {
  background: #fff;
  padding: 15px;
  transition: all 0.5s ease;
  transform: translateY(0);
  display: flex;
  gap: 10px;
}
#review .review-text-area {
  width: 100%;
}
#review .review-list .review-item:hover {
  transform: translateY(-8px);
  box-shadow: rgba(68, 68, 68, 0.231372549) 0px 0px 9px 3px;
}
#review .review-list .img_area {
  aspect-ratio: 3 / 4;
  max-width: 250px;
  float: right;
  margin: 10px;
  background: #3333330a;
  width: 100%;
}
#review .review-list .img_area a {
  display: block;
  height: 100%;
}
#review .review-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#review .review-list h3 {
  font-size: 1.3rem;
  margin-top: 20px;
}
#review .review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
#review .review-user .img_area {
  width: 70px;
  height: 70px;
}
#review .review-user .img_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#review .review-score {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
#review .review-score .img_area {
  width: 100%;
  height: auto;
  max-width: 120px;
  aspect-ratio: auto;
  background: none;
}
#review .review-score .img_area img {
  object-fit: contain;
}
#review .review-text {
  font-size: 1rem;
}
/* ネタバレ */

#review .review-text-area.is-spoiler .review-text {
  filter: blur(6px);
  transition: 0.3s;
  user-select: none;
}

#review .review-text-area.is-spoiler.open .review-text {
  filter: blur(0);
}

#review .spoiler-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  border: none;
  margin: 0 0 10px;
}
#review .spoiler-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #ffeb3b;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}

@media screen and (max-width: 768px) {
  #search {
    margin: 0 auto;
  }
  #ranking h2 {
    font-size: 1.5rem;
  }
  #pickup {
    padding-top: 10px;
  }
  .cinema .grid  {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    /* Ã¤Â¸Â­Ã¥Â¤Â®Ã¥Å¸ÂºÃ¦Âºâ€“Ã£â€šâ€™Ã¤Â½Å“Ã£â€šâ€¹ */
    /* padding-left: 25%; */
    gap: 0;
  }

  .cinema .grid .clm {
    width: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 10px;
  }

  .cinema .grid  .clm:hover {
    transform: none; 
  }
  #review .review-list {
    grid-template-columns: repeat(1, 1fr);
  }
  #review .review-list .review-item {
    flex-direction: column;
    width: 100%;
  }
  #review .review-list .img_area {
    width: 100%;
    margin: auto;
  }
  #review .review-list .img_area a {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #review .review-score {
    justify-content: flex-start;
  }
  #review .review-score .img_area {
    margin: 20px 0;
  }
}