* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
}

/* ヘッダー */
.header {
  background-color: #FFCA37;
  padding: 12px 20px;
}

.header-logo {
  font-size: 14px;
  color: #221853;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  margin-left: clamp(0px, 13%, 480px);
}

/* ファーストビュー */
.fv {
  background-color: #221853;
  background-image: url('../images/fv-bg.jpg');
  background-size: cover;
  background-position: top center;
  padding: 60px 40px;
  min-height:  70vh;
  position: relative;
  display: flex;
  align-items: center;
}

.fv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(34, 24, 83, 0.85) 0%,
    rgba(34, 24, 83, 0.4) 30%,
    rgba(34, 24, 83, 0.1) 100%
  );
}

.fv-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: clamp(0px, 13%, 480px);
}

.fv-title {
  font-size: clamp(40px, 2.5vw, 50px);
  font-weight: bold;
  color: #221853;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  font-family: 'Zen Maru Gothic', sans-serif;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
}

.fv-sub {
  display: inline-block;
  color: #fff;
  font-size: clamp(25px, 1.2vw, 35px);
  border-radius: 4px;
  margin-bottom: 24px;
    font-family: 'Noto Sans JP', bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.fv-btn {
  display: block;
  background: linear-gradient(to bottom, #00BE3F, #008D2F);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: bold;
  padding: 16px 24px;
  border-radius: 20px;
  width: clamp(400px, 35vw, 500px);
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fv-btn-tel {
  font-family: 'Staatliches', sans-serif;
  font-size: clamp(40px, 2.5vw, 50px);
  letter-spacing: 0.05em;
}

/* お悩みセクション */
.trouble {
  background-color: #221853;
  padding: 60px 40px;
}

.trouble-inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 40px;
}

.trouble-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.trouble-img {
  width: clamp(220px, 15vw, 250px);
  flex-shrink: 0;
}

.trouble-text {
  flex: 1;
}

.trouble-title {
  font-size: clamp(24px, 1.5vw, 30px);
  color: #f5a623;
  border-bottom: 3px solid #f5a623;
  padding-bottom: 12px;
  margin-bottom: 24px;
    font-family: 'Zen Maru Gothic', sans-serif;
      letter-spacing: 0.1em;
}

.trouble-list {
  list-style: none;
}

.trouble-list li {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  padding: 10px 0 10px 36px;
  border-bottom: 1px solid #ddd;
  position: relative;
    letter-spacing: 0.05em;
}

.trouble-list li::before {
  content: '✕';
  color: #e74c3c;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* 選ばれる理由 */
.reason {
  background-color: #221853;
  padding: 60px 40px;
}

.reason-inner {
  max-width: 900px;
  margin: 0 auto;
}

.reason-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.reason-sub {
  font-size: 19px;
  color: #fff;
}

.reason-title {
  font-size: 45px;
  color: #f5a623;
      font-family: 'Zen Maru Gothic', sans-serif;
}

.reason-en {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.039);
  font-weight: bold;
  font-family: 'Doppio One', sans-serif;
}

.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reason-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #221853;
}

.reason-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 7px;
  background-color: #ddd;
}

.reason-card h3 {
  font-size: 25px;
  color: #f5a623;
  margin-bottom: 3px;
   font-family: 'Zen Maru Gothic', sans-serif;
}

.reason-card p {
  font-size: 17px;
  color: #221853;
   margin-bottom: 7px;
}

/* ご利用の流れ */
.flow {
  background-color: #221853;
  padding: 60px 40px;
}

.flow-inner {
  max-width: 700px;
  margin: 0 auto;
}

.flow-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.flow-title {
  font-size: 40px;
  color: #f5a623;
        font-family: 'Zen Maru Gothic', sans-serif;
}

.flow-en {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.039);
  font-weight: bold;
  font-family: 'Doppio One', sans-serif;
}

.flow-step {
  background-color: #fff;
  border-radius: 50px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.step-num {
  color: #f5a623;
  font-size: 14px;
  white-space: nowrap;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.step-num strong {
  font-size: 24px;
  color: #f5a623;
}

.flow-step p {
  font-size: 20px;
  color: #221853;
  font-weight: bold;
}

.flow-arrow {
  text-align: center;
  color: #f5a623;
  font-size: 20px;
  padding: 4px 0;
}

.flow-note {
  background-color: #f5a623;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 32px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
   font-family: 'Zen Maru Gothic', sans-serif;
}

/* 対応品目 */
.category {
  background-color: #221853;
  padding: 60px 40px;
}

.category-inner {
  max-width: 900px;
  margin: 0 auto;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.category-title {
  font-size: 40px;
  color: #f5a623;
     font-family: 'Zen Maru Gothic', sans-serif;
}

.category-en {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.039);
  font-weight: bold;
  font-family: 'Doppio One', sans-serif;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.category-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
}

.category-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #f5a623;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
     font-family: 'Zen Maru Gothic', sans-serif;
}

.category-card ul {
  list-style: none;
  padding: 0;
}

.category-card ul li {
  font-size: 15px;
  color: #221853;
  font-weight: bold;
  padding: 3px 0;
}

.category-card ul li::before {
  content: '●';
  color: #221853;
  margin-right: 6px;
  font-size: 10px;
}

/* お問い合わせ */
.contact {
  background-color: #f5a623;
  padding: 60px 40px;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.contact-title {
  font-size: 35px;
  color: #221853;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-en {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.084);
  font-weight: bold;
  font-family: 'Doppio One', sans-serif;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #221853;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  color: #221853;
  background-color: #fff;
}

.form-group textarea {
  resize: vertical;
}

.form-btn {
  display: block;
  width: 100%;
  background-color: #221853;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.form-btn:hover {
  opacity: 0.85;
}

.google-form {
  width: 100%;
  overflow: hidden;
}

/* フッター */
.footer {
  background-color: #ffffff;
  padding: 30px 40px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.footer-name {
  font-size: 16px;
  font-weight: bold;
  color: #221853;
}

.footer-tel {
  font-size: 30px;
  font-weight: bold;
  color: #221853;
  text-decoration: none;
}

.footer-info p {
  font-size: 13px;
  color: #221853;
  line-height: 1.5;
}

/* 比較セクション */
.compare {
  background-color: #221853;
  padding: 40px 40px;
}

.compare-inner {
  max-width: 800px;
  margin: 0 auto;
}

.compare-balloon {
  background-color: #f5a623;
  color: #221853;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 20px 32px;
  border-radius: 16px;
  position: relative;
  margin-bottom: 48px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.compare-balloon::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 48px;
  border-width: 20px 16px 0;
  border-style: solid;
  border-color: #f5a623 transparent transparent;
}

.compare-note {
  text-align: right;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: end;
}

.compare-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
}

.compare-card--best {
  background-color: #f5a623;
  transform: scale(1.05);
}

.compare-shop {
  font-size: 30px;
  font-weight: bold;
  color: #221853;
  margin-bottom: 2px;
}

.compare-label {
  font-size: 20px;
  color: #f5a623;
  font-weight: bold;
  margin-bottom: 2px;
}

.compare-card--best .compare-label {
  color: #221853;
}

.compare-price {
  font-size: 40px;
  font-weight: bold;
  color: #221853;
    font-family: 'Staatliches', sans-serif;
}

.compare-price--best {
  font-size: 50px;
  font-weight: bold;
  color: #f5a623;
  /* bestカードのため背景がオレンジなので白に */
  color: #fff;
    font-family: 'Staatliches', sans-serif;
}

.compare-here {
  font-size: 25px;
  font-weight: bold;
  color: #221853;
  margin-top: 5px;
  font-family: sans-serif;
}

.compare-img {
  width: 100%;
  max-width: 200px;
  margin: 10px auto 0;
  display: block;
}

/* イラストの表示切り替え */
.trouble-img--sp {
  display: none;
  width: 120px;
  margin: 0 auto 16px;
}

.trouble-img--pc {
  display: block;
}
/* ===== スマホ対応 ===== */
@media (max-width: 768px) {

  .header-logo {
  margin-left: 4px;
}
 /* ファーストビュー */
  .fv {
    padding: 40px 20px;
    min-height: 40vh;
  background-position: top right; /* 右寄り */
background-position: top center; /* 中央 */
background-position: top 40%; /* 少し左寄り */
  }

  .fv-title {
    font-size: 20px;
        padding: 4px 5px;
  }

  .fv-inner {
    max-width: 100%;
    margin-left: 0;
  }

  .fv-sub {
    font-size: 13px;
    padding: 4px 10px;
  }

  .fv-btn {
    width: 90%;
    font-size: 13px;
    padding: 12px 16px;
  }

  .fv-btn-tel {
    font-size: 25px;
  }
  /* お悩みセクション */
  .trouble {
    padding: 40px 16px;
  }

  .trouble-inner {
    padding: 24px 16px;
    width: 100%;
  }

  .trouble-content {
    flex-direction: column;
    align-items: center;
  }

  .trouble-img {
    width: 140px;
    margin-bottom: 16px;
  }
.trouble-title {
      text-align: center;
    font-size: 20px;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .trouble-list li {
    font-size: 17px;
    letter-spacing: 0;
  }
  .trouble-img--sp {
    display: block;
  }

  .trouble-img--pc {
    display: none;
  }

  /* 選ばれる理由 */
  .reason {
    padding: 40px 16px;
  }

  .reason-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .reason-en {
    font-size: 35px;
  }

  .reason-sub {
    font-size: 14px;
  }
  .reason-title {
    font-size: 32px;
  }

.reason-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

.reason-card h3 {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .reason-card p {
    font-size: 10px;
  }

  .reason-card img {
    height: 120px;
    margin-bottom: 8px;
  }

  .reason-card {
    padding: 12px 8px;
  }

  /* 比較セクション */
  .compare {
    padding: 40px 16px;
  }
  .compare-balloon {
    font-size: 22px;
    padding: 14px 20px;
  }

.compare-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .compare-card--best {
    transform: none;
  }
.compare-shop {
    font-size: 13px;
  }

  .compare-label {
    font-size: 11px;
  }

  .compare-price {
    font-size: 18px;
  }

  .compare-price--best {
    font-size: 22px;
  }

  .compare-here {
    font-size: 14px;
  }

  .compare-card {
    padding: 12px 8px;
  }
  /* ご利用の流れ */
  .flow {
    padding: 40px 16px;
  }

  .flow-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .flow-title {
    font-size: 22px;
  }

  .flow-en {
    font-size: 24px;
  }

  /* 対応品目 */
  .category {
    padding: 40px 16px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .category-title {
    font-size: 32px;
  }

  .category-en {
    font-size: 32px;
  }

.category-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .category-card {
    padding: 12px 8px;
  }

  .category-card-title {
    font-size: 13px;
  }

  .category-card ul li {
    font-size: 12px;
  }

  /* お問い合わせ */
  .contact {
    padding: 40px 16px;
  }

  .contact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-en {
    font-size: 32px;
  }

  /* フッター */
  .footer {
    padding: 24px 16px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-tel {
    font-size: 18px;
  }
}