@charset "UTF-8";

/* 上書き用CSS */

/* ============================================
   沿革ブロック（block_history）
============================================ */
.block_history {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}

.block_history--item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.block_history--item:first-child {
  padding-top: 0;
}

.block_history--item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.block_history--head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.block_history--label {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  min-width: 120px;
}

.block_history--ttl {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.block_history--txt {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  margin: 0;
  padding-left: 144px;
}

@media screen and (max-width: 768px) {
  .block_history {
    margin-top: 40px;
  }

  .block_history--item {
    padding: 32px 0;
  }

  .block_history--head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .block_history--label {
    font-size: 12px;
  }

  .block_history--ttl {
    font-size: 20px;
  }

  .block_history--txt {
    padding-left: 0;
    font-size: 15px;
  }
}


/* ============================================
   中央揃え
============================================ */
.block_ttl_txt.-center,
.block_btn.-center,
.block_two_column.-center,
.block_phone.-center {
  text-align: center;
}

.block_two_column.-center {
  justify-content: center;
}


/* ============================================
   ボタンのみ（block_two_column--item -btn-only）
============================================ */
.block_two_column--item.-btn-only {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.block_two_column--item.-btn-only .link {
  width: 100%;
  max-width: 320px;
}


/* ============================================
   余白ユーティリティ
============================================ */
.block_two_column.-mt80 {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .block_two_column.-mt80 {
    margin-top: 60px;
  }
}


/* ============================================
   画像テキストブロック 画像上寄せ
============================================ */
.block_img_txt.-align-top {
  align-items: flex-start;
}


/* ============================================
   グレー背景用ボタン（.link.-dark）
   u-bg_lightgray, u-bg_gray で使用
============================================ */
.link.-dark {
  border-bottom: solid 3px #575757;
}

.link.-dark::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.375rem;
  height: 1.375rem;
  content: "";
  background-color: #575757;
  background-image: url(../img/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem auto;
  border-radius: 50%;
  translate: 0 -50%;
}

.link.-dark span {
  text-shadow: 0 -2em 0 #575757, 0 0 0 #575757;
}

.link.-dark:focus span,
.link.-dark:hover span {
  text-shadow: 0 0 0 #575757, 0 2em 0 #575757;
}


/* ============================================
   インタビューセクション 記事間余白
============================================ */
.block_img_txt + .block_img_txt {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .block_img_txt + .block_img_txt {
    margin-top: 40px;
  }
}


/* ============================================
   ボタンブロック（block_btn）
============================================ */
.block_btn {
  margin-top: 40px;
}

.block_btn.-center {
  display: flex;
  justify-content: center;
}


/* ============================================
   電話番号ブロック（block_phone）
============================================ */
.block_phone {
  margin-top: 40px;
}

.block_phone--num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
}

.block_phone--num a {
  color: #fff;
  text-decoration: none;
}

.block_phone--time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
}

@media screen and (max-width: 768px) {
  .block_phone--num {
    font-size: 24px;
  }
}


/* ============================================
   フォームブロック（block_form）
============================================ */
.block_form {
  margin-top: 60px;
  background: #fff;
  border-radius: 8px;
  padding: 60px;
}

.block_form--section {
  margin-bottom: 40px;
}

.block_form--section:last-child {
  margin-bottom: 0;
}

.block_form--section-ttl {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a472a;
}

.block_form--item {
  margin-bottom: 24px;
}

.block_form--item:last-child {
  margin-bottom: 0;
}

.block_form--label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.block_form--label .required {
  font-size: 12px;
  color: #fff;
  background: #c41e3a;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.block_form--label .optional {
  font-size: 12px;
  color: #666;
  background: #e0e0e0;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.block_form input[type="text"],
.block_form input[type="email"],
.block_form input[type="tel"],
.block_form textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fafafa;
  transition: border-color 0.3s, background 0.3s;
}

.block_form input[type="text"]:focus,
.block_form input[type="email"]:focus,
.block_form input[type="tel"]:focus,
.block_form textarea:focus {
  outline: none;
  border-color: #1a472a;
  background: #fff;
}

.block_form--radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block_form--radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.block_form--radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #1a472a;
}

.block_form--item.-checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.block_form--item.-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1a472a;
}

.block_form--item.-checkbox a {
  color: #1a472a;
  text-decoration: underline;
}

.block_form--submit {
  margin-top: 40px;
  text-align: center;
}

.block_form--submit button {
  min-width: 280px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .block_form {
    padding: 32px 20px;
    margin-top: 40px;
  }

  .block_form--section-ttl {
    font-size: 16px;
  }

  .block_form--submit button {
    width: 100%;
  }
}


/* ============================================
   3カラムラベル
============================================ */
.block_three_column_item--label {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 16px 0 0;
}

/* スクエア画像 */
.block_three_column_item--img.-square {
  aspect-ratio: 1 / 1;
}

.block_three_column_item--img.-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 4カラム数字ブロック */
.block_three_column.-four-column {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.block_three_column.-four-column .block_three_column_item {
  max-width: 240px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .block_three_column.-four-column {
    flex-wrap: wrap;
  }

  .block_three_column.-four-column .block_three_column_item {
    max-width: 100%;
    width: calc(50% - 12px);
  }
}

@media screen and (max-width: 480px) {
  .block_three_column.-four-column .block_three_column_item {
    width: 100%;
  }
}


/* ============================================
   Contact Form 7 スタイル上書き
   テーマカラー: #293931(緑), #164800(ダークグリーン), #afa78b(ゴールド), #575757(テキスト)
============================================ */
.wpcf7 {
  margin-top: 0;
}

.wpcf7 .block_form {
  margin-top: 0;
  background: #fff;
  border-radius: 8px;
  padding: 60px;
}

/* セクション見出し */
.wpcf7 .block_form--section {
  margin-bottom: 40px;
}

.wpcf7 .block_form--section:last-child {
  margin-bottom: 0;
}

.wpcf7 .block_form--section-ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #293931;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #293931;
}

/* フォームアイテム */
.wpcf7 .block_form--item {
  margin-bottom: 24px;
}

.wpcf7 .block_form--item:last-child {
  margin-bottom: 0;
}

/* ラベル */
.wpcf7 .block_form--label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #575757;
  margin-bottom: 8px;
}

.wpcf7 .block_form--label .required {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #c41e3a;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.wpcf7 .block_form--label .optional {
  font-size: 12px;
  font-weight: 500;
  color: #575757;
  background: #e5e5e5;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

/* 入力欄 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #575757;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fafafa;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #293931;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(41, 57, 49, 0.1);
}

.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 textarea::placeholder {
  color: #959595;
}

.wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}

/* ラジオボタン */
.wpcf7 .wpcf7-radio,
.wpcf7 .block_form--radio {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ラジオボタン（横並び・枠線なし） */
.block_form--radio.-inline,
.block_form--radio.-inline .wpcf7-radio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.block_form--radio.-inline .wpcf7-list-item {
  margin: 0;
}

.block_form--radio.-inline .wpcf7-list-item label {
  padding: 8px 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.block_form--radio.-inline .wpcf7-list-item label:hover {
  background: transparent;
  border: none;
}

@media screen and (max-width: 768px) {
  .block_form--radio.-inline,
  .block_form--radio.-inline .wpcf7-radio {
    flex-direction: column;
    gap: 12px;
  }
}

/* チェックボックス（横並び・カード風） */
.block_form--radio.-inline .wpcf7-checkbox,
.block_form--checkbox.-inline,
.block_form--checkbox.-inline .wpcf7-checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}

.block_form--checkbox.-inline .wpcf7-list-item {
  margin: 0;
}

.block_form--checkbox.-inline .wpcf7-list-item label,
.block_form--radio.-inline .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 24px;
  background: #fafafa;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.block_form--checkbox.-inline .wpcf7-list-item label:hover,
.block_form--radio.-inline .wpcf7-checkbox .wpcf7-list-item label:hover {
  background: #fff;
  border-color: #293931;
}

.block_form--checkbox.-inline .wpcf7-list-item input[type="checkbox"]:checked + span,
.block_form--radio.-inline .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: #293931;
}

.block_form--checkbox.-inline .wpcf7-list-item label:has(input:checked),
.block_form--radio.-inline .wpcf7-checkbox .wpcf7-list-item label:has(input:checked) {
  background: #f0f5f2;
  border-color: #293931;
}

/* チェックボックスアイコンのサイズ調整 */
.block_form--checkbox.-inline .wpcf7-list-item input[type="checkbox"],
.block_form--radio.-inline .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .block_form--checkbox.-inline,
  .block_form--checkbox.-inline .wpcf7-checkbox,
  .block_form--radio.-inline .wpcf7-checkbox {
    flex-direction: column;
    gap: 12px;
  }

  .block_form--checkbox.-inline .wpcf7-list-item label,
  .block_form--radio.-inline .wpcf7-checkbox .wpcf7-list-item label {
    padding: 4px 20px;
  }
}

.wpcf7 .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-radio label,
.wpcf7 .block_form--radio label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #575757;
  background: #fafafa;
  border: 1px solid #ddd;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.3s;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item:first-child label,
.wpcf7 .block_form--radio label:first-of-type {
  border-radius: 4px 4px 0 0;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item:last-child label,
.wpcf7 .block_form--radio label:last-of-type {
  border-bottom: 1px solid #ddd;
  border-radius: 0 0 4px 4px;
}

.wpcf7 .wpcf7-radio label:hover,
.wpcf7 .block_form--radio label:hover {
  background: #fff;
  border-color: #293931;
}

.wpcf7 .wpcf7-radio label:hover + .wpcf7-list-item label,
.wpcf7 .block_form--radio label:hover + label {
  border-top-color: #293931;
}

/* カスタムラジオボタン */
.wpcf7 .wpcf7-radio input[type="radio"],
.wpcf7 .block_form--radio input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  flex-shrink: 0;
}

.wpcf7 .wpcf7-radio input[type="radio"]:checked,
.wpcf7 .block_form--radio input[type="radio"]:checked {
  border-color: #293931;
}

.wpcf7 .wpcf7-radio input[type="radio"]:checked::after,
.wpcf7 .block_form--radio input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #293931;
  border-radius: 50%;
}

.wpcf7 .wpcf7-radio input[type="radio"]:focus,
.wpcf7 .block_form--radio input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 57, 49, 0.15);
}

/* チェックボックス共通 */
.wpcf7 .block_form--item.-checkbox {
  padding: 20px;
  background: #f5f5f5;
  border-radius: 4px;
}

.wpcf7 .wpcf7-acceptance label,
.wpcf7 .block_form--item.-checkbox label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #575757;
  cursor: pointer;
}

/* カスタムチェックボックス */
.wpcf7 .wpcf7-acceptance input[type="checkbox"],
.wpcf7 .block_form--item.-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  flex-shrink: 0;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked,
.wpcf7 .block_form--item.-checkbox input[type="checkbox"]:checked {
  border-color: #293931;
  background: #293931;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked::after,
.wpcf7 .block_form--item.-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"]:focus,
.wpcf7 .block_form--item.-checkbox input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 57, 49, 0.15);
}

.wpcf7 .wpcf7-acceptance a {
  color: #164800;
  text-decoration: underline;
  transition: color 0.3s;
}

.wpcf7 .wpcf7-acceptance a:hover {
  color: #293931;
}

/* 送信ボタンエリア */
.wpcf7 .block_form--submit {
  margin-top: 40px;
  text-align: center;
}

/* 送信ボタンラッパー（.link.-green と統一 - 白背景用） */
.wpcf7 .submit-btn-wrap {
  position: relative;
  display: inline-block;
  min-width: 16.875rem;
  padding-right: 1.875rem;
  padding-bottom: 0.625rem;
  border-bottom: solid 3px #164800;
  text-align: left;
}

/* 下線アニメーション */
.wpcf7 .submit-btn-wrap::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 5.625rem;
  height: 3px;
  content: "";
  background-color: #afa78b;
  transition: width 0.5s;
}

.wpcf7 .submit-btn-wrap:hover::before {
  width: 100%;
}

/* 矢印アイコン */
.wpcf7 .submit-btn-wrap::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.375rem;
  height: 1.375rem;
  content: "";
  background-color: #164800;
  background-image: url(../img/common/icon_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem auto;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* 送信ボタン本体 */
.wpcf7 input[type="submit"] {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #575757;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.wpcf7 input[type="submit"]:hover {
  color: #164800;
}

.wpcf7 input[type="submit"]:focus {
  outline: none;
}

/* バリデーションエラー */
.wpcf7 .wpcf7-not-valid {
  border-color: #c41e3a !important;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #c41e3a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  margin-top: 8px;
}

/* 送信結果メッセージ */
.wpcf7 .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
}

.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background: #fff0f0;
  border: 1px solid #c41e3a;
  color: #c41e3a;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #f0fff4;
  border: 1px solid #293931;
  color: #293931;
}

.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #fff0f0;
  border: 1px solid #c41e3a;
  color: #c41e3a;
}

/* スピナー */
.wpcf7 .wpcf7-spinner {
  margin-left: 16px;
  vertical-align: middle;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .wpcf7 {
    margin-top: 40px;
  }

  .wpcf7 .block_form {
    padding: 32px 20px;
  }

  .wpcf7 .block_form--section-ttl {
    font-size: 1rem;
  }

  .wpcf7 .block_form--label {
    font-size: 14px;
  }

  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 textarea {
    padding: 14px;
    font-size: 16px; /* iOS zoom防止 */
  }

  .wpcf7 textarea {
    min-height: 160px;
  }

  .wpcf7 .wpcf7-radio label,
  .wpcf7 .wpcf7-acceptance label {
    font-size: 14px;
  }

  .wpcf7 .submit-btn-wrap {
    min-width: 100%;
  }

  .wpcf7 .block_form--item.-checkbox {
    padding: 16px;
  }
}


/* ============================================
   クリニックカードブロック（勤務地情報ページ用）
============================================ */
.block_clinic_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

/* 2カラムグリッド */
.block_clinic_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.block_clinic_grid .block_clinic_card {
  flex-direction: column;
  gap: 0;
}

.block_clinic_grid .block_clinic_card--img {
  width: 100%;
  height: 200px;
}

.block_clinic_grid .block_clinic_card--info {
  padding: 24px;
}

.block_clinic_grid .block_clinic_card--name {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.block_clinic_grid .block_clinic_card--links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.block_clinic_card--map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #293931;
  text-decoration: none;
  transition: opacity 0.3s;
}

.block_clinic_card--map:hover {
  opacity: 0.7;
}

.block_clinic_card--map::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23293931'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.block_clinic_card--site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #293931;
  text-decoration: none;
  transition: opacity 0.3s;
}

.block_clinic_card--site:hover {
  opacity: 0.7;
}

.block_clinic_card--site::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23293931'%3E%3Cpath d='M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .block_clinic_grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .block_clinic_grid .block_clinic_card--img {
    height: 180px;
  }

  .block_clinic_grid .block_clinic_card--info {
    padding: 20px;
  }

  .block_clinic_grid .block_clinic_card--name {
    font-size: 1rem;
  }
}

.block_clinic_card {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.block_clinic_card--img {
  flex-shrink: 0;
  width: 400px;
}

.block_clinic_card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block_clinic_card--info {
  flex: 1;
  padding: 32px 40px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block_clinic_card--name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #293931;
  margin: 0 0 16px;
}

.block_clinic_card--address {
  font-size: 14px;
  color: #575757;
  margin: 0 0 8px;
}

.block_clinic_card--access {
  font-size: 14px;
  color: #575757;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.block_clinic_card--link {
  width: fit-content;
}

/* タグ */
.tag-car {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #293931;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 8px;
}

.tag-new {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #c41e3a;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* u-bg_gray 内のカード */
.u-bg_gray .block_clinic_card,
.u-bg_green .block_clinic_card,
.u-bg_dark .block_clinic_card {
  background: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 768px) {
  .block_clinic_list {
    margin-top: 40px;
    gap: 24px;
  }

  .block_clinic_card {
    flex-direction: column;
    gap: 0;
  }

  .block_clinic_card--img {
    width: 100%;
    height: 200px;
  }

  .block_clinic_card--info {
    padding: 24px;
  }

  .block_clinic_card--name {
    font-size: 1.125rem;
  }
}


/* ============================================
   フローブロック（エントリーページ用）
============================================ */
.block_flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}

.block_flow--item {
  position: relative;
  padding: 40px;
  padding-left: 180px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.block_flow--item:first-child {
  border-radius: 8px 8px 0 0;
}

.block_flow--item:last-child {
  border-radius: 0 0 8px 8px;
  border-bottom: none;
}

.block_flow--step {
  position: absolute;
  left: 40px;
  top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #293931;
}

.block_flow--ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #293931;
  margin: 0 0 16px;
}

.block_flow--txt {
  font-size: 15px;
  line-height: 2;
  color: #575757;
  margin: 0;
}

.block_flow--txt small {
  color: #959595;
}

@media screen and (max-width: 768px) {
  .block_flow {
    margin-top: 40px;
  }

  .block_flow--item {
    padding: 24px;
    padding-top: 56px;
  }

  .block_flow--step {
    left: 24px;
    top: 24px;
    font-size: 12px;
  }

  .block_flow--ttl {
    font-size: 1.125rem;
  }

  .block_flow--txt {
    font-size: 14px;
  }
}


/* ============================================
   採用2カラム 数字ブロック用
============================================ */
.block_recruit_two_column.-numbers .block_recruit_two_column_item {
  text-align: center;
}

.block_recruit_two_column_item--img {
  margin: 0 auto 16px;
}

.block_recruit_two_column_item--img.-square {
  aspect-ratio: 1 / 1;
  max-width: 200px;
}

.block_recruit_two_column_item--img.-square img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.block_recruit_two_column_item--label {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #293931;
  margin: 0 0 16px;
}

.block_recruit_two_column.-numbers dl {
  text-align: left;
}


/* ============================================
   改行ユーティリティ
============================================ */
/* スマホのみ改行 */
.br-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/* PCのみ改行 */
.br-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}


/* ============================================
   採用ページ 画像height解除
============================================ */
.block_recruit_txt_img--img img {
  height: auto;
}


/* ============================================
   採用ページ h2 スマホ中央寄せ
============================================ */
@media screen and (max-width: 768px) {
  .block_recruit_txt_img .ttl,
  .block_recruit_txt_img_vertical .ttl {
    text-align: center;
  }
}


/* ============================================
   採用ページ用余白ユーティリティ
============================================ */
/* セクション間: 120px → 80px */
.block_recruit_txt_img.-mt120,
.block_recruit_txt_img_vertical.-mt120,
.block_recruit_two_column.-mt120,
.block_recruit_ttl_txt.-mt120,
.block_recruit_btn.-mt120,
.block_recruit_cta.-mt120 {
  margin-top: 80px;
}

/* セクション内見出し間: 80px → 40px */
.block_recruit_txt_img.-mt80,
.block_recruit_txt_img_vertical.-mt80,
.block_recruit_two_column.-mt80,
.block_recruit_ttl_txt.-mt80 {
  margin-top: 40px;
}

/* 画像との間: 40px → 24px */
.block_recruit_txt_img.-mt40,
.block_recruit_txt_img_vertical.-mt40,
.block_recruit_two_column.-mt40,
.block_recruit_ttl_txt.-mt40,
.block_recruit_txt_img_vertical.-mt40 {
  margin-top: 24px;
}

/* 選考フロー間の余白 */
.block_recruit_ttl_txt.-mt40 {
  margin-bottom: 24px;
}

.block_recruit_ttl_txt.-mt40:last-of-type,
.block_recruit_ttl_txt.-mt120 {
  margin-bottom: 0;
}

/* ttl_band 下の余白 */
.block_recruit_ttl_txt .ttl_band {
  margin-bottom: 24px;
}

/* ボタン中央寄せ */
.block_recruit_btn.-center {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .block_recruit_txt_img.-mt120,
  .block_recruit_txt_img_vertical.-mt120,
  .block_recruit_two_column.-mt120,
  .block_recruit_ttl_txt.-mt120,
  .block_recruit_btn.-mt120,
  .block_recruit_cta.-mt120 {
    margin-top: 60px;
  }

  .block_recruit_txt_img.-mt80,
  .block_recruit_txt_img_vertical.-mt80,
  .block_recruit_two_column.-mt80,
  .block_recruit_ttl_txt.-mt80 {
    margin-top: 32px;
  }

  .block_recruit_txt_img.-mt40,
  .block_recruit_txt_img_vertical.-mt40,
  .block_recruit_two_column.-mt40,
  .block_recruit_ttl_txt.-mt40 {
    margin-top: 16px;
  }
}


/* ============================================
   採用インタビューカード（画像付き）
============================================ */
.block_recruit_interview_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block_recruit_interview_card--img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.block_recruit_interview_card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block_recruit_interview_card--info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.block_recruit_interview_card--meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.block_recruit_interview_card--position {
  font-size: 12px;
  color: #575757;
  margin: 0;
  letter-spacing: 0.05em;
}

.block_recruit_interview_card--name {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #293931;
  margin: 0;
}

.block_recruit_interview_card--quote {
  font-family: "Shippori Mincho", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #293931;
  margin: 8px 0 0;
  line-height: 1.5;
}

.block_recruit_interview_card--desc {
  font-size: 13px;
  color: #575757;
  margin: 0;
  line-height: 1.7;
}

.block_recruit_interview_card .btn {
  margin-top: 16px;
  min-width: 280px;
  align-self: center;
}

@media screen and (max-width: 768px) {
  .block_recruit_interview_card--name {
    font-size: 0.9375rem;
  }

  .block_recruit_interview_card--quote {
    font-size: 1.0625rem;
  }

  .block_recruit_interview_card .btn {
    min-width: 100%;
    width: 100%;
  }
}


/* ============================================
   採用ページ h2 スマホサイズ調整
============================================ */
@media screen and (max-width: 768px) {
  .block_recruit_txt_img_vertical .ttl,
  .block_recruit_txt_img .ttl {
    font-size: 1.875rem; /* 30px */
  }

  /* 理事長メッセージ等のサブタイトル中央寄せ */
  .block_recruit_txt_img .ttl_sub.-en {
    text-align: center;
  }

  /*
  .block_recruit_txt_img .ttl_sub.-en::before {
    left: 50%;
    transform: translateX(-50%);
  }
  */
}


/* ============================================
   採用CTAボタン（大きめ・目立つUI）
============================================ */
.block_recruit_cta {
  display: flex;
  justify-content: center;
}

.block_recruit_cta--link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 360px;
  padding: 20px 48px;
  background: linear-gradient(135deg, #293931 0%, #1a472a 100%);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.block_recruit_cta--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.block_recruit_cta--link:hover::before {
  left: 100%;
}

.block_recruit_cta--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 57, 49, 0.3);
}

.block_recruit_cta--txt {
  font-family: "Shippori Mincho", serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}

.block_recruit_cta--arrow {
  position: relative;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.block_recruit_cta--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .block_recruit_cta--link {
    min-width: 100%;
    width: 100%;
    padding: 18px 32px;
  }

  .block_recruit_cta--txt {
    font-size: 1rem;
  }

  .block_recruit_cta--arrow {
    width: 28px;
    height: 28px;
  }
}


/* ============================================
   コラム対談ページ用スタイル
============================================ */
/* 対談用2カラムブロック */
.block_interview {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.block_interview.-reverse {
  flex-direction: row-reverse;
}

.block_interview--img {
  flex-shrink: 0;
  width: 45%;
  max-width: 500px;
}

.block_interview--img img {
  width: 100%;
  aspect-ratio: 1200 / 780;
  object-fit: cover;
  border-radius: 4px;
}

.block_interview--txt {
  flex: 1;
}

.block_interview--txt p {
  margin: 0 0 1em;
  line-height: 2;
}

.block_interview--txt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .block_interview {
    flex-direction: column;
    gap: 24px;
  }

  .block_interview.-reverse {
    flex-direction: column;
  }

  .block_interview--img {
    width: 100%;
    max-width: none;
  }
}

/* 対談ブロック間の余白 */
.block_interview + .block_interview {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .block_interview + .block_interview {
    margin-top: 48px;
  }
}

/* 質問テキスト（小さめフォント） */
.column-interview .interview-question {
  font-size: 14px;
  font-weight: 500;
  color: #575757;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .column-interview .interview-question {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

/* セクション間余白 120px */
.column-interview .section-spacing {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .column-interview .section-spacing {
    margin-top: 60px;
  }
}

/* 締めの文章上の余白 */
.column-interview .closing-text {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .column-interview .closing-text {
    margin-top: 60px;
  }
}

/* 区切り線上の余白 */
.column-interview .wp-block-separator {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .column-interview .wp-block-separator {
    margin-top: 60px;
  }
}


/* ============================================
   法人概要テーブル（block_table）
============================================ */
.block_table {
  margin-top: 80px;
}

.block_table table {
  width: 100%;
  border-collapse: collapse;
}

.block_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.block_table tr:last-child {
  border-bottom: none;
}

.block_table th,
.block_table td {
  padding: 24px 0;
  font-size: 15px;
  line-height: 1.8;
  color: #575757;
  text-align: left;
  vertical-align: top;
}

.block_table th {
  width: 140px;
  font-weight: 600;
  color: #293931;
  padding-right: 24px;
  white-space: nowrap;
}

.block_table td {
  flex: 1;
}

.block_table td p {
  margin: 0 0 16px;
}

.block_table td p:last-child {
  margin-bottom: 0;
}

.block_table td strong {
  color: #293931;
}

/* u-bg_lightgray 内のテーブル */
.u-bg_lightgray .block_table tr {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
  .block_table {
    margin-top: 60px;
  }

  .block_table th,
  .block_table td {
    display: block;
    width: 100%;
    padding: 0;
  }

  .block_table th {
    padding-top: 20px;
    padding-bottom: 8px;
    font-size: 14px;
  }

  .block_table td {
    padding-bottom: 20px;
    font-size: 14px;
  }

  .block_table td p {
    margin: 0 0 12px;
  }
}


/* ============================================
   募集要項アコーディオン（block_recruit_accordion）
============================================ */
.block_recruit_accordion {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
  scroll-margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .block_recruit_accordion[id] {
    scroll-margin-top: 80px;
  }
}

.block_recruit_accordion:first-of-type {
  margin-top: 60px;
}

.block_recruit_accordion--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.block_recruit_accordion--header[aria-expanded="true"] {
  border-radius: 4px 4px 0 0;
  border-bottom-color: transparent;
}

.block_recruit_accordion--header:hover {
  background: #f5f7f6;
  box-shadow: 0 2px 8px rgba(41, 57, 49, 0.1);
}

.block_recruit_accordion--ttl {
  flex: 1;
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #293931;
  text-align: left;
}

.block_recruit_accordion--toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.block_recruit_accordion--toggle-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #293931;
  text-transform: lowercase;
}

.block_recruit_accordion--toggle-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #293931;
  border-radius: 50%;
}

.block_recruit_accordion--toggle-icon::before,
.block_recruit_accordion--toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #293931;
  transition: transform 0.3s;
}

.block_recruit_accordion--toggle-icon::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.block_recruit_accordion--toggle-icon::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}

/* 開いた状態 */
.block_recruit_accordion--header[aria-expanded="true"] .block_recruit_accordion--toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.block_recruit_accordion--content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
  border-top: none;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.block_recruit_accordion--content.is-open {
  max-height: none;
  opacity: 1;
  border-color: #ddd;
}

.block_recruit_accordion--content .block_recruit_table {
  margin-top: 0;
  padding: 0 24px 24px;
}

.block_recruit_accordion--content .block_recruit_table table {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .block_recruit_accordion {
    margin-top: 24px;
  }

  .block_recruit_accordion:first-of-type {
    margin-top: 40px;
  }

  .block_recruit_accordion--header {
    padding: 16px 20px;
  }

  .block_recruit_accordion--ttl {
    font-size: 1rem;
  }

  .block_recruit_accordion--toggle-text {
    font-size: 12px;
  }

  .block_recruit_accordion--toggle-icon {
    width: 20px;
    height: 20px;
  }

  .block_recruit_accordion--toggle-icon::before {
    width: 8px;
  }

  .block_recruit_accordion--toggle-icon::after {
    height: 8px;
  }

  .block_recruit_accordion--content .block_recruit_table {
    padding: 0 16px 20px;
  }
}


/* ============================================
   サンクスページ（thanks）
============================================ */
.thanks {
  text-align: center;
}

.thanks--body {
  margin-top: 40px;
}

.thanks--txt {
  font-size: 15px;
  line-height: 2;
  color: #575757;
  margin: 0 0 24px;
}

.thanks--txt:last-of-type {
  margin-bottom: 0;
}

.thanks--contact {
  margin-top: 40px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}

.thanks--contact-ttl {
  font-size: 14px;
  font-weight: 600;
  color: #293931;
  margin: 0 0 12px;
}

.thanks--contact-info {
  font-size: 15px;
  line-height: 1.8;
  color: #575757;
  margin: 0;
}

.thanks--contact-info a {
  color: #293931;
  text-decoration: underline;
}

.thanks--btn {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .thanks--body {
    margin-top: 32px;
  }

  .thanks--txt {
    font-size: 14px;
  }

  .thanks--contact {
    padding: 20px;
  }

  .thanks--btn {
    margin-top: 40px;
  }
}


/* ============================================
   フッター スマホ余白調整
   ※追従ボタン削除のためpadding-bottom無効化
============================================ */
@media screen and (max-width: 766px) {
  .footer {
    padding-bottom: 0;
  }
}


/* ============================================
   お役立ち情報 見出しサイズ調整
============================================ */
@media screen and (max-width: 768px) {
  .wp-block-heading.section-spacing {
    font-size: 1.6rem;
  }
}


/* ============================================
   アイキャッチタイトル スマホサイズ調整
============================================ */
@media screen and (max-width: 768px) {
  .eyecatch--ttl.-jp {
    font-size: 2.2rem;
  }
}


/* ============================================
   採用2カラム gap調整
============================================ */
.block_recruit_two_column--inner {
  gap: 1rem;
}

@media screen and (max-width: 766px) {
  .block_recruit_two_column--inner {
    gap: 1rem;
  }
}


/* ============================================
   募集要項アコーディオン テーブル横スクロール対応
============================================ */
@media screen and (max-width: 768px) {
  .block_recruit_accordion--content .block_recruit_table {
    overflow-x: auto;
  }

  .block_recruit_accordion--content .block_recruit_table table {
    min-width: 600px;
  }
}


/* ============================================
   block_recruit_txt_img_vertical 下余白
============================================ */
.block_recruit_txt_img_vertical.-mb80 {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .block_recruit_txt_img_vertical.-mb80 {
    margin-bottom: 60px;
  }
}

/* ============================================
   トップMVキャッチ位置調整（スマホ）
============================================ */
@media screen and (max-width: 766px) {
  .top_mv--catch {
    top: auto;
    bottom: 40px;
  }
}


/* ============================================
   エントリーページ 見出し1行表示（PC）
============================================ */
@media screen and (min-width: 769px) {
  .block_recruit_txt_img_vertical.-mb80 .ttl {
    font-size: 2.25rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}


/* ============================================
   大きめボタン（.btn.-lg）
============================================ */
.btn.-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 20px 48px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #293931 0%, #1a472a 100%);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}

.btn.-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 57, 49, 0.3);
}

@media screen and (max-width: 768px) {
  .btn.-lg {
    min-width: 100%;
    width: 100%;
    padding: 18px 32px;
    font-size: 1rem;
  }
}


/* ============================================
   送信ボタン（ボタンUI）
============================================ */
.btn--submit,
input.btn--submit[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 18px 48px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #293931 0%, #1a472a 100%);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}

.btn--submit:hover,
input.btn--submit[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 57, 49, 0.3);
  color: #fff;
}

.btn--submit:focus,
input.btn--submit[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 57, 49, 0.2);
}

@media screen and (max-width: 768px) {
  .btn--submit,
  input.btn--submit[type="submit"] {
    min-width: 100%;
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
  }
}


/* ============================================
   論文リストスタイル（診療施術紹介ページ用）
============================================ */
.block_recruit_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.block_recruit_list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 1.8;
  color: #575757;
}

.block_recruit_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #293931;
}

.block_recruit_list li:last-child {
  margin-bottom: 0;
}


/* ============================================
   設備画像スタイル（診療施術紹介ページ用）
============================================ */
.block_recruit_ttl_txt--fig {
  margin: 24px 0 40px;
  max-width: 600px;
}

.block_recruit_ttl_txt--fig img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .block_recruit_ttl_txt--fig {
    margin: 16px 0 32px;
  }
}


/* ============================================
   対談プロフィールブロック（block_profile）
============================================ */
.block_profile--ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #575757;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}

.block_profile {
  display: flex;
  gap: 40px;
  padding: 40px;
  padding-bottom: 28px;
  background: #f5f7f6;
  border-radius: 8px;
  margin-top: 0;
  margin-bottom: 12px;
  border-bottom: 1px solid #ddd;
}

.block_profile--item {
  flex: 1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.block_profile--img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
}

.block_profile--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block_profile--info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block_profile--name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #293931;
  margin: 0;
}

.block_profile--name span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #575757;
  margin-left: 8px;
}

.block_profile--desc {
  font-size: 13px;
  line-height: 1.8;
  color: #575757;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .block_profile {
    flex-direction: column;
    gap: 32px;
    padding: 24px;
    padding-bottom: 20px;
    margin-bottom: 12px;
  }

  .block_profile--item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .block_profile--img {
    width: 120px;
    height: 120px;
  }

  .block_profile--info {
    gap: 8px;
  }

  .block_profile--name {
    font-size: 1rem;
  }

  .block_profile--name span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .block_profile--desc {
    font-size: 12px;
  }
}
