/* =========================================================
   お問い合わせフォーム（contact）
   ========================================================= */
.contact_form .form_caution {
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.3rem;
}

/* 送信結果（成功/エラー） */
.contact_form .form_result {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
}

.contact_form .form_result.is_success {
  background: var(--color-bg-blue_02);
  border: 1px solid var(--color-main);
  color: var(--color-main);
  font-weight: 600;
}

.contact_form .form_result.is_error {
  background: #fdecec;
  border: 1px solid var(--color-sub);
  color: var(--color-sub);
}

.contact_form .form_result ul {
  margin: 0;
  padding-left: 1.2em;
}

.contact_form .form_result ul li {
  list-style: disc;
  margin-bottom: 4px;
}

/* 各入力グループ */
.contact_form .form_group {
  margin-bottom: 20px;
}

.contact_form .form_group>label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-main);
}

.contact_form .form_group .req {
  display: inline-block;
  background: var(--color-sub);
  color: #fff;
  font-size: 1.0rem;
  font-weight: 600;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* 入力欄共通 */
.contact_form input[type="text"],
.contact_form input[type="tel"],
.contact_form input[type="email"],
.contact_form select,
.contact_form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1.6rem;
  /* iOSズーム防止に16px */
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}

.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
  outline: none;
  border-color: var(--color-main);
}

.contact_form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.contact_form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231b2b60' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

/* 個人情報ボックス */
.contact_form .privacy_box {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 15px;
  background: var(--color-bg-gray);
}

.contact_form .privacy_box p {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1.3rem;
}

.contact_form .privacy_box .checkbox_label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* チェックボックスは main.css のカスタムデザイン（input + span::before）を利用。
   ここでは text 部分の体裁だけ整える */
.contact_form .privacy_box .checkbox_text {
  font-weight: 600;
}

/* 送信ボタン */
.contact_form .submit_area {
  margin-top: 30px;
  text-align: center;
}

.contact_form .submit_area button {
  width: 100%;
  max-width: 320px;
  padding: 16px;
  border: 0;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  background-image: -webkit-linear-gradient(-45deg, rgb(47, 64, 129) 0%, rgb(19, 32, 85) 100%);
  background-image: linear-gradient(135deg, rgb(47, 64, 129) 0%, rgb(19, 32, 85) 100%);
  box-shadow: 0px 6px 15px 0px rgba(47, 64, 129, 0.25);
  transition: opacity 0.15s;
}

.contact_form .submit_area button:hover {
  opacity: 0.85;
}

.contact_form .submit_area button:disabled {
  background: var(--color-gray);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

/* 性別ラジオ（エントリー） */
.contact_form .radio_w {
  gap: 8px;
}
.contact_form .radio_label {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.contact_form .radio_label:hover {
  border-color: var(--color-main);
}
.contact_form .radio_label input[type="radio"] {
  accent-color: var(--color-main);
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
}
.contact_form .radio_label .radio_text {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
}
/* 選択中はボタンごと強調 */
.contact_form .radio_label:has(input:checked) {
  border-color: var(--color-main);
  background: var(--color-bg-blue_02);
}
.contact_form .radio_label:has(input:checked) .radio_text {
  color: var(--color-main);
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}

@media screen and (max-width: 750px) {}

/* =========================================================
   無料お仕事相談（エントリー）追加分
   ※ contact.css を読み込んだ上で、これも追加で読み込む
   ========================================================= */

/* 応募求人サマリー */
.contact_form .job_summary {
  border: 1px solid var(--color-main);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  background: var(--color-bg-blue_02);
}

.contact_form .job_summary .job_summary_w {
  gap: 12px;
  align-items: flex-start;
}

.contact_form .job_summary .imgarea {
  width: 35%;
  flex-shrink: 0;
}

.contact_form .job_summary .imgarea img {
  width: 100%;
  border-radius: 5px;
}

.contact_form .job_summary .txtarea {
  flex: 1;
  min-width: 0;
}

.contact_form .job_summary .job_label {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.contact_form .job_summary .job_title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.contact_form .job_summary .job_meta {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact_form .job_summary .job_location {
  font-size: 1.3rem;
  color: var(--color-text);
}

/* 姓名・ふりがなの横並び */
.contact_form .gap_8 {
  gap: 8px;
}

.contact_form .gap_8>input {
  flex: 1;
  min-width: 0;
}

/* 生年月日の select 横並び */
.contact_form .birth {
  gap: 8px;
}

.contact_form .birth>select {
  flex: 1;
  min-width: 0;
}

/* =========================================================
   会社概要ページ（about）
   ※ main.css の末尾、または about 専用CSSとして読み込み
   ========================================================= */

/* --- 会社概要テーブル（定義リスト） --- */
#company_outline {
  margin-bottom: 40px;
}

.company_dl {
  margin: 0;
}

.company_dl .company_dl_i {
  border-top: 1px solid var(--color-border);
  align-items: flex-start;
}

.company_dl .company_dl_i:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

.company_dl .company_dl_i dt,
.company_dl .company_dl_i dd {
  padding: 14px 5px;
}

.company_dl .company_dl_i dt {
  width: 32%;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--color-main);
}

.company_dl .company_dl_i dd {
  flex: 1;
  line-height: 1.6;
}

/* --- 本社一覧 --- */
#company_office {
  margin-bottom: 40px;
}

.office_list {
  margin: 0;
  padding: 0;
}

.office_list .office_i {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

.office_list .office_i:last-child {
  margin-bottom: 0;
}

.office_list .office_i .office_head {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.office_list .office_i .office_name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.3;
}

.office_list .office_i .office_map_btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  padding: 5px 16px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-main);
  background: #fff;
  transition: background 0.15s, color 0.15s;
}

.office_list .office_i .office_map_btn:hover {
  background: var(--color-main);
  color: #fff;
  opacity: 1;
}

.office_list .office_i .office_addr {
  line-height: 1.7;
}

.office_list .office_i .office_addr a {
  color: var(--color-main);
  text-decoration: underline;
}

/* --- 事業拠点 --- */
#company_base {
  margin-bottom: 40px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}

@media screen and (max-width: 750px) {
  .company_dl .company_dl_i dt {
    width: 35%;
  }
}


/* =========================================================
   ご利用規約ページ（guide）
   ========================================================= */
.term_w {
  padding-bottom: 0;
}

.term_w .term_intro {
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

/* 各条文セクション */
.term_w .term_section {
  margin-bottom: 28px;
}

.term_w .term_ttl {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.4;
  padding: 8px 0 8px 12px;
  border-left: 4px solid var(--color-main);
  margin-bottom: 12px;
}

.term_w .term_body {
  line-height: 1.8;
}

.term_w .term_body p {
  margin-bottom: 10px;
}

.term_w .term_body p:last-child {
  margin-bottom: 0;
}

.term_w .term_body a {
  color: var(--color-main);
  text-decoration: underline;
  word-break: break-all;
}

/* 番号付きリスト（条文の各号） */
.term_w .term_body ol {
  margin: 10px 0 0;
  padding-left: 1.6em;
  counter-reset: term_li;
  list-style: none;
}

.term_w .term_body ol>li {
  position: relative;
  margin-bottom: 10px;
  counter-increment: term_li;
}

.term_w .term_body ol>li::before {
  content: "（" counter(term_li) "）";
  position: absolute;
  left: -1.8em;
  color: var(--color-main);
  font-weight: 600;
}

/* ネストした中黒リスト */
.term_w .term_body ul {
  margin: 8px 0 8px;
  padding-left: 1.2em;
  list-style: none;
}

.term_w .term_body ul>li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 0;
}

.term_w .term_body ul>li::before {
  content: "・";
  position: absolute;
  left: -1em;
  color: var(--color-main);
}

/* 問い合わせボックス（第15条内） */
.term_w .term_contact_box {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 15px;
  margin-top: 12px;
  background: var(--color-bg-blue_02);
}

.term_w .term_contact_subtitle {
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 10px;
}

.term_w .term_contact_info dt {
  font-weight: 600;
  margin-bottom: 2px;
}

.term_w .term_contact_info dd {
  margin: 0 0 10px;
}

.term_w .term_contact_info dd:last-child {
  margin-bottom: 0;
}

.term_w .term_contact_info dd .time {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.2rem;
  color: var(--color-text);
}

/* 付則 */
.term_w .term_signature {
  margin: 30px 0;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}

.term_w .term_date_list {
  gap: 12px;
  align-items: baseline;
}

.term_w .term_date_list dt {
  font-weight: 600;
  color: var(--color-main);
}

.term_w .term_date_list dd {
  margin: 0;
}

/* お問い合わせCTA */
.outline_contact_box {
  padding: 30px 0;
}

.outline_contact_box .contact_text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.outline_contact_box .contact_btns {
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.outline_contact_box .contact_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  padding: 14px;
  background: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.5rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  transition: opacity 0.15s;
}

.outline_contact_box .contact_btn:hover {
  opacity: 0.85;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}

@media screen and (max-width: 750px) {}


/* =========================================================
   お問い合わせフォーム（contact）
   ========================================================= */
.contact_form .form_caution {
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.3rem;
}

/* 送信結果（成功/エラー） */
.contact_form .form_result {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
}
.contact_form .form_result.is_success {
  background: var(--color-bg-blue_02);
  border: 1px solid var(--color-main);
  color: var(--color-main);
  font-weight: 600;
}
.contact_form .form_result.is_error {
  background: #fdecec;
  border: 1px solid var(--color-sub);
  color: var(--color-sub);
}
.contact_form .form_result ul {
  margin: 0;
  padding-left: 1.2em;
}
.contact_form .form_result ul li {
  list-style: disc;
  margin-bottom: 4px;
}

/* 各入力グループ */
.contact_form .form_group {
  margin-bottom: 20px;
}
.contact_form .form_group > label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-main);
}
.contact_form .form_group .req {
  display: inline-block;
  background: var(--color-sub);
  color: #fff;
  font-size: 1.0rem;
  font-weight: 600;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* 入力欄共通 */
.contact_form input[type="text"],
.contact_form input[type="tel"],
.contact_form input[type="email"],
.contact_form select,
.contact_form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1.6rem; /* iOSズーム防止に16px */
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
  outline: none;
  border-color: var(--color-main);
}
.contact_form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.contact_form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231b2b60' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

/* 個人情報ボックス */
.contact_form .privacy_box {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 15px;
  background: var(--color-bg-gray);
}
.contact_form .privacy_box p {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1.3rem;
}
.contact_form .privacy_box .checkbox_label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
/* チェックボックスは main.css のカスタムデザイン（input + span::before）を利用。
   ここでは text 部分の体裁だけ整える */
.contact_form .privacy_box .checkbox_text {
  font-weight: 600;
}

/* 送信ボタン */
.contact_form .submit_area {
  margin-top: 30px;
  text-align: center;
}
.contact_form .submit_area button {
  width: 100%;
  max-width: 320px;
  padding: 16px;
  border: 0;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  background-image: -webkit-linear-gradient(-45deg, rgb(47, 64, 129) 0%, rgb(19, 32, 85) 100%);
  background-image: linear-gradient(135deg, rgb(47, 64, 129) 0%, rgb(19, 32, 85) 100%);
  box-shadow: 0px 6px 15px 0px rgba(47, 64, 129, 0.25);
  transition: opacity 0.15s;
}
.contact_form .submit_area button:hover {
  opacity: 0.85;
}
.contact_form .submit_area button:disabled {
  background: var(--color-gray);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}
@media screen and (max-width: 750px) {}

/* =========================================================
   無料お仕事相談（エントリー）追加分
   ※ contact.css を読み込んだ上で、これも追加で読み込む
   ========================================================= */

/* 応募求人サマリー */
.contact_form .job_summary {
  border: 1px solid var(--color-main);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  background: var(--color-bg-blue_02);
}
.contact_form .job_summary .job_summary_w {
  gap: 12px;
  align-items: flex-start;
}
.contact_form .job_summary .imgarea {
  width: 35%;
  flex-shrink: 0;
}
.contact_form .job_summary .imgarea img {
  width: 100%;
  border-radius: 5px;
}
.contact_form .job_summary .txtarea {
  flex: 1;
  min-width: 0;
}
.contact_form .job_summary .job_label {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.contact_form .job_summary .job_title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}
.contact_form .job_summary .job_meta {
  font-weight: 600;
  margin-bottom: 4px;
}
.contact_form .job_summary .job_location {
  font-size: 1.3rem;
  color: var(--color-text);
}

/* 姓名・ふりがなの横並び */
.contact_form .gap_8 {
  gap: 8px;
}
.contact_form .gap_8 > input {
  flex: 1;
  min-width: 0;
}

/* 生年月日の select 横並び */
.contact_form .birth {
  gap: 8px;
}
.contact_form .birth > select {
  flex: 1;
  min-width: 0;
}

/* =========================================================
   会社概要ページ（about）
   ※ main.css の末尾、または about 専用CSSとして読み込み
   ========================================================= */

/* --- 会社概要テーブル（定義リスト） --- */
#company_outline {
  margin-bottom: 40px;
}
.company_dl {
  margin: 0;
}
.company_dl .company_dl_i {
  border-top: 1px solid var(--color-border);
  align-items: flex-start;
}
.company_dl .company_dl_i:last-of-type {
  border-bottom: 1px solid var(--color-border);
}
.company_dl .company_dl_i dt,
.company_dl .company_dl_i dd {
  padding: 14px 5px;
}
.company_dl .company_dl_i dt {
  width: 32%;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--color-main);
}
.company_dl .company_dl_i dd {
  flex: 1;
  line-height: 1.6;
}

/* --- 本社一覧 --- */
#company_office {
  margin-bottom: 40px;
}
.office_list {
  margin: 0;
  padding: 0;
}
.office_list .office_i {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}
.office_list .office_i:last-child {
  margin-bottom: 0;
}
.office_list .office_i .office_head {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.office_list .office_i .office_name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.3;
}
.office_list .office_i .office_map_btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  padding: 5px 16px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-main);
  background: #fff;
  transition: background 0.15s, color 0.15s;
}
.office_list .office_i .office_map_btn:hover {
  background: var(--color-main);
  color: #fff;
  opacity: 1;
}
.office_list .office_i .office_addr {
  line-height: 1.7;
}
.office_list .office_i .office_addr a {
  color: var(--color-main);
  text-decoration: underline;
}

/* --- 事業拠点 --- */
#company_base {
  margin-bottom: 40px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}
@media screen and (max-width: 750px) {
  .company_dl .company_dl_i dt {
    width: 35%;
  }
}


/* =========================================================
   ご利用規約ページ（guide）
   ========================================================= */
.term_w {
  padding-bottom: 0;
}
.term_w .term_intro {
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

/* 各条文セクション */
.term_w .term_section {
  margin-bottom: 28px;
}
.term_w .term_ttl {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.4;
  padding: 8px 0 8px 12px;
  border-left: 4px solid var(--color-main);
  margin-bottom: 12px;
}
.term_w .term_body {
  line-height: 1.8;
}
.term_w .term_body p {
  margin-bottom: 10px;
}
.term_w .term_body p:last-child {
  margin-bottom: 0;
}
.term_w .term_body a {
  color: var(--color-main);
  text-decoration: underline;
  word-break: break-all;
}

/* 番号付きリスト（条文の各号） */
.term_w .term_body ol {
  margin: 10px 0 0;
  padding-left: 1.6em;
  counter-reset: term_li;
  list-style: none;
}
.term_w .term_body ol > li {
  position: relative;
  margin-bottom: 10px;
  counter-increment: term_li;
}
.term_w .term_body ol > li::before {
  content: "（" counter(term_li) "）";
  position: absolute;
  left: -1.8em;
  color: var(--color-main);
  font-weight: 600;
}
/* ネストした中黒リスト */
.term_w .term_body ul {
  margin: 8px 0 8px;
  padding-left: 1.2em;
  list-style: none;
}
.term_w .term_body ul > li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 0;
}
.term_w .term_body ul > li::before {
  content: "・";
  position: absolute;
  left: -1em;
  color: var(--color-main);
}

/* 問い合わせボックス（第15条内） */
.term_w .term_contact_box {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 15px;
  margin-top: 12px;
  background: var(--color-bg-blue_02);
}
.term_w .term_contact_subtitle {
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 10px;
}
.term_w .term_contact_info dt {
  font-weight: 600;
  margin-bottom: 2px;
}
.term_w .term_contact_info dd {
  margin: 0 0 10px;
}
.term_w .term_contact_info dd:last-child {
  margin-bottom: 0;
}
.term_w .term_contact_info dd .time {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.2rem;
  color: var(--color-text);
}

/* 付則 */
.term_w .term_signature {
  margin: 30px 0;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}
.term_w .term_date_list {
  gap: 12px;
  align-items: baseline;
}
.term_w .term_date_list dt {
  font-weight: 600;
  color: var(--color-main);
}
.term_w .term_date_list dd {
  margin: 0;
}

/* お問い合わせCTA */
.outline_contact_box {
  padding: 30px 0;
}
.outline_contact_box .contact_text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.outline_contact_box .contact_btns {
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.outline_contact_box .contact_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  padding: 14px;
  background: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.5rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  transition: opacity 0.15s;
}
.outline_contact_box .contact_btn:hover {
  opacity: 0.85;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}
@media screen and (max-width: 750px) {}


/* =========================================================
   エリア一覧ページ（area）
   ※ 見出し r_line_ttl は既存を利用
   ========================================================= */
.area_page_w {
  padding: 20px 0 40px;
}
.area_block {
  margin-bottom: 30px;
}
.area_block:last-child {
  margin-bottom: 0;
}

/* 都道府県リスト：2列 */
.area_pref_list {
  gap: 10px;
  margin-top: 12px;
}
.area_pref_i {
  flex: 1 1 calc(50% - 5px);
  max-width: calc(50% - 5px);
}

/* 県リンク（ボタン型） */
.area_pref_link {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  padding: 14px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  transition: background 0.15s, border-color 0.15s;
}
.area_pref_link:hover {
  background: var(--color-bg-blue_02);
  border-color: var(--color-main);
  opacity: 1;
}
.area_pref_link .pref_name {
  font-weight: 600;
  color: var(--color-main);
  font-size: 1.4rem;
}
.area_pref_link .pref_count {
  margin-left: auto;
  color: var(--color-sub);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.area_pref_link .pref_count .unit {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text);
  margin-left: 1px;
}
/* 右向き矢印 */
.area_pref_link .arr {
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 2px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}
@media screen and (max-width: 750px) {}




/* =========================================================
   メーカー一覧ページ（maker）
   ※ area.css と統一感のある作り
   ========================================================= */
.maker_page_w {
  padding: 20px 0 40px;
}
.maker_card_list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.maker_card_link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  transition: background 0.15s, border-color 0.15s;
}
.maker_card_link:hover {
  background: var(--color-bg-blue_02);
  border-color: var(--color-main);
  opacity: 1;
}
.maker_card_link .maker_logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.maker_card_link .maker_logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.maker_card_link .maker_name {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--color-main);
  margin-right: auto;
}
.maker_card_link .arr {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 2px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}
@media screen and (max-width: 750px) {}


/* =========================================================
   フロント お知らせ一覧（news）
   ========================================================= */
#news_list {
}
.news_list {
  margin: 0;
  padding: 0;
}
.news_i {
  border-bottom: 1px solid var(--color-border);
}
.news_i:first-child {
  border-top: 1px solid var(--color-border);
}
.news_link {
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  transition: background 0.15s;
}
.news_link:hover {
  background: var(--color-bg-blue_02);
  opacity: 1;
}
/* サムネ（ある場合のみ） */
.news_link .news_thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-bg-gray);
}
.news_link .news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 本文（日付＋タイトル） */
.news_link .news_body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news_link .news_date {
  font-size: 1.2rem;
  color: var(--color-main);
  font-weight: 600;
  line-height: 1;
}
.news_link .news_ttl {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text);
}
/* 右矢印 */
.news_link .arr {
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 2px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}
@media screen and (max-width: 750px) {}


/* =========================================================
   応募履歴（history）
   ========================================================= */
#history {
  padding: 20px 0 40px;
}
.history_list {
  margin: 0;
  padding: 0;
}
.history_i {
  border-bottom: 1px solid var(--color-border);
}
.history_i:first-child {
  border-top: 1px solid var(--color-border);
}
.history_link {
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  transition: background 0.15s;
}
.history_link:hover {
  background: var(--color-bg-blue_02);
  opacity: 1;
}
.history_link--nolink {
  cursor: default;
}
.history_link--nolink:hover {
  background: none;
}
/* サムネイル */
.history_thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--color-bg-gray, #eee);
}
.history_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history_body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.history_date {
  font-size: 1.2rem;
  color: var(--color-main);
  font-weight: 600;
  line-height: 1;
}
.history_ttl {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text);
}
.history_status {
  display: inline-block;
  width: fit-content;
  margin-top: 2px;
  padding: 2px 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-sub, #d33);
  border-radius: 4px;
}
.history_link .arr {
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 2px;
}
/* クリアボタン */
.history_clear_btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 1.3rem;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.history_clear_btn:hover {
  background: #f5f5f5;
  color: var(--color-sub, #d33);
}

@media screen and (min-width: 751px) and (max-width: 1024px) {}
@media screen and (max-width: 750px) {}