@charset "utf-8";

/* ============================================================
   A-5 完全アイソレート方針（2026-07-05 確定・変更時は必読）

   このシートは旧採用サイト由来の legacy CSS。静的パススルー5ページ
   （/ir/inquiry/・/careers/interview/01-04/）で、新デザイン chrome
   （.site-header/.site-footer＝site-chrome.css）と同居する。
   legacy のグローバル reset / 裸要素セレクタ / *!important が chrome を
   汚染しないよう、legacy 由来のルールは境界クラス .l-legacy（=#main。
   interview は #container が </div> 不足で footer を内包するため #main）
   の配下に封じ込めている。

   ◆ 書き方の規約（境界内ルールを触る/足すときは必ず守る）
   1. 境界内の子孫セレクタは必ず「:where(.l-legacy) 要素」で書く。
      :where() は接頭辞の特異度を 0 にするため、セレクタ全体の特異度は
      元の裸セレクタと完全に同値（例: :where(.l-legacy) div = 0,0,1 = 旧 div）。
      → 境界内のカスケード（reset vs .max/.block 等のクラス規則）は
        スコープ前と数学的に等価に保たれる。
   2. 「.l-legacy 要素」と素朴に書かない（0,1,1 に跳ね上がり、legacy の
      単一クラス規則 0,1,0 を reset が上書きする。実害例: .max{margin:0 -500%}
      が負けて box03 全幅帯が消失 → 1161a5f で :where 化し復旧）。
   3. コンテナ根そのもの（旧 body の color/font/box-sizing の付け替え先）
      だけは plain .l-legacy（0,1,0）でよい。継承値は子孫で特異度を持たない。
   4. reset 内の !important（box-sizing / a:hover opacity）は境界内で維持
      ＝legacy 描画は従来と同一。境界外（chrome）には一切マッチしない。

   ◆ 将来の移行パス
   :where(境界) 方式は @scope の手動等価物。対応下限を Safari 17.4+/
   Chrome 118+ に上げられたら「:where(.l-legacy) X」→「@scope (.l-legacy){ X }」
   へ機械的に書き換え可能（意味同一）。@layer は !important の layer 逆転則
   により本件の封じ込めには使えない（検討済み・不採用）。

   ◆ 運用
   このファイルは build.mjs の ?v= 自動付与の対象外（パススルー参照）。
   編集したら 5ページの <link ?v=> を md5 先頭8桁で手動 bump すること。
   詳細経緯＝docs/handoff/restart-after-2026-07-05c.md
   ============================================================ */

/*------------------------------*/
/* RESET & SETTING */
/*------------------------------*/
/* ページ級の最小リセット：chrome と legacy がページ箱を共有するため body margin だけは全体で0にする（A-5 Stage2） */
html, body { margin: 0; padding: 0; }

/* Meyer reset は legacy 本文（.l-legacy = #main。interview は #container が footer を内包する崩れがあり #main に付与）配下だけに限定＝新デザイン chrome（.site-header/.site-footer）へ漏らさない（A-5 Stage2 完全アイソレート） */
:where(.l-legacy) div, :where(.l-legacy) span, :where(.l-legacy) applet, :where(.l-legacy) object, :where(.l-legacy) iframe,
:where(.l-legacy) h1, :where(.l-legacy) h2, :where(.l-legacy) h3, :where(.l-legacy) h4, :where(.l-legacy) h5, :where(.l-legacy) h6, :where(.l-legacy) p, :where(.l-legacy) blockquote, :where(.l-legacy) pre,
:where(.l-legacy) a, :where(.l-legacy) abbr, :where(.l-legacy) acronym, :where(.l-legacy) address, :where(.l-legacy) big, :where(.l-legacy) cite, :where(.l-legacy) code,
:where(.l-legacy) del, :where(.l-legacy) dfn, :where(.l-legacy) em, :where(.l-legacy) font, :where(.l-legacy) img, :where(.l-legacy) ins, :where(.l-legacy) kbd, :where(.l-legacy) q, :where(.l-legacy) s, :where(.l-legacy) samp,
:where(.l-legacy) small, :where(.l-legacy) strike, :where(.l-legacy) strong, :where(.l-legacy) sub, :where(.l-legacy) sup, :where(.l-legacy) tt, :where(.l-legacy) var,
:where(.l-legacy) b, :where(.l-legacy) u, :where(.l-legacy) i, :where(.l-legacy) center,
:where(.l-legacy) dl, :where(.l-legacy) dt, :where(.l-legacy) dd, :where(.l-legacy) ol, :where(.l-legacy) ul, :where(.l-legacy) li,
:where(.l-legacy) fieldset, :where(.l-legacy) form, :where(.l-legacy) label, :where(.l-legacy) legend, :where(.l-legacy) hr,
:where(.l-legacy) table, :where(.l-legacy) caption, :where(.l-legacy) tbody, :where(.l-legacy) tfoot, :where(.l-legacy) thead, :where(.l-legacy) tr, :where(.l-legacy) th, :where(.l-legacy) td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	color: inherit;
	text-decoration: none;
}

html {
	overflow: auto;
}

body {
	font-size: 62.5%;
	overflow: hidden;
	min-width: 1100px;
}


:where(.l-legacy) article, :where(.l-legacy) aside, :where(.l-legacy) dialog, :where(.l-legacy) footer, :where(.l-legacy) header, :where(.l-legacy) section, :where(.l-legacy) nav, :where(.l-legacy) figure, :where(.l-legacy) menu {
	display: block;
}

:where(.l-legacy) ol, :where(.l-legacy) ul {
	list-style: none;
}

:where(.l-legacy) table {
	border-collapse:collapse;
	border-spacing:0;
}

:where(.l-legacy) br {
	letter-spacing:normal;
}

:where(.l-legacy) img {
	vertical-align: top;
}

/* legacy 本文は content-box 前提。境界内だけに限定し、chrome(site-chrome)の border-box を壊さない。
   旧: *{box-sizing:unset!important} が全 chrome を content-box に強制していた漏れ（A-5 Stage2 で根絶）。
   境界内では !important を維持し legacy 描画を従来と同一に保つ。 */
.l-legacy, :where(.l-legacy) *, :where(.l-legacy) ::after, :where(.l-legacy) ::before {
	box-sizing: content-box !important;
}

/*------------------------------*/
/* UTILITY */
/*------------------------------*/
* html .clearfix {
	zoom: 1;
}
*+html .clearfix {
	zoom: 1;
}
.clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"),
       local("Yu Gothic Medium"),
       local("YuGothic-Regular"),
       local("Yu Gothic");
}

@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"),
       local("Yu Gothic");
}

/* 旧 body の font-family/color を .l-legacy に付け替え＝legacy 本文だけが継承し chrome に漏らさない（A-5 Stage2） */
.l-legacy,
:where(.l-legacy) table,
:where(.l-legacy) input, :where(.l-legacy) textarea, :where(.l-legacy) select, :where(.l-legacy) option {
	font-family: "游ゴシック体","Yu Gothic",YuGothic,"Hiragino Kaku Gothic Pro","メイリオ",sans-serif;
	color: #333;
}

:where(.l-legacy) a:hover img,
:where(.l-legacy) a:hover {
	filter: alpha(opacity=50) !important;
	opacity: 0.5 !important;
}

/*------------------------------*/
/* STYLE */
/*------------------------------*/
/* font-smoothing はページ級で維持（本サイト標準・chrome/legacy 共通）。
   color/line-height/text-align は legacy 本文だけに付け替え＝chrome へ漏らさない（A-5 Stage2）。 */
body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

.l-legacy {
	color: #000;
	line-height: 1.6;
	text-align: center;
}

#cover {
	width:100%;
	height:100%;
	background-color: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

#container {
	min-width: 1180px;
}

#gHeader {
	width: 100%;
	height: 200px;
	position: fixed;
	top: 0;
	left: 0;
	font-size: 1.4em;
	font-weight: bold;
	color: #fff;
	background: url(../img/common/h_shadow.png) repeat-x top left;
	z-index: 1000;
}

.topheader {
	background: none!important;
}

.topheader::before {
	content:"";
	display:block;
	width: 100%;
	height: 200px;
	position: fixed;
	top: 0;
	left: 0;
	background: url(../img/common/h_shadow.png) repeat-x top left;
	opacity:0;
	transition: opacity 0.5s ease-in-out;
}

.topheader.scrolled::before {
	opacity: 1; /* スクロール時に表示 */
}
#gHeader h1 {
	position: absolute;
	top: 30px;
	left: 30px;
}

#gHeader ul li a {
	color: #fff;
}
#gHeader ul li a:hover {
	color: #c2ceff;
}

#gHeader ul li a {
	transition: color .3s;
}

#gHeader ul li {
	float: left;
	padding-right: 30px;
	position: relative;
}

#gHeader ul li .here {
	position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    padding-right: 28px;
}

#gHeader ul li:last-child {
	padding-right: 0;
}

#gHeader ul {
	width: 600px;
    top: 30px;
    right: 140px;
    position: absolute;
}

#gHeader ul.lang {
	width: 100px;
	top: 30px;
	right: 2px;
	position: absolute;
}

#gHeader ul.lang li {
	padding-right: 5px;
}

#gHeader ul.lang li.on a {
	color: #cecdcd;
}

#gHeader ul.lang li.ja {
	top: -10px;
    left: 20px;
}

#gHeader ul.lang li.en {
	top: 20px;
    right: 20px;
}

#cont {
	width: 980px;
	margin: 0 auto;
}

.open {
	font-family: 'Open Sans', sans-serif;
}

#main p {
	font-size: 1.5em;
	line-height: 1.8;
}

.block {
	display: block;
	padding-bottom: 13px;
}

.sp {
	display: none !important;
}

#gHeader .menu {
	display: none;
}

#gHeader .menuBox {
	display: none;
}

.btn01 {
	width: 158px;
    height: 30px;
    margin: 0 auto;
    border: 1px solid #98A0C1;
    font-size: 1.4em;
    font-weight: bold;
    color: #303F83;
    padding-top: 8px;
    margin-top: 50px;
	letter-spacing: 1.3px;
	position: relative;
}

.btn01:hover {
	background: #98A0C1;
	color: #fff;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.btn01 span {
	position: absolute;
	top: 12px;
    right: -51px;
}

.btn02 {
	width: 158px;
    height: 30px;
    margin: 0 auto;
    font-size: 1.4em;
    font-weight: bold;
    color: #303F83;
    padding-top: 8px;
    margin-top: 40px;
	letter-spacing: 1.3px;
	position: relative;
	background: #fff;
}

.btn02:hover {
	background: #303F83;
	color: #fff;
	-webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.btn02 span {
	position: absolute;
	top: 12px;
    right: -51px;
}

.btn03 {
	width: 158px;
    height: 30px;
    font-size: 1.4em;
    font-weight: bold;
    color: #303F83;
    padding-top: 8px;
    margin-top: 40px;
	letter-spacing: 1.3px;
	position: relative;
	background: #fff;
	text-align: center;
}

.btn03 span.icon {
	position: absolute;
	top: 14px;
    right: 33px;
}

.btn03 span.arrow {
	position: absolute;
	top: 12px;
    right: -51px;
}

.pagetop {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 10px;
}

/* 旧 legacy フッタ。裸 footer{} は新デザイン .site-footer に余白/位置を漏らすため .l-legacy 配下に限定
   （passthrough の legacy 本文に <footer> は無い＝実質デッド化＝源で漏れを断つ。A-5 Stage2）。 */
:where(.l-legacy) footer {
	padding: 18px 0 40px;
	margin-bottom: -16px;
	position: relative;
}

:where(.l-legacy) footer .policy {
	position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.2em;
}

:where(.l-legacy) footer .copy {
	position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.2em;
}

/*------------------------------*/
/* FADE */
/*------------------------------*/


.animated {
  -webkit-animation-duration: 2.2s;
  animation-duration: 2.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.ie9 .wow {
	opacity: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@media all and (min-width: 0) and (max-width: 767px) {
	
	body {
		min-width: auto;
	}
	
	.sp {
		display: block !important;
	}
	
	.pc {
		display: none !important;
	}
	
	:where(.l-legacy) a:hover img,
	:where(.l-legacy) a:hover {
		filter: alpha(opacity=100) !important;
		opacity: 1 !important;
	}
	
	:where(.l-legacy) img {
		width: 100%;
		height: auto;
	}

	body {
		font-size: 12px;
		min-width: inherit;
	}
	
	#cover {
		visibility: hidden;
	}
	
	#container {
		min-width: auto;
	}

	#main p {
		font-size: 1.2em;
	}
	
	:where(.l-legacy) footer {
		font-size: 0.7em;
		padding-bottom: 10px;
		margin-bottom: -19px;
	}
	
		
	#gHeader {
		background: url(../img/common/h_shadow_sp.png) repeat-x top left;
		background-size: 1px 80px;
		height: 79px;
	}
	
	#gHeader h1 {
		width: 120px;
		height: 80px;
		top: 20px;
    	left: 14px;
	}
	
	#gHeader ul {
		width: auto;
		text-align: center;
		top: 30px;
    	left: 30px;
	}
	
	#gHeader ul.lang {
		width: 140px;
    	bottom: 0;
    	top: auto;
	}
	
	#gHeader ul.lang li.ja {
		top: -10px;
		left: 0;
	}
	
	#gHeader ul.lang li.middle {
		right: 22px;
    	width: 43px;
	}
	
	#gHeader ul.lang li.en {
		top: 28px;
    	right: 45px;
	}
	
	#gHeader ul.lang li.on a {
		color: #828cbf;
	}
	
	#gHeader .menu {
		display: block;
		position: fixed;
		right: 0;
		top: 11px;
		z-index: 500;
	}
	
	#gHeader .menu a {
		display: block;
    	padding: 17px;
    	width: 18px;
	}
	
	#gHeader .menuBox {
		padding: 5px;
		width: 80%;
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 600;
		background-color: rgba(47, 62, 133, 0.92);
		box-sizing: border-box;
	}
	
	#gHeader .menuBox .close {
		width: 18px;
		position: absolute;
		top: 35px;
		right: 15px;
	}
	
	#gHeader .menuBox .subBox {
		position: absolute;
		top:0;
		left: -130px;
		right: 0;
		bottom: 0;
		margin:auto;
		width: 115px;
		height: 442px;
	}
	
	#gHeader .menuBox .subBox ul li {
		padding-bottom: 20px;
		padding-left: 0;
	}
	
	.btn01 {
		font-size: 1.15em;
    	margin-top: 30px;
	}
	
	.btn02 {
		font-size: 1.15em;
    	margin-top: 30px;
	}
	
	.btn03 {
		font-size: 1.15em;
    	margin-top: 30px;
	}
	
	.pagetop {
		bottom: 46px;
	}
	
	:where(.l-legacy) footer ul {
		width: 280px;
		margin: 26px auto 25px;
		padding-left: 60px;
	}

	:where(.l-legacy) footer li {
		width: 100px;
    	text-align: left;
		float: left;
		color: #2F3D85;
		font-size: 2.0em;
		font-weight: bold;
		padding: 0 30px 20px 0;
	}

	:where(.l-legacy) footer li:nth-child(2n) {
		padding-right: 0;
	}

	:where(.l-legacy) footer .policy {
		position: static;
		font-size: 1.5em;
		margin-bottom: 20px;
	}

	:where(.l-legacy) footer .copy {
		position: static;
	}

	.services > div {
		display: flex;
        align-items: center;
	}

	.services__list {
		/*left: 0 !important;*/
        width: 15rem !important;
        position: relative !important;
    }

	.services__list > li {
		text-align: left;
		float: none !important;
	}

	:where(.l-legacy) footer .dropdown__services__list {
		margin: 0;
		padding-top: 1rem;
		padding-left: 0;
    }

	:where(.l-legacy) footer .dropdown__services__list li {
		float: none !important;
		font-size: 1rem !important;
		padding-bottom: 0;
		margin-bottom: 0.5rem;
	}

	:where(.l-legacy) footer .dropdown__info__list {
		margin: 0;
		padding-top: 1rem;
		padding-left: 0;
    }

	:where(.l-legacy) footer .dropdown__info__list li {
		width:100%;
		float: none !important;
		font-size: 1rem !important;
		padding-bottom: 0;
		margin-bottom: 0.5rem;
	}

	.info > div {
		display: flex;
        align-items: center;
	}

	.info__list {
		/*left: 0 !important;*/
        width: 15rem !important;
        position: relative !important;
    }

	.info__list > li {
		text-align: left;
		float: none !important;
	}

	:where(.l-legacy) footer .dropdown__info__list {
		margin: 0;
		padding-top: 1rem;
		padding-left: 0;
    }

	:where(.l-legacy) footer .dropdown__news__list li {
		float: none !important;
		font-size: 1rem !important;
		padding-bottom: 0;
		margin-bottom: 0.5rem;
	}
}

.pc.dropdown__services {
	padding-bottom: 0.5rem;
}

.pc.dropdown__services .dropdown__services__list {
    width: 12rem !important;
	position: absolute !important;
	left: 0 !important;
	padding-bottom: 1rem !important;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
	background: #304183;
}

.pc.dropdown__services .dropdown__services__list li {
	text-align: left;
	padding-top: 1rem !important;
	padding-right: 0 !important;
	float: none !important;
	display: block;
}

.pc.dropdown__info {
	padding-bottom: 0.5rem;
}

.pc.dropdown__info .dropdown__info__list {
    width: 12rem !important;
	position: absolute !important;
	left: 0 !important;
	padding-bottom: 1rem !important;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
	background: #304183;
}

.pc.dropdown__info .dropdown__info__list li {
	text-align: left;
	padding-top: 1rem !important;
	padding-right: 0 !important;
	float: none !important;
	display: block;
}

/*bootstrap icons*/
.bi-caret-down-fill {
	font-size: 0.5rem;
}

.bi-caret-down-fill::before {
	padding-left: 0.5rem;
	transform: translateY(-0.125rem);
}

.bi-caret-right-fill {
	font-size: 0.5rem;
}

.bi-caret-right-fill::before {
	padding-left: 0.5rem;
}

.link--pdf {
	text-decoration-line: underline;
    color: #2F3D85;
}

.font-size-normal {
	font-size: 1rem;
}

.font-size-small {
	font-size: 0.8rem;
}

.text-right {
	text-align: right;
}

.table-caption--mb-1 {
	margin-bottom: 0.25rem;
}