html{
/*  font-family: "Dancing Script", cursive;*/
  font-family: "Noto Sans JP", sans-serif;
/*  font-family: "Poppins", sans-serif; */
/*
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
*/
}

.pop {font-family: "Poppins", sans-serif;}

.container-1{
  width: 90%;
  max-width: 1120px;
  background-color: #a9a9a9;
  margin: 0 auto;
  position: relative;  
}

.container {width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;  
}

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

/*ヘッダー*/
header {
   padding: 27px 0;
}

.logo {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.logo span {
    color: lightpink;
}
.header_menu li {
    margin-left: 40px;
}
.header_menu li a {
    transition: .3s;
}
.header_menu li a:hover {
    color: lightpink;
    transition: .3s;
}

@media only screen and (max-width:768px) {
    header .container {
        justify-content: center;
    }
    .header_menu li {
    margin: 10px 5px 0;
}
}

/*メイン*/
#hero {
 background-image: url(../images/pexels-pixabay-257904.jpg);
 background-position: center;
 background-size: cover;
 max-width: 1120px;
 margin: 0 auto;
 height: 540px;　
 width: 800px;
 border-radius: 30px;
 display: flex;
 align-items: center;
 margin-bottom: 90px;
}
#hero::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000000;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: 1;
}

.hero_inner {
  z-index: 2;
  color: white;
  width: 100%;
  text-align: center;
}
.hero_inner h1 {
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
}

@media only screen and (max-width:768px) {
    #hero {height: 300px;}
    .hero_inner h1 {font-size: 13px;}
}

/*サービス*/
#service {
    margin-bottom: 120px;
}

.title {
    font-size: 20px;
    font-weight: 400;
    color: lightpink;
    margin-bottom: 15px;
}

#service h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.column-2 {
    font-size: 16px;
    width: 48%
}
.text {
    line-height: 2;
}

.service-img {
     background-image: url(../images/pexels-donaldtong94-66134.jpg);
     background-position: center;
     background-size: cover;
     border-radius: 20px;
     height: 300px;　
}

.heading {
    font-family: "Dancing Script", cursive;
    font-size: 150px;
    font-weight: 700;
    color: lightpink;
    opacity: 0.1;
    position: absolute;
    top: 0;
    right: 0; 
    transform: translateY(-30%);
    z-index: -1;
}

@media only screen and (max-width:768px) {
    #service h3 {font-size: 20px;
    line-height: 1.5;}
    .column-2 {width: 100%}
    .text {
        font-size: 15px;
        line-height: 1.5;}
    .service-img {margin-top: 30px;}
}


/*ワークス*/
#works {
    margin-bottom: 120px;
}

.works_inner {
    margin-bottom: 40px;
}

.column-40 {
    width: 40%;
}

.column-55 {
    width: 55%;
}

#works img {
    border-radius: 20px;
}

#works h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;}
    

#works h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}


@media only screen and (max-width:768px) {
   #works h3 {
    font-size: 20px;
       margin-bottom: 10px;}
    .column-40 {width: 100%; margin-bottom: 30px;}
    .column-55 {width: 100%;}
    #works h4 {font-size: 16px;}
    #works p {
        font-size: 14px;}
}

/*カンパニー*/
#company {
    margin-bottom: 120px;
}

#company dl {
    max-width: 900px;
    margin-left: auto;
}

#company dt {
    width: 30%;
    padding: 30px 0;
    font-weight: 500;
    border-bottom: solid 1px lightpink; 
}

#company dd {
    width: 70%;
    padding: 30px 0;
    border-bottom: solid 1px lightpink; 
}

@media only screen and (max-width:768px) {
    #company dl {font-size: 12px;}
}

.img-box {
width:70%;
margin:0 auto;
text-align:center;
}


/*フッダー*/
footer {
    
    text-align: center;
    margin: 90px 0;
}

.copyright {
    font-size: 12px;
    margin-top: 0px;
}