@charset "UTF-8";
/* key-visual */
/* about */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 0 50px 0;
}

.about img {
  order: 1;
  width: 45%;
  object-fit: cover;
}
.about_text {
  order: 3;
  margin: auto;
}
.mybr {
  /* display: inline-block; */
}
.about_text h2 {
  text-align: center;
  color: #fe8f39;
  font-size: clamp(2rem, 2vw + 1rem, 4rem);
  margin-bottom: 30px;
}
.about_text p {
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  margin: auto;
  width: 75%;
}
@media (max-width: 750px) {
  .about {
    display: block;
  }

  .about img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
  .about_text p {
    font-size: clamp(1rem, 2vw + 1rem, 1rem);
    margin-bottom: 30px;
    text-align: initial;
  }
}
/* ================================== service ================================== */
.service_h2 {
  width: 50%;
  margin: 30px auto;
}
.service {
  display: flex;
  align-items: center;
  background-color: #ffb66e;
  padding: 30px;
}
.service_text {
  margin: 30px auto;
  width: 40%;
}
.service h3 {
  color: #fff;
  font-size: clamp(2rem, 2vw + 1rem, 4rem);
  margin-bottom: 30px;
  font-weight: 600;
}
.serivice_text_p {
  color: #fff;
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  font-weight: 400;
  padding: 0 20px 0 20px;
  width: 80%;
}
.service_icons {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  text-align: center;
  margin: 0 30px 0 30px;
}
.service_icons img {
  width: 100px;
  height: 100px;
}
.service_icons p {
  color: #fff;
  font-weight: 400;
  font-size: clamp(0.813rem, 2vw + 1rem, 1rem);
}

.service_contents .btn {
  margin-top: 50px;
}
@media (max-width: 850px) {
  .service {
    display: block;
  }
  .service h3 {
    text-align: center;
  }
  .service_text {
    width: 100%;
  }
  .serivice_text_p {
    font-size: clamp(1rem, 2vw + 1rem, 1rem);
    margin: auto;
    width: 100%;
  }
  .service_icons {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    text-align: center;
    margin: 0 30px 0 30px;
  }
  .service_contents .btn {
    margin-top: 30px;
  }
}
/* ============================== custom =============================== */

.custom {
  display: flex;
  justify-content: space-between;
}
.custom_h2 {
  width: 50%;
  margin: 60px auto 30px;
}
.custom img {
  width: 40%;
  object-fit: cover;
}
.custom_text {
  margin: auto;
}
.custom-text h3 {
  text-align: center;
  color: #fe8f39;
  font-size: clamp(2rem, 2vw + 1rem, 4rem);
  margin-bottom: 30px;
}
.custom-text p {
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  text-align: center;
  width: 80%;
  margin: 30px auto;
}
@media (max-width: 750px) {
  .custom {
    display: block;
    margin: 30px 0 30px 0;
  }
  .custom-text {
    margin-bottom: 30px;
  }
  .custom-text h3 {
    text-align: center;
    color: #fe8f39;
    font-size: clamp(2rem, 2vw + 1rem, 4rem);
    margin-bottom: 30px;
  }
  .custom-text p {
    font-size: clamp(1rem, 2vw + 1rem, 1rem);
    text-align: initial;
  }
  .custom img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
}

/* btn */
.btn {
  width: 300px;
  height: 50px;
  margin: auto;
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #fe8f39;
  text-align: center;
}
.btn:hover {
  background-color: #fe8f39;
  color: #fff;
  transition: all 0.3s ease;
}
