@charset "utf-8";

.hr-green-center {
  border: none;
  border-top: 2px solid #007b43; /* 緑色のライン */
  width: 70%;
  margin: 2em auto;
}



/* === 採用 ============================== */

.recruit-hero-image {
  width: 100%;
  max-width: 100%;
  margin: 1.5em 0 2em;
}

.recruit-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.recruit-catch-section {
  text-align: center;
  margin-bottom: 3em;
}

.recruit-lead {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3rem;
  margin-top: 1em;
  text-align: left;
}

.recruit-section {
  margin-top: 3em;
}

.recruit-section .section-heading {
  font-size: 1.1rem;
  font-weight: bold;
  color: #007b43;
  border-left: 5px solid #007b43;
  padding-left: 0.8em;
  margin-top: 3em;
  margin-bottom: 1em;
}

.recruit-section h4 {
  font-size: 16px;
  color: #005c30;
  margin: 1.5em 0 0.6em;
}

.highlight-bg {
  color: #007b43;
  font-weight: bold;
}



/* ▼ 職種セクション */
.recruit-section-jobs {
  margin-top: 4em;
}

.recruit-heading {
  font-size: 1.3rem;
  font-weight: bold;
  color: #007b43;
  border-left: 5px solid #007b43;
  padding-left: 0.8em;
  margin-bottom: 1.5em;
}

.recruit-catch-message {
  text-align: center;
  background: #f0faf5;
  padding: 1.5em;
  border-radius: 10px;
  margin-bottom: 2em;
  font-size: 1.2rem;
  font-weight: bold;
  color: #003d29;
  line-height: 1.6;
}

.recruit-catch-message .sub {
  font-size: 0.95rem;
  display: block;
  color: #00915e;
  margin-bottom: 0.1em;
  font-weight: 500;
}

.recruit-lead-message {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 2em;
  text-align: center;
  line-height: 1.6;
}

.recruit-job-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
}

.recruit-job-card {
  display: flex;
  flex-direction: row;
  gap: 1em;
  background: #fff;
  padding: 1.2em;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 123, 67, 0.08);
  align-items: center;
  transition: all 0.2s ease;
  border: 2px solid #00915e; 
}

.recruit-job-card:hover {
  transform: translateY(-3px);
}

.job-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.job-text {
  flex: 1;
}

.job-title {
  font-size: 1rem;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.4em;
}

.job-desc {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.6;
}

.recruit-note {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
  margin-top: 2em;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .recruit-job-card {
    flex-direction: column;
    text-align: left;
  }

  .job-image {
    width: 100%;
    height: auto;
  }
}

.recruit-job-card.vertical {
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.recruit-job-card.vertical .job-image {
  width: 120px;
  height: auto;
  margin-bottom: 0em;
}

.recruit-job-card.vertical .job-text {
  text-align: center;
}

.recruit-job-card.vertical .job-title {
  font-size: 1rem;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.5em;
margin-top: 0;
}

.recruit-job-card.vertical .job-desc {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.6;
}

.recruit-contact-section {
  text-align: center;
  background-color: #f0faf5;
  padding: 3em 1em;
  margin: 3em 0 2em;
  border-top: 2px solid #007b43;
  border-bottom: 2px solid #007b43;
}

.recruit-contact-message {
  font-size: 1rem;
  color: #005c30;
  margin-bottom: 1.5em;
  line-height: 1.6;
  font-weight: 500;
}

.recruit-contact-button-wrap {
  display: flex;
  justify-content: center;
}

.recruit-contact-button {
  background-color: #007b43;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.8em 2em;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 67, 0.15);
}

.recruit-contact-button:hover {
  background-color: #005c30;
  transform: translateY(-2px);
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .recruit-contact-button {
    width: 80%;
    font-size: 0.95rem;
  }

  .recruit-contact-message {
    font-size: 0.95rem;
  }
}








/* === 社員紹介 ★★★============================== */


/* ▼ 社員紹介ページ用スタイル ----------------------------- */

.page-title-green {
  font-size: 20px;
  font-weight: bold;
  color: #007b43;
  text-align: center;
  position: relative;
  margin: 0 auto 2em;
  display: block;
  width: fit-content;
}

.page-title-green::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: #007b43;
  border-radius: 2px;
}

/* セクション全体 */
.executives-section {
  padding: 3em 1em;
  max-width: 960px;
  margin: 0 auto;
}

/* カード全体（左揃え） */
.executive-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ← 中央揃え→左揃えに */
  text-align: left;
  margin-bottom: 4em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2.5em;
}

.executive-card:last-child {
  border-bottom: none;
}

/* 画像ブロック */
.executive-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
}

.executive-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

/* テキストブロック */
.executive-text {
  width: 100%;
  max-width: 700px;
  text-align: left;
}

/* 氏名（汎用） */
.executive-name {
  font-size: 20px;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.4em;
  text-align: left;
}

/* 所属・役職（汎用） */
.executive-role {
  font-size: 13px;
  color: #666;
  margin-bottom: 1.2em;
  letter-spacing: 0.02em;
  text-align: left;
}

/* セクション見出し */
.executive-text h4 {
  font-size: 15px;
  color: #005c30;
  margin-top: 2em;
  margin-bottom: 0.6em;
  border-left: 4px solid #007b43;
  padding-left: 0.6em;
}

/* 本文 */
.executive-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1em;
}

/* 補足テキスト */
.color-green {
  color: #007b43;
  font-size: 16px;
  font-weight: normal;
}

/* 波型区切り線 */
.wavy-divider {
  width: 100%;
  height: 20px;
  overflow: hidden;
  margin: 2em 0;
}

.wavy-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* 大きなドット罫線 */
.big-dot-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2em 0;
}

.big-dot-line::before {
  content: "● ● ● ● ● ● ● ● ● ● ●";
  font-size: 10px;
  color: #007b43;
  letter-spacing: 0.5em;
}

/* ▼ カードキャプション（シャープ・都会的） */
.executive-caption-card.modern {
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  border-left: 4px solid #007b43;
  padding: 2.5em 2em;
  max-width: 540px;
  margin: 2em 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
  text-align: left;
  border-radius: 6px;
  position: relative;
}

.executive-caption-card.modern:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.executive-caption-card .executive-name {
  font-size: 24px;
  font-weight: 700;
  color: #007b43;
  margin-bottom: 0.2em;
  padding-left: 0.2em;
  text-align: left;
}

.executive-caption-card .executive-ruby {
  font-size: 16px;
  color: #007b43;
  font-weight: 400;
  margin-bottom: 1em;
  opacity: 0.85;
  padding-left: 0.2em;
  text-align: left;
}

.executive-caption-card .executive-role {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-left: 0.2em;
  text-align: left;
}

/* ▼ レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .executive-card {
    padding-bottom: 2em;
  }

  .executive-image {
    width: 100%;
    max-width: 100%;
  }

  .executive-name {
    font-size: 18px;
  }

  .executive-role {
    font-size: 12px;
  }

  .executive-text h4 {
    font-size: 14px;
  }

  .executive-text p {
    font-size: 13px;
  }

  .executive-caption-card.modern {
    padding: 2em 1.2em;
  }

  .executive-caption-card .executive-name {
    font-size: 20px;
  }

  .executive-caption-card .executive-ruby {
    font-size: 15px;
  }

  .executive-caption-card .executive-role {
    font-size: 13px;
  }
}














/* === 店舗代行事業内サブリンク（プルダウン下のリンク群） ============================== */
.subpage-links {
  background: #f6fdf9;
  padding: 1em;
  margin: 2em 0 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 123, 67, 0.06);
  text-align: center;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.link-list li a {
  color: #007b43;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-size: 14px;
}

.link-list li a:hover {
  border-color: #007b43;
}

/* ▼ スマホ対応 */
@media screen and (max-width: 600px) {
  .ec-flow-page .solution-box {
    padding: 1em;
  }

  .ec-flow-page .solution-box h3 {
    font-size: 15px;
  }

  .ec-flow-page .solution-box li {
    font-size: 12.5px;
  }

  .link-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
  }
}



/* ▼ セクション案内ボタン----------------↓*/
/* ▼ ジャンプリンク（グリッドボタン形式） */
.anchor-links-grid {
  background-color: #f7fdfb;
  padding: 1em 1em 1.5em; /* ← 上を1emにして、下に余裕を持たせる */
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5em;
  max-width: 640px;
  margin: 1em auto 2em; /* ← 上に1emの余白追加で自然な余白に */
  border-bottom: 1px dashed #ccc;
}

/* ▼ 各ボタン */
.anchor-links-grid .btn-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #007b43;
  border: 1px solid #007b43;
  padding: 0.5em 0.6em;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
  min-height: 32px;
  transition: all 0.2s ease-in-out;
}

.anchor-links-grid .btn-anchor:hover {
  background-color: #f0f8f5;
  transform: translateY(-1px);
}

/* ▼ 長文ボタン用（中央寄せで幅広） */
.anchor-links-grid .btn-anchor.full {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 100%;
}

/* ▼ 個別対策：機械製造一覧にもしCSS効かない時の保険 */
.anchor-links-grid a[href="#factory"] {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #007b43;
  border-radius: 12px;
  padding: 0.5em 0.6em;
  font-size: 0.7rem;
  white-space: normal;
  line-height: 1.4;
}

/* ▼ ご案内ダミーボタンの余白調整 */
.anchor-links-grid .btn-anchor.dummy {
  background-color: #007b43;
  color: #fff;
  font-weight: bold;
  border: none;
  pointer-events: none;
  cursor: default;
  margin-bottom: 0.5em; /* ← 下にスペースを足して、窮屈感を解消 */
}
/* ▼ セクション案内ボタン----------------↑*/