@charset "UTF-8";
/* CSS Document */
	
body{
	margin:0px;
    background-color:#66a8dc;
	min-height: 100vh;
	font-family: "Sawarabi Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 15px;
	line-height: 26px;
	color: #fff;
	box-sizing: border-box;
}

html{
	height:100%;
}

img { border-style:none;
	vertical-align: bottom;}

a img { border-style:none;}

a:hover img { border-style:none; }

*{
margin: 0;
padding: 0;
}

ol, ul {
	list-style: none;
}

.cf:before,
.cf:after {
  content: "";
  display: table;}
.cf:after {
  clear: both;}
.cf {
  *zoom: 1;}


.modal-movie {
  cursor: pointer;
}

.pcview{
	width:100%;
}

.spview{
	display: none;
}

.scrollShowEffect1 {
	transition: all 0.5s;
	transition-delay: 0s;
	opacity:0;
}

.scrollShowEffect2 {
	transition: all 0.5s;
	transition-delay: 0.3s;
	opacity:0;
}

.scrollShowEffect3 {
	transition: all 0.5s;
	transition-delay: 0.6s;
	opacity:0;
}


.scrollShowEffect-R {
	-webkit-transform: translate3d(30%, 0%, 0);
	   -moz-transform: translate3d(30%, 0%, 0);
	    -ms-transform: translate3d(30%, 0%, 0);
	     -o-transform: translate3d(30%, 0%, 0);
	        transform: translate3d(30%, 0%, 0);
}
.scrollShowEffect-L {
	-webkit-transform: translate3d(-30%, 0%, 0);
	   -moz-transform: translate3d(-30%, 0%, 0);
	    -ms-transform: translate3d(-30%, 0%, 0);
	     -o-transform: translate3d(-30%, 0%, 0);
	        transform: translate3d(-30%, 0%, 0);
}
.scrollShowEffect-B {
	-webkit-transform: translate3d(0, 50px, 0);
	   -moz-transform: translate3d(0, 50px, 0);
	    -ms-transform: translate3d(0, 50px, 0);
	     -o-transform: translate3d(0, 50px, 0);
	        transform: translate3d(0, 50px, 0);
}

.scrollShowEffect-T {
	-webkit-transform: translate3d(0, -50px, 0);
	   -moz-transform: translate3d(0, -50px, 0);
	    -ms-transform: translate3d(0, -50px, 0);
	     -o-transform: translate3d(0, -50px, 0);
	        transform: translate3d(0, -50px, 0);
}

.scrollShowEffect-Z {
	-webkit-transform: scale( 0.2,  0.2);
	transform: scale( 0.2,  0.2);
	transition-timing-function: cubic-bezier(.68,-0.55,.27,1.55);
}

.scrollShowEffect-O {
	-webkit-transform: scale( 1.2,  1.2);
	transform: scale( 1.2,  1.2);
	transition-timing-function: cubic-bezier(.68,-0.55,.27,1.55);
}


.scrollShowEffect1.showItem {
	opacity:1;
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	     -o-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}

.scrollShowEffect2.showItem {
	opacity:1;
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	     -o-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}

.scrollShowEffect3.showItem {
	opacity:1;
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	     -o-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}

.mb0{
	width:100%;
	overflow: hidden; /* heightを戻す */
}

.mb5{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 5px;
	line-height: 140%;
}

.mb10{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 10px;
}

.mb20{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 20px;
}

.mb30{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 30px;
}

.mb50{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 50px;
}

.mb70{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom:70px;
}

.mb100{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 100px;
}

.pcbr {
	display:inline;
}

.loading {
  width: 100vw;
  height: 100vh;
  background-color: #66a8dc;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1300;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.heart-container {
  position: relative;
  width: 100px; 
  height: 90px;
  background-color: #fff1f1;
  clip-path: path('M50 25 L64 10 L86 10 L100 25 L100 45 L50 90 L0 45 L0 25 L14 10 L36 10 Z');
  
  overflow: hidden;
}

.wave {
  position: absolute;
  top: 100%;
  left: -70%;
  width: 250%;
  height: 250%;
  background-color: #ef7474; 
  border-radius: 43%; 
  animation: 
    wave-up-heart 2s forwards linear,
    wave-rotate 7s infinite linear;
}

.wave::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 200, 200, 0.7); 
  border-radius: 40%;
  animation: wave-rotate 4.5s infinite linear;
}

@keyframes wave-up-heart {
  0% {
    top: 100%;
  }
  100% {
    top: -60%; 
  }
}

@keyframes wave-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}



#top_wrapper{
    width:100%;
	overflow: hidden;
	box-sizing: border-box;
    position: relative;
	margin-bottom: -1px;
	z-index: 1;
}


#top_wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.spmain{
    display: none;
}

.topmain{
	width:42.4608%;
	position: absolute;
	right:5.60872%;
	top:3.88957326%;
	opacity: 0;
	transform: scale(1.1);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.topmain img{
	width:100%;
	height: auto;
}
  
.showNavi .topmain{
  opacity: 1;
  transform: scale(1); /* 元のサイズに戻る */
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.toparrow1{
	width:10.788796%;
	position: absolute;
	right:33.6%;
	top:18.793101%;
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.toparrow1 img{
	width:100%;
	height: auto;
}
  
.showNavi .toparrow1{
  opacity: 1;
  transform: scale(1); /* 元のサイズに戻る */
  -webkit-transition-delay: 2.2s;
  transition-delay: 2.2s;
	animation: floating-y 1.2s ease-in-out infinite alternate;
  animation-delay: 1.3s;
}

@keyframes floating-y {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    /* 15px分、上に動く（お好みで数値を調整してください） */
    transform: scale(1) translateY(-15px);
  }
}

.toparrow2{
	width:11.942928%;
	position: absolute;
	right:8.996484%;
	top:14.20941679%;
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.toparrow2 img{
	width:100%;
	height: auto;
}
  
.showNavi .toparrow2{
  opacity: 1;
  transform: scale(1); /* 元のサイズに戻る */
  -webkit-transition-delay: 2.5s;
  transition-delay: 2.5s;
	animation: floating-y-arrow2 1.4s ease-in-out infinite alternate;
	animation-delay: 3.3s;
}

@keyframes floating-y-arrow2 {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    /* arrow1が15pxなら、こちらは12pxにするなど微調整すると「ズレ」が綺麗に見えます */
    transform: scale(1) translateY(-12px);
  }
}
  
.toplogo_wrapper{
	width:43.11718%;
	position: absolute;
	left:4.472884%;
	bottom:15%;
	z-index: 5;
}

.toplogo{
	width:100%;
	opacity: 0;
    transition: all 1.5s;
	z-index: 5;
	margin-bottom: 5%;
}

.toplogo img{
	width:100%;
	height: auto;
}
  
.showNavi .toplogo{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
}

.topbiling{
	width:100%;
	opacity: 0;
    transition: all 1.5s;
	z-index: 5;
	margin-bottom: 5%;
}

.topbiling img{
	width:100%;
	height: auto;
}
  
.showNavi .topbiling{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
}

.topbtn_wrapper{
	width:100%;
	opacity: 0;
    transition: all 1.5s;
	z-index: 5;
	margin-bottom: 5%;
  display: flex;
  flex-wrap: wrap;           /* 折り返しを許可 */
  justify-content: flex-start; /* 左詰めに配置（3つ揃わない時も崩れない） */
  gap: 15px;                 /* ボタン同士の間隔（上下左右に効きます） */
  max-width: 900px;
}
  
.showNavi .topbtn_wrapper{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
}

.topbtn {
  flex: 0 0 calc(33.33% - 10px);
  position: relative;
  height: 50px; /* ボタンの高さ */
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
  clip-path: polygon(
    5% 0%, 95% 0%,
    100% 25%, 100% 75%,
    95% 100%, 5% 100%, 
    0% 75%, 0% 25% );
  transition: transform 0.3s ease;
}

.topbtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #66a8dc;
  font-weight: bold;
  font-family: "Belanosima", sans-serif;
	font-size: 18px;
	line-height: 100%;
  position: relative;
  z-index: 3;
  transition: color 0.3s ease;
}

.topbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* 最初は左側に隠しておく */
  width: 100%;
  height: 100%;
  background-color: #fff000;
  z-index: 2;
  transition: left 0.4s ease; /* スライドの速度 */
}

.topbtn:hover::before {
  left: 0;
}

.topdaysns_wrapper {
  display: flex;
  align-items: flex-end;
  gap: 30px;
	opacity: 0;
    transition: all 1.5s;
}

.showNavi .topdaysns_wrapper{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
}

.topday img {
  height: 60px;
  width: auto;
  display: block;
	vertical-align: bottom;
}

.topsns_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
　　margin-bottom: 2px;
}

.topsns img {
  height: 27px;
  width: auto;
  display: block;
　filter: brightness(0); 
  transition: filter 0.3s ease;
}

.topsns a:hover img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(82%) saturate(2461%) hue-rotate(359deg) brightness(108%) contrast(107%);
}


.topcatch{
	width:2.2%;
	position: absolute;
	right: 1.6%;
	top:3.6%;
	opacity: 0;
    transition: all 1.5s;
	z-index: 5;
}
  
.showNavi .topcatch{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
}

.topcatch img{
	width:100%;
	height: auto;
}

#intro_wrapper{
	width:100%;
	overflow:hidden;
	background-color: #c7e0f5;
	color: #008cc2;
}

#intro_wrapper img{
	width:100%;
	height: auto;
}

.pagetitle{
	width:100%;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
    font-family: "Belanosima", sans-serif;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.char.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.color_yellow{
	color: #fff000;
}

.color_white{
	color: #fff;
}

.color_blue{
	color: #66a8dc;
}

.color_pink{
	color: #eb6b66;
}

#intro_inner{
	width:100%;
	overflow:hidden;
	padding:7% 20% 3% 20%;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 600;
	line-height: 32px;
}

.highlight-yellow {
    background: linear-gradient(transparent 60%, rgba(255, 255, 0, 0.8) 60%);
    display: inline;
    padding: 0 5px;
}

.intromidashi{
	width:70%;
	margin:0 auto 100px;
}

#cast_wrapper {
    width: 100%;
	background-image: radial-gradient(#e9537b 3px, transparent 3px), radial-gradient(#e9537b 3px, transparent 3px);
	background-size: 7px 7px;
	background-position: 0 0, 3.5px 3.5px;
	background-color: #ee839e;
	overflow: hidden;
	box-sizing: border-box;
	border:12px solid #fff;
}

#cast_wrapper img{
	width:100%;
	height: auto;
}

#cast_inner {
    width: 100%;
    padding: 8% 15%;
	overflow: hidden;
	box-sizing: border-box;
}

.cbox_wrapper {
    display: flex;
    flex-wrap: wrap; 
    gap: 50px;
    width: 100%;
    box-sizing: border-box;
	justify-content: center;
}

.cbox {
    flex: 0 0 calc(50% - 25px); 
    display: flex;
    box-sizing: border-box;
	flex-direction: column;
    align-items: left;
}

.modalOpen {
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s ease;
}

.cimg{
	width:100%;
	margin-bottom:30px;
	overflow: hidden;
	box-sizing: border-box;
}

.cname_wrapper{
	width:100%;
	overflow: hidden;
}

.cnamebox{
	width:78%;
	float: left;
}

.cname1 { 
	font-weight: 700;
	font-size: 1.9rem;
	color: #fff;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.cname2 { 
	display: block;
	font-size: 0.8rem;
	color: #008cc2;
	background-color: #fff100;
	line-height: 1;
	padding:1%;
	font-weight: 600;
	margin-bottom: 10px;
}

.cname3 { 
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: 10px;
	color: #fff;
	letter-spacing: 1px;
}

.cnames { font-weight: 700; font-size: 1.5rem; color: #fff100; margin-bottom: 5px; }

.cbtn{
	width:18%;
	float:right;
    cursor: pointer;
	transition: transform 0.3s ease;
	animation: zoomInOut 0.8s ease-in-out infinite;
}

.cbtn:hover {
    animation: zoomInOut 0.8s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9); /* 1.1倍に拡大 */
    }
    100% {
        transform: scale(1);
    }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999 !important;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal img{
	width: 100%;
	height: auto;
}

.modal_wrapper{
	width:100%;
	height: 100vh;
	display: table;
}

.modal_inner{
	display: table-cell;
	vertical-align: middle;
}

.modal-box {
	background-image: radial-gradient(#e9537b 3px, transparent 3px), radial-gradient(#e9537b 3px, transparent 3px);
	background-size: 7px 7px;
	background-position: 0 0, 3.5px 3.5px;
	background-color: #ee839e;
	border:10px solid #fff;
    margin: 5% auto;
    max-width: 900px;
    width: 90%;
    animation-name: fadeInScale;
    animation-duration: 0.3s;
	position: relative;
	box-sizing: border-box;
    box-shadow: 0px 0px 10px -5px #000;
	color: #000;
}

.modal-box_inner{
	width:100%;
	position: relative;
	box-sizing: border-box;
	padding:7% 7% 7% 7%;
	overflow: hidden;
	color: #fff;
}

.modalClose{
	width:9%;
	position: absolute;
	right: -3%;
	top:-3%;
	cursor: pointer;
}

/* アニメーション*/
    .modal.modal-box .modalClose {
        animation: fadeInScale 0.2s ease forwards;
    }

    @keyframes fadeInScale {
        0% {
            opacity: 0;
            transform: scale(0.8);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }


.modalname_wrapper{
	width:100%;
	text-align: center;
	margin-bottom: 50px;
}

.cmidashi{
	width:7%;
	float: left;
	margin-right: 2%;
	margin-bottom: 1%;
}

.ccomment{
	width:100%;
	overflow: hidden;
	font-size: 15px;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 30px;
}

.cprofile{
	width:100%;
	overflow: hidden;
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
	color: #fff100;
}

#footer_wrapper{
    width:100%;
	overflow: hidden;
	box-sizing: border-box;
	padding:4% 0;
}

#footer_wrapper img{
	width:100%;
	height: auto;
}

.footerlogo{
	width:25%;
	margin:0 auto;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 12px;
  font-family: "Belanosima", sans-serif;
  z-index: 99;
  box-shadow: 0px 0px 15px -5px #666;
  clip-path: polygon(
    30% 0%, 70% 0%, 
    100% 30%, 100% 70%, 
    70% 100%, 30% 100%, 
    0% 70%, 0% 30%
  );
}

#page-top a {
  background-color:#ed829e;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  padding-top: 15px;
  text-align: center;
  display: block;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

.dli-chevron-up {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

#original_wrapper{
	width:100%;
	overflow: hidden;
	background-image: linear-gradient(#865dbd 1px, transparent 1px), linear-gradient(90deg, #865dbd 1px, transparent 1px);
	background-size: 6px 6px;
	background-color: #8377b4;
}

#original_wrapper img{
	width:100%;
	height: auto;
}

#original_inner{
	width:100%;
	box-sizing: border-box;
	padding:7% 20%;
	overflow: hidden;
}

.original_img{
	width:40%;
	position: relative;
	margin:0 auto 30px;
}

.original_cover{
	width:90%;
	margin:0 auto 5px;
	position: relative;
}

.original_credit{
	width:100%;
	text-align: center;
	font-size: 10px;
}

.original_tameshi{
	width:25%;
	position: absolute;
	right: 0;
	bottom:25%;
	z-index: 10;
	transition: transform 0.3s ease;
	animation: zoomInOut 0.8s ease-in-out infinite;
}

.original_text{
	width: 50%;
	margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
}

.originalname_wrapper {
	flex: 0 0 49%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.onamebox {
    display: flex;
    align-items: center;
}


/* 4. ボタン：zoomアニメーションを維持 */
.obtn {
    margin-left: 8px;      /* 名前との間隔 */
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 70px;           /* アイコンのサイズ */
    animation: zoomInOut 0.8s ease-in-out infinite;
}

.obtn:hover {
    animation: zoomInOut 0.8s ease-in-out infinite;
}


@media screen and (max-width:1024px){
	
.pcview{
	display: none;
}

.spview{
	display: inherit;
	width:100%;
}

.pcbr {
	display:none;
}

	
.brtext::before {
	content: "\A" ;
	white-space: pre ;
}

.spmain{
    display: inherit;
	margin-bottom: 20px;
}

.spmain img{
    width:100%;
	height: auto;
}
	
#top_wrapper{
    width:100%;
	overflow: hidden;
	box-sizing: border-box;
    position: inherit;
	margin-bottom:0;
	z-index: 1;
}

#top_wrapper::before {
  content:none;
}

.topmain{
	display:none;
}

.toparrow1{
	display:none;
}

.toparrow2{
	display:none;
}
  
.toplogo_wrapper{
	width:94%;
	position: inherit;
	left:0;
	bottom:0;
	margin:0 auto;
	z-index: 5;
	padding-bottom: 20px;
}

.toplogo{
	display:none;
}
  
.topbiling{
	display:none;
}

.topbtn_wrapper{
	flex-direction: column;
	margin-bottom: 20px;
	gap: 8px;
	opacity: 1;
}

.topbtn {
	width: 100%;
	flex: none;
	clip-path: polygon(
        2% 0%, 98% 0%,
        100% 10%, 100% 90%,
        98% 100%, 2% 100%, 
        0% 90%, 0% 10%
    );
}


.topdaysns_wrapper {
	justify-content: center;
	gap: 0;
	opacity: 1;
}

.topday{
  display: none;
}

.topsns_wrapper {
	justify-content: center;
	gap: 60px;
	margin-bottom: 10px;
}

.topsns img {
  height: 40px;
  width: auto;
  display: block;
　filter: brightness(0); 
  transition: filter 0.3s ease;
}


.topcatch{
	width:2.2%;
	position: absolute;
	right: 1.6%;
	top:3.6%;
	opacity: 0;
    transition: all 1.5s;
	z-index: 5;
}
  
.showNavi .topcatch{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
}

.topcatch img{
	width:100%;
	height: auto;
}

#intro_inner{
	width:100%;
	overflow:hidden;
	padding:10% 10% 8% 10%;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 600;
	line-height: 32px;
}

.intromidashi{
	width:100%;
	margin:0 auto;
}
	

#cast_wrapper {
	border:10px solid #fff;
}

#cast_inner {
    width: 100%;
    padding:10%;
	overflow: hidden;
	box-sizing: border-box;
}
	
.cbox_wrapper {
	flex-direction: column;
    gap: 0px;
    width: 100%;
}

.cbox {
	width: 100%;
	flex: none;
    box-sizing: border-box;
	margin-bottom: 30px;
}

.cimg{
	width:100%;
	margin-bottom:20px;
	overflow: hidden;
	box-sizing: border-box;
}
	
.modal-box {
	background-image: radial-gradient(#e9537b 3px, transparent 3px), radial-gradient(#e9537b 3px, transparent 3px);
	background-size: 7px 7px;
	background-position: 0 0, 3.5px 3.5px;
	background-color: #ee839e;
	border:10px solid #fff;
    margin: 8% auto;
    max-width: 900px;
    width: 85%;
    animation-name: fadeInScale;
    animation-duration: 0.3s;
	position: relative;
	box-sizing: border-box;
    box-shadow: 0px 0px 10px -5px #000;
	color: #000;
}

.modal-box_inner{
	width:100%;
	position: relative;
	box-sizing: border-box;
	padding:10%;
	overflow: hidden;
	color: #fff;
}
	
.cmidashi{
	width:12%;
	float: left;
	margin-right: 15px;
	margin-bottom: 0;
}
	

.cnamebox{
	width:70%;
	float: left;
}

.cbtn{
	width:25%;
	float:right;
    cursor: pointer;
	transition: transform 0.3s ease;
}

	
.cname2 { 
	display: block;
	font-size: 1.0rem;
	color: #008cc2;
	background-color: #fff100;
	line-height: 1.3;
	padding:1.2%;
	font-weight: 600;
	margin-bottom: 10px;
}
	
.modalClose{
	width:14%;
	position: absolute;
	right: -5%;
	top:-3%;
	cursor: pointer;
}
	
#footer_wrapper{
    width:100%;
	overflow: hidden;
	box-sizing: border-box;
	padding:7% 0;
}

.footerlogo{
	width:60%;
	margin:0 auto;
}
	
#original_inner{
	width:100%;
	box-sizing: border-box;
	padding:10% 10%;
	overflow: hidden;
}

.original_img{
	width:80%;
	position: relative;
	margin:0 auto 30px;
}

.original_cover{
	width:90%;
	margin:0 auto 5px;
	position: relative;
}


.original_tameshi{
	width:35%;
	position: absolute;
	right: -5%;
	bottom:25%;
	z-index: 10;
	transition: transform 0.3s ease;
	animation: zoomInOut 0.8s ease-in-out infinite;
}

.original_text{
	width: 90%;
	flex-direction: column;
	gap: 15px;
}

.originalname_wrapper {
	flex: 0 0 100%;
	height: 60px;
}

}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*:focus {
  outline: none;
}

.modal-contents {
  display:none;
  position: fixed;
  width: 100%;
  height: 100%;
	font-weight: bold;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:rgba(0,0,0,0.9);
  z-index: 9998; }
  .modal-contents .modal-contents-inner {
    position: relative;
    width: 100%;
    height: 100%; }
    .modal-contents .modal-contents-inner .modal-contents-iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 9998;
      width: 100%; }
      .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player {
        width: 80%;
        text-align: center;
        position: relative;
        padding-top: 42.5%;
        height: 0;
        overflow: hidden;
        display: block;
        margin: 0 auto; }
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player iframe {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
      .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn {
        width: 80%;
        margin: 0.5% auto 0;
        font-size: 0;
        text-align: center;
        /* visibility: hidden; */
      }
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
          border: 1px solid #111;
          background-color: #3ba4cd;
          width: 50%;
          height: auto;
          box-sizing: border-box;
          padding:0.5% 0;
          display: inline-block;
          vertical-align: middle;
          text-align: center;
          font-size: 13px;
          line-height: 23px;
          color: #fff;
          cursor: pointer;
          -webkit-transition: all .3s;
          transition: all .3s; }
          @media screen and (min-width: 769px) {
            .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
              font-size: 0.8vw; } }
          @media screen and (max-width: 1024px) and (min-width: 768px) {
            .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
              font-size: 0.8vw; } }
          @media screen and (max-width: 768px) {
            .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
              font-size: 0.8vw; } }
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li:hover,
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li.current {
          border: 1px solid #111;
          background-color: #80e1ff;
          color: #000;  }
    .modal-contents .modal-contents-inner .modal-close {
      width: 3%;
      display: block;
      position: absolute;
      top: 3.5%;
      right: 1.5%;
      z-index: 9999;
      cursor: pointer; }



@media screen and (max-width: 768px) {
  .modal-contents .modal-contents-inner {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 0 5%;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%); }
    .modal-contents .modal-contents-inner .modal-contents-iframe {
      position: static;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }
      .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player {
        padding-bottom: 26%;
        padding-top: 30%;
        width: 100%; }
      .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn {
        width: 100%; }
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
          display: block;
          width: 100%;
          text-align: center;
          line-height: 23px;
          font-size: 13px; } }
        @media screen and (max-width: 768px) and (min-width: 769px) {
          .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
            font-size: 0.9vw; } }
        @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
          .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
            font-size: 0.82031vw; } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
            font-size: 2.2vw; 
          box-sizing: border-box;
          padding:0.5% 0;} }

@media screen and (max-width: 768px) {
    .modal-contents .modal-contents-inner span.modal-close {
      width: 7%;
      top: -15%;
      right: 5.5%; }
  .cast-modal .modal-close {
    width: 7%;
    top: 3%;
    right: 5.5%; }
	
	.modal-close img{
		width:100%;
		height: auto;
	}
  .cast-modal .modal-list ul li {
    overflow-y: scroll;
    height: 175vw; }
    .cast-modal .modal-list ul li .inner {
      top: 12%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      .cast-modal .modal-list ul li .inner > * {
        display: block;
        width: 100%; }
      .cast-modal .modal-list ul li .inner .text {
        padding: 5% 0%; }
        .cast-modal .modal-list ul li .inner .text h2 {
          font-size: 14px; } }
        @media screen and (max-width: 768px) and (min-width: 769px) {
          .cast-modal .modal-list ul li .inner .text h2 {
            font-size: 0.8vw; } }
        @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
          .cast-modal .modal-list ul li .inner .text h2 {
            font-size: 1.0vw; } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .cast-modal .modal-list ul li .inner .text h2 {
            font-size: 1.33333vw; } }




            
.remodal-is-opened{
    display:block;
}
