@charset "utf-8";
.wakalove {
	position: relative;
}
.wakalove main {
	font-family: 'Zen Maru Gothic', serif;
	font-weight: 700;
	background: #ffe7b8;
	padding-bottom: 30px;
}
.wakalove img {
	width: 100%;
	height: auto;
	display: block;
}
.wakalove .loader {
	position: fixed;
	background: white;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100vh;
}
.wakalove.loaded .loader {
	animation: loader 0.4s 0.2s forwards;
}
.wakalove .loader_heart {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 100px;
	animation: heart_beat 1s infinite;
}
@keyframes loader {
	0% {
		opacity: 1;
	}
	99.99% {
		z-index: 999;
	}
	100% {
		opacity: 0;
		z-index: -1;
	}
}
.wakalove #topicPass {
	position: relative;
	top: 0;
	left: 50%;
	translate: -50% 0;
	z-index: 10;
	background: #fcc;
}
@keyframes opacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 100%;
	}
}
.wakalove #topicPass ul li {
	color: black;
}
.wakalove #topicPass ul li a:link,
.wakalove #topicPass ul li a:visited,
.wakalove #topicPass ul li a:active {
	color: black;
}

.wakalove .container_mainvisual {
	background: #fcc;
	position: relative;
	overflow: hidden;
}
.wakalove .cnt_logoarea {
	position: relative;
	width: 80%;
	max-width: 900px;
	margin: 0 auto;
	z-index: 10;
}
.wakalove .cnt_logoarea .logo {
	position: absolute;
	width: 85%;
	bottom: 15%;
	left: -10%;
	z-index: 10;
}
.wakalove .cnt_logoarea .logoheart {
	transform-origin: center;
	position: relative;
	z-index: 1;
}
.wakalove.loaded .cnt_logoarea .logoheart {
	animation: heart_beat 4s infinite;
}
@keyframes heart_beat {
	0% {
		scale: 1;
	}
	50% {
		scale: 1.1;
	}
	100% {
		scale: 1;
	}
}
@keyframes rotate {
	0% {
		rotate: 0;
	}
	25% {
		rotate: 10deg;
	}
	50% {
		rotate: 0;
	}
	75% {
		rotate: -10deg;
	}
	100% {
		rotate: 0;
	}
}
@keyframes slide_to_left {
	0% {
		translate: 10px 0;
	}
	100% {
		translate: 0 0;
	}
}
.wakalove .cnt_logoarea .logocatch {
	position: absolute;
	width: 37%;
	right: -10%;
	top: 3%;
	opacity: 0;
	z-index: 6;
}
.wakalove.loaded .cnt_logoarea .logocatch {
	animation: slide_to_left 1s 0.4s forwards, opacity 1s 0.4s forwards;
}
.wakalove .cnt_logoarea .onair {
	position: absolute;
	bottom: 13%;
	right: -5%;
	width: 40%;
	z-index: 20;
}
.wakalove .cnt_logoarea .deco01 {
	position: absolute;
	width: 20%;
	bottom: 20%;
	right: -15%;
	z-index: 5;
	animation: rotate 6s linear infinite;
}
.wakalove .cnt_logoarea .deco02 {
	position: absolute;
	width: 40%;
	bottom: 0;
	left: -10%;
	z-index: 5;
	animation: rotate 20s linear infinite;
}
.wakalove .cnt_logoarea .deco03 {
	position: absolute;
	width: 25%;
	top: 10%;
	left: -30%;
	animation: rotate 10s linear infinite;
}
.wakalove .cnt_logoarea .heart01 {
	position: absolute;
	width: 12%;
	bottom: 0;
	right: -15vw;
}
.wakalove .cnt_logoarea .heart02 {
	position: absolute;
	width: 15%;
	bottom: 25%;
	left: -10vw;
	z-index: 6;
}
.wakalove .cnt_outline {
	font-size: 1.8rem;
	padding: var(--p-m);
	line-height: 2.4;
	text-align: center;
	position: relative;
	z-index: 10;
}
.wakalove .cnt_outline span {
	display: block;
}
.wakalove .head_wakalove {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.wakalove .side_snsarea {
	position: absolute;
	top: 3%;
	right: 0;
	width: 10%;
	z-index: 20;
}
.wakalove .side_snsarea ul {
	list-style: none;
}
.wakalove .side_snsarea a {
	display: block;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	margin-bottom: 10px;
}
.wakalove .side_snsarea a img {
	width: 80%;
}
.wakalove .cnt_townarea {
	position: relative;
}
.wakalove .cnt_townarea .busstop {
	position: absolute;
	bottom: 10px;
	left: 10%;
	width: 15%;
}
@keyframes bus_animation {
	0% {
		left: 100%;
		opacity: 0;
	}
	.1% {
		opacity: 1;
		left: 100%;
	}
	30% {
		left: 40%;
	}
	40% {
		left: 20%;
	}
	45% {
		left: 16%;
	}
	50% {
		left: 13%;
	}
	60% {
		left: 13%;
	}
	70% {
		left: 10%;
	}
	99.99% {
		opacity: 1;
		left: -40%;
	}
	100% {
		left: -40%;
		opacity: 0;
	}
}
@keyframes bus_shake {
	0% {
		translate: 0 0;
	}
	50% {
		translate: 0 1px;
	}
	54% {
		translate: 0 -1px;
	}
	56% {
		translate: 0 1px;
	}
	58% {
		translate: 0 -1px;
	}
	64% {
		translate: 0 1px;
	}
	70% {
		translate: 0 -1px;
	}
	100% {
		translate: 0 0;
	}
}
.wakalove .cnt_townarea .bus {
	position: absolute;
	bottom: 10px;
	right: 0;
	width: 20%;
	animation: bus_animation 10s linear infinite, bus_shake 2s linear infinite;
}
.wakalove .logo_ttl {
	background: #ffe5ee;
	padding: 20px 5%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wakalove .logo_ttl div {
	flex-basis: 20%;
	margin: 0 1%;
}
.wakalove .logo_ttl .ttl_deco {
	flex-basis: 15%;
}
.wakalove .bg_lightpink {
	background: #ffe5ee;
	padding-bottom: 120px;
	border-radius: 0 0 250px 250px;
}
.wakalove .popttl {
	width: 300px;
	border-radius: 100px;
	position: relative;
	margin: 0 auto;
	padding: 20px 2%;
	text-align: center;
}
.wakalove .popttl:before {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	translate: -50% 0;
	width: 20px;
	height: 15px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.wakalove .corner_popttl {
	background: #d4daff;
}
.wakalove .corner_popttl:before {
	background: #d4daff;
}
.wakalove .cnt_cornerbox {
	display: flex;
	flex-wrap: wrap;
	border-radius: 250px;
	padding: 80px 5% 120px 5%;
	background: white;
	margin-top: -40px;
}
.wakalove .box_ttl {
	flex-basis: 100%;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}
.wakalove .box_ttl span {
	display: block;
	font-size: var(--fsz-m);
}
.wakalove .corner_ttl span {
	color: #e0d4ff;
}
.wakalove .corner_one {
	flex-basis: 29.33%;
	margin: 10px 2% 20px 2%;
	background: aliceblue;
	border-radius: 20px;
	padding-bottom: 10px;
}
.wakalove .corner_img {
	position: relative;
	margin-bottom: 10px;
	box-shadow: 0 0 10px #ccc;
	padding: 3%;
	border-radius: 20px;
	overflow: hidden;
}
.wakalove .corner_img:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/bangumi/wakalove/images/SVG/logo-heart.svg) center center / 200% no-repeat;
	opacity: 0.45;
	scale: 1;
	transition: all 0.4s;
}

.wakalove .corner_one a:hover .corner_img:before {
	opacity: 0.8;
	scale: 1.1;
	transition: all 0.4s;
}

.wakalove .corner_img img {
	position: relative;
	z-index: 10;
}

.wakalove .corner_one p {
	font-size: var(--fsz-m);
	font-weight: normal;
	line-height: 1.4;
	padding: 5%;
}

.wakalove .corner_one a {
	color: inherit;
}

.wakalove .corner_one a .cornerlink {
	background: #e0027d;
	display: block;
	color: white;
	text-align: center;
	font-size: var(--fsz-m);
	margin-top: 8px;
	border-radius: 10px;
	padding: 10px 2%;
	transition: all 0.2s;
}

.wakalove .corner_one a:hover .cornerlink {
	background: #ffe5ee;
	color: #e0027d;
	transition: all 0.2s;
}

.wakalove .newcornerbox {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row-reverse;
	flex-basis: 100%;
	margin-bottom: 20px;
}

.wakalove .newcornerbox .cornerimg {
	flex-basis: 350px;
	margin-right: 10px;
}

.wakalove .newcornerbox .cornerinfo {
	font-size: var(--fsz-m);
	text-align: center;
	background: #ffd4e2;
	padding: 2% 5%;
	border-radius: 100px;
	box-sizing: border-box;
	flex-basis: calc(100% - 360px);
}

.wakalove .newcornerbox .cornerinfo b {
	font-size: var(--fsz-l);
	display: block;
	color: deeppink;
}

.wakalove .newcornerbox .cornerlink {
	display: block;
	margin-top: 10px;
	background: deeppink;
	color: white;
	padding: 10px;
	border-radius: 20px;
}

.wakalove .container_cast {
	margin-top: -150px;
}

.wakalove .cast_popttl {
	background: #fffbc9;
}
.wakalove .cast_popttl:before {
	background: #fffbc9;
}
.wakalove .cnt_castbox {
	display: flex;
	flex-wrap: wrap;
	border-radius: 250px;
	padding: 80px 5% 120px 5%;
	background: #d4f4ff;
	margin-top: -40px;
}
.wakalove .cast_ttl span {
	color: #ffcf5f;
}
.wakalove .castwrap {
	flex-basis: 100%;
	display: flex;
	flex-wrap: wrap;
}
.wakalove .cast_one {
	position: relative;
	flex-basis: 31.33%;
	margin: 10px 1% 20px 1%;
}
.wakalove .cast_one:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 25%;
	height: 100%;
	background: url(/bangumi/wakalove/images/SVG/cast_deco01.svg) 0 60%/100% no-repeat;
}
.wakalove .cast_one:nth-of-type(2n):before {
	right: unset;
	left: 0;
	background: url(/bangumi/wakalove/images/SVG/cast_deco02.svg) left 0 bottom 20%/100% no-repeat;
}
.wakalove .cast_img {
	width: 90%;
	margin: 0 auto;
}
.wakalove .cast_one p {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 200px;
	background: #e93400;
	color: white;
	text-align: center;
	font-size: var(--fsz-m);
	padding: 15px 2%;
	border-radius: 100px;
}
.wakalove .cast_one p span {
	font-size: var(--fsz-s);
	display: block;
}
.wakalove .cast_one .copyright {
	text-align: center;
	font-size: var(--fsz-s);
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
}

.wakalove .container_set {
	margin-top: -150px;
}
.wakalove .set_popttl {
	background: #ffd4e2;
}
.wakalove .set_popttl:before {
	background: #ffd4e2;
}
.wakalove .cnt_setbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	border-radius: 250px;
	padding: 80px 5% 120px 5%;
	background: #fff6e0;
	margin-top: -40px;
}
.wakalove .set_ttl span {
	color: #ffbfe4;
}
.wakalove .set_one {
	flex-basis: 44%;
	box-sizing: border-box;
	margin: 0 1%;
}
.wakalove .set_one_horizon {
	flex-basis: 100%;
	margin: 0 auto 30px auto;
}
.wakalove .set_one_horizon .set_img {
	width: 80%;
	margin: 0 auto;
}
.wakalove .artistbox {
	margin-top: -50px;
}
.wakalove .set_one_horizon .artistbox {
	margin: -100px auto 0 auto;
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	align-items: center;
}
.wakalove .set_one_horizon .artistbox .artist_img {
	flex-basis: 300px;
}
.wakalove .artistbox .artist_img {
	width: 300px;
	margin: 0 auto 20px auto;
}

.wakalove .artistbox .artist_info {
	font-size: 1.6rem;
	background: white;
	border-radius: 100px;
	padding: 30px;
	box-sizing: border-box;
}
.wakalove .artistbox .artist_info p {
	font-size: var(--fsz-m);
	margin-top: 10px;
}
.wakalove .set_one_horizon .artistbox .artist_info {
	flex-basis: calc(100% - 320px);
}

@media screen and (max-width: 980px) {
	.wakalove .newcornerbox .cornerimg {
		flex-basis: 300px;
	}

	.wakalove .newcornerbox .cornerinfo {
		flex-basis: calc(100% - 310px);
	}
}

@media screen and (max-width: 897px) {
	.wakalove .side_snsarea {
		right: 2%;
	}
	.wakalove .cnt_logoarea .logocatch {
		right: -3%;
	}
	.wakalove .cnt_outline {
		font-size: 1.6rem;
	}
	.wakalove .bg_lightpink {
		border-radius: 0 0 150px 150px;
	}
	.wakalove .cnt_cornerbox,
	.wakalove .cnt_castbox,
	.wakalove .cnt_setbox {
		border-radius: 150px;
	}
	.wakalove .box_ttl {
		font-size: 2.2rem;
	}
	.wakalove .cast_one:before {
		background: url(/bangumi/wakalove/images/SVG/cast_deco01.svg) 0 50% / 100% no-repeat;
	}
	.wakalove .cast_one:nth-of-type(2n):before {
		background: url(/bangumi/wakalove/images/SVG/cast_deco02.svg) left 0 bottom 30% / 100% no-repeat;
	}
	.wakalove .cast_one p {
		width: 85%;
		padding: 10px 2%;
	}
	.wakalove .artistbox .artist_info {
		border-radius: 60px;
	}
	.wakalove .newcornerbox .cornerimg {
		flex-basis: 220px;
	}

	.wakalove .newcornerbox .cornerinfo {
		flex-basis: calc(100% - 230px);
	}
}
@media screen and (max-width: 767px) {
	.wakalove .cnt_logoarea .logocatch {
		width: 50%;
		right: -17%;
	}
	.wakalove .cnt_logoarea .onair {
		bottom: -2%;
		width: 50%;
	}
	.wakalove .cnt_logoarea .deco01 {
		width: 28%;
	}
	.wakalove .cnt_logoarea .deco02 {
		width: 48%;
		bottom: -15%;
	}
	.wakalove .cnt_logoarea .deco03 {
		width: 27%;
		left: -23%;
	}
	.wakalove .cnt_outline {
		font-size: var(--fsz-l);
	}
	.wakalove .side_snsarea {
		position: relative;
		top: unset;
		right: unset;
		width: 100%;
	}
	.wakalove .side_snsarea ul {
		display: flex;
		justify-content: center;
	}
	.wakalove .side_snsarea li {
		margin: 0 10px;
	}
	.wakalove .side_snsarea a {
		width: 60px;
		height: 60px;
	}
	.wakalove .cnt_cornerbox,
	.wakalove .cnt_castbox,
	.wakalove .cnt_setbox {
		border-radius: 100px;
	}
	.wakalove .corner_one {
		flex-basis: 46%;
	}
	.wakalove .cast_one {
		flex-basis: 48%;
	}
	.wakalove .artistbox .artist_img {
		width: 200px;
	}
	.wakalove .set_one_horizon .artistbox .artist_img {
		flex-basis: 200px;
	}
	.wakalove .set_one_horizon .artistbox .artist_info {
		flex-basis: calc(100% - 220px);
	}
	.wakalove .artistbox .artist_info {
		font-size: var(--fsz-xl);
	}
	.wakalove .newcornerbox .cornerinfo {
		font-size: var(--fsz-n);
	}

	.wakalove .newcornerbox .cornerinfo b {
		font-size: var(--fsz-m);
	}
}
@media screen and (max-width: 660px) {
	.wakalove .newcornerbox {
		display: block;
	}
}

@media screen and (max-width: 520px) {
	.wakalove .artistbox,
	.wakalove .set_one_horizon .artistbox {
		margin-top: -30px;
	}
	.wakalove .artistbox .artist_img {
		width: 160px;
		margin-bottom: 10px;
	}
	.wakalove .set_one_horizon .artistbox .artist_img {
		flex-basis: 160px;
	}
	.wakalove .set_one_horizon .artistbox .artist_info {
		flex-basis: calc(100% - 180px);
	}
}
@media screen and (max-width: 480px) {
	.wakalove .cnt_outline {
		font-size: var(--fsz-m);
	}
	.wakalove .side_snsarea a {
		width: 40px;
		height: 40px;
	}
	.wakalove .cnt_townarea {
		margin-top: 50px;
	}
	.wakalove .cnt_townarea .town_img {
		scale: 1.4;
	}
	.wakalove .cnt_townarea .busstop {
		width: 20%;
	}
	.wakalove .cnt_townarea .bus {
		width: 30%;
	}
	.wakalove .logo_ttl div {
		flex-basis: 25%;
	}
	.wakalove .logo_ttl .ttl_deco {
		flex-basis: 20%;
	}
	.wakalove .popttl {
		width: 80%;
		font-size: var(--fsz-n);
	}
	.wakalove .cnt_cornerbox {
		display: block;
	}
	.wakalove .cnt_cornerbox,
	.wakalove .cnt_castbox,
	.wakalove .cnt_setbox {
		border-radius: 70px;
	}
	.wakalove .cnt_castbox,
	.wakalove .cnt_setbox {
		padding-bottom: 50px;
	}
	.wakalove .cast_one p {
		width: 95%;
		font-size: var(--fsz-n);
		bottom: -20px;
	}
	.wakalove .cast_one p span {
		font-size: 10px;
	}
	.wakalove .cast_one .copyright {
		bottom: -37px;
		line-height: 1.1;
		font-size: 10px;
	}
	.wakalove .cnt_setbox {
		display: block;
	}
	.wakalove .set_one {
		margin-bottom: 30px;
	}
	.wakalove .set_one .set_img {
		width: 80%;
		margin: 0 auto;
	}
	.wakalove .set_one_horizon .artistbox {
		display: block;
	}
}
@media screen and (max-width: 360px) {
	.wakalove .cnt_logoarea .onair {
		bottom: -6%;
		width: 60%;
	}
	.wakalove .cnt_outline {
		font-size: var(--fsz-n);
	}
	.wakalove .cnt_cornerbox,
	.wakalove .cnt_castbox,
	.wakalove .castwrap {
		display: block;
	}
	.wakalove .cast_one p {
		bottom: 0;
	}
	.wakalove .cast_one .copyright {
		bottom: -20px;
	}
	.wakalove .artistbox .artist_img {
		width: 70%;
	}
}
/* コーナーページヘッダー */
.wakalove.cornerpage main {
	padding-bottom: 0;
}
.wakalove.cornerpage .cnt_logoarea {
	width: 100%;
	max-width: 1200px;
}
.wakalove.cornerpage .cnt_logoarea .logo {
	width: 30%;
	left: 0;
}
.wakalove.cornerpage .cnt_logoarea .logoheart {
	width: 35%;
}
.wakalove.cornerpage .cnt_logoarea .logocatch {
	width: 20%;
	right: unset;
	left: 25%;
}
.wakalove.cornerpage .cnt_logoarea .onair {
	width: 30%;
	right: 23%;
	bottom: unset;
	top: 50%;
	translate: 0 -50%;
}
.wakalove.cornerpage .cnt_logoarea .deco01 {
	width: 25%;
	bottom: -26%;
	right: 5%;
}
.wakalove.cornerpage .cnt_logoarea .deco02 {
	width: 20%;
	bottom: -25%;
	left: -5%;
}
.wakalove.cornerpage .cnt_logoarea .deco03 {
	width: 16%;
	top: 0;
	left: -14%;
}
.wakalove.cornerpage .cnt_logoarea .heart01 {
	width: 10%;
	top: 0;
	bottom: unset;
	right: 0;
}
.wakalove.cornerpage .cnt_logoarea .heart02 {
	width: 8%;
	bottom: 25%;
	left: -5%;
}
.wakalove.cornerpage .side_snsarea {
	top: unset;
	bottom: 0;
	width: 53%;
}
.wakalove.cornerpage .side_snsarea ul {
	display: flex;
}
.wakalove.cornerpage .side_snsarea ul li {
	margin: 0 10px;
}
@media screen and (max-width: 897px) {
	.wakalove.cornerpage .side_snsarea ul li {
		margin: 0 7px;
	}
	.wakalove.cornerpage .side_snsarea a {
		width: 60px;
		height: 60px;
	}
}
@media screen and (max-width: 767px) {
	.wakalove.cornerpage .cnt_logoarea .onair {
		top: 37%;
	}
	.wakalove.cornerpage .side_snsarea {
		position: absolute;
		right: 0;
		bottom: 0;
	}
	.wakalove.cornerpage .side_snsarea ul {
		justify-content: flex-start;
	}
}
@media screen and (max-width: 480px) {
	.wakalove.cornerpage .side_snsarea a {
		width: 40px;
		height: 40px;
	}
}
@media screen and (max-width: 360px) {
	.wakalove.cornerpage .cnt_logoarea .onair {
		top: 25%;
	}
	.wakalove.cornerpage .side_snsarea ul li {
		margin: 0px 4px;
	}
}
@media screen and (max-width: 300px) {
	.wakalove.cornerpage .cnt_logoarea .onair {
		top: 20%;
	}

	.wakalove.cornerpage .side_snsarea {
		width: 58%;
	}
	.wakalove.cornerpage .side_snsarea a {
		width: 30px;
		height: 30px;
	}
}

/* わかきん */
.wakalove.wakakin .cnt_cornerbox {
	display: block;
	padding: 40px 5% 120px 5%;
}
.wakalove.wakakin .corner_ttl {
	width: 50%;
	max-width: 500px;
	margin: 0 auto;
}
.wakalove.wakakin .corner_ttl span {
	color: #ffbfe4;
}
.wakalove.wakakin .wakakinspbox {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
}
.wakalove.wakakin .spone {
	flex-basis: 30%;
}
.wakalove.wakakin .spone:nth-child(1) {
	flex-basis: 100%;
}
.wakalove.wakakin .spone:nth-child(1) img {
	width: 60%;
	max-width: 450px;
	margin: 0 auto;
}
.wakalove.wakakin .cornermoviebox {
	width: 100%;
	max-width: 1200px;
	margin: 30px auto 0 auto;
	background: url(../images/1000w/wakakin.png) right center/30% no-repeat;
}
.wakalove.wakakin .cornermovie {
	width: 75%;
}
.wakalove.wakakin .movieinner {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	position: relative;
	background: var(--gray);
}
.wakalove.wakakin .cornermovie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* display: block; */
	z-index: 10;
}
.wakalove.wakakin .cornerbacknumber {
	margin-top: 50px;
}
.wakalove.wakakin .bknumone {
	background: #f5f6f7;
	margin-top: 15px;
}
.wakalove.wakakin .bknumone a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.wakalove.wakakin .bknumimg {
	flex-basis: 180px;
}
.wakalove.wakakin .bknuminfo {
	flex-basis: calc(100% - 200px);
	font-size: var(--fsz-m);
	display: flex;
	align-items: center;
}
.wakalove.wakakin .bknummore {
	margin-top: 20px;
}
.wakalove.wakakin .themesongbox {
	margin-top: 50px;
	font-size: var(--fsz-m);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.wakalove.wakakin .themesong {
	font-size: var(--fsz-l);
	font-weight: bold;
	flex-basis: 400px;
	background: #e93400;
	border-radius: 50px;
	text-align: center;
	box-sizing: border-box;
	padding: 2%;
	color: white;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.wakalove.wakakin .themesong span {
	font-size: var(--fsz-n);
	flex-basis: 100%;
	display: block;
	margin-bottom: -5px;
}
.wakalove.wakakin .themesongbox p {
	flex-basis: calc(100% - 420px);
}
.wakalove.wakakin .corneroutline {
	font-size: var(--fsz-m);
}
@media screen and (max-width: 897px) {
	.wakalove.wakakin .cnt_cornerbox {
		display: block;
		padding: 50px 5%;
	}
	.wakalove.wakakin .corner_ttl {
		width: 70%;
		max-width: 800px;
	}
	.wakalove.wakakin .themesong {
		flex-basis: 300px;
	}
	.wakalove.wakakin .themesongbox p {
		flex-basis: calc(100% - 320px);
	}
}
@media screen and (max-width: 767px) {
	.wakalove.wakakin .wakakinspbox {
		width: 95%;
	}
	.wakalove.wakakin .themesong {
		flex-basis: 200px;
	}
	.wakalove.wakakin .themesongbox p {
		flex-basis: calc(100% - 220px);
	}
}
@media screen and (max-width: 600px) {
	.wakalove.wakakin .wakakinspbox {
		width: 100%;
	}
	.wakalove.wakakin .cornermovie {
		width: 100%;
	}
	.wakalove.wakakin .cornermoviebox {
		margin: 30px auto 0 auto;
		background: url(../images/1000w/wakakin.png) center top / 60% no-repeat;
		padding-top: 67%;
	}
	.wakalove.wakakin .themesongbox {
		display: block;
	}
	.wakalove.wakakin .themesong {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 480px) {
	.wakalove.wakakin .spone {
		flex-basis: 49%;
	}
	.wakalove.wakakin .spone:nth-child(1) {
		flex-basis: 100%;
	}
	.wakalove.wakakin .spone:nth-child(1) img {
		width: 70%;
		margin: 0 auto;
	}

	.wakalove.wakakin .cornermoviebox {
		margin: 0;
		background: url(../images/1000w/wakakin.png) center top / 75% no-repeat;
		padding-top: 57%;
	}
}
