@charset "utf-8";

/* ふわっと出現fadeUp */
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
    from {
        opacity: 0;
    transform: translateY(100px);
    }
    
    to {
        opacity: 1;
    transform: translateY(0);
    }
    }
    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
    .fadeUpTrigger{
        opacity: 0;
    }



html{
    width: 100%;
    height: auto;
}
header{
    width: 100%;
    height: auto;
    
}

main{
    background-color: #F3F3F3;
    height: 100vh;
    border-bottom: solid 2.5px #000000;
}

body{
    width: 100%;
    height: auto;
    margin: 0px;
    background-color: #F3F3F3;
    color: #222222;
    
}

li{
    display: inherit;
}

h1, h2, h3, h4, p, time{
    font-size: 1rem;
    line-height: 200%;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1rem;
}

a{
    text-decoration: none;
    list-style:none;
    letter-spacing: 0.1rem;
font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    
}

#header{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #F3F3F3;
}

.nav-mobile{
    text-align: center;
    margin-top: 12px;
    margin-left: 4px;
}
.nav-mobile img{
    width: 80px;
}


.rogo-movie-gif img{
    position: absolute;
    top: 50%;
    left: 51%;
    width: 10%;
    height: auto;
    transform: translate(-50%,-50%);
}


@keyframes rotation {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.film-box{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
}


.kaiten-mozi-1 img{ 
     /* position: absolute; */
    /* top: 30%;
    left: 50%; */
    transform: translate(-50%,-50%);
    width: 50px;
    height: 40px;
    animation: anime1 4s linear infinite;
}

@keyframes anime1 {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.kaiten-mozi-2 img{ 
     position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    animation: anime2 1.5s linear infinite;
}

@keyframes anime2 {
  0%   { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}


.kaiten-mozi-3 img{ 
     position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 35px;
    animation: anime3 2s linear infinite;
}

@keyframes anime3 {
  0%   { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}



.kaiten-mozi-4 img{ 
     position: absolute;
    top: 50%;
    left: 37%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 30px;
    animation: anime3 2s linear infinite;
}

@keyframes anime3 {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.flame-1 {
    position: absolute;
    top: 130px;
    left: 45px;
}

.flame-1 img{
    width:70px;
    opacity: 0.9;
}

.flame-2 {
    position: absolute;
    top: 130px;
    right:45px ;
}

.flame-2 img{
    width: 70px;
}

.flame-3 {
    position: absolute;
    bottom: 40px;
    left:45px ;
}

.flame-3 img{
    width: 70px;
}

.flame-4 {
    position: absolute;
    bottom: 40px;
    right:45px ;
}

.flame-4 img{
    width:70px;
    height: 45px;
    opacity: 0.9;
}

.REC-img {
    position: absolute;
    top: 160px;
    left: 50%;
}

.REC-img img{
    width:70px;
    transform: translate(-50%,-50%);
}

/* スクロールダウン */

.scroll{
    position: absolute;
    bottom:30px ;
    left: 51%;
    transform: translate(-50%,-50%);
    text-transform: uppercase;
}


.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:30px;
    /*全体の高さ*/
  height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-26px;
  top: -15px;
    /*テキストの形状*/
  color: #111111;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 2px;
  height: 30px;
  background: #111111;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:1;
  margin-top: 7px;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:15px;
    opacity: 1;
  }
  100%{
    height:0;
    top:30px;
    opacity: 0;
  }
}







.KeyVisual-text{
    color: #ffffff;
    font-size: 1rem;
    position: fixed;
    bottom: 25%;
    left: 50%;
    letter-spacing:0.2rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
}

.nav-pc-line{
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    border-bottom: solid 2.5px #000000;
    z-index: 5;
    position: fixed;
}

.nav-pc{
    display: flex;
    column-gap: 3rem;
    top: 30px;
    left: 45px;
    position: absolute;
}

.nav-pc h2 a{
   color: #111111; 
   font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-pc h2 a:visited {
   color: #111111; 
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}


/*

main{
background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.12) 3%, rgba(0,0,0,0.25) 7%, rgba(0,0,0,0.35) 11%, rgba(0,0,0,0.43) 15%, rgba(0,0,0,0.48) 19%, rgba(0,0,0,0.53) 23%, rgba(0,0,0,0.57) 27%, rgba(0,0,0,0.3) 43%, rgba(0,0,0,0.4) 48%, rgba(0,0,0,0.45) 52%, rgba(0,0,0,0.45) 73%, rgba(0,0,0,0.3) 76%, rgba(0,0,0,0.45) 80%, rgba(0,0,0,0.45) 88%, rgba(0,0,0,0.2) 92%, rgba(0,0,0,0.45) 96%, rgba(0,0,0,0.4) 100%);
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.12) 3%,rgba(0,0,0,0.25) 7%,rgba(0,0,0,0.35) 11%,rgba(0,0,0,0.43) 15%,rgba(0,0,0,0.48) 19%,rgba(0,0,0,0.53) 23%,rgba(0,0,0,0.57) 27%,rgba(0,0,0,0.3) 43%,rgba(0,0,0,0.4) 48%,rgba(0,0,0,0.45) 52%,rgba(0,0,0,0.45) 73%,rgba(0,0,0,0.3) 76%,rgba(0,0,0,0.45) 80%,rgba(0,0,0,0.45) 88%,rgba(0,0,0,0.2) 92%,rgba(0,0,0,0.45) 96%,rgba(0,0,0,0.4) 100%);
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.12) 3%,rgba(0,0,0,0.25) 7%,rgba(0,0,0,0.35) 11%,rgba(0,0,0,0.43) 15%,rgba(0,0,0,0.48) 19%,rgba(0,0,0,0.53) 23%,rgba(0,0,0,0.57) 27%,rgba(0,0,0,0.3) 43%,rgba(0,0,0,0.4) 48%,rgba(0,0,0,0.45) 52%,rgba(0,0,0,0.45) 73%,rgba(0,0,0,0.3) 76%,rgba(0,0,0,0.45) 80%,rgba(0,0,0,0.45) 88%,rgba(0,0,0,0.2) 92%,rgba(0,0,0,0.45) 96%,rgba(0,0,0,0.4) 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 );


width: 100%;
height: auto;
    padding-top: 250px;
}
*/




/*ここからメインの中身*/


.about-hibi{
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    background-color: #F3F3F3;
}

.about-hibi-text{
    width: 55%;
    height: auto;
    margin: 130px auto auto auto;
    box-sizing: border-box;
    padding: 70px 100px 70px 100px;
    background-color: #ffffff;
    border: 2px #222222 solid;
    border-radius: 3px;
}

.about-hibi-t-text{
    width: 100%;
     height: auto;
}

.about-hibi-t-img{
    width: 100%;
    opacity: 1;
    margin-bottom: 1rem;
}

.about-hibi-t-img img{
    width: 100%;
}

.about-hibi-text h2{
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2rem;
}

.about-hibi-t-text p{
    line-height: 220%;
    color: #222222;
}

.about-hibi-camera-img{
    width: 40%;
    height: auto;
}

.about-hibi-camera-img img{
    width: 80%;
    mix-blend-mode: hard-light;
}


/*ここからブログ*/


.blog{
    width: 80%;
    margin: 100px auto auto auto;
}

.hibipost-midasi{
    height: auto;
    width: 100%;
    margin-top: 40px;
}

.post-explanation{
    margin-left: 4px;
    margin-bottom: 30px;
    font-size: 0.8rem;
}

.blog h2{
    font-size: 1.7rem;
    width:100%;
    line-height: 3rem;
    
}

.hibipost-midasi img{
    width: 200px;
}


.blog-content{
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    column-gap: 2%;
}

.blog-content a{
    width: 100%;
    height: 100%;
}

.blog-layout{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid #222222;
    padding: 15px 15px 18px 15px;
    height: 290px;
    width: 30%;
    background-color: #ffffff;
   border-radius: 3px;
}


.blog-img-box{
    width: 100%;
    object-fit: cover;
  margin-bottom: 11px;
}

.blog-img-box img{
    width: 100%;
    height: 155px;
    object-fit: cover;
/*    border-radius: 5px 5px 0px 0px;*/
}

.blog-img-box a{
    width: 100%;
    height: 100%;
    display: block;
}

.blog-title{
    width: 100%;
    height: 56px;
    overflow: hidden;
}



.blog-content a{
    color: #333333;
    opacity: 1;
    width: 100%;
}

.category-2 a{
    font-size: 0.8rem;
}

.category-2{
    border-top: 1.9px solid #222222;
    box-sizing: border-box;
    padding-top: 15px;
    margin-top: 20px;
}
.blog-text a{
    font-size: 0.8rem;
}


.all-blog{
    text-align: center;
    width: 110px;
    margin: 70px auto auto auto;
    height: 50px;
}

.all-blog p{
    border: solid 0.5px #ffffff;
    width: 100%;
    margin: 0 auto;
    height: 50px;
    line-height: 50px;
    opacity: 0.5;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
    
}

.all-blog a{
    color: #ffffff;
    opacity: 1;
        width: 110px;
    height: 50px;
    display: inline-block;
}

/* .all-blog p:hover{
} */


/*--- 線から塗り（共通設定） ---*/
.blog-all{
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 70px;
}

.btn05 a{
    width: 100%;
    height: 100%;
}


.btn05{
    text-align: center;
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: inline-block;
    color: #ffffff; 
    padding: 20px 30px;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s;
    transition-delay: .4s;/*0.7秒遅れてアニメーション*/
    border: solid 2px #111111;
    border-radius: 2px;
    background-color: #ffffff;
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
.btn05:hover{
  background:rgba(0,0,0,0.0);
  color: #111111;
  border: none;
}

/*線の設定*/
.btn05 span{
    display: block;
    color: #111111;
}

/*横線の設定*/
.btn05::before,
.btn05::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/   
    width: 0;
    height: 2px;
    background:#111111;
    opacity: 1;
    /*アニメーションの指定*/
    transition: all 0.3s linear;
}

/*縦線の設定*/
.btn05 span::before,
.btn05 span::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/
    width:2px;
    height:0;
    background: #111111;
    opacity: 1;
    /*アニメーションの指定*/
    transition: all 0.3s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn05:hover::before,
.btn05:hover::after{
    width: 100%;
}
.btn05:hover span::before,
.btn05:hover span::after{
    height: 100%;
}

/*== 左上と右下から枠線が伸びて塗りに */

/*右下から右上へ伸びる横線*/
.bordercircle3::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*右下から右上へ伸びる縦線*/
.bordercircle3 span::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*左上から右上へ伸びる横線*/
.bordercircle3::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

/*左上から左下へ伸びる横線*/
.bordercircle3 span::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

/*========= レイアウトのためのCSS ===============*/


















#footer{
    text-align: center;
    margin-top: 300px;
    font-size: 0.6rem;
    padding-bottom: 20px;
    
}

small{
    letter-spacing: 0.1rem;
    font-weight: 500;
}


/*==768px以下の形状*/

@media screen and (max-width:768px){
	
}


/*========= レイアウトのためのCSS ===============*/



ul {
    display: block;
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-inline-start: 0px;
}





