@charset "UTF-8";
body{
    line-height: 1.7;
}
.container{
    width: 90%;
    max-width: 980px;
    text-align: center;
    margin: auto;
}
a{
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 24px;
}
a:hover{
    opacity: .7;
}
/*=================================================
section共通
=================================================*/
.section-title{
    font-size: 55px;
    font-weight: bold;
    font-family: 'Philosopher', sans-serif;
    margin-bottom: 30px;

}

/*=================================================
header
=================================================*/
header{
    padding: 40px 0;
}
.header-logo{
    font-weight: bold;
    font-size: 36px;
}
.header-wrapper{
    display: flex;
    justify-content: space-between;
}
.header-nav{
    display: flex;
}
.header-nav-item{
    margin-left: 20px;
    padding-top: 15px;
}

/*=================================================
top
=================================================*/
.top{
    background-image: url(../img/スクリーンショット\ 2022-08-14\ 233038.png);
    background-size: cover;
    width: 100%;
    color: #fff;
    padding: 300px 0;   
    font-family: Arial, Helvetica, sans-serif;
}
.top-title{
    font-size: 140px;
    margin-bottom: 30px;
    font-family: 'Philosopher', sans-serif;

}
.top-contents{
    font-size: 40px;
    font-family: 'Philosopher', sans-serif;


}
/*=================================================
about
=================================================*/
.about{
    padding: 100px 0 ;
}
.about-card  {
    width: 100%;
    height: 400px;
    box-shadow: 0 3px 5px;
    padding: 40px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    margin: auto;
}
.about-card-group{
    display: flex;
}
.about-card-img{
    width: 300px;
    height: 300px;
    margin-right: 15px;
}
.name{
    font-size: 28px;
}
span{
    font-size: 20px;
}

/*=================================================
service
=================================================*/
.service-card{
    width: 30%;
    height: 400px;
    box-shadow: 0 2px 3px;
    border-radius: 4px;
}

.service-img{
    width: 100%;
    height: 200px;
}
.service-card-group{
    display: flex;
}
.service-card-wrapper{
    display: flex;
    justify-content: space-between;
}
.service{
    padding: 100px 0;
    background-color: rgb(232, 229, 229);
}
.service h3{
    padding: 20px 0 15px 0;
    font-size: 25px;
    font-weight: bold;
}
.service p{
    font-size: 16px;
}

/*=================================================
work
=================================================*/
.work{
    padding: 100px 0;
}
.work-card{
    width: 50%;
    height: 440px;
    box-shadow: 0 2px 3px;
    border-radius: 4px;
    margin: 0 20px;
}
.word-card-wrapper{
    display: flex;
    justify-content: space-between;
}
.work-img{
    width: 100%;
    height: 200px;
}
.work-card-text{
    padding: 30px 0;
}
.work-card-title{
    font-size: 24px;
    text-align: left;
}
.work-card p {
    text-align: left;
}
.work-card-a{
    color: blue;
    margin: 10px 0;
}

/*=================================================
contact
=================================================*/
.contact{
    padding: 100px 0;
    background-color: rgb(232, 229, 229);
}
input[type="text"] ,[type="email"] {
    display: block;
    width: 400px;
    padding: 15px ;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}
.btn{
    width: 130px;
    height: 50px;
    margin-top: 40px;
}

/*=================================================
footer
=================================================*/
footer{
    padding: 15px;
    background-color: black;
}
.copyright{
    color: #fff;
    font-size: 12px;
}


/*=================================================
スマホ表示
=================================================*/

@media (max-width:767px){


/*=================================================
header
=================================================*/

.header-wrapper{
    display: block;
}
.header-logo{
    font-size: 42px;
    margin-bottom: 20px;
}
.header-nav-item{
    padding: 0;
}
.header-nav-item a{
    font-size: 18px;
}
.header-nav{
    justify-content: space-between;
}



/*=================================================
about
=================================================*/
.about-card{
    width: 100%;
    height: 630px;
}
.about-card-group{
    flex-wrap: wrap;
}
.about-card-img{
    width: 100%;
}
.about-card-text{
    padding-top: 20px;
}

/*=================================================
service
=================================================*/

.service-card-wrapper{
    flex-wrap: wrap;
}
.service-card{
    width: 100%;
    margin-bottom: 20px;
}
.service-img{
    width: 100%;
}
/*=================================================
word
=================================================*/
.word-card-wrapper{
    flex-wrap: wrap;
}
.work-card{
    width: 95%;
    margin-bottom: 40px;
}
.work-img{
    width: 100%;
}


/*=================================================
contact
=================================================*/

input[type="text"] ,[type="email"]{
    width: 95%;
}

}


