@charset "utf-8";
/* CSS Document */
.header {
  height: 70px;
  width: 100%;
  background-color: rgba(255, 248, 237, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-content-wrpper {
  width: 100%;
  position: relative;
}
.header h1 img {
  height: 40px;
  position: absolute;
  left: 24px;
  top: 12px;
}
/* navigation */
@media(max-width:899px) {
  .header__nav {
    z-index: 1000;
    position: fixed;
    top: -120%; /*マイナス値*/
    left: 0;
    background-color: #fff8ed;
    width: 100%;
    height: 100vh;
    transition: all 0.6s;
    padding-top: 100px;
  }
  /*アクティブクラスがついたら位置を0に*/
  .header__nav.panelactive {
    top: 0;
  }
  .open-button {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none
  }
  .hamburger1, .hamburger3 {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    top: 3px;
    left: 7px;
    height: 3px;
    border-radius: 2px;
    background-color: #97784c;
    width: 36px;
  }
  .hamburger1::before {
    content: "";
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    top: 3px;
    height: 3px;
    border-radius: 2px;
    background-color: #97784c;
    width: 36px;
  }
  .hamburger1::before {
    top: 10px;
  }
  .hamburger3 {
    top: 24px;
  }
  .hamburger3::after {
    content: "menu";
    display: inline-block;
    transition: all .4s;
    position: absolute;
    top: 6px;
    left: -1px;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #97784c;
    margin: 0 auto;
  }
  .open-button.active .hamburger1 {
    top: 7px;
    left: 8px;
    transform: translateY(6px) rotate(-45deg);
    width: 34px;
  }
  .open-button.active .hamburger1::before {
    opacity: 0;
  }
  .open-button.active .hamburger3 {
    top: 12px;
    left: 8px;
    transform: translateY(0px) rotate(45deg);
    width: 34px;
  }
  .open-button.active .hamburger3::after {
    content: "close";
    transform: translateY(0) rotate(-45deg);
    top: 8px;
    left: 14px;
  }
  .header__nav ul li {
    height: 70px;
    vertical-align: middle;
    padding-top: 10px;
    text-align: left;
  }
  .header__nav ul li:hover {
    background-color: rgba(208, 204, 101, 0.2);
  }
  .header__nav ul li a {
    color: #97784c;
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: 600;
    padding-left: 25vw;
  }
  .header__nav ul li a span {
    display: block;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #434343;
    padding-left: 25vw;
  }
}
@media(min-width:900px) {
  .header {
    height: 100px;
  }
  .header-content-wrpper {
    max-width: 960px;
    margin: 0 auto;
  }
  .header h1 img {
    height: 65px;
    top: 16px;
  }
  .header button {
    display: none;
  }
  .header__nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .header__nav ul li {
    padding: 20px 25px 0;
  }
  .header__nav ul li a {
    color: #97784c;
    font-size: 1.4rem;
    font-weight: 600;
  }
  .header__nav ul li a span {
    display: block;
    font-size: 2.0rem;
    text-transform: uppercase;
    color: #434343;
  }
}
.page-link {
  padding-top: 80px;
  margin-top: -80px;
}
@media(min-width:900px) {
  .page-link {
    padding-top: 115px;
    margin-top: -115px;
  }
}
.section-top {
  background-image: url("../images/top/mb_pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.section-top h2 img {
  padding-top: 180px;
  width: 90%;
  max-width: 860px;
}
.section-top__point {
  display: flex;
  justify-content: center;
  padding: 220px 0 60px;
}
.section-top__point img {
  width: 33%;
  max-width: 130px;
  margin: 0 20px;
}
@media(min-width:600px) {
  .section-top__point img {
    max-width: 150px;
  }
}
@media(min-width:900px) {
  .section-top h2 img {
    padding-top: 180px;
  }
  .section-top__point {
    padding-bottom: 90px;
  }
  .section-top__point img {
    max-width: 166px;
  }
}
.br-pc {
  display: none;
}
.conversion-button {
  width: 330px;
}
@media(min-width:768px) {
  .conversion-button {
    width: 340px;
  }
  .br-pc {
    display: block;
  }
}
.section-presentation {
  margin-top: 60px;
}
.section-presentation h2 {
  display: inline;
  font-size: 1.8rem;
  border-bottom: solid 3px #72893e;
  margin: 0 auto;
}
.section-presentation__thinking {
  padding-top: 40px;
}
.section-presentation ul {
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}
.section-presentation li {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: left;
}
.section-presentation li::before {
  display: inline-block;
  content: url("../images/top/check_box.png");
  vertical-align: middle;
  transform: scale(0.7);
}
.section-presentation__image-thinking img {
  margin: 10px auto 0;
}
.section-presentation__recommend h3 {
  margin-top: 16px;
  font-size: 1.6rem;
}
.section-presentation__recommend h3 span {
  display: block;
  font-size: 2.6rem;
  margin-top: 10px;
  letter-spacing: 4px;
}
.section-presentation__image-recommend img {
  margin-bottom: 30px;
}
@media(min-width:768px) {
  .section-presentation {
    margin-top: 80px;
  }
  .section-presentation h2 {
    font-size: 3.0rem;
  }
  .section-presentation__thinking {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  .section-presentation__thinking ul {
    padding: 20px 0 0 50px;
    margin: 0;
  }
  .section-presentation__thinking ul li {
    font-size: 1.8rem;
  }
  .section-presentation li::before {
    transform: scale(0.9);
    margin-right: 10px;
  }
  .section-presentation__recommend {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
  .section-presentation__recommend h3 {
    font-size: 2.0rem;
    padding-right: 120px;
  }
  .section-presentation__recommend h3 span {
    font-size: 3.6rem;
  }
}
.section-about {
  padding: 80px 0 50px;
  background-image: url("../images/top/bg_about_pc.jpg");
  background-size: cover;
  position: relative;
}
.section-about::before {
  content: "";
  display: block;
  width: 100%;
  height: 12vw;
  max-height: 100px;
  background-color: #fff8ed;
  position: absolute;
  top: -1px;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
.section-about h2 {
  margin-bottom: 20px;
  line-height: 1;
}
.section-about h2::before {
  content: url("../images/top/logo_about.png");
  display: block;
  transform: scale(0.7);
}
.section-about__content__textarea {
  background-image: url("../images/top/back_logo_about.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 20px;
  padding: 30px 20px;
  max-width: 450px;
}
.section-about__content p {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
}
.section-about__content p span {
  font-size: 1.6rem;
  font-weight: 600;
}
.section-about__content img {
  margin-bottom: 20px;
  height: 240px;
}
@media(min-width:768px) {
  .section-about {
    padding: 100px 0 80px;
  }
  .section-about h2::before {
    transform: scale(1);
  }
  .section-about h2 {
    font-size: 3.6rem;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .section-about__content__textarea {
    max-width: 526px;
  }
  .section-about__content p {
    font-size: 1.6rem;
  }
  .section-about__content p span {
    font-size: 1.8rem;
  }
  .section-about__content img {
    height: 290px
  }
}
@media(min-width:500px) {
  .section-about {
    padding-top: 100px;
  }
}
@media(min-width:570px) {
  .section-about {
    padding-top: 110px;
  }
}
@media(min-width:700px) {
  .section-about {
    padding-top: 120px;
  }
}
@media(min-width:900px) {
  .section-about {
    padding-top: 130px;
  }
  .section-about__content {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
  }
  .section-about__content__textarea {
    margin: 0 20px 0 0;
  }
  .section-about__content img {
    margin: 0;
    vertical-align: middle;
  }
}
.section-reason {
  padding: 60px 14px 30px;
}
.section-reason h2 {
  margin-bottom: 40px;
}
.section-reason h2 span {
  font-size: 3.6rem;
  color: #ed761f;
}
.section-reason li {
  margin-bottom: 30px;
}
.section-reason__content {
  max-width: 510px;
  margin: 0 auto;
}
.section-reason__content-title {
  display: flex;
  margin-bottom: 20px;
}
.section-reason__content-title img {
  height: 70px;
}
.section-reason h3 {
  color: #3c661b;
  text-align: left;
  line-height: 1.7;
  margin-left: 6px;
}
.section-reason h3 span {
  font-size: 2.6rem;
  display: block;
 }
.section-reason p {
  padding: 0 10px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 1.4rem;
}
.text-bold {
  font-weight: 600;
}
.section-reason__content-photo {
  max-width: 420px;
  height: 230px;
}
@media(min-width:768px) {
  .section-reason {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .section-reason li {
    margin-bottom: 40px;
  }
  .section-reason h2 {
    font-size: 3.6rem;
    margin-bottom: 90px;
  }
  .section-reason h2 span {
    font-size: 4.8rem;
  }
  .section-reason li:nth-child(2n) {
    flex-direction: row-reverse
  }
  .section-reason__content-title h3 {
    font-size: 2.0rem;
    line-height: 1.3;
  }
  .section-reason__content-title h3 span {
    font-size: 4.0rem;
  }
  .section-reason__content p {
    font-size: 1.6rem;
  }
  .section-reason__content-photo {
    height: 100%;
  }
}
@media(min-width:920px) {
  .section-reason li {
    display: flex;
    justify-content: center;
  }
  .section-reason__content {
    margin: 0;
    padding: 0 10px;
  }
}
.section-trial {
  background-image: url("../images/top/bg_trial_pc.jpg");
  padding: 40px 0 60px;
}
.section-trial__vegetables img {
  display: none;
}
.section-trial__title {
  display: flex;
  justify-content: center;
}
.section-trial__title img {
  max-width: 164px;
  height: 70px;
  position: relative;
}
.section-trial h2 {
  padding: 10px 10px 0 0;
  letter-spacing: 3px;
  line-height: 1;
  position: relative;
}
.section-trial h2 span {
  font-family: "mitimasu", sans-serif;
  display: block;
  font-size: 1.2rem;
  letter-spacing: normal;
  padding-right: 6px;
}
.section-trial h2 span::before {
  content: url("../images/top/decoration_line_left.png");
  display: inline-block;
  transform: scale(0.5);
  vertical-align: middle;
}
.section-trial h2 span::after {
  content: url("../images/top/decoration_line_right.png");
  display: inline-block;
  transform: scale(0.5);
  vertical-align: middle;
}
.section-trial h2::after {
  content: url("../images/top/TRIALSET.png.png");
  display: block;
  transform: scale(0.8);
  padding: 6px 60px 0 0;
  margin-bottom: 20px;
}
.section-trial ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.section-trial li {
  width: 347px;
  background-color: #FFF;
  border-radius: 15px;
  margin: 0 28px 30px;
  padding-bottom: 36px;
}
.section-trial__set01 {
  height: 206px;
  margin: 40px auto 10px;
}
.section-trial__set02 {
  height: 236px;
  margin: 10px auto 10px;
}
.section-trial h3 {
  padding-left: 20px;
  font-size: 2.4rem;
  text-align: left;
  margin-bottom: 10px;
}
.section-trial p {
  text-align: left;
  padding-left: 18px;
}
.section-trial__price {
  text-align: left;
  padding-left: 15px;
  line-height: 1.2;
}
.section-trial__price span {
  font-size: 3.6rem;
  font-weight: 600;
  color: #b90808;
}
@media(min-width:500px) {
  .section-trial h2::before {
    content: url("../images/top/broccoli_pumpkin.png");
    transform: scale(0.5);
    position: absolute;
    top: -22px;
    right: -126px;
  }
}
@media(min-width:600px) {
  .section-trial ul::after {
    content: url("../images/top/carrot.png");
    transform: scale(0.5);
    position: absolute;
    top: 910px;
    left: -23px;
  }
}
@media(min-width:670px) {
  .section-trial ul::before {
    content: url("../images/top/tomto.png");
    transform: scale(0.5);
    position: absolute;
    top: -40px;
    right: 22px;
  }
}
@media(min-width:768px) {
  .section-trial {
    padding: 46px 0 80px;
  }
  .section-trial h2 {
    font-size: 4.8rem;
    letter-spacing: 10px;
    padding-top: 30px;
  }
  .section-trial h2 span {
    font-size: 2.6rem;
  }
  .section-trial h2 span::before, .section-trial h2 span::after {
    transform: scale(1);
    padding: 0 10px;
  }
  .section-trial h2::after {
    transform: scale(1);
    line-height: 0.5;
    margin-bottom: 40px;
  }
  .section-trial h2::before, .section-trial ul::before, .section-trial ul::after {
    display: none;
  }
  .section-trial__title img {
    height: 164px;
  }
  .section-trial ul {
    margin-bottom: 40px;
  }
  .section-trial ul li {
    margin: 0;
    max-width: 440px;
  }
}
@media(min-width:960px) {
  .section-trial h2::before {
    display: block;
    top: 10px;
    right: -135px;
    transform: scale(0.7);
  }
  .section-trial ul li {
    width: 440px;
    height: 510px;
    padding: 0;
  }
  .section-trial__set01 {
    height: 258px;
    margin: 30px auto;
  }
  .section-trial__set02 {
    height: 287px;
    margin: 10px auto 21px;
  }
  .section-trial h3 {
    font-size: 3.0rem;
    line-height: 1;
    padding-left: 30px;
  }
  .section-trial p {
    font-size: 2.0rem;
    padding-left: 40px;
  }
  .section-trial__price {
    line-height: 1;
    padding-left: 40px;
  }
  .section-trial__price span {
    font-size: 4.0rem;
  }
}
@media(min-width:1100px) {
  .section-trial ul::before {
    display: block;
    transform: scale(0.7);
    top: -83px;
    right: -54px;
  }
}
@media(min-width:1200px) {
  .section-trial ul::after {
    display: block;
    transform: scale(0.7);
    top: 460px;
    left: -105px;
  }
}
@media (min-width: 1270px) {
  .section-trial h2::before {
    top: 15px;
    right: -215px;
    transform: scale(0.9);
  }
  .section-trial ul::before {
    transform: scale(0.9);
    top: -40px;
    right: -128px;
  }
  .section-trial ul::after {
    display: block;
    transform: scale(0.9);
    top: 470px;
    left: -130px;
  }
}
.section-guarantee {
  padding: 70px 18px;
  background-image: url("../images/top/bg_quality_assurance_sp.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-guarantee__content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px 20px;
}
.section-guarantee h2::before {
  content: url("../images/top/icon_quality_assurance.png");
  display: block;
  transform: scale(0.8);
}
.section-guarantee h2 {
  margin-bottom: 30px;
  line-height: 1.1;
}
.section-guarantee__text-big {
  font-size: 2.2rem;
}
.yellow-marker {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.9em; /* 線の太さ */
  text-decoration-color: rgba(248, 219, 55, 0.4); /* 線の色 */
  text-underline-offset: -0.7em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
  letter-spacing: 0.1em;
}
.section-guarantee h3 {
  font-family: 'Klee One', cursive;
  margin-bottom: 30px;
  line-height: 1.3;
}
.section-guarantee p {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
}
@media(min-width:768px) {
  .section-guarantee {
    padding: 80px 40px;
    background-image: url("../images/top/bg_quality_assurance_pc.jpg");
  }
  .section-guarantee__content {
    margin: 0 auto;
    max-width: 920px;
    padding: 30px 60px 50px;
  }
  .section-guarantee h2::before {
    transform: scale(1);
  }
  .section-guarantee h2 {
    font-size: 3.6rem;
    line-height: 1;
  }
  .section-guarantee h3 {
    font-size: 2.4rem;
  }
  .section-guarantee__text-big {
    font-size: 3.0rem;
  }
  .section-guarantee p {
    font-size: 1.6rem;
  }
}
@media(min-width:937px) {
  .section-guarantee__br-sp {
    display: none;
  }
  .section-guarantee p {
    text-align: center;
  }
}
.section-organic_farmer {
  padding: 50px 0 40px;
  position: relative;
}
.section-organic_farmer h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.section-organic_farmer__content-wrap img {
  height: 224px;
  margin-bottom: 30px;
}
.section-organic_farmer__description {
  padding: 0 24px;
  max-width: 500px;
  margin: 0 auto;
}
.section-organic_farmer__description h3 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}
.section-organic_farmer__yellow-marker {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.9em; /* 線の太さ */
  text-decoration-color: rgba(248, 219, 55, 0.4); /* 線の色 */
  text-underline-offset: -0.7em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.section-organic_farmer__text-big {
  font-size: 2.4rem;
}
.section-organic_farmer__ratio {
  letter-spacing: 0.2em;
}
.section-organic_farmer__description p {
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 40px;
}
@media(min-width:768px) {
  .section-organic_farmer {
    padding-bottom: 80px;
  }
  .section-organic_farmer h2 {
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
  .section-organic_farmer__description {
    max-width: 530px;
  }
  .section-organic_farmer__description h3 {
    font-size: 2.0rem;
  }
  .section-organic_farmer__text-big {
    font-size: 3.0rem;
  }
  .section-organic_farmer__description p {
    font-size: 1.6rem;
  }
  .section-organic_farmer__content-wrap img {
    height: 300px;
    margin-bottom: 30px;
    padding: 0 20px;
  }
}

@media(min-width:901px) {
  .section-organic_farmer__content-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
  }
  .section-organic_farmer__description h3 {
    text-align: left;
  }
}
@media(min-width:960px) {
  .section-organic_farmer__br-sp {
    display: none;
  }
}
.section-organic_farmer::after {
  content: "";
  display: block;
  background-image: url("../images/top/sc_farmer_01to02_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: 0
}
@media(min-width:560px) {
  .section-organic_farmer::after {
    height: 40px;
  }
}
@media(min-width:1020px) {
  .section-organic_farmer::after {
    height: 60px;
  }
}
@media(min-width:1600px) {
  .section-organic_farmer::after {
    height: 80px;
  }
}
.section-contract_farmer {
  padding: 30px 0;
  background-image: url("../images/top/bg_farmer02_pc.jpg");
  position: relative;
}
.section-contract_farmer h2::before {
  content: url("../images/top/FARMERS.png");
  display: block;
  transform: scale(0.7);
}
.section-contract_farmer h2 {
  margin-bottom: 20px;
  line-height: 0.8;
}
.section-contract_farmer h3 {
  font-family: "mitimasu", sans-serif;
}
.section-contract_farmer h3::before {
  content: url("../images/top/decoration_line_left.png");
  display: inline-block;
  transform: scale(0.5);
  vertical-align: middle;
}
.section-contract_farmer h3::after {
  content: url("../images/top/decoration_line_right.png");
  display: inline-block;
  transform: scale(0.5);
  vertical-align: middle;
}
.section-contract_farmer__list {
  margin-bottom: 30px;
}
.section-contract_farmer__list img {
  height: 230px;
  vertical-align: top;
  margin: 0 auto;
}
.section-contract_farmer__introduction-wrap {
  width: 346px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 30px;
  padding: 10px;
}
.section-contract_farmer__introduction-wrap__inner {
  border: solid 2px #3c661b;
  padding: 20px 20px;
  border-radius: 30px;
}
.section-contract_farmer h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-contract_farmer p {
  font-size: 1.4rem;
  text-align: left;
}
@media(min-width:768px) {
  .section-contract_farmer {
    padding: 30px 0 80px;
  }
  .section-contract_farmer h2::before {
    transform: scale(1);
  }
  .section-contract_farmer h2 {
    font-size: 3.6rem;
    line-height: 1.1;
  }
  .section-contract_farmer h3 {
    font-size: 2.4rem;
  }
  .section-contract_farmer h3::before, .section-contract_farmer h3::after {
    transform: scale(1);
    padding: 0 10px;
  }
  .section-contract_farmer__list img {
    height: 290px;
    margin-top: 20px;
  }
  .section-contract_farmer__introduction-wrap {
    width: 440px;
  }
  .section-contract_farmer__introduction-wrap__inner {
    padding: 30px;
  }
  .section-contract_farmer h4 {
    font-size: 1.8rem;
  }
  .section-contract_farmer h4 span {
    font-size: 1.4rem;
  }
  .section-contract_farmer p {
    font-size: 1.6rem;
  }
}
.section-contract_farmer::after {
  content: "";
  display: block;
  background-image: url("../images/top/farmer_to_voice_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 24px;
  position: absolute;
  left: 0;
  bottom: -24px;
}
@media(min-width:410px) {
  .section-contract_farmer::after {
    height: 34px;
    bottom: -34px;
  }
}
@media(min-width:600px) {
  .section-contract_farmer::after {
    height: 44px;
    bottom: -44px;
  }
}
@media(min-width:780px) {
  .section-contract_farmer::after {
    height: 54px;
    bottom: -50px;
  }
}

@media(min-width:950px) {
  .section-contract_farmer::after {
    height: 58px;
    bottom: -58px;
  }
}
@media(min-width:1060px) {
  .section-contract_farmer::after {
    height: 68px;
    bottom: -68px;
  }
}
@media(min-width:1200px) {
  .section-contract_farmer::after {
    height: 78px;
    bottom: -78px;
  }
}
@media(min-width:1350px) {
  .section-contract_farmer::after {
    height: 88px;
    bottom: -88px;
  }
}
@media(min-width:1560px) {
  .section-contract_farmer::after {
    height: 98px;
    bottom: -98px;
  }
}
@media(min-width:1750px) {
  .section-contract_farmer::after {
    height: 108px;
    bottom: -108px;
  }
}
.section-voice {
  padding-top: 10px;
  margin: 60px 0;
}
.section-voice h2 {
  margin-bottom: 30px;
  line-height: 1;
}
.section-voice h2::before {
  content: url("../images/top/Customers_Voice.png");
  display: block;
  transform: scale(0.7);
}
.section-voice h3 {
  font-size: 1.6rem;
  font-family: "mitimasu", sans-serif;
  margin-bottom: 20px;
}
.section-voice h3 span {
  display: block;
}
.section-voice h3 span::before {
  content: url("../images/top/decoration_line_left.png");
  display: inline-block;
  transform: scale(0.7);
  vertical-align: middle;
}
.section-voice h3 span::after {
  content: url("../images/top/decoration_line_right.png");
  display: inline-block;
  transform: scale(0.7);
  vertical-align: middle;
}
.section-voice li {
  background-color: #FFF;
  box-shadow: 5px 5px 5px 0 rgba(7, 18, 4, 0.2);
  width: 300px;
  height: 350px;
  padding-top: 30px;
  margin: 0 auto 20px;
  border-radius: 20px;
}
.section-voice__user {
  display: flex;
  margin-bottom: 12px;
}
.section-voice__user img {
  height: 85px;
  padding-left: 10px;
}
.section-voice__user h4 {
  padding: 5px 0 0 10px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.6;
}
.section-voice__marker {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: #e8dfbd; /* 線の色 */
  text-underline-offset: -0.3em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.section-voice__user-name {
  font-size: 1.4rem;
  display: block;
}
.section-voice li p {
  font-size: 1.4rem;
  padding: 0 20px;
  text-align: left;
}
.section-voice__br-pc {
  display: none;
}
@media(min-width:768px) {
  .section-voice {
    padding-top: 20px;
  }
  .section-voice h2 {
    font-size: 3.6rem;
    margin-bottom: 30px;
    line-height: 1.1;
  }
  .section-voice h2::before {
    transform: scale(1);
  }
  .section-voice h3 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  .section-voice h3 span::before, .section-voice h3 span::after {
    transform: scale(1);
    padding: 0 10px;
  }
  .section-voice li {
    height: 420px;
  }
  .section-voice li p {
    font-size: 1.6rem;
    padding: 0 20px;
  }
  .section-voice__br-pc {
    display: block;
  }
}
@media(min-width:920px) {
  .section-voice {
    padding-top: 30px;
    margin-bottom: 80px;
  }
  .section-voice h3 span {
    display: inline;
  }
  .section-voice h3 span::before {
    display: none;
  }
  .section-voice h3::before {
    content: url("../images/top/decoration_line_left.png");
    vertical-align: middle;
    padding: 0 10px;
  }
  .section-voice ul {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
@media(min-width:950px) {
  .section-voice {
    margin-top: 80px;
  }
}
@media(min-width:1050px) {
  .section-voice {
    margin-top: 90px;
  }
  @media(min-width:1600px) {
    .section-voice {
      margin-top: 100px;
    }
  }
}
@media(min-width:1700px) {
  .section-voice {
    margin-top: 110px;
  }
}
.section-faq {
  padding: 40px 26px 30px;
}
.section-faq h2 {
  margin-bottom: 30px;
  line-height: 1;
}
.section-faq h2::before {
  content: url("../images/top/FAQ.png");
  display: block;
  transform: scale(0.7);
}
.section-faq dl {
  background-color: #FFF;
  border: solid 3px #97784c;
  border-radius: 20px;
  padding: 20px 10px 30px;
  text-align: left;
  max-width: 960px;
  margin: 0 auto 20px;
}
.section-faq dt {
  margin-bottom: 10px;
  display: flex;
}
.section-faq__question {
  font-weight: 600;
  color: #97784c;
  padding: 18px 0 0 5px;
}
.section-faq dd {
  display: flex;
}
.section-faq__A {
  padding-left: 2px;
}
.section-faq__answer {
  padding: 14px 0 0 5px;
  font-size: 1.4rem;
}
.section-faq__answer span {
  display: block;
  font-weight: 600;
}
@media(min-width:768px) {
  .section-faq {
    padding: 80px 60px;
  }
  .section-faq h2 {
    font-size: 3.6rem;
    margin-bottom: 50px;
  }
  .section-faq h2::before {
    transform: scale(0.9)
  }
  .section-faq dl {
    padding: 20px 30px 30px 20px;
  }
  .section-faq__question {
    font-size: 1.8rem;
  }
  .section-faq__answer {
    font-size: 1.6rem;
  }
}
.footer {
  background-color: #b4a083;
  padding: 20px 0 15px;
}
.footer__logo img {
  height: 50px;
  margin: 0 auto 60px;
}
.footer small {
  font-size: 1.2rem;
}
@media(min-width:768px) {
  .footer {
    padding-top: 30px;
  }
  .footer__logo img {
    height: 70px;
    margin-bottom: 70px;
  }
  .footer small {
    font-size: 1.4rem;
  }
}
#scroll-top {
  position: fixed;
  bottom: 10px;
  right: 12px;
  background-color: #fefefd;
  height: 60px;
  width: 60px;
  border-radius: 60px;
}
#scroll-top a {
  color: #b4a083;
  font-size: 1.1rem;
  text-transform: uppercase;
  position: absolute;
  top: 30px;
  right: 19px;
}
#scroll-top a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 9px;
  top: -9px;
  height: 3px;
  transform: translateY(0px) rotate(30deg);
  background-color: #b4a083;
  width: 23px;
}
#scroll-top a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -9px;
  top: -8px;
  height: 3px;
  transform: translateY(0px) rotate(140deg);
  background-color: #b4a083;
  width: 23px;
}
@media(min-width:900px) {
  #scroll-top {
    height: 88px;
    width: 88px;
  }
  #scroll-top a {
    font-size: 1.2rem;
    top: 50px;
    right: 33px;
  }
  #scroll-top a::before {
    left: 9px;
    top: -19px;
    height: 5px;
    width: 32px;
  }
  #scroll-top a::after {
    left: -15px;
    top: -18px;
    height: 5px;
    width: 32px;
  }
}