/* CSS Document */
.moviebox{
	position: relative;
	max-width: 85%;
	height: auto;
	margin: 0 auto;
}
.moviebox::before {
	content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub);	
	transform: rotate(-5deg) translate(3px, 3px);
}
.moviebox .youtube-wrap{
	border: 2px solid #fff;
}

.cards {
	display: flex;
	gap:30px;
}
@media screen and (max-width: 767px) {
.cards {
	flex-direction: column;
}
}

.cards .cards_item{
	flex:1;
}
.cards .cards_item .thumb{
	position: relative;
	width: 60%;
	height: auto;
	margin: 0 auto 20px;
}
.cards .cards_item .thumb img {
	display: block;
	position: relative;
}
.cards .cards_item .thumb::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-main);
    border-radius: 15px;
	transform: rotate(7deg) translate(5px, 10px);
}
.cards .cards_item .summary {
    background-color: #fff;
    padding: 0px;
    border: 2px solid var(--color-text);
    box-shadow: 3px 3px 0px var(--color-text);
}
@media screen and (max-width: 767px) {
.cards .cards_item .summary {
	width: calc(100% - 16px);
	margin: 0 auto;
	}
}
.cards .cards_item .summary .ttl {
	font-size: var(--txt-size-l);
	font-weight: bold;
	color: #fff;
	padding: 12px;
	background-color: var(--color-text);
	margin: 0;
	display: flex;
	align-items: center;
	line-height: 1;
	gap:10px;
}
@media screen and (max-width: 767px) {
.cards .cards_item .summary .ttl {
	padding: 8px;
}
}

.cards .cards_item .summary .ttl::before {
	content: "";
	display: block;
	width: var(--txt-size-l);
	height: var(--txt-size-l);
	background-image: url("../img/ball_w.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.cards .cards_item .summary .txt {
	font-size: var(--txt-size-l);
	padding: 15px;
	margin: 0;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
.cards .cards_item .summary .txt {
	padding: 8px;
}
}
.howto {
display: flex;
	align-items: center;
	gap:30px;
}
@media screen and (max-width: 767px) {
.howto {
	flex-direction: column;
}
}


.howto .howoto_left{
	flex: 1;
}

.howto .howoto_right {
	width: 42%;
}
@media screen and (max-width: 767px) {
.howto .howoto_right {
	width: 60%;
}
}