body {
    color: #082b48;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    line-height: 1.5;
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #082b48;
}

a:hover {
    opacity: 0.7;
}

.container {
    width: 90%;
    max-width: 980px;
    margin: auto;
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    color: #082b48;

}

.header-img {
    width: 100px;
}


/*==============================================
top
==============================================*/

.top {
    background-image: url(../img/top_sea_3.jpg);
    background-size: cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.top-title {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.top-subtitle {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}


/*==============================================
section common style
==============================================*/

.section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
    margin-bottom: 40px;
    color: dimgray;
}

.section {
    padding: 60px 0;
}


/*==============================================
about
==============================================*/

.about-container {
    width: 700px;
    border: 0.5px solid #888888;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.about-image {
    width:35%;
}

.about-introduction {
    width: 55%;
}

.about-twitter {
    display: block;
    width: 20%;
    padding-top: 20px;
}

.about-introduction-title {
    font-size: 20px;
    color: dimgray;
}

.about-content-subtitle {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0 10px 0;
}


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

.service {
    background-color: rgb(245, 250, 255);
}

.card {
    margin: 10px;
}



.card-img-top {
    object-fit: cover;
    height: 20vw;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}


/*==============================================
work
==============================================*/

.work-img {
    object-fit: cover;
    height: 30vw;
    object-position: top;
}


.card-link{
    display: block;
    padding-top: 10px;
    color: blue;
    text-align: center;
}



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

.contact-message {
    text-align: center;
    margin-bottom: 20px;
}

.SNS {
    width: 400px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.SNS-item {
    width: 130px;
    
}


.SNS-img {
    width: 50px;
    height: 50px;
    margin: 0 auto;

}


.contact-address {
    display: block;
    color: blue;
    font-size: 16px;
    text-align: center;
}


/*======================================================
Footer
======================================================*/

footer {
    padding: 16px;
    background-color: #888888;
}

.copyright {
    color: #fff;
    text-align: center;
}

/*======================================================
Smartphone
======================================================*/

@media only screen and (max-width:767px) {



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

.nav-link {
    font-size: 10px;
}



/*==============================================
about
==============================================*/

.about-container {
    width: 90%;
    display: block;
}

.about-image {
    width: 100%;
    margin-bottom: 40px;
}

.about-introduction {
    width: 100%;
}

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

@media only screen and (max-width:575px) {


.service-container {
    flex-direction: column;
    margin: 0 auto;
}

.card {
    width: 100%;
    margin-bottom: 20px;
}


.card-img-top {
    object-fit: cover;
    height: 45vw;
}

/*==============================================
work
==============================================*/

.work-img {
    object-fit: cover;
    height: 50vw;

}

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

.SNS {
    width: 70%;
}

}