@charset "UTF-8";
/* =============== keyvisual =============== */
.custom_keyvisual {
  display: flex;
  align-items: center;
}
.service_keyvisual h1 {
  padding: 20px;
}
/* =============== 概要 =============== */
.custom_about {
  display: flex;
  margin-top: 50px;
}
.custom_about img {
  width: 45%;
  object-fit: cover;
  order: 1;
}
.custom_about-text {
  margin: auto;
  order: 3;
}
.custom_about-text h2 {
  text-align: center;
  color: #fe8f39;
  font-size: clamp(2rem, 2vw + 1rem, 4rem);
  margin-bottom: 30px;
}
.custom_about-text p {
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  margin: auto;
  width: 70%;
}
@media (max-width: 750px) {
  .custom_about {
    display: block;
  }
  .custom_about img {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .custom_about-text p {
    font-size: clamp(1rem, 2vw + 1rem, 1rem);
    margin-bottom: 20px;
  }
}
/* =============== カスタム事例 =============== */

/* .custom-swiper {
  margin: 100px auto;
}
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination {
  position: static;
} */
.custom_examp {
  margin-top: 50px;
}
.custom_examp h2 {
  text-align: center;
  color: #fe8f39;
  font-size: clamp(2rem, 2vw + 1rem, 4rem);
  margin-bottom: 30px;
}

.wrap {
  scroll-snap-type: x mandatory;
  white-space: nowrap;
  overflow-x: auto;
  margin-top: 30px;
}

.item {
  scroll-snap-align: center;
  display: inline-block;
  width: 40%;
  white-space: normal;
}
Result Skip Results Iframe EDIT ON .wrap {
  scroll-snap-type: x mandatory;
  white-space: nowrap;
  overflow-x: auto;
  margin: 0 auto;
  padding: 30px 0;
  width: 800px;
}

@media not all and (min-width: 840px) {
  .wrap {
    width: 100%;
  }
}

.item {
  scroll-snap-align: center;
  display: inline-block;
  margin: 0 20px;
  width: 40%;
  white-space: normal;
  background-color: #f4f4f4;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  /* border-radius: 20px; */
  overflow: hidden;
}

@media not all and (min-width: 568px) {
  .item {
    width: 90%;
  }
}

/* =============== カスタムパーツ =============== */
.custom_parts {
  margin-top: 50px;
}

.custom_parts h2 {
  text-align: center;
  color: #fe8f39;
  font-size: clamp(2rem, 2vw + 1rem, 4rem);
}
.custom_parts p {
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  margin: 0 auto 30px auto;
  width: 65%;
}

.custom_grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  text-align: center;
}
.custom_grid img {
  max-width: 500px;
  margin: auto;
}
.grid_item p {
  color: #fe8f39;
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  font-weight: 500;
}
@media (max-width: 750px) {
  .custom_parts p {
    width: 90%;
    font-size: clamp(1rem, 2vw + 1rem, 1rem);
  }
  .custom_parts h2 {
    margin-bottom: 30px;
  }
  .grid_item p {
    font-size: clamp(1rem, 2vw + 1rem, 1rem);
  }
}
/* =============== Q&A =============== */

.custom_qa {
  margin: 20px auto;
}
.custom_qa h2 {
  text-align: center;
  color: #fe8f39;
  font-size: clamp(2rem, 2vw + 1rem, 4rem);
  margin-bottom: 30px;
}
.accordion-001 {
  width: 60%;
  background-color: #ffffff;
  margin: 0 auto;
}

.accordion-001:not([open]) {
  margin-bottom: 2px;
}

.accordion-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  /* border-radius: 5px; */
  background-color: #ffb66e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
  display: none;
}

.accordion-001 summary::before,
.accordion-001 summary::after {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: #fff;
  content: "";
}

.accordion-001 summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion-001 summary::after {
  transition: rotate 0.3s;
}

.accordion-001[open] summary::after {
  rotate: 90deg;
}
.accordion-001 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 2em 2em;
  color: #3b3b3b;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-001[open] p {
  transform: none;
  opacity: 1;
  font-size: clamp(0.813rem, 2vw + 1rem, 1rem);
  font-weight: 500;
  border: #ffb66e 2px solid;
}
@media (max-width: 750px) {
  .accordion-001 {
    width: 100%;
  }
}
