@charset "UTF-8";
/*  *とh1タグの中身はできるだけ最初のほうに書く*/
*{ 
    padding: 0px;
    margin: 0px;
}

/*==================
ヘッダー
====================*/

header{
    position:relative;
}

.daimei h1 {
    position: fixed;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
    background-color:rgb(255, 244, 232);
    padding-left: 30px;
    top:-37px;
    font-size: 50px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: yellowgreen;
    -webkit-text-fill-color: greenyellow;
    line-height:80px;
    z-index:2;
}

.rogo{
    position:fixed;
    width:100px;
    height:100px;
    top:-10px;
    left:350px;
    z-index:2;
}

.tuitta-{
    position:fixed;
    background-color:white;
    width:60px;
    height:60px;
    padding:10px;
    top:10px;
    right:150px;
    z-index:2;
}

.instagram{
    position:fixed;
    background-color:white;
    width:60px;
    height:60px;
    padding:10px;
    top:10px;
    right:80px;
    z-index:2;
}

/*==================
ハンバーガー
===================*/
.menu-btn {
    position: fixed;
    top: 15px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: white;
    border:1px solid;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: black;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu {
    display: none;
}
.menu-content {
    width: 20%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: black;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px black;
    list-style: none;
}
.menu-content ul li:hover{
    cursor: pointer;
    background-color: rgb(228, 228, 228);
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: black;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px black;
    border-right: solid 2px black;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 20%;
    height: 100%;
    position: fixed;
    top: 135px;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgb(255,255,255,0.7);
    border-left:1px solid black;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu:checked ~ .menu-content {
    left: 80%;/*メニューを画面内へ*/
}

/*==================
メインピクチャー
===================*/

/*.swiper {
    background-image: url("./images/syasin-top.png");
    height: 700px;
    width: 100%;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}


.portfolio {
    position:absolute;
    top:270px;
    left:200px;
    font-weight: bold;
    font-size:40px;
    color: white;
    letter-spacing: 0.5em;
    z-index:1;
    
    /*font-family: 'Lilita One', cursive;
    font-family: 'Righteous', cursive;
}*/

.swiper-wrapper .swiper-slide {
    height: 700px;
    width: 100%;
    
    background-size:cover;
    background-repeat:no-repeat;
    background-position:bottom;
}

#tenisu{
    background-position:center;
}

#seijinsiki{
    background-position:top;
    height:630px;
    margin-top:70px;
    padding-top:0px;
}


.cover-name1 {
    position:absolute;
    top:300px;
    left:200px;
    font-weight: bold;
    font-size:70px;
    color: white;
    letter-spacing: 0.5em;
    -webkit-text-stroke: 3px;
    -webkit-text-stroke-color: white;
    text-shadow: 6px 6px 0 #666,7px 7px 0 #666,8px 8px 0 #666;
    
    /*font-family: 'Lilita One', cursive;
    font-family: 'Righteous', cursive;*/
}

.jigazou img{
    position:absolute;
    top:200px;
    left:800px;
    z-index:1;
}

/*==================
ナビゲーション
===================*/
nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    box-shadow: 0 0 5px gray;
    margin-left: -1px;
}

nav {
    position: fixed;      /*absolute :画面の大きさで変化（画像が下にくる）  relative: 固定する（画像が上にくる）   fixed: 上に固定 */
    top: 75px;
    left: 0px;
    width: 100%;
    height: 55px;
    background-color: greenyellow;
    z-index:2;
}

.li {
    padding:0 85.9px;
}
.li:hover{
    cursor: pointer;
    background-color: rgb(1, 193, 1);
}

nav a:first-child{
    border: none;
}

nav a{
    text-decoration: none;
    font-size: 20px;
    color: white;
    line-height:55px;
    font-weight:bold;
    border-left: 1px solid black;
}

/*==================
メイン
====================*/


.kuuhaku2 {
    height: 50px;
}

h2{
    text-align: center;
    color: blue;
    text-shadow: 3px 3px 5px rgba(14, 51, 29, 0.5);
    margin:20px 0;
    font-family: 'Kiwi Maru', serif;
    font-weight: bold;
    font-size:30px;
}

.h3 {
    color: green;
    text-shadow: 3px 3px 5px rgba(14, 51, 29, 0.5);
    margin-bottom: 30px;
    border-bottom: 2px solid green;

}

.kuuhaku {
    text-indent: 1em;
}

main {
    background-color:beige;
}

/*==================
自己紹介
====================*/

#about {
    margin-top:-50px;
    padding-bottom: 20px;
    width:80%;
    height: 650px;
    margin: 0 auto;
    border: 10px solid rgb(0, 0, 0);
    background-color: white;
    border-radius: 5%;
}

.about-container{
    display: flex;
    flex-wrap: wrap;
}

.about-block1{
    width:50%;
    margin-left:30px;
    padding: 20px 20px;
}

.about-img {
    width: 200px;
    height: 250px;
    margin-bottom: 20px;
}

.about-item1 {
    margin-left: 20px;
    text-align: center;
}

.about-block2{
    width: 40%;
    margin-left: 20px;
    padding: 20px 20px;
}

.subtitle{
    text-align: center;
    color: rgb(83, 198, 236);
    border: 1px solid black;
    padding:10px;
    font-weight: bold;
}

.nenpyou{
    width: 300px;
    height: 460px;
    padding-top:20px;
}

/*==================
プライベート
====================*/

.pribert {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 25px auto; 
    border:1px solid;
    background-color: white;
    width: 80%;
}

.pribert-item {
    height: 200px;
    padding: 10px;
}

.pribert-item img{
    width: 250px;
    height:180px;
}

.pribert p{
    width: 600px;
    font-size:16px;
    margin: 60px 30px;
}

#kihonjouhou{
    margin-top:40px;
}
/*==================
表
===================*/
#skill {
    padding-top: 55px;
    margin-top:-55px;
}

table {
    width: 80%;
    border-collapse: collapse;
    border: solid 2px blue;
    margin: auto;
    background-color: white;
}

table th, table td {
    border: solid 1px blue;
}

table th {
    padding: 3px 10px;
    color: white;
    background: blue;
}

table td {
    padding: 10px;
    text-align: center;
}

.setumei{
    width:600px;
}

.mark{
    width: 100px;
    height:100px;
}

.mark1 {
    height: 150px;
    width: 150px;
}
/*==================
現在とこれから
===================*/
.skill2{
    margin-top: 50px;
}

.skill2 h2{
    margin-bottom:50px;
}

.skill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.skill-item {
    text-align: center;
    margin-left: 30px;
    padding: 20px;
    width: 300px;
    border: 1px solid black;
    background-color: white;
}

.skill-container img {
    height: 200px;
    width:260px
}

.skill-item p{
    margin-top:20px;
}

/*.saiseibotan{
    position:absolute;
    height:60px;
    width:180px;
    top:3385px;
    left:930px;
}*/

.video {
    height:100px;
    width:250px;
}

/*==================
感想
===================*/
.kannsou{
    width:80%;
    margin:50px auto 20px auto;
    padding:0px 50px;
    padding-top:15px;
    padding-bottom:50px;
    background-color:white;
    border:1px solid black;
}
.kannsoubunn{
    margin:60px 0;
    font-size:14px;
}

.kannsoubunn-h3{
    border-bottom:1px solid ;
}

.color1{
    background-color:yellowgreen;
}

.color2{
    background-color:aqua;
}

.color3{
    background-color:mediumaquamarine;
}

.color4{
    background-color:#ff9b9b;
}

/*.kannsou2{
    background-color:white;
    width:150px;
    padding:0 20px;
    margin:0 auto;
    margin-top:30px;
    text-align: center;
}*/
/*==================
作成作品の記録
===================*/
#sakusei{
    display:flex;
    flex-wrap:wrap;
}

/*==================
作成記録
===================*/
.sakuseikiroku{
    color:black;
    background-color:white;
    border:5px solid blue;
    border-radius: 20%;
    width:40%;
    margin:30px auto;
    padding-bottom:40px;
}


.sakuseikiroku-p{
   padding:10px 30px;
   margin:0 30px;
}

/*==================
作成中の通販サイト
===================*/
.EC{
    color:black;
    background-color:white;
    border:5px solid blue;
    border-radius: 20%;
    width:40%;
    margin:30px auto;
    padding-bottom:40px;
}

.EC-p{
        padding:10px 15px 0 15px;
        margin:0 30px;
}

.EC-img{
    height:150px;
    width:400px;
    margin:0 50px;
}

.link{
    height:50px;
    width:300px;
    background-color:#fd9535;
    text-align: center;
    line-height: 50px;
    margin:0px auto;
    font-weight:bold;
    margin-top:10px;
    box-shadow:3px 3px 7px black ;
    border:1px solid;
    border-radius: 4px;
}

.link:hover{
    cursor: pointer;
    background-color:yellow;
}

.link a{
    text-decoration: none;
    color: white;
    font-size:20px;
}

/*==================
お問い合わせ
===================*/
#contact {
    padding-top: 55px;
    margin-top:-55px;
    padding-bottom: 50px;
}

.contact-p {
    text-align: center;
    margin-bottom:30px;
}

/*==================
form
===================*/

.form{
    width: 48%;
    margin:0 auto;
    border: 1px solid #9c9c9c;
    padding: 50px;
    background-color: white;
}

.item{
    margin-bottom: 20px;
}

.label{
    display: inline-block;
    width:40%;
    border-left: solid 5px #5250e0;
    padding-left: 15px;
    vertical-align:top;
    margin: 0 auto;
}

.form input[type="text"]{
    width:500px;
    height:2em;
    line-height:2em;
}
.form input[type="email"]{
    width:500px;
    height:2em;
    line-height:2em;
}
.form input[type="number"]{
    width:500px;
    height:2em;
    line-height:2em;
}

.form textarea{
    width:500px;
    height:5em;
    font-size:14px;
}
.button{
    display: flex;
    justify-content: center;
}

.form input[type="submit"]{
    background-color:#fd81d8;
    color: black;
    font-size:16px;
    box-shadow:3px 3px 3px #666 ;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 4px;
}
.form input[type="submit"]:hover{
    cursor: pointer;
    background-color: white;
}

.form input[type="reset"]{
    background-color: rgb(143, 187, 253);
    color: black;
    font-size:16px;
    box-shadow:3px 3px 3px #666 ;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 4px;
}
.form input[type="reset"]:hover{
    cursor: pointer;
    background-color: white;
}
/*==================
フッター
===================*/

footer {
    background-color: yellowgreen;
    text-align: center;
    font-size: 20px;
}

