@charset "UTF-8";
/* ============================================================
// first.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 22.9074889868vw + 154.0969162996px, 500px);
  padding-top: clamp(76px, 4.7577092511vw + 58.1585903084px, 130px);
  overflow: hidden;
  background-image: url(../images/first/bg-page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.page-header__title-area {
  color: #fff;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 2.2907488987vw + 25.40969163px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.page-header__jp {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 0.1762114537vw + 13.3392070485px, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 5px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

/* ------------------------------------------------------------
// ご依頼の流れ
------------------------------------------------------------ */
.flow__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(0px, 1.7621145374vw + -6.6079295154px, 20px);
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.flow__item {
  position: relative;
  display: flex;
  gap: 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: clamp(20px, 0.8810572687vw + 16.6960352423px, 30px);
  border-bottom: 8px solid #728f00;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.flow__item:nth-child(even) {
  border-bottom-color: #f17d00;
}
@media (max-width: 767px) {
  .flow__item {
    flex-direction: column;
  }
}
.flow__content {
  flex: 1;
}
.flow__head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.flow__number {
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  color: #728f00;
  line-height: 1;
  opacity: 0.5;
}
.flow__item:nth-child(even) .flow__number {
  color: #f17d00;
}
.flow__title {
  font-size: clamp(18px, 0.3524229075vw + 16.6784140969px, 22px);
  font-weight: 700;
}
.flow__body {
  font-size: clamp(15px, 0.0881057269vw + 14.6696035242px, 16px);
}
.flow__highlight {
  display: block;
  font-weight: 700;
  color: #d81b60;
  margin-top: 10px;
}
.flow__image {
  width: 300px;
  flex-shrink: 0;
}
.flow__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .flow__image {
    width: 100%;
    order: -1;
    aspect-ratio: 16/9;
  }
}

/* ------------------------------------------------------------
// よくあるご質問
------------------------------------------------------------ */
.faq__inner {
  max-width: 1200px;
  margin-block: auto;
}
.faq__group {
  margin-bottom: 60px;
}
.faq__group:last-child {
  margin-bottom: 0;
}
.faq__category {
  display: inline-block;
  font-size: clamp(20px, 0.3524229075vw + 18.6784140969px, 24px);
  font-weight: bold;
  color: #fff;
  margin-bottom: clamp(20px, 0.8810572687vw + 16.6960352423px, 30px);
  padding: 12px 24px;
  border-radius: 10px;
}
.faq__category--green {
  background-color: #728f00;
}
.faq__category--orange {
  background-color: #f17d00;
}
@media (max-width: 767px) {
  .faq__category {
    text-align: center;
    width: 100%;
  }
}
.faq__list {
  display: grid;
  gap: 20px;
}
.faq__item {
  padding: clamp(20px, 0.3524229075vw + 18.6784140969px, 24px);
  border-radius: 10px;
  background-color: #fcfcfc;
  border: 1px solid #eee;
}
.faq__question {
  display: flex;
  align-items: flex-start;
  font-size: clamp(16px, 0.1762114537vw + 15.3392070485px, 18px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.faq__question::before {
  content: "Q.";
  font-size: 20px;
  margin-right: 12px;
  color: #728f00;
}
.faq__category--orange + .faq__list .faq__question::before {
  color: #f17d00;
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  font-size: clamp(15px, 0.0881057269vw + 14.6696035242px, 16px);
}
.faq__answer::before {
  content: "A.";
  font-size: 18px;
  font-weight: 700;
  color: #f17d00;
  margin-right: 12px;
}