@charset "utf-8";

/* == reset == */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
.ui_font_ns{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	letter-spacing: 2px;
}
html { font-size:100%;}
body { font-size:16px; background:#fff; font-family: "Noto Sans JP",'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',Arial,Helvetica,sans-serif; font-weight: 500; line-height:1.85; color:#333;}
body, h1, h2, h3, h4, h5, h6, p, dl, dd, ul, ol, li, form, fieldset, blockquote, table, thead, tbody, tfoot, tr, td, th { margin:0; padding:0;}
th, td, table, input, button, select, textarea {
	font-size:1rem;
	font-weight:normal;
	font-style:normal;
	padding:0;
	margin:0;
}
table {
	width:100%;
	border-width:0;
	border-spacing:0;
	border-collapse:collapse;
}
img, input, button, select, textarea {
	vertical-align:middle;
}
ul, ol {
	list-style:none;
}
a {
	color:#333;	
	text-decoration:underline;
	opacity:1;
	transition:0.3s;
}
a:hover {
	outline:none;
	text-decoration:none;
	opacity:0.6;
	transition:0.3s;
}
body * {
    box-sizing: border-box;
    word-wrap: break-word;
}
img,video {
	border:0;
	max-width: 100%;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
	img{
		width: 100%;
	}
}

/* == / reset == */

/* == layout == */
.ui_screen{
	display: block;
}
.pcNone {
	display:none;
}
.ui_db{
	display: block;
}
.ui_dib{
	display: inline-block;
}
.ui_df{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.ui_aic{
	align-items: center;
}
.ui_aife{
	align-items: flex-end;
}
.ui_aifs{
	align-items: flex-end;
}
.ui_wide{
	max-width:1102px;
	margin:0 auto;
}
.ui_wide_s{
	max-width:800px;
	margin:0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.ui_wide,.ui_wide_s{
		width:auto;
		margin: 0 15px;
	}
}
@media only screen and (min-width: 0) and (max-width: 767px) {
	.spNone {
		display:none!important;
	}
	.pcNone {
		display:block!important;
	}
	.ui_screen{
		display: inline;
	}
	.ui_df_sp{
		display: flex!important;
		justify-content: space-between;
		align-items: stretch;
	}
	.ui_wide,.ui_wide_s{
		width:92vw;
		margin:0 4vw;
	}
}
/* == / layout == */

/* == / margin == */
.ui_mt0{
	margin-top: 0 !important;
}
[class *= "ui_mb_"]{
	padding-bottom: 0.1px;
}
.ui_mb0{
	margin-bottom: 0 !important;
}
.ui_mb5{
	margin-bottom: 5px !important;
}
.ui_mb10{
	margin-bottom: 10px !important;
}
.ui_mb15{
	margin-bottom: 15px !important;
}
.ui_mb20{
	margin-bottom: 20px !important;
}
.ui_mb25{
	margin-bottom: 25px !important;
}
.ui_mb30{
	margin-bottom: 30px !important;
}
.ui_mb40{
	margin-bottom: 40px !important;
}
.ui_mb50{
	margin-bottom: 50px !important;
}

@media only screen and (min-width: 0) and (max-width: 767px) {
	.ui_mt0sp{
		margin-top: 0 !important;
	}
	.ui_mb0sp{
		margin-bottom: 0 !important;
	}
	.ui_mb5sp{
		margin-bottom: 5px !important;
	}
	.ui_mb10sp{
		margin-bottom: 10px !important;
	}
	.ui_mb15sp{
		margin-bottom: 15px !important;
	}
	.ui_mb20sp{
		margin-bottom: 20px !important;
	}
	.ui_mb25sp{
		margin-bottom: 25px !important;
	}
	.ui_mb30sp{
		margin-bottom: 30px !important;
	}
	.ui_mb40sp{
		margin-bottom: 40px !important;
	}
}
/* == / margin == */

/* == / font == */
.ui_font_n{
	font-weight: normal;
}
.ui_font_b{
	font-weight: bold;
}
.ui_font_al{
	text-align: left!important;
}
.ui_font_ar{
	text-align: right!important;
}
.ui_font_ac{
	text-align: center!important;
}
/* == / font == */


.ui_menu_wp{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	border-radius: 35px;
	background: linear-gradient(180deg , #c366b5 0% , #fd8a22 100%);
	color: #fff;
}
.ui_menu{
	transition: 0.6s cubic-bezier(0.25,0.1,0.25,1);
}
.ui_menu_list{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.ui_menu_list>li{
	margin: 0 20px 5px;
	font-weight: 700;
	position: relative;
}
.ui_menu_list>li>a,.ui_menu_list>li>span{
	position: relative;
	display: block;
	padding: 2px 0;
	color: #fff;
	text-decoration: none;
}
.ui_menu_list>li>a::after{
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	width: 0;
	height: 0;
	border: none;
	border-style: solid;
	border-color: currentColor transparent transparent transparent;
	border-width: 9px 7px 0 7px;
}
.ui_menu_list>li>a::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 0;
	height: 2px;
	background: #fff;
	transition: 0.2s;
}
.ui_menu_list>li>a:hover{
	opacity: 1;
}
.ui_menu_list>li>a:hover::before{
	width: 100%;
}

.ui_menu_btn{
	display: none;
	position: fixed;
	right: 16px;
	top: 5px;
	z-index: 100;
	width: 36px;
	height: 36px;
	cursor: pointer;
	border-radius: 3px;
}
.ui_menu_btn span{
	width: 30px;
    height: 3px;
	border-radius: 2px;
    background-color: #fff;
    position: absolute;
    right: 3px;
    transition: all 0.3s ease;
    opacity: 1;
}
.ui_menu_btn span:nth-child(1){
	top: 12px;
}
.ui_menu_btn span:nth-child(2){
	top: 21px;
	width: 15px;
}
.is_open.ui_menu_wp .ui_menu{
	z-index: 98;
	opacity: 1;
	top: 0;
	right: 0;
	pointer-events: auto;
	transition: 0.6s cubic-bezier(0.25,0.1,0.25,1);
}
.is_open .ui_menu_btn span:nth-child(1) {
	top: 17px;
	transform: rotate(-45deg);
}
.is_open .ui_menu_btn span:nth-child(2) {
	top: 17px;
	width: 30px;
	transform: rotate(45deg);
}
.ui_m_scr{
	top: 0;
	z-index: 9;
}
.ui_menu_wp .ani_list01{
	display: none;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
	.ui_m_scr_wp{
		position: fixed !important;
		z-index: 99;
		left: 0;
		top: 0;
	}
	.ui_menu_wp{
		position: fixed !important;
		left: 0;
		top: 0;
		width: 100% !important;
		height: 45px !important;
		background: linear-gradient(180deg , #c366b5 0% , #ee9545 100%);
		border-radius: 0;
	}
	.ui_menu_logo{
		width: 210px;
		margin: 0 auto;
	}
	.ui_menu_btn{
		display: block;
	}
	.ui_menu{
		margin: 0!important;
		width: 100vw!important;
		height: calc(100vh + 80px);
		overflow: auto;
		padding: 50px 5vw 80px;
		position: fixed;
		left: 0;
		top: 0;		
		background: linear-gradient(180deg , #c366b5 0% , #ee9545 100%);
		opacity: 0;
		z-index: -1;
		pointer-events: none;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		text-align: center;
	}
	.ui_menu_list{
		display: block;
		height: auto;
	}
	.ui_menu_list>li{
		margin: 2.2vh 15px;
	}
	.ui_menu_list>li>a{
		font-size: 4.8vw;
	}
	.ui_menu_list a::before,.ui_menu_list a::after{
		display: none !important;
	}
	.ui_menu_wp .ani_list01{
		display: flex;
		padding-bottom: 7vh;
	}
	.ui_menu_wp .ani_list01 li:nth-child(2){
		max-width: 37px;
	}
	.ui_menu_wp .ani_list01 li:nth-child(3) img{
		border-radius: 50%;
	}
	
}

.ui_fade,.ui_fade_i{
	transition: all 1000ms;
	opacity: 0;
	visibility: hidden;
	transform: translate(0px, 50px);
}
.ui_fadein{
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
}

.ui_modal_wp,.ui_modal_over{
	position: fixed;
	z-index: 1010;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ui_modal_wp{
	display: none;
	opacity: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.ui_modal_wp *{
	box-sizing: border-box;
	word-wrap: break-word;
}
.ui_modal_over{
	background: rgba(0,0,0,0.8);
}
.ui_modal_container{
	position: relative;
	z-index: 1011;
	background: linear-gradient(-177deg, #b6e8fb 0%, #2f9ff5 110%);
	color: #fff;
	height: 650px;
    max-width: 900px;
	width: 100%;
	padding: 30px;
	border-radius: 40px;
	display: flex;
	flex-direction: column;
}
.ui_modal_s{
	max-width: 500px;
	max-height: 250px;
}
.ui_modal_close{
	position: absolute;
	z-index: 102;
	right: -30px;
	top: -30px;
	width: 60px;
	height: 60px;
	cursor: pointer;
	background: url(../img/ico_close.png) no-repeat center center;
	background-size: 100% 100%;
}
.ui_modal_content{
	display: none;
}
.ui_modal_body{
    position: relative;
}
.ui_modal{
	cursor: pointer;
}
.ui_modal_black,.ui_modal_container_you,.ui_modal_container_mp4{
	padding: 0;
	background: none;
	height: auto;
}
.ui_modal_container_you .ui_modal_body,.ui_modal_container_mp4 .ui_modal_body {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.4%;
}
.ui_modal_black .ui_modal_close,
.ui_modal_container_you .ui_modal_close,.ui_modal_container_mp4 .ui_modal_close{
	top: -44px;
}
.ui_modal_container_you .ui_modal_head h4,.ui_modal_container_mp4 .ui_modal_head h4{
	display: none;
}
.ui_modal_container_you .ui_modal_close:before,.ui_modal_container_you .ui_modal_close:after,.ui_modal_container_mp4 .ui_modal_close:before,.ui_modal_container_mp4 .ui_modal_close:after{
	background: #fff;
}
.ui_you_iframe,.ui_mp4{
	position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgb(0 0 0 / 60%);
    background: black;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
	.ui_modal_container{
		width: 100%;
		height: 100vh;
		border-radius: 0;
		padding: 90px 12px 70px 25px;
	}
	.ui_modal_close{
		right: 1vw;
		top: 35px;
		transform: scale(0.76);
	}
	.ui_modal_body{
		padding-right: 12px;
		overflow-y: auto;
	}
	.ui_modal_black{
		padding: 20px 4vw;
	}
	.ui_modal_black .ui_modal_body{
		padding-right: 0;
		overflow: visible;
	}
	.ui_modal_black .ui_modal_close{
		right: 1vw;
	}
	.ui_modal_body::-webkit-scrollbar {
	  width: 4px;
	  border-radius: 5px;
	}
	.ui_modal_body::-webkit-scrollbar-thumb {
	  background: linear-gradient(to bottom right, #ffa200 0%, #ffa200 100%);
	  border-radius: 5px;
	}
	.ui_modal_body::-webkit-scrollbar-track {
	  background-color: #dadada;
	  border: 1px solid #dadada;
	  border-radius: 5px;
	}
	.ui_modal_body::-webkit-scrollbar-button {
	  background-color: #dadada;
	  border-radius: 5px;
	  height: 0;
	}
	.ui_modal_body::-webkit-scrollbar-button:hover {
	  background-color: #dadada;
	}
	.ui_modal_black,.ui_modal_container_you{
		height: auto;
	}
}

.ani_kv{
	text-align: center;
	margin: 0 auto;
	background: #000;
}
.ani_kv img{
	width: 100%;
}
.ani_bg01{
	background: #000 url(../img/bg_01_pc.jpg) no-repeat center bottom;
	padding: 40px 0 160px;
	color: #fff;
}
.ani_bg02{
	background: #131313;
	padding: 140px 0;
	color: #fff;
}
.ani_bg03{
	background: #000 url(../img/bg_03_pc.jpg) no-repeat center top;
	padding: 140px 0;
	color: #fff;
}
.ani_navi{
	margin: 40px 0 100px;
}
.ani_tit01{
	text-align: center;
	margin-bottom: 60px;
}
.ani_lead01{
	font-size: 1.1rem;
}
.ani_tit02{
	text-align: center;
	margin-bottom: 30px;
}
.ani_movie{
	padding-top: 10px;
	text-align: center;
}
.ani_lead02{
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.5;
}
.ani_chara{
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
.ani_chara p{
	position: absolute;
	left: 12%;
	top: 39%;
	text-align: left;
}
.ani_chara.ani_right p{
	left: 51.7%;
}
.ani_change02 p{
	top: 37.5%;
}
.ani_change03 p{
	top: 35%;
}
.ani_change04 p{
	top: 39.5%;
}
.ani_making {
	text-align: center;
}
.ani_making div{
	margin-bottom: 5px;
}
.ui_mbL{
	margin-bottom: 100px !important;
}
.ani_note01{
	font-size: 0.875rem;
	text-align: center;
}
.ani_tit03{
	text-align: center;
	font-size: 1.5rem;
	color: #ffc600;
	font-weight: bold;
	margin-bottom: 10px;
}
.ui_pt0{
	padding-top: 0!important;
}
.ani_cast{
	max-width: 980px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.ani_cast li{
	text-align: center;
	width: 48%;
	margin-bottom: 50px;
}
.ani_cast li:last-child{
	margin-bottom: 0;
}
.ani_cast li p{
	margin-bottom: 30px;
	line-height: 1.4;
}
.ani_detail{
	display: inline-block;
	padding: 10px 40px 10px 30px;
	border: 2px #ef9900 solid;
	border-radius: 15px;
	color: #ef9900;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0px 0px 10px rgba(239,152,0,0.7);
	position: relative;
}
.ani_detail::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 6px;
	height: 6px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
}
.ani_detail:hover{
	background: #ef9800;
	color: #fff;
	opacity: 1;
	border: 2px #ef9900 solid;
	box-shadow: 0px 0px 10px rgba(239,152,0,0.7);
}
.ani_flex01{
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}
.ani_cathum{
	width: 50%;
}
.ani_cathum .ui_modal{
	position: relative;
	transition: 0.3s;
}
.ani_cathum .ui_modal::after{
	content: '';
	position: absolute;
	right: 6px;
	bottom: 6px;
	width: 15px;
	height: 15px;
	background: url(../img/img_zoom.png) no-repeat;
	background-size: 100% 100%;
}
.ani_cathum5 .ui_modal::after{
	background-image: url(../img/img_zoom2.png);
}
.ani_cathum .ui_modal:hover{
	opacity: 0.7;
}
.ani_pro{
	width: 47%;
}
.ani_list01{
	justify-content: center;
}
.ani_list01 li{
	max-width: 40px;
	margin: 0 18px;
}
.ani_line01{
	margin-bottom: 70px;
}
.ani_footer {
	background: #fff;
	padding: 35px 0;
	text-align: center;
}
.ani_footer img{
	max-width: 312px;
}
.ani_sli{
	overflow: hidden;
	max-width: 1100px;
	margin: 0 auto 100px;
}
.ani_sli .sp-mask{
	overflow: visible !important;
	height: 610px !important;
	padding-top: 140px;
}
.ani_sli_box{
	width: 190px;
	min-height: 292px;
	padding: 16px;
	border-radius: 22px;
	text-align: center;
	background: linear-gradient(-176deg , #b6e8fb 0% , #2f9ff5 100%);
	box-shadow: 0 4px 16px rgba(19,19,19,0.9);
	font-size: 8px;
	line-height: 1.4;
}
.ani_sli_box h4{
	margin-left: -10px;
	margin-right: -10px;
	padding-top: 14px;
	padding-bottom: 1px;
	font-size: 11px;
	font-weight: 800;
}
.ani_sli_btn{
	position: relative;
	width: 44px;
	height: 44px;
	margin: 10px auto 0;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 7px 7px #1477bd;
}
.ani_sli_btn::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border: none;
	border-style: solid;
	border-color: #42a9f6 transparent transparent transparent;
	border-width: 11px 9px 0 9px;
	transform: translateX(-40%) translateY(-50%) rotate(-90deg);
}
.ani_mus{
	display: flex;
	justify-content: space-between;
}
.ani_mus_left{
	width: 35.7%;
	margin-left: 6.5%;
	padding-top: 25px;
	font-size: 16px;
	text-align: center;
}
.ani_mus_right{
	width: 48.2%;
	padding: 30px 15px 30px 30px;
	background: #fff;
	border-radius: 20px;
}
.ani_mus_left h3{
	margin-top: 20px;
	margin-left: -10%;
	margin-right: -10%;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.4;
}
.ani_mus_left audio{
	margin: 20px auto 0;
	width: 250px;
	height: 30px;
}
.ani_mus_dl{
	margin-top: 20px;
	margin-bottom: 16px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 65px;
	border-radius: 33px;
	background: #fff;
	box-shadow: 0 13px 13px #1477bd;
	font-size: 18px;
	font-weight: 800;
	color: #4aadf6;
	text-decoration: none;
}
.ani_mus_dl::after{
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	width: 16px;
	height: 16px;
	background: url(../img/ico_dl.png) no-repeat;
	background-size: 100% 100%;
}
.ani_mus_note{
	position: relative;
	z-index: 3;
	font-size: 13px;
	text-align: center;
}
.ani_mus_lyrics{
	padding-right: 25px;
	overflow-y: auto;
	max-height: 530px;
	line-height: 1.85;
	color: #212121;
}
.ani_mus_lyrics h4{
	padding-bottom: 3px;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #a3a3a3;
	font-size: 14px;
	color: #8b8b8b;
}
.ani_mus_lyrics p{
	margin-bottom: 1.1em;
}
.ani_tit01_first{
	padding-top: 110px;
}

.ui_video_ctrl{
	position: relative;
	margin: 0 auto;
	width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
	border-radius: 24px;
}
.ui_video_ctrl video,.ui_video_btn,.ui_video_btn img{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
}
.ui_video_btn{
	cursor: pointer;
	z-index: 2;
	background: #fff;
}
.ui_video_btn img{	
	transition: 0.3s;
}
.ui_video_btn:before{
	content: '';
	position: absolute;
	z-index: 2;
	left: calc(50% - 9px);
	top: calc(50% - 15px);
	width: 0;
	height: 0;
	border-width: 18px 0 18px 26px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	transition: 0.3s;
}
.ui_video_btn:after{
	content: '';
	position: absolute;
	z-index: 2;
	left: calc(50% - 40px);
	top: calc(50% - 40px);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 1px solid #fff;
	transition: 0.3s;
}
.ui_video_btn:hover img,.ui_video_btn:hover:before,.ui_video_btn:hover:after{
	opacity:0.6;
	transition: 0.3s;
}
.ani_wps{
	max-width: 1130px;
	margin: 20px auto 0;
	display: flex;
	justify-content: center;
}
.ani_wps_item{
	margin: 0 15px;
	border: 15px solid #000;
	border-radius: 30px;
	box-shadow: 0 0 7px 4px #ffba00;
}
.ani_wps_item img{
	border-radius: 23px;
}
.ani_youtube_box {
    position: relative;
    padding-top: 56.24%;
}
.ani_youtube_box iframe {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}
.ani_img08{
	padding-bottom: 30px;
}

@media only screen and (min-width: 768px) {
	.ani_mus_lyrics::-webkit-scrollbar {
	  width: 6px;
	  border-radius: 5px;
	}
	.ani_mus_lyrics::-webkit-scrollbar-thumb {
	  background: linear-gradient(to bottom right, #ffa200 0%, #ffa200 100%);
	  border-radius: 5px;
	}
	.ani_mus_lyrics::-webkit-scrollbar-track {
	  background-color: #dadada;
	  border: 1px solid #dadada;
	  border-radius: 5px;
	}
	.ani_mus_lyrics::-webkit-scrollbar-button {
	  background-color: #dadada;
	  border-radius: 5px;
	  height: 0;
	}
	.ani_mus_lyrics::-webkit-scrollbar-button:hover {
	  background-color: #dadada;
	}
}
@media screen and (min-width:1921px) {
	.ani_bg01,.ani_bg03 {
		background-size: cover;
	}
}

@media screen and (min-width:1200px) { /*PC*/

}
@media only screen and (min-width: 768px) and (max-width: 1199px) { /*PAD*/

}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	
	.ani_kv{
		margin-top: 45px;
		background: #000;
	}
	.ani_lead01{
		font-size: 0.8rem;
	}
	.ani_tit01{
		margin-bottom: 35px;
	}
	.ui_mbL{
		margin-bottom: 50px!important;
	}
	.ani_lead02{
		font-size: 1rem;
		margin-bottom: 50px;
	}
	.ani_chara{
		width: 108%;
		margin: 0 -4vw;
	}
	.ani_chara p{
		font-size: 0.8rem;
		line-height: 1.6;
		left: 5%;
		top: 45%;
	}
	.ani_chara.ani_right p{
		left: 38%;
	}
	.ani_change02 p{
		top: 44%;
	}
	.ani_change03 p{
		top: 43%;
	}
	.ani_bg01{
		padding: 80px 0;
		background: #000 url(../img/bg_01_sp.jpg) no-repeat;
		background-size: cover;
	}
	.ani_making div{
		margin-bottom: 10px;
	}
	.ani_bg02{
		padding: 80px 4vw;
	}
	.ani_bg03{
		padding: 80px 0;
		background: #000 url(../img/bg_03_sp.jpg) no-repeat;
		background-size: cover;
	}
	.ani_tit02{
		margin-bottom: 20px;
	}
	.ani_note01{
		font-size: 0.72rem;
	}
	.ani_tit03{
		font-size: 1.1rem;
	}
	.ui_df{
		display: block;
	}
	.ani_cast li{
		width: 100%;
	}
	.ani_cast .ani_tit03{
		font-size: 1.5rem;
		line-height: 1.3;
	}
	.ani_flex01{
		display: block;
	}
	.ani_cast li p{
		margin-bottom: 20px;
	}
	.ani_cathum{
		width: 48%;
		margin: 0 auto 20px;
	}
	.ani_cathum .ui_modal::after{
		width: 10px;
		height: 10px;
	}
	.ani_pro{
		width: 75%;
		margin: 0 auto 20px;
	}
	.ani_detail{
		font-size: 0.75rem;
	}
	.ani_detail::after{
		right: 15px;
	}
	.ani_list01 li{
		max-width: 33px;
	}
	.ani_line01{
		margin-bottom: 40px;
	}
	.ani_footer img{
		max-width: 220px;
	}
	.ani_sli{
		margin: -30px -4vw 50px;
	}
	.ani_sli_box{
		padding: 14px;
	}
	.ani_sli .sp-mask{
		padding-top: 40px;
		height: 410px !important;
	}
	.ani_mus{
		padding-bottom: 20px;
		display: block;
	}
	.ani_mus_left{
		width: 65vw;
		padding-top: 5vw;
		margin: 0 auto 32px;
		font-size: 3.2vw;
	}
	.ani_mus_right{
		width: 100%;
		padding: 20px;
		border-radius: 15px;
	}
	.ani_mus_lyrics{
		height: auto;
		max-height: none;
		overflow: visible;
		font-size: 3.2vw;
		line-height: 1.65;
	}
	.ani_mus_left h3{
		margin-top: 15px;
		font-size: 4vw;
	}
	.ani_mus_left audio{
		position: relative;
		width: 220px;
		height: 26px;
		margin: 20px auto 0;
	}
	.ani_mus_dl{
		width: 50vw;
		height: 10vw;
		font-size: 3.2vw;
		margin: 15px auto 10px;
		box-shadow: 0 7px 7px #1477bd;
	}
	.ani_mus_note{
		font-size: 3.2vw;
	}
	.ani_mus_lyrics h4{
		font-size: 2.92vw;
		padding-bottom: 2vw;
		margin-bottom: 1.2em;
	}
	.ani_mus_lyrics p{
		margin-bottom: 0.9em;
	}
	.ui_video_btn:before {
	    left: calc(50% - 5px);
	    top: calc(50% - 10px);
	    border-width: 12px 0 12px 18px;
	}
	.ui_video_btn:after{
		left: calc(50% - 30px);
		top: calc(50% - 30px);
		width: 60px;
		height: 60px;
	}
	.ui_video_btn:hover img,.ui_video_btn:hover:before,.ui_video_btn:hover:after{
		opacity:1;
	}
	.ani_tit01_first{
		padding-top: 0;
	}
	.ani_wps{
		flex-wrap: wrap;
		margin-top: 15px;
		margin-left: -4vw;
		margin-right: -4vw;
	}
	.ani_wps_item{
		width: 25.7vw;
		margin: 0 2.9vw 5.8vw;
		border: 7px solid #000;
		border-radius: 15px;
		box-shadow: 0 0 4px 4px #ffba00;
	}
	.ani_wps_item img{
		border-radius: 8px;
	}
}
















