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

body {
	margin: 0;
	padding: 0;
    background: #000;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-size: 62.5%;
    letter-spacing: 0.04em;
	line-height: 1.8em;
    position: relative;
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
    
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
a {
	outline: none;
    text-decoration: none;
}
a img {
	border: none;
    outline: none;
}
section, div, span {
    box-sizing: border-box;
}
* img {
    width: 100%;
    height: auto;
    display: block;
}
.br_pc {
    display: inherit;
}
.br_sp {
    display: none;
}
.br_spL {
    display: none;
}
.br_330 {
    display: none;
}



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

.BKwrap {
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    pointer-events: none;
    background: #000;
    opacity: 0;
    
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}
.BKwrap.WRtppg {
    transition: all 0.3s linear 0.5s;
    -webkit-transition: all 0.3s linear 0.5s;
}

body.bd_fade .BKwrap {
    opacity: 1;
}

.loader {
	width: 80px;
	height: 140px;
    display: block;
    position: fixed;
	top: 50%;
	left: 50%;
    margin: -70px 0 0 -40px;
    pointer-events: none;
    background: url("../img/load_R.webp") no-repeat center center;
    background-size: 100% auto;
	z-index: 21;
    
    will-change: transform;
    animation: 1.0s loading-bs forwards cubic-bezier(0.3, 1.8, 0.6, 1);
}
.loader span {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    will-change: opacity;
}

.loader span:nth-of-type(1) {
    background: url("../img/load_G.webp") no-repeat center center;
    background-size: 100% auto;
    opacity: 0;
    
    animation: 2s loading-1 linear infinite;
}
.loader span:nth-of-type(2) {
    background: url("../img/load_B.webp") no-repeat center center;
    background-size: 100% auto;
    opacity: 0;
    
    animation: 2s loading-2 linear infinite;
}
.loader span:nth-of-type(3) {
    background: url("../img/load_R.webp") no-repeat center center;
    background-size: 100% auto;
    opacity: 0;
    
    animation: 2s loading-3 linear infinite;
}

@keyframes loading-bs {
    0%   { transform: translateY(-40%); }
    100% { transform: translateY(0); }
}

@keyframes loading-1 {
    0%   { opacity: 0; }
    33%  { opacity: 1; }
}
@keyframes loading-2 {
    33%  { opacity: 0; }
    66%  { opacity: 1; }
}
@keyframes loading-3 {
    66%  { opacity: 0; }
    100% { opacity: 1; }
}



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

header {
    width: 100%;
    height: 54px;
    margin: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    background: #000;
    z-index: 5;
    
    -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.6);
}
header article {
    width: 85px;
    height: 42px;
    display: block;
    margin: 0;
    
    position: absolute;
    top: 7px;
    left: 30px;
    z-index: 3;
}
.hd-menu {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 30px 0 0;
    position: relative;
    
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}
.hd-menu div {
    display: inline-block;
    margin:  0 4px 0 0;
    padding: 0 10px 0 0;
    position: relative;
    overflow: hidden;
}
.hd-menu div::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background: url("../img/mn-point.png") no-repeat center center;
    background-size: 100% auto;
    
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4px;
}
.hd-menu div:nth-last-of-type(1) {
    margin: 0;
    padding: 0;
}
.hd-menu div:nth-last-of-type(1)::after {
    display: none;
}
.hd-menu div span {
    display: block;
    margin: 0;
    position: relative;
    
    font-family: victorian-orchid, serif; 
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.01em;
    line-height: 1em;
    
    font-size: 1.0rem;
    color: #e80000;

    transition: all 0.15s ease-out;
}
.hd-menu div span::after {
    content: attr(data-text);
    display: block;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    color: #f3faff;
}
.hd-menu div span i {
    font-size: 1.1em;
    display: inline-block;
    margin: 0;
}
.hd-menu div a:hover span {
    transform: translateY(calc(-100% - 7px));
}
.hd-menu div:nth-last-of-type(1) a:hover span {
    transform: translateY(0) scale(1.1);
    color: #f3faff;
}
#MnavBT, .Mmenu-nav, .xBT {
    display: none;
}
@keyframes mn-fadein {
    0%   { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}




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

.top-wrap {
    width: 100%;
    height: auto;
    margin: 0;
    
    display: flex;
    flex-wrap: nowrap;
}
.topCT-wrap {
    width: 400px;
    height: auto;
    margin: 0;
    display: block;
    position: relative;
    margin-top: 54px; /* header H */
}
.top-pic_pc {
    width: calc(100% - 400px);
    height: auto;
    margin-top: 54px; /* header H */
    display: block;
    overflow: hidden;
    position: relative;
}
.top-pic_pc div {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    background: url("../img/bg-top_3.jpg") no-repeat top left;
    background-size: 100% auto;
    position: relative;
    
    will-change: transform;
    transform: scale(1.2);
    transition: all 3.5s cubic-bezier(0.04, 0.68, 0.15, 1) 0.5s;
}
.top-pic_pc div::after {
    content: "";
    display: block;
    padding-bottom: 141.2%;
}
.top-pic_pc.appr div {
    transform: scale(1);
}
.top-pic_pc div span {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    position: absolute;
    bottom: 3%;
    left: 0;
    background: url("../img/top-title.webp") no-repeat top center;
    background-size: 100% auto;
}
.top-pic_pc div span::after {
    content: "";
    display: block;
    padding-bottom: 55.4%;
}
.top-pic_sp {
    display: none;
}



.topCT {
    width: 100%;
    height: auto;
    min-height: 100vh;
    margin: 0;
    display: block;
    position: sticky;
    top: 54px; /* header H */
    left: 0;
    
    background: url("../img/bg-red.jpg") no-repeat top left;
    background-size: cover;
}
.tp-title {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 40px 0 20px 0;
}
.tp-title div {
    width: 330px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.tp-title span {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tp-info {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0 0 30px 0;
    text-align: center;
}
.tp-info p {
    display: inline-block;
    margin: 0;
    
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.6em;
    color: #000;
}
.tp-info p b {
    display: inline-block;
    margin: 0;
    
    font-family: victorian-orchid, serif;
    font-size: 1.5em;
    font-weight: 300;
    letter-spacing: 0;
}
.tp-info p strong {
    display: inline-block;
    margin: 0;
    
    font-size: 1.25em;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.5em;
    color: #000;
}
.tp-info p strong > b {
    font-size: 1.5em;
    font-weight: 400;
    letter-spacing: 0;
}

.tp-movie {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}
.tp-movie div {
    width: calc(100% - 40px);
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    position: relative;
    background: url("../img/mv-thum_2.jpg") no-repeat center center;
    background-size: 100% auto;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #000;
    z-index: 0;
}
.tp-movie div::before {
    content: "";
    display: block;
    padding-bottom: 55%;
}
.tp-movie span {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 1;
    
    will-change: transform;
    transform: scale(1.1);
}
.tp-movie span::before,
.tp-movie span::after {
    content: "";
    display: block;
    width: 38%;
    height: 38%;
    position: absolute;
}
.tp-movie span::before {
    background: url("../img/mv-bLT.png") no-repeat left top;
    background-size: 100% auto;
    left: 0;
    top: 0;
}
.tp-movie span::after {
    background: url("../img/mv-bRB.png") no-repeat left top;
    background-size: 100% auto;
    right: 0;
    bottom: 0;
}
.tp-movie p {
    width: 30%;
    height: auto;
    display: block;
    margin: 0;
    text-align: right;
    z-index: 2;
    position: absolute;
    right: 8px;
    bottom: 8px;
    
    font-family: victorian-orchid, serif; 
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    line-height: 1em;
    color: #fff;
}
.tp-movie p i {
    display: inline-block;
    margin: 0 0.3em 0 0;
    font-size: 0.75em;
}

.tp-movie p {
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.tp-movie div, .tp-movie span, .tp-movie p {
    transition: all 0.4s cubic-bezier(0.37, 0.58, 0, 1);
}
.tp-movie:hover div {
    background-size: 105% auto;
}
.tp-movie:hover div p {
   color: #c20000;
}
.tp-movie:hover span {
    transform: scale(1.0);
}

.tp-topic {
    width: calc(100% - 40px);
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 20px 0 40px 0;
    position: relative;
    z-index: -2;
}
.top-news-inner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}
ul.tp-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.tp-list li {
    display: block;
    margin: 0 0 20px 0;
    padding: 0 35px 20px 0;
    position: relative;
    border-bottom: 1px solid #000;
}
ul.tp-list li::before, ul.tp-list li::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #000;
    transform: rotate(45deg);
    
    position: absolute;
    bottom: -3px;
    z-index: 1;
}
ul.tp-list li::before {
    left: 0;
}
ul.tp-list li::after {
    right: 0;
}

ul.tp-list li p {
    box-sizing: border-box;
}
ul.tp-list li p.tp-date {
    display: inline-block;
    margin: 0 0 0.8em 0;
    
    font-family: victorian-orchid, serif; 
    font-weight: 300;
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    line-height: 1em;
    color: #000;
}
ul.tp-list li p.tp-txt {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    
    font-size: 1.0rem;
    letter-spacing: 0.02em;
    line-height: 1.6em;
    font-weight: 700;
    color: #000;
}
ul.tp-list li p.tp-txt::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    right: -35px;
    background: url("../img/arw_bk.png") no-repeat center center;
    background-size: 6px auto;

    display: flex;
    justify-content: center;
    align-items: center;
}
ul.tp-list li p.tp-txt,
ul.tp-list li p.tp-txt::after {
    will-change: transform;
    transition: all 0.2s ease-out;
}
ul.tp-list li p.tp-txt:hover {
    transform: translateX(4px);
    color: #fff;
}
ul.tp-list li p.tp-txt:hover::after {
    transform: translateX(-4px);
    background: url("../img/arw_wt.png") no-repeat center center;
    background-size: 6px auto;
}

.tp-moreBT {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    text-align: center;
}
.tp-moreBT span {
    display: inline-block;
    margin: 20px 0 0 0;
    padding: 0.8em 1.8em 0.7em;
    border: 3px solid #000;
    position: relative;
    
    font-family: victorian-orchid, serif; 
    font-weight: 400;
    font-style: normal;
    font-size: 1.0rem;
    letter-spacing: 0.08em;
    line-height: 1em;
    color: #000;
    border-radius: 3px;
}
.tp-moreBT span::before {
    content: "";
    display: block;
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    border: 1px solid #000;
    position: absolute;
    top: -7px;
    left: -7px;
    box-sizing: border-box;
    border-radius: 4px;
}
.tp-moreBT span, .tp-moreBT span::before {
    transition: all 0.2s ease-out;
}
.tp-moreBT a:hover span {
    color: #fff;
    background: #000;
}
.tp-moreBT a:hover span::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-color: #e80000;
}

.tp-bn {
    width: calc(100% - 40px);
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0px 0 40px 0;
    position: relative;
}
.tp-bn div {
    width: 100%;
	height: auto;
	display: block;
	margin: 0 0 20px 0;
}
.tp-bn div:nth-last-of-type(1) {
    margin: 0;
}
.tp-bn div p {
    width: 100%;
	height: auto;
	display: block;
	margin: 0;
	overflow: hidden;
	border-radius: 4px;
	z-index: 0;
	
	will-change: transform;
	transition: all 0.4s cubic-bezier(0.37, 0.58, 0, 1);
}
.tp-bn div a:hover p {
    transform: scale(0.97);
}

.YT {
    display: none;
}





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

.cont-wrap {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 120px 0 0 0;
    display: block;
    position: relative;
    overflow: hidden;
}
.cont-wrap.bg_bk {
    background: #000;
}
.cont-wrap.bg_wt {
    background: url("../img/bg-wt.jpg") no-repeat top center;
    background-size: cover;
}
.cont-wrap.bg_rd {
    background: url("../img/bg-redPT.jpg") repeat top center;
    background-size: 400px auto;
}
.ct-title {
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
    margin: 0 0 80px 0;
}
.ct-title h1 {
    display: inline-block;
    margin: 0;
    
    font-family: victorian-orchid, serif; 
    font-weight: 400;
    font-style: normal;
    font-size: 2.7rem;
    letter-spacing: 0.05em;
    line-height: 1em;
}
.bg_bk .ct-title h1,
.bg_wt .ct-title h1 {
    color: #c20000;
}
.bg_rd .ct-title h1 {
    color: #fff;
}
.ct-title span {
    width: 274px;
    height: 25px;
    display: block;
    margin: 15px auto 0;
    position: relative;
    
    background: url("../img/dline_1.png") no-repeat center center;
    background-size: auto 100%;
}
.ct-title span::before,
.ct-title span::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.ct-title span::before {
    background: url("../img/dline_2.png") no-repeat center center;
    background-size: auto 100%;
}
.ct-title span::after {
    background: url("../img/dline_3.png") no-repeat center center;
    background-size: auto 100%;
}
.bg_rd .ct-title span {
    background: url("../img/dline-wt_1.png") no-repeat center center;
    background-size: auto 100%;
}
.bg_rd .ct-title span::before {
    background: url("../img/dline-wt_2.png") no-repeat center center;
    background-size: auto 100%;
}
.bg_rd .ct-title span::after {
    background: url("../img/dline-wt_3.png") no-repeat center center;
    background-size: auto 100%;
}
.ct-title_news {
    width: min(400px,86%);
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    text-align: center;
    position: relative;
}

.ct-title h1 {
    opacity: 0;
    transform: translateY(50px);
}
.ct-title span {
    opacity: 0;
    transform: scale(1.5);
}
.ct-title span::before { transform: translateX(-120px); }
.ct-title span::after  { transform: translateX(120px); }

.ct-title h1, .ct-title span, .ct-title span::before, .ct-title span::after {
    will-change: transform, opacity;
    transition: all 1.8s cubic-bezier(0.37, 0.58, 0, 1);
}

.ct-title.appr h1 {
    opacity: 1;
    transform: translateY(0);
}
.ct-title.appr span {
    opacity: 1;
    transform: scale(1.0);
    transition-delay: 0.2s;
}
.ct-title.appr span::before { transform: translateX(0); }
.ct-title.appr span::after  { transform: translateX(0); }



/* --- I N T R O --- */

.ct-intro {
    width: min(1200px,80%);
    height: auto;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.ct-intro p {
    display: inline-block;
    margin: 0;
    
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    line-height: 2em;
}
.ct-intro p strong {
    display: inline-block;
    margin: 0 0 0.5em 0;
    
    font-weight: 700;
    font-size: 1.8em;
    letter-spacing: 0em;
}
.ct-intro i, .int2 i {
    display: inline-block;
    width: 2em;
    height: 1em;
    position: relative;
    margin: 0 0.1em;
}
.ct-intro i::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 0.1em;
}
.int2 i::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 0.1em;
}
.intro-pic {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.intro-pic::after {
    content: "";
    display: block;
    padding-bottom: 68.55%;
}
.intro-pic span {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    
    background: url("../img/bg-intro.jpg") no-repeat top center;
    background-size: 100% auto;
}

.intBT {
    width: 100%;
    height: auto;
    display: block;
    margin: 80px 0;
    text-align: center;
}
.intBT span {
    display: inline-block;
	position: relative;
	margin: 0;
	padding: 0.8em 1.8em 0.9em;
	
	font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    line-height: 1em;
	color: #000;
	background: #c20000;
	border: 1px solid #c20000;
	border-radius: 4px;
	
	transition: all 0.2s ease-out;
}
.intBT span::after {
    content: "";
	display: block;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	margin: 0;
	position: absolute;
	top: 4px;
	left: 4px;
	border: 2px solid #000;
	box-sizing: border-box;
	border-radius: 4px;
	
	transition: all 0.2s ease-out;
}
.intBT a:hover span {
    color: #c20000;
	background: #000;
}
.intBT a:hover span::after {
    border-color: #c20000;
}





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

.ct-chara {
    width: 80%;
    height: auto;
    margin: 0 auto 100px auto;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.ct-chara div {
    width: min(500px,40%);
    height: auto;
    display: block;
    margin: 0;
    position: relative;
}
.ct-chara div::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.ct-chara div i {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}
.ct-chara div b {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: url("../img/chara/thum-base.webp") no-repeat center center;
    background-size: 100% auto;
    z-index: 2;
}
.ct-chara div b::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.ct-chara div article {
    width: 68%;
    height: 68%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -34% 0 0 -34%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 0;
}
.ct-chara div article img {
    will-change: transform;
    transition: all 0.3s ease-in-out;
}
.ct-chara div a:hover b {
    transform: rotate(72deg);
}
.ct-chara div a:hover article img {
    transform: scale(1.05);
}

.ct-chara div {
    will-change: transform, opacity;
    transition: all 2s cubic-bezier(0.37, 0.58, 0, 1);
    opacity: 0;
    transform: translateY(80px);
}
.ct-chara div b {
    will-change: transform;
    transition: transform 1.0s cubic-bezier(0.37, 0.58, 0, 1);
    transform: rotate(120deg);
}
.ct-chara div i {
    will-change: transform;
    transition: transform 1.0s cubic-bezier(0.37, 0.58, 0, 1);
    transform: rotate(-120deg);
}
.ct-chara div.appr {
    opacity: 1;
    transform: translateY(0);
}
.ct-chara div.appr b, .ct-chara div.appr i {
    transform: translateY(0);
}


.mdW {
    display: none;
    overflow: hidden;
}
.mdW-close {
    width: 70px;
    height: 70px;
    position: fixed;
    top: 50px;
    right: 50px;
    margin: 0;
    cursor: pointer;
    
    font-size: 0.0001rem;
    color: transparent;
    border: 1px solid transparent;
    z-index: 10;
    
    transition: all 0.15s ease-out;
}
.mdW-close::before,
.mdW-close::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: #fff;
    
    transform-origin: center center;
}
.mdW-close::before {
    left: calc(50% - 1px);
    transform: rotate(45deg);
}
.mdW-close::after {
    right: calc(50% - 1px);
    transform: rotate(-45deg);
}
.mdW-close:hover {
    transform: scale(0.8);
}
.mdW-close i {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50% 0 0 -50%;
    z-index: -1;
}

.CRdt-wrap {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0 0 50px 0;
    
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    
    background: url("../img/bg-wt.jpg") no-repeat center top;
    background-size: cover;
}
.CRdt-wrap::after {
    content: "";
    display: block;
    width: 50%;
    height: calc(100% - 20px);
    position: absolute;
    top: 10px;
    left: 10px;
    background: url("../img/chara-txt.png") no-repeat left top;
    background-size: auto 100%;
    pointer-events: none;
    
    will-change: opacity, transform;
    transition: all 1.2s cubic-bezier(0.04, 0.68, 0.15, 1);
    transform: translateX(-100%);
    opacity: 0;
}
.CRdt-wrap.appr::after {
    opacity: 0.12;
    transform: translateX(0);
}
.CRdt {
    width: 70%;
    height: auto;
    margin: 0;
    padding: 30px 0;
    position: relative;
    
    display: flex;
    flex-wrap: nowrap;
}
.CRdt-pic {
    width: 50%;
    height: auto;
    margin: 0;
    display: block;
    
    /* JS */
    will-change: opacity, transform;
    opacity: 0;
    transform: translateY(-80px);
    
    transition: all 2.4s cubic-bezier(0.04, 0.68, 0.15, 1);
}
.crD {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.5));
}
.CRdt-pic.appr {
    opacity: 1;
    transform: translateY(0);
}
.CRdt-txt {
    width: 48%;
    height: auto;
    margin: 0 0 0 2%;
    
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    
    /* JS */
    will-change: opacity, transform;
    opacity: 0;
    transform: translateY(80px);
    
    transition: all 2.4s cubic-bezier(0.04, 0.68, 0.15, 1);
}
.CRdt-txt.appr {
    opacity: 1;
    transform: translateY(0);
}
.CRdt-txt div {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
}
.CRdt-txt div h1, .CRdt-txt div b, .CRdt-txt div span, .CRdt-txt div p {
    width: 100%;
    height: auto;
    display: block;
}
.CRdt-txt div h1 {
    margin: 0 0 30px 0;

    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1em;
    color: #000;
}
.CRdt-txt div b {
    margin: 0 0 -0.5em 0;
    
    font-family: victorian-orchid, serif; 
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    line-height: 1em;
    color: #000;
}
.CRdt-txt div span {
    margin: 0;
    position: relative;
    
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1em;
    color: #000;
}
.CRdt-txt div span::before {
    content: "CV.";
    display: inline-block;
    font-size: 0.7em;
    letter-spacing: 0.2em;
    margin-right: 0.4em;
    color: #c20000;
}
.CRdt-txt div span.uta::before {
    content: "歌：";
}
.CRdt-txt div span i {
    display: inline-block;
    font-size: 0.7em;
	font-weight: 600;
	font-style: normal;
}
.CRdt-txt div span:nth-last-of-type(1) {
    margin: 0 0 30px 0;
}

.CRdt-txt div span a {
    color: #000;
    position: relative;
}
.CRdt-txt div span a::after {
    content: "\f4ad";
    display: inline-block;
    margin: 0;
    font: var(--fa-font-solid);
    position: absolute;
    right: -1.5em;
    top: -0.2em;
    font-size: 1.5rem;
    line-height: 1em;
}

.CRdt-txt div p {
    margin: 0;
    padding: 30px 0 0 0;
    position: relative;
    border-top: 1px solid #000;
    
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 2em;
    color: #000;
}
.CRdt-txt div p::before, .CRdt-txt div p::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background: #000;
    transform: rotate(45deg);
    
    position: absolute;
    top: -4px;
    z-index: 1;
}
.CRdt-txt div p::before {
    left: 0;
}
.CRdt-txt div p::after {
    right: 0;
}

.CRD-prev, .CRD-next {
    width: 45px;
    height: 50px;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    outline: none;
    cursor: pointer;
    z-index: 3;
}
.CRD-prev { left: 10px; }
.CRD-next { right: 10px; }

.CRD-prev::after, .CRD-next::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -50% 0 0 -50%;
    
    will-change: transform;
    transition: all 0.18s ease-in-out;
}
.CRD-prev::after {
    background: url("../img/arwL.png") no-repeat center center;
    background-size: contain;
}
.CRD-next::after {
    background: url("../img/arwR.png") no-repeat center center;
    background-size: contain;
}
.CRD-prev:hover::after {
    color: #07ee9f;
    transform: translateX(-5px) scale(1.2);
}
.CRD-next:hover::after {
    color: #07ee9f;
    transform: translateX(5px) scale(1.2);
}
.CRD-prev.swiper-button-disabled,
.CRD-next.swiper-button-disabled {
    visibility: hidden;
}
.CRdt-pic .CRD-prev, .CRdt-pic .CRD-next {
    /* JS */
    opacity: 0;
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95) 0.5s;
}
.CRdt-pic .CRD-prev { transform: translateX(30px); }
.CRdt-pic .CRD-next { transform: translateX(-30px); }

.CRdt-pic .CRpgn {
    /* JS */
    opacity: 0;
    transform: translateY(-30px);
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95) 0.5s;
}
.CRdt-pic.appr .CRD-prev, .CRdt-pic.appr .CRD-next {
    opacity: 1;
    transform: translateX(0);
}

.CRdt-pic.appr .CRpgn {
    opacity: 1;
    transform: translateY(0);
}
.swiper-pagination.CRpgn {
    bottom: -20px;
}
.CRpgn .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
    margin: 0 5px !important;
    background: #fff;
    border: 1px solid #000;
    opacity: 1;
    border-radius: 50%;
    outline: none;
}
.CRpgn .swiper-pagination-bullet-active {
    background: #000;
}







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

.ct-staff {
    width: 80%;
    height: auto;
    margin: 0 auto 100px auto;
    display: block;
}
.s-title {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 50px 0;
    text-align: center;
    position: relative;
}
.s-title span {
    display: inline-block;
    margin: 0;
    position: relative;
    
    font-family: victorian-orchid, serif; 
    font-weight: 400;
    font-style: normal;
    font-size: 1.7rem;
    line-height: 1em;
    letter-spacing: 0.04em;
    color: #000;
    z-index: 1;
}
.s-title span::after {
    content: "";
    display: block;
    width: calc(100% + 40px);
    height: 2px;
    margin-left: -20px;
    background: #c60001;
    
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    z-index: -1;
}
.s-title i {
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    background: #000;
}
.s-title i::before, .s-title i::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background: #000;
    transform: rotate(45deg);
    
    position: absolute;
    bottom: -3px;
    z-index: 1;
}
.s-title i::before {
    left: 0;
}
.s-title i::after {
    right: 0;
}

.st-wrap {
    width: min(1200px,100%);
    height: auto;
    margin: 0 auto 80px auto;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    overflow-wrap: break-word;
}
.cl-1 {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 30px 0;
    text-align: center;
}
.cl-3 {
    width: 32%;
    height: auto;
    display: block;
    margin: 0 0 30px 0;
    padding: 0 1.5%;
    text-align: center;
}
.st-wrap h3 {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 0.5em 0;
    
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0.04em;
    color: #fff;
}
.st-wrap p {
    display: inline-block;
    margin: 0;
    position: relative;
    
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 0.04em;
    color: #000;
}
.st-wrap p b {
    font-size: 0.65em;
}
.st-wrap p b.sml {
    display: block;
    margin: 0;
    font-size: 0.5em;
    line-height: 1.2em;
}
.st-wrap p span {
    display: inline-block;
    margin: 0;
    position: absolute;
    top: -0.1em;
    right: -1.8em;
}
.st-wrap p span i {
    font-size: 1.4em;
    line-height: 1em;
    letter-spacing: 0;
    color: #fff;
    
    text-shadow: 0px 3px 0px rgba(0, 0, 0, 1);
    
    will-change: transform;
    transition: all 0.18s ease-in-out;
}
.st-wrap p a:hover i {
    transform: scale(1.1);
}

.mdW-cmt {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 50px 60px 50px 60px;
    display: block;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 4px;
    background: url("../img/bg-wtPT.jpg") repeat left top;
    background-size: 400px auto;
}
.mdW-cmt h4 {
    width: 100%;
    height: auto;
    margin:  0 0 1.4em 0;
    padding: 0 0 1.4em 0;
    display: block;
    position: relative;
    border-bottom: 1px solid #000;
    
    font-size: 1.8rem;
    line-height: 1em;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #000;
}

.mdW-cmt h4::before, .mdW-cmt h4::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background: #000;
    transform: rotate(45deg);
    
    position: absolute;
    bottom: -4px;
    z-index: 1;
}
.mdW-cmt h4::before {
    left: 0;
}
.mdW-cmt h4::after {
    right: 0;
}

.mdW-cmt h4 span  {
    width: 100%;
    height: auto;
    display: block;
    padding: 0.3em 1em;
    margin: 0 0 0.7em 0;
    
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0.05em;
    color: #c20000;
}
.mdW-cmt p {
    display: inline-block;
    text-align: left;
    margin: 0;
    
    font-size: 1.1rem;
    line-height: 2.0em;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #000;
}
.mdW-cmt.int2 {
    padding: 50px 60px 80px 60px;
    background: url("../img/bg-redPT.jpg") repeat top center;
    background-size: 400px auto;
}
.mdW-cmt.int2 p {
    text-align: center;
	
    font-size: 1.3rem;
	font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 2em;
    color: #fff;
}






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

footer {
    width: 100%;
    height: 200px;
    background: #000;
    margin: auto 0 0 0; /* 下端設置用 */
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer div {
    display: block;
    margin: 0;
    text-align: center;
}
footer div article {
    width: 180px;
    height: auto;
    margin: 10px auto 20px auto;
    position: relative;
    background: url("../img/ft-title.png") no-repeat center center;
    background-size: 100% auto;
}
footer div article::after {
    content: "";
    display: block;
    padding-bottom: 49.2%;
}
footer div p {
    display: inline-block;
    margin: 0;
    
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    line-height: 1.4em;
}

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







/* --------- < 1160px > --------- */

@media (max-width: 1160px) {

.hd-menu {
    display: none;
}
header article {
    width: 85px;
    height: 42px;
    top: 7px;
    left: 50%;
    margin-left: -42px;
}
.xBT {
    width: 30px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 10px;
    
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.xBT i {
    display: block;
    margin: 0.2em 0 0 0;
    box-sizing: border-box;
    
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 1em;
    color: #c20000;
}
#MnavBT {
    width: 54px;
    height: 54px;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    background: #000;
    cursor: pointer;
    z-index: 10;
}
.Mmenu-trigger,
.Mmenu-trigger span {
	display: block;
}
.Mmenu-trigger {
	position: absolute;
	width: 30px;
	height: 25px;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -15px;
}
.Mmenu-trigger span {
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #c20000;
}
.Mmenu-trigger span:nth-of-type(1) {
	top: 0;
    left: 0;
    animation: 0.5s mnAni1B ease-out forwards alternate;
}
.Mmenu-trigger span:nth-of-type(2) {
	top: 11px;
    left: 0;
    animation: 0.5s mnAni2B ease-out forwards alternate;
}
.Mmenu-trigger span:nth-of-type(3) {
	bottom: 0;
    right: 0;
    animation: 0.5s mnAni3B ease-out forwards alternate;
}

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

.Mmenu-nav {
    width: 100%;
	height: 100vh;
    background: url("../img/bg-nav.jpg") no-repeat top center;
    background-size: cover;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 54px;
	right: 0;
	z-index: 9;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
}
.Mmenu-wrap {
    width: 100%;
    height: auto;
    margin: 80px 0 60px 0;
    padding: 0;
    overflow: hidden;
    
    display: flex;
    display: -webkit-flex;
    
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    
    justify-content: center;
    -webkit-box-pack: center;
}
.Mmenu-wrap div {
    width: 100%;
    height: auto;
    margin: 0;
    text-align: center;
    position: relative;
}
.Mmenu-wrap div span {
    display: inline-block;
    margin: 0 0 25px 0;
    position: relative;
    
    font-family: victorian-orchid, serif; 
    font-weight: 300;
    font-style: normal;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    line-height: 1em;
    color: #c20000;
}
.Mmenu-wrap div span {
    animation: mn-fadein 0.8s cubic-bezier(0.2, 0.5, 0.5, 1) both;
}
.Mmenu-wrap div:nth-of-type(1) span { animation-delay: 0.2s; }
.Mmenu-wrap div:nth-of-type(2) span { animation-delay: 0.3s; }
.Mmenu-wrap div:nth-of-type(3) span { animation-delay: 0.4s; }
.Mmenu-wrap div:nth-of-type(4) span { animation-delay: 0.5s; }
.Mmenu-wrap div:nth-of-type(5) span { animation-delay: 0.6s; }
.Mmenu-wrap div:nth-of-type(6) span { animation-delay: 0.7s; }
.Mmenu-wrap div:nth-of-type(7) span { animation-delay: 0.8s; }
.Mmenu-wrap div:nth-of-type(8) span { animation-delay: 0.9s; }
.Mmenu-wrap div:nth-of-type(9) span { animation-delay: 1.0s; }
.Mmenu-wrap div:nth-of-type(10) span { animation-delay: 1.1s; }
.Mmenu-wrap div:nth-of-type(11) span { animation-delay: 1.2s; }
.Mmenu-wrap div:nth-of-type(12) span { animation-delay: 1.3s; }
.Mmenu-wrap div:nth-of-type(13) span { animation-delay: 1.4s; }

.ct-chara div {
    width: 50%;
}

}





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

@media (max-width: 800px) {

.top-wrap {
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.topCT-wrap {
    width: 100%;
    margin-top: 0;
}
.topCT-wrap::before {
    width: 100%;
}
.topCT {
    min-height: inherit;
}

.top-pic_pc {
    display: none;
}
.top-pic_sp {
    width: 100%;
    height: auto;
    margin-top: 54px; /* header H */
    display: block;
    overflow: hidden;
    position: relative;
}
.top-pic_sp div {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    background: url("../img/bg-top_3.jpg") no-repeat top left;
    background-size: 100% auto;
    position: relative;
    
    will-change: transform;
    transform: scale(1.2);
    transition: all 3.5s cubic-bezier(0.04, 0.68, 0.15, 1) 0.5s;
}
.top-pic_sp div::after {
    content: "";
    display: block;
    padding-bottom: 141.2%;
}
.top-pic_sp.appr div {
    transform: scale(1);
}
.top-pic_sp div span {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    position: absolute;
    bottom: 3%;
    left: 0;
    
    will-change: transform;
    transition: all 8s cubic-bezier(0.04, 0.68, 0.15, 1) 0.4s;
}
.top-pic_sp div span::after {
    content: "";
    display: block;
    padding-bottom: 55.4%;
}
.top-pic_sp div span:nth-of-type(1) {
    background: url("../img/top-title.webp") no-repeat top center;
    background-size: 100% auto;
    transform: translateY(-50%) scale(0.8);
    z-index: 1;
}
.top-pic_sp div span:nth-of-type(2) {
    background: url("../img/top-title_bk.webp") no-repeat top center;
    background-size: 100% auto;
    transform: translateY(-30%) scale(0.8);
    z-index: 0;
}
.top-pic_sp.appr div span {
    transform: translateY(0) scale(1);
}


.tp-title {
    height: 2px;
    padding: 0;
}
.tp-title div, .tp-title span {
    display: none;
}
.tp-info {
    margin: 35px auto;
    padding: 0;
}
.tp-info p {
    font-size: 1.2rem;
}

.tp-movie {
    margin: 40px 0 0 0;
}
.tp-movie p {
    right: 2.2%;
    bottom: 3%;
    font-size: 1.2rem;
}
footer {
    height: 180px;
}

.br_pc {
    display: none;
}
.br_spL {
    display: inherit;
}

.tp-movie div {
    width: calc(100% - 60px);
}
.tp-topic {
    width: calc(100% - 60px);
    padding: 30px 0 40px 0;
}
.tp-bn {
    width: calc(100% - 60px);
}
.tp-bn div {
    width: 80%;
	margin: 0 auto 20px auto;
}
.tp-bn div:nth-last-of-type(1) {
    margin: 0 auto;
}
.ct-intro {
    width: calc(100% - 60px);
    text-align: left;
}
.mdW-cmt.int2 p {
    text-align: left;
}
.ct-chara {
    width: calc(100% - 60px);
    margin: 0 auto 40px auto;
}
.ct-staff {
    width: calc(100% - 60px);
    margin: 0 auto 40px auto;
}

.CRdt {
    width: calc(100% - 60px) ;
    flex-wrap: wrap;
}
.CRdt-pic {
    width: 100%;
    margin: 0 0 40px 0;
}
.CRdt-txt {
    width: 100%;
    display: block;
}
.CRdt-txt div h1, .CRdt-txt div b, .CRdt-txt div span {
    text-align: center;
}

.cl-3 {
    width: 50%;
}

.mdW-close {
    width: 60px;
    height: 60px;
    top: 40px;
    right: 40px;
}


}







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

@media (max-width: 500px) {

.br_pc {
    display: none;
}
.br_sp {
    display: inherit;
}
.loader {
	width: 50px;
	height: 88px;
    margin: -44px 0 0 -25px;
}
.Mmenu-wrap {
    margin: 60px 0 40px 0;
}
.Mmenu-wrap div span {
    margin: 0 0 20px 0;
    font-size: 1.15rem;
}
.tp-info {
    margin: 28px auto;
    padding: 0;
}
.tp-info p {
    font-size: 0.85rem;
}
.tp-movie {
    margin: 30px 0 0 0;
}
.tp-movie div {
    width: calc(100% - 40px);
    margin: 0 auto;
}
.tp-movie p {
    font-size: 0.7rem;
}
.tp-topic {
    width: calc(100% - 40px);
}
.tp-bn {
    width: calc(100% - 80px);
}
.tp-bn div {
    width: 100%;
}
.ct-title_news {
    margin: 0 auto 15px auto;
}
ul.tp-list li {
    display: block;
    margin: 0 0 15px 0;
    padding: 0 25px 15px 0;
}

ul.tp-list li p.tp-date {
    font-size: 0.8rem;
}
ul.tp-list li p.tp-txt {
    font-size: 1rem;
}
ul.tp-list li p.tp-txt::after {
    width: 20px;
    right: -25px;
}
.tp-moreBT span {
    font-size: 0.85rem;
}

.cont-wrap {
    padding: 80px 0 0 0;
}
.ct-title {
    margin: 0 0 40px 0;
}
.ct-title h1 {
    font-size: 1.4rem;
}
.ct-title span {
    width: 160px;
    height: 15px;
    margin: 6px auto 0;
}

.ct-intro {
    width: calc(100% - 40px);
    text-align: left;
}
.ct-intro p {
    font-size: 1rem;
}
.ct-intro p strong {
    display: inline-block;
    margin: 0 0 0.5em 0;
    font-size: 1.3em;
}
.intBT {
    margin: 30px 0 40px 0;
}
.intBT span {
	padding: 0.8em 1.8em 0.8em;
    font-size: 1rem;
	border-radius: 3px;
}
.intBT span::after {
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	top: 2px;
	left: 2px;
	border: 2px solid #000;
	border-radius: 3px;
}

.ct-chara {
    width: calc(100% - 40px);
    margin: 0 auto 40px auto;
}
.ct-chara div {
    width: 80%;
}
.ct-chara div::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.ct-chara div i {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}
.ct-chara div b {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: url("../img/chara/thum-base.webp") no-repeat center center;
    background-size: 100% auto;
    z-index: 2;
}
.ct-chara div b::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.ct-chara div article {
    width: 68%;
    height: 68%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -34% 0 0 -34%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 0;
}
.ct-chara div b,
.ct-chara div article img {
    will-change: transform;
    transition: all 0.2s ease-in-out;
}
.ct-chara div a:hover b {
    transform: rotate(72deg);
}
.ct-chara div a:hover article img {
    transform: scale(1.08);
}

.mdW-close {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 20px;
}
.CRdt-wrap {
    padding: 0 0 50px 0;
    display: block;
}
.CRdt-wrap::after {
    width: 15%;
    height: calc(100% - 20px);
    top: 5px;
    left: 5px;
    background-size: 100% auto;
}
.CRdt {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 30px 0;
    
    flex-wrap: wrap;
}
.crD {
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
}
.CRdt-txt {
    width: 100%;
    display: block;
}
.CRdt-txt div h1 {
    text-align: center;
    margin: 0 0 20px 0;

    font-size: 1.6rem;
}
.CRdt-txt div b {
    text-align: center;
    margin: 0 0 20px 0;
    
    font-size: 0.8rem;
}
.CRdt-txt div span {
    margin: 0 0 -0.3em -20px;
    text-align: center;
    
    font-size: 1.1rem;
}
.CRdt-txt div span a::after {
    right: -1.3em;
    top: -0.2em;
    font-size: 1.4rem;
}
.CRdt-txt div span:nth-last-of-type(1) {
    margin: 0 0 20px -20px;
}

.CRdt-txt div p {
    padding: 20px 0 0 0;
    
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
.CRD-prev, .CRD-next {
    width: 26px;
    height: 30px;
    margin-top: -15px;
}
.CRD-prev { left: 0; }
.CRD-next { right: 0; }

.swiper-pagination.CRpgn {
    bottom: -22px;
}
.CRpgn .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
}

.ct-staff {
    width: calc(100% - 40px);
    margin: 0 auto 40px auto;
}
.s-title {
    margin: 0 0 20px 0;
}
.s-title span {
    font-size: 1.3rem;
}
.s-title span::after {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-top: 0;
}


.st-wrap {
    width: 100%;
    margin: 0 auto 30px auto;
    justify-content: flex-start;
}
.cl-1 {
    margin: 0 0 20px 0;
    text-align: left;
}
.cl-3 {
    width: 50%;
    margin: 0 0 20px 0;
    padding: 0 2% 0 0;
    text-align: left;
}
.st-wrap h3 {
    margin: 0 0 0.4em 0;
    font-size: 0.8rem;
}
.st-wrap p {
    display: inline;
    font-size: 1.18rem;
}
.st-wrap p.stn {
	letter-spacing: -0.02em;
}
.st-wrap p b {
    display: inline-block;
    font-size: 0.65em;
    margin: 0 0 0 0.5em;
}
.st-wrap p span {
    top: -0.1em;
    right: -1.5em;
}
.st-wrap p span i {
    font-size: 1.2em;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 1);
}

.mdW-cmt {
    padding: 30px 20px;
}
.mdW-cmt h4 {
    margin:  0 0 1.0em 0;
    padding: 0 0 1.0em 0;
    font-size: 1.18rem;
}
.mdW-cmt h4 span  {
    padding: 0 0 1em 0;
    margin: 0;
    font-size: 0.8rem;
}
.mdW-cmt h4::before, .mdW-cmt h4::after {
    width: 5px;
    height: 5px;
    bottom: -3px;
}
.mdW-cmt p {
    font-size: 0.9rem;
    line-height: 1.9em;
    letter-spacing: 0.07em;
}
.mdW-cmt.int2 {
    padding: 30px 20px 60px 20px;
}
.mdW-cmt.int2 p {
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 1.9em;
}


footer {
    height: 120px;
}
footer div article {
    width: 90px;
    margin: 10px auto 10px auto;
}
footer div p {
    font-size: 0.6rem;
}

}





/* --------- < 330px > --------- */

@media (max-width: 330px) {

.br_330 {
    display: inherit;
}

}








