@charset "utf-8";

.entry-title, .entry-content h2:not([class]) {
    &::after {
        border-bottom: #F27638 6px solid;
		bottom: -16px;
    }
}

/* よくある質問エリア全体 */
.ep-faq-container {
  max-width: 96%;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}

/* カテゴリ見出し */
.ep-faq-category {
  font-size: 1.4em;
  font-weight: bold;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 6px solid #F27638;
  line-height: 1.4;
}

/* アコーディオンのアイテム（1つの質問） */
.ep-faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.3s;
}

/* 開いたときのスタイル */
.ep-faq-item[open] {
  border-color: #333;
}

/* 質問部分（クリックエリア） */
.ep-faq-question {
  display: flex;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  font-size: 1.05em;
  cursor: pointer;
  list-style: none;
  position: relative;
  background-color: #fff;
  border-radius: 4px;
}

/* デフォルトのマーカー非表示（Chrome/Safari用） */
.ep-faq-question::-webkit-details-marker {
  display: none;
}

/* Qマークのデザイン */
.ep-faq-q-mark {
  display: inline-block;
  background-color: #00582e;
  color: #fff;
  font-size: 0.9em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Aマークのデザイン */
.ep-faq-a-mark {
  display: inline-block;
  color: #F27638;
  font-weight: 900;
  font-size: 1.4em;
  margin-right: 15px;
  flex-shrink: 0;
  line-height: 1;
}

/* プラス・マイナスアイコンエリア */
.ep-faq-icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

/* アイコンの線 */
.ep-faq-icon::before,
.ep-faq-icon::after {
  content: "";
  position: absolute;
  background-color: #333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

/* 横棒 */
.ep-faq-icon::before {
  width: 16px;
  height: 2px;
}

/* 縦棒 */
.ep-faq-icon::after {
  width: 2px;
  height: 16px;
}

/* 開いたときに縦棒を回転させて横棒にする（マイナスになる） */
.ep-faq-item[open] .ep-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 回答エリア */
.ep-faq-answer {
  overflow: hidden;
  border-top: 1px solid #eee;
  background-color: #fafafa;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.ep-faq-answer-inner {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.ep-faq-answer p {
  margin: 0;
  font-size: 0.95em;
}


/* 一日の流れ */
.ep-flow-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

/* 縦線（タイムラインの軸） */
.ep-flow-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px; /* 左端からの距離 */
  width: 4px;
  background: #eee;
  z-index: 0;
}

/* 各項目のブロック */
.ep-flow-item {
  position: relative;
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
  z-index: 1; 
}

/* 最後の項目はマージンなし */
.ep-flow-item:last-child {
  margin-bottom: 0;
}

/* 時間表示部分 */
.ep-flow-time {
  background-color: #F27638;
  color: #fff;
  font-weight: bold;
  font-size: 0.9em;
  padding: 5px 10px;
  border-radius: 4px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  margin-right: 20px;
  position: relative;
}

/* タイムライン上の丸い装飾（ドット） */
.ep-flow-item::after {
  content: none;
  position: absolute;
  left: 26px;
  top: 15px;
  width: 12px;
  height: 12px;
  background-color: #333;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #F27638;
}

/* コンテンツ部分（見出し・説明） */
.ep-flow-content {
  background-color: #fafafa; 
  padding: 15px 20px;
  border-radius: 8px;
  flex: 1;
}

/* 見出し */
.ep-flow-title {
  margin: 0 0 8px 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

/* 説明文 */
.ep-flow-desc {
  margin: 0;
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

/* 募集要項コンテナ */
.ep-recruit-container {
  max-width: 96%;
  margin: 0 auto;
  padding: 20px 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}

/* ヘッダーエリア */
.ep-recruit-header {
  text-align: center;
  margin-bottom: 40px;
}

.ep-recruit-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.ep-recruit-subtitle {
  font-size: 2em;
  color: #F27638;
  font-weight: bold;
  margin-bottom: 20px;
}

.ep-recruit-lead {
  font-size: 1em;
  line-height: 1.8;
  background-color: #FFF5F0; 
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
  text-align: left;
}

/* テーブルデザイン */
.ep-recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  border-top: 2px solid #F27638;
}

.ep-recruit-table th,
.ep-recruit-table td {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.ep-recruit-table th {
  width: 25%;
  background-color: #fafafa;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

.ep-recruit-table td {
  background-color: #fff;
}

/* リストのスタイル調整 */
.ep-recruit-list {
  margin: 0;
  padding-left: 20px;
}

.ep-recruit-list li {
  margin-bottom: 8px;
}

.ep-recruit-list li:last-child {
  margin-bottom: 0;
}

/* 注釈テキスト */
.ep-recruit-note {
  font-size: 0.9em;
  color: #666;
}

/* CTAエリア（応募ボタン周辺） */
.ep-recruit-cta {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
}

.ep-recruit-cta p {
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.6;
}

.ep-recruit-btn {
  display: inline-block;
  background-color: #F27638;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 60px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(242, 118, 56, 0.3);
}

.ep-recruit-btn:hover {
  background-color: #d65d20;
  transform: translateY(-2px);
  color: #fff;
}

/* 会社概要エリア全体 */
.ep-company-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}

/* 会社概要テーブル */
.ep-company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
  border-top: 2px solid #F27638;
}

.ep-company-table th,
.ep-company-table td {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
  line-height: 1.6;
}

/* 見出しセル（左側） */
.ep-company-table th {
  width: 30%;
  background-color: #fafafa;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  text-align: center;
}

/* データセル（右側） */
.ep-company-table td {
  background-color: #fff;
}

/* 注釈テキスト */
.ep-access-note {
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
  display: inline-block;
}

.textbox-orange {
  font-size: 1em;
  line-height: 1.8;
  background-color: #FFF5F0; 
  margin: 20px 0;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
  text-align: left;
}

/* インタビューコンテナ */
.ep-interview-container {
  max-width: 96%;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}

/* ヘッダーエリア（プロフィール） */
.ep-interview-header {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  background-color: #fafafa;
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid #F27638;
}

.ep-interview-profile-img {
  flex: 0 0 250px;
  text-align: center;
}

.ep-interview-profile-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ep-interview-profile-info {
  flex: 1;
}

.ep-label {
  background-color: #F27638;
  color: #fff;
  font-size: 0.85em;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

.ep-interview-catch {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #333;
}

.ep-interview-name {
  font-size: 1em;
  color: #666;
  font-weight: bold;
}

/* Q&Aボックス */
.ep-qa-box {
  margin-bottom: 50px;
}

/* 質問エリア */
.ep-qa-head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.ep-q-mark {
  background-color: #333;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: -5px;
}

.ep-qa-question {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin: 0rem 0 0rem 0 !important;
  padding-top: 2px;  
}

/* 回答エリア */
.ep-qa-answer {
  margin-left: 55px; /* Qマークの分だけインデント */
  padding: 25px;
  background-color: #FFF5F0; /* ごく薄いオレンジ背景 */
  border-left: 4px solid #F27638;
  border-radius: 0 8px 8px 8px;
}

.ep-ans-title {
  color: #F27638;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.ep-qa-answer p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1em;
}

.ep-qa-answer p:last-child {
  margin-bottom: 0;
}

/* メッセージボックス */
.ep-message-box {
  background-color: #00582e;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.ep-message-box::after {
  content: "MESSAGE";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 5em;
  font-weight: bold;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}

.ep-message-title {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #F27638;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.ep-message-lead {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

.ep-message-content p {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 10px;
  opacity: 0.9;
  text-align: left;
}

/* CTAボタンエリア */
.ep-interview-cta {
  text-align: center;
  margin-top: 40px;
}

.ep-recruit-btn {
  display: inline-block;
  background-color: #F27638;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(242, 118, 56, 0.3);
}

.ep-recruit-btn:hover {
  background-color: #d65d20;
  transform: translateY(-2px);
  color: #fff;
}

/* ナビゲーションコンテナ */
.ep-inter-nav-container {
  max-width: 960px;
  margin: 40px auto 60px; 
  padding: 0 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  box-sizing: border-box;
}

.ep-inter-nav-lead {
  text-align: center;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  font-size: 1.1em;
  line-height: 1.6;
}

.sp-only {
  display: none;
}

.ep-inter-nav-row {
  display: flex;
  justify-content: center;
  gap: 30px; 
}

.ep-inter-nav-item {
  display: block;
  flex: 1; 
  background-color: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 30px 20px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.ep-inter-nav-item:hover {
  border-color: #F27638;
  box-shadow: 0 8px 15px rgba(242, 118, 56, 0.2);
  transform: translateY(-3px);
}

.ep-inter-nav-label {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 0.85em;
  padding: 6px 15px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: bold;
}

.ep-inter-nav-item:hover .ep-inter-nav-label {
  background-color: #F27638;
}

.ep-inter-nav-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0 0 10px;
  color: #333;
}

.ep-inter-nav-desc {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ep-inter-nav-arrow {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #f5f5f5;
  border-radius: 50%;
  position: relative;
  transition: background-color 0.3s;
}

.ep-inter-nav-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translate(-60%, -50%) rotate(45deg);
  transition: border-color 0.3s;
}

.ep-inter-nav-item:hover .ep-inter-nav-arrow {
  background-color: #F27638;
}

.ep-inter-nav-item:hover .ep-inter-nav-arrow::before {
  border-color: #fff;
}

/* カード全体を覆う透明リンク */
.ep-full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  text-decoration: none;
}

/* blog */

.ep-blog-container {
  max-width: 100%;
  margin: 0 auto;
  color: #333;
  line-height: 1.8;
}

.ep-toc-box {
  background-color: #f9f9f9;
  border: 2px solid #F27638; 
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 40px;
}

.ep-toc-title {
  font-weight: bold;
  font-size: 1.2em;
  color: #F27638;
  text-align: center;
  margin: 0 0 15px;
}

.ep-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ep-toc-list li {
  margin-bottom: 10px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
}

.ep-toc-list li:last-child {
  border-bottom: none;
}

.ep-toc-list a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.2s;
}

.ep-toc-list a:hover {
  color: #F27638;
}

/* CTA */
.ep-cta-box {
  background-color: #f0f0f0;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
}

.ep-blog-btn {
  display: inline-block;
  background-color: #F27638;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(242, 118, 56, 0.3);
}

.ep-blog-btn:hover {
  background-color: #d65d20;
  transform: translateY(-2px);
  color: #fff;
}

.tocname {
  display: block;
  height: 160px; 
  margin-top: -160px;
  visibility: hidden;
  pointer-events: none;
}

.tocname + h2,
.tocname + h3 {
  margin-top: 0;
}

.br-sp {
  display: none;
}
