@charset "utf-8";

*{
    box-sizing: border-box;
}

html {
    word-break: break-all;
    font-size: 10px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width : 600px) {
    .sp {
        display: none;
    }
}

p,h1,h2,h3,h4,a {
    margin:0;
    color: #30353a;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
.container {
    font-size: 18px;
}
h2 {
    font-size: 30px;
    text-align: center;
    padding: 30px 60px;
}
.about-left {
    text-align: center;
}
.header {
    width: 100%;
    font-size: 35px;
    position: absolute;
    z-index: 999;
}  
  .header li {
    list-style-type: none;
}
  

.title {
    position: absolute;
    left: 60px;
    top: 6px;
    z-index: 1;
}
header {
    background-color: black;
}

.header-right {
    text-align: right;
}


.header-right li {
    padding: 6px 60px;
    display: inline-block; 
    font-size: 14px;
    color: white;
    
}

.top {
    height: 500px;
    position: relative;
    /* サイト参考部分 */
    width: 100%;
    height: 0;
 
    /* (画像の高さ / 画像の横幅) × 100 */
    padding-top: 66.6666666667%;
 
    background: url(/img/top-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}
@media(max-width) {
    
}



h1 {
    color: white;
    position: absolute;
    left: 80%;
    top: 30%;
    font-size: 40px;
}
@media(max-width:600px) {
    h1 {
        font-size: 20px;
        left: 75%;
        top: 25%;
    }
}

.about-wrapper {
    background-color: aliceblue;
    padding-bottom: 30px;
}
.about {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
}
@media(max-width:600px) {
    .about {
        flex-direction: column-reverse;
    } 
}


.about-left {
    width: 50%;
}
@media(max-width:600px) {
    .about-left {
        width: 100%;
    }
}

.about-left p {
    line-height: 33px;
    text-align: start;
    display: flex;
    justify-content: center;
}

@media(max-width:600px) {
    .about-left p {
        font-size: 14px;
        margin-top: 10px;
    }
}

.about-right {
    width: 50%;
    max-width: 400px;
    text-align: center;
}
@media(max-width:600px) {
    .about-right {
        width: 100%;
    }
}

.about-right img {
    width: 80%;
    border-radius: 35px;
}

.service-wrapper {   
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
@media(max-width:600px) {
    .service-wrapper {
        flex-wrap: wrap;
        margin: auto;
    }
}

.service {
    width: 25%;
}
@media(max-width:600px) {
    .service {
        width:50%;
    }
}
.service-icon  {
    text-align: center;
}

.service-icon p {
    margin-top: 10px;
}
@media(max-width:600px) {
    .service-icon p {
        padding:15px;
        margin: 0;
    }
}

.work {
    background-color: aliceblue;
}
.work-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
}
.work-content {
    width: 50%;
    text-align: center;

}

.work-content img {
    width: 75%;
    height: auto;
    border-radius: 35px;
}
.work-content p {
    padding: 15px 0;
}
.contact {
    text-align: center;
}
.contact p {
    text-align: center;
    font-size: 16px;
}
iframe {
    
	padding-bottom: 20px;
	margin-bottom: 20px;
	width: 100%;
    height: 1150px;
    
}
/* footer */
footer {
    background-color: black;
}
.footer-list {
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    

}
@media(max-width:600px) {
.footer-list {
    display: none;
}

}
.copyright p {
    color: white;
    text-align: center;
    margin-top: 10px;
    padding-bottom: 10px;
}
.footer-item {
    display: flex;
    justify-content: flex-end;
    
}