@charset "UTF-8";
body{
    background: -moz-linear-gradient(0deg,  rgb(0,175,204)60%, rgb(0,104,136)100%);
    background: -webkit-linear-gradient(0deg,  rgb(0,175,204)60%, rgb(0,104,136)100%);
    background: linear-gradient(90deg, rgb(0,175,204)60%, rgb(0,104,136)100%);
    background-color: rgb(0,175,204);
    font-family: 'Lora', serif ,'Noto Serif JP', serif;
    color: #191a1b;
    width: 100%;
    margin: 0 auto;
    font-weight: 500;
}
.box{
    width: 100%;
    display: flex;
}
/* Fadein */
/* 初期値 */
.fadeInItem{
    opacity: 0;
    transform: scale(.9) translate(0,50px);
}
/* イベント実行時） */
.fadein{
    opacity: 1;
    /* all 現れる速度(.5s 5sなど) 現れ方*/
    transition : all 1s ease-in;
    /* 表示される場所は00で正位置を指定 */
    transform: scale(1) translate(0,0);
}

/* navここから */
nav{
    width: 80%;
    margin: 10px auto;
}
nav ul{
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}
nav li{
    list-style: none;
    font-size: 18px;
    padding: 10px;
}
nav a{
    transition: color 0.3s;
    text-decoration: none;
    color: #c9caca;
}
a:hover{
    color: #f2cb25;
    font-style: italic;
}
a:active{
    color: #f2cb25;
    font-style: italic;
}
i:hover{
    transform: scale(1.2);
}

/* body */
.box{
    width: 80%;
    margin: 50px auto;
}
/* asideここから */
aside{
    width: 25%;
    margin: 10px 0;
}
aside h2{
    width: 350px;
    max-width: 100%;
    margin: 0;
    padding: 5px 0;
    text-align: center;
    background: #f3981d; 
}
aside p{
    margin: 0;
}
img{
    vertical-align: top;
    max-width: 100%;
}
.rvs_img{
    opacity: 70%;
    -moz-transform: translate(20px,0) rotate(180deg) skew(10deg);
    -webkit-transform: translate(20px,0) rotate(180deg) skew(10deg);
    transform: translate(20px,0) rotate(180deg) skew(10deg);
    /* -moz-transform-origin: 186px; */
    /* -webkit-transform-origin: 186px; */
    /* transform-origin:186px ; */
}
/* メインここから */
main{
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
main p{
    font-size: 16px;
    margin-top: 0;
}
main a{
    transition: color 0.3s;
    text-decoration: none;
    color: #10203d;
}
section{
    width: 90%;
    display: flex;
    justify-content: flex-end;
}
.tab{
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}
.tab li{
    width: 130px;
    line-height: 24px;
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    border: solid 3px #009b9f;
    border-bottom: none;
}
.tab li:hover{
    color: #f2cb25;
    font-style: italic;
    cursor: pointer;
}
.tab .select{
    background-color: #009b9f;
}
.hide{
    display: none;
}
.myconcept{
    width: 90%;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 10px;
    list-style: none;
    border: solid 3px #009b9f;
}
.myconcept p:last-child{
    margin-bottom: 0;
}
.myskill{
    width: 40%;
    justify-content: center;
}
.mydata{
    width: 40%;
    justify-content: flex-end;
    padding-left: 30px;
}
article p{
    margin: 0 0 10px 0;
}
h3{
    margin: 0;
    font-size: 24px;
}
.ul1{
    font-weight: bold;
    padding: 0;
}
.ul2{
    font-weight: 500;
    padding-left: 10px;
    padding-bottom: 5px;
}
section li{
    list-style: none;
    font-size: 15px;
}
span{
    font-size: 14px;
}

/* footerここから */
footer{
    height: 18px;
    margin: 20px auto;
}
footer p{
    font-size: 12px;
    text-align: center;
    margin: 0;
    color: #c9caca;
}

/* ipad */
@media screen and (max-width:1024px){
    .box{
        width: 90%;
        margin: 30px auto;
    }
    aside{
        width: 25%;
        margin: 30px 0;
    }
    .rvs_img{
        transform: translate(13px,0) rotate(180deg) skew(10deg);
    }
    article{
        width: 90%;
    }
    .myconcept{
        width: 85%;
    }
    .myskill, .mydata{
        width: 50%;
    }
    .ul1 li{
        font-size: 15px;
    }
    .myskill:hover{
        transform: scale(1.5);
        background-color: #00afcc;
        cursor: pointer;
    }
    .ul2 a{
        color: #f2cb25;
    }
    footer{
        margin-top: 50px;
    }
}

/* iphone */
/* Fadein */
/* 初期値 */
@media screen and (max-width:600px){
    .fadeInItem{
        transform: scale(.9) translate(0,0);
    }
    .fadein{
        transform: scale(1) translate(0,0);
    }
    .box{
        width: 90%;
        flex-direction: column;
    }
    aside {
        width: 70%;
        margin: 20px auto;
    }
    main{
        width: 100%;
        align-items: center;
    }
    article{
        margin: 0 auto;
    }
    section{
        width: 100%;
        flex-direction: column;
    }
    .myskill, .mydata{
        width: 90%;
        margin-bottom:50px ;
        padding: 0;
    }
    .myskill:hover{
        transform: scale(1);
    }
    .myskill h3, .myskill p{
        text-align: right;
    }
    .ul2 a{
        color: #f2cb25;
    }
    .ul1 li{
        font-size: 16px;
    }
    footer p{
        font-size: 10px;
    }
}
@media screen and (max-width:400px){
    .tab, .myconcept{
        width: 90%;
    }
    .tab li{
        width: 50%;
        font-size: 14px;
    }
}
@media screen and (max-width:305px){
    .tab li{
        font-size: 12px;
    }
}
