#breadcrumb
{
  position: absolute;
  top:150px;
  right:0px;
  width: 100%;
}

header
{
  position: relative;
  margin-bottom:80px;
  >div
  {
    position: absolute;
    top:50%;
    left: 0;
    width:100%;
    text-align: center;
    transform: translate(0, -50%);
    color:#fff;
    h1
    {
      margin-bottom:24px;
      font-size: 48px;
      font-weight: 700;
      line-height: 72px; /* 150% */
      letter-spacing: 0.96px;
    }
    p
    {
      font-size: 36px;
      font-weight: 400;
      line-height: 54px; /* 150% */
      letter-spacing: 0.72px;
    }
  }
  picture
  {
    display: block;
    width: 100%;
    img
    {
      display: block;
      width: 100%;
      object-fit: cover;
    }
  }
  @media(min-width:768px)
  {
    picture
    {
      img
      {
        height:56.25vw;
      }
    }
  }
  @media(max-width:767px)
  {
    picture
    {
      img
      {
        height: 200vw;
      }
    }
    >div
    {
      h1
      {
        font-size: 36px;
        font-weight: 700;
        line-height: 54px; /* 150% */
      }
      p
      {
        font-size: 32px;
        font-weight: 400;
        line-height: 48px; /* 150% */
      }
    }
  }
}

#content
{
  h2,h3,h4,h5
  {
    padding:20px 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 150% */
    letter-spacing: 0.48px;
  }
  p
  {
    padding:20px 0;
  }
}

#quality
{
  margin-bottom:40px;
  article
  {
    padding:32px;
    margin-bottom:40px;
    background-color: #F7F7F7;
    display: flex;
    flex-direction:column;
    align-items:center;
    i
    {
      display: flex;
      justify-content:center;
      align-items:center;
      width: 100px;
      height:100px;
      border-radius: 100%;
      text-align: center;
      border:2px solid $main-color;
      color:$main-color;
      background-color: #fff;
      font-size:32px;
      margin-bottom:40px;
    }
    h2
    {
      font-size: 24px;
      font-weight: 400;
      line-height: 36px; /* 150% */
      letter-spacing: 0.48px;
      margin-bottom:40px;
    }
  }
  @media(min-width:768px)
  {
    display: flex;
    article
    {
      padding:4%;
      flex:1;
      margin:2%;
      &:first-child
      {
        margin-left:0px;
      }
      &:last-child
      {
        margin-right:0px;
      }
    }
  }
}

#service
{
  h2
  {
    font-size: 36px;
    font-weight: 700;
    line-height: 54px; /* 150% */
    letter-spacing: 0.72px;
    margin-bottom:72px;
    text-align: center;
  }
  .article-list
  {
    article
    {
      padding-top:32px;
      padding-bottom:56px;
      h3
      {
        font-size: 18px;
        font-weight: 400;
        line-height: 28px; /* 155.556% */
        letter-spacing: 0.36px;
        margin-bottom:40px;
      }
    }
  }
  @media(min-width:768px)
  {
    .article-list
    {
      display: flex;
      article
      {
        flex:1;
        width:45%;
        margin:0 5%;
        &:nth-child(2n)
        {
          margin-right:0;
        }
        &:nth-child(2n + 1)
        {
          margin-left: 0;
        }
      }
    }
  }
}
#history
{
  @media(max-width:767px)
  {
    padding:0px;
  }
  picture
  {
    margin-bottom:60px;
    display: block;
    img
    {
      display: block;
      width: 100%;
    }
  }
  >div
  {
    padding:56px 24px;
    background-color: #F7F7F7;
    h2
    {
      margin-bottom:32px;
      font-size: 36px;
      font-weight: 700;
      line-height: 54px; /* 150% */
      letter-spacing: 0.72px;
    }
    .dl-list
    {
      overflow-y:auto;
      display: flex;
      dl
      {
        min-width:260px;
        padding-right:20px;
        padding-top:40px;
        padding-bottom:40px;
        dt
        {
          font-size: 24px;
          font-weight: 700;
          line-height: 36px; /* 150% */
          letter-spacing: 0.48px;
          color:$main-color;
          margin-bottom:8px;
        }
        dd
        {
          font-size: 16px;
          font-weight: 400;
          line-height: 24px; /* 150% */
          letter-spacing: 0.32px;
        }
      }
    }
  }
  
}