@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  background: #FEF9DD;
}

.body_active {
  overflow: hidden;
}

img {
  vertical-align: bottom;
}

header {
  background: #EEDBAB;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
header h1 {
  margin-right: auto;
}
header h1 img {
  width: 127px;
  padding: 11px 0px;
  margin: 0px 138px 0px 20px;
  vertical-align: bottom;
}
@media screen and (min-width: 1130px) {
  header {
    /* ここにPC向けのCSS指定 */
    height: 120px;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  header h1 {
    margin: 25px 0px 25px 150px;
  }
  header h1 img {
    width: 241px;
    padding: 0px;
    margin: 0;
  }
}

.share_btn img {
  margin-top: 20px;
  width: 18px;
}
@media screen and (min-width: 1130px) {
  .share_btn {
    /* ここにPC向けのCSS指定 */
    display: none;
  }
}

.share_btn.active2 {
  margin-right: 22px;
}
.share_btn.active2 img {
  margin-top: 20px;
  width: 18px;
}

nav {
  margin: 0px 20px 0px 30px;
}
@media screen and (min-width: 1130px) {
  nav {
    /* ここにPC向けのCSS指定 */
    margin: 0;
  }
}

.menu-nav {
  position: fixed;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  background: #EEDBAB;
  z-index: 20;
  padding: 60px 20px 50px 30px;
  transition: all 1s;
}
.menu-nav ul {
  list-style: none;
  padding-left: 20px;
  border-top: solid 2px #846805;
}
.menu-nav li {
  text-align: right;
  font-size: 1.5rem;
  padding: 14px 0px 1px 30px;
  border-bottom: solid 1px #846805;
}
.menu-nav li a {
  display: block;
  text-decoration: none;
  color: #333;
}
@media screen and (min-width: 1130px) {
  .menu-nav {
    /* ここにPC向けのCSS指定 */
    position: static;
    padding: 0;
    margin: 0px 150px 0px 0px;
    transition: none;
  }
  .menu-nav ul {
    border: none;
    padding: 0;
  }
  .menu-nav li {
    display: inline-block;
    padding: 50px 0px 40px 30px;
    font-size: 1.6rem;
    border: none;
  }
}

.menu-nav.panelactive {
  transition: all 0.4s;
  right: 0;
}

.openbtn1 {
  position: relative;
  top: 20px;
  width: 22px;
  height: 17px;
  z-index: 30;
}
.openbtn1 span {
  display: inline-block;
  position: absolute;
  height: 2px;
  background: #734400;
  width: 100%;
  transition: all 0.4s;
}
.openbtn1 span:nth-of-type(1) {
  top: 0px;
}
.openbtn1 span:nth-of-type(2) {
  top: 7px;
}
.openbtn1 span:nth-of-type(3) {
  top: 14px;
}
@media screen and (min-width: 1130px) {
  .openbtn1 {
    /* ここにPC向けのCSS指定 */
    display: none;
  }
}

.openbtn1.active {
  right: 20px;
  position: fixed;
}
.openbtn1.active span:nth-of-type(1) {
  top: 2px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

.hamburger-cover.active {
  transition: all 0.4s;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: #000;
  opacity: 0.5;
  display: block;
}

.froating-button {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background-color: #C60030;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}
.froating-button p {
  display: none;
}
.froating-button img {
  width: 36px;
  margin-top: 22px;
  margin-left: 25px;
}
@media screen and (min-width: 900px) {
  .froating-button {
    width: 154px;
    height: 154px;
    border-radius: 154px;
    text-align: center;
    bottom: 50px;
    right: 150px;
    padding: 0;
    margin: 0;
  }
  .froating-button img {
    margin: 0;
    width: 50px;
    padding: 26px 0px 0px 5px;
  }
  .froating-button a {
    text-decoration: none;
  }
  .froating-button p {
    padding: 10px 0px 0px 0px;
    display: block;
    color: #FFF;
    line-height: 150%;
  }
}

.box {
  position: relative;
  text-align: center;
}

.sns-nav {
  display: none;
}
@media screen and (min-width: 1130px) {
  .sns-nav {
    /* ここにPC向けのCSS指定 */
    display: block;
    position: absolute;
    right: 150px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 19;
    border-radius: 0px 0px 20px 20px;
  }
  .sns-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0px 10px;
  }
  .sns-nav li {
    padding: 10px;
  }
  .sns-nav li img {
    width: 40px;
  }
  .sns-nav li .instagram {
    padding-top: 3px;
    width: 35px;
  }
}

.sns-nav.active {
  display: block;
  position: absolute;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 19;
  border-radius: 0px 0px 20px 20px;
}
.sns-nav.active ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0px 10px;
}
.sns-nav.active li {
  padding: 10px;
}
.sns-nav.active li img {
  width: 40px;
}
.sns-nav.active li .instagram {
  padding-top: 3px;
  width: 35px;
}
@media screen and (min-width: 1130px) {
  .sns-nav.active {
    /* ここにPC向けのCSS指定 */
    display: none;
  }
}

.section-top_image {
  z-index: 0;
  background-size: cover;
  padding: 52px 20px;
  text-align: center;
  background-image: url("../img/top-bg.jpg");
}
.section-top_image img {
  margin: 0 auto;
  max-height: 300px;
}
@media screen and (min-width: 768px) {
  .section-top_image {
    height: 600px;
    background-size: cover;
    padding: 127px 0px;
  }
  .section-top_image img {
    margin: 0 auto;
    max-height: 315px;
  }
}

.section-trial_title-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .section-trial_title-pc {
    display: block;
  }
}

.section-trial_title-sp {
  display: block;
}
@media screen and (min-width: 899px) {
  .section-trial_title-sp {
    display: none;
  }
}

.section-reason_title-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-reason_title-pc {
    display: block;
  }
}

.section-reason_title-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .section-reason_title-sp {
    display: none;
  }
}

.section-farmers_title-pc {
  display: none;
}
@media screen and (min-width: 1110px) {
  .section-farmers_title-pc {
    display: block;
  }
}

.section-farmers_title-sp {
  display: block;
}
@media screen and (min-width: 1110px) {
  .section-farmers_title-sp {
    display: none;
  }
}

.section-organic_title-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-organic_title-pc {
    display: block;
  }
}

.section-organic_title-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .section-organic_title-sp {
    display: none;
  }
}

.section-review_title-pc {
  display: none;
}
@media screen and (min-width: 600px) {
  .section-review_title-pc {
    display: block;
  }
}

.section-review_title-sp {
  display: block;
}
@media screen and (min-width: 600px) {
  .section-review_title-sp {
    display: none;
  }
}

.br-switch_on {
  display: none;
}
@media screen and (min-width: 600px) {
  .br-switch_on {
    display: block;
  }
}

.br-switch_off {
  display: block;
}
@media screen and (min-width: 600px) {
  .br-switch_off {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .section-top_title-sp {
    display: none;
  }
}

.section-top_title-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-top_title-pc {
    display: block;
  }
}

.section-top_description {
  height: 375px;
  background-size: cover;
  background-image: url("../img/discription-bg.png");
  text-align: center;
  padding: 35px 20px 0px 20px;
  margin-bottom: 50px;
}
.section-top_description p {
  padding-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .section-top_description {
    height: 525px;
    padding: 75px 0px 127px 0px;
    font-size: 2.2rem;
  }
  .section-top_description p {
    width: 558px;
    margin: 0 auto;
  }
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.section-reason_reason ul {
  list-style: none;
  margin-bottom: 90px;
}
.section-reason_reason li {
  position: relative;
  margin: 70px 20px 0px 20px;
}
.section-reason_reason h2 {
  padding: 0px 20px;
}
@media screen and (min-width: 400px) {
  .section-reason_reason li {
    margin: 0;
    margin: 0 40px;
    margin-top: 70px;
  }
  .section-reason_reason h2 {
    padding: 0 50px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 800px) {
  .section-reason_reason {
    margin: 100px 150px 160px 150px;
  }
  .section-reason_reason ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section-reason_reason li {
    width: 343px;
    margin: 70px 20px 0px 0px;
    padding: 0;
    padding-bottom: 70px;
  }
  .section-reason_reason li:last-child {
    margin-right: 0;
  }
  .section-reason_reason h2 {
    max-width: 930px;
    margin: 0 auto;
  }
}

.reason-no {
  background: #3D7A13;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  line-height: 60px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .reason-no {
    width: 85px;
    height: 85px;
    font-size: 4rem;
    line-height: 85px;
  }
}

.reason-text {
  border: 7px solid #3D7A13;
  border-radius: 20px;
  background: #FFF;
}
.reason-text h3 {
  font-size: 2.4rem;
  text-align: center;
  padding-top: 55px;
  margin-bottom: 25px;
}
.reason-text p {
  padding: 0px 40px 40px 40px;
  line-height: 180%;
  font-size: 1.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .reason-text h3 {
    font-size: 3rem;
    padding-top: 84px;
    margin-bottom: 40px;
    font-weight: 400;
  }
  .reason-text p {
    font-size: 1.6rem;
    line-height: 180%;
    padding: 0px 40px 50px 40px;
  }
}

.section-trial {
  box-sizing: border-box;
  margin: 0px 30px;
  color: #565656;
  background: #E58B21;
  box-shadow: 0px 0px 0px 10px #E58B21;
  border: solid 2px #FFF;
  border-radius: 20px;
  margin-bottom: 90px;
  color: #FFF;
}
.section-trial ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-trial h2 {
  padding: 40px 20px 13px 20px;
  max-width: 385px;
  margin: 0 auto;
}
.section-trial li {
  text-align: center;
  margin-bottom: 30px;
}
.section-trial li h3 {
  padding-top: 15px;
  line-height: 180%;
}
.section-trial li a {
  text-decoration: none;
}
@media screen and (min-width: 900px) {
  .section-trial {
    margin: 0px 160px 170px 160px;
    box-shadow: 0px 0px 0px 15px #E58B21;
    border: solid 5px #FFF;
  }
  .section-trial h2 {
    padding: 45px 50px 20px 50px;
    margin: 0 auto;
    max-width: 910px;
  }
}
.section-trial ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-trial li {
  margin: 0px 40px 30px 40px;
  width: 430px;
}
.section-trial li h3 {
  font-size: 2rem;
  padding-top: 35px;
}

.section-trial_conversion {
  font-size: 1.8rem;
  background: #3D7A13;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 15px 23px 14px 47px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #FFF;
  border-radius: 100vh;
  border-bottom: 6px solid #366D10;
}
.section-trial_conversion img {
  height: 15px;
  margin: 0 0 5px 10px;
}
@media screen and (min-width: 768px) {
  .section-trial_conversion {
    font-size: 2.6rem;
    padding: 19px 30px 15px 63px;
  }
  .section-trial_conversion img {
    height: 20px;
    margin: 0 0 9px 16px;
  }
}

.section-trial_photo {
  padding: 0px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-trial_photo {
    padding: 0;
  }
}

.section-trial_badge {
  position: absolute;
  top: 15px;
  right: 35px;
  width: 18%;
}
@media screen and (min-width: 768px) {
  .section-trial_badge {
    right: 15px;
  }
}

.section-trial_img {
  box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.25);
}

.section-trial_price {
  font-size: 1.2rem;
  padding: 5px 0px;
}
.section-trial_price span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .section-trial_price {
    font-size: 1.6rem;
    padding: 0px;
  }
  .section-trial_price span {
    font-size: 3.4rem;
  }
}

.setion-trial_producer {
  font-size: 1.2rem;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .setion-trial_producer {
    font-size: 1.4rem;
    padding-bottom: 21px;
  }
}

.section-farmers ul {
  list-style: none;
  margin-bottom: 15px;
}
.section-farmers li {
  margin: 0px 20px 65px 20px;
}
.section-farmers h2 {
  padding: 0 20px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (min-width: 700px) {
  .section-farmers h2 {
    padding: 0 150px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .section-farmers ul {
    display: flex;
    justify-content: center;
    margin-bottom: 160px;
  }
  .section-farmers li {
    width: 355px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1110px) {
  .section-farmers ul {
    display: block;
    margin-bottom: 160px;
  }
  .section-farmers h2 {
    max-width: 620px;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 65px;
  }
  .section-farmers li {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
  }
  .section-farmers li:nth-child(2) {
    flex-direction: row-reverse;
    margin: 0;
  }
}

.section-farmers_photo-1st {
  padding: 0px;
  background: linear-gradient(180deg, #FEF9DD 0%, #FEF9DD 50%, #FFF 50%, #FFF 100%);
}
.section-farmers_photo-1st img {
  vertical-align: bottom;
}
@media screen and (min-width: 1110px) {
  .section-farmers_photo-1st {
    background: linear-gradient(90deg, #FEF9DD 0%, #FEF9DD 50%, #FFF 50%, #FFF 100%);
  }
  .section-farmers_photo-1st img {
    width: 250px;
    height: 250px;
  }
}

.section-farmers_photo-2nd {
  padding: 0px;
  background: linear-gradient(180deg, #FEF9DD 0%, #FEF9DD 50%, #FFF 50%, #FFF 100%);
}
.section-farmers_photo-2nd img {
  vertical-align: bottom;
}
@media screen and (min-width: 1110px) {
  .section-farmers_photo-2nd {
    background: linear-gradient(90deg, #FFF 0%, #FFF 50%, #FEF9DD 50%, #FEF9DD 100%);
  }
  .section-farmers_photo-2nd img {
    width: 250px;
    height: 250px;
  }
}

.section-farmers_text-1st {
  text-align: center;
  background: #FFF;
  padding: 40px 30px;
  border-radius: 0px 0px 20px 20px;
  font-size: 1.5rem;
  height: 370px;
}
.section-farmers_text-1st h3 {
  font-size: 2rem;
  line-height: 180%;
  margin-bottom: 25px;
}
.section-farmers_text-1st h4 {
  margin-bottom: 25px;
}
.section-farmers_text-1st p {
  text-align: left;
  font-weight: 300;
}
@media screen and (min-width: 1110px) {
  .section-farmers_text-1st {
    width: 550px;
    height: 250px;
    padding: 30px 35px 30px 30px;
    border-radius: 0px 20px 20px 0px;
    font-size: 1.6rem;
  }
  .section-farmers_text-1st h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  .section-farmers_text-1st h4 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
}

.section-farmers_text-2nd {
  text-align: center;
  background: #FFF;
  padding: 40px 30px;
  border-radius: 0px 0px 20px 20px;
  font-size: 1.5rem;
  height: 370px;
}
.section-farmers_text-2nd h3 {
  font-size: 2rem;
  line-height: 180%;
  margin-bottom: 25px;
}
.section-farmers_text-2nd h4 {
  margin-bottom: 25px;
}
.section-farmers_text-2nd p {
  text-align: left;
  font-weight: 300;
}
@media screen and (min-width: 1110px) {
  .section-farmers_text-2nd {
    width: 550px;
    height: 250px;
    padding: 30px 35px 30px 30px;
    border-radius: 20px 0px 0px 20px;
    font-size: 1.6rem;
  }
  .section-farmers_text-2nd h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  .section-farmers_text-2nd h4 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
}

.section-organic {
  background-color: rgba(255, 255, 255, 0.5);
}
.section-organic h2 {
  padding: 40px 50px 30px 50px;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section-organic h2 {
    padding: 70px 100px 50px 100px;
    max-width: 955px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .section-organic h2 {
    margin: 0 auto;
  }
}

.section-organic_group {
  display: block;
}
@media screen and (min-width: 768px) {
  .section-organic_group {
    margin: 0;
    padding: 0px 150px 70px 150px;
    display: flex;
    justify-content: center;
    margin-bottom: 160px;
    align-items: center;
  }
}

.section-organic_image {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-organic_image {
    display: block;
    width: 164px;
  }
}

.section-organic_text {
  padding: 0px 20px 40px 20px;
  margin-bottom: 80px;
}
.section-organic_text p {
  font-size: 1.5rem;
  line-height: 180%;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 600px) {
  .section-organic_text {
    padding: 0 100px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  .section-organic_text {
    padding: 0px 0px 0px 70px;
    margin: 0;
  }
  .section-organic_text p {
    font-size: 1.6rem;
    line-height: 180%;
    padding-bottom: 2.5rem;
  }
  .section-organic_text p:last-child {
    padding-bottom: 0;
  }
}

.section-review h2 {
  margin: 0px 20px 40px 20px;
}
.section-review ul {
  margin-bottom: 40px;
  list-style: none;
}
.section-review li {
  background-color: #5CA850;
  border-radius: 20px;
  margin: 0px 20px 50px 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 500px) {
  .section-review h2 {
    padding: 0 100px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .section-review li {
    width: 350px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 800px) {
  .section-review {
    margin-bottom: 110px;
  }
  .section-review h2 {
    max-width: 786px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .section-review ul {
    padding: 0px 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-review li {
    width: 349px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}

.section-review_image {
  padding: 30px 20px 0px 20px;
  text-align: center;
  height: 208px;
  position: relative;
}
.section-review_image img {
  height: 178px;
}

.section-review_respondent {
  position: absolute;
  bottom: 2px;
  right: 20px;
  font-size: 1.2rem;
  color: #FFF;
}

.section-review_text {
  margin: 0px 20px;
  padding: 30px;
  background-color: #FFF;
  border-radius: 20px;
  line-height: 180%;
}
.section-review_text h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
}
.section-review_text p {
  font-size: 1.5rem;
  text-align: left;
}
@media screen and (min-width: 800px) {
  .section-review_text {
    height: 428px;
  }
}

.section-question_title {
  position: relative;
  padding-top: 9px;
  padding-bottom: 21px;
  border-radius: 20px;
  border: solid 3px #A5E79B;
  background-color: #A5E79B;
  color: #3D7A13;
  margin: 0px 30px 50px 35px;
  text-align: center;
  font-size: 2.4rem;
}
.section-question_title::before {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 3px solid #3D7A13;
  content: "";
}
.section-question_title h2 {
  line-height: 150%;
}
@media screen and (min-width: 600px) {
  .section-question_title {
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
}

.section-question {
  padding-bottom: 30px;
}
.section-question dl {
  margin: 0px 20px 50px 20px;
}
.section-question dt {
  background-color: #5CA850;
  border-radius: 20px 20px 0px 0px;
  padding: 15px 20px;
  color: #FFF;
  display: flex;
  align-items: center;
}
.section-question dd {
  background-color: #FFF;
  border: solid 4px #5CA850;
  border-top: none;
  border-radius: 0px 0px 20px 20px;
  padding: 30px;
  line-height: 180%;
  margin-bottom: 50px;
}
.section-question dd h3 {
  margin-bottom: 2rem;
  line-height: 180%;
}
.section-question dd p {
  font-size: 1.4rem;
}
@media screen and (min-width: 800px) {
  .section-question dl {
    max-width: 768px;
    margin: 0 auto;
    margin-bottom: 130px;
  }
  .section-question dt {
    padding: 15px 40px;
  }
  .section-question dd {
    border: solid 6px #5CA850;
    padding: 30px 34px;
    margin-bottom: 30px;
  }
  .section-question dd h3 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  .section-question dd p {
    font-size: 1.6rem;
  }
}

.section-question_main {
  font-size: 3rem;
  padding-right: 10px;
}

.section-question_sub {
  font-size: 1.8rem;
}
@media screen and (min-width: 800px) {
  .section-question_sub {
    font-size: 2rem;
    padding-left: 20px;
  }
}

.section-quality {
  background: #003A10;
  color: #FFF;
  text-align: center;
  line-height: 180%;
  padding: 50px 20px 130px 20px;
}
.section-quality h2 {
  font-size: 3rem;
  padding: 0px 30px 20px 30px;
  border-bottom: 3px dashed #FFF;
}
.section-quality h3 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 180%;
  margin-top: 15px;
  margin-bottom: 35px;
}
.section-quality p {
  font-size: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .section-quality h2 {
    font-size: 3rem;
    padding-bottom: 20px;
    border-bottom: 3px dashed #FFF;
    margin: 0 100px;
  }
}
@media screen and (min-width: 1300px) {
  .section-quality {
    padding: 0px 150px 115px 150px;
  }
  .section-quality h2 {
    line-height: 100%;
    font-size: 4.8rem;
    padding-top: 80px;
    margin: 0px 236px;
  }
  .section-quality h3 {
    font-size: 3.2rem;
  }
  .section-quality p {
    font-size: 1.6rem;
    padding-bottom: 1.6rem;
  }
}

.section-quality, .section-quality_text {
  position: relative;
}

.section-quality::after {
  content: "";
  display: inline-block;
  background: url(../img/quality-deco.png) 100% 100%/cover;
  height: 60px;
  width: 85px;
  vertical-align: bottom;
  position: absolute;
  right: 20px;
  bottom: 50px;
}
@media screen and (min-width: 900px) {
  .section-quality::after {
    right: 120px;
    bottom: 95px;
  }
}
@media screen and (min-width: 1300px) {
  .section-quality::after {
    height: 137px;
    width: 192px;
    right: 150px;
    bottom: 80px;
  }
}

.section-quality_text::after {
  content: "";
  display: inline-block;
  background: url(../img/quality-deco.png) 100% 100%/cover;
  height: 60px;
  width: 85px;
  transform: scale(-1, 1);
  vertical-align: bottom;
  position: absolute;
  left: 0px;
  bottom: -80px;
}
@media screen and (min-width: 900px) {
  .section-quality_text::after {
    left: 100px;
    bottom: -35px;
  }
}
@media screen and (min-width: 1300px) {
  .section-quality_text::after {
    height: 137px;
    width: 192px;
    left: 0px;
    bottom: -35px;
  }
}

footer {
  background: #EEDBAB;
  padding-top: 21px;
  text-align: center;
  height: 90px;
}
footer img {
  width: 99px;
  vertical-align: bottom;
}
footer small {
  display: block;
  font-size: 1rem;
}
@media screen and (min-width: 1100px) {
  footer {
    height: 120px;
    padding-top: 30px;
  }
  footer img {
    width: 130px;
  }
  footer small {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=style.css.map */