@charset "utf-8";

/* =========================================================
   FAQ 個別質問ページ（single-question）用CSS
   /faq（.page-faq）スコープのCSSを質問ページ向けに再適用
   ========================================================= */

.page-faq div.more a {
    color: #404040 !important;
    text-decoration: none !important;
}
   
.single-question .text a.blank {
    background: none;
}
.single-question .pageimg {
    height: auto !important;
    padding: 13px 50px 0 50px;
}
.single-question .main {
    width: 100%;
    max-width: 70%;
}
@media screen and (max-width: 896px) {
    .single-question .pageimg {
        padding: 20px 20px 15px 20px;
    }
}

/* --- ページャー：お知らせ詳細(.single-post)のCSSを質問ページ用に再スコープ
       元 = archive.css の .single-post .section .section_inner .main .link 系
       （flex横並び・中央寄せ・gap30px・赤枠ボタン #C1291F・ホバーで赤背景） --- */
.single-question section .section_inner .main .link {
	margin-top: 90px;
}
.single-question section .section_inner .main .link ul {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.single-question section .section_inner .main .link ul li a {
	display: block;
	padding: 15px 42px;
	border: 1px solid #C1291F;
	border-radius: 10px;
	color: #C1291F;
}
.single-question section .section_inner .main .link ul li a:hover {
	color: #fff;
	background: #C1291F;
	text-decoration: none;
}
@media screen and (max-width: 1080px) {
    .single-question section .section_inner .main {
        max-width: 100%;
        width: 100%;
    }
} 

@media screen and (max-width: 896px) {
    
    .single-question section .section_inner .main .link.sp {
        display: block;
        margin-top: 40px;
    }
	.single-question section .section_inner .main .link ul li a {
        display: block;
		box-sizing: border-box;
		width: 110px;
		padding: 10px;
		display: block;
		text-align: center;
	}
}

@media screen and (max-width: 480px) {
    .single-question section .section_inner .main .link ul{
        gap: 16px;
    }
    .single-question section .section_inner .main .link ul li a {
        width: 90px;
    }
}

/* --- 回答コンテンツ（archive.css の .page-faq dl.faq_list dd 配下 由来） --- */
.single-question .text table {
	margin: 30px auto;
}
.single-question .text table th {
	padding: 3px 20px;
	border: #dfdfdf 2px solid;
	background: #404040;
	color: #fff;
}
.single-question .text table.nonbank th:nth-child(4) {
	background: #C1291F;
	color: #fff;
}
.single-question .text table td {
	padding: 3px 20px;
	border: #dfdfdf 2px solid;
	text-align: center;
}
.single-question .text table.nonbank td:nth-child(1) {
	background: #f4f4f4;
	text-align: left;
}
.single-question .text table.nonbank td:nth-child(4) {
	color: #C1291F;
	font-weight: bold;
}
.single-question .text a {
	color: #74B5C7;
	text-decoration: underline;
}
.single-question .text a.blank {
	color: #404040;
	text-decoration: none;
	display: inline-block;
	margin: 30px auto;
	padding: 16px 60px;
	border: 1px solid;
	border-radius: 10px;
}
.single-question .text a.blank:after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 13px;
	background: url(../images/faq/window.svg) center center no-repeat;
	margin-left: 12px;
}
.single-question .text a.blank:hover {
	background: #F4F4F4;
}
.single-question .text p {
	max-width: 850px;
}

/* --- レスポンシブ（archive.css と同じ 896px） --- */
@media screen and (max-width: 896px) {
	.single-question .text table.nonbank td:nth-child(1) {
		padding-left: 3px;
		width: 55px;
	}
	.single-question .text p {
		font-size: 14px;
	}
	.single-question .text table th {
		padding: 5px 0;
	}
	.single-question .text table td {
		padding: 3px 2px;
	}
}

/* --- H1「Question」/ 回答「Answer」ラベル（legal-station /faq 参考・色は赤） --- */
.single-question .main h1 {
    line-height: 1.2;
    margin-bottom: 40px;
}
.single-question .main h1::before {
	content: "Question";
	display: block;
	font-weight: bold;
	font-size: 20px;
	line-height: 1;
	margin-bottom: 10px;
	color: #C1291F;
}
.single-question .main .text::before {
	content: "Answer";
	display: block;
	font-weight: bold;
	font-size: 20px;
	line-height: 1;
	margin-bottom: 4px;
	color: #C1291F;
}

/* --- サイドバー（legal-station aside 参考・色は赤）
       ※幅/位置はPMGの2カラム(aside float 310px)を尊重し、ここでは見た目だけ --- */
.single-question aside .tit {
	margin-bottom: 10px;
	background: #C1291F;
	color: #fff;
	padding: 15px 8px;
}
.single-question aside .tit a {
	display: block;
    font-weight: bold;
	color: #fff;
}
.single-question aside nav ul li {
	margin-bottom: 1px;
}
.single-question aside nav ul li a {
	display: block;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 5px;
}
.single-question aside nav ul li a:hover {
	background-color: #f0f2f4;
	text-decoration: none;
}
.single-question aside nav ul li.current-cat > a {
	color: #C1291F;
}
.single-question aside nav ul li.current-cat > a::before {
	content: "\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	padding-right: 4px;
	color: #C1291F;
}

/* --- レイアウト：main と aside を float ではなく flexbox で2カラム化 --- */
.single-question section .section_inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
}
.single-question section .section_inner .main,
.single-question section .section_inner aside {
	float: none;
}
.single-question section .section_inner aside {
	flex-shrink: 0;
}
@media screen and (max-width: 896px) {
	.single-question section .section_inner {
		flex-direction: column;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）
   [01] 「PMGが大切にしていること」セクション
   流用元 = style.css の .page-attitude section.sec03（/about/philosophy）
   を .company-info-01 へ再スコープ。
   レイアウトは現マークアップ基準（経営理念/Core Value/基本理念 = 中央寄せ1カラム、
   VISION/MISSION = 2カラム）。枠線・角丸・グレーラベル・余白などの装飾のみ流用。
   ========================================================= */

.company-info-wrapper {
	max-width: 1000px;
	margin: 0 auto;
}
.company-info-wrapper .section_inner {
    width: 100% !important;
}
.company-info-07-01 .section_inner {
    max-width: 80% !important;
}

/* --- レスポンシブ時の左右16px余白（wrapper全体・端ベタ付き防止） --- */
@media screen and (max-width: 1024px) {
	.company-info-wrapper {
		box-sizing: border-box;
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* --- 見出し h2 / h3：contractページの見出し（.sct）を wrapper 全体へ流用
       流用元 = dsi.css の .sct h2 / .sct h3（/service/factoring/flow/contract）
       h2 = ピンク背景＋赤上ボーダー、h3 = 赤左ボーダー＋ピンク背景。
       ※h3 は section 直下のみに限定＝カードのラベル(h3.bg_gray)等は除外 --- */
.company-info-wrapper h2:not([class]) {
	box-sizing: border-box;
	padding: 16px;
	border-top: 2px solid #C1291F;
	margin-bottom: 30px;
	background: #FFF5F4;
	font-size: 30px;
}
.company-info-wrapper section > h3 {
	padding: 2px 0 4px 10px;
	border-left: 3px solid #C1291F;
	margin-bottom: 10px;
	background: #FFF5F4;
	font-size: 20px;
}
/* 例外：「理念経営への思い」は元の中央寄せ見出し（center/size30/medium）を優先し、.sct バー装飾を打ち消す */
.company-info-wrapper .company-info-01-01 > h3 {
	padding: 17px 0;
	border-top: 2px solid #E8E8E8;
	border-bottom: 2px solid #E8E8E8;
	border-left: none;
	background: none;
	font-size: 30px;
	text-align: center !important;
}

/* --- リード文の余白 style.css:1682-1686 由来（直下pのみに限定） --- */
.company-info-01-01 > p.center.red {
	margin-bottom: 30px;
}
.company-info-01-01 > p.center.medium {
	font-size: 18px;
	margin-bottom: 80px;
}

/* --- カード（経営理念 / Core Value / 基本理念）枠線・角丸 style.css:1688-1696 由来 --- */
.company-info-01 .sec03_list li {
	overflow: hidden;
	border: 1px solid #E8E8E8;
	border-radius: 10px;
	padding-bottom: 50px;
	margin-bottom: 20px;
	text-align: center;
}
.company-info-01 .sec03_list li:last-child {
	margin-bottom: 0;
}
.company-info-01 .sec03_list.first li {
	padding-bottom: 80px;
}
.company-info-01 .sec03_list li .size25 {
	margin-top: 15px;
}

/* --- グレーのラベル帯：参照元は h5、本ページは h3.bg_gray に適用 style.css:1698 由来 --- */
.company-info-01 .sec03_list li h3,
.company-info-01 .href_list li h3 {
	margin-bottom: 30px;
	padding: 15px 0;
	border-radius: 10px 10px 0 0;
	background: #E8E8E8;
	text-align: center !important;
}

/* --- VISION / MISSION：2カラムカード style.css:1726-1741 由来 --- */
.company-info-01 .href_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px 0;
}
.company-info-01 .href_list li {
	box-sizing: border-box;
	width: calc((100% - 20px) / 2);
	min-height: 350px;
	overflow: hidden;
	border: 1px solid #E8E8E8;
	border-radius: 10px;
	text-align: center;
}
/* カード内は中央寄せに（img_left/text_right の float は解除） */
.company-info-01 .href_list li .img_left,
.company-info-01 .href_list li .text_right {
	float: none;
	width: auto;
	margin: 0;
}
.company-info-01 .href_list li .text_right {
	width: 86%;
	margin: 20px auto 0;
}

/* --- 1024px 以下 style.css:6886 由来 --- */
@media screen and (max-width: 1024px) {
	.company-info-01 .href_list li {
		width: 48.7%;
	}
}

/* --- 896px 以下（SP） style.css:7787-7838 由来 --- */
@media screen and (max-width: 896px) {
	.company-info-wrapper h2:not([class]) {
		padding: 12px;
		font-size: 24px;
	}
	.company-info-01-01 > p.center.red {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.company-info-01-01 > p.center.medium {
		text-align: left;
		margin-bottom: 45px;
	}
	.company-info-01 .sec03_list.first li {
		padding-bottom: 30px;
	}
	.company-info-01 .href_list li {
		width: 100%;
		min-height: 0;
	}
	.company-info-01 .size25 {
		font-size: 20px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）
   [01-03] 「お客様への安心宣言」ブロック
   流用元 = style.css の .page-reassurance .reassurance（/about/reassurance）
   を .company-info-01-03 へ再スコープ。
   ※アイコンパスは dsi_ai.css(css/) 基準で ../images/... に変更。
   ========================================================= */
.company-info-01-03 > p {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
.company-info-01-03 .reassurance {
	margin: 75px auto 70px;
	max-width: 854px;
	border-radius: 10px;
	overflow: hidden;
}
.company-info-01-03 .reassurance .reassurance_inner {
	position: relative;
	height: 170px;
	margin-bottom: 4px;
	padding: 25px 35px;
	box-sizing: border-box;
	background: #FFF5F4;
}
.company-info-01-03 .reassurance .reassurance_inner:last-child {
	margin-bottom: 0;
}
.company-info-01-03 .reassurance .reassurance_inner p.size16 {
	position: relative;
	margin-left: 48px;
	text-indent: -48px;
}
.company-info-01-03 .reassurance .reassurance_inner p.size16 span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	margin-right: 16px;
	padding-top: 1px;
	box-sizing: border-box;
	border: 1px solid;
	border-radius: 30px;
	background: #fff;
	text-indent: 0;
	font-size: 16px;
}
.company-info-01-03 .reassurance .reassurance_inner .reassurance_btn {
	position: absolute;
	right: 35px;
	bottom: 25px;
}
.company-info-01-03 .reassurance .reassurance_inner .reassurance_btn a {
	padding-right: 27px;
	background: url(../images/reassurance/icon_arrow.svg) center right no-repeat;
}

/* --- 896px 以下（SP） style.css:9019 由来 --- */
@media screen and (max-width: 896px) {
	.company-info-01-03 .reassurance .reassurance_inner {
		height: auto;
		min-height: 170px;
		padding-bottom: 50px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）
   [02-01] 「PMGの事業領域」ファクタリング図 about_ex
   流用元 = style.css の .page-urikake .about_ex（/service/financial/early-factoring）
   を .company-info-02 へ再スコープ。アイコンパスは ../images/ に補正。
   ※中央の矢印画像は現マークアップに無い（<div class="center"></div> が空）。
   ========================================================= */
.company-info-02 .about_ex {
	margin-bottom: 60px;
	overflow: hidden;
}
.company-info-02 .about_ex .left,
.company-info-02 .about_ex .right {
	width: calc(50% - 40px);
	padding: 25px;
	box-sizing: border-box;
	border: 5px solid #E8E8E8;
	border-radius: 10px;
}
.company-info-02 .about_ex .left {
	float: left;
}
.company-info-02 .about_ex .right {
	float: right;
}
.company-info-02 .about_ex div.center {
	float: left;
	width: 80px;
	text-align: center;
}
.company-info-02 .about_ex .left > p,
.company-info-02 .about_ex .right > p {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #E8E8E8;
}
.company-info-02 .about_ex .left ul {
	padding: 0 50px;
	box-sizing: border-box;
	overflow: hidden;
}
.company-info-02 .about_ex .left ul li {
	margin-bottom: 15px;
	padding-left: 35px;
	box-sizing: border-box;
	font-weight: bold;
	background: url(../images/urikake/batsu.svg) no-repeat left center;
}
.company-info-02 .about_ex .left ul li:last-child {
	margin-bottom: 0;
}
.company-info-02 .about_ex .right .inner_flex {
	padding: 0 50px;
	box-sizing: border-box;
	overflow: hidden;
}
.company-info-02 .about_ex .right .inner_flex .inner_left,
.company-info-02 .about_ex .right .inner_flex .inner_right {
	width: calc(50% - 16px);
	padding-top: 130px;
	box-sizing: border-box;
}
.company-info-02 .about_ex .right .inner_flex .inner_left {
	float: left;
	background: url(../images/urikake/icon01.svg) no-repeat center 20px;
}
.company-info-02 .about_ex .right .inner_flex .inner_right {
	float: right;
	background: url(../images/urikake/icon02.svg) no-repeat center 20px;
}
.company-info-02 .about_ex .right .inner_flex .inner_center {
	float: left;
	width: 32px;
	padding-top: 85px;
	box-sizing: border-box;
	text-align: center;
	background: url(../images/urikake/arrow.svg) no-repeat center bottom;
	background-size: 32px;
}
.company-info-02 .about_ex .right .inner_flex .inner_center p {
	margin-top: -55px;
}

.company-info-02-02 img.pc-show {
    max-width: 686px;
    margin: 24px auto 0;
	width: 100%;
    display: block;
}
/* SP（640px以下）はPC画像を隠し、img03_sp.webp(.sp-show)をグローバル切替で表示（参考: /service/financial/consulting と同挙動） */
@media screen and (max-width: 640px) {
    .company-info-02-02 img.pc-show {
        display: none;
    }
}

/* --- 896px 以下（SP）：左右ボックスを縦積み style.css:8739 由来 --- */
@media screen and (max-width: 896px) {
	.company-info-02 .about_ex .left,
	.company-info-02 .about_ex .right,
	.company-info-02 .about_ex div.center {
		width: 100%;
		float: none;
	}
}

/* --- 640px 以下 style.css:10522 由来 --- */
@media screen and (max-width: 640px) {
	.company-info-02 .about_ex .left {
		padding: 20px;
	}
	.company-info-02 .about_ex .right {
		padding: 20px 20px 30px;
	}
	.company-info-02 .about_ex .left ul,
	.company-info-02 .about_ex .right .inner_flex {
		padding: 0;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）
   btn center mini：contractページ「もっと見る」ボタン（.btn.center.mini）を流用
   流用元 = dsi.css の .philosophy_sec06 .btn.center.mini ＋ a（/service/factoring/flow/contract）
   ※contractの <a> は class="red medium" 付き。本ページの <a> には無いため
     色(#C1291F)・太さ(500)もCSS側で付与。矢印パスは絶対パスに補正。
   ========================================================= */
.company-info-wrapper .btn.center.mini {
	margin-top: 24px;
	text-align: center;
}
.company-info-wrapper .btn.center.mini a {
	padding-right: 30px;
	color: #C1291F;
	font-weight: 500;
	background: url(/pmg2024/wp-content/themes/pmg-2024/images/index/info_arrow.svg) no-repeat right center;
}

/* --- 640px 以下 dsi.css:3107 由来 --- */
@media screen and (max-width: 640px) {
	.company-info-wrapper .btn.center.mini {
		margin-top: 10px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）／数字で見るPMG
   投資家ページ「数字で見るPMG」(/experts/investor#list003) の
   カードグリッドを .company-info-03 へ再スコープ。
   流用元 = dsi.css の .pmg-in-numbers .number_list（2853〜2934）
   ※ベース（.bg_white / .bg_gray / .size24=24px / .size50=50px 等）は
     style.css でグローバル適用済み。ここでは2カラムグリッド・カード形・
     SP挙動のみ付与する。
   ========================================================= */
.company-info-03 .number_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 48px 16px 16px;
}
.company-info-03 .number_list li {
	border: none;
	width: calc(100% / 2 - 32px);
	padding: 40px 0;
	margin: 0 16px 32px;
	border-radius: 10px;
}
.company-info-03 .number_list li .icon {
	margin: 35px 0 5px;
}
.company-info-03 .number_list li .gray {
	padding-left: 37px;
	color: #7A7A7A;
}

/* --- SP：640px 以下（dsi.css:2883 由来）1カラム化＋アイコン/番号を横並び中央 --- */
@media screen and (max-width: 640px) {
	.company-info-03 .number_list li {
		width: 100%;
	}
	.company-info-03 .number_list li .number_flex {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.company-info-03 .number_list li .icon {
		margin: 10px -5px 0;
		width: 28%;
	}
	.company-info-03 .number_list li .icon img {
		width: 50%;
		height: auto;
	}
	.company-info-03 .number_list li .size24 span {
		display: inline-block;
		margin-right: 15px;
		line-height: 1.4;
	}
}

/* --- Googleレビュー（Trustindexウィジェット）を investor_list の下に中央寄せ配置 ---
   ベースの .top-01-review-rightbox / .btn-review は dsi.css（2722〜）でグローバル適用済み。
   ここでは数字セクション内に置くための中央寄せ・上余白・最大幅のみ付与。 */
.company-info-03 .top-01-review-rightbox {
	max-width: 600px;
	margin: 48px auto ;
}


/* =========================================================
   会社情報ページ（page-company-info20260623）
   [09] 「会社概要」テーブル
   流用元 = style.css の .page-company .sec01 table（/company-info/company）
   を .company-info-09 へ再スコープ。
   ========================================================= */
.company-info-09 table {
	width: 854px;
	max-width: 100%;
	margin: 0 auto 60px;
	border: 1px solid #CECECE;
}
.company-info-09 table tr {
	border-bottom: 1px solid #CECECE;
}
.company-info-09 table tr:last-child {
	border-bottom: none;
}
.company-info-09 table th {
	width: 34.5%;
	padding: 25px 30px;
	background: #E2E2E2;
	vertical-align: top;
}
.company-info-09 table td {
	padding: 25px 30px;
}
.company-info-09 table td ul {
	margin-left: 30px;
}
.company-info-09 table td ul li {
	list-style-type: disc;
}
.company-info-09 table td p {
	margin-top: 30px;
}

/* --- 640px 以下（SP） style.css:9480/9576 由来 --- */
@media screen and (max-width: 640px) {
	.company-info-09 table {
		width: 100%;
		margin-bottom: 30px;
	}
	.company-info-09 table th,
	.company-info-09 table td {
		box-sizing: border-box;
	}
	.company-info-09 table th {
		padding: 10px 15px;
	}
	.company-info-09 table td {
		padding: 10px 15px 20px;
		font-size: 16px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）
   ご利用事例「PICK UP（#pickup）」をスライダーではなく flex 横並びに
   流用元 = archive.css の .post-type-archive-case section #pickup li（/case）
   ※スライダー(slick)は使わず、#pickup を flex で3カラム横並び。
   ========================================================= */
.company-info-wrapper #pickup {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 0 auto 10px;
	padding: 0;
	list-style: none;
}
.company-info-wrapper #pickup li {
	position: relative;
	box-sizing: border-box;
	width: calc((100% - 40px) / 3);
	margin: 0;
	padding: 25px 30px;
	overflow: hidden;
	border: 4px solid #e8e8e8;
	border-radius: 10px;
}
.company-info-wrapper #pickup li:hover {
	background: #FFF5F4;
}
.company-info-wrapper #pickup li a:hover {
	background: #FFF5F4;
	text-decoration: none;
}
.company-info-wrapper #pickup li img {
	float: left;
	width: 190px;
	max-width: 45%;
	height: auto;
	margin-right: 30px;
}
.company-info-wrapper #pickup li p.title {
	margin-bottom: 30px;
	line-height: 1.8em;
	height: 3.6em;
	overflow: hidden;
}
.company-info-wrapper #pickup li p.type {
	margin-bottom: 20px;
	color: #C1291F;
	font-weight: 500;
}
.company-info-wrapper #pickup li p.type a {
	color: #C1291F;
}
.company-info-wrapper #pickup li p.service {
	clear: both;
}
.company-info-wrapper #pickup li p.service span {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 1px 10px;
	color: #959595;
	border: 1px solid #959595;
	border-radius: 13px;
	transition: 0.1s linear all;
}
.company-info-wrapper #pickup li p.service span:hover {
	color: #fff;
	background: #616161;
	text-decoration: none !important;
}

/* --- 896px 以下（SP）：1カラム積み archive.css:830 由来 --- */
@media screen and (max-width: 896px) {
	.company-info-wrapper #pickup li {
		width: 100%;
		padding: 15px 20px;
	}
	.company-info-wrapper #pickup li p.type {
		margin-bottom: 5px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）／[06] 実績・お客様の声
   「お客様インタビュー」(.story_list 動画ストーリーカード) を
   .company-info-06 へ再スコープ。
   流用元 = style.css の .page-movie section.sec02 .section_inner .story_list
            ＋ .modal-open .movie（PC:1862-1986 ／ SP:9250-9296・640px）。
   ※タイトルは参考が <h2>、当ページは <div class="size30">のため .size30 に読替。
   ※ベース（.white / .size20 / .size16 / .size14 等）は style.css でグローバル適用済み。
   ========================================================= */
.company-info-06 .section_inner .story_list {
	padding-top: 33px;
}
.company-info-06 .section_inner .story_list li {
	text-align: center;
	padding: 0 100px 40px;
	border: 5px solid #E8E8E8;
	border-radius: 10px;
	margin-bottom: 95px;
	position: relative;
}
.company-info-06 .section_inner .story_list li:last-child {
	margin-bottom: 0;
}
/* Story.◯ ラベル（赤い丸ピル・カード上端に重ねる） */
.company-info-06 .section_inner .story_list li p.white {
	background: #C1291F;
	width: 308px;
	border-radius: 25px;
	margin: 0 auto;
	height: 50px;
	line-height: 50px;
	position: absolute;
	top: -33px;
	left: 0;
	right: 0;
	text-align: center;
}
/* タイトル（参考の h2 相当＝当ページは div.size30） */
.company-info-06 .section_inner .story_list li .size30 {
	margin: 75px 0 55px;
}
/* 本文 */
.company-info-06 .section_inner .story_list li p {
	max-width: 790px;
	text-align: left;
	margin: 50px 0 40px;
}
/* 詳細リスト（業種/事業/地域/売上/従業員数）：2カラム・ラベルはピル */
.company-info-06 .section_inner .story_list li .detail_list {
	overflow: hidden;
	border-top: 1px solid #E8E8E8;
	padding-top: 40px;
}
.company-info-06 .section_inner .story_list li .detail_list li {
	float: left;
	overflow: hidden;
	border: none;
	padding: 0;
	width: calc(100% / 2);
	margin-bottom: 20px;
}
.company-info-06 .section_inner .story_list li .detail_list li h3 {
	float: left;
	border: 1px solid #B72A22;
	border-radius: 20px;
	width: 120px;
	height: 30px;
	margin-right: 16px;
	line-height: 30px;
	text-align: center !important;
}
.company-info-06 .section_inner .story_list li .detail_list li p {
	float: right;
	margin: 0;
	width: 65%;
	line-height: 30px;
}


/* --- 動画サムネ（再生ボタン△○は擬似要素） style.css:1926-1986 由来 --- */
.company-info-06 .section_inner .modal-open {
	margin-bottom: 45px;
	display: block;
	position: relative;
}
.company-info-06 .section_inner .modal-open::before {
	content: "";
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-left-color: #fff;
	border-left-width: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 25px;
	right: 0;
	margin: auto;
	z-index: 1;
}
.company-info-06 .section_inner .modal-open::after {
	content: "";
	width: 60px;
	height: 60px;
	border: 1px solid #fff;
	border-radius: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
.company-info-06 .section_inner .modal-open .movie {
	overflow: hidden;
	border-radius: 10px;
}
.company-info-06 .section_inner .modal-open .movie img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	transition: all 1s;
}
.company-info-06 .section_inner .modal-open:hover .movie img {
	transform: scale(1.2);
}


/* --- お客様インタビュー動画モーダル（当ページ限定）
   ① article の z-index スタッキングコンテキスト解除：
      style.css の .page article{position:relative;z-index:11} が #modal-content(動画) を
      z-index:11 の中に閉じ込め、body直下の #modal-overlay(z-index:9999) の後ろに潜らせていた。
      参考ページの .page-movie article{position:unset} と同じ対処を当ページにも適用する。
   ② 中央寄せ：footer.php の modal.resize() が付与する inline left/top を transform で上書き。
   ③ #modal-content を最前面に。 --- */
.page-company-info20260623 article {
	position: static;
}
.page-company-info20260623 #modal-content {
	left: 50% !important;
	top: 50% !important;
	transform: translate(-50%, -50%) !important;
	z-index: 999999 !important;
}

/* --- SP：640px 以下（style.css:9044 由来） --- */
@media screen and (max-width: 640px) {
	.company-info-06 .section_inner .story_list {
		width: 330px;
		margin: 0 auto;
		max-width: 100%;
	}
	.company-info-06 .section_inner .story_list li {
		padding: 0 20px 40px;
	}
	.company-info-06 .section_inner .story_list li .size30 {
		font-size: 20px;
		margin: 55px 0 35px;
		line-height: 1.4;
	}
	.company-info-06 .section_inner .modal-open {
		margin-bottom: 25px;
	}
	.company-info-06 .section_inner .modal-open .movie {
		border-radius: 5px;
	}
	.company-info-06 .section_inner .modal-open .movie img {
		height: 150px;
		object-fit: cover;
	}
	.company-info-06 .section_inner .modal-open:hover .movie img {
		transform: scale(1);
	}
	.company-info-06 .section_inner .story_list li p {
		margin: 25px 0 40px;
	}
	.company-info-06 .section_inner .story_list li .detail_list {
		padding-top: 20px;
	}
	.company-info-06 .section_inner .story_list li .detail_list li {
		float: none;
		width: 100%;
	}
	.company-info-06 .section_inner .story_list li .detail_list li h3 {
		width: 99%;
		float: none;
		font-size: 14px;
		margin-bottom: 0 !important;
	}
	.company-info-06 .section_inner .story_list li .detail_list li p {
		float: none;
		width: 100%;
		text-align: center;
		font-size: 14px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）
   お客様アンケート：/interview アーカイブのグリッドを流用
   流用元 = archive.css の .post-type-archive-interview section.sec02 > .section_inner > ul（/interview）
   を .company-info-wrapper .interview_list へ再スコープ（3カラムのカードグリッド）。
   ========================================================= */
.company-info-wrapper .interview_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 30px;
	padding: 0;
	list-style: none;
}
.company-info-wrapper .interview_list li {
	box-sizing: border-box;
	width: calc((100% - 60px) / 3);
	padding: 30px;
	border: 4px solid #e8e8e8;
	border-radius: 10px;
	transition: 0.1s linear all;
}
.company-info-wrapper .interview_list li:hover {
	background: #FFF5F4;
}
.company-info-wrapper .interview_list li a img {
	max-width: 100%;
	height: auto;
	transition: 0.1s linear all;
}
.company-info-wrapper .interview_list li a:hover img {
	opacity: .8;
}
.company-info-wrapper .interview_list li .title {
	height: 2.8em;
	margin-bottom: 25px;
	line-height: 140%;
}
.company-info-wrapper .interview_list li p.type {
	margin-bottom: 10px;
	color: #C1291F;
}
.company-info-wrapper .interview_list li p.type span {
	display: inline-block;
	margin-right: 10px;
	padding: 1px 10px;
	color: #C1291F;
	border: 1px solid #C1291F;
	border-radius: 20px;
	font-size: 16px;
	transition: 0.1s linear all;
}
.company-info-wrapper .interview_list li p.type a:hover {
	text-decoration: none;
}
.company-info-wrapper .interview_list li p.type a:hover span {
	color: #fff;
	background: #C1291F;
}
.company-info-wrapper .interview_list li p.date {
	margin-bottom: 20px;
	border-bottom: 1px solid #C1291F;
}

/* --- 896px 以下（SP）：1カラム archive.css:1320 由来 --- */
@media screen and (max-width: 896px) {
	.company-info-wrapper .interview_list li {
		width: 100%;
		padding: 20px 25px;
		text-align: center;
	}
	.company-info-wrapper .interview_list li .title,
	.company-info-wrapper .interview_list li p.type {
		text-align: left;
	}
	.company-info-wrapper .interview_list li .title {
		height: auto;
		margin-bottom: 10px;
	}
	.company-info-wrapper .interview_list li p.type span {
		font-size: 12px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）／[06-05] 売掛金早期資金化ご利用データ
   data2024ページ（/data2024）のデータ図版ブロックを .company-info-06-05 へ再スコープ。
   流用元 = style.css の .page-data .sec01 .section_inner（PC:6694-6727 ／ SP:9028-9036・640px）。
   ※当ページは <section> 直下先頭が <h3>売掛金…</h3>（section_innerは2番目以降）のため
     参考の :first-child / :nth-child(2) を nth-child(2) / (3) に+1補正。
   ※ベース（.bg_red / .white / .size16 / .size25 等）は style.css でグローバル適用済み。
   ※外側 .sec01 の margin-top（PC120/SP75px）は当ページの見出しリズムに委ねるため移植しない。
   ========================================================= */
.company-info-06-05 .section_inner {
	margin: 0 auto 60px;
	width: 1000px;
	max-width: 87%;
}
/* 先頭データブロック（業種別）＝ h3の次＝2番目の子 */
.company-info-06-05 .section_inner:nth-child(2) {
	margin: 0 auto 80px;
}
/* 2番目（ご利用金額別）＝ 3番目の子 */
.company-info-06-05 .section_inner:nth-child(3) {
	margin: 0 auto 40px;
}
/* 各図版の見出し（赤ピル：bg_red はグローバル） */
.company-info-06-05 .section_inner h3 {
	padding: 11px 0;
	border-radius: 10px;
	text-align: center !important;
}
.company-info-06-05 .section_inner p {
	margin-bottom: 1em;
}
.company-info-06-05 .section_inner p.size16 {
	line-height: 2.0;
}
.company-info-06-05 .section_inner p.gray {
	color: #959595;
}
.company-info-06-05 .section_inner p.img {
	margin: 45px 0 40px;
}
/* 1ブロックに図版が複数（規模別＝年商+従業員数）の場合、2枚目以降を縦に間隔 */
.company-info-06-05 .section_inner p.img img:nth-of-type(n+2) {
	margin-top: 40px;
}

.company-info-06-05 .img {
	text-align: center;
}

/* --- SP：640px 以下（style.css:9028 由来） --- */
@media screen and (max-width: 640px) {
	.company-info-06-05 .section_inner h3 {
		font-size: 18px;
	}
	.company-info-06-05 .section_inner p.size25 {
		font-size: 18px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）／[07-01] 経営体制・代表メッセージ
   代表メッセージページ（/company-info/president）のレイアウトを
   .company-info-07-01 へ再スコープ。
   流用元 = style.css の .page-president section.sec01 .section_inner
            （PC:813,907-940 ／ SP896:7703-7706 ／ SP640:9220-9245）。
   ※ベース（.size30 / .medium / .right 等）は style.css でグローバル適用済み。
   ※外側 .sec01 の mobile width:330px は当ページの見出し/wrapperリズムに委ね移植しない。
   ========================================================= */
.company-info-07-01 .section_inner {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}
/* 見出しコピー：h2を左float／傘アイコンを右floatで横並び */
.company-info-07-01 .section_inner .sec01_copy {
	overflow: hidden;
	margin-bottom: 80px;
}
.company-info-07-01 .section_inner .sec01_copy h2 {
	float: left;
	line-height: 1.8;
}
.company-info-07-01 .section_inner .sec01_copy .img_right {
	float: right;
	width: auto;
}
.company-info-07-01 .section_inner .sec01_copy .img_right img {
	max-width: 190px;
	height: auto;
}
/* 本文 */
.company-info-07-01 .section_inner p {
	margin-bottom: 40px;
	width: 790px;
}
/* 肩書き＋署名（右寄せブロック） */
.company-info-07-01 .section_inner .president_name {
	margin-bottom: 80px;
	max-width: 790px;
}
.company-info-07-01 .section_inner .president_name p {
	margin-bottom: 15px;
	text-align: left;
	margin-left: 83%;
}
.company-info-07-01 .section_inner .president_name_img img {
	max-width: 100%;
	height: auto;
}

/* --- SP：896px 以下（style.css:7703 由来） --- */
@media screen and (max-width: 896px) {
	.company-info-07-01 .section_inner {
		width: 87%;
	}
	.company-info-07-01 .section_inner .sec01_copy {
		width: 100%;
	}
}

/* --- SP：640px 以下（style.css:9220 由来）傘・見出し・顔写真を縦積み調整 --- */
@media screen and (max-width: 640px) {
	.company-info-07-01 .section_inner {
		max-width: 100% !important;
	}
	.company-info-07-01 .section_inner .sec01_copy {
		margin-bottom: 35px;
		width: 100%;
	}
	.company-info-07-01 .section_inner .sec01_copy h2 {
		font-size: 18px;
	}
	.company-info-07-01 .section_inner .sec01_copy .img_right {
		float: none;
		text-align: center;
	}
	.company-info-07-01 .section_inner .sec01_copy .img_right img {
		width: 40%;
		height: auto;
		margin-bottom: 25px;
	}
	.company-info-07-01 .section_inner p {
		width: 100%;
	}
	.company-info-07-01 .section_inner .president_name {
		margin-bottom: 35px;
	}
	.company-info-07-01 .section_inner .face img {
		width: 100%;
		height: auto;
	}
}


/* =========================================================
   [07-02] 役員紹介：カードグリッド
   流用元 = style.css .page-officer .officer / .officer_block（＋dsi.css:2547）
   を .company-info-07-02 へ再スコープ。plus アイコンは ../images/ に補正。
   ※モーダル(.pop)とinputはデフォルト非表示（開閉JSは header.php 共通＝.visible付与）。
   ========================================================= */
.company-info-07-02 .officer {
	display: flex;
	flex-wrap: wrap;
}
.company-info-07-02 .officer .officer_block {
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 70px;
	padding-bottom: 30px;
	border-bottom: 1px solid #C1291F;
}
.company-info-07-02 .officer .officer_block:nth-child(3n) {
	margin-right: 0;
}
.company-info-07-02 .officer .officer_block.noimage {
	clear: both;
}
.company-info-07-02 .officer .officer_block img {
	margin-bottom: 25px;
	border-radius: 10px;
}
.company-info-07-02 .officer .officer_block p.name {
	margin-bottom: 30px;
	color: #000;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
}
.company-info-07-02 .officer .officer_block p.name span {
	color: #404040;
	font-size: 14px;
	font-weight: normal;
	line-height: 0;
}
.company-info-07-02 .officer .officer_block .popup-open {
	display: block;
	box-sizing: border-box;
	width: 120px;
	padding: 8px 20px 10px 0;
	color: #C1291F;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	border: 1px solid #C1291F;
	border-radius: 20px;
	background: url(../images/staff/plus.png) no-repeat 90px center;
	background-size: 10px;
	cursor: pointer;
}
.company-info-07-02 .officer .officer_block label:hover .popup-open,
.company-info-07-02 .officer .officer_block .popup-open:hover {
	color: #fff;
	background: #C1291F url(../images/staff/plus_w.png) no-repeat 90px center;
	background-size: 10px;
}
/* チェックボックス＆モーダルはデフォルト非表示（開閉は header.php のJSが .visible を付与） */
.company-info-07-02 input,
.company-info-07-02 .pop {
	display: none;
}

/* --- 896px 以下：2カラム --- */
@media screen and (max-width: 896px) {
	.company-info-07-02 .officer .officer_block {
		width: 49%;
		margin-right: 2%;
		margin-bottom: 50px;
	}
	.company-info-07-02 .officer .officer_block:nth-child(3n) {
		margin-right: 2%;
	}
	.company-info-07-02 .officer .officer_block:nth-child(2n) {
		margin-right: 0;
	}
	.company-info-07-02 .officer .officer_block p.name {
		font-size: 20px;
	}
	.company-info-07-02 .officer .officer_block p.name span {
		font-size: 12px;
	}
}

/* --- 640px 以下：1カラム --- */
@media screen and (max-width: 640px) {
	.company-info-07-02 .officer .officer_block {
		float: none;
		width: 100%;
		margin: 0 auto 50px;
	}
}


/* =========================================================
   会社情報ページ（page-company-info20260623）／[08-01] 外部評価・第三者調査実績
   会社概要ページ（/company-info/company）の調査実績ブロックを
   .company-info-08-01 へ再スコープ。
   流用元 = style.css の .page-company .sec01 .rank（PC:1050-1084 ／ SP640:9502-9514）。
   ※金文字はグローバル .gold(#C59940)＋size系で成立。.bold span 系は参考側で無効(コメントアウト)。
   ※child-lists（親=外部評価側の3リンク）は対象外。
   ========================================================= */
.company-info-08-01 .rank {
	display: flex;
	gap: 78px;
	flex-wrap: nowrap;
	justify-content: center;
}
/* 5冠バッジ5枚を横並び */
.company-info-08-01 .rank .rank_inner ul {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin: 20px 0 30px;
	flex-wrap: wrap;
}
.company-info-08-01 .rank li {
    text-align: center;
}
.company-info-08-01 .rank .rank_inner ul li img {
	max-width: 135px;
	width: 100%;
	height: auto;
}
/* 売上No.1画像（img2026） */
.company-info-08-01 .rank .center img {
	margin: 20px 0 6px;
}

/* --- SP：640px 以下（style.css:9502 由来）2ブロック縦積み・バッジ2列 --- */
@media screen and (max-width: 640px) {
	.company-info-08-01 .rank {
		flex-wrap: wrap;
	}
	.company-info-08-01 .rank .rank_inner {
		width: 100%;
	}
	.company-info-08-01 .rank .rank_inner ul {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.company-info-08-01 .rank .rank_inner ul li {
		width: calc(50% - 15px);
		text-align: center;
	}
	.company-info-08-01 .rank .center img {
		height: auto;
	}
}


/* =========================================================
   [07-02] 役員紹介：モーダル（View more → 経歴ポップアップ）
   流用元 = style.css .page-officer .filter / .popup-window / .popup-close
   を .company-info-07-02 へ再スコープ。基底 .filter（汎用）＋ body.fix は既存を利用。
   開閉JSは header.php 共通（.visible / .block / .bg_cover を付与）。close は ../images/ に補正。
   ========================================================= */
/* 背景フィルタ（スクロール領域）／黒背景 */
.company-info-07-02 .filter {
	padding: 10% 0;
	overflow-y: scroll;
	box-sizing: border-box;
}
.company-info-07-02 .filter.wrap.block {
	opacity: 1;
	z-index: 200;
}
.company-info-07-02 .filter.bg_cover {
	display: block;
	z-index: 11;
	opacity: unset;
	background: rgba(0, 0, 0, 0.6);
	transition: unset;
}
/* モーダル本体 */
.company-info-07-02 .popup-window {
	position: relative;
	z-index: 200;
	margin: 0 auto;
	padding: 90px 70px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 3px;
}
.company-info-07-02 .popup-window .pop_flex {
	overflow: hidden;
}
.company-info-07-02 .popup-window .pop_flex .left {
	float: left;
	width: 32.5%;
	margin-right: 2.5%;
	background: #F7F3EF;
	border-radius: 10px;
}
.company-info-07-02 .popup-window .pop_flex .left img {
	width: 100%;
	height: auto;
}
.company-info-07-02 .popup-window .pop_flex .right {
	float: left;
	width: 65%;
	text-align: left;
}
.company-info-07-02 .popup-window .pop_flex .right p {
	margin-bottom: 30px;
}
.company-info-07-02 .popup-window .pop_flex .right p.name {
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	text-align: right;
}
.company-info-07-02 .popup-window .pop_flex .right p.name span {
	display: inline-block;
	padding: 0 20px 0 0;
	font-size: 12px;
	line-height: 0;
	vertical-align: middle;
}
.company-info-07-02 .popup-window .pop_flex .right table {
	width: 100%;
}
.company-info-07-02 .popup-window .pop_flex .right table tr {
	display: table-row;
}
.company-info-07-02 .popup-window .pop_flex .right table tr:nth-child(2n-1) {
	background: #F4F4F4;
}
.company-info-07-02 .popup-window .pop_flex .right table th,
.company-info-07-02 .popup-window .pop_flex .right table td {
	display: table-cell;
	padding: 15px 20px;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	vertical-align: top;
}
.company-info-07-02 .popup-window .pop_flex .right table th {
	width: 22.5%;
}
.company-info-07-02 .popup-window .pop_flex .right table td {
	padding: 15px 0;
}
.company-info-07-02 p.professor {
	margin: 40px 0 20px;
}
/* 閉じるボタン */
.company-info-07-02 .pop .popup-window .popup-close {
	position: absolute;
	top: 35px;
	right: 50px;
	left: unset;
	display: block;
	box-sizing: border-box;
	width: 88px;
	height: 30px;
	padding: 7.5px 0 0 40px;
	background: url(../images/staff/close.svg) no-repeat left 0;
	cursor: pointer;
}
.company-info-07-02 .pop .popup-window .popup-close:hover {
	background: url(../images/staff/close_w.svg) no-repeat left 0;
}

/* モーダル展開中：ヘッダーを下げて被りを防ぐ（JSが header に .index 付与） */
header.index {
	z-index: 10;
}

/* --- 896px 以下：左右を縦積み --- */
@media screen and (max-width: 896px) {
	.company-info-07-02 .popup-window .pop_flex .left,
	.company-info-07-02 .popup-window .pop_flex .right {
		float: none;
		width: 100%;
	}
	.company-info-07-02 .popup-window .pop_flex .left {
		margin-right: 0;
		margin-bottom: 20px;
		text-align: center;
	}
	.company-info-07-02 .popup-window .pop_flex .left img {
		width: auto;
		max-width: 100%;
		height: auto;
	}
}

/* --- 640px 以下 --- */
@media screen and (max-width: 640px) {
	.company-info-07-02 .popup-window {
		padding: 55px 20px 30px;
	}
	.company-info-07-02 .popup-window .pop_flex .right table th,
	.company-info-07-02 .popup-window .pop_flex .right table td {
		display: block;
		width: 100%;
		padding: 10px 15px;
		font-size: 13px;
	}
	.company-info-07-02 .popup-window .pop_flex .right table tr:nth-child(2n-1) {
		background: #fff;
	}
	.company-info-07-02 .popup-window .pop_flex .right table th {
		background: #F4F4F4;
	}
}


/* =========================================================
   [07-03] 顧問紹介：顧問カード ＋ 各種顧問 ＋ モーダル
   流用元 = style.css .page-advisor 各種 を .company-info-07-03 へ再スコープ。
   モーダル機構は officer と同型。開閉JSはページ末尾で 07-02/07-03 両対応に汎用化。
   arrow/close アイコンは ../images/ に補正。
   ========================================================= */
/* 見出し（顧問／各種顧問の h2.tit） */
.company-info-07-03 .tit {
	margin-bottom: 50px;
	font-size: 30px;
	font-weight: 500;
}
/* 顧問カード */
.company-info-07-03 .advisor {
	overflow: hidden;
}
.company-info-07-03 .advisor .advisor_block {
	float: left;
	width: 48%;
	margin-bottom: 75px;
}
.company-info-07-03 .advisor .advisor_block:nth-child(2n-1) {
	margin-right: 4%;
}
.company-info-07-03 .advisor .advisor_block:last-child {
	margin-bottom: 0;
}
.company-info-07-03 .advisor .advisor_block .normal {
	overflow: hidden;
}
.company-info-07-03 .advisor .advisor_block .normal .left {
	float: left;
	width: 50%;
	margin-right: 2.5%;
	background: #F7F3EF;
	border-radius: 10px;
}
.company-info-07-03 .advisor .advisor_block .normal .left.bg_none {
	background: none;
}
.company-info-07-03 .advisor .advisor_block .normal .left img {
	width: 100%;
	height: auto;
}
.company-info-07-03 .advisor .advisor_block .normal .right {
	float: left;
	width: 47.5%;
}
.company-info-07-03 .advisor .advisor_block .normal .right p.name {
	margin: 75px 0 115px 10px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	text-align: left;
}
.company-info-07-03 .advisor .advisor_block .normal .right p.name span {
	font-size: 12px;
	line-height: 2.4;
}
.company-info-07-03 .advisor .advisor_block .normal .right p.name span.english {
	color: #C1291F;
	line-height: 0;
}
.company-info-07-03 .advisor .advisor_block .normal .right label,
.company-info-07-03 .consultant .consultant_block label {
	display: block;
	box-sizing: border-box;
	width: 180px;
	padding: 15px 0 15px 1em;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1em;
	text-align: center;
	border: 1px solid #C1291F;
	border-radius: 24px;
	background: url(../images/advisor/advisor_arrow.png) no-repeat 90% center;
	background-size: 8px;
	cursor: pointer;
}
.company-info-07-03 .advisor .advisor_block .normal .right label {
	margin-left: 10px;
}
.company-info-07-03 .advisor .advisor_block .normal .right label:hover,
.company-info-07-03 .consultant .consultant_block label:hover {
	background: #FFF5F4 url(../images/advisor/advisor_arrow.png) no-repeat 90% center;
	background-size: 8px;
}
/* 各種顧問（consultant） */
.company-info-07-03 .consultant {
	overflow: hidden;
}
.company-info-07-03 .consultant .consultant_block {
	float: left;
	box-sizing: border-box;
	width: 49%;
	margin-bottom: 30px;
	border: 3px solid #E8E8E8;
	border-radius: 10px;
}
.company-info-07-03 .consultant .consultant_block:nth-child(2n-1) {
	margin-right: 2%;
}
.company-info-07-03 .consultant .consultant_block.block_C {
	float: none;
	margin: 0 auto 30px;
}
.company-info-07-03 .consultant .consultant_block.mo {
	float: none;
	margin: 0 auto;
}
.company-info-07-03 .consultant .consultant_block p.consultant_tit {
	box-sizing: border-box;
	padding: 20px 0 16px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	background: #E8E8E8;
}
.company-info-07-03 .consultant .consultant_block p.consultant_tit.size20 {
	font-size: 20px;
}
.company-info-07-03 .consultant .consultant_block p.name {
	display: flex;
	justify-content: center;
	padding: 20px 0;
	font-size: 30px;
	font-weight: 500;
}
.company-info-07-03 .consultant .consultant_block p.name span {
	box-sizing: border-box;
	margin-right: 30px;
	font-size: 16px;
}
.company-info-07-03 .consultant .consultant_block p.name span.english {
	margin-right: 0;
	margin-left: 30px;
}
.company-info-07-03 .consultant .consultant_block label {
	margin: 0 auto 1em;
}
/* モーダル機構（officer と同型） */
.company-info-07-03 input,
.company-info-07-03 .pop {
	display: none;
}
.company-info-07-03 .filter {
	padding: 10% 0;
	overflow-y: scroll;
	box-sizing: border-box;
}
.company-info-07-03 .filter.wrap.block {
	opacity: 1;
	z-index: 200;
}
.company-info-07-03 .filter.bg_cover {
	display: block;
	z-index: 11;
	opacity: unset;
	background: rgba(0, 0, 0, 0.6);
	transition: unset;
}
.company-info-07-03 .popup-window {
	position: relative;
	z-index: 200;
	margin: 0 auto;
	padding: 90px 70px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 3px;
}
.company-info-07-03 .popup-window .pop_flex {
	overflow: hidden;
}
.company-info-07-03 .popup-window .pop_flex .left {
	float: left;
	width: 32.5%;
	margin-right: 2.5%;
	background: #F7F3EF;
	border-radius: 10px;
}
.company-info-07-03 .popup-window .pop_flex .left img {
	width: 100%;
	height: auto;
}
.company-info-07-03 .popup-window .pop_flex .right {
	float: left;
	width: 65%;
}
.company-info-07-03 .nine .popup-window .pop_flex .right,
.company-info-07-03 .ten .popup-window .pop_flex .right {
	width: 100%;
}
.company-info-07-03 .popup-window .pop_flex .right p {
	text-align: left;
}
.company-info-07-03 .popup-window .pop_flex .right p.name {
	margin-bottom: 30px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
}
.company-info-07-03 .popup-window .pop_flex .right p.name span {
	font-size: 12px;
	line-height: 2.4;
}
.company-info-07-03 .popup-window .pop_flex .right p.name span.english {
	color: #C1291F;
	line-height: 0;
}
.company-info-07-03 .popup-window .pop_flex .right .bg_gray {
	margin-bottom: 30px;
	padding: 15px 20px;
	font-weight: 500;
	line-height: 1.8em;
	text-align: left;
}
.company-info-07-03 .popup-window .pop_flex .right table {
	width: 100%;
}
.company-info-07-03 .popup-window .pop_flex .right table.mb30 {
	margin-bottom: 30px;
}
.company-info-07-03 .popup-window .pop_flex .right table tr {
	display: table-row;
}
.company-info-07-03 .popup-window .pop_flex .right table tr:nth-child(2n-1) {
	background: #F4F4F4;
}
.company-info-07-03 .popup-window .pop_flex .right table th,
.company-info-07-03 .popup-window .pop_flex .right table td {
	display: table-cell;
	padding: 15px 20px;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	vertical-align: top;
}
.company-info-07-03 .popup-window .pop_flex .right table th {
	width: 22.5%;
}
.company-info-07-03 .popup-window .pop_flex .right table td {
	padding: 15px 0;
}
.company-info-07-03 p.professor {
	margin: 40px 0 20px;
}
.company-info-07-03 .pop .popup-window .popup-close {
	position: absolute;
	top: 35px;
	right: 50px;
	left: unset;
	display: block;
	box-sizing: border-box;
	width: 88px;
	height: 30px;
	padding: 7.5px 0 0 40px;
	background: url(../images/staff/close.svg) no-repeat left 0;
	cursor: pointer;
}
.company-info-07-03 .pop .popup-window .popup-close:hover {
	background: url(../images/staff/close_w.svg) no-repeat left 0;
}

/* --- 896px 以下 --- */
@media screen and (max-width: 896px) {
	.company-info-07-03 .tit {
		margin-bottom: 30px;
	}
	.company-info-07-03 .advisor .advisor_block .normal .right p.name {
		margin: 30px 0 70px 20px;
	}
	.company-info-07-03 .advisor .advisor_block .normal .right p.name span {
		font-size: 11px;
	}
	.company-info-07-03 .advisor .advisor_block .normal .right label,
	.company-info-07-03 .consultant .consultant_block label,
	.company-info-07-03 .consultant .consultant_block p.consultant_tit,
	.company-info-07-03 .consultant .consultant_block p.name span {
		font-size: 14px;
	}
	.company-info-07-03 .advisor .advisor_block .normal .right label {
		width: calc(100% - 20px);
		margin-left: 20px;
		padding: 8px 0 10px 1em;
	}
	.company-info-07-03 .consultant .consultant_block label {
		width: calc(47.5% - 20px);
		padding: 8px 0 10px 1em;
	}
	.company-info-07-03 .consultant .consultant_block p.consultant_tit {
		padding: 8px 0;
	}
	.company-info-07-03 .consultant .consultant_block p.name {
		padding: 10px 0;
	}
	.company-info-07-03 .consultant .consultant_block p.name span {
		margin-right: 20px;
	}
	.company-info-07-03 .consultant .consultant_block:nth-child(3),
	.company-info-07-03 .consultant .consultant_block:last-child {
		margin-bottom: 0;
	}
	.company-info-07-03 .popup-window .pop_flex .left,
	.company-info-07-03 .popup-window .pop_flex .right {
		float: none;
		width: 100%;
	}
	.company-info-07-03 .popup-window .pop_flex .left {
		margin-right: 0;
		margin-bottom: 20px;
		text-align: center;
	}
	.company-info-07-03 .popup-window .pop_flex .left img {
		width: auto;
		max-width: 100%;
		height: auto;
	}
}

/* --- 640px 以下 --- */
@media screen and (max-width: 640px) {
	/* SP：顧問カード=1カラム、カード内の画像(.left)/テキスト(.right)・各種顧問カードを縦積み（参考 .page-advisor と同挙動） */
	.company-info-07-03 .advisor .advisor_block,
	.company-info-07-03 .advisor .advisor_block .normal .left,
	.company-info-07-03 .advisor .advisor_block .normal .right,
	.company-info-07-03 .consultant .consultant_block {
		float: none;
		width: 100%;
	}
	.company-info-07-03 .consultant .consultant_block,
	.company-info-07-03 .consultant .consultant_block:nth-child(3),
	.company-info-07-03 .tit {
		margin-bottom: 20px;
	}
	.company-info-07-03 .pop .popup-window .popup-close {
		top: 10px;
		right: 25px;
		padding-top: 6px;
	}
	.company-info-07-03 .popup-window .pop_flex .right p.name {
		font-size: 20px;
	}
	.company-info-07-03 .popup-window .pop_flex .right p.name span {
		font-size: 11px;
	}
	.company-info-07-03 .advisor .advisor_block {
		margin-bottom: 50px;
	}
	.company-info-07-03 .advisor .advisor_block .normal .right p.name {
		margin: 30px 0;
	}
	.company-info-07-03 .advisor .advisor_block .normal .right label {
		width: 120px;
		margin-left: 0;
		padding: 8px 0 10px 0.5em;
	}
	.company-info-07-03 .consultant .consultant_block label {
		width: 120px;
		padding: 8px 0 10px 0.5em;
	}
	.company-info-07-03 .popup-window {
		padding: 55px 20px 30px;
	}
	.company-info-07-03 .popup-window .pop_flex .left {
		margin-right: 0;
	}
	.company-info-07-03 .popup-window .pop_flex .right table th,
	.company-info-07-03 .popup-window .pop_flex .right table td {
		display: block;
		width: 100%;
		padding: 10px 15px;
		font-size: 13px;
	}
	.company-info-07-03 .popup-window .pop_flex .right table tr:nth-child(2n-1) {
		background: #fff;
	}
	.company-info-07-03 .popup-window .pop_flex .right table th {
		background: #F4F4F4;
	}
	.company-info-07-03 p.professor {
		margin: 20px 0 10px;
	}
}
