.youtube_flex {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}

.youtube_flex .youtube_box {
	width: 100%;
	margin: 0 auto 30px auto;
	width: calc((100% - 80px) / 2);
}

.youtube_flex .youtube_box h4 {
	margin-bottom: 10px;
}

.youtube_box_in {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_box_in iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 640px) {
	.youtube_flex .youtube_box {
		width: 90%;
	}
}

/*
 * 20250325追加
 */
.movie_list {
    margin-top: 20px;
    max-width: 705px;
}

.movie_list:not([open]) {
    margin-bottom: 20px;
}

.movie_list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.5em 2em;
    border-radius: 25px;
    background-color: #fb748f;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.movie_list summary::-webkit-details-marker {
    display: none;
}

.movie_list summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.movie_list[open] summary::after {
    transform: rotate(225deg);
}

.movie_list[open] .movie_list_in {
    padding: 30px 0 10px 0;
    text-align: center;
}
.movie_list a {
font-size: 18px;
  width: 90%;
  color: #333;
  text-align: left;
  background-color: #ffe5f1;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 auto 20px auto;
  padding: 10px 40px 10px 15px;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}
.movie_list a:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
.movie_list a:hover {
  text-decoration: none;
  opacity: 0.6;
}