.contents_wrapper{
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 0 100px 0;
}
.about_wrapper{
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 0 100px 0;
}

.section-top{
  width: 100%;
  height: 100vh;
  /* position: relative; */
  .top-wrapper{
    position: relative;
    height: 100%;

    .top-lead{
      line-height: 1.8;
      text-align: left;
      position:absolute;
      top: 50%;
      left: 100px;
      transform: translateY(-50%);
      z-index: 2;
      font-size: 5rem;
      font-family: "Outfit", "Lato", sans-serif;
      font-weight: 800;
      /* background-color: #FFF;
      opacity: .7; */
      background: rgba(255, 255, 255, 0.7);
    }
    .top-image-right{
      width: 40%;
      position: absolute;
      bottom: 0;
      right: 40px;
      img{
        width: 100%;
      }
    }
    .top-image-left{
      width: 28%;
      position: absolute;
      bottom: 50px;
      left: 25%;
      img{
        width: 100%;
      }
    }
  }
}
.section-about{
  background-color: #87CEEB;
  .about-content{
    /* max-width: 880px; */
    display: flex;
    justify-content: space-between;
  }
  .about-image{
    width: 35%;
    box-sizing: border-box;
    border: 8px solid #FFD93B;
  }
  .about-text{
    width: 60%;
  }
  img{
    width: 100%;
    height: 100%;
  }
  .name{
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .kana{
    font-weight: 700;
    margin-bottom: 24px;
  }
  .about-detail{
    text-align: left;
    line-height: 3rem;
  }
}
.section-skill{
  /* background-color: #FFE2E2; */
  background-color: #D9E2EC;
  /* padding: 80px 0 100px 0; */
  ul{
    list-style: none  ;
    display: flex;
    justify-content: space-between;

    li{
      width: 27%;
      background-color: #fff;
      padding: 60px 30px;
      border-radius: 20px;
      img{
        width: 80%;
        margin: 20px;
      }
    }
  }
  .heading{
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .summary{
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 16px;
  }
  .detail{
    text-align: left;
  }
}
.section-work{
  /* background-color: #FFFFFF ; */
  background-color: #F8F6F0;
  ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    li{
      list-style: none;
      width: 45%;
      text-align: left;
      padding: 24px;
      a{
        text-decoration: none;
        &:hover{
          opacity: 1;
        }
        &:hover img{
          transform: scale(0.97, 0.96)
        }
      }
    }
  }
  .label{
    color: #FFF;
    background-color: #2D8BB8;
    display: inline;
    padding: 8px 16px;
    border-radius: 20px;
  }
  .thumbnail{
    margin-bottom: 16px;
    background-color: #87CEEB;
    border-radius: 8px;
    line-height: 0;
    /* overflow: hidden; */
    img{
      width: 100%;
      height: auto;
      border-radius: 8px;
      transition: .2s all ease-out;
      /* border: solid 1px #111; */

    }
  }
  .title{
    margin: 16px 0;
    color: #333;
    font-size: 1.8rem;
  }
}
.section-contact{
  /* background-color: #86A788; */
  background-color: #FFD93B;
  /* color: #F8F6F0; */
  color: #1E3A5F;
  a{
    text-decoration: none;
  }
  p{
    font-size: 2rem;
    font-weight: 700;
  }
  .area{
    margin-top: 20px;
    background-color: #F8F6F0;
    border-radius: 100px;
    font-size: 4rem;
    line-height: 7.2rem;
    /* color: #FFD93B; */
    color: #1E3A5F;
    address{
      font-style: normal;
    }
  }
}
.section-product{
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  /* background-color: ; */
  h1{
    font-size: 3.7rem;
    line-height: 5rem;
    letter-spacing: .2rem;
    margin-bottom: 40px;
    padding-top: 10px;
    position: static;
  }
  .area{
    display: flex;
    justify-content: space-between;
  }
  dl{
    margin-top: 20px;
  }
  dt{
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 8px;
  }
  dd{
    margin-bottom: 20px;
  }
  .product-name{
    font-family: "Outfit", "Lato", sans-serif;
    font-size: 3.5rem;
    line-height: 5rem;
    letter-spacing: .2rem;
    padding: 10px 0 20px;
    font-weight: 800;
  }
  .product-image{
    width: 55%;
  }
  .product-content{
    width: 40%;
  }
  .product-back{
    text-decoration: none;
    .btn{
      background-color: #2D8BB8;
      color: #FFF;
      text-align: center;
      width: 200px;
      border-radius: 50px;
      margin: 100px auto 0;
      padding: 10px 0;
      font-weight: 400;
      transition: all .3s;
      &:hover{
        background-color: #fff;
        border: 1px solid #2D8BB8;
        color: #2D8BB8;
        font-weight: 500;
        letter-spacing: 0.1rem;
      }
    }
  }
  img{
    width: 100%;
  }
  a{
    /* text-decoration: none; */
    color:#87CEEB;
  }
}

/* ここからタブレット以下のCSSを記述 */
@media (max-width: 959px) {

  .about_wrapper{
    padding:40px 30px;
  }
  .contents_wrapper{
    padding:40px 30px;
  }
  .section-top{
    .top-wrapper{
      .top-lead{
        top:30%;
        font-size: 2.8rem;
        left: 40px;
      }
      .top-image-left{
        left: 22%;
        bottom: 0px;
      }
      h1{
        font-size: 2.2rem;
        line-height: 3rem;
      }
      .top-image-right{
        width: 100%;
        right: 0;
      }
    }
  }
  .section-about{
    .about-content{
      display: block;
      width: 100%;
    }
    .about-image{
      width: 100%;
      /* padding: 0 20px; */
      border-color: #87CEEB;
    }
    .about-text{
      padding-top: 30px;
      width: 100%;
    }
  }
  .section-skill{
    ul{
      display: block;
      width: 100%;
      li{
        width: 100%;
        padding: 24px 0;
        margin-top: 24px;
        margin-bottom: 24px;
      }
    }
    .summary{
      padding: 0 40px;
    }
    .detail{
      padding: 0 40px;
    }
  }
  .section-work{
    ul{
      display: block;
      width: 100%;
      li{
        width: 100%;
        padding: 24px 0;
      }
    }
  }
  .section-contact{
    .area{
      font-size: 3rem;
    }

  }
  .section-product{
    .area{
      display: block;
      padding: 10px 40px;
    }
    .product-image{
      width: 100%;
    }
    .product-name{
      font-size: 3rem;
    }
    .product-content{
      width: 100%;
      h1{
        font-size: 3.4rem;
        margin-top: 20px;
      }
      .product-back{
        .btn{
          width: 100%;
          padding: 20px 0;
          border-radius: 30px;
        }
      }
    }
  }
}