@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
    background: url("../img/bg-nz.png") repeat top left;
	background-size: 250px auto;
    
	font-family: "M PLUS 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	font-size: 62.5%;
    letter-spacing: 0.04em;
	line-height: 1.8em;
	color: #000;
    
    -webkit-font-smoothing: antialiased;
    
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
a {
	outline: none;
    text-decoration: none;
}
a img {
	border: none;
    outline: none;
}
section, div, span, figure, article {
    box-sizing: border-box;
}
* img {
    width: 100%;
    height: auto;
    display: block;
}

body::-webkit-scrollbar {
    width: 16px;
}
body::-webkit-scrollbar-track-piece {
    background-color: #000;
}
body::-webkit-scrollbar-thumb {
    background-color: #fff;

    border: 4px solid transparent;
    border-radius: 20px;
    background-clip: content-box;
}
html {
    scrollbar-color: #fff #000;
    scrollbar-width: 16px;
}
::selection      { background: #64c8d2; color: #fff; }
::-moz-selection { background: #64c8d2; color: #fff; }





/* --- C O M M O N --- */

.FDwrap {
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 29;
    pointer-events: none;
    background: #fff;
    opacity: 0;
    
    will-change: opacity;
    transition: all 0.4s ease-in;
}
.FDwrap.WRtppg {
    transition: all 0.4s ease-in 0.5s;
}
body.bd_fade .FDwrap {
    opacity: 1;
}
.wh-wrap {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.YT {
    display: none;
}




/* --- L O A D I N G --- */

.op-wrap {
    width: 100%;
    height: 100vh;
    margin: 0;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	z-index: 30;
	
	will-change: opacity;
	transition: all 0.6s linear;
}
.op-wrap div {
    width: 60%;
    height: auto;
    display: block; 
	margin: 0;
}
.op-tl {
    width: 100%;
    height: auto;
	display: block;
    margin: 0;
}
#mask .tl-kgr {
    fill: none;
    stroke: #fff;
    stroke-width: 10; /* 線の太さ */
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 5;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}
.op-wrap.fade {
    opacity: 0;
}
.op-wrap.none {
    display: none;
}



/* --- H E A D E R --- */

header {
    width: 100%;
    height: 65px;
    margin: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(255,255,255,0.9);
    z-index: 5;
    
    box-shadow: 0px 0px 6px -1px rgba(0, 0, 0, 0.25);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	
	will-change: transform;
    transition: all 0.4s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: translateY(-65px);
}
header.appr {
    transform: translateY(0);
}
header::before {
    content: "";
	display: block;
	margin: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 40%);
	pointer-events: none;
}
header.scrl {
    height: 45px;
}
.hd-logo {
    width: 150px;
	height: 131px;
	display: block;
	margin: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 6;
	
	will-change: transform;
    transition: all 0.8s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: translateX(-100px);
}
.hd-logo span {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	background: url("../img/hd-title.png") no-repeat center center;
	background-size: contain;
	
	will-change: transform,;
    transition: all 0.8s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: rotate(-70deg);
}
.hd-logo.appr {
    transform: translateX(0);
}
.hd-logo.appr span {
    transform: rotate(0);
}
.hd-menu {
    width: calc(100% - 150px);
	height: 100%;
	margin: 0 0 0 150px;
	padding: 0;
 	overflow: hidden;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.hd-menu div {
    display: inline-block;
	margin: 0 15px 0 0;
}
.hd-menu div span {
    display: inline-block;
	margin: 0.18em 0 0 0;
	
	font-size: 1.3rem;
    font-family: aptly, sans-serif;
    font-weight: 400;
    font-style: normal;
	line-height: 1em;
	letter-spacing: 0.01em;
	color: #f05082;
	
	will-change: transform;
    transition: all 0.2s ease-in-out;
}
.hd-menu div.os span { 
    position: relative;
	color: #64c8d2;
}
.hd-menu div.os span::before {
    content: "";
	display: block;
	margin: 0;
	width: 25px;
	height: 100%;
	background: url("../img/mn-arw.png") no-repeat center center;
	background-size: 100% auto;
	
	position: absolute;
	left: -40px;
	top: 0;
	
	will-change: transform;
    transition: all 0.2s ease-in-out;
}

.hd-menu div a:hover span {
    color: #64c8d2;
	transform: skewY(-5deg);
}
.hd-menu div.os a:hover span {
	transform: skewX(-10deg);
}
.hd-menu div.os a:hover span::before {
	transform: skewX(10deg) translateX(-4px);
}

.hd-menu div.sha {
    width: 32px;
	height: 100%;
	display: block;
	margin: 0 20px 0 10px;
	background: url("../img/share.png") no-repeat center center;
	background-size: 100% auto;
}
.hd-menu div.sns {
    display: inline-block;
	margin: 0 15px 0 0;
}
.hd-menu div.sns i {
    display: inline-block;
	margin: 0.05em 0 0 0;
	
    font-size: 1.4rem;
	line-height: 1em;
	letter-spacing: 0;
	color: #f05082;
	
	will-change: transform, color;
    transition: all 0.2s ease-in-out;
}
.hd-menu div.sns a:hover i {
    color: #64c8d2;
	transform: scale(1.1);
}
#nav, .menu-nav {
    display: none;
}





/* --- T O P --- */

.top-wrap {
    width: 100%;
    height: auto;
	padding: 60px 0 0 0;
    margin: 0;
    
    display: flex;
    flex-wrap: nowrap;
}
.top-PIC {
    width: calc(100% - min(600px,36%));
    height: auto;
    margin: 0;
    display: block;
    position: relative;
    z-index: 1;
}
.tp-KV {
    width: calc(100% - 60px);
    height: auto;
    display: block;
    overflow: hidden;
    position: relative;
    margin: 0;
    z-index: 0;
}
.tp-KV::before {
    content: "";
    display: block;
    padding-bottom: 140%;
}
.tp-KV article {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.tp-KV article p {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    
    will-change: transform, filter;
    transition: all 2.4s cubic-bezier(0.4, 0.9, 0.7, 1);
    transform: scale(1.3);
	filter: blur(30px) brightness(150%);
}
.tp-KV.kv1 article p {
    background: url("../img/kv_01.jpg") no-repeat left top;
    background-size: 100% auto;
}
.tp-KV.kv2 article p {
    background: url("../img/kv_02.jpg") no-repeat left top;
    background-size: 100% auto;
}
.tp-KV.kv3 article p {
    background: url("../img/kv_03.jpg") no-repeat left top;
    background-size: 100% auto;
}
.tp-KV.kv4 article p {
    background: url("../img/kv_04.jpg") no-repeat left top #fff;
    background-size: 100% auto;
}

.top-PIC.appr .tp-KV article p {
    transform: scale(1);
	filter: blur(0) brightness(100%);
}
.top-PIC.appr i {
    transform: translateX(0);
}

.top-PIC_thum {
    width: 115px;
	height: auto;
	margin: 0;
	padding-bottom: 28px;
	position: absolute;
	bottom: 40px;
	right: 3px;
	z-index: 10;
	overflow: hidden;
}
.top-PIC_thum .swiper-thum_TP {
    overflow: visible !important;
}
.tpTHM {
    width: 80px;
	height: 80px;
	margin: 30px auto 0 auto;
	display: block;
	z-index: 1;
	overflow: hidden;
	border-radius: 0;
	cursor: pointer;
	background: #000;
	border: 2px solid #f05082;
	box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.4);
	
	transform: rotate(45deg);
}
.tpTHM img {
    transform: rotate(-45deg) scale(1.42);
    filter: opacity(60%) brightness(110%);
}
.tpTHM,
.tpTHM img {
    will-change: filter;
    transition: all 0.2s ease-out;
}
.swiper-thum_TP .swiper-slide.swiper-slide-thumb-active .tpTHM img {
	filter: opacity(100%) brightness(100%);
}

.top-CNT {
    width: min(600px,36%);
    height: auto;
    margin: 0;
    display: block;
    position: relative;
}
.top-CNT::before, .top-CNT::after {
    display: none;
}
.top-CNT-wrap {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    position: sticky;
    top: 0;
    left: 0;
    overflow: hidden;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.tp-title_pc {
    width: 88%;
    height: auto;
    margin: calc(2% + 50px) auto 0 auto;
    display: block;
    position: relative;
	z-index: 0;
}
.tp-title_pc span {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
	
    will-change: transform;
}
.tp-title_pc.appr span {
    animation: ttin 1.5s forwards cubic-bezier(0, 0.6, 0.25, 1);
}
.tp-title_sp {
    display: none;
}
@keyframes ttin {
    from { transform: translateY(-80%); }
    to   { transform: translateY(0); }
}
@keyframes ttin_sp {
    from { transform: scale(2)  translateY(50px); }
    to   { transform: scale(1)  translateY(0); }
}
.tp-txt {
    width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    display: block;
    position: relative;
	z-index: 0;
	
	will-change: transform, opacity;
	transition: all 1.5s cubic-bezier(0, 0.6, 0.25, 1) 0.2s;
	transform: translateY(50px);
	opacity: 0;
}
.tp-txt span {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}
.tp-txt.appr {
    transform: translateY(0);
	opacity: 1;
}




/* --- N E W S --- */

.tp-news {
    width: calc(100% - 30px);
	height: auto;
	display: block;
	margin: 90px auto 0 auto;
	position: relative;
}
.tp-news article {
    content: "";
	display: block;
	width: 100%;
	height: 35px;
	margin: 0;
	position: absolute;
	top: -60px;
	left: 0;
	background: url("../img/kingyoA.png") no-repeat center center;
	background-size: auto 100%;
	
	will-change: transform, opacity;
	transition: all 1.5s cubic-bezier(0, 0.6, 0.25, 1) 0.2s;
	transform: scale(1.5);
	opacity: 0;
}
.tp-news.appr article {
    transform: scale(1);
	opacity: 1;
}
.tp-news::before, .tp-news::after,
.tp-news figure::before, .tp-news figure::after {
    content: "";
	display: block;
	width: 45px;
	height: 45px;
	margin: 0;
	position: absolute;
	
	will-change: transform, opacity;
	transition: all 1.5s cubic-bezier(0, 0.6, 0.25, 1) 0.2s;
	opacity: 0;
}
.tp-news figure {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}
.tp-news::before {
    top: 0;
    left: 0;
	background: url("../../img/dcM-LT.png") no-repeat center center;
	background-size: 100% auto;
	transform: translate(25px,25px);
}
.tp-news::after {
    top: 0;
    right: 0;
	background: url("../../img/dcM-RT.png") no-repeat center center;
	background-size: 100% auto;
	transform: translate(-25px,25px);
}
.tp-news figure::before {
    bottom: 0;
    left: 0;
	background: url("../../img/dcM-LB.png") no-repeat center center;
	background-size: 100% auto;
	transform: translate(25px,-25px);
}
.tp-news figure::after {
    bottom: 0;
    right: 0;
	background: url("../../img/dcM-RB.png") no-repeat center center;
	background-size: 100% auto;
	transform: translate(-25px,-25px);
}
.tp-news.appr::before, .tp-news.appr::after,
.tp-news.appr figure::before, .tp-news.appr figure::after {
    opacity: 1;
	transform: translate(0,0);
}
.tp-news h1 {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	
	font-size: 2.5rem;
	font-family: aptly, sans-serif;
    font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1em;
    font-style: normal;
	color: #f05082;
	
	will-change: transform, opacity;
	transition: all 1.5s cubic-bezier(0, 0.6, 0.25, 1) 0.2s;
	transform: translateY(40px);
	opacity: 0;
}
.tp-news.appr h1 {
    transform: translateY(0);
	opacity: 1;
}
.news-main {
    width: calc(100% - 70px);
    height: auto;
    margin: 60px auto 0 auto;
	padding: 0 0 20px 0;
    display: block;
}
.top-news-inner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
	padding: 0;
    overflow: hidden;
}
.top-news-inner div {
    width: 100%;
    height: auto;
    display: block;   
    margin: 0 0 18px 0;
    padding: 0 0 18px 0;
    position: relative;
}
.top-news-inner div:nth-last-of-type(1) {
    margin: 0;
}
.top-news-inner div i {
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url( "../img/dot-line_s.png") repeat-x center left;
	background-size: auto 100%;
}
.top-news-inner div p {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    
    font-size: 1.1rem;
	font-family: aptly, sans-serif;
    font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1em;
    font-style: normal;
	color: #f05082;
}
.top-news-inner div span {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    pointer-events: none;
}
.top-news-inner div span b {
    display: inline-block;
    margin: 0;
    padding: 0.5em 0 0 0;
    pointer-events: auto;
    
    color: #000;
    font-size: 0.9rem;
    line-height: 1.6em;
    letter-spacing: 0.05em;
    font-weight: 400;
    
    will-change: transform;
    transition: all 0.2s ease-out;
}
.top-news-inner div span a:hover b {
    transform: translateX(0.3em);
}

.moreBT-wrap {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	
	will-change: transform, opacity;
	transition: all 1.5s cubic-bezier(0, 0.6, 0.25, 1) 0.6s;
	transform: translateY(-40px);
	opacity: 0;
}
.tp-news.appr .moreBT-wrap {
    transform: translateY(0);
	opacity: 1;
}
.moreBT {
    width: 74px;
	height: 74px;
	display: block;
	margin: 8% auto 0 auto;
	
	will-change: transform;
	transition: all 0.38s cubic-bezier(0, 0.6, 0.25, 1);
}
.moreBT div {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	transform: rotate(45deg);
	border-radius: 2px;
	
	background: #fff;
	border: 2px solid #f05082;
	position: relative;
	
	will-change: transform, box-shadow;
	box-shadow: 5px 5px 0px -2px #f05082;
	transition: all 0.15s ease-out;
}
.moreBT div span {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	background: url("../img/moreBT.png") no-repeat center center;
	background-size: 100% auto;
	transform: rotate(-45deg) scale(1.3);
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	
	transition: all 0.15s ease-out;
}
.moreBT a:hover div {
	background: #f05082;
	transform: rotate(45deg) translate(3px,3px);
	box-shadow: 0px 0px 0px -2px #f05082;
}
.moreBT a:hover div span {
	background: url("../img/moreBT_hv.png") no-repeat center center;
	background-size: 100% auto;
}


.itv-txt {
    width: 100%;
	height: 20px;
	display: block;
	margin: 70px 0 0 0;
	overflow: hidden;
}
.itv-txt span {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	background: url("../img/dctxtL.png") repeat-x left center;
	background-size: auto 100%;
	
	will-change: animation;
	animation: txtscl 25.0s linear infinite;
}

@keyframes txtscl {
    from { background-position: 0 0; }
    to   { background-position: -474px 0; }
}
@keyframes txtscl_sp {
    from { background-position: 0 0; }
    to   { background-position: -355px 0; }
}

@keyframes mnAni1A {
    0%   { transform: translate(0,0) rotate(-10deg) skewX(-10deg); }
    25%  { transform: translate(0,8px) rotate(-10deg) skewX(-10deg); }
    50%  { transform: translate(0,8px) rotate(-10deg) skewX(-10deg); }
    80%  { transform: translate(0,8px) rotate(-45deg); }
    100% { transform: translate(0,8px) rotate(-45deg); }
}
@keyframes mnAni1B {
    0%   { transform: translate(0,8px) rotate(-45deg); }
    25%  { transform: translate(0,8px) rotate(-10deg) skewX(-10deg); }
    50%  { transform: translate(0,8px) rotate(-10deg) skewX(-10deg); }
    80%  { transform: translate(0,0) rotate(-10deg) skewX(-10deg); }
    100% { transform: translate(0,0) rotate(-10deg) skewX(-10deg); }
}
@keyframes mnAni2A {
    0%   { transform: scaleX(1) rotate(-10deg) skewX(-10deg); }
    25%  { transform: scaleX(1) rotate(-10deg) skewX(-10deg); }
    50%  { transform: scaleX(0); }
    100% { transform: scaleX(0); }
}
@keyframes mnAni2B {
    0%   { transform: scaleX(0); }
    50%  { transform: scaleX(0); }
    80%  { transform: scaleX(1) rotate(-10deg) skewX(-10deg); }
    100% { transform: scaleX(1) rotate(-10deg) skewX(-10deg); }
}
@keyframes mnAni3A {
    0%   { transform: translate(0,0) rotate(-10deg) skewX(-10deg); }
    25%  { transform: translate(0,-8px) rotate(-10deg) skewX(-10deg); }
    50%  { transform: translate(0,-8px) rotate(-10deg) skewX(-10deg); }
    80%  { transform: translate(0,-8px) rotate(45deg); }
    100% { transform: translate(0,-8px) rotate(45deg); }
}
@keyframes mnAni3B {
    0%   { transform: translate(0,-8px) rotate(45deg); }
    25%  { transform: translate(0,-8px) rotate(-10deg) skewX(-10deg); }
    50%  { transform: translate(0,-8px) rotate(-10deg) skewX(-10deg); }
    80%  { transform: translate(0,0) rotate(-10deg) skewX(-10deg); }
    100% { transform: translate(0,0) rotate(-10deg) skewX(-10deg); }
}


@keyframes mn-TL_in {
    0%   { transform: translateY(-150px); }
    100% { transform: translateY(0); }
}
@keyframes mn-MNA_in {
    0%   { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0);    opacity: 1; }
}
@keyframes mn-LB_in {
    0%   { transform: translate(80px,-80px); opacity: 0; }
    100% { transform: translate(0,0);        opacity: 1; }
}
@keyframes mn-RB_in {
    0%   { transform: translate(-80px,-80px); opacity: 0; }
    100% { transform: translate(0,0);         opacity: 1; }
}
@keyframes mn-LT_in {
    0%   { transform: translate(80px,80px); opacity: 0; }
    100% { transform: translate(0,0);       opacity: 1; }
}






/* --- C O N T E N T S --- */

.bg-kj {
    width: 25%;
	height: 100%;
	display: block;
	margin: 0;
	background: url("../img/bg-kowloon.png") repeat-y center top;
	background-size: 100% auto;
	position: absolute;
	right: 8%;
	top: 0;
}
.ct-title {
    width: 110px;
	height: auto;
	display: block;
	margin: 0;
	pointer-events: none;
	
	position: fixed;
	top: 150px;
	left: 80px;
	
	will-change: transform, opacity;
	transition: all 0.6s cubic-bezier(0, 0.6, 0.25, 1);
	opacity: 0;
	transform: translateY(100px);
	
	/*border: 1px dashed #000;*/
}
.ct-title h1 {
    display: inline-block;
	margin: 0;
	
	font-size: 6.5rem;
	font-family: aptly, sans-serif;
    font-weight: 400;
	letter-spacing: 0.15em;
	line-height: 1em;
    font-style: normal;
	color: #f05082;
	
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	
	will-change: letter-spacing;
	transition: all 0.6s cubic-bezier(0, 0.6, 0.25, 1);
}
.ct-title h1 b {
    display: inline-block;
	margin: 0.1em 0;
	
	font-size: 0.75em;
    font-weight: 400;
}
.ct-title.appr {
    opacity: 1;
	transform: translateY(0);
}
.ct-title.appr h1 {
    letter-spacing: -0.02em;
}
.ct-title_sp {
    display: none;
}
.ctg {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 180px 0;
	position: relative;
}
.ctg#ctg_staff {
    margin: 0 0 280px 0;
}
.ctg-title {
    width: 65px;
	height: auto;
	display: block;
	margin: 0.5em 0 0 0;
	pointer-events: none;
	
	position: fixed;
	top: 150px;
	left: 200px;
	
	will-change: transform, opacity;
	transition: all 0.6s cubic-bezier(0, 0.6, 0.25, 1);
	opacity: 0;
	transform: translateY(80px);
	
	/*border: 1px dashed #000;*/
}
.ctg-title h1 {
    display: inline-block;
	margin: 0;
	
	font-size: 3.8rem;
	font-family: aptly, sans-serif;
    font-weight: 300;
	letter-spacing: 0.12em;
	line-height: 1em;
    font-style: normal;
	color: #f05082;
	
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	
	will-change: letter-spacing;
	transition: all 0.6s cubic-bezier(0, 0.6, 0.25, 1);
}
.ctg-title span {
    display: inline-block;
	margin: 0.5em 0 0 0.9em;
	
	font-size: 1.1rem;
	font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	letter-spacing: 0;
	line-height: 1em;
	color: #000;
	
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.ctg-title span b {
    display: inline-block;
	margin: 0 0 0.7em 0;
	padding: 0.2em;
	border-radius: 50%;
	font-weight: 400;
	border: 1px solid #000;
	background: #fff;
	
	will-change: opacity, transform;
	opacity: 0;
	transform: translateX(25px);
}
.ctg-title.appr {
    opacity: 1;
	transform: translateY(0);
}
.ctg-title.appr h1 {
    letter-spacing: -0.02em;
}
.ctg-title_sp {
    display: none;
}

.area-wrap {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: relative;
}
.cont-wrap {
    width: calc(100% - (350px + 12%));
	height: auto;
	display: block;
	margin: 0 12% 0 350px;
	padding: 150px 0 100px 0;
	position: relative;
	
	/*border: 1px dashed #333;*/
}
.cont-wrap.cont-mv {
    width: calc(100% - (350px + 60px));
	margin: 0 60px 0 350px;
}
.cont-wrap.wide {
    width: calc(100% - (260px + 8%));
	margin: 0 8% 0 260px;
}

.dotM {
    width: 24px;
	height: 24px;
	display: block;
	margin: 0;
	background: url("../img/dot-M.png") no-repeat center center;
	background-size: contain;
	position: absolute;
}
.dotL {
    width: 42px;
	height: 42px;
	display: block;
	margin: 0;
	background: url("../img/dot-L.png") no-repeat center center;
	background-size: contain;
	position: absolute;
}
.dotM::after, .dotL::after {
    content: "";
	display: block;
	padding-bottom: 100%;
}
.dtln {
	height: 6px;
	display: block;
	margin: 0;
	background: url("../img/dot-line.png") repeat top left;
	background-size: auto 100%;
	position: absolute;
	right: 0;
}
.strp {
	display: block;
	margin: 0;
	background: url("../img/strp.png") repeat top left;
	background-size: 50px auto;
	position: absolute;
}





/* --- M O V I E --- */

.movie-main {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 80px 0;
    position: relative;
    
    will-change: transform, opacity;
    transition: all 1.2s cubic-bezier(0, 0.6, 0.25, 1);
    opacity: 0;
    transform: translateY(120px);
}
.movie-main::before {
    content: "";
    display: block;
    margin: 0;
    width: 20px;
    height: 50%;
    background: url("../img/strp.png") repeat top left;
	background-size: 50px auto;
    position: absolute;
    left: -20px;
	top: 0;
}
.movie-main.appr {
    opacity: 1;
    transform: translateY(0);
}
.movie-main section {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
	z-index: 0;
}
.movie-main section::before {
    content: "";
    display: block;
    padding-bottom: 40%;
}
.movie-main section article {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
	
	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.movie-main section article::before, .movie-main section article::after {
    content: "";
	display: block;
	margin: 0;
	width: 50px;
	height: 50px;
	position: absolute;
}
.movie-main section article::before {
    top: 10px;
	right: 10px;
	background: url("../img/dcM-RT_wt.png") no-repeat left top;
	background-size: 100% auto;
}
.movie-main section article::after {
    bottom: 10px;
	left: 10px;
	background: url("../img/dcM-LB_wt.png") no-repeat left top;
	background-size: 100% auto;
}
.movie-main section article p {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0;
    pointer-events: auto;
	z-index: 2;
    
    will-change: transform;
    transition: all 0.25s ease-in-out;
}
.movie-main section article p::after {
    content: "";
    display: block;
    margin: 0;
	
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/playBT.png") no-repeat center center;
    background-size: 100% auto;
	
	will-change: background;
    transition: all 0.25s ease-in-out;
}
.movie-main section span {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	z-index: -1;
    
    will-change: transform, filter;
    transition: all 0.38s ease-in-out;
	filter: brightness(90%);
}
.movie-main p {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0 0 0;
	
	text-align: center;
	font-size: 1.2rem;
	font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	line-height: 1em;
	letter-spacing: 0.08em;
	color: #000;
}
.movie-main section article a:hover p {
    transform: scale(0.95);
}
.movie-main section article a:hover p::after {
    background: url("../img/playBT_hv.png") no-repeat center center;
    background-size: 100% auto;
}
.movie-main section:hover span {
    transform: scale(1.02) translate(-49%,-49%);
	filter: brightness(100%);
}



/* ---------   S W I P E R   --------- */

.swiper-pagination.MVpgn {
    bottom: -50px;
}
.MVpgn > .swiper-pagination-bullet {
	width: 13px;
	height: 13px;
    margin: 0 6px !important;
    background: transparent;
	border: 1px solid #f05082;
    border-radius: 50%;
    outline: none;
	opacity: 1;
    transition: all 0.15s linear;
}
.MVpgn > .swiper-pagination-bullet-active {
    background: #f05082;
}

.MV-prev, .MV-next {
    width: 80px;
    height: 80px;
    display: block;
    position: absolute;
    outline: none;
    z-index: 10;

	will-change: transform, opacity;
	transition: all 0.6s ease-out;
}
.MV-prev span, .MV-next span {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
	top: 0;
	left: 0;
    outline: none;
    cursor: pointer;

	will-change: transform, filter;
	transition: all 0.18s ease-in-out;
	filter: drop-shadow(0px 4px 0px #f05082);
}
.MV-prev span {
    background: url("../img/prev.png") no-repeat center center;
    background-size: 100% auto;
}
.MV-next span {
    background: url("../img/next.png") no-repeat center center;
    background-size: 100% auto;
}
.MV-prev, .MV-next {
    top: 50%;
	margin-top: -40px;
	opacity: 0;
	transition-delay: 0.3s;
}
.MV-prev { left:  -40px; transform: translateX(60px); }
.MV-next { right: -40px; transform: translateX(-60px); }

.movie-main.appr .MV-prev, .movie-main.appr .MV-next {
    transform: translateX(0);
	opacity: 1;
}
.MV-prev:hover span, .MV-next:hover span {
    transform: translateY(4px);
	filter: drop-shadow(0px 0px 0px #f05082);
}

.MV-prev.swiper-button-disabled,
.MV-next.swiper-button-disabled {
    visibility: hidden;
}


#trailer .dtln {
    width: 260px;
	bottom: 0;
}
#trailer .dotM.dm-1 {
    top: 10%;
	left: 230px;
}
#trailer .dotM.dm-2 {
    bottom: 14%;
	left: 40%;
}





/* --- I N T R O D U C T I O N  +  S T O R Y --- */

.intro-main {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
	padding: 100px 0;
    position: relative;
}
.intro-main article {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}
.intro-main::before, .intro-main::after,
.intro-main article::before, .intro-main article::after {
    content: "";
	display: block;
	margin: 0;
	width: 60px;
	height: 60px;
	position: absolute;
	
	will-change: transform, opacity;
    transition: all 1.4s cubic-bezier(0.2, 0.45, 0.4, 1);
	opacity: 0;
}
.intro-main::before {
    top: 0;
    left: 0;
	background: url("../../movie/img/dcM-LT.png") no-repeat left top;
	background-size: 100% auto;
	
	transform: translate(-60px,-60px);
}
.intro-main::after {
    top: 0;
    right: 0;
	background: url("../../movie/img/dcM-RT.png") no-repeat right top;
	background-size: 100% auto;
	
	transform: translate(60px,-60px);
}
.intro-main article::before {
    bottom: 0;
    left: 0;
	background: url("../../movie/img/dcM-LB.png") no-repeat left bottom;
	background-size: 100% auto;
	
	transform: translate(-60px,60px);
}
.intro-main article::after {
    bottom: 0;
    right: 0;
	background: url("../../movie/img/dcM-RB.png") no-repeat right bottom;
	background-size: 100% auto;
	
	transform: translate(60px,60px);
}
.intro-main.appr::before, .intro-main.appr::after,
.intro-main.appr article::before, .intro-main.appr article::after {
    transform: translate(0,0);
	opacity: 1;
}
.intro-main h4 {
    display: inline-block;
	margin: 0 0 1.8em 0;
	
	font-family: "Hina Mincho", serif;
    font-size: 1.5rem;
    font-weight: 400;
	letter-spacing: 0.07em;
	line-height: 1.9em;
	color: #000;
	
	will-change: transform, opacity, filter;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1) 0.1s;
	transform: translateY(40px);
	opacity: 0;
	filter: blur(15px);
}
.intro-main.appr h4 {
    transform: translateY(0);
	opacity: 1;
	filter: blur(0);
}
.intro-main p {
    display: inline-block;
	margin: 0;
	color: #000;
	
	font-family: "Hina Mincho", serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: normal;
	letter-spacing: 0.07em;
	line-height: 1.9em;
	
	will-change: transform, opacity, filter;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1) 0.1s;
	transform: translateY(40px);
	opacity: 0;
	filter: blur(15px);
}
.intro-main p strong {
    display: inline-block;
    font-size: 1.12em;
    font-weight: 400;
	letter-spacing: 0.07em;
	line-height: 1.9em;
	color: #f05082;
}
.intro-main.appr p {
    transform: translateY(0);
	opacity: 1;
	filter: blur(0);
}

.int-pic {
    width: calc(100% - 24px);
	height: auto;
	display: block;
	position: relative;
	margin: 0 auto 50px auto;
}
.int-pic::before, .int-pic::after {
    content: "";
	display: block;
	margin: 0;
	width: 100px;
	height: 100px;
	background: url("../img/strp.png") repeat top left;
	background-size: 40px auto;
	position: absolute;
	z-index: -1;
	
	will-change: transform, opacity;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1) 0.7s;
	opacity: 0;
}
.int-pic::before {
    left: -12px;
	top: -12px;
	transform: translate(-18px,-18px);
}
.int-pic::after {
    right: -12px;
	bottom: -12px;
	transform: translate(18px,18px);
}
.int-pic figure {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: relative;
}
.int-pic figure i {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	
	will-change: transform, opacity, filter;
    transition: all 1.8s cubic-bezier(0.2, 0.45, 0.4, 1);
	opacity: 0;
	filter: blur(30px) brightness(180%);
}
.int-pic figure::after, .int-pic figure i::after {
    content: "";
	display: block;
	padding-bottom: 33.1%;
}
.int-pic figure i:nth-of-type(1) {
    background: url("../img/picL-1.webp") no-repeat left top;
	background-size: 100% auto;
	
	transform: translate(-40px,80px);
}
.int-pic figure i:nth-of-type(2) {
    background: url("../img/picL-2.webp") no-repeat left top;
	background-size: 100% auto;
	
	transform: translate(40px,-80px);
}
.int-pic.appr::before, .int-pic.appr::after {
    opacity: 1;
	transform: translate(0,0);
}
.int-pic.appr figure i {
    opacity: 1;
	transform: translate(0,0);
	filter: blur(0) brightness(100%);
}

.str-pic {
    width: 100%;
	height: auto;
	position: relative;
	margin: 55px auto 0 auto;
	
	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.str-pic span {
    width: calc(100% / 4);
	height: auto;
	margin: 0;
	display: block;
	position: relative;
	
	will-change: transform, opacity, filter;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1);
	opacity: 0;
	filter: drop-shadow(0px 8px 0px rgba(240,80,130,1));
}
.str-pic span i {
    width: 100%;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
	
	will-change: transform, opacity, filter;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1);
	filter: blur(15px) brightness(180%);
}
.str-pic span i::before {
    content: "";
	display: block;
	padding-bottom: 100%;
}
.str-pic span:nth-of-type(1) {
	transition-delay: 0;
}
.str-pic span:nth-of-type(2) {
	transition-delay: 0.2s;
}
.str-pic span:nth-of-type(3) {
	transition-delay: 0.4s;
}
.str-pic span:nth-of-type(4) {
	transition-delay: 0.6s;
}
.str-pic span:nth-of-type(1) i {
    background: url("../img/picS-1.webp") no-repeat center center;
	background-size: 100% auto;
	transition-delay: 0;
}
.str-pic span:nth-of-type(2) i {
    background: url("../img/picS-2.webp") no-repeat center center;
	background-size: 100% auto;
	transition-delay: 0.2s;
}
.str-pic span:nth-of-type(3) i {
    background: url("../img/picS-3.webp") no-repeat center center;
	background-size: 100% auto;
	transition-delay: 0.4s;
}
.str-pic span:nth-of-type(4) i {
    background: url("../img/picS-4.webp") no-repeat center center;
	background-size: 100% auto;
	transition-delay: 0.6s;
}
.str-pic span:nth-of-type(odd) {
    transform: translate(-60px,60px);
}
.str-pic span:nth-of-type(even) {
    transform: translate(-60px,-60px);
}
.str-pic.appr span {
    opacity: 1;
	transform: translate(0,0);
}
.str-pic.appr span i {
	filter: blur(0) brightness(100%);
}

#intro .strp {
    width: 20px;
	height: 40%;
	top: 40%;
	right: 0;
}
#intro .dotL {
    top: 35%;
	left: 230px;
}
#intro .dotM {
    top: 5%;
	right: 35%;
}

#story .strp {
    width: 20px;
	height: 30%;
	top: 50%;
	right: 0;
}
#story .dotL {
    top: 2%;
	right: 45%;
}
#story .dotM {
    bottom: 20%;
	left: 250px;
}






/* --- C H A R A C T E R --- */

.chara-main {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.ch-thum {
    width: calc((100% / 3) - 2%);
	height: auto;
	display: block;
	margin: 0 1% 70px 1%;
	position: relative;
	
	cursor: pointer;
}
.ch-thum section {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	transform: rotate(45deg) scale(0.7);
	position: relative;
	background: #f05082;
	overflow: hidden;

	filter: drop-shadow(10px 10px 0px rgba(0,0,0,0.1));
}
.ch-thum section span {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	transform: rotate(-45deg) scale(1.25);
	
	border: 1px dashed #333;
}
.ch-thum article {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../img/ch-frame.png") no-repeat center center;
	background-size: 100% auto;
	pointer-events: none;
}
.ch-thum section, .ch-thum article {
    will-change: transform, filter, background;
	transition: all 0.2s ease-in-out;
}
.ch-thum:hover section {
    background: #fff;
    transform: rotate(45deg) scale(0.7) translate(7px,7px);
	filter: drop-shadow(0px 0px 0px rgba(0,0,0,0.1));
}
.ch-thum:hover article {
    transform: translateY(7px);
}
.ch-name_en {
    width: 100%;
	height: 55px;
	display: block;
	margin: 0 auto;
	text-align: center;
	
	position: absolute;
	left: 0;
	bottom: -55px;
}
.ch-name_en img {
    width: auto;
	height: 100%;
	display: block;
	margin: 0 auto;
}
.ch-name {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: absolute;
	left: 0;
	bottom: -0.8em;
	text-align: center;
	
	font-size: 1.15rem;
	font-family: "Hina Mincho", serif;
    font-weight: 400;
	letter-spacing: 0;
	line-height: 1em;
    font-style: normal;
}
.ch-name b {
    display: inline-block;
	margin: 0 0.2em;
	padding: 0.2em;
	
	font-weight: 400;
	background: #fff;
	border: 1px solid #000;
	border-radius: 50%;
}
.ch-name i {
    display: inline-block;
	width: 5px;
	height: 5px;
	margin: 0 2px;
	
	font-style: normal;
	background: #000;
	border-radius: 50%;
	transform: translateY(-3px);
}


/* ---------  Swipwer + M O D A L   --------- */

.sw_modal {
    width: 100%;
	height: 100vh;
	margin: 0;
	padding: 30px;
	overflow-y: auto;
	pointer-events: none;
	
	display: flex;
	justify-content: center;
    align-items: center;
    
	position: fixed;
    top: 0;
    left: 0;
	
    z-index: 100;
    background: rgba(250,248,245,0.65);
	
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	
	will-change: opacity;
	transition: all 0.3s ease-out;
	opacity: 0;
}
.sw_modal.active {
    opacity: 1;
    pointer-events: auto;
}
.sw_modal-BG {
    width: 100%;
    height: 100%;
	display: block;
	margin: 0;
	
    position: absolute;
	top: 0;
    left: 0;
    cursor: pointer;
}
.sw_modal section {
    width: 85%;
	max-width: 1200px;
	height: auto;
	display: block;
	margin: auto;
	position: relative;
}
.sw_modal-inner {
    width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	position: relative;
	
    display: flex;
    justify-content: flex-start;
    align-items: center;
	
	filter: drop-shadow(0px 12px 10px rgba(0,0,0,0.3));
	
	will-change: opacity, transform;
	transition: all 0.38s cubic-bezier(0, 0.6, 0.25, 1);
	opacity: 0;
	transform: scale(0.6);
}
.sw_modal.active .sw_modal-inner {
    opacity: 1;
	transform: scale(1);
}
.swmd-closeBT {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0;
    outline: 0;
    background: url("../img/closeBT_fr.png") no-repeat center center #fff;
	background-size: 90% auto;
	border: 2px solid #f05082;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;

    position: absolute;
    top: 0;
    right: -65px;
    z-index: 20;
    
    will-change: transform;
    transition: all 0.2s ease-out;
}
.swmd-closeBT::before {
    content: "";
	display: block;
	margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	background: url("../img/close.png") no-repeat center center;
	background-size: contain;
	box-sizing: border-box;
}
.swmd-closeBT:hover {
    transform: scale(0.92);
}

.CRS-wrap {
    width: 100%;
	height: auto;
	margin: 0;
	padding: 8px 60px 8px 40px;
	position: relative;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	align-items: center;
	
	background: url("../img/bg-nz.png") repeat top left;
	background-size: 250px auto;
	border: 2px solid #f05082;
	
	color: #000;
}
.CRS-wrap article {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
}
.CRS-wrap::before, .CRS-wrap::after,
.CRS-wrap article::before, .CRS-wrap article::after {
    content: "";
	display: block;
	margin: 0;
	width: 50px;
	height: 50px;
	pointer-events: none;
	position: absolute;
}
.CRS-wrap::before {
    top: 8px;
	left: 8px;
	background: url("../img/dcM-LT.png") no-repeat left top;
	background-size: 100% auto;
}
.CRS-wrap::after {
    top: 8px;
	right: 8px;
	background: url("../img/dcM-RT.png") no-repeat right top;
	background-size: 100% auto;
}
.CRS-wrap article::before {
    bottom: 8px;
	left: 8px;
	background: url("../img/dcM-LB.png") no-repeat left bottom;
	background-size: 100% auto;
}
.CRS-wrap article::after {
    bottom: 8px;
	right: 8px;
	background: url("../img/dcM-RB.png") no-repeat right bottom;
	background-size: 100% auto;
}
.CRS-wrap article span {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
}
.CRS-wrap article span::before, .CRS-wrap article span::after {
    content: "";
	display: block;
	width: 18px;
	height: calc(100% - 140px);
	margin: 0;
	background: url("../img/dc-txt_vt.png") repeat-y center center;
	background-size: 100% auto;
	
	position: absolute;
	top: 70px;
}
.CRS-wrap article span::before {
    left: 7px;
}
.CRS-wrap article span::after {
    right: 7px;
}

.CRS-picL {
    width: 35%;
	height: auto;
	display: block;
	margin: 0;
	position: relative;
	
	background: #fff;
}
.CRS-picL::after {
    content: "";
	display: block;
	padding-bottom: 200%;
}

.CRS-picL.cr-01 {
    background: url("../img/chara/ch_kujirai.webp") no-repeat center top;
	background-size: 100% auto;
}
.CRS-picL.cr-02 {
    background: url("../img/chara/ch_kudo.webp") no-repeat center top;
	background-size: 100% auto;
}
.CRS-picL.cr-03 {
    background: url("../img/chara/ch_hebi.webp") no-repeat center top;
	background-size: 100% auto;
}
.CRS-picL.cr-04 {
    background: url("../img/chara/ch_tao.webp") no-repeat center top;
	background-size: 100% auto;
}
.CRS-picL.cr-05 {
    background: url("../img/chara/ch_yang.webp") no-repeat center top;
	background-size: 100% auto;
}
.CRS-picL.cr-06 {
    background: url("../img/chara/ch_xiao.webp") no-repeat center top;
	background-size: 100% auto;
}

.CRS-main {
    width: 65%;
	height: auto;
	margin: 0;
	position: relative;
	
	display: flex;
    flex-wrap: wrap;
}

.CRS-picS {
    width: 20%;
	height: auto;
	display: block;
	margin: auto auto 0 auto;
	position: relative;
}
.CRS-picS span {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 9px 0;
	position: relative;
	border-radius: 50%;
	
	background: #fff;
	filter: drop-shadow(0px 4px 0px #f05082);
}
.CRS-picS span::after {
    content: "";
	display: block;
	padding-bottom: 100%;
}
.CRS-picS span i {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	font-style: normal;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	
	border-radius: 50%;
	overflow: hidden;
}

.CRS-txt {
    width: 80%;
	height: auto;
	display: block;
	margin: 0;
	padding: 0 0 0 10%;
	box-sizing: border-box;
}
.cr-name {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
}
.cr-name h1 {
    display: inline-block;
	margin: 0;
	position: relative;
	z-index: 1;
	
	font-size: 3rem;
	font-family: kaisotai, sans-serif;
    font-weight: 600;
    font-style: normal;
	letter-spacing: 0.1em;
	line-height: 1em;
	
	color: #000;
}
.cr-name h1 span {
    width: auto;
	height: 70px;
	display: block;
	margin: 0;
	position: absolute;
	left: 65%;
	bottom: -80%;
	z-index: -1;
}
.cr-name h1 span img {
    width: auto;
	height: 100%;
	display: block;
	margin: 0;
}
.cv-name {
    width: 100%;
	height: auto;
    display: block;
	margin: 40px 0 0 0;
	position: relative;
	text-align: right;
}
.cv-name h2 {
    display: inline-block;
	margin: 0 0 0 0.4em;
	
	font-size: 1.7rem;
	font-family: kaisotai, sans-serif;
    font-weight: 600;
    font-style: normal;
	letter-spacing: 0.1em;
	line-height: 1em;
}
.cv-name b {
    display: inline-block;
	margin: 0 0.5em 0 0;
	padding: 0.2em;
	
	font-size: 1rem;
	font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	letter-spacing: 0;
	line-height: 1em;
	
	background: #fff;
	border: 1px solid #000;
	border-radius: 50%;
	
	transform: translateY(-0.2em);
}
.CRS-wrap p {
    width: 100%;
	height: auto;
    display: block;
	margin: 20px 0 0 0;
	padding: 45px 0;
	position: relative;
	
	font-size: 1.1rem;
	font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	letter-spacing: 0.05em;
	line-height: 1.8em;
	color: #000;
}
.CRS-wrap p::before, .CRS-wrap p::after {
    content: "";
	display: block;
	width: 30px;
	height: 30px;
	margin: 0;
	position: absolute;
}
.CRS-wrap p::before {
    top: 0;
	left: 0;
	background: url("../img/dcS-LT.png") no-repeat top left;
	background-size: 100% auto;
}
.CRS-wrap p::after {
    bottom: 0;
	right: 0;
	background: url("../img/dcS-RB.png") no-repeat top left;
	background-size: 100% auto;
}

.CRS-prev, .CRS-next {
    width: 80px;
    height: 80px;
    display: block;
	margin: -40px 0 0 0;
    position: absolute;
	top: 50%;
    outline: none;
    z-index: 10;
	
	will-change: transform, opacity;
	transition: all 0.3s ease-out 0.2s;
	opacity: 0;
}
.CRS-prev { left:  -40px; transform: translateX(70px); }
.CRS-next { right: -40px; transform: translateX(-70px); }

.sw_modal.active .CRS-prev, .sw_modal.active .CRS-next {
    opacity: 1;
	transform: translateX(0);
}
.CRS-prev span, .CRS-next span {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
	top: 0;
	left: 0;
    outline: none;
    cursor: pointer;

	will-change: transform, filter;
	transition: all 0.18s ease-in-out;
	filter: drop-shadow(0px 4px 0px #f05082);
}
.CRS-prev span {
    background: url("../img/prev.png") no-repeat center center;
    background-size: 100% auto;
}
.CRS-next span {
    background: url("../img/next.png") no-repeat center center;
    background-size: 100% auto;
}
.CRS-prev:hover span, .CRS-next:hover span {
    transform: translateY(4px);
	filter: drop-shadow(0px 0px 0px #f05082);
}

.bg-CRS {
    width: 300px;
	height: 100%;
	display: block;
	margin: 0;
	
	pointer-events: none;
	position: absolute;
	right: 6%;
	top: 0;
	overflow: hidden;
}
.bg-CRS span {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	background: url("../img/bg-kowloon.png") repeat-y center top;
	background-size: 100% auto;
	
	will-change: transform;
	animation: crbg-scl 35.0s linear infinite;
}

@keyframes crbg-scl {
    from { background-position: 0 0; }
    to   { background-position: 0 -2001px; }
}
@keyframes crbg-scl_sp {
    from { background-position: 0 0; }
    to   { background-position: 0 -1201px; }
}

#character .dtln {
    width: 150px;
	top: 10%;
}
#character .dotL.dl-1 {
    top: -2%;
	left: 62%;
}
#character .dotL.dl-2 {
    top: 50%;
	right: 60px;
}
#character .dotM {
    top: 70%;
	left: 280px;
}






/* --- S T A F F  +  C A S T --- */

.sc-wrap {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	padding: 150px 0 50px 0;
	position: relative;
	overflow: hidden;
}
.dc-fttxt {
    width: calc(100% - 240px);
	height: 22px;
	display: block;
	margin: 0;
	position: absolute;
	bottom: 5px;
	left: 120px;
	background: url("../img/dcft-txt.png") repeat-x center center;
	background-size: auto 100%;
}

.sc {
    width: calc(100% - (350px + 12%));
	height: auto;
	display: block;
	margin: 0 12% 0 350px;
	position: relative;
}
.scWP-1 {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: relative;
}
.scWP-1.stL {
    margin: 0 0 100px 0;
}
.scWP-2 {
    width: 100%;
	height: auto;
	margin: 0 0 100px 0;
	
	display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.scWP-2 section {
    height: auto;
	display: block;
	position: relative;
	margin: 0;
	z-index: 1;
}
.scWP-2 section:nth-of-type(1) {
    width: max(35%,400px);
}
.scWP-2 section:nth-of-type(2) {
    width: 100%;
	padding: 0 0 0 50px;
}

.sc_st-wrap {
    width: calc(100% - (350px + 12%));
	height: auto;
	margin: 0 12% 0 350px;
	position: relative;
	
	display: flex;
    flex-wrap: wrap;
}
.sc_st-wrap .sc {
    width: max(calc(50% - 40px),380px);
	margin: 0 40px 50px 0;
}

.sc-pic {
    width: 100%;
	height: auto;
	margin: 0;
	display: block;
	position: relative;
	
	will-change: transform, opacity;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: translateY(80px);
	opacity: 0;
}
.sc-pic::after {
    content: "";
	display: block;
	padding-bottom: 100%;
}
.sc.appr .sc-pic {
    transform: translateY(0);
	opacity: 1;
}
.sc-pic figure {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.sc-pic figure img {
    will-change: transform, opacity;
    transition: all 2.4s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: scale(1.2);
	opacity: 0;
}
.sc.appr .sc-pic figure img {
    transform: scale(1);
	opacity: 1;
}
.sdw1 {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	border-radius: 50%;
	position: absolute;
	top: 1.5%;
	left: 1.5%;
	z-index: 1;
}
#ctg_staff .sdw1 {
    background: #f05082;
}
#ctg_cast .sdw1 {
    background: #64c8d2;
}
.sdw2 {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: absolute;
	top: 54%;
	left: 0;
	z-index: 0;
}
.sdw2::after {
    content: "";
	display: block;
	padding-bottom: 95.3%;
}
#ctg_staff .sdw2 {
    background: url("../img/sc-sdw_R.png") no-repeat center top;
	background-size: contain;
}
#ctg_cast .sdw2 {
    background: url("../img/sc-sdw_B.png") no-repeat center top;
	background-size: contain;
}
.sc article {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 1em 0;
	
	font-size: 1.2rem;
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	letter-spacing: 0;
	line-height: 1em;
	color: #000;
	
	will-change: transform, opacity;
    transition: all 1.0s cubic-bezier(0.2, 0.45, 0.4, 1) 0.2s;
	transform: translateY(-40px);
	opacity: 0;
}
.sc.appr article {
    transform: translateY(0);
	opacity: 1;
}
.sc_st-wrap .sc article {
    margin: 0 0 1em 0;
	font-size: 0.9rem;
}
.sc article b {
    display: inline-block;
	margin: 0 0.8em 0 0;
	padding: 0.2em;
	border-radius: 50%;
	font-weight: 400;
	border: 1px solid #000;
	background: #fff;
}
.sc article i {
    display: inline-block;
	width: 5px;
	height: 5px;
	margin: 0 0.8em 0 0;
	
	font-style: normal;
	background: #000;
	border-radius: 50%;
	transform: translateY(-3px);
}
.ch-txt {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 3.5em 0;
	padding: 0 2em 0 0;
	
	font-size: 1.1rem;
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	letter-spacing: 0.05em;
	line-height: 1.6em;
	color: #000;
	
	will-change: transform, opacity;
    transition: all 1.0s cubic-bezier(0.2, 0.45, 0.4, 1) 0.3s;
	transform: translateY(-40px);
	opacity: 0;
}
.sc.appr .ch-txt {
    transform: translateY(0);
	opacity: 1;
}
#ctg_cast .sc article {
    font-size: 1.5rem;
}
#ctg_cast .sc article b {
	margin: 0 0.5em 0 0;
}
#ctg_cast .sc article i {
	margin: 0 0.5em 0 0;
}
.sc h2 {
    display: inline-block;
	margin: 0 0 0.7em 0;
	position: relative;
	
	font-size: 3rem;
	font-family: kaisotai, sans-serif;
    font-weight: 600;
	letter-spacing: 0.07em;
	line-height: 1em;
    font-style: normal;
	
	will-change: transform, opacity;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: translateX(80px);
	opacity: 0;
}
.sc.appr h2 {
    transform: translateX(0);
	opacity: 1;
}
.sc h2 span {
    width: auto;
	height: 60px;
    display: block;
	margin: 0;
	position: absolute;
	left: 2.5em;
	bottom: -30px;
	z-index: -1;
	
	will-change: transform, opacity;
    transition: all 1.4s cubic-bezier(0.2, 0.45, 0.4, 1) 0.3s;
	transform: translateX(80px);
	opacity: 0;
}
.sc.appr h2 span {
    transform: translateX(0);
	opacity: 1;
}
.sc h2 span img {
    width: auto;
	height: 100%;
    display: block;
	margin: 0;
}
.sc h2 i {
    display: inline-block;
	margin: 0;
	
    font-size: 0.9em;
	font-family: "M PLUS 2", sans-serif;
    font-weight: 600;
    font-style: normal;
	transform: scale(0.8,1) translateY(-0.04em);
}
.sc h2 b {
    display: inline-block;
	margin: 0 0 0 0.2em;
	
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1em;
	transform: translateY(-1.4em);
}
.sc p {
    width: 100%;
	height: auto;
    display: block;
	margin: 0;
	padding: 0 0 90px 0;
	position: relative;
	
	font-size: 1rem;
    font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2em;
	
	will-change: transform, opacity;
    transition: all 1.4s cubic-bezier(0.2, 0.45, 0.4, 1) 0.3s;
	transform: translateY(80px);
	opacity: 0;
}
.sc.appr p {
    transform: translateY(0);
	opacity: 1;
}


.scWP-1::before,
.scWP-2 section:nth-of-type(2)::before, .sc p::before {
    content: "";
	display: block;
	margin: 0;
	width: 50px;
	height: 50px;
	position: absolute;
}
.scWP-1::before,
.scWP-2 section:nth-of-type(2)::before {
    right: 0;
	top: 0;
    background: url("../img/dcS-RT.png") no-repeat center center;
	background-size: contain;
	
	will-change: transform, opacity;
    transition: all 1.4s cubic-bezier(0.2, 0.45, 0.4, 1) 0.8s;
	transform: translate(30px,-30px);
	opacity: 0;
}
.sc.appr .scWP-1::before,
.sc.appr .scWP-2 section:nth-of-type(2)::before {
	transform: translate(0,0);
	opacity: 1;
}
.sc p::before {
    left: 0;
	bottom: 0;
    background: url("../img/dcS-LB.png") no-repeat center center;
	background-size: contain;
	
	will-change: transform, opacity;
    transition: all 1.4s cubic-bezier(0.2, 0.45, 0.4, 1) 0.8s;
	transform: translate(-30px,30px);
	opacity: 0;
}
.sc.appr p::before {
    transform: translate(0,0);
	opacity: 1;
}

.sc_st-wrap .scWP-1::before {
    display: none;
}


#ctg_ori .dotM {
    top: 15%;
	right: 25%;
}
#ctg_ori .dotL {
    bottom: -10%;
	left: 40%;
}
#ctg_ori .dtln {
    width: 280px;
	top: -40%;
}
#ctg_ori .strp {
    width: 40px;
	height: 60%;
	top: 18%;
	right: 0;
}

#ctg_staff .dotM.dc1 {
    top: -8%;
	right: 20%;
}
#ctg_staff .dotM.dc2 {
    top: 40%;
	left: 50%;
}
#ctg_staff .dotL.dc1 {
    bottom: -12%;
	left: 60%;
}
#ctg_staff .dotL.dc2 {
    bottom: 30%;
	right: 150px;
}
#ctg_staff .strp.dc1 {
    width: 20px;
	height: 50%;
	top: 18%;
	right: 0;
}
#ctg_staff .strp.dc2 {
    display: none;
}
#ctg_staff .dtln {
    width: 220px;
	bottom: -100px;
}

#ctg_cast .dotM.dc1 {
    top: -10%;
	right: 22%;
}
#ctg_cast .dotM.dc2 {
    top: 30%;
	left: 280px;
}
#ctg_cast .dotM.dc3 {
    top: 65%;
	left: 280px;
}
#ctg_cast .dotM.dc4 {
    top: 7%;
	left: 320px;
}
#ctg_cast .dotM.dc5 {
    top: 80%;
	right: 80px;
}
#ctg_cast .dotL.dc1 {
    top: 22%;
	right: 21%;
}
#ctg_cast .dotL.dc2 {
    top: 55%;
	right: 5%;
}
#ctg_cast .dotL.dc3 {
    bottom: 0;
	left: 32%;
}
#ctg_cast .strp.dc1 {
    width: 20px;
	height: 10%;
	top: 8%;
	right: 0;
}
#ctg_cast .strp.dc2 {
    width: 20px;
	height: 13%;
	top: 60%;
	right: 0;
}





/* --- T O P  B T --- */

.totopBT {
    width: 74px;
	height: 74px;
	display: block;
	margin: 0;
	
	position: fixed;
	bottom: -90px;
	right: 23px;
	z-index: 5;
	
	will-change: transform;
	transition: all 0.38s cubic-bezier(0, 0.6, 0.25, 1);
}
.totopBT.appr {
    bottom: 40px;
}
.totopBT div {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	transform: rotate(45deg);
	border-radius: 2px;
	
	background: #fff;
	border: 2px solid #f05082;
	position: relative;
	
	will-change: transform, box-shadow;
	box-shadow: 5px 5px 0px -2px #f05082;
	transition: all 0.15s ease-out;
}
.totopBT div span {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	background: url("../img/totop.png") no-repeat center center;
	background-size: 100% auto;
	transform: rotate(-45deg) scale(1.3);
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	
	transition: all 0.15s ease-out;
}
.totopBT a:hover div {
	background: #f05082;
	transform: rotate(45deg) translate(3px,3px);
	box-shadow: 0px 0px 0px -2px #f05082;
}
.totopBT a:hover div span {
	background: url("../img/totop_hv.png") no-repeat center center;
	background-size: 100% auto;
}





/* --- C O M I C --- */

.cmc-wrap {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	padding: 0 0 150px 0;
	position: relative;
	overflow: hidden;
}
.cmc-wrap::before, .cmc-wrap::after {
    content: "";
	display: block;
	margin: 0;
	width: 100px;
	height: 100px;
	position: absolute;
	bottom: 6px;
}
.cmc-wrap::after {
    left: 6px;
	background: url("../img/dcL-LB.png") no-repeat center center;
	background-size: contain;
}
.cmc-wrap::before {
    right: 6px;
	background: url("../img/dcL-RB.png") no-repeat center center;
	background-size: contain;
}
.cmc-main {
    width: min(900px,calc(100% - 500px));
	height: auto;
	margin: 25px auto 0 auto;
	padding: 40px;
	position: relative;
	z-index: 0;
	
	border: 1px solid #000;
	border-radius: 10px;
	background: #fff;
	
	display: flex;
    flex-wrap: wrap;
	
	will-change: transform, opacity;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: translateY(80px);
	opacity: 0;
}
.cmc-main.appr {
    transform: translateY(0);
	opacity: 1;
}
.cmc-main article {
    width: calc(45% - 20px);
	height: 100%;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: calc(55% + 20px);
	box-sizing: border-box;
	border-radius: 10px;
	pointer-events: none;
	
	background: url("../img/bg-org.jpg") no-repeat bottom left #fff;
	background-size: auto 100%;
	z-index: 1;
	opacity: 0.08;
}
.cmc-main article::after {
    content: "";
	display: block;
	padding-bottom: 133%;
}
.cmc-main::before, .cmc-main::after {
    content: "";
	display: block;
	margin: 0 0 0 -15px;
	width: 30px;
	height: 30px;
	background: #fff;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	position: absolute;
	left: 50%;
}
.cmc-main::before {
    top: -16px;
	transform: rotate(-45deg);
}
.cmc-main::after {
    bottom: -16px;
	transform: rotate(-225deg);
}
.cmc-main figure {
    width: 40%;
	height: auto;
	display: block;
	margin: 0;
}
.cmc-main figure span {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: relative;
	border: 2px solid #f05082;
	overflow: hidden;
	border-radius: 6px;
	
	background: url("../img/bn_comic_pc.jpg") no-repeat center center;
	background-size: 105% auto;
	
	will-change: transform;
	transition: all 0.2s ease-in-out;
}
.cmc-main figure span::after {
    content: "";
	display: block;
	padding-bottom: 153%;
}
.cmc-main figure a:hover span {
    transform: scale(0.99);
	border-color: #64c8d2;
}
.cmc-main section {
    width: 60%;
	height: auto;
	margin: 0;
	padding: 0 0 0 40px;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
	align-content: center;
}
.cmc-main h3 {
    display: inline-block;
	margin: 0 0 0.8em 0;
	
	font-size: 1.6rem;
	font-family: kaisotai, sans-serif;
    font-weight: 600;
    font-style: normal;
	line-height: 1em;
	letter-spacing: 0.04em;
	
	position: relative;
	z-index: 2;
}
.cmc-main h3::after {
    content: "";
	display: block;
	margin: 0;
	width: 150px;
	height: 40px;
	background: url("../img/introtxt.png") no-repeat left top;
	background-size: contain;
	position: absolute;
	bottom: -28%;
	right: calc((150px + 20px) * -1);
}
.cmc-main p {
    display: inline-block;
	margin: 0;
	
	font-size: 1.1rem;
	font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	line-height: 2em;
	letter-spacing: 0.04em;
	
	position: relative;
	z-index: 2;
}







/* --- F O O T E R --- */

footer {
    width: 100%;
	height: auto;
	margin: 0;
	padding: 70px 0;
	background: #f05082;
	position: relative;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer figure {
    width: max(20%,300px);
	height: auto;
	display: block;
	margin: 0 0 30px 0;
	background: url("../img/logo_wt.webp") no-repeat center center;
	background-size: contain;
	position: relative;
}
footer figure::after {
    content: "";
	display: block;
	padding-bottom: 60%;
}
footer p {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 20px 0;
	text-align: center;
	
	font-size: 0.9rem;
	font-family: kaisotai, sans-serif;
    font-weight: 600;
    font-style: normal;
	letter-spacing: 0.02em;
	line-height: 1.4em;
	color: #fff;
}
footer p:nth-last-of-type(1) {
    margin: 0;
}
footer p a {
    font-size: 1.1em;
    font-family: aptly, sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
	color: #fff;
	
	transition: all 0.15s ease-out;
}
footer p a:hover {
    color: #64c8d2;
}
.ft-txt {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 30px 0;
}
.ft-txt span {
    width: min(700px,70%);
	height: auto;
	display: block;
	margin: 0 auto;
}

.ot-lnkBT {
    width: 100%;
	height: auto;
	display: block;
	margin: 100px 0 0 0;
	text-align: center;
	
	will-change: opacity, transform;
    transition: all 1.2s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: translateY(40px);
	opacity: 0;
}
.ot-lnkBT.appr {
    transform: translateY(0);
	opacity: 1;
}
.ot-lnkBT div {
    display: inline-block;
	margin: 0;
	padding: 12px 50px;
	
	border-radius: 50px;
	background: #f05082;
	
	will-change: transform;
	transition: all 0.2s ease-out;
}
.ot-lnkBT div span {
    width: auto;
	height: auto;
	position: relative;
	
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	margin: 0;
	
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1em;
	color: #fff;
}
.ot-lnkBT div span::before {
    content: "";
	display: inline-block;
	width: 24px;
	height: 12px;
	margin: 1px 15px 0 0;
	background: url("../../movie/img/mn-arw_wt.png") no-repeat center center;
	background-size: 100% auto;
}

.ot-lnkBT a:hover div {
    background: #64c8d2;
	transform: translateX(-10px);
}

.br-500, .br-650 {
    display: none;
}












/* --------- < 1100px > --------- */

@media (max-width: 1100px) {

.top-wrap {
	padding: 0;
}

/* --- N A V   M E N U --- */

#nav {
    width: 68px;
    height: 62px;
    margin: 0;
	background: url("../img/nav.png") no-repeat center center;
	background-size: 100% auto;
	cursor: pointer;

    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
}
#nav div {
    width: 36px;
    height: 19px;
    display: block;
    margin: -5px 0 0 0;
    position: relative;
    z-index: 20;
    pointer-events: none;
}
#nav div span {
    width: 100%;
    height: 3px;
    display: block;
    margin: 0;
    background: #f05082;
    position: absolute;
    
    will-change: transform;
    transition: all 0.38s cubic-bezier(0, 0.6, 0.25, 1);
}
#nav div span:nth-of-type(1) {
	top: 0;
    left: 0;
    animation: 0.5s mnAni1B ease-out forwards alternate;
}
#nav div span:nth-of-type(2) {
	top: 8px;
    left: 0;
    animation: 0.5s mnAni2B ease-out forwards alternate;
}
#nav div span:nth-of-type(3) {
	bottom: 0;
    right: 0;
    animation: 0.5s mnAni3B ease-out forwards alternate;
}

#nav div.active span:nth-of-type(1) {
	animation: 0.5s mnAni1A ease-out forwards alternate;
}
#nav div.active span:nth-of-type(2) {
    animation: 0.5s mnAni2A ease-out forwards alternate;
}
#nav div.active span:nth-of-type(3) {
    animation: 0.5s mnAni3A ease-out forwards alternate;
}

.menu-nav {
    width: 100%;
	height: 100vh;
    background: rgba(255,255,255,0.7);
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 19;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
	
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
    
    display: none;
}
.menu-nav::before {
    content: "";
	display: block;
	margin: 0;
	width: 45px;
	height: 45px;
	background: url("../img/dcM-LT.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 6px;
	left: 6px;
	
	will-change: transform, opacity;
	animation: mn-LT_in 0.6s cubic-bezier(0, 0.6, 0.4, 1) forwards;
}
.menu-nav article {
    width: 100%;
    height: 100%;
    margin: 0;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}
.menu-nav article::before, .menu-nav article::after {
    content: "";
	display: block;
	margin: 0;
	width: 45px;
	height: 45px;
	position: absolute;
	bottom: 6px;
}
.menu-nav article::before {
    left: 6px;
    background: url("../img/dcM-LB.png") no-repeat center center;
	background-size: contain;
	
	will-change: transform, opacity;
	animation: mn-LB_in 0.6s cubic-bezier(0, 0.6, 0.4, 1) forwards;
}
.menu-nav article::after {
    right: 6px;
    background: url("../img/dcM-RB.png") no-repeat center center;
	background-size: contain;
	
	will-change: transform, opacity;
	animation: mn-RB_in 0.6s cubic-bezier(0, 0.6, 0.4, 1) forwards;
}
.menu-wrap {
    width: 100%;
    height: 100%;
    margin: 0;
	padding: 50px 0 80px 0;
    overflow-y: auto;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	align-items: center;
}
.menu-wrap section {
    width: 100%;
    height: auto;
	display: block;
    margin: 0;
    position: relative;
}
.menu-wrap div {
    width: 100%;
    height: auto;
    margin: 0 0 13px 0;
	text-align: center;
}
.menu-wrap div.mn-logo {
    width: 28%;
    height: auto;
    margin: 0 auto 10px auto;
	padding-bottom: 50px;
	position: relative;
	background: url("../img/logo.webp") no-repeat top center;
	background-size: contain;
	
	will-change: transform, opacity;
	animation: mn-TL_in 0.6s cubic-bezier(0, 0.6, 0.4, 1) forwards;
}
.menu-wrap div.mn {
    will-change: transform, opacity;
	opacity: 0;
	animation: mn-MNA_in 0.6s cubic-bezier(0, 0.6, 0.4, 1) forwards;
}
.menu-wrap div.mn-logo::before {
    content: "";
	display: block;
	padding-bottom: 60%;
}
.menu-wrap div.mn-logo::after {
    content: "";
	display: block;
	margin: 0 0 0 -22px;
	width: 44px;
	height: 44px;
	background: url("../img/kingyoB.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 50%;
}
.menu-wrap div span {
    display: inline-block;
	margin: 0.15em 0 0 0;
	
	font-size: 1.8rem;
    font-family: aptly, sans-serif;
    font-weight: 500;
    font-style: normal;
	line-height: 1em;
	letter-spacing: 0.02em;
	color: #f05082;
}
.menu-wrap div.os span {
    color: #64c8d2;
	position: relative;
}
.menu-wrap div.os span::before {
    content: "";
	display: block;
	width: 26px;
	height: 26px;
	background: url("../img/mn-arw.png") no-repeat center center;
	background-size: 100% auto;
	position: absolute;
	left: -40px;
	top: 50%;
	margin: -13px 0 0 0;
}
.menu-wrap div.mn-sns {
    width: 100%;
	height: auto;
	margin: 0;
	padding: 50px 0 0 0;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	position: relative;
	
	will-change: transform, opacity;
	opacity: 0;
	animation: mn-MNA_in 0.6s cubic-bezier(0, 0.6, 0.4, 1) forwards;
}
.menu-wrap div.mn-sns::before {
    content: "";
	display: block;
	margin: 0 0 0 -25px;
	width: 50px;
	height: 25px;
	background: url("../img/share.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 50%;
}
.menu-wrap div.mn:nth-of-type(2)  { animation-delay: 0.10s; }
.menu-wrap div.mn:nth-of-type(3)  { animation-delay: 0.20s; }
.menu-wrap div.mn:nth-of-type(4)  { animation-delay: 0.30s; }
.menu-wrap div.mn:nth-of-type(5)  { animation-delay: 0.40s; }
.menu-wrap div.mn:nth-of-type(6)  { animation-delay: 0.50s; }
.menu-wrap div.mn:nth-of-type(7)  { animation-delay: 0.60s; }
.menu-wrap div.mn:nth-of-type(8)  { animation-delay: 0.70s; }
.menu-wrap div.mn:nth-of-type(9)  { animation-delay: 0.80s; }
.menu-wrap div.mn:nth-of-type(10) { animation-delay: 0.90s; }
.menu-wrap div.mn:nth-of-type(11) { animation-delay: 1.00s; }
.menu-wrap div.mn:nth-of-type(12) { animation-delay: 1.10s; }
.menu-wrap div.mn:nth-of-type(13) { animation-delay: 1.20s; }

.menu-wrap div.mn-sns             { animation-delay: 1.00s; }

.menu-wrap div.mn-sns > div {
    width: auto;
	height: auto;
    display: inline-block !important;
	margin: 0;
}
.menu-wrap div.mn-sns > div i {
    display: inline-block;
	margin: 0 10px;
	
    font-size: 2.1rem;
	line-height: 1em;
	letter-spacing: 0;
	color: #f05082;
}

header {
    display: none;
}
.hd-logo {
    width: 103px;
	height: 90px;
}
.tp-title_pc {
    margin: 70px auto 0 auto;
}
.tp-news::before, .tp-news::after,
.tp-news figure::before, .tp-news figure::after {
	width: 36px;
	height: 36px;
}
.tp-news h1 {
	font-size: 2.0rem;
}
.news-main {
    width: calc(100% - 50px);
}

.sc article {
	font-size: 1.0rem;
}
.sc article b {
	padding: 0.3em;
}
.ch-txt {
	font-size: 1.0rem;
}
#ctg_cast .sc article {
    font-size: 1.2rem;
}
.sc h2 {
	font-size: 2.4rem;
}
.sc h2 span {
	height: 48px;
	left: 1.5em;
}
.sc h2 b {
	font-size: 0.9rem;
	transform: translateY(-1.1em);
}
.sc p {
	padding: 0 0 80px 0;
	font-size: 0.9rem;
}
.scWP-1::before,
.scWP-2 section:nth-of-type(2)::before, .sc p::before {
	width: 35px;
	height: 35px;
}
.dc-fttxt {
    width: calc(100% - 200px);
	height: 18px;
	left: 100px;
}

.ct-title {
    width: 75px;
	left: 40px;
	top: 120px;
}
.ct-title h1 {
	font-size: 4.5rem;
}
.ctg-title {
    width: 45px;
	left: 120px;
	top: 120px;
}
.ctg-title h1 {
	font-size: 2.6rem;
}
.ctg-title span {
	margin: 0.5em 0 0 0.7em;
	font-size: 0.9rem;
}

.cont-wrap {
    width: calc(100% - (200px + 8%));
	margin: 0 8% 0 200px;
}
.cont-wrap.cont-mv {
    width: calc(100% - (200px + 60px));
	margin: 0 60px 0 200px;
}
.cont-wrap.wide {
    width: calc(100% - (180px + 8%));
	margin: 0 8% 0 180px;
}

.cr-name h1 {
	font-size: 2.5rem;
}
.cr-name h1 span {
	height: 50px;
	left: 65%;
	bottom: -70%;
}
.cv-name {
	margin: 30px 0 0 0;
}
.cv-name h2 {
	font-size: 1.5rem;
}
.cv-name b {
	font-size: 0.85rem;
}
.CRS-wrap p {
	margin: 15px 0 0 0;
	padding: 40px 0;
	
	font-size: 0.9rem;
	line-height: 1.8em;
}
.bg-CRS {
    width: 180px;
	right: 4%;
}
.bg-CRS span {
	animation: crbg-scl_sp 35.0s linear infinite;
}
.sc {
    width: calc(100% - (200px + 8%));
	margin: 0 8% 0 200px;
}

.sc_st-wrap {
    width: calc(100% - (200px + 8%));
	margin: 0 8% 0 200px;
}
.sc_st-wrap .sc {
    width: max(calc(50% - 10px),380px);
	margin: 0 10px 50px 0;
}

.scWP-2 section:nth-of-type(1) {
    width: 280px;
}
.scWP-2 section:nth-of-type(2) {
	padding: 0 0 0 35px;
}
.ctg#ctg_staff {
    margin: 0 0 150px 0;
}

.cmc-main {
    width: calc(100% - 350px);
}
.cmc-wrap::before, .cmc-wrap::after {
	width: 60px;
	height: 60px;
}
.cmc-main p {
	font-size: 1.0rem;
	line-height: 1.8em;
}

#trailer .dotM.dm-1 {
    top: 10%;
	left: 130px;
}
#intro .dotL {
    top: 35%;
	left: 130px;
}
#story .dotM {
    bottom: 20%;
	left: 140px;
}
#character .dotM {
    top: 70%;
	left: 160px;
}

}







/* --------- < 850px > --------- */

@media (max-width: 850px) {

.hd-logo {
    width: 150px;
	height: 131px;
}
.top-wrap {
    flex-wrap: wrap;
}
.top-PIC {
    width: 100%;
    order: 1;
}
.tp-KV {
    width: 100%;
}
.tp-KV::before {
    padding-bottom: 130%;
}

.tp-KV.kv4 article p {
    background: url("../img/kv_04sp.jpg") no-repeat left top;
    background-size: 100% auto;
}

.top-CNT {
    width: 100%;
    order: 2;
	position: relative;
}
.top-CNT::before, .top-CNT::after {
    content: "";
	display: block;
	width: 70px;
	height: 70px;
	margin: 0;
	position: absolute;
	top: 10px;
}
.top-CNT::before {
    left: 10px;
	background: url("../img/dcL-LT.png") no-repeat center center;
	background-size: contain;
}
.top-CNT::after {
    right: 10px;
	background: url("../img/dcL-RT.png") no-repeat center center;
	background-size: contain;
}
.top-CNT-wrap {
    position: static;
}
.tp-txt {
    width: 80%;
    margin: 20% auto 0 auto;
}
.tp-title_pc {
    display: none;
}
.tp-title_sp {
    width: 72%;
	height: auto;
	display: block;
	position: absolute;
	bottom: -14%;
	left: 50%;
	margin: 0 0 0 -36%;
	z-index: 2;
	overflow: hidden;
	pointer-events: none;
}
.tp-title_sp::after {
    content: "";
	display: block;
	padding-bottom: calc(63.5% + 15%);
}
.tp-title_sp span {
    width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	
	will-change: transform, opacity;
}
.tp-title_sp span:nth-of-type(1) {
    background: url("../img/logo-1.webp") no-repeat center center;
	background-size: 100% auto;
	
	transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
	opacity: 0;
	transform: translate(30%,-10%);
}
.tp-title_sp span:nth-of-type(2) {
    background: url("../img/logo-2.webp") no-repeat center center;
	background-size: 100% auto;
	
	transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1) 0.5s;
	opacity: 0;
	transform: translate(-30%,10%);
}
.tp-title_sp span:nth-of-type(3) { 
    background: url("../img/logo-3.webp") no-repeat center center;
	background-size: 100% auto;
	
	transition: all 2.4s cubic-bezier(0.2, 0.45, 0.4, 1) 0.5s;
	opacity: 0;
	transform: translate(0,15%);
}
.tp-title_sp span:nth-of-type(4) { 
    background: url("../img/logo-4.webp") no-repeat center center;
	background-size: 100% auto;
	
	transition: all 3.8s cubic-bezier(0.2, 0.45, 0.4, 1) 0.7s;
	opacity: 0;
	transform: translate(0,-7%);
}
.tp-title_sp.appr span {
    opacity: 1;
	transform: translate(0,0);
}

.top-PIC_thum {
    width: 90px;
	bottom: 10px;
	right: 0;
}
.tpTHM {
    width: 60px;
	height: 60px;
	margin: 22px auto 0 auto;
}

.tp-news {
    width: 70%;
	margin: 120px auto 0 auto;
}
.tp-news article {
	height: 40px;
	top: -80px;
}
.tp-news::before, .tp-news::after,
.tp-news figure::before, .tp-news figure::after {
	width: 50px;
	height: 50px;
}
.tp-news h1 {
	font-size: 2.8rem;
}
.news-main {
    width: calc(100% - 70px);
    margin: 70px auto 0 auto;
}
.top-news-inner div {
    margin: 0 0 16px 0;
    padding: 0 0 16px 0;
}
.top-news-inner div p {
    font-size: 1.3rem;
}
.top-news-inner div span b {
    font-size: 1.0rem;
}

.ct-title {
	top: 150px;
}
.ctg-title {
	top: 150px;
}

.movie-main section::before {
    padding-bottom: 56.25%;
}
.movie-main section article p {
    width: 100px;
    height: 100px;
}

.intro-main h4 {
    font-size: 1.35rem;
}
.intro-main p {
    font-size: 1.0rem;
}

.ch-thum {
    width: calc((100% / 2) - 2%);
	margin: 0 1% 70px 1%;
}

.CRS-wrap {
	padding: 30px 60px 30px 40px;
}
.CRS-picL {
    width: 40%;
}
.CRS-picL::after {
	padding-bottom: 278%;
}
.CRS-main {
    width: 60%;
	
	display: flex;
    flex-wrap: wrap;
}
.CRS-picS {
    order: 2;
	
    width: 100%;
	margin: 30px 0 0 0;
	
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.CRS-picS span {
    width: calc((100% / 3) - 10px);
	margin: 0 10px 0 0;
}
.CRS-picS span:nth-last-of-type(1) {
    margin: 0;
}
.CRS-txt {
    order: 1;
	
    width: 100%;
}

.ctg#ctg_cast {
    margin: 0;
}
.cmc-main {
    width: calc(100% - 290px);
	padding: 30px;
}
.cmc-main p {
	font-size: 0.9rem;
}
.cmc-main section {
	padding: 0 0 0 30px;
}

#ctg_cast .dotM.dc1 {
    top: 2%;
	right: inherit;
	left: 30%;
}
#ctg_cast .dotM.dc2 {
    top: 35%;
	left: 160px;
}
#ctg_cast .dotM.dc3 {
    top: 65%;
	left: 168px;
}
#ctg_cast .dotM.dc4 {
    top: 7%;
	left: 320px;
}
#ctg_cast .dotM.dc5 {
    top: 80%;
	right: 20px;
}
#ctg_cast .dotL.dc2 {
    top: 55%;
	right: 55%;
}
#ctg_cast .dotL.dc3 {
    bottom: 5%;
	right: 65%;
}
#ctg_cast .strp.dc1 {
    width: 20px;
	height: 10%;
	top: 8%;
	right: 0;
}
#ctg_cast .strp.dc2 {
    width: 20px;
	height: 8%;
	top: 70%;
	right: 0;
}

}







/* --------- < 800px > --------- */

@media (max-width: 800px) {

.tp-news::before, .tp-news::after,
.tp-news figure::before, .tp-news figure::after {
	width: 40px;
	height: 40px;
}
.intro-main {
	padding: 50px 0;
}
.intro-main::before, .intro-main::after,
.intro-main article::before, .intro-main article::after {
	width: 40px;
	height: 40px;
}
.int-pic {
	margin: 20px auto 50px auto;
}
.str-pic {
	margin: 40px auto 0 auto;
}
.movie-main section article::before, .movie-main section article::after {
	width: 40px;
	height: 40px;
}
.movie-main section article::before { top: 8px; right: 8px; }
.movie-main section article::after  { bottom: 8px; left: 8px; }

.cmc-main figure {
    width: 100%;
	margin: 0 0 40px 0;
}
.cmc-main figure span {
	margin: 0;
	border-radius: 4px;
	
	background: url("../img/bn_comic_sp.jpg") no-repeat center center;
	background-size: 102% auto;
}
.cmc-main figure span::after {
	padding-bottom: 31.7%;
}
.cmc-main section {
    width: 100%;
	padding: 0;
	display: block;
}

#character .dotL.dl-2 {
	right: 20px;
}

}






/* --------- < 650px > --------- */

@media (max-width: 650px) {

.hd-logo {
    width: 103px;
	height: 90px;
}
.op-wrap div {
    width: 80%;
}
.sc-wrap {
	padding: 100px 0 50px 0;
}

.ct-title, .ctg-title {
    display: none;
}
.ct-title_sp {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 70px 0;
	pointer-events: none;
	text-align: center;
	
	will-change: transform, opacity;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: translateX(-50px);
	opacity: 0;
}
.ct-title_sp.appr {
    transform: translateX(0);
	opacity: 1;
}
.ct-title_sp h1 {
    display: inline-block;
	margin: 0;
	
	font-size: 3.8rem;
	font-family: aptly, sans-serif;
    font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1em;
    font-style: normal;
	color: #f05082;
}
.ct-title_sp h1 b {
    display: inline-block;
	margin: 0 0.1em;
	
	font-size: 0.75em;
    font-weight: 400;
}
.ctg-title_sp {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 40px 0;
	pointer-events: none;
	text-align: center;
	position: relative;
}
.ctg-title_sp h1 {
    width: 100%;
	height: auto;
    display: block;
	margin: 0;
	
	font-size: 3rem;
	font-family: aptly, sans-serif;
    font-weight: 300;
	letter-spacing: -0.02em;
	line-height: 1em;
    font-style: normal;
	color: #f05082;
	
	will-change: transform, opacity;
    transition: all 1.6s cubic-bezier(0.2, 0.45, 0.4, 1);
	transform: translateY(80px);
	opacity: 0;
}
.ctg-title_sp span {
    width: 100%;
	height: auto;
    display: block;
	margin: 0.5em 0 0 0;
	
	font-size: 0.8rem;
	font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
	letter-spacing: 0;
	line-height: 1em;
	color: #000;
	
	will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.2, 0.45, 0.4, 1) 0.8s;
	transform: translateY(-20px);
	opacity: 0;
}
.ctg-title_sp.appr h1, .ctg-title_sp.appr span {
    transform: translateY(0);
	opacity: 1;
}
.ctg-title_sp span b {
    display: inline-block;
	margin: 0 0.35em;
	padding: 0.3em;
	border-radius: 50%;
	font-weight: 400;
	border: 1px solid #000;
}

.ctg {
	margin: 0 0 80px 0;
}
.ctg#ctg_staff {
    margin: 0 0 80px 0;
}

.area-wrap {
    padding: 80px 0 0 0;
}
.cont-wrap {
    width: 80%;
	margin: 0 auto;
	padding: 0;
}
.cont-wrap.cont-mv {
    width: 80%;
	margin: 0 auto;
}
.cont-wrap.wide {
    width: 80%;
	margin: 0 auto;
}

.cr-name h1 {
	font-size: 2.0rem;
}
.cr-name h1 span {
	height: 40px;
	left: 65%;
	bottom: -70%;
}
.cv-name {
	margin: 25px 0 0 0;
}
.cv-name h2 {
	font-size: 1.3rem;
}
.cv-name b {
	font-size: 0.8rem;
}

.sc {
    width: 80%;
	margin: 0 auto;
}
.sc_st-wrap {
    width: 80%;
	margin: 0 auto;
}
.sc_st-wrap .sc {
    width: 100%;
	margin: 0 0 50px 0;
}

.sc article {
    text-align: center;
	margin: 0 0 1em 0;
}
.sc article b {
	margin: 0 0.4em;
}
.sc article i {
	margin: 0 0.4em;
}
.ch-txt {
	margin: 0 0 3.5em 0;
	padding: 0;
	text-align: center;
}
.sc h2 {
    width: 100%;
	height: auto;
    display: block;
	text-align: center;
	margin: 0 0 30px 0;
}
.sc h2 span {
	margin: 0;
	left: 50%;
	bottom: -25px;
}
.scWP-1::after, .sc p::after, .scWP-2 section:nth-of-type(2)::after {
    content: "";
	display: block;
	margin: 0;
	width: 35px;
	height: 35px;
	position: absolute;
}
.scWP-1::after, .scWP-2 section:nth-of-type(2)::after {
    left: 0;
	top: 0;
    background: url("../img/dcS-LT.png") no-repeat center center;
	background-size: contain;
	
	will-change: transform, opacity;
    transition: all 1.4s cubic-bezier(0.2, 0.45, 0.4, 1) 0.8s;
	transform: translate(-30px,-30px);
	opacity: 0;
}
.sc_st-wrap .scWP-1::after {
    display: none;
}
.sc.appr .scWP-1::after, .sc.appr .scWP-2 section:nth-of-type(2)::after {
    transform: translate(0,0);
	opacity: 1;
}
.sc p::after {
    right: 0;
	bottom: 0;
    background: url("../img/dcS-RB.png") no-repeat center center;
	background-size: contain;
	
	will-change: transform, opacity;
    transition: all 1.4s cubic-bezier(0.2, 0.45, 0.4, 1) 0.8s;
	transform: translate(30px,30px);
	opacity: 0;
}
.sc.appr p::after {
    transform: translate(0,0);
	opacity: 1;
}

.scWP-2 {
	margin: 0 0 30px 0;
	display: block;
}
.scWP-2 section:nth-of-type(1) {
    width: 50%;
	margin: 0 auto;
}
.scWP-2 section:nth-of-type(2) {
    width: 100%;
	padding: 11% 0 0 0;
}
.sdw2 {
	top: 45%;
}

footer {
	padding: 50px 0;
}
footer figure {
    width: 35%;
	margin: 0 0 25px 0;
}
footer p {
	margin: 0 0 15px 0;
	font-size: 0.8rem;
}
.ft-txt {
	margin: 0 0 25px 0;
}
.ft-txt span {
    width: 70%;
}

.dotM {
    width: 16px;
	height: 16px;
}
.dotL {
    width: 28px;
	height: 28px;
}
.dtln {
	height: 5px;
	right: inherit;
}
.strp {
	background-size: 35px auto;
}


#trailer .dtln {
    width: 185px;
	bottom: -20%;
}
#trailer .dotM.dm-2 {
    bottom: 14%;
	left: inherit;
	right: 20px;
}

#intro .dotL {
    top: 60%;
	left: 10px;
}
#intro .dotM {
    top: 15%;
	right: 35%;
}
#story .dotL {
    top: 12%;
	right: 75%;
}
#story .dotM {
    bottom: -5%;
	left: 75%;
}

#character .dtln {
    width: 80px;
	top: 10%;
}
#character .dotM {
    top: 70%;
	left: 50%;
}

#ctg_ori .dotM {
    top: inherit;
    bottom: -5%;
	left: 30%;
}
#ctg_ori .dotL {
    display: none;
}
#ctg_ori .dtln {
    width: 102px;
	bottom: inherit;
	top: -120px;
	left: 0;
}
#ctg_ori .strp {
    width: 15px;
	height: 50%;
	top: 22%;
	right: inherit;
	left: 0;
}

#ctg_staff .dotM.dc1 {
    top: 11%;
	right: inherit;
	left: 19%;
}
#ctg_staff .dotM.dc2 {
    top: 53%;
	left: inherit;
	right: 28%;
}
#ctg_staff .dotM.dc3 {
    bottom: 2%;
	right: 25%;
}
#ctg_staff .dotL.dc1 {
    top: 2%;
	right: 15%;
}
#ctg_staff .dotL.dc2 {
    bottom: 35%;
	left: 13%;
}
#ctg_staff .strp.dc1 {
    width: 15px;
	height: 20%;
	top: 25%;
	right: 0;
}
#ctg_staff .strp.dc2 {
    display: block;
    width: 15px;
	height: 14%;
	top: inherit;
	bottom: 5%;
	right: inherit;
	left: 0;
}
#ctg_staff .dtln {
    width: 100px;
	bottom: inherit;
	top: -110px;
	right: 0;
}

#ctg_cast .dotM.dc1 {
    top: 10%;
	right: inherit;
	left: 22%;
}
#ctg_cast .dotM.dc2 {
    top: inherit;
	bottom: 30%;
	left: inherit;
	right: 15%
}
#ctg_cast .dotM.dc3 {
    top: 30%;
	left: 15%;
}
#ctg_cast .dotL.dc1 {
    top: 0;
	right: 18%;
}
#ctg_cast .dotL.dc2 {
    top: 25%;
	right: inherit;
	left: 20px;
}
#ctg_cast .dotL.dc3 {
    bottom: 15%;
	right: 15%;
}

#ctg_cast .strp.dc1 {
    width: 15px;
	height: 8%;
	top: 20%;
	right: 0;
}
#ctg_cast .strp.dc2 {
    display: block;
    width: 15px;
	height: 6%;
	top: inherit;
	bottom: 25%;
	right: inherit;
	left: 0;
}

.cmc-main {
    width: 70%;
}
.cmc-main::before, .cmc-main::after {
    margin: 0 0 0 -10px;
	width: 20px;
	height: 20px;
}
.cmc-main::before {
    top: -11px;
}
.cmc-main::after {
    bottom: -11px;
}

.totopBT {
    width: 50px;
	height: 50px;
	bottom: -90px;
	right: 20px;
}
.totopBT.appr {
    bottom: 40px;
}
.totopBT div {
	box-shadow: 4px 4px 0px -2px #f05082;
}

.br-650 {
    display: inherit;
}


}









/* --------- < 500px > --------- */

@media (max-width: 500px) {

#nav {
    width: 53px;
    height: 48px;
}
.menu-wrap div.mn-logo {
    width: 40%;
    margin: 0 auto 10px auto;
	padding-bottom: 40px;
}
.menu-wrap div.mn-logo::after {
	margin: 0 0 0 -17px;
	width: 34px;
	height: 34px;
}
.menu-wrap div {
    margin: 0 0 10px 0;
}
.menu-wrap div span {
	margin: 0;
	font-size: 1.25rem;
}
.menu-nav::before,
.menu-nav article::before, .menu-nav article::after {
	width: 34px;
	height: 34px;
}
.menu-wrap div.mn-sns > div i {
	margin: 0 8px;
    font-size: 1.8rem;
}

.hd-logo {
    display: none;
}
.top-PIC_thum {
    width: 51px;
	bottom: -14px;
}
.tpTHM {
    width: 34px;
	height: 34px;
	margin: 13px auto 0 auto;
	box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.3);
}
.top-CNT::before, .top-CNT::after {
	width: 40px;
	height: 40px;
	top: 6px;
}
.top-CNT::before {
    left: 6px;
}
.top-CNT::after {
    right: 6px;
}
.tp-txt {
    width: 90%;
    margin: calc(12% + 40px) auto 0 auto;
}
.tp-news {
    width: calc(100% - 50px);
	margin: 80px auto 0 auto;
}
.tp-news article {
	height: 28px;
	top: -55px;
}
.tp-news::before, .tp-news::after,
.tp-news figure::before, .tp-news figure::after {
	width: 32px;
	height: 32px;
}
.tp-news h1 {
	font-size: 2.0rem;
}
.news-main {
    width: calc(100% - 40px);
    margin: 50px auto 0 auto;
}
.top-news-inner div {
    margin: 0 0 13px 0;
    padding: 0 0 13px 0;
}
.top-news-inner div p {
    font-size: 1.0rem;
}
.top-news-inner div span b {
    font-size: 0.85rem;
}
.moreBT {
    width: 50px;
	height: 50px;
}
.moreBT div {
    box-shadow: 4px 4px 0px -2px #f05082;
}
.itv-txt {
	height: 15px;
	margin: 25px 0 0 0;
}
.itv-txt span {
	animation: txtscl_sp 25.0s linear infinite;
}

.sc-wrap {
	padding: 60px 0 30px 0;
}
.bg-kj {
    width: 45%;
	right: -9%;
}
.ct-title_sp {
	margin: 0 0 40px 0;
}
.ct-title_sp h1 {
	font-size: 2.8rem;
}
.ctg-title_sp {
	margin: 0 0 30px 0;
}
.ctg-title_sp h1 {
	font-size: 2.4rem;
}
.ctg-title_sp span {
	font-size: 0.7rem;
}
.ctg {
	margin: 0 0 60px 0;
}
.ctg#ctg_staff {
    margin: 0 0 60px 0;
}

.area-wrap {
    padding: 40px 0 0 0;
}
.cont-wrap {
    width: calc(100% - 80px);
	margin: 0 auto 40px auto;
}
.cont-wrap.cont-mv {
    width: 100%;
}
.cont-wrap.cont-ch {
    width: calc(100% - 20px);
}
.cont-wrap.wide {
    width: calc(100% - 60px);
	margin: 0 auto 20px auto;
}

.movie-main {
    margin: 0 0 50px 0;
}
.movie-main::before {
    display: none;
}
.MV-prev, .MV-next {
    width: 60px;
    height: 60px;
	top: inherit;
	bottom: -2px;
	margin-top: 0;
}
.MV-prev { left:  0; }
.MV-next { right: 0; }

.MV-prev span, .MV-next span {
	filter: drop-shadow(0px 2px 0px #f05082);
}

.movie-main.appr .MV-prev, .movie-main.appr .MV-next {
    transform: translateX(0);
	opacity: 1;
}
.MV-prev:hover span, .MV-next:hover span {
    transform: translateY(2px);
}
.swiper-pagination.MVpgn {
    bottom: -25px;
}
.MVpgn > .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
    margin: 0 4px !important;
}
.movie-main section article::before, .movie-main section article::after {
	width: 35px;
	height: 35px;
}
.movie-main section article::before {
    top: 6px;
	right: 6px;
}
.movie-main section article::after {
    top: 6px;
	left: 6px;
	background: url("../img/dcM-LT_wt.png") no-repeat left top;
	background-size: 100% auto;
}
.movie-main p {
    margin: 15px 0 0 0;
	font-size: 0.8rem;
	letter-spacing: 0.03em;
}

.intro-main {
	padding: 50px 0;
}
.intro-main::before, .intro-main::after,
.intro-main article::before, .intro-main article::after {
	width: 35px;
	height: 35px;
}
.intro-main h4 {
    font-size: 1.0rem;
	letter-spacing: 0.06em;
	line-height: 1.8em;
}
.intro-main p {
    font-size: 0.85rem;
	letter-spacing: 0.06em;
}

.int-pic {
    width: calc(100% - 16px);
	margin: 10px auto 30px auto;
}
.int-pic::before, .int-pic::after {
	width: 68px;
	height: 68px;
	background-size: 25px auto;
}
.int-pic::before {
    left: -8px;
	top: -8px;
}
.int-pic::after {
    right: -8px;
	bottom: -8px;
}
.int-pic figure i {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.int-pic figure::after, .int-pic figure i::after {
	padding-bottom: 87.5%;
}
.int-pic figure i:nth-of-type(1) {
    background: url("../img/picL_sp-1.webp") no-repeat left top;
	background-size: 100% auto;
}
.int-pic figure i:nth-of-type(2) {
    background: url("../img/picL_sp-2.webp") no-repeat left top;
	background-size: 100% auto;
}

.str-pic {
	margin: 20px auto 0 auto;
	flex-wrap: wrap;
}
.str-pic span {
    width: calc(100% / 2.6);
	filter: drop-shadow(0px 4px 0px rgba(240,80,130,1));
}
.str-pic span:nth-of-type(2) {
	margin: 22% 0 0 -18%;
}
.str-pic span:nth-of-type(3) {
	margin: 0 0 0 -18%;
}
.str-pic span:nth-of-type(4) {
	margin: 22% 0 0 -18%;
}

.ch-name_en {
	height: 35px;
	bottom: -40px;
}
.ch-name {
	font-size: 0.88rem;
}
.ch-name b {
	margin: 0 0.2em;
	padding: 0.25em;
}
.ch-name i {
	width: 4px;
	height: 4px;
}
.ch-thum {
	margin: 0 1% 45px 1%;
}
.ch-thum:nth-last-of-type(-n+2) {
    margin: 0 1% 0 1%;
}

.sw_modal {
	padding: 30px 10px;
}
.sw_modal section {
    width: calc(100% - 40px);
}
.swmd-closeBT {
    width: 40px;
    height: 40px;
	border: 1px solid #f05082;

    top: -20px;
    right: -20px;
}
.CRS-prev, .CRS-next {
    width: 56px;
    height: 56px;
	margin: -28px 0 0 0;
}
.CRS-prev { left:  -26px; }
.CRS-next { right: -26px; }

.CRS-wrap::before, .CRS-wrap::after,
.CRS-wrap article::before, .CRS-wrap article::after {
	width: 30px;
	height: 30px;
}
.CRS-wrap::before         { top: 6px; left: 6px; }
.CRS-wrap::after          { top: 6px; right: 8px; }
.CRS-wrap article::before { bottom: 6px; left: 6px; }
.CRS-wrap article::after  { bottom: 6px; right: 6px; }

.CRS-wrap article span::before, .CRS-wrap article span::after {
	width: 12px;
	height: calc(100% - 100px);
	top: 50px;
}
.CRS-wrap article span::before { left: 5px; }
.CRS-wrap article span::after  { right: 5px; }

.CRS-prev span, .CRS-next span {
	filter: drop-shadow(0px 2px 0px #f05082);
}
.CRS-prev:hover span, .CRS-next:hover span {
    transform: translateY(2px);
}
.CRS-wrap {
	padding: 30px 40px;
}
.CRS-picL {
    width: 100%;
	margin: 0 0 20px 0;
}
.CRS-picL::after {
	padding-bottom: 100%;
}
.CRS-main {
    width: 100%;
}
.CRS-txt {
	padding: 0;
}
.cv-name b {
	font-size: 0.7rem;
	margin: 0 0.25em 0 0;
}
.CRS-wrap p {
	margin: 10px 0 0 0;
	padding: 25px 0;
	position: relative;
	
	font-size: 0.8rem;
}
.CRS-wrap p::before, .CRS-wrap p::after {
	width: 20px;
	height: 20px;
}
.CRS-picS {
	margin: 20px 0 0 0;
}
.bg-CRS {
	display: none;
}

.sc {
    width: calc(100% - 80px);
}
.sc_st-wrap .sc {
	margin: 0 0 20px 0;
}
.sc article {
	margin: 0 0 0.7em 0;
	font-size: 0.9rem;
}
.sc_st-wrap .sc article {
    margin: 0 0 0.9em 0;
	font-size: 0.75rem;
}
.sc_st-wrap .sc article b {
	margin: 0 0.2em;
}
.sc_st-wrap .sc article i {
	width: 4px;
	height: 4px;
	margin: 0 0.2em;
}
.sc article i {
	width: 4px;
	height: 4px;
	margin: 0 0.2em;
}
.ch-txt {
    margin: 0 0 2.5em 0;
	font-size: 0.9rem;
}
#ctg_cast .sc article {
    font-size: 1.1rem;
}
.sc h2 {
    margin: 0 0 30px 0;
	font-size: 2.1rem;
}
.sc h2 span {
	height: 38px;
	left: inherit;
	right: 0;
	bottom: -25px;
}
.sc h2 b {
	font-size: 0.8rem;
	transform: translateY(-1.0em);
}
.sc p {
	padding: 0 0 50px 0;
	
	font-size: 0.85rem;
	line-height: 1.8em;
}
.scWP-1.stL {
    margin: 0 0 50px 0;
}
.scWP-1::before, .scWP-2 section:nth-of-type(2)::before, .sc p::before,
.scWP-1::after, .sc p::after, .scWP-2 section:nth-of-type(2)::after {
	width: 27px;
	height: 27px;
}
.scWP-2 section:nth-of-type(1) {
    width: 68%;
}
.sdw1 {
	top: 1.8%;
	left: 1.5%;
}
.sdw2 {
	top: 40%;
	left: -2%;
}
.dc-fttxt {
    width: calc(100% - 120px);
	height: 12px;
	left: 60px;
}
.cmc-wrap::before, .cmc-wrap::after {
	width: 45px;
	height: 45px;
}

footer {
	padding: 40px 0;
}
footer figure {
    width: 40%;
	margin: 0 0 25px 0;
}
footer p {
	margin: 0 0 15px 0;
	font-size: 0.65rem;
	letter-spacing: 0.01em;
}
.ft-txt {
	margin: 0 0 25px 0;
}
.ft-txt span {
    width: 80%;
}
.totopBT {
	right: 12px;
}

.dotM {
    width: 14px;
	height: 14px;
}
.dotL {
    width: 22px;
	height: 22px;
}
.dtln {
	height: 4px;
}
.strp {
	background-size: 30px auto;
}

.cmc-wrap {
	padding: 0 0 80px 0;
}
.cmc-main {
    width: calc(100% - 80px);
	padding: 25px;
}
.cmc-main figure {
	margin: 0 0 30px 0;
}
.cmc-main article {
    width: calc(50% + 8px);
	left: calc(50% - 8px);
}
.cmc-main h3 {
	margin: 0 0 0.8em 0;
	font-size: 1.3rem;
}
.cmc-main h3::after {
	width: 112px;
	height: 32px;
	bottom: -38%;
	right: calc((112px + 12px) * -1);
}
.cmc-main p {
	font-size: 0.85rem;
	line-height: 1.9em;
	letter-spacing: 0.03em;
}

.ot-lnkBT {
	margin: 70px 0 0 0;
}
.ot-lnkBT div {
	padding: 10px 30px;
}
.ot-lnkBT div span {
	font-size: 0.9rem;
}
.ot-lnkBT div span::before {
	width: 20px;
	height: 10px;
	margin: 1px 12px 0 0;
}


#trailer .dtln {
    width: 80px;
	bottom: -10%;
}
#trailer .dotM.dm-1 {
    top: -5%;
	left: inherit;
	right: 20%;
}
#trailer .dotM.dm-2 {
    display: none;
}

#intro .strp {
    width: 10px;
}
#intro .dotM {
    top: 7%;
	right: 25%;
}

#story .strp {
    width: 10px;
}
#story .dotL {
    top: 7%;
	right: 75%;
}
#story .dotM {
    bottom: -5%;
	left: 65%;
}

#character .dtln {
    width: 68px;
	top: 3%;
}
#character .dotL.dl-1 {
    top: -2%;
	left: inherit;
	right: 12%;
}
#character .dotL.dl-2 {
    top: 45%;
	right: 12px;
}
#character .dotM {
    top: 70%;
	left: 50%;
}


#ctg_ori .dotM {
    bottom: -5%;
	left: 30%;
}
#ctg_ori .dtln {
    width: 65px;
	top: -90px;
	left: 0;
}
#ctg_ori .strp {
    width: 10px;
	height: 55%;
	top: 20%;
}

#ctg_staff .dotM.dc1 {
    top: 11%;
	left: 10px;
}
#ctg_staff .dotM.dc2 {
    top: 53%;
	left: inherit;
	right: 28%;
}
#ctg_staff .dotM.dc3 {
    bottom: 2%;
	right: 25%;
}
#ctg_staff .dotL.dc1 {
    top: inherit;
	bottom: 1%;
	right: 12%;
}
#ctg_staff .dotL.dc2 {
    bottom: 32%;
	left: 10%;
}
#ctg_staff .strp.dc1 {
    width: 10px;
	height: 20%;
	top: 25%;
}
#ctg_staff .strp.dc2 {
    width: 10px;
	height: 16%;
	bottom: 3%;
}
#ctg_staff .dtln {
    width: 60px;
	top: -90px;
}

#ctg_cast .dotM.dc1 {
    top: 12%;
	left: inherit;
	right: 12%;
}
#ctg_cast .dotM.dc2 {
	bottom: 25%;
	right: inherit;
	left: 10%;
}
#ctg_cast .dotM.dc3 {
    top: 42%;
	left: 12%;
}
#ctg_cast .dotM.dc4 {
    top: 7%;
	left: 10px;
}
#ctg_cast .dotM.dc5 {
    top: inherit;
	bottom: 11%;
	right: 15px;
}
#ctg_cast .dotL.dc1 {
    top: -4%;
	right: 12%;
}
#ctg_cast .dotL.dc2 {
    bottom: 35%;
	right: inherit;
	left: 10%;
}
#ctg_cast .strp.dc1 {
    width: 10px;
	height: 8%;
	top: 22%;
}
#ctg_cast .strp.dc2 {
    width: 10px;
	height: 7%;
	bottom: 15%;
}


.br-500 {
    display: inherit;
}

}


