/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* 登録ボタンを非表示 */
body.page-id-27418 a.um-button.um-alt[href*="register-applicant"] {
  display: none !important;
}

/* ログインボタンを囲む親要素を中央寄せに上書き */
body.page-id-27418 .um-left.um-half {
  width: 100% !important;
  text-align: center !important;
  float: none !important;
  display: block !important;
}

/* ログインボタン自体も中央に */
body.page-id-27418 #um-submit-btn {
  display: inline-block !important;
  margin: 0 auto !important;
  float: none !important;
}

.card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95em;
  color: #555;
}

.card-button {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: #0073aa;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.card-button:hover {
  background: #005a87;
}

/* 管理部と調査部両方のログインページ */
body.page-id-27685 .nsl-container,
body.page-id-27562 .nsl-container {
    display: none !important;
}

/* ───────── ① ページ全体 2 カラム ───────── */
.investigation-container {
  max-width: 1400px;      /* 限界幅を指定 */
  margin: 0 auto;         /* 中央寄せ */
  padding: 2em 2em;       /* 左右の余白を少なく */
  display: flex;
  gap: 2em;
  box-sizing: border-box;
}

/* ───────── ② 左カラム：依頼一覧 ───────── */
.investigation-sidebar{
  flex:0 0 260px;              /* 固定 260px */
  border-right:1px solid #ccc;
  padding-right:1.2em;
}

.investigation-sidebar h2{font-size:1.4em;margin-bottom:1em}

.investigation-sidebar ul{list-style:none;margin:0;padding:0}
.investigation-sidebar li{margin-bottom:1em}
.investigation-sidebar a{
  display:block;
  padding:.8em;
  background:#f5f5f5;
  border-radius:5px;
  text-decoration:none;
  color:#333;
  transition:background .2s;
}
.investigation-sidebar a:hover{background:#e0e0e0}

/* ───────── ③ 右カラム：調査内容 ───────── */
.investigation-main{
  flex:1;                      /* 残り幅を全て使用 */
}

.investigation-main h2{
  font-size:1.6em;
  margin-bottom:1em;
}

/* ───── 調査詳細カード ───── */
.detail-block{
  width:100%;
  background:#fff;
  border:1px solid #ccc;
  border-radius:10px;
  padding:2em;
  margin-bottom:2.5em;
}

/* 左右分割（個人情報 / 職歴など） */
.detail-inner{
  display:flex;
  gap:3em;
  align-items:flex-start;
}

.detail-left{
  flex:0 0 40%;               /* 必要なら 45% 等に調整 */
  min-width:300px;            /* 狭くなりすぎ防止 */
}
.detail-right{
  flex:1;                     /* 残りスペース全部 */
}

/* 見出しとリスト */
.detail-block h3{font-size:1.3em;margin-bottom:1em}
.detail-block h4{
  margin:2em 0 .6em;
  font-size:1.1em;
  font-weight:bold;
  color:#0073aa;
}
.detail-block ul{padding-left:1.3em;margin-bottom:1em}
.detail-block li{margin-bottom:.5em}

/* テキストエリア（調査メモ） */
textarea{
  width:100%;
  min-height:120px;
  padding:.8em;
  font-size:1em;
  margin:.5em 0 1.5em;
  border:1px solid #bbb;
  border-radius:5px;
  background:#fafafa;
  resize:vertical;
}



/* ───────── ④ レスポンシブ（スマホ） ───────── */
@media (max-width: 768px){
  .investigation-container{
    flex-direction:column;
    padding:1.5em;
  }
  .investigation-sidebar{
    border-right:none;
    border-bottom:1px solid #ccc;
    padding:0 0 1.5em;
    margin-bottom:1.5em;
  }
  .detail-inner{
    flex-direction:column;
  }
  .detail-left,
  .detail-right{
    flex:1 0 100%;
    min-width:auto;
  }
}

/* 審査部マイページ：調査済み履歴書一覧テーブルのスタイル */
.reviewer-list {
	width: 100%;
	border-collapse: collapse;
	margin-top: 2em;
}

.reviewer-list th,
.reviewer-list td {
	border: 1px solid #ccc;
	padding: 0.5em;
	text-align: left;
}

.reviewer-list th {
	background-color: #f8f8f8;
	font-weight: bold;
}

.reviewer-list td a {
	color: #0073aa;
	text-decoration: underline;
}

