@charset "UTF-8";

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */

*{box-sizing:border-box;margin:0;padding:0;}

html {font-family: sans-serif;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}
body {margin: 0;}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {display: block;margin:0;padding:0;}

audio,
canvas,
progress,
video {display: inline-block;}

audio:not([controls]) {display: none;height: 0;}

progress {vertical-align: baseline;}

template,
[hidden] {display: none;}

a {background-color: transparent;-webkit-text-decoration-skip: objects;}

a:active,
a:hover {outline-width: 0;}

abbr[title] {border-bottom: none;text-decoration: underline;text-decoration: underline dotted;}

b,
strong {font-weight: inherit;font-weight: bolder;}

dfn {font-style: italic;}

h1,header .logo {font-size: 200%;}
h2 {font-size: 150%;}
h3 {font-size: 128%;}
h4 {font-size: 114%;}
h5 {font-size: 100%;}
h6 {font-size: 100%;}

mark {background-color: #ff0;color: #000;}

small {font-size: 80%;}

sub,
sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}
sub {bottom: -0.25em;}
sup {top: -0.5em;}

img {border-style: none; vertical-align:top; }

svg:not(:root) {overflow: hidden;}

code,
kbd,
pre,
samp {font-family: monospace, monospace;font-size: 1em;}

figure {margin:0;}

hr {box-sizing: content-box;height: 0;overflow: visible;}

button,
input,
optgroup,
select,
textarea {font: inherit;margin: 0;}

optgroup {font-weight: bold;}

button,
input {overflow: visible;}

button,
select {text-transform: none;}

button,
html [type="button"],
[type="reset"],
[type="submit"] {-webkit-appearance: button;}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {border-style: none;padding: 0;}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {outline: 1px dotted ButtonText;}

fieldset {border: 1px solid #c0c0c0;margin: 0 2px;padding: 0.35em 0.625em 0.75em;}

legend {box-sizing: border-box;color: inherit;display: table;max-width: 100%;padding: 0;white-space: normal;}

textarea {overflow: auto;}

[type="checkbox"],
[type="radio"] {box-sizing: border-box;padding: 0;}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {height: auto;}

[type="search"] {-webkit-appearance: textfield;outline-offset: -2px;}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}

::-webkit-input-placeholder {color: inherit;opacity: 0.54;}
::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}

/* style */
/* @font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/NotoSansJP-Regular.woff2') format('woff2'); 
	font-display:swap;
} */

@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 500;
	src: url('fonts/NotoSansJP-Medium.woff2') format('woff2'); 
	font-display:swap;
}

@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/NotoSansJP-Bold.woff2') format('woff2'); 
	font-display:swap;
}


html { font-size: 16px; }
body {
	/*font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;*/
/*	font-family: 'Noto Sans Japanese', YuGothic, "Yu Gothic M", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;*/
	font-family: 'Noto Sans JP', 'Noto Sans Japanese', YuGothic, "Yu Gothic M", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	
	font-weight: 500;
	font-size: 0.875rem;/* 14px */
	line-height:1.8;
	color:#333;
}

table { border-collapse:collapse; border-spacing:0; }
th,td { empty-cells: show; }
ul,ol { list-style: none; }
li {list-style-type:none;}

a { color:#006CD8; text-decoration:none; }
button:hover,
input[type="image"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
a:hover { opacity:0.75; }

button:focus,
input[type="image"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
a:focus { opacity:0.75; }

address,em,i,q { font-style: normal; }

/* 一覧ページ用 */
/* アコーディオンボタン */
.accordion-button {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #000; /* 黒文字 */
  background-color: #fff; /* 白背景 */
  border: 1px solid #90caf9; /* 淡いブルー枠線 */
  border-radius: 4px;
  padding: 12px 15px 12px 36px;
  position: relative;
  text-align: left;
  margin-bottom: 5px;
  transition: background 0.2s ease;
}

/* ? or ▼ のアイコン（左側に表示） */
.accordion-button::before {
  content: "\25B6"; /* ?：U+25B6 */
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #1976d2; /* ブルーアクセント */
}

.accordion-button.open::before {
  content: "\25BC"; /* ▼：U+25BC */
}

/* アコーディオン中身 */
.accordion-block {
  display: none;
  padding: 12px 15px;
  background-color: #f9f9f9; /* ほんのりグレーで視認性UP */
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  color: #000; /* 中身のテキストも黒 */
}

.accordion-block.open {
  display: block !important;
}

/* リスト全体 */
.accordion-block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* リストアイテム */
.accordion-block li {
  margin: 0;
}

/* 各リンク */
.accordion-block a {
  display: inline-block;
  padding: 6px 12px;
  background: #ffffff;
  color: #000;
  border: 1px solid #90caf9;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.accordion-block a:hover {
  background: #e3f2fd;
  color: #000;
}

/* モバイル対応 */
@media screen and (max-width: 600px) {
  .accordion-block ul {
    flex-direction: column;
  }
}

/* セクション見出し（黒文字） */
.job_overview_head {
  font-size: 1.2em;
  font-weight: bold;
  margin: 1em 0 0.5em;
  color: #000;
  padding-left: 10px;
  border-left: 4px solid #1976d2;
}

/* h2中央見出し（黒に戻す） */
h2.tac {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  color: #000;
}

/* 会社名も黒文字 */
.job-company {
  font-size: 20px;
  font-weight: bold;
  margin: 0.5em 0;
  color: #000;
}



