/* ----------------------------------
  Top
---------------------------------- */
.top {
  /*  mv
  --------------------------------*/
  .mv {
    position: relative;
    width: 100%;
    text-align: left;
    img {
      width: 100%;
    }
  }
  .mv__img {
    display: block;
    width: calc(100% - 100px);
    margin: 0 0 0 auto;
    @media screen and (max-width: 820px){
      width: 100%;
    }
  }
  .mv__text {
    position: absolute;
    top: 30%;
    left: 0;
    @media screen and (max-width: 820px){
      top: 15%;
    }
  }
  .mv__line {
    margin: 0 0 30px;
    span {
      display: inline-block;
      padding: 30px 80px 30px 120px;
      background-color: rgba(67, 124, 37, 0.7);
      font-family: "Noto Serif JP", serif;
      color: #dedede;
      font-size: 3.6rem;
      font-weight: 600;
      @media screen and (max-width: 820px){
        padding: 20px 30px 20px 60px;
        font-size: 1.8rem;
      }
    }
  }
}

/*  Mv fadeIn
--------------------------------*/
.mv__img {
  animation: 2.5s mvfadeIn forwards;
}
@keyframes mvfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*  News
--------------------------------*/
.topNews {
  position: relative;
  margin: 0 auto 140px;
  padding: 120px 0 0;
  @media screen and (max-width: 820px){
    margin: 0 auto 80px;
    padding: 80px 0 0;
  }
  .topNews__inner {
    display: flex;
    justify-content: space-between;
    max-width:var(--mwith);
    width: 100%;
    margin: 0 auto;
    @media screen and (max-width: 820px){
      flex-direction: column;
      padding: 0 4%;
    }
  }
  .topNews__block {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50%;
    @media screen and (max-width: 820px){
      display: block;
      width: 100%;
      margin: 0 0 20px;
      text-align: center;
      .btnMore {
        display: none;
      }
    }
  }
  .topNews__title {
    margin: 0 0 60px;
    color: var(--color01);
    font-weight: var(--fwsb);
    font-size: 8rem;
    text-align-last: left;
    line-height: 1;
    @media screen and (max-width: 820px){
      margin: 0 0 30px;
      font-size: 4rem;
      text-align: center;
    }
    span {
      display: block;
      margin: 20px 0 0;
      color: var(--color02);
      font-weight: var(--fwm);
      font-size: 2rem;
      @media screen and (max-width: 820px){
        font-size: 1.4rem;
      }
    }
  }
  .topNews__list {
    width: 50%;
    text-align-last: left;
    @media screen and (max-width: 820px){
      width: 100%;
      margin: 0 0 30px;
    }
    li {
      width: 90%;
      margin: 0 0 24px;
      @media screen and (max-width: 820px){
        width: 100%;
      }
    }
    a {
      position: relative;
      display: block;
      padding: 15px 80px 25px 20px;
      border-radius: 3px;
      box-shadow: 0px 3px 6px rgba(72, 72, 72, 0.16);
      background: #fff;
      font-size: 1.6rem;
      &::after {
        position: absolute;
        top: 35%;
        right: 20px;
        content: "";
        width: 30px;
        height: 30px;
        background-image: url(../img/common/icon-arrow01.svg);
        background-repeat: no-repeat;
        background-size: cover;
      }
    }
    .date {
      display: block;
      margin: 0 0 15px;
      color: var(--color01);
      font-size: 1.4rem;
    }
  }
  .btnMore {
    margin: 0 0 0 -30px;
    @media screen and (max-width: 820px){
      margin: 0 auto;
    }
  }

}

/*  topProduct
--------------------------------*/
.topProduct {
  margin: 0 0 100px;
  @media screen and (max-width: 820px){
    margin: 0 0 60px;
  }
  .topProduct__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    max-width: var(--mwith);
    margin: 0 auto;
    @media screen and (max-width: 820px){
      flex-direction: column;
    }
    &::after {
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      right: 0;
      content: "";
      width: 75%;
      height: 100%;
      margin: 0 0 0 auto;
      border-radius: 3px;
      background: #e1e5e4;
      @media screen and (max-width: 820px){
        width: 96%;
      }
    }
  }
  .topProduct__img {
    width: 50%;
    margin: -40px 0 0;
    @media screen and (max-width: 820px){
      width: 100%;
      margin: 0 0 30px;
    }
  }
  .topProduct__block {
    width: 50%;
    padding: 50px 35px 100px;
    text-align: left;
    @media screen and (max-width: 820px){
      width: 100%;
      padding: 0 8% 60px;
    }
  }
  .topProduct__title{
    margin: 0 0 40px;
    h2 {
      position: relative;
      margin: 0 0 -17px;
      padding: 0 0 10px;
      border-bottom: 2px solid #fff;
      color: var(--color01);
      font-weight: var(--fwsb);
      font-size: 4rem;
      @media screen and (max-width: 820px){
        margin: 0 0 -12px;
        font-size: 2.8rem;
      }
    }
    span {
      position: relative;
      display: inline-block;
      background: #e2e5e4;
      padding: 0px 20px 0px 0;
      color: var(--color03);
      font-size: 2rem;
      @media screen and (max-width: 820px){
        padding: 0px 10px 0px 0;
        font-size: 1.4rem;
      }
    }
  }
  .topProduct__text {
    width: 70%;
    margin: 0 auto 60px;
    font-size: 1.6rem;
    line-height: 2;
    @media screen and (max-width: 820px){
      width: 80%;
      margin: 0 auto 40px;
      font-size: 1.4rem;
    }
  }
}

/*  topService
--------------------------------*/
.topService {
  margin: 0 0 100px;
  @media screen and (max-width: 820px){
    margin: 0 0 60px;
  }
  .topService__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    max-width: var(--mwith);
    margin: 0 auto;
    @media screen and (max-width: 820px){
      flex-direction: column;
    }
    &::after {
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      right: 0;
      content: "";
      width: 75%;
      height: 100%;
      margin: 0 auto 0 0;
      border-radius: 3px;
      background: #e1e5e4;
      @media screen and (max-width: 820px){
        width: 96%;
      }
    }
  }
  .topService__img {
    width: 50%;
    margin: -40px 0 0;
    @media screen and (max-width: 820px){
      width: 100%;
      margin: 0 0 30px;
    }
  }
  .topService__block {
    width: 50%;
    padding: 50px 35px 100px;
    text-align: left;
    @media screen and (max-width: 820px){
      width: 100%;
      padding: 0 8% 60px;
    }
  }
  .topService__title{
    margin: 0 0 40px;
    h2 {
      position: relative;
      margin: 0 0 -17px;
      padding: 0 0 10px;
      border-bottom: 2px solid #fff;
      color: var(--color01);
      font-weight: var(--fwsb);
      font-size: 4rem;
      @media screen and (max-width: 820px){
        margin: 0 0 -12px;
        font-size: 2.8rem;
      }
    }
    span {
      position: relative;
      display: inline-block;
      background: #e2e5e4;
      padding: 0px 20px 0px 0;
      color: var(--color03);
      font-size: 2rem;
      @media screen and (max-width: 820px){
        padding: 0px 10px 0px 0;
        font-size: 1.4rem;
      }
    }
  }
  .topService__text {
    width: 70%;
    margin: 0 auto 60px;
    font-size: 1.6rem;
    line-height: 2;
    @media screen and (max-width: 820px){
      width: 80%;
      margin: 0 auto 40px;
      font-size: 1.4rem;
    }
  }
}

/*  topBanner
--------------------------------*/
.topBanner {
  display: flex;
  justify-content: space-between;
  max-width: var(--mwith);
  margin: 0 auto 120px;
  @media screen and (max-width: 820px){
    margin: 0 auto 80px;
  }
  @media screen and (max-width: 640px){
    flex-direction: column;
    padding: 0 4%;
  }
  .topBanner__panel {
    width: 50%;
    padding: 60px;
    @media screen and (max-width: 640px){
      width: 100%;
      margin: 0 0 20px;
      padding: 30px 8%;
    }
    text-align: left;
    &.-about {
      border-radius: 3px 0 0 3px;
      background: var(--color03);
      color: #fff;
      @media screen and (max-width: 640px){
        border-radius: 3px;
      }
    }
    &.-after {
      border-radius: 0 3px 3px 0;
      background: #fff;
      color: var(--color03);
      @media screen and (max-width: 640px){
        border-radius: 3px;
      }
    }
  }
  .topBanner__title {
    margin: 0 0 24px;
    font-weight: var(--fwsb);
    font-size: 4rem;
    @media screen and (max-width: 640px){
      font-size: 2.2rem;
    }
    span {
      display: block;
      margin: 0 0 20px;
      font-weight: var(--fwm);
      font-size: 2rem;
      @media screen and (max-width: 640px){
        font-size: 1.4rem;
      }
    }
  }
  .topBanner__more {
    position: relative;
    display: inline-block;
    padding: 0 20px 5px 0;
    font-weight: var(--fwm);
    font-size: 2rem;
    @media screen and (max-width: 640px){
      font-size: 1.4rem;
    }
    &::after {
      position: absolute;
      bottom: 0;
      left: 0;
      content: "";
      width: 100%;
      height: 1px;
      background: #fff;
      transform-origin: left top;
      transform: scale(1, 1);
      transition: transform .3s;
    }
  }
  .-after .topBanner__more::after {
    background: var(--color03);
  }
 .topBanner__panel:hover .topBanner__more::after {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}

.topClient {
  margin: 0 0 120px;
  @media screen and (max-width: 820px){
    margin: 0 0 80px;
  }
  .topClient__title {
    color: var(--color01);
    font-weight: var(--fwsb);
    font-size: 4rem;
    @media screen and (max-width: 820px){
      font-size: 2.2rem;
    }
  }
}

/* ----------------------------------
  about
---------------------------------- */
.about {
  .detail {
    max-width: var(--mwith);
    margin: 0 auto 120px;
    @media screen and (max-width: 820px){
      margin: 0 auto 80px;
      padding: 0;
    }
  }
  .detail__head {
    position: relative;
  }
  .detail__img {
    width: 80%;
    margin: 0 auto 0 0;
    @media screen and (max-width: 820px){
      width: 100%;
    }
  }
  .detail__title {
    position: absolute;
    top: 40%;
    right: 0;
    display: inline-block;
    width: 640px;
    padding: 30px 85px 30px 0;
    border-radius: 1px;
    background-color: rgba(67, 124, 37, 0.7);
    color: #fff;
    font-size: 2.8rem;
    font-weight: var(--fwsb);
    text-align: right;
    @media screen and (max-width: 820px){
      width: 80%;
      top:initial;
      bottom: 20%;
      padding: 10px 10% 10px 0;
      font-size: 1.8rem;
    }
  }
  .detail__panel {
    position: relative;
    width: 70%;
    margin: -80px 0 0 auto;
    padding: 80px;
    border-radius: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: left;
    @media screen and (max-width: 820px){
      width: 92%;
      margin: -30px auto 0;
      padding: 40px 6%;
    }
    p {
      margin: 0 0 20px;
      font-size: 1.6rem;
      line-height: 2.8;
      @media screen and (max-width: 820px){
        font-size: 1.4rem;
        line-height: 1.8;
      }
    }
  }
  .message {
    max-width: var(--mwith);
    margin: 0 auto 120px;
    @media screen and (max-width: 820px){
      margin: 0 auto 80px;
      padding: 0;
    }
  }
  .message__head {
    position: relative;
  }
  .message__img {
    width: 80%;
    margin: 0 0 0 auto;
    @media screen and (max-width: 820px){
      width: 100%;
    }
  }
  .message__title {
    position: absolute;
    top: 40%;
    left: 0;
    display: inline-block;
    width: 640px;
    padding: 30px 0 30px 85px;
    border-radius: 1px;
    background-color: rgba(67, 124, 37, 0.7);
    color: #fff;
    font-size: 2.8rem;
    font-weight: var(--fwsb);
    text-align: left;
    @media screen and (max-width: 820px){
      width: 80%;
      top:initial;
      bottom: 20%;
      padding: 10px 0 10px 10%;
      font-size: 1.8rem;
    }
  }
  .message__panel {
    position: relative;
    width: 70%;
    margin: -80px auto 0 0;
    padding: 80px;
    border-radius: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: left;
    @media screen and (max-width: 820px){
      width: 92%;
      margin: -30px auto 0;
      padding: 40px 6%;
    }
    p {
      margin: 0 0 20px;
      font-size: 1.6rem;
      line-height: 2.8;
      @media screen and (max-width: 820px){
        font-size: 1.4rem;
        line-height: 1.8;
      }
    }
  }
  .overview {
    max-width: var(--mwith);
    margin: 0 auto 120px;
    text-align: left;
    @media screen and (max-width: 820px){
      margin: 0 auto 80px;
      padding: 0 4%;
    }
  }
  .overview__title {
    margin: 0 0 80px;
    color: var(--color01);
    font-weight: var(--fwsb);
    font-size: 4rem;
    @media screen and (max-width: 820px){
      margin: 0 0 30px;
      font-size: 2.2rem;
    }
    span {
      display: block;
      font-weight: var(--fwm);
      color: var(--color03);
      font-size: 2rem;
      @media screen and (max-width: 820px){
        font-size: 1.4rem;
      }
    }
  }
  .overview__table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    font-size: 1.6rem;
    @media screen and (max-width: 820px){
      display: block;
      tbody,tr {
        display: block;
      }
    }
    th {
      width: 30%;
      padding: 30px 0;
      background: var(--color03);
      color: #fff;
      font-weight: var(--fwm);
      text-align: center;
      @media screen and (max-width: 820px){
        display: block;
        width: 100%;
        padding: 20px 4%;
        text-align: left;
      }
    }
    td {
      width: 70%;
      padding: 30px 30px;
      @media screen and (max-width: 820px){
        display: block;
        width: 100%;
        padding: 20px 4%;
      }
    }
  }
}


/* ----------------------------------
  product
---------------------------------- */
.product {
  .product__block {
    padding: 100px 0;
    background: #fff;
    @media screen and (max-width: 820px){
      padding: 60px 0;
    }
    &:nth-child(odd) {
      background: #F8F8F8;
    }
  }
  .product__inner {
    max-width: var(--mwith);
    width: 100%;
    margin: 0 auto;
    padding: 0 4%;
  }
  .product__title {
    margin: 0 0 60px;
    color: var(--color01);
    font-weight: var(--fwsb);
    font-size: 3rem;
    @media screen and (max-width: 820px){
      margin: 0 0 30px;
      font-size: 2.2rem;
    }
  }
  .product__item {
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px;
    padding: 0 14px 0;
    text-align: left;
    @media screen and (max-width: 820px){
      width: 100%;
      max-width: 640px;
      margin: 0 auto 30px;
      padding: 0;
    }
    @media screen and (max-width: 640px){
      flex-direction: column;
    }
  }
  .product__img {
    width: 45%;
    margin: 0 0 20px;
    img {
      max-width: 100%;
      width: 100%;
    }
    @media screen and (max-width: 640px){
      width: 100%;
    }
  }
  .product__box {
    width: 50%;
    @media screen and (max-width: 640px){
      width: 100%;
    }
  }
  .product__name {
    margin: 0 0 10px;
    padding: 0 5px;
    font-weight: var(--fwsb);
    font-size: 1.6rem;
  }
  .product__text {
    padding: 0 5px;
    line-height: 1.8;
  }
}

/* ----------------------------------
  service
---------------------------------- */
.service {
  .service__content {
    padding: 80px 0;
    background: #fff;
    &:nth-child(odd) {
      background: #F8F8F8;
    }
  }
  .service__inner {
    position: relative;
    max-width: var(--mwith);
    margin: 0 auto;
    &::after {
      position: absolute;
      content: "";
      top: inherit;
      right: 0;
      bottom: -100px;
      left: 45%;
      width: 0px;
      border-left: 40px solid transparent;
      border-right: 40px solid transparent;
      border-top: 40px solid #6aa7cd;
      @media screen and (max-width: 820px){
        bottom: -90px;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid #6aa7cd;
      }
    }
    @media screen and (max-width: 820px){
      padding: 0 4%;
    }

  }
  .service__content:last-child .service__inner::after {
    display: none;
  }
  .service__img {
    margin: 0 0 60px;
    @media screen and (max-width: 820px){
      margin: 0 0 30px;
    }
  }
  .service__block {
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 640px){
      flex-direction: column;
    }
  }
  .service__heading {
    width: 30%;
    color: var(--color01);
    font-weight: var(--fwm);
    font-size: 3rem;
    line-height: 1;
    @media screen and (max-width: 640px){
      width: 100%;
      margin: 0 0 30px;
      font-size: 2rem;
    }
  }
  .service__text {
    width: 68%;
    text-align: left;
    font-size: 1.8rem;
    line-height: 2;
    @media screen and (max-width: 640px){
      width: 100%;
    }
    p {
      margin: 0 0 20px;
      &:last-child {
        margin: 0;
      }
    }
  }
}

/* ----------------------------------
  after
---------------------------------- */
.after {
  .after__content {
    max-width: 980px;
    margin: 0 auto 140px;
    @media screen and (max-width: 820px){
      margin: 0 auto 80px;
    }
  }
  .after__img {
    display: block;
    margin: 0 0 60px;
    @media screen and (max-width: 820px){
      margin: 0 0 40px;
    }
  }
  .after__text {
    padding: 0 20px;
    font-size: 1.8rem;
    line-height: 2;
    text-align: left;
    @media screen and (max-width: 820px){
      padding: 0 4%;
      font-size: 1.4rem;
    }
    p {
      margin: 0 0 50px;
      @media screen and (max-width: 820px){
        margin: 0 0 20px;
        br {
          display: none;
        }
      }
    }
  }
}

/* ----------------------------------
  news
---------------------------------- */
.news {
  .pageTitle__inner {
    margin: 0 auto 80px;
    padding: 120px 0;
    text-align: center;
    @media screen and (max-width: 820px){
      padding: 60px 0;
    }
  }
  .news__list {
    max-width: 880px;
    margin: 0 auto 180px;
    text-align: left;
    @media screen and (max-width: 820px){
      margin: 0 auto 100px;
      padding: 0 4%;
    }
    li {
      position: relative;
      margin: 0 0 20px;
      padding: 10px 80px 10px 0;
      border-bottom: 1px solid #ddd;
      &:hover {
        border-bottom: 1px solid var(--color01);
      }
      &::after {
        position: absolute;
        top: 35%;
        right: 20px;
        content: "";
        width: 30px;
        height: 30px;
        background-image: url(../img/common/icon-arrow01.svg);
        background-repeat: no-repeat;
        background-size: cover;
      }
    }
    .date {
      display: block;
      margin: 0 0 10px;
      padding: 0 5px;
      color: var(--color01);
      @media screen and (max-width: 820px){
        font-size: 1.2rem;
      }
    }
    .text {
      display: block;
      padding: 0 5px;
      font-size: 1.6rem;
      line-height: 1.8;
      @media screen and (max-width: 820px){
        font-size: 1.4rem;
      }
    }
  }
  .news__wrapper {
    max-width: 880px;
    margin: 0 auto;
    text-align: left;
    @media screen and (max-width: 820px){
      padding: 0 4%;
    }
  }
  .news__head {
    margin: 0 0 60px;
    @media screen and (max-width: 820px){
      margin: 0 0 40px;
    }
  }
  .news__date {
    margin: 0 0 10px;
    font-size: 1.2rem;
  }
  .news__title {
    font-weight: var(--fwsb);
    font-size: 2rem;
    line-height: 1.5;
    @media screen and (max-width: 820px){
      font-size: 1.6rem;
    }
  }
  .news__article {
    margin: 0 0 60px;
    p {
      margin: 0 0 20px;
      line-height: 1.8;
    }
    img {
      max-width: 100%;
      width: auto;
      margin-bottom: 20px;
    }
  }
  .news__back {
    margin: 0 auto 120px;
    a {
      display: block;
      width: 320px;
      margin: 20px auto;
      padding: 20px 0;
      border: none;
      border-radius: 2px;
      background:var(--color03);
      color: #fff;
      font-size: 1.6rem;
      cursor: pointer;
      @media screen and (max-width: 820px){
        width: 80%;
        font-size: 1.4rem;
      }
    }
  }
}

/* ----------------------------------
  contact
---------------------------------- */
.contact {
  .pageTitle__inner {
    margin: 0 auto 80px;
    padding: 120px 0;
    text-align: center;
    @media screen and (max-width: 820px){
      padding: 60px 0;
    }
  }
  .contact__form {
    max-width: 880px;
    margin: 0 auto 120px;
    text-align: left;
    @media screen and (max-width: 820px){
      padding: 0 4%;
    }
  }
  .form__block {
    display: flex;
    margin: 0 0 40px;
    @media screen and (max-width: 820px){
      flex-direction: column;
    }
  }

  .form__item {
    width: 35%;
    margin: 0 0 20px;
    font-size: 1.6rem;
    @media screen and (max-width: 820px){
      width: 100%;
    }
  }

  .form__inputArea {
    width: 68%;
    line-height: 1.8;
    @media screen and (max-width: 820px){
      width: 100%;
    }
  }

  .form__item .required-item {
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    padding: 5px;
    background: var(--color02);
    color: #fff;
    font-size: 1.2rem;
  }

  .form__inputArea [type="text"],.form__inputArea [type="email"],.form__inputArea [type="tel"] {
    width: 100%;
    padding: 20px;
    font-size: 1.8rem;
    border-radius: 2px;
    border: 1px solid var(--color01);
  }


  .form__inputArea [type="text"].number {
    width: 20%;
    margin-right: 10px;
  }

  .form__inputArea textarea {
    width: 100%;
    height: 300px;
    padding: 20px;
    font-size: 1.8rem;
    border-radius: 2px;
    border: 1px solid var(--color01);
  }

  .form__btn input[type="submit"] {
    display: block;
    width: 60%;
    margin: 20px auto;
    padding: 20px 0;
    border: none;
    border-radius: 2px;
    background:var(--color03);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    @media screen and (max-width: 820px){
      width: 100%;
      font-size: 1.4rem;
    }
  }

  .form__btn input[type="submit"]:hover {
    opacity: 0.8;
    transition : 0.5s;
  }


  .form__inputArea .error {
    display: block;
    margin: 5px 0 0;
    color: var(--color01);
  }


  .form__inputArea input,
  .form__inputArea textarea {
    outline: none;
  }

  .form__inputArea input:focus,
  .form__inputArea textarea:focus {
    border:  1px solid var(--color02);
    transition : 0.5s;
  }

  .btnArea {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    margin: 0px auto;
    @media screen and (max-width: 820px){
      flex-direction: column;
    }
  }

  .btnArea .form__btn input[type="submit"] {
    width: 250px;
    @media screen and (max-width: 820px){
      width: 100%;
    }
  }

  .btnArea .form__btnBack input[type="button"] {
    display: block;
    width: 250px;
    margin: 20px auto;
    padding: 20px 0;
    border: none;
    border-radius: 2px;
    background: #797979;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    @media screen and (max-width: 820px){
      width: 100%;
      font-size: 1.4rem;
    }
  }

  .btnArea .form__btnBack input[type="button"]:hover {
    opacity: 0.8;
    transition : 0.5s;
  }

  .contact__form.-confirm .form__inputArea {
    padding: 0 10px 20px;
    border-bottom: 1px solid var(--color01);
    color: #454545;
  }

  .contact__form.-confirm .contact__text {
    margin: 0 0 60px;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.8;
  }

  .form__item__notes {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

/*  Thanks
---------------------------------------------*/
.thanks {
  width: 640px;
  margin: 0 auto 120px;
  padding: 0 0 80px;
  text-align: center;
  @media screen and (max-width: 640px){
    width: 100%;
    padding: 0 4%;
  }
}

.thanks__title {
  margin: 0 0 30px;
  font-size: 3rem;
  font-weight: bold;
  @media screen and (max-width: 640px){
    font-size: 2rem;
  }
}

.thanks__text {
  font-size: 2.4rem;
  @media screen and (max-width: 640px){
    font-size: 1.4rem;
  }
}

.thanks__text p {
  margin: 0 0 30px;
  line-height: 1.8;
}

.thanks__back {
  font-size: 1.6rem;
}

.thanks__back a {
  color: #2d6c48;
  text-decoration: underline;
}

.thanks__back a:hover {
  text-decoration: none;
}