@charset "utf-8";

html{
    appearance: none;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* word-break: break-all; */
}

body {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-style: normal;
}
p,h1,h2,h3,a {
    margin: 0;
    color: #30353a;
}
a {
    text-decoration: none;
}
#container{
    font-size: 18px;
}
h2{
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}
.bg-gray{
    background-color: #f7f6f6;
}
.f-blue{
    color: #4e84f3;
}
/* header */
.title {
    margin-left: 40px;
    position: absolute;  
    z-index: 1;
    font-size: 40px;
    font-weight: bold;
    text-shadow:1px 1px 3px #30353a;
    color: #ffffff;
}

header{
    width: 100%;
    font-size: 25px;
    position: absolute;  
    z-index: 1; 
       
}
.header_nav {
    margin: 0;
}
.header_content {
    max-width: 1080px;
   margin: 0 auto;
    
}  
.nav_list {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    font-size: 25px;
    padding-left: 0;
    margin: 0;
}
.nav_list li {
    background-color: #4e84f3;
    padding: 10px 0;
} 
.nav_list li:after {
    content: "";
    margin: 8px 40px 8px 0;
    position: absolute;
    background-color: #e5e5eb;
    width: 2px;
    height: 20px;
}
.nav_list li:hover::after {
    pointer-events: none;
    transition: none;
    opacity: 1;
}
.nav_list li:last-of-type::after {
    content: none;
}

.nav_list a {
    padding: 10px 30px;
    text-align: center;
    vertical-align: center;
    color: #f7f6f6;
    transition: 0.5s;
}
.nav_list a:hover{
    transition: 0.5s;    
    color: #ffffff;
    text-shadow:2px 2px 2px  #545657;
} 
/* main */
#main{
    width: 100%;
    height: 680px;
    position: relative;
    overflow: hidden;
}
#main::after{
    content: "";
    background-color: black;
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
#main h1 {
    font-size: 100px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:  translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%); 
    white-space: nowrap;
    z-index: 99;
    text-shadow:2px 2px 2px black;
}
#main img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}
/* About */
#about{
    padding: 40px 60px;
}
.about-flex {
    max-width: 960px;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}
.about-img-area {
    width: 50%;
    max-width: 300px;
}
.about-img-area img {
    width: 100%;
}
.about-textarea{
    margin-left: 50px;
    width: 50%;
}
.about-textarea img{     /*ロゴ*/
    margin-left: 20px;
    width: 50px;
    vertical-align: bottom;
}

.about-textarea p {
    line-height: 33px;
}

.about-textarea ul {
    padding-left: 16px;
    margin: 30px 0 0 0;
    line-height: 33px;
    font-weight: bolder;
} 
/* snsアイコンをulの隣に置きたい */
.sns-area {
    text-align: right;
    margin-top: -50px;
    margin-left: -10px;
}
.sns-area img{
    width: 50px;
    margin-right: 15px;
    transition: 0.5s;
}
.sns-area img:hover{
    opacity: 0.5;
    transition: 0.5s;
}
/* skill */
#skill {
    padding: 40px 60px; 
}
.skill-list {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    margin: 0 auto;
    width: 100%;
}
.circle{
    background-color: #4e84f3;
    opacity: 0.8;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    height: 200px;
    position: relative; 
}
.skill-content h3 { 
    color: #ffffff;
    font-size: 30px;
}
.skill-content {
    width: 200px;
}
.skill-content p {
    margin: 20px 0px 30px;
    font-size: 16px;
    text-align: center;
    line-height: 1.5em;
    
    /* word-break: keep-all; */
}
.html h3{
    position: absolute;
    top: 40%;
    left: 30%;
}
.css h3{
    position: absolute;
    top: 40%;
    left: 36%;
}
.js h3{
    position: absolute;
    top: 40%;
    left: 14%;
}
.wp h3{
    position: absolute;
    top: 40%;
    left: 15%;
}
.wp {
    margin-right: 0px;
}
.pha h3{
    position: absolute;
    top: 40%;
    left: 12%;
}
.skill-list div {
    /* width: 33%;  */
    margin: 0 30px;
}
.skill-content{
    text-align: center;
}
/* works */
#works {
    padding: 40px 0px;
}
.works-list {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}
.work-content {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
}
.work-content img {
    margin-bottom: 20px;
    max-width: 290px;
    position: relative;
}
/* contact */
#contact {
    padding: 40px 150px 20px;
    text-align: center;
}
#contact h3{
    margin-top: 20px;
    font-size: 25px;
    margin-bottom: 20px;
}
/* footer */
.footer-box {
    margin: 0 auto;
    padding: 30px 60px;
    text-align: center;
    max-width: 1080px;
}
.footer_nav_list {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: center;
    font-size: 25px;
    padding-left: 0;
}
.footer_nav_list li:after {
    content: "";
    margin: 5px 40px 5px 0;
    position: absolute;
    background-color: #a5a7aa;
    width: 2px;
    height: 25px;
}
.footer_nav_list li:last-of-type::after {
    content: none;
}

.footer_nav_list a {
    padding: 25px 40px;
    text-align: center;
    vertical-align: center;
    color: #a5a7aa;
    transition: 0.5s;
}
.footer_nav_list a:hover{
    opacity: 0.8;
    transition: 0.5s;    
    color: #30353a;
}
/* copyright */
.copyright {
    padding: 40px 0 30px;
    color: #a5a7aa;
}

@media screen and (min-width: 900px) {
    .pc_none{
        display: none!important;
    } 
}
@media screen and (max-width: 899px) {
    .sp_none{
        display: none!important;
    } 
#container {
    font-size: 14px;
}
h2 {
    margin-bottom: 20px;
}

/* header */
.title {
    display: none;
}
.header{
    background-color: #4e84f3;
    font-size: 20px; 
} 
.nav_list{
    width: 100%;
    padding:10px 0;
    margin: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    
}
.nav_list li {
    width: 100%;
    padding: 0; 
    background-color: #4e84f3;
}
.nav_list a {
    background-color: #4e84f3; 
    padding: 10px 10px;    
}
.nav_list li:first-of-type {
    display: none;
}
.nav_list li::after {
    display: none; 
}

/* main */
#main h1 {
    font-size: 70px;
    white-space: normal;
    text-align: center;
}
/* about */
#about{
    padding: 30px 10px;
}

.about-img-area {
    width: 100%;
    margin: 0 auto 20px;
    padding: 0 20px;
}
.about-textarea{
    width: 100%;
    max-width: 330px;
    margin: 0;
    padding: 0 10px;
}
.about-textarea p,b {
    font-size: 13px;
    line-height: 1.5rem;
}
.about-textarea img{     /*ロゴ*/
    margin-left: 5px;
    width: 30px;
    vertical-align: bottom;
}
.about-textarea ul{
    margin: 10px auto;
    text-align: left;
    font-size: 13px;
    line-height: 1.5rem;
}
.about-flex {
    flex-wrap: wrap;
}
.sns-area {
    text-align: left;
    margin:  0 0 ; 
}
.sns-area img{
    max-width: 35px;
    margin: 0 0 0 8px;
}
/* skill */
#skill{
    padding: 20px 0;
}
.skill-list {
    flex-wrap: nowrap;
    display: block;
}
.skill-list div {
    margin: 0;
}
.skill-content{
   width: 100%;
}
.skill-content p {
    font-size: 14px;
}
/* works */
.works-list{
    flex-wrap: nowrap;
    display: block;
}
.work-content img {
    width: 100%;
}
.work-content p {
    font-size: 14px;
}
/* Contact */
#contact {
    padding: 30px 0px ;
}
#contact h3{
    font-size: 20px;
}
.form{
    max-width: 360px;
}
/* footer */
.footer-box {
    padding: 30px 0;
}
.footer-box ul {
    margin:  auto ;
    width: 300px;
}
.footer_nav_list li:after {
    display: none;
}
.footer_nav_list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer_nav_list li:first-of-type {
    display: none;
}
.footer_nav_list li {
    height: 50px;
    width: 50%;
    flex-wrap: nowrap;
    justify-content: space-around;
}
.footer_nav a {
    padding: 10px 40px; 
}
.footer_nav_list a:last-of-type {
    padding-right:28px;
}
.copyright {
    padding:20px 0 0 0;
}
}