.more
{
  
  display: flex;
  a
  {
    padding:8px 40px;
    background-color: $main-color;
    color:#fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 1.6px;
    border-radius: 50px;
    transition-duration:.5s;
    &:hover
    {
      color:$main-color;
      background-color: #FFECBE;
    }
  }
}

header
{
  margin-bottom:60px;
  picture
  {
    display: block;
    width: 100%;
    img
    {
      display: block;
      width: 100%;
    }
  }
  >div
  {
    position: relative;
    .content
    {
      position: absolute;
      top:0px;
      left:0px;
      width: 100%;
      height:100%;
      display: flex;
      justify-content:center;
      align-items:center;
      color:#fff;
      text-align: center;
      >div
      {
        h1
        {
          span
          {
            display: block;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px; /* 150% */
            letter-spacing: 1.6px;
          }
          font-size: 42px;
          font-weight: 500;
          line-height: 63px; /* 150% */
          letter-spacing: 4.2px;
          
        }
        p
        {
          font-size: 20px;
          font-weight: 400;
          line-height: 30px; /* 150% */
          letter-spacing: 2px;
          padding-bottom:20px;
          margin-bottom:20px;
          border-bottom: 1px solid #fff;
        }
      }
    }
  }
}

#why
{
  margin-bottom:80px;
  .header
  {
    margin-bottom:20px;
    h2
    {
      font-size: 42px;
      font-weight: 500;
      line-height: 63px; /* 150% */
      letter-spacing: 4.2px;
      padding-bottom:20px;
      border-bottom:1px solid #ededed;
      margin-bottom:20px;
    }
    h3
    {
      font-size: 20px;
      font-weight: 400;
      line-height: 30px; /* 150% */
      letter-spacing: 2px;
      color:$main-color;
      margin-bottom:20px;
    }
    p
    {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px; /* 150% */
      letter-spacing: 1.6px;
    }
  }
  .article-list
  {
    .article
    {
      position: relative;
      overflow: hidden;
      color:#fff;
      border-radius: 20px;
      margin-bottom:20px;
      >div
      {
        i
        {
          display: block;
          font-size:42px;
          margin-bottom:5px;
        }
        h2
        {
          font-size: 32px;
          font-weight: 400;
          line-height: 48px; /* 150% */
          letter-spacing: 3.2px;
          padding-bottom:15px;
          margin-bottom:15px;
          border-bottom:1px solid #fff;          
        }
        p
        {
          font-size: 16px;
          font-weight: 400;
          line-height: 24px; /* 150% */
          letter-spacing: 1.6px;
        }
        position: relative;
        z-index:1;
        text-align: center;
        padding:10%;
      }
      picture
      {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        display: block;
        width: 100%;
        img
        {
          display: block;
          width: 100%;
        }
      }
    }
  }
  @media(min-width:980px)
  {
    display: flex;
    align-items:flex-start;
    .header
    {
      width: 28%;
      padding-right:2%;
    }
    .article-list
    {
      flex:1;
    }
  }
  @media(min-width:768px)
  {
    .article-list
    {

      display: flex;
      .article
      {
        flex:1;
        margin:0 10px;
        &:last-child
        {
          margin-right:0px;
        }
        &:first-child
        {
          margin-left:0px;
        }
      }
    }
  }
}

#help
{
  margin-bottom:80px;
  h2
  {
    font-size: 42px;
    font-weight: 500;
    line-height: 63px; /* 150% */
    letter-spacing: 4.2px;
    margin-bottom:40px;
  }
  .article-list
  {
    margin-bottom:40px;
    .article
    {
      position: relative;
      
      color:#fff;
      overflow: hidden;
      >div,p
      {
        transition-duration:.5s;
        position: absolute;
        top:0px;
        left:0px;
        padding:pxvw(100) pxvw(30);
        height:100%;
        width:100%;
      }
      >div
      {
        text-align: center;
        i
        {
          font-size:pxvw(100);
          display: block;
          margin-bottom:24px;
        }
        h3
        {
          font-size: pxvw(32);
          font-weight: 400;
          line-height: 48px; /* 150% */
          letter-spacing: 3.2px;
        }
      }
      >p
      {
        top:-100%;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px; /* 150% */
        letter-spacing: 1.6px;
      }
      picture
      {
        display: block;
        width:100%;
        overflow: hidden;
        border-radius: 20px;
        img
        {
          display: block;
          width:100%;
        }
      }
      &:hover
      {
        >div
        {
          top:-100%;
        }
        p
        {
          top:0;
        }
      }
    }
  }
  .more
  {
    justify-content:center;
  }
  @media(min-width:768px)
  {
    .article-list
    {
      display: flex;
      .article
      {
        flex:1;
        margin:0 10px;
        &:first-child
        {
          margin-left:0px;
        }
        &:last-child{
          margin-right:0px;
        }
      }
    }
  }
  @media(max-width:767px)
  {
    .article-list
    {
      display: flex;
      flex-wrap:wrap;
      .article
      {
        width: calc(50% - 10px);
        margin:0 10px 20px 10px;
        &:nth-child(2n)
        {
          margin-right:0px;
        }
        &:nth-child(2n + 1)
        {
          margin-left:0px;
        }
        >div
        {
          i
          {
            font-size:80px;
          }
          h3
          {
            font-size: 20px;
            font-weight: 400;
            line-height: 30px; /* 150% */
            letter-spacing: 2px;
          }
        }
      }
    }
  }
}


#service
{
  background-image: url('<?=userimg($service->photo->data)?>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top:100px;
  padding-bottom:100px;
  margin-bottom:80px;
  text-align:center;
  color:#fff;
  display: flex;
  justify-content:center;

  h2
  {
    font-size: 42px;
    font-weight: 500;
    line-height: 63px; /* 150% */
    letter-spacing: 4.2px;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #fff;
    span
    {
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px; /* 150% */
      letter-spacing: 1.6px;
      display: block;
      margin-bottom:5px;
    }
  }
  p
  {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px; /* 150% */
    letter-spacing: 2.4px;
    margin-bottom:20px;
  }

  .btn
  {
    display: flex;
    justify-content:center;
    a
    {
      width:70px;
      height:70px;
      background-color: #fff;
      border-radius: 100%;
      color:$text-color;
      text-align: center;
      line-height:70px;
      transition-duration:.5s;
      &:hover
      {
        background-color: $main-color;
        color:#fff;
      }
    }
  }
}

#note
{
  margin-bottom:80px;
  .header
  {
    margin-bottom:80px;
    h2
    {
      text-align: center;
      padding-bottom:20px;
      margin-bottom:60px;
      color:$main-color;
      font-size: 42px;
      font-weight: 500;
      line-height: 63px; /* 150% */
      letter-spacing: 4.2px;
    }
    .row
    {
      picture
      {
        display: block;
        width: 100%;
        margin-bottom:20px;
        img
        {
          margin:auto;
          display: block;
          max-width: 100%;
        }
      }
      >div
      {
        h3
        {
          font-size: 20px;
          font-weight: 400;
          line-height: 30px; /* 150% */
          letter-spacing: 2px;
          color:$text-color;
          margin-bottom:30px;
        }
        p
        {
          color:#898989;
          font-size: 16px;
          font-weight: 400;
          line-height: 24px; /* 150% */
          letter-spacing: 1.6px;
        }
      }
    }
  }
  dl
  {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
    letter-spacing: 2px;
    color:$text-color;
    display: flex;
    dt
    {
      padding-bottom:20px;
      margin-bottom:20px;
      border-bottom:1px solid #FFECBE;
    }
    dd
    {
      flex:1;
      padding-bottom:20px;
      margin-bottom:20px;
      border-bottom:1px solid #EDEDED;
    }
  }
  @media(min-width:768px)
  {
    .header
    {
      display: flex;
      justify-content:center;
      >div
      {
        .row
        {
          width:700px;
          margin:auto;
          display: flex;
          picture
          {
            width: 50%;
          }
          >div
          {
            width: 50%;
          }
        }
      }
    }
    dl
    {
      dt
      {
        width: 18.75%;
      }
    }
  }
  @media(max-width:767px)
  {
    dl
    {
      dt
      {
        width: 100px;
      }
    }
  }
}


#feedback
{
  margin-bottom:80px;
}