@charset "utf-8";

/* ==========================================================
   akiya-fuchu/contact.html  ／ ページ別CSS（v5でインライン<style>から抽出）
   mac_wordpress_common_rules.md §6-4 ＝ common → page別の順で読み込む
   ----------------------------------------------------------
   ※ v5 で抽出された生のスタイル。
   ※ 変数名（--ink → --text-main, --o → --brand-main 等）は
      common.css の :root エイリアス層で吸収。順次標準名に置換予定。
========================================================== */

/* ========================================================== */
/*  Quick tel  */
/* ========================================================== */
.quicktel {
  background: #fff;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft)
}
.quicktel-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}
@media(max-width:680px) {
  .quicktel-inner {
    grid-template-columns: 1fr
  }
}
.qt-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background: #fff
}
.qt-card .lbl {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
}
.qt-card .val {
  font-size: 26px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .04em
}
@media(max-width:680px) {
  .qt-card .val {
    font-size: 20px;
  }
}
.qt-card .val a {
  color: var(--ink)
}
.qt-card .sub {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 4px
}

/* ========================================================== */
/*  Form  */
/* ========================================================== */
.form-section {
  background: #fff;
  padding: 50px 0
}
.form-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter)
}
.form-step {
  margin-bottom: 36px
}
.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft)
}
.step-head .num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700
}
.step-head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em
}
.step-head h3 small {
  display: block;
  font-size: 13.5px;
  color: var(--ink-3);
  font-weight: 400;
  text-align: justify;
  margin-top: 2px
}
.field {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft)
}
@media(max-width:680px) {
  .field {
    grid-template-columns: 1fr;
    gap: 6px
  }
}
.field:last-child {
  border-bottom: none
}
.field label {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px
}
.req {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500
}
.opt {
  display: inline-block;
  background: var(--ink-3);
  color: #fff;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500
}
.field input[type=text],
.field input[type=email],
.field input[type=tel],
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  transition: border-color .15s
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%234A5A55'%20stroke-width='2.5'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpolyline%20points='6%209%2012%2015%2018%209'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 12px
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7
}
@media(max-width:680px) {
  .field textarea {
    font-size: 15px;
    text-align: justify;
  }
}
.field .hint {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.6
}
.field-radio {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px
}
.field-radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all .15s
}
.field-radio label:hover {
  border-color: var(--green);
  background: var(--bg-soft)
}
.field-radio label input {
  flex-shrink: 0
}
.field-radio label small {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.5;
  text-align: justify;
}

/* ========================================================== */
/*  Share consent  */
/* ========================================================== */
.share {
  background: var(--bg-soft);
  padding: 30px 0;
  margin: 30px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft)
}
.share-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter)
}
.share h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink)
}
.share p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.8;
  text-align: justify;
}

/* ========================================================== */
/*  Submit  */
/* ========================================================== */
.form-actions {
  padding: 20px 0 0;
  text-align: center
}
.form-actions .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 56px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  font-family: var(--sans)
}
.form-actions .btn-submit:hover {
  background: var(--green-deep)
}
.form-actions .btn-submit::after {
  content: "→"
}
.form-actions .agree {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 14px
}
.form-actions .agree a {
  color: var(--green);
  text-decoration: underline
}

