@charset "utf-8";


body{
    min-width: 338px;
    color: #fff;
    font-family: toppan-bunkyu-mincho-pr6n,serif;
    font-weight: 400;
    font-style: normal;
    background: #27251B;
}

main{
    margin: 0 auto;
}

.title{
    font-family: baskerville-poster-pt, serif;
    font-weight: 400;
    font-style: normal;
}

img{
    width: 100%;
}

#experience,
#about,
#news,
#contact{
    max-width: 1200px;
    margin: 0 auto;
}
#experience a,
#about a,
#news a{
    color: #979388;
}

#fadeLayer {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    z-index:-1;
    box-shadow: inset 0 0 200px 100px rgba(0, 0, 0, 0.5),
		    inset 0 0 400px rgba(0, 0, 0, 0.5);
} 



/*--- アニメーション ----------------*/
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:2.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
@keyframes fadeInAnime{
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}


/*--- メニューバー ----------------*/
header{
    width: 100vw;
    height: 120px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 10;
}
.logo{
    width: 80px;
    margin: 0 auto;
}
#top{
    margin: 0 auto;
    width: 100%;
    height: 120px;
    background: #000;
}
@media screen and (max-width: 600px) {
    header,
    #top{
        height: 100px;
    }
    .logo{
        width: 60px;
        margin: 0 auto;
    }
    #fadeLayer {
        box-shadow: inset 0 0 50px 50px rgba(0, 0, 0, 0.5),
                inset 0 0 0px rgba(0, 0, 0, 0.5);
    } 
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 5;
    /*ナビのスタート位置と形状*/
    top:150px;
    left: -100%;
    width:300px;
    height: 400px;/*ナビの高さ*/
    background:#2c270f8f;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 30px;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width:300px;
    height: 400px;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    padding-left: 0px;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: start; 
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
  padding:20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
    #g-nav{
        top:0px;
        left: -120%;
    }
    #g-nav,
    #g-nav.panelactive #g-nav-list{
        width:100%;
        height: 100vh;
    }
    #g-nav.panelactive{
        left: 0px;
    }
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:10px;
    left: 10px;
    cursor: pointer;
    width: 100px;
    height: 100px;
}
@media screen and (max-width: 600px) {
    .openbtn1{
        top:5px;
        left: 5px;
    }
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 28px;
    height: 2px;
    background-color: #fff;
    width: 50%;
}

.openbtn1 span:nth-of-type(1) {
  top:32px; 
}

.openbtn1 span:nth-of-type(2) {
  top:46px;
}

.openbtn1 span:nth-of-type(3) {
  top:60px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 36px;
    left: 36px;
    transform: translateY(12px) rotate(-45deg);
    width: 60%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 60px;
    left: 36px;
    transform: translateY(-12px) rotate(45deg);
    width: 60%;
}


/*--- concept ----------------*/
#concept{
    width: 100vw;
    max-width: none;
    height: 100vh;
    min-height: 700px;
}
.concept-bg{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(images/top.jpeg) center center no-repeat;
}
.concept-bg p{/*
    font-family: toppan-bunkyu-midashi-min-st, serif;
    font-weight: 400;
    font-style: normal;*/
    font-size: 26px;
    text-align: center;
    line-height: 56px;
    letter-spacing: 4px;
}

@media screen and (max-width: 1024px) {
    .concept-bg p{
        font-size: 28px;
        line-height: 60px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 600px) {
    .concept-bg p{
        font-size: 4vw;
        line-height: 10vw;
        letter-spacing: 1px;
    }
}



/*--- experience ----------------*/
.contents{
    margin: 3%;
    display: flex;
    flex-wrap: nowrap;
}
.contents_img{
    width: 55%;
}
.contents_text{
    width: 45%;
    padding-top: 20px;
    padding-left: 20px;
}
.contents_text h2{
    font-size: 48px;
    letter-spacing: 4px;
}

.contents_text p{
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 30px;
}

@media screen and (max-width: 1024px) {
    .contents_text h2 br{
        display: none;
    }
    .contents_img{
        width: 45%;
    }
    .contents_text{
        width: 55%;
        padding-top: 0px;
        padding-left: 20px;
    }
}
@media screen and (max-width: 800px) {
    .contents{
        margin: 40px 20px 60px;
        display: block;
    }
    .contents_img{
        width: 100%;
    }
    .contents_text{
        width: 100%;
        padding-top: 20px;
        padding-left: 0px;
    }
    .contents_text h2{
        font-size: 36px;
        letter-spacing: 3px;
    }
    .contents_text h2 br{
        display: inline;
    }
    .contents_text p{
        font-size: 12px;
        letter-spacing: 2px;
        line-height: 20px;
    }
}


/*--- about&news ----------------*/
#about,
#news,
#contact{
    width: 90%;
    max-width: 800px;
    margin: 150px auto;
}

#about .title,
#news .title,
#contact .title{
    text-align: center;
    font-size: 48px;
    letter-spacing: 4px;
}

.cp,
.mc,
.oc{
    margin: 40px;
}
#about .cp h2,
#about .mc h2,
#about .oc h2{
    text-align: start;
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 40px;
}
.cp p,
.mc p,
.oc p{
    width: 56%;
    margin: 0 auto;
    line-height: 40px;
    letter-spacing: 2px;
    font-size: 14px;
}
.mc p a,
.tkt a{
    color: #fff;
    text-decoration: none;
}
.oc .c_title{
    margin-top: 20px;
}

#news h2,
#contact h2{
    text-align: center;
    line-height: 40px;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 400;
}

.tkt{
    text-align: center;
    margin-top: 60px;
    letter-spacing: 2px;
    font-size: 14px;
}

.mc .asmg{
    font-size: 12px;
    margin-top: 30px;
}

#news .tkt h3{
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 20px;
}

.news-contens{
    margin-top: 30px;
}
.news-contens p{
    margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
    .cp p,
    .mc p,
    .oc p{
        width: 60%;
        margin: 0 auto;
        line-height: 30px;
        letter-spacing: 2px;
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    #about .title,
    #news .title,
    #contact .title{
        font-size: 36px;
        letter-spacing: 3px;
    }
    .cp,
    .mc,
    .oc{
        margin: 40px auto;
    }
    #about .cp h2,
    #about .mc h2,
    #about .oc h2{
        margin-bottom: 10px;
        text-align: start;
        font-size: 14px;
        letter-spacing: 2px;
    }
    .cp p,
    .mc p,
    .oc p{
        width: 100%;
        line-height: 24px;
        letter-spacing: 1px;
        font-size: 12px;
    }

    #news h2,
    #contact h2{
        line-height: 20px;
        letter-spacing: 2px;
        font-size: 14px;
    }

    .tkt{
        letter-spacing: 1px;
    }
    
    #news .tkt h3{
        font-size: 14px;
    }
    
    .tkt a,
    .news-contens p{
        font-size: 12px;
        margin-bottom: 10px;
    }
}

.mail{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.mail_icon{
    width: 24px;
    margin-right: 10px;
}
.mail a{
    color: #fff;
}

footer{
    padding-bottom: 40px;
    text-align: center;
    font-size: 10px;
}
footer div{
    margin-top: 20px;
}