@charset "UTF-8";

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1000px) {



.container{
    width: 100%;
}


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

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

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

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

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

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

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

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

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: rgb(47, 0, 255);
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


.aboutme{
    width: 100%;
    display: flex;
    padding-top: 20px;
}

.aboutme p{
    padding-left: 20px;
    padding-top: 20px;
    color: rgb(47, 0, 255);
}

.aboutme h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: 700;
font-size: 80px;
padding-left: 20px;
}

.header{
    display: flex;
}

.me{
    width: 100%;
    height: 700px;
    display: flex;
}

.me1{
    width: 40%;
}

.me1 img{
    width: 100%;
}

.me2{
    width: 60%;
    text-align: center;
    padding-top: 120px;
}

/* .web{
    background-color: aqua;
    width: 30%;
    margin: 0 auto;
    margin-bottom: 20px;
    white-space: none;


} */

.web p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 10px;
    white-space: none;



}

.iam{
    width: 60%;
    margin: 0 auto;
    margin-top: 40px;
}

.me2 p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;
    font-size: 60px;
}

.me2 h3{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 80px;
    white-space: nowrap;
}

.comento{
    margin: 0 auto;
    margin-top: 80px;
}
.comento p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 15px;
    }





.experience{
    width: 80%;
}

.experience img{
    width: 100%;
}


.hobby{
    width: 100%;
}

.hobby h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    font-size: 80px;
    padding-left: px;
}

.interests{
    width: 100%;
    height: 500px;
    display: flex;
    margin-top: 100px;
}

.interests img{
    width: 80%;
}

.interests1{
    text-align: center;

}

.interests2{
    text-align: center;
    
}

.interests3{
    text-align: center;
    
}

.interests4{
    text-align: center;
    
}

.contact{
    /* background-color: aqua; */
    width: 30%;
    height: 80px;
    display: flex;
    margin: 0 auto;
}

.contact ul{
    display: flex;
    list-style: none;
    text-align: center;
    padding-top: 20px;
}

.contact img{
    width: 20%;
}
}


/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:480px) and (max-width:999px) {
    container{
        width: 100%;
    }
    
    
    /*========= ナビゲーションのためのCSS ===============*/
    
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top:0;
        right: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        background:#999;
        /*動き*/
        transition: all 0.6s;
    }
    
    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        right: 0;
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list{
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;/*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    
    /*リストのレイアウト設定*/
    
    #g-nav li{
        list-style: none;
        text-align: center;
    }
    
    #g-nav li a{
        color: #333;
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }
    
    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        z-index: 9999;/*ボタンを最前面に*/
        top:10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height:50px;
    }
        
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: rgb(47, 0, 255);
          width: 45%;
      }
    
    .openbtn span:nth-of-type(1) {
        top:15px;	
    }
    
    .openbtn span:nth-of-type(2) {
        top:23px;
    }
    
    .openbtn span:nth-of-type(3) {
        top:31px;
    }
    
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    
    
    .aboutme{
        width: 100%;
        display: flex;
        padding-top: 20px;
    }
    
    .aboutme p{
        padding-left: 20px;
        padding-top: 20px;
        color: rgb(47, 0, 255);
    }
    
    .aboutme h2{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    font-size: 80px;
    padding-left: 20px;
    }
    
    .header{
        display: flex;
    }
    
    .me{
        width: 100%;
        height: 400px;
        display: flex;
    }
    
    .me1{
        width: 40%;
    }
    
    .me1 img{
        width: 100%;
    }
    
    .me2{
        width: 60%;
        text-align: center;
        padding-top: 120px;
    }
    
    /* .web{
        background-color: aqua;
        width: 30%;
        margin: 0 auto;
        margin-bottom: 20px;
        white-space: none;
    
    
    } */
    
    /* .web p{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 10px;
        white-space: none;
    
    
    
    } */
    
    /* .iam{
        width: 30%;
        margin: 0 auto;
        margin-top: 40px;
    } */

    .iam{
        margin-bottom: 50px;
    }
    
    .iam p{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: 300;
        font-size: 30px;
    }
    
    .iam h3{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 50px;
        white-space: nowrap;
    }
    
    .comento{
        width: 80%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .comento p{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 10px;
        }
    
    
    
    
    
    .experience{
        width: 80%;
    }
    
    .experience img{
        width: 100%;
    }
    
    
    .hobby{
        width: 100%;
    }
    
    .hobby h2{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: 700;
        font-size: 80px;
        padding-left: px;
    }
    
    .interests{
        width: 100%;
        height: 300px;
        display: flex;
        margin-top: 100px;
    }
    
    .interests img{
        width: 80%;
    }
    
    .interests1{
        text-align: center;
    
    }
    
    .interests2{
        text-align: center;
        
    }
    
    .interests3{
        text-align: center;
        
    }
    
    .interests4{
        text-align: center;
        
    }
    
    .contact{
        /* background-color: aqua; */
        width: 30%;
        height: 80px;
        display: flex;
        margin: 0 auto;
    }
    
    .contact ul{
        display: flex;
        list-style: none;
        text-align: center;
        padding-top: 20px;
    }
    
    .contact img{
        width: 20%;
    }
    }


    /*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 479px) {
    container{
        width: 100%;
    }

    .hr{
        width: 100%;
    }
    
    
    /*========= ナビゲーションのためのCSS ===============*/
    
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top:0;
        right: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        background:#999;
        /*動き*/
        transition: all 0.6s;
    }
    
    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        right: 0;
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list{
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;/*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    
    /*リストのレイアウト設定*/
    
    #g-nav li{
        list-style: none;
        text-align: center;
    }
    
    #g-nav li a{
        color: #333;
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }
    
    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        z-index: 9999;/*ボタンを最前面に*/
        top:10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height:50px;
    }
        
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: rgb(47, 0, 255);
          width: 45%;
      }
    
    .openbtn span:nth-of-type(1) {
        top:15px;	
    }
    
    .openbtn span:nth-of-type(2) {
        top:23px;
    }
    
    .openbtn span:nth-of-type(3) {
        top:31px;
    }
    
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    
    
    .aboutme{
        width: 100%;
        display: flex;
        padding-top: 20px;
    }
    
    .aboutme p{
        padding-left: 20px;
        padding-top: 20px;
        color: rgb(47, 0, 255);
    }
    
    .aboutme h2{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    font-size: 40px;
    padding-left: 10px;
    }
    

    /* .header{
        display: flex;
    } */
    
    .me{
        width: 100%;
    }
    
    .me1{
        width: 70%;
        margin: 0 auto;
        margin-top: 10px;
    }
    
    .me1 img{
        width: 100%;
    }
    
    .me2{
        width: 100%;
        text-align: center;
    }
    
    /* .web{
        background-color: aqua;
        width: 30%;
        margin: 0 auto;
        margin-bottom: 20px;
        white-space: none;
    
    
    } */
    
    /* .web p{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 10px;
        white-space: none;
    
    
    
    } */
    
    /* .iam{
        width: 30%;
        margin: 0 auto;
        margin-top: 40px;
    } */

    .iam{
        width: 70%;
        margin-top: 10px;
        margin: 0 auto;
    }
    
    .iam p{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: 300;
        font-size: 20px;
    }
    
    .iam h3{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 30px;
        white-space: nowrap;
    }
    
    .comento{
        width: 70%;
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 10px;

    }
    .comento p{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 6px;
        }
    
    
    
    
    
    .experience{
        width: 80%;
    }
    
    .experience img{
        width: 100%;
    }
    
    
    .hobby{
        width: 100%;
    }
    
    .hobby h2{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: 700;
        font-size: 40px;
        padding-left: 10px;
    }
    
    .interests{
        width: 100%;
        display: flex;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .interests img{
        width: 80%;
    }
    
    .interests1{
        text-align: center;
    
    }
    
    .interests2{
        text-align: center;
        
    }
    
    .interests3{
        text-align: center;
        
    }
    
    .interests4{
        text-align: center;
        
    }
    
    .contact{
        /* background-color: aqua; */
        width: 30%;
        height: 50px;
        display: flex;
        margin: 0 auto;
    }
    
    .contact ul{
        display: flex;
        list-style: none;
        text-align: center;
        padding-top: 10px;
    }
    
    .contact img{
        width: 20%;
    }
}












