@charset "utf-8";

/* **************************************************

Name: odaira.css

Create: 2024.08

Copyright 2024 Hitachi, Ltd. 

***************************************************** */


/* content===========================================

[-] for all
[-] for 995px -
[-] for - 994px
[-] for - 767px
[-] for - 579px
[-] for - 399px

===================================================== */
.comicBox{
position: relative;
width:100%;
margin-bottom:25px;
opacity: 0;
transition: all 2s; /* 動きを滑らかに */
}

.comicBox:first-child{
opacity: 1;
}

.comicBox:after{
content:' ';
display:block;
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}


.comicBox img{
width:100%;
height:auto;
pointer-events: none;
-webkit-touch-callout: none;
-webkit-user-select:none;
-moz-touch-callout:none;
-moz-user-select:none;
-webkit-user-drag: none;
-khtml-user-drag: none;
user-drag: none;
touch-callout:none;
user-select:none;
}

.fadeIn {
opacity: 1;
}


@media screen and (max-width: 994px) { 

} 
@media screen and (max-width: 767px) { 

} 
@media screen and (max-width: 579px) { 

} 
@media screen and (max-width: 399px) { 

} 


@media print{
.comicBox img{
display: none;
}
}

