@charset "UTF-8";

/* CSS Document */

/*-------------------------------------
				共通
---------------------------------------*/
html {
  scroll-behavior: smooth;
}

body{
	font-family: "maru-maru-gothic-bsr-stdn", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: 400;
	font-style: normal;
	font-size:16px;
	line-height: 1.7;
	letter-spacing: 0.1em;
	color:#fff;
	background-color: #ed7a90;
	/*text-shadow: 1px 2px 2px rgba(0, 0, 0, 1);*/
}

body#top {
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

img {
	max-width: 100%;
	height: auto;
}

.imgcenter {
   display: block;
   margin-left: auto;
   margin-right: auto;
}

a {
	word-break: break-all;
	color: #ffe236;
	text-decoration: underline;
	transition: 0.8s;
	-webkit-transition: 0.8s;
	/*text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);*/
}

a:hover {
	opacity: 0.6;
}

a.inva {
	pointer-events:none;
}

p {
	word-break: break-all;
}

.line01 {
	border-top: 1px dashed #ccc;
}

.font_rehitsu {
	font-family: ta-rehitsu-m, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.wrap {
	width: 92%;
	margin: 0 auto;
}

div.cloud {
	/*background: url(../images/dearmycat/bg.png) 50% 50% no-repeat;
	background-attachment:fixed;
	background-size: cover;*/
}

div.cloud::before {
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background:url("../images/dearmycat/bg.png") center/cover no-repeat; 
  -webkit-background-size:cover;
}

article {
	margin-bottom: 7rem;
}
article section h2 {
	width: 60%;
	margin: 0 auto 1rem;
}

/* アニメーション */
/* 拡大 */
.zoomIn{
  animation-name:zoomInAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  opacity: 0;
  }

  to {
    transform: scale(1);
  opacity: 1;
  }
}

/* 縮小 */
.zoomOut{
  animation-name:zoomOutAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
  transform: scale(1.2);
  opacity: 0;
  }

  to {
    transform:scale(1);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger{
    opacity: 0;
}

@media(min-width:768px){

.wrap {
	width: 850px;
}
	
div.cloud::before {
  background:url("../images/dearmycat/bg.png") center/cover no-repeat; 
  -webkit-background-size:cover;
}
	
article section h2 {
	width: 450px;
	margin: 0 auto 2rem;
}
	
article {
	margin-bottom: 15rem;
}
	
article.end {
	margin-bottom: 5rem;
}
	
}

/*-------------------------------------
			PC/SP出し分け
---------------------------------------*/

.pcOnly{display:; !important}
.spOnly{display:none;}
.spOnlyTxt{display:none;}

@media(max-width:768px){
	.pcOnly{display:none;}
	.spOnly{display:block;}
	.spOnlyTxt{display:inline;}
}


/*-------------------------------------
				header
---------------------------------------*/

header {
	height: 100vh;
	display: flex;
    align-items: center;
	justify-content: center;
}

header h1 img {
	width: 100%;
}

@media(min-width:768px){
	
header {
	margin: 0 0 5rem 0;
}

header h1 img {
	width: 850px;
}

}

/*-------------------------------------
				lead
---------------------------------------*/
#lead p.version {
	line-height: 2;
	font-size: 1.1rem;
}

@media(min-width:768px){
#lead p.version {
	font-size: 1.3rem;
	text-align: center;
}
	
}

/*-------------------------------------
			CHARACTER
---------------------------------------*/

#chara .body_img {
	width: 280px;
    display: block;
    margin: 0 auto;
}

#chara .body_img img {
	width: 100%;
}

#chara .profile h4 {
	font-size: 24px;
	margin: 10px 0 5px;
	padding-left: 5px;
	border-bottom: 3px #000 dotted;
}

#chara .profile h5 {
	padding-left: 5px;
	font-size: 20px;
}

#chara .profile .data {
	font-size: 14px;
	padding-left: 5px;
}

.slick-prev02, 
.slick-next02 {
    position: absolute;
	z-index: 2;
    top: 24%;
    cursor: pointer;
    outline: none;
    border-top: 5px solid rgba(255,255,255,1);
    border-right: 5px solid rgba(255,255,255,1);
    height: 25px;
    width: 25px;
}

.slick-prev02 {
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next02 {
    right:2.5%;
    transform: rotate(45deg);
}

.thumbs .slick-current > div {
	opacity: 1;
}

#chara .thumbs {
}

#chara .thumbs li {
	width: 95% !important;
}

#chara .thumbs li img {
	width: 100%;
}

@media(min-width:768px){
#chara .body_img {
	width: 450px;
}
#chara .thumbs li {
	width: 80% !important;
}
#chara .profile h4 {
	font-size: 26px;
}

#chara .profile h5 {
	font-size: 22px;
}
#chara .profile .data {
	font-size: 16px;
}
.slick-prev02, 
.slick-next02 {
    top: 42%;
}
	
}

/*-------------------------------------
			  SONG
---------------------------------------*/
#song p {
	line-height: 2;
	text-align: center;
	font-size: 1.3rem;
}

@media(min-width:768px){
#song p {
	font-size: 1.3rem;
	text-align: center;
}
	
}

/*-------------------------------------
				About
---------------------------------------*/

#about {
	margin-top: 4rem;
}

#about .cdjk {
	text-align: center;
}
#about .cdjk img {
	width: 75%;
	margin-bottom: 1rem;
	border: 2px solid #1b1b1b;
}

#about div.product {
	text-align: left;
}

#about div.product h4 {
	position: relative;
    padding-left: 1.2em;
    line-height: 1.4;
    color: #fff;
}

#about div.product h4:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1b0";
  font-weight: 900;
  position: absolute;
  font-size: 1em;
  left: 0;
  top: 0;
  color: #ffe236;
	text-shadow: none;
}

#about div.product p {
	font-size: 0.9em;
	margin-bottom: 1rem;
}

@media(min-width:768px){
#about h2 {
	font-size: 4.2rem;
	padding-bottom: 2.5rem;
}

#about .content {
   display: flex;
	justify-content: flex-end;
}
	
#about .cdjk {
	width: 50%;
}

#about .cdjk img {
	width: 100%;
}
	
#about div.product {
	width: 45%;
	margin-left: 5%;
}

#about div.product p {
	font-size: 1.3em;
	margin-bottom: 1.5rem;
}
	
}

/*-------------------------------------
				ban area
---------------------------------------*/
#ban_area {
	padding-top: 4rem;
}

#ban_area ul {
	display: flex;
	justify-content:center;
	flex-wrap:wrap;
}

#ban_area ul li{
	width: 46%;
	margin: 0 2% 2% 0;
}

#ban_area ul li a img {
	border: 2px solid #000;
}

#ban_area a:hover {
	opacity: 0.6;
}

#ban_area ul li:nth-child(even) {
	margin-right: 0;
}

#ban_area ul li:nth-child(even) {
	margin-right: 0;
}


@media(min-width:768px){
#ban_area ul li{
	width: 32%;
}
	
#ban_area ul li:nth-child(even) {
	margin-right: 2%;
}
	
#ban_area ul li:nth-child(3), 
#ban_area ul li:nth-child(6) {
		margin-right: 0;
}	
}

/*-------------------------------------
			SNS
---------------------------------------*/
.sns {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	margin-bottom: 50px; 
}
.sns div {
	margin: 0 15px;
}

.sns div a{
	color: #fefefe;
}

/*-------------------------------------
			HOME btn
---------------------------------------*/
.homebtn {
	text-align: center;
	overflow: hidden;
	width: 250px;
	height: 40px;
	margin: 0 auto 1rem;
	padding: 0;
	border-radius: 30px;
	border: 2px solid #000;
}

.homebtn a {
	display: block;
	position: relative;
	z-index: 100;
	text-align:center;
	background: #6667ab;
	color: #fff;
	font-size: 16px;
	line-height: 40px;
	text-decoration:none;
}

.homebtn a:before { 
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 20px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #fefefe;
}
.homebtn a:after { 
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 25px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #6667ab;
}
.homebtn a:hover:after { 
	background: #6667ab;
}

/*-------------------------------------
				footer
---------------------------------------*/
footer{
	font-size: 12px;
	text-align: center;
	padding: 2rem 0 1.5rem;
}
@media(min-width:768px){
footer{
	padding: 4rem 0 2rem;
}

}

/*-------------------------------------
			動画
---------------------------------------*/
#work {
	margin: 40px auto;
  max-width: 80%;
}
#work h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	text-align: center;
	margin-bottom: 0.5rem;
}
#work h3::before,
#work h3::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #3fc1c9;
}

#work h3::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
#work h3::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
@media(min-width:768px){
#work {
  max-width: 60%;
}
#work h3 {
	font-size: 22px;
}

}