.section-top__image {
  height: 70vh;
  background-image: url(../images/tphero.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.section-top__image h1 {
  font-size: 3.6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: Zen Maru Gothic, YuGothic, 遊ゴシック;
  line-height: 5.4rem;
}

.section-top__image-message {
  position: relative;
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-top__image-message span {
  color: #1d8d60;
}

/* SECTION ABOUT */

.section-about {
  padding: 5.4rem 0 9.6rem;
  text-align: center;
}

.section-about__line-message {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 42px;
  text-align: center;
}

.section-about h2 {
  border-bottom: 3px solid red;
  width: 150px;
  display: inline-block;
  font-family: Zen Maru Gothic, Yu Gothic, 遊ゴシック;
  font-size: 3.6rem;
  padding-bottom: 15px;
  font-weight: 500;
}

.section-about h3 span {
  color: #1d8d60;
  font-size: 3rem;
  vertical-align: sub;
}
.section-about h3 {
  margin-top: 4rem;
  font-size: 2rem;
  font-weight: 500;
}

.section-about ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 108rem;
  margin: 0 auto 4rem;
  list-style: none;
}

.section-about__line-message {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 5rem;
  margin-bottom: 8rem;
}

.section-about img {
  width: 20rem;
}

.section-about__btn {
  background-color: #fab348;

  border-radius: 25px;
  position: relative;
  transition: 0.5s;
}

.section-about__btn::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
  position: absolute;
  top: 44%;
  right: 12%;
}

.section-about__btn:hover {
  color: #fffaf4;
}

/* SECTION MENU */

.section-menu {
  padding: 5.4rem 0 9.6rem;
  background-color: #fffaf4;
  text-align: center;
}

.section-menu h2 {
  text-align: center;
  /* padding-top: 80px; */
  padding-bottom: 20px;
  font-size: 2.5rem;
  position: relative;
  /* margin-bottom: 60px; */
  font-weight: 500;
}

.section-menu h2::before {
  content: "";
  width: 150px;
  height: 3px;
  display: inline-block;
  background-color: red;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.section-menu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  column-gap: 3rem;
  margin: 0 auto;
  list-style: none;
  margin: 4rem auto;
}

.section-menu__item-picture {
  width: 100%;
  /* height: 226px; */
  object-fit: cover;
  object-position: 0 0;
  border-radius: 10px;
}

.section-menu__item-title {
  padding: 4rem 0;
  color: #1d8d60;
  font-size: 1.8rem;
  font-weight: 600;
}

.section-menu__item-description {
  font-family: Yu Gothic, 遊ゴシック;
  font-weight: 400;
  text-align: left;
  line-height: 3rem;
  font-size: 1.6rem;
}
.section-menu__btn {
  background-color: #fab348;
  position: relative;
  transition: 0.5s;
}
.section-menu__btn::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
  position: absolute;
  top: 44%;
  right: 10%;
}
.section-menu__btn:hover {
  color: #fffaf4;
}

/* SECTION ORDER */

.section-order {
  padding: 5.4rem 0 9.6rem;
}
.section-order h2 {
  text-align: center;
  padding-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
  font-weight: 500;
}
.section-order h2::before {
  content: "";
  width: 150px;
  height: 3px;
  display: inline-block;
  background-color: red;
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translate(-50%);
}
.section-order h3 {
  margin-bottom: 60px;
  font-family: Zen Maru Gothic, Yu Gothic, 遊ゴシック;
  font-size: 2rem;
  color: #333;
  line-height: 38px;
  font-weight: 500;
  position: relative;
  text-indent: 45px;
  display: inline-block;
}

.section-order__item-description {
  text-align: center;
  padding-left: 10px;
}
.section-order__item-picture {
  width: 18rem;
  display: flex;
}
.section-order ol {
  max-width: 102.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  margin: 4rem auto;
  list-style: none;
  counter-reset: my-counter;
}
.section-order li {
  /* text-align: center; */
  margin: 0 auto;
}
.section-order__item-description:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #1d8d60;
  color: #fff;
  font-size: 1.125rem;
  font-family: Zen Maru Gothic, Yu Gothic, 遊ゴシック;
  display: block;
  line-height: 36px;
  text-align: center;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  position: absolute;
  text-indent: 0;
  left: 0;
}

.section-order__details {
  text-align: center;
}

.section-order ul {
  display: inline-block;
  background-color: #fffaf4;
  font-family: Yu Gothic, 遊ゴシック;
  font-size: 1.4rem;
  text-align: left;
  list-style: none;
  border-radius: 10px;
  padding: 20px;
  font-weight: 600;
}

/* SECTION TESTIMONIALS */

.section-voice {
  padding: 5.4rem 0 9.6rem;
  background-repeat: no-repeat;
  background-image: url(../images/voice-bg.png);
}

.section-voice h2 {
  text-align: center;
  padding-bottom: 30px;
  font-family: Zen Maru Gothic, Yu Gothic, 遊ゴシック;
  font-size: 2.5rem;
  position: relative;
  /* margin-bottom: 40px; */
  font-weight: 500;
}
.section-voice h2::before {
  content: "";
  width: 150px;
  height: 3px;
  display: inline-block;
  background-color: red;
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translate(-50%);
}

.section-voice-content-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 4rem auto;
  gap: 4rem;
  text-align: center;
}

.voice-candidate img {
  width: 40%;
}

.slider_parent {
  background-color: #fffaf4;
  padding: 2rem;
  border-radius: 1rem;
}

.section-voice-customer {
  margin-left: 30px;
}

.section-voice__name {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 2rem 0;
}

.section-voice__job {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-voice__item-description {
  font-weight: 400;
  line-height: 3.5rem;
  text-align: left;
  font-size: 1.4rem;
}

.section-voice__item-description2 {
  font-weight: 500;
  line-height: 40px;
}

.section-voice__item-description3 {
  font-weight: 500;
  line-height: 40px;
}

.section-voice__item-description4 {
  font-weight: 500;
  line-height: 40px;
}

.section-rating img {
  margin-top: 50px;
}

.slick-prev::before,
.slick-prev::next {
  color: black !important;
}

.section-voice__item-description br {
  display: none;
}

.section-voice__item-description2 br {
  display: none;
}

.section-voice__item-description3 br {
  display: none;
}

.section-voice__item-description4 br {
  display: none;
}
