@charset "utf-8";
@import url(normalize.css);

/*importは外部ファイルを呼び込む
/normalize.cssリセットCSSユーザーエージェントCSSのブラウザごとの違い
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
/*基本設定
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

* {
box-sizing: border-box;
}

body{
font-family:"游ゴシック体",YuGothic,"游ゴシック体","Yu Gothic",sans-serif;
background-image: url(../images/img-background.jpg);
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-color: black;
background-attachment: fixed;
}

nav ul{
    padding-left: 0;
    list-style: none;
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
ヘッダー
ーーーーー*/

.page-header{
 width: 100%;
 background-color: black;
 
}

.header-wrapper{
    width: 960px; ;
    display: flex;
    margin: 0 auto;
    justify-content:space-between ;
    align-items: flex-end;
}

.header-logo{
  width: auto;
  max-width: 200px;
}
.header-logo h1{
    margin: 0;
}

.header-logo img{
width: 100%;
height: auto;
}

.header-nav{
width: 50%;
}
.header-nav ul{
    display: flex;
    justify-content: space-between;
}

.header-nav ul li{
    margin: 0 40px;
}

.header-nav ul li a{
 color:#fc001a;
 font: size 18px;
 font-weight:bold;
 text-decoration:none;
 transition: 0.5s;
}

.header-nav ul li a:hover{
    color: #d1d6c0;
}

/*フッター*/
.page-footer{
    background-color: rgba(0,0,0,0.75)
}

.footer-nav ul{
    margin: 0;
    display: flex;
    justify-content: center;
}
.footer-nav ul li {
    margin: 20px 40px;
}

.footer-nav ul li a{
 color:#fc001a;
 font: size 14px;
 font-weight:bold;
 text-decoration:none;
 transition: 0.5s;
}


.footer-nav ul li{
    margin: 20px 40px;
}
.footer-nav ul li a:hover{  
    color: #d1d6c0;
}

.copyright{
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fc001a;
    
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
HOMEのページー
ーーーーー*/

/*メインビジュアル*/

.mainvisual {
    width: 100%;
}
.mainvisual img{
    width: 100%;
}
/*メインエリア*/
.main-contents{
    width: 960px;
    margin: 40px auto;
}

/*イントロテキスト*/
.intro-text{
    margin-bottom: 40px;
    padding: 40px;
    background-color: rgba(0,0,0,0.75);
}

.intro-text p{
    color: #d1d6c0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

/*バナーエリア*/
.banner-area{
    padding: 40px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0,0,0,0.75);
}
.banner-area section{
    width: 30%;
}


.banner-area section a{
 color:#fc001a;
 font: size 22px;
 font-weight:bold;
 text-decoration:none;
 transition: 0.5s;
}

.banner-area section a:hover{  
    color: #d1d6c0;
}

.banner-area section h2{  
    margin: 6px;
    font-size: 22px;
    text-align: center;
}
.banner-area section img{
    width: 100%;
}

.banner-area section a img{
    transition: 0.5s;
}

.banner-area section a:hover img{  
    opacity: 0.75;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
Secondページー
ーーーーーーーーーーーーーーーーーーーーーーーーー*/

.mainvisual-second{
    width: 100%;
    background-color: #000;
    text-align: center;

}

.mainvisual-second img{
    width: 960px;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
メインビジュアルSecondー
ーーーーーーーー*/

.main_contents-second{
    width: 960px;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(0,0,0,0.75);
    

}

.main_contents-second h2{  
 margin: 20px 0;
 color:#fc001a;
 font: size 58px;
}

.main-warpper{
    margin-top: 80px;
}
.content-warpper{
    display: flex;
    justify-content: space-between;
    
}

.content-text{
    width: 50%;
}

.content-text h3 {
    margin: 0;
    color: #d1d6c0;
    font-size: 42px;
}

.cast h3 {
    font-size: 32px;
    text-align: right;
}

.cast .content-text{
    width: 46%;
}

.content-text p{
    color: #d1d6c0;
    line-height: 1.5;
    text-align: justify;
}
.content-text p.character-name{
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.cast .content-text p.character-name{
    text-align: right;
    font-size: 22px;
    
}

.content-img{
    width: 46%;
}

.cast .content-img{
    width: 50%;
}
.content-img img{
    width: 100%;
    margin-bottom: 40px;
   
}

