@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    color: #1f2937; /* Gray-800 */
}
/* カスタムカラー: メインカラーのオレンジ #FF8C00 */
.color-primary {
    background-color: #FF8C00;
    color: white;
}
.text-primary {
    color: #FF8C00;
}
.border-primary {
    border-color: #FF8C00;
}
/* CTAボタンカラー: 際立つ赤 */
.cta-button {
    background-color: #E53E3E; /* Red-600 */
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: #C53030; /* Red-700 */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px -3px rgba(229, 62, 62, 0.4);
}
/* セカンダリCTAはFVから削除されたため、ここでは使用しないが定義は残す */
.cta-secondary {
    border: 2px solid #2D3748; /* Dark Gray */
    color: #2D3748;
    transition: all 0.3s ease;
}
.cta-secondary:hover {
    background-color: #2D3748;
    color: white;
}


/* -----フォーム部分----- */
.f_inq {
  margin: 15px auto;
}

.f_inq p {
 font-size: 1.1rem;
 margin-bottom: 1rem;
}

.f_inq .form-heading{
  color: #FF8C00;
  font-size: 1.4rem;
  font-weight: bold;
}

.f_inq .form dt {
  line-height: 1;
  font-size: 1.2rem;
  font-weight:bold;
}
.f_inq .form dt.req:after {
  content: "*";
  color: #EE7117;
}
.f_inq .form dd {margin-bottom: 30px;}
.f_inq .form input,
.f_inq .form select,
.f_inq .form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: #ccc solid 1px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 300;
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
  box-sizing: border-box;
}
.f_inq .form textarea {
  height: calc( 1.5em * 5 );
  line-height: 1.5;
}

.f_inq .form .wpcf7-radio{
  display: flex;
}

.f_inq .form .wpcf7-radio .wpcf7-list-item {
  margin:0 15px 5px;
}

.f_inq .form input[type="radio"] {
  display: inline-block;
  width: auto;
}
.f_inq .form .wpcf7-radio label {cursor: pointer;}
.f_inq .form .wpcf7-radio .wpcf7-list-item-label {
  display: inline-block;
  margin: 0 0 0 10px;
  font-size: 1.2rem;
  line-height: 1;
}

.f_inq .form input[type="submit"] {
  padding: 20px 0;
  background: #EE7117;
  border: none;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 2.0rem;
  font-weight: 600;
  cursor: pointer;
  transition: .5s;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
}

.f_inq .form input[type="submit"]:hover { opacity: .8;}

.f_inq .form dd span {
  display: block;
  margin-top: 10px;
  font-weight: 300;
  font-size: 1.3rem;
}
.f_inq .form dd .wpcf7-not-valid-tip{
  margin-top: 5px;
}


/* sp */
@media (max-width: 768px) {
  .f_inq {
    flex-direction: column;
    width: 90%;
    margin: 50px auto;
  }
  .f_inq .box {
    width: 100%;
    margin: 0;
  }
  .f_inq .inr {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  .f_inq .form {
    width: 100%;
    margin-bottom: 60px;
  }

  .page .f_inq h2 { font-size: 1.6rem;}

  .f_inq .form .wpcf7-radio {
    display: inherit;
  }

  .f_inq .form input,
  .f_inq .form select,
  .f_inq .form textarea {
    font-size: 14px;
  }
  .f_inq .form select {
    height:38px;
  }
  .f_inq .form .wpcf7-radio label {cursor: pointer;}
  .f_inq .form .wpcf7-radio .wpcf7-list-item-label {
    font-size: 16px;
  }

  .wpcf7-select option{
    font-size:1rem;
  }
}
/* sp end */

