@charset "utf-8";
@import url("../../css/font.css");
/* Icon Fonts読み込み */
@import url("../../css/all.min.css");
@import url("../../css/font-awesome.min.css");
@import url("../../css/common.css");
@import url("../../css/html5reset-1.6.1.css");
/* cssリセット */
/*##############################################################################
|
| デザイントークン（CSS Variables）
|
==================================================================================*/
:root {
	--color-primary: #8b2c2d;
	--color-text: #545454;
	--modal-overlay: rgba(10, 20, 40, .45);
	--modal-radius: 24px;
	--modal-shadow: 0 24px 72px rgba(0, 0, 0, .22);
	--modal-surface: #fff;
	--scrollbar-thumb: rgba(0, 0, 0, .35);
	--scrollbar-thumb-hover: rgba(0, 0, 0, .48);
}
/*==================================================================================
|
| 基本設定
|
==================================================================================*/
html {
	font-size: 62.5%;
}
body {
	color: var(--color-text);
	font-family: "Noto Sans Japanese", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Osaka, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 17px;
	font-size: 1.7rem;
	letter-spacing: 0.04em;
	line-height: 1.75;
	position: relative;
}
@media all and (-ms-high-contrast: none) {
	/* あるフォントでIEでのみベースラインがずれる現象回避策として */
	body {
		font-family: "メイリオ", Meiryo, sans-serif;
	}
}
*::selection {
	background: var(--color-primary) none repeat scroll 0 0;
	color: #fff;
}
button, input, select, textarea {
	font-family: inherit;
}
button {
	appearance: none;
	background: transparent;
	border: 0;
	color: inherit;
	font: inherit;
	line-height: inherit;
	padding: 0;
}
button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
/* html5用 */
article,aside,canvas,details,figcaption,figure,
header,footer,main,menu,nav,section,summary {
	display: block;
}
input, select ,textarea {
	-moz-box-shadow: inset 1px 4px 8px -8px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 1px 4px 8px -8px rgba(0,0,0,0.5);
	box-shadow: inset 1px 4px 8px -8px rgba(0,0,0,0.5);
	font-family: inherit;
	font-size: inherit;
	margin-bottom: .3em;
	margin-top: .3em;
	outline: none;
	padding: 4px 8px;
	position: relative;
}
input[type=text] ,
input[type=id] , 
input[type=password] ,
select ,
textarea {
	border: 1px solid #999;
}
input[type=text] ,
input[type=id] , 
input[type=password] ,
select {
	height: 32px;
	padding: 0 8px;
}
input[type=submit], input[type=reset] {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
}
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
input[type=radio], input[type=checkbox] {
	display: none;
}
.radio, .checkbox {
	border-radius: 8px;
	cursor: pointer;
	display: inline-block;
	margin: 0 20px 0 0;
	padding: 12px 12px 12px 42px;
	position: relative;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	vertical-align: middle;
}
.radio:hover:after, .checkbox:hover:after {
	border-color: #333;
}
.radio:after, .checkbox:after {
	border: 2px solid #bbb;
	border-radius: 8px;
	content: "";
	display: block;
	margin-top: -10px;
	position: absolute;
		top: 50%;
		left: 16px;
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	width: 16px;
	height: 16px;
}
.radio:before {
	background-color: tomato;
	border-radius: 50%;
	content: "";
	display: block;
	margin-top: -5px;
	opacity: 0;
	position: absolute;
		top: 50%;
		left: 16px;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	width: 8px;
	height: 8px;
}
input[type=radio]:checked + .radio:before {
	opacity: 1;
}
.checkbox:before {
	border-bottom: 4px solid #53b300;
	border-right: 4px solid #53b300;
	content: "";
	display: block;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
		top: 50%;
		left: 24px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	width: 4px;
	height: 8px;
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
br {
	letter-spacing: normal;
}
a {
	color: #00f;
	outline: none;
	text-decoration: none;
}
a:hover {
	cursor: pointer;
}
label {
	cursor: pointer;
}
a:hover img {
	-ms-filter: "alpha(opacity=60)";
	filter: alpha(opacity=60);
	opacity: 0.6;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
p {
	margin-bottom: 1em;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/*------------------------------------------------------------------------------
|
| リンクなし（javascript:void(1)）は hover 反応させない
|
------------------------------------------------------------------------------*/
.top_layout > ul > li > a[href="javascript:void(1)"] {
	cursor: default;
	text-decoration: none;
}
.top_layout > ul > li > a[href="javascript:void(1)"]::after {
	content: none !important;
}
.top_layout > ul > li > a[href="javascript:void(1)"]:hover,
.top_layout > ul > li > a[href="javascript:void(1)"]:focus,
.top_layout > ul > li > a[href="javascript:void(1)"]:focus-within {
	text-decoration: none;
}
.top_layout > ul > li > a[href="javascript:void(1)"]:hover::after,
.top_layout > ul > li > a[href="javascript:void(1)"]:focus::after,
.top_layout > ul > li > a[href="javascript:void(1)"]:focus-within::after {
	content: none !important;
}
.top_layout > ul > li > a[href="javascript:void(1)"] img,
.top_layout > ul > li > a[href="javascript:void(1)"]:hover img,
.top_layout > ul > li > a[href="javascript:void(1)"]:focus img {
	filter: none;
	opacity: 1;
	transition: none;
}
/*------------------------------------------------------------------------------
|
| aタグ効果は要検討
|
------------------------------------------------------------------------------*/
.desc a,
footer nav a,
.wrapper_footer > div a,
main > .two_column a,
main > .one_column a {
	display: inline-block;
	position: relative;
	transition: .3s;
}
.desc a::after,
footer nav a::after,
.wrapper_footer > div a::after,
main > .two_column a::after,
main > .one_column a::after {
	background-color: var(--color-text);
	content: "";
	position: absolute;
		bottom: 0;
		left: 0;
	transform: translateX(0%);
	transition: .3s;
	width: 0;
	height: 1px;
}
.desc a:hover::after,
footer nav a:hover::after,
.wrapper_footer > div a:hover::after,
main > .two_column a:hover::after,
main > .one_column a:hover::after {
	text-decoration: none;
	width: 100%;
}
/*##############################################################################
|
| 見出しスタイル
|
##############################################################################*/
h1:first-child {
	margin-top: 0 !important;
}
h1 + h2,
h2 + h3,
h1 + h4,
h2 + h4,
h3 + h4,
h4 + h4 {
	margin-top: 0 !important;
}
/*##############################################################################
|
| 全体
|
##############################################################################*/
#wrapper {
	width: 100%;
}
#panel_contents {
	display: none;
}
/*##############################################################################
|
| ヘッダー
|
##############################################################################*/
.wrapper_header {
	background: rgba(255,255,255,0.6);
	position: fixed;
		top: 0;
	width: 100%;
	z-index: 10000;
}
header {
	display: flex;
		align-items: center;
		justify-content: space-between;
	margin: 0 auto;
	max-width: 1368px;
	padding: 4px 0;
	width: 100%;
}
header > h1 {
	display: flex;
		align-items: center;
	padding-left: 2.5%;
	width: auto;
}
header > h1 img {
	width: auto;
	height: 30px;
}
header > h1 a.header_brand {
	display: flex;
		align-items: center;
		gap: 16px;
}
header > h1 a.header_brand:hover {
	-ms-filter: "alpha(opacity=60)";
	filter: alpha(opacity=60);
	opacity: 0.6;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
header > h1 a.header_brand:hover img {
	opacity: 1;
}
.header_site_title {
	display: flex;
		flex-direction: column;
		justify-content: center;
	line-height: 1.1;
	margin-left: 16px;
}
.header_site_title_en {
	color: var(--color-primary);
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.08em;
}
.header_site_title_ja {
	color: var(--color-primary);
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.08em;
}
/*------------------------------------------------------------------------------
|
| ■┓グローバルナビゲーション
| ┗┛
------------------------------------------------------------------------------*/
/* header > div {
	display: flex;
		justify-content: flex-end;
		align-items: center;
		flex: 1;
	overflow: hidden;
	padding: 8px;
}
header > div > a {
	margin-left: 8px;
}
header > div > nav {
	margin-top: 0;
} */
header > div {
	display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 16px;
	flex: 1;
	overflow: hidden;
	padding: 12px 0;
}
header > div > a {
	margin-left: 8px;
}
header > div > nav {
	margin-top: 0;
}
header > div > nav > ul {
	display: flex;
		justify-content: flex-end;
		align-items: flex-end;
	width: 100%;
}
header > div > nav > ul > li {
	font-size: 14px;
	font-size: 1.4rem;
	margin: 0 8px;
	text-align: center;
}
header > div > nav > ul > li > a {
	color: var(--color-text);
	display: inline-block;
	padding: 8px 16px 8px 16px;
	position: relative;
	text-decoration: none;
}
header > div > nav > ul > li > a::after {
	background: var(--color-primary);
	content: "";
	position: absolute;
		bottom: 0;
		left: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
	width: 100%;
	height: 4px;
}
header > div > nav > ul > li > a:hover::after {
	transform: scale(1, 1);
}
@media screen and (max-width:1180px) {
	header > div > nav > ul > li {
		margin: 0;
	}
}
@media screen and (max-width:1024px) {
	header > div > nav > ul > li {
		font-size: 12px;
		font-size: 1.2rem;
	}
}
/*------------------------------------------------------------------------------
|
| ■┓お問合せボタン
| ┗┛
------------------------------------------------------------------------------*/
@media all and (-ms-high-contrast: none) {
	/* あるフォントでIEでのみベースラインがずれる現象回避策として */
	.btn_primary {
		font-family: "メイリオ", Meiryo, sans-serif;
	}
}
.btn_primary {
	background: var(--color-primary) url("../img/btn_arrow.png") no-repeat right 8% center;
	color: #fff;
	display: flex !important;
		justify-content: center;
		align-items: center;
	overflow: hidden;
	padding: 16px 0;
	position: relative !important;
	transition: 0.3s !important;
	white-space: nowrap;
	width: 200px;
	z-index: 1;
}
.btn_primary > span {
	display: block;
	overflow: hidden;
}
.btn_primary:hover {
	cursor: pointer;
	transition: 0.3s;
}
.btn_primary::before {
	background: #cc6666 url("../img/btn_arrow.png") no-repeat right 15% center;
	content: "";
	position: absolute;
		top: 0;
		left: 0;
	transform: skewX(-30deg) scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
	width: 120%;
	height: 101%;
	z-index: -1;
}
.btn_primary:hover::before {
	transform: skewX(-30deg) scale(1, 1);
	transform-origin: left top;
}
.btn_primary:hover::after {
	background-color: transparent !important;
}
/* [EDIT_20260119] ボタンは aタグ下線アニメーションを使わない */
.btn_primary::after {
	content: none !important;
}
/*##############################################################################
|
| トップページ
|
##############################################################################*/
/*------------------------------------------------------------------------------
|
| ■┓メインビジュアル
| ┗┛
------------------------------------------------------------------------------*/
.hrmv{
	align-items: center;
	background: #fff;
	display: flex;
	min-height: 88vh;
	overflow: hidden;
	padding: clamp(60px, 8vh, 120px) 0;
	position: relative;
}
/* 下端フェードアウト用グラデーション */
.hrmv::after{
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	content: '';
	width: 100%;
	height: 120px;
	pointer-events: none;
	position: absolute;
		bottom: 0;
		left: 0;
	z-index: 3;
}
/*----------------------------
背景装飾（有機的な曲線）
----------------------------------------------------------*/
.hrmv_bg-shape{
	pointer-events: none;
	position: absolute;
	z-index: 1;
}
.hrmv_bg-shape--1{
	animation: float1 25s ease-in-out infinite;
	background: linear-gradient(135deg, rgba(139, 44, 45, 0.12) 0%, rgba(139, 44, 45, 0.06) 100%);
	border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
	width: 70%;
	height: 100%;
	top: -20%;
	left: -15%;
}
.hrmv_bg-shape--2{
	animation: float2 22s ease-in-out infinite;
	background: linear-gradient(225deg, rgba(255, 182, 193, 0.22) 0%, rgba(255, 182, 193, 0.12) 100%);
	border-radius: 45% 55% 60% 40% / 50% 50% 40% 60%;
	width: 75%;
	height: 105%;
	right: -18%;
	bottom: -25%;
}
.hrmv_bg-shape--3{
	animation: float3 20s ease-in-out infinite;
	background: radial-gradient(ellipse at center, rgba(255, 182, 193, 0.2) 0%, rgba(255, 182, 193, 0.08) 100%);
	border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%;
	width: 50%;
	height: 60%;
	bottom: -15%;
	left: -10%;
}
.hrmv_bg-shape--4{
	animation: float4 18s ease-in-out infinite;
	background: radial-gradient(ellipse at center, rgba(139, 44, 45, 0.1) 0%, rgba(139, 44, 45, 0.05) 100%);
	border-radius: 50% 50% 55% 45% / 45% 55% 50% 50%;
	width: 50%;
	height: 50%;
	top: -25%;
	right: -3%;
}

@keyframes float1{
	0%, 100%{transform: translate(0, 0) rotate(0deg) scale(1);}
	33%{transform: translate(25px, 35px) rotate(2deg) scale(1.03);}
	66%{transform: translate(-15px, 20px) rotate(-1deg) scale(0.98);}
}
@keyframes float2{
	0%, 100%{transform: translate(0, 0) rotate(0deg) scale(1);}
	33%{transform: translate(-30px, -25px) rotate(-3deg) scale(1.05);}
	66%{transform: translate(20px, -15px) rotate(2deg) scale(0.97);}
}
@keyframes float3{
	0%, 100%{transform: translate(0, 0) rotate(0deg) scale(1);}
	50%{transform: translate(20px, -30px) rotate(3deg) scale(1.08);}
}
@keyframes float4{
	0%, 100%{transform: translate(0, 0) rotate(0deg) scale(1);}
	50%{transform: translate(-25px, 35px) rotate(-2deg) scale(1.06);}
}

/*----------------------------
コンテンツコンテナ
----------------------------------------------------------*/
.hrmv_container{
	align-items: center;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	max-width: 1400px;
	padding: 0 clamp(24px, 5vw, 80px);
	position: relative;
	z-index: 2;
}
/*----------------------------
左側：テキストエリア
----------------------------------------------------------*/
.hrmv_text{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hrmv_copy{
	animation: fadeInUp 1s ease-out forwards;
	color: var(--color-text);
	font-size: clamp(28px, 4vw, 56px);
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.3;
	margin: 0 0 clamp(20px, 2.5vw, 40px) 0;
	opacity: 0;
	white-space: nowrap;
}
.hrmv_copy br{
	display: block;
}
.hrmv_copy-large{
	color: var(--color-primary);
	font-size: clamp(45px, 6.472vw, 90.6px);
	font-weight: 900;
	white-space: nowrap;
}
.hrmv_subtitle{
	animation: fadeInUp 1s ease-out 0.2s forwards;
	color: var(--color-text);
	font-size: clamp(16px, 1.8vw, 22px);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.75;
	margin: 0 0 clamp(32px, 4vw, 60px) 0;
	opacity: 0;
}
.hrmv_scroll {
	align-items: center;
	animation: fadeInUp 1s ease-out 0.4s forwards, scrollBounce 2s ease-in-out 1.5s infinite;
	color: var(--color-primary);
	display: inline-flex;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	opacity: 0;
	padding: 8px 0;
	text-decoration: none;
	transition: all 0.3s ease;
}
.hrmv_scroll::after {
	content: '↓';
	display: inline-block;
	font-size: 18px;
	transition: transform 0.3s ease;
}
.hrmv_scroll:hover {
	opacity: 0.7;
}
.hrmv_scroll:hover::after{
	transform: translateY(4px);
}
/*----------------------------
右側：写真エリア
----------------------------------------------------------*/
.hrmv_photo-area{
	animation: fadeIn 1.2s ease-out 0.3s forwards;
	opacity: 0;
	position: relative;
}
.hrmv_photo-circle{
	animation: morphShape 20s ease-in-out infinite;
	aspect-ratio: 1;
	border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
	box-shadow: 0 20px 60px rgba(139, 44, 45, 0.15);
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
@keyframes morphShape{
	0%, 100%{
	border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
	}
	33%{
	border-radius: 55% 45% 50% 50% / 60% 40% 60% 40%;
	}
	66%{
	border-radius: 50% 50% 40% 60% / 45% 55% 45% 55%;
	}
}
.hrmv_slide-wrapper{
	width: 100%;
	height: 100%;
	position: relative;
}
.hrmv_slide{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	position: absolute;
	inset: 0;
	transition: opacity 1.6s ease-in-out;
	will-change: opacity;
}
.hrmv_slide.is-active{
	opacity: 1;
}
.hrmv_slide.is-fadeout{
	opacity: 0;
}
/* 写真切り替えボタン */
.hrmv_dots{
	display: flex;
	gap: 12px;
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}
.hrmv_dot{
	background: rgba(139, 44, 45, 0.3);
	border: none;
	border-radius: 50%;
	width: 12px;
	height: 12px;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}
.hrmv_dot:hover{
	background: rgba(139, 44, 45, 0.5);
	transform: scale(1.2);
}
.hrmv_dot.is-active{
	background: var(--color-primary);
	border-radius: 6px;
	width: 32px;
}
@keyframes fadeInUp{
	from{
	opacity: 0;
	transform: translateY(30px);
	}
	to{
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeIn{
	from{
	opacity: 0;
	}
	to{
	opacity: 1;
	}
}
@keyframes scrollBounce{
	0%, 100%{
	transform: translateY(0);
	}
	50%{
	transform: translateY(6px);
	}
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
	.hrmv {
		min-height: 70vh;
	}
	.hrmv_container {
		gap: clamp(20px, 2vw, 60px);
	}
}
/*------------------------------------------------------------------------------
|
| ■┓トップページレイアウト
| ┗┛
------------------------------------------------------------------------------*/
.instagram {
	display: none;
}
main > .one_column > section {
	padding: 80px 40px;
}
div.top_layout > ul {
	display: grid;
		gap: 32px;
		grid-template-columns: repeat(2, 1fr);
	margin: 0;
	max-width: 1176px;
	position: relative;
}
div.top_layout > ul > li {
	margin-bottom: 0;
	padding: 0;
	width: auto;
}
div.top_layout > ul > li > div ,
	div.top_layout > ul > li > a,
	div.top_layout > ul > li > article {
	border: 1px solid #ccc;
	border-radius: 12px;
	color: var(--color-text);
	display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
div.top_layout > ul > li div {
	display: flex;
		flex-direction: column;
	padding: 40px;
	width: 100%;
	height: 100%;
}
div.top_layout > ul > li div > h3 {
	display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	font-size: 24px;
	font-size: 2.4rem;
	padding-bottom: 24px;
	text-align: center;
}
div.top_layout > ul > li div > h3 > span {
	font-size: 14px;
	font-size: 1.4rem;
}
div.top_layout > ul > li img {
	margin: 0 auto;
	width: 100%;
}
div.top_layout > ul > li.double > a > img {
	max-width: 100%;
}
div.top_layout > ul > li .btn_primary {
	margin-top: auto;
	width: 100%;
}
div.top_layout > ul > li .btn_primary + .btn_primary {
	margin-top: 16px;
}
/* [EDIT_20260119] 募集要項（.job_list）はカード全体リンクではないため、ボタン群だけ下部固定 */
div.top_layout.job_list .job_card_actions {
	display: flex;
		flex-direction: column;
	margin-top: auto;
	padding: 0;
	width: 100%;
}
div.top_layout.job_list .job_card_actions .btn_primary:not(:first-child) {
	margin-top: 16px;
}
/* [EDIT_20260119] 社員インタビューカード：画像はズームのみ／テキスト側だけ半透明 */
div.top_layout > ul > li > a.zoom_card {
	overflow: hidden;
}
div.top_layout > ul > li > a.zoom_card::after {
	content: none !important;
}
div.top_layout > ul > li > a.zoom_card > img {
	display: block;
	transform: scale(1);
	transform-origin: center;
	transition: transform .35s ease;
	width: 100%;
	will-change: transform;
}
div.top_layout > ul > li > a.zoom_card:hover > img,
div.top_layout > ul > li > a.zoom_card:focus-within > img {
	-ms-filter: none !important;
	filter: none !important;
	opacity: 1 !important;
	transform: scale(1.08);
}
div.top_layout > ul > li > a.zoom_card > div {
	transition: opacity .25s ease;
}
div.top_layout > ul > li > a.zoom_card:hover > div,
div.top_layout > ul > li > a.zoom_card:focus-within > div {
	opacity: .6;
}
/*------------------------------------------------------------------------------
|
| ■┓トップページ・ボトムエリアレイアウト
| ┗┛
------------------------------------------------------------------------------*/
.wrapper_btm_contents {
	background: #FBF2F2;
}
.wrapper_btm_contents > article {
	display: flex;
		justify-content: center;
	margin: 0 auto;
	max-width: 1368px;
	padding: 64px 40px;
}
.wrapper_btm_contents > article .heading {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 16px;
	text-align: center;
}
.wrapper_btm_contents > article > .wrap_block {
	margin: 0 auto;
}
/* フッターコンテンツ・左ブロック */
.wrapper_btm_contents > article .left_block {
	border-right: 1px solid #fff;
	padding-right: 40px;
}
.wrapper_btm_contents > article .left_block > .banner {
	display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
}
.wrapper_btm_contents > article .left_block > .banner > ul {
	display: flex;
	margin: 0 auto;
}
.wrapper_btm_contents > article .left_block > .banner > ul > li {
	padding-right: 16px;
}
.wrapper_btm_contents > article .left_block > .banner > ul > li:last-child {
	padding-right: 0;
}
.wrapper_btm_contents > article .left_block > .banner > ul > li img {
	max-width: 100%;
	vertical-align: bottom;
}
.wrapper_btm_contents > article .left_block > .banner > ul > li a {
	display: block;
}
.wrapper_btm_contents > article .left_block > .banner > ul > li:first-child > a:last-child {
	padding-top: 16px;
}
/* フッターコンテンツ・右ブロック */
.wrapper_btm_contents > article .right_block {
	display: flex;
		flex-direction: column;
		gap: 32px;
		justify-content: space-between;
		align-items: center;
	padding-left: 40px;
}
.wrapper_btm_contents > article .right_block > .sns {
}
.wrapper_btm_contents > article .right_block > .mark {
}
.wrapper_btm_contents > article .right_block > .sns > ul,
.wrapper_btm_contents > article .right_block > .mark > ul {
	display: flex;
		flex-wrap: wrap;
		gap: 16px;
		justify-content: center;
}
.wrapper_btm_contents > article .right_block > .mark > ul > li {
}
/*##############################################################################
|
| セカンダリ
|
##############################################################################*/
main {
	margin-top: 77px;
}
main > h1 {
	background: var(--color-primary);
	color: #fff;
	display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	font-size: 40px;
	font-size: 4.0rem;
	margin-bottom: 16px;
	padding: 40px;
	position: relative;
	text-align: center;
}
main > h1:before {
	color: #fff;
	content: attr(data-title) " ";
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 0.2em;
}
main > h1:after {
	border-color: var(--color-primary) transparent transparent transparent;
	border-style: solid;
	border-width: 16px 16px 0 16px;
	content: "";
	margin: auto;
	position: absolute;
		right: 0;
		bottom: -16px;
		left: 0;
	width: 0px;
	height: 0px;
}
main > article,
main > .desc {
	margin: 0 auto;
	max-width: 1024px;
	padding: 64px 40px 40px 40px;
	position: relative;
}
main > .desc {
	text-align: center;
}
main .catch {
	color: var(--color-primary);
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: 500;
}
main .catch > span {
	font-size: 18px;
	font-size: 1.8rem;
}
/*------------------------------------------------------------------------------
|
| ■┓パンクズリスト
| ┗┛
------------------------------------------------------------------------------*/
.breadcrumbs {
	margin-top: -56px;
	text-align: center;
	width: 100%;
}
.breadcrumbs nav {
	display: inline-block;
	padding: 12px 0;
	position: relative;
	width: auto;
}
.breadcrumbs nav ol {
	display: flex;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 200;
	list-style: none;
}
.breadcrumbs nav li,
.breadcrumbs nav li a {
	color: #fff;
}
.breadcrumbs nav li a:hover {
	opacity: .6;
}
.breadcrumbs nav li::after {
	content: ">";
	display: inline-block;
	padding: 0 8px;
}
.breadcrumbs nav li:last-child::after {
	display: none;
}
/*------------------------------------------------------------------------------
|
| ■┓1カラムスタイル
| ┗┛
------------------------------------------------------------------------------*/
main > .one_column {
	margin: 0 auto;
	max-width: 1024px;
}
main > .one_column > article {
	margin: 0 auto;
	padding: 40px 40px 80px 40px;
	width: 100%;
}
/*------------------------------------------------------------------------------
|
| ■┓2カラムスタイル（1カラムスタイルと共通プロパティあり）
| ┗┛
------------------------------------------------------------------------------*/
main > .two_column {
	display: flex;
		justify-content: flex-start;
	margin: 0 auto;
	max-width: 1024px;
	padding-right: 0;
	position: relative;
}
main > .two_column > div {
	padding: 40px 40px 80px 40px;
	width: 75%;
}
main > .two_column > div > article {
	margin-bottom: 160px;
	min-height: 400px;
}
main > .two_column > nav {
	width: 25%;
}
.sticked {
	margin: 40px 0;
	position: -webkit-sticky;
	position: sticky;
		top: 40px;
}
main > .one_column > section > h2:not(:first-child) ,
main > .two_column > div > section > h2:not(:first-child) {
	margin-top: 160px;
}
main > .one_column > section > h2,
main > .two_column > div > section > h2 {
	border-bottom: 1px solid #e1e4e6;
	color: #000;
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 32px;
	padding-bottom: .5em;
	position: relative;
}
main > .one_column > section > h2:before ,
main > .two_column > div > section > h2:before {
	background-color: var(--color-primary);
	content: "";
	display: block;
	position: absolute;
		bottom: 0;
		left: 0;
	width: 120px;
	height: 4px;
}
main > .one_column > section > h2 > div.caption,
main > .two_column > div > section > h2 > div.caption {
	font-size: 16px;
	font-size: 1.6rem;
}
main > .one_column > article > h3,
main > .two_column > div > article > h3 {
	background-color: #f3ece3;
	border-radius: 4px;
	color: var(--color-text);
	font-size: 24px;
	font-size: 2.4rem;
	margin: 80px 0 1.0em;
	padding: 16px 24px;
}
h4 {
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: 500;
	margin: 40px 0 .5em;
	padding-left: 24px;
	position: relative;
}
h4::before {
	color: var(--color-primary);
	content: "";
	font-family: FontAwesome;
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: normal;
	position: absolute;
		top: 2px;
		left: 0;
}
h5 {
	color: var(--color-primary);
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 600;
	margin: 40px 0 .5em;
}
/*------------------------------------------------------------------------------
|
| ■┓社員紹介モーダルウィンド設定
| ┗┛
------------------------------------------------------------------------------*/
/* dialog をフルスクリーンの“受け皿”にして、クリックで閉じられるようにする */
#member_modal.member_modal {
	align-items: center;
	background: transparent;
	border: none;
	color: var(--color-text);
	display: none;
	justify-content: center;
	margin: 0;
	max-width: none;
	max-height: none;
	overflow: visible;
	padding: 0;
	position: fixed;
		inset: 0;
	width: 100vw;
	height: 100vh;
}
#member_modal.member_modal[open] {
	display: flex;
}
#member_modal.member_modal::backdrop {
	backdrop-filter: blur(4px);
	background: var(--modal-overlay);
}
/* 中身（矢印をはみ出させるので overflow visible） */
#member_modal .member_modal_shell {
	overflow: visible;
	position: relative;
	width: min(92vw, 1096px);
}
/* 角丸＆影（ここでスクロールバーも角丸内に収める） */
#member_modal .member_modal_frame {
	background: var(--modal-surface);
	border-radius: var(--modal-radius);
	box-shadow: var(--modal-shadow);
	overflow: hidden;
}
/* スクロールはここだけ（横スクロール禁止） */
#member_modal .member_modal_scroll {
	max-height: calc(90vh - 88px);
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 44px 56px;
	scrollbar-color: var(--scrollbar-thumb) transparent;
	scrollbar-gutter: stable;
	scrollbar-width: thin;
}
#member_modal .member_modal_scroll::-webkit-scrollbar {
	width: 8px;
}
#member_modal .member_modal_scroll::-webkit-scrollbar-track {
	background: transparent;
}
#member_modal .member_modal_scroll::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb);
	background-clip: padding-box;
	border: 4px solid transparent;
	border-radius: 1000px;
}
#member_modal .member_modal_scroll::-webkit-scrollbar-thumb:hover {
	background: var(--scrollbar-thumb-hover);
	background-clip: padding-box;
}
/* レイアウト */
#member_modal .modal_grid {
	display: grid;
		grid-template-columns: 42% 58%;
		gap: 40px;
		align-items: start;
}
/* =========================================================
社員紹介モーダル：交互レイアウト（写真⇄Q&A）
========================================================= */
#member_modal .modal_grid_alt {
	display: grid;
		grid-template-areas: "photo1 head"
		"qa2   photo2"
		"photo3 qa3";
		grid-template-columns: 1fr 1fr;
		gap: 40px 16px;
		align-items: start;
}
#member_modal .modal_photo_block--primary {
	grid-area: photo1;
}
#member_modal .modal_head_block {
	grid-area: head;
	min-width: 0;
}
#member_modal .modal_qa_block {
	grid-area: qa2;
	min-width: 0;
}
#member_modal .modal_photo_block--secondary {
	grid-area: photo2;
}
#member_modal .modal_photo_block--third {
	grid-area: photo3;
}
#member_modal .modal_qa_block--third {
	grid-area: qa3;
	min-width: 0;
}
/* 写真サイズ：1枚目は大きく、2/3枚目は少し小さく */
#member_modal .modal_photo_block--primary .modal_photo_wrap {
	margin: 0 auto 18px;
	width: 320px;
}
#member_modal .modal_photo_block--secondary .modal_photo_wrap,
#member_modal .modal_photo_block--third .modal_photo_wrap {
	margin: 0 auto;
}
/* head内では profile の max-width を外して右カラム幅を使う */
#member_modal .modal_head_block .modal_profile {
	margin: 0;
	max-width: none;
}
/* モバイル：1カラムに並べ替え */
@media (max-width: 980px) {
	#member_modal .modal_grid_alt {
		gap: 24px;
		grid-template-areas: "photo1"
			"head"
			"photo2"
			"qa2"
			"photo3"
			"qa3";
		grid-template-columns: 1fr;
	}
	#member_modal .modal_photo_block--secondary .modal_photo_wrap,
	#member_modal .modal_photo_block--third .modal_photo_wrap {
		width: 256px;
	}
}
#member_modal .modal_left,
#member_modal .modal_right {
	min-width: 0;
}
/* close button */
#member_modal .modal_close {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 32px;
	line-height: 40px;
	position: absolute;
		top: 16px;
		right: 16px;
	width: 40px;
	height: 40px;
	z-index: 30;
}
/* nav arrows（角丸枠からはみ出す） */
#member_modal .modal_nav {
	background: rgba(255,255,255,.92);
	border: 1px solid rgba(0,0,0,.12);
	border-radius: 50%;
	box-shadow: 0 8px 32px rgba(0,0,0,.12);
	cursor: pointer;
	display: flex;
		justify-content: center;
		align-items: center;
	font-size: 22px;
	position: absolute;
		top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	z-index: 20;
}
#member_modal .modal_nav_prev {
	left: -24px;
}
#member_modal .modal_nav_next {
	right: -24px;
}
#member_modal .modal_photo_wrap {
	background: #fff;
	border-radius: 50%;
	margin: 0 auto 18px;
	max-width: 100%;
	overflow: hidden;
	width: 320px;
}
#member_modal .modal_photo {
	aspect-ratio: 1 / 1;
	display: block;
	object-fit: cover;
	width: 100%;
	height: auto;
}
#member_modal .modal_profile {
	text-align: left;
}
#member_modal .modal_profile_row {
	display: flex;
		gap: 8px;
		align-items: center;
	margin: 8px 0;
}
#member_modal .modal_dot {
	background: var(--color-primary);
	border-radius: 50%;
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
}
#member_modal .modal_name_ja {
}
#member_modal .modal_meta {
	border-bottom: 1px solid #ccc;
	margin-bottom: 16px;
	padding-bottom: 16px;
}
/* #member_modal .modal_title {
	border-bottom: 1px solid #ccc;
	font-size: 26px;
	font-size: 2.6rem;
	margin: 0;
	overflow-wrap: anywhere;
	padding-bottom: 16px;
} */
#member_modal .modal_a {
	/* font-size: 14px;
	font-size: 1.4rem; */
	line-height: 1.9;
	margin: 16px 0 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}
#member_modal .modal_q {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 500;
}
/*------------------------------------------------------------------------------
|
| ■┓募集要項（職種詳細）モーダルウィンド設定
| ┗┛
------------------------------------------------------------------------------*/
.open_job_modal {
	cursor: pointer;
}
/* モーダル本体 */
dialog.job_modal {
	background: transparent;
	border: none;
	color: var(--color-text);
	margin: 0;
	max-width: none;
	max-height: none;
	padding: 0;
	position: fixed;
		inset: 0;
	width: 100vw;
	height: 100vh;
}
dialog.job_modal::backdrop {
	backdrop-filter: blur(4px);
	background: var(--modal-overlay);
}
/* モーダル構造 */
.job_modal_shell {
	margin: 0 auto;
	max-width: 1056px;
	padding: 24px;
	position: relative;
}
.job_modal_frame {
	background: var(--modal-surface);
	border-radius: var(--modal-radius);
	box-shadow: var(--modal-shadow);
	overflow: hidden;
}
.job_modal_scroll {
	max-height: calc(90vh - 48px);
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 32px 40px;
	scrollbar-color: var(--scrollbar-thumb) transparent;
	scrollbar-gutter: stable;
	scrollbar-width: thin;
}
.job_modal_scroll::-webkit-scrollbar {
	width: 8px;
}
.job_modal_scroll::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 8px;
}
.job_modal_scroll::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb);
	background-clip: content-box;
	border: 1px solid transparent;
	border-radius: 8px;
}
.job_modal_scroll:hover::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb-hover);
	background-clip: content-box;
}
/* 閉じるボタン */
.job_modal_close {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 32px;
	line-height: 40px;
	position: absolute;
		top: calc(24px + 16px);
		right: calc(24px + 16px);
	width: 40px;
	height: 40px;
	z-index: 30;
}
.job_modal_close:focus {
	outline: none;
}
.job_modal_close:focus-visible {
	border-radius: 8px;
	outline: 2px solid rgba(0, 0, 0, .35);
	outline-offset: 2px;
}
/* モーダル見出しエリア */
.job_modal_head {
	margin: 8px 0 16px;
	text-align: center;
}
.job_modal_title {
	font-size: 28px;
	font-size: 2.8rem;
}
.job_tabs {
	display: flex;
		flex-wrap: wrap;
		gap: 0;
		justify-content: center;
	margin: 24px auto 0;
}
.job_tab {
	appearance: none;
	background: #f7f6f6;
	border: 1px solid #ded9da;
	border-bottom: none;
	border-radius: 12px 12px 0 0;
	color: #5a5456;
	cursor: pointer;
	font-size: 19px;
	font-size: 1.9rem;
	font-weight: 500;
	line-height: 1;
	margin: 0 6px 0 0;
	padding: 12px 24px;
}
.job_tab:last-child {
	margin-right: 0;
}
.job_tab.is_active {
	background: var(--color-primary);
	border: none;
	color: #fff;
}
.job_tab.is_active {
	background: linear-gradient(
		to bottom,
		#872B2C 0%,
		#872B2C 70%,
		#A24A5A 100%
	);
	color: #fff;
}
.job_tab.tab_large {
	font-size: 20px;
	font-size: 2.0rem;
	padding: 12px 24px;
}
/* タブパネル */
.job_panel {
	background: #fff;
	border: 1px solid #ccc;
	border-top: 0;
	border-radius: 12px;
	margin-top: -1px;
	overflow-x: hidden;
	padding: 40px;
	position: relative;
	text-align: left;
	word-break: break-word;
}
.job_panel::before {
	background: linear-gradient(
		to bottom,
		rgba(162,74,90,0.44) 0%,
		rgba(162,74,90,0.30) 10%,
		rgba(162,74,90,0.16) 28%,
		rgba(162,74,90,0.08) 52%,
		rgba(162,74,90,0.00) 100%
	);
	content: "";
	pointer-events: none;
	position: absolute;
		top: 0;
		left: 0;
	width: 100%;
	height: 56px;
}
.job_panel_body {
	/* font-size: 18px;
	font-size: 1.8rem; */
}
.job_panel_body p:last-child {
	margin: 0;
}
.job_appeal_title {
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: 500;
	margin-bottom: 16px;
}
.job_appeal_list {
	margin: 0;
}
.job_appeal_list > li:not(:last-child) {
	margin-bottom: 16px;
}
.job_appeal_note {
	font-size: 12px;
	font-size: 1.2rem;
	margin-top: 16px;
}
.job_task_list {
	display: inline-block;
}
.job_task_item {
	display: grid;
		grid-template-columns: 16px 1fr;
		column-gap: 8px;
		place-items: start start;
	margin: 0 0 16px;
	text-align: left;
}
.job_task_item:last-child {
	margin: 0;
}
.job_task_item::before {
	align-self: start;
	content: "";
	font-size: 18px;
	font-size: 1.8rem;
	grid-column: 1;
	grid-row: 1 / -1;
}
.job_task_item:nth-child(1)::before {
	content: "①";
}
.job_task_item:nth-child(2)::before {
	content: "②";
}
.job_task_item:nth-child(3)::before {
	content: "③";
}
.job_task_item:nth-child(4)::before {
	content: "④";
}
.job_task_body {
	display: contents;
}
.job_task_title {
	font-size: 19px;
	font-size: 1.9rem;
	font-weight: 500;
}
.job_task_desc {
	grid-column: 2;
}
.job_flow {
	margin-top: 24px;
}
.job_flow_title {
	font-weight: 500;
	margin-bottom: 16px;
	text-align: center;
}
.job_flow_grid {
	display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 44px;
}
.job_flow_item {
	align-items: center;
	background: #7A6A6D;
	border-radius: 0;
	color: #fff;
	display: flex;
		flex-direction: column;
		justify-content: center;
	padding: 16px;
	position: relative;
	text-align: center;
}
.job_flow_note {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
}
.job_flow_item:not(:last-child)::after {
	background: #7A6A6D;
	content: "";
	height: 100%;
	position: absolute;
		left: 99.9%; /* 隙間線対策 */
		top: 0;
	width: 18px;
	clip-path: polygon(
		0 0,
		100% 50%,
		0 100%
	);
}
/*------------------------------------------------------------------------------
|
| ■┓FAQ
| ┗┛
------------------------------------------------------------------------------*/
.faq {
	display: grid;
		gap: 16px;
	margin: 0 auto;
}
.faq_item {
	background: #fff;
	border: 1px solid var(--color-primary);
	border-radius: 12px;
	overflow: hidden;
}
/* summaryのデフォルト三角を消す */
.faq_q {
	cursor: pointer;
	display: grid;
		grid-template-columns: 96px 1fr 64px;
		gap: 0;
		align-items: center;
	list-style: none;
	padding: 0;
}
.faq_q::-webkit-details-marker {
	display: none;
}
.faq_tag {
	background: var(--color-primary);
	color: #fff;
	display: grid;
		place-items: center;
	height: 100%;
}
.faq_text {
	padding: 0 16px;
}
/* 右端の＋／－ */
.faq_icon {
	/* border-left: 1px solid var(--color-primary); */
	display: grid;
		place-items: center;
	height: 64px;
	position: relative;
}
.faq_icon::before {
	content: "+";
	font-size: 24px;
	line-height: 1;
}
.faq_item[open] .faq_icon::before {
	content: "−";
}
/* 回答 */
.faq_a {
	border-top: 1px solid var(--color-primary);
	padding: 16px;
}
.faq_aRow {
	display: grid;
		grid-template-columns: 96px 1fr;
		gap: 0;
}
.faq_tag_a {
	background: #fff;
	color: var(--color-text);
	margin-left: -24px;
}
.faq_aText p {
	margin: 0;
}
.faq_aText p + p {
	margin-top: 8px;
}
/*------------------------------------------------------------------------------
|
| ■┓ページのトップへ
| ┗┛
------------------------------------------------------------------------------*/
.page_top {
	position: fixed;
		right: 16px;
		bottom: 16px;
	z-index: 9999;
}
.page_top a {
	background: var(--color-primary) url(../img/btn_arrow.png) no-repeat center center;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	transform: rotateZ(-90deg);
	width: 56px;
	height: 56px;
}
.page_top a:hover {
	background: #c66 url(../img/btn_arrow.png) no-repeat center center;
}
/*##############################################################################
|
| Footer
|
##############################################################################*/
.wrapper_footer {
	background: #FBF2F2;
	display: flex;
		flex-direction: column;
	width: 100%;
}
footer {
	display: flex;
		flex-wrap: wrap;
	margin: 0 auto;
	max-width: 1368px;
	padding: 40px 0 40px 40px;
	width: 100%;
}
small {
	display: block;
	font-size: 10px;
	font-size: 1.0rem;
	padding: 8px 0;
	text-align: center;
	width: 100%;
}
/*------------------------------------------------------------------------------
|
| ■┓フッター左側レイアウト用（VHR会社情報）
| ┗┛
|
------------------------------------------------------------------------------*/
footer > section {
	margin-right: 80px;
	width: 256px;
}
/*------------------------------------------------------------------------------
|
| VHRロゴ
|
------------------------------------------------------------------------------*/
footer > section > h1 {
	margin-bottom: 16px;
	text-align: left;
}
footer > section > h1 {
	display: flex;
		flex-direction: column;
}
footer > section > h1:after {
	color: var(--color-text);
	content: attr(data-title) " ";
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 600;
	margin-top: 16px;
}
footer > section > h1 img {
	align-self: flex-start;
	width: 248px;
}
/*------------------------------------------------------------------------------
|
| VHRロゴキャプション
|
------------------------------------------------------------------------------*/
footer > section > p {
	font-size: 14px;
	font-size: 1.4rem;
	margin-bottom: 24px;
}
/*------------------------------------------------------------------------------
|
| お問い合わせリンクボタン
|
------------------------------------------------------------------------------*/
footer > section > div > a.btn_primary {
	font-size: 12px;
	font-size: 1.2rem;
}
/*------------------------------------------------------------------------------
|
| その他、取得マークなど
|
------------------------------------------------------------------------------*/
footer > section > ul {
	display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
	margin-top: 40px;
}
footer > section > ul li:not(:last-child) {
	margin-right: 12px;
}
/*------------------------------------------------------------------------------
|
| ■┓フッター右側レイアウト用（フッターメニュー）
| ┗┛
------------------------------------------------------------------------------*/
footer > nav {
	display: flex;
		justify-content: center;
	width: calc(100% - 336px);
}
footer > nav > ul {
	display: flex;
		flex-flow: wrap;
		align-items: flex-start;
}
footer > nav > ul a {
	color: var(--color-text);
	display: block;
}
footer > nav > ul a > div.caption {
	font-size: 11px;
	font-size: 1.1rem;
}
footer > nav > ul > li {
	margin-bottom: 56px;
	margin-right: 80px;
}
footer > nav > ul > li:last-child {
	margin-right: 0;
}
footer > nav > ul > li > div {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: 500;
	margin-bottom: 16px;
}
footer > nav > ul > li > ul > li {
	font-size: 14px;
	font-size: 1.4rem;
	margin-bottom: 8px;
}
/*------------------------------------------------------------------------------
|
| 多階層用 li
|
------------------------------------------------------------------------------*/
footer > nav > ul > li.multi_level {
	margin-right: 0;
	width: 100%;
}
footer > nav > ul > li.multi_level > ul {
	display: flex;
		flex-flow: wrap;
		justify-content: flex-start;
		align-items: flex-start;
}
footer > nav > ul > li.multi_level > ul > li {
	margin-bottom: 32px;
	min-width: 224px;
	padding-right: 24px;
}
footer > nav > ul > li.multi_level > ul > li:last-child {
	padding-right: 0;
}
footer > nav > ul > li.multi_level > ul > li > a {
	border-bottom: 1px solid var(--color-text);
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 16px;
	padding-bottom: 8px;
	white-space: nowrap;
}
footer > nav > ul > li.multi_level > ul > li > a > span {
	font-size: 12px;
	font-size: 1.2rem;
}
footer > nav > ul > li.multi_level > ul > li > ul > li {
	font-size: 14px;
	font-size: 1.4rem;
	margin-bottom: 16px;
}
/*------------------------------------------------------------------------------
|
| ■┓フッター下段レイアウト用（コピーライトなど）
| ┗┛
------------------------------------------------------------------------------*/
.wrapper_footer > div {
	background: var(--color-primary);
	color: #fff;
	font-size: 10px;
	font-size: 1.0rem;
	padding: 16px 16px 0 16px;
	text-align: center;
	width: 100%;
}
.wrapper_footer > div > ul {
	display: flex;
		flex-flow: wrap;
		justify-content: center;
		align-items: center;
	margin-bottom: 8px;
}
.wrapper_footer > div > ul li {
	padding: 0 8px;
}
.wrapper_footer > div > ul li a {
	color: #fff;
	display: block;
}
.wrapper_footer > div a::after {
	background-color: #fff;
}
/*##############################################################################
|
| サイト共通スタイルまとめ
|
##############################################################################*/
@keyframes fade-in {
	/* eng対応で追加 */
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
a[href$=".pdf"]:after {
	color: #f00;
	content: "";
	font-family: FontAwesome;
	font-size: 12px;
	font-size: 1.2rem;
	margin-left: 2px;
}
a[href$=".xls"]:after {
	color: green;
	content: "";
	font-family: FontAwesome;
	font-size: 12px;
	font-size: 1.2rem;
	margin-left: 2px;
}
.impt_point {
	color: var(--color-primary);
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 500;
}
.impt_point::before ,
.impt_point::after {
	background: #fff;
	content: "～";
	font-weight: 600;
}
.caption {
	font-size: 12px;
	font-size: 1.2rem;
}
/*------------------------------------------------------------------------------
|
| ■┓連番付与スタイル
| ┗┛※連番で番号を付けたい場合、該当要素（ul,ol）の外枠に.counter_incrementを付ける
|
------------------------------------------------------------------------------*/
.counter_increment > li {
	counter-increment: number;
	padding-left: 2em !important;
	text-indent: -1.6em;
}
.counter_increment > li span::before {
	content: counter(number)".";
	padding-right: .5em;
}
/*------------------------------------------------------------------------------
|
| ■┓エラーメッセージスタイル
| ┗┛
------------------------------------------------------------------------------*/
.error_message {
	background: #fff0f5;
	border: 1px solid #f08080;
	border-radius: 8px;
	display: block;
	margin-bottom: 1em;
	padding: 16px;
}
.error_message ul {
	margin-left: 16px;
}
.error_message li {
	color: #f00;
	position: relative;
}
.error_message li::after {
	border-bottom: 4px solid #f00;
	border-left: 4px solid #f00;
	content: "";
	display: block;
	position: absolute;
		top: .5em;
		left: -1em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 8px;
	height: 4px;
}
/*------------------------------------------------------------------------------
|
| ■┓画像自動縮小
| ┗┛
|
------------------------------------------------------------------------------*/
img.auto {
	height: auto;
	max-width: 100% !important;
}
/*------------------------------------------------------------------------------
|
| ■┓テーブルスタイル
| ┗┛
------------------------------------------------------------------------------*/
.tbl_scroll {
	margin-bottom: 1em;
	overflow-x: auto;
	width: 100%;
}
.tbl_scroll > table {
	margin-bottom: 0;
}
/* normal */
table.normal {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 1em;
	width: 100%;
}
table.normal.width_auto {
	width: auto;
}
table.normal th , table.normal td {
	border: 1px solid #ccc;
	padding: 16px;
}
table.normal th {
	background: #efefef;
}
table.normal th,
table.normal td {
	vertical-align: middle;
}
table.normal thead th {
	background: #999;
	border: 1px solid #fff;
	border-top: 1px solid #999;
	color: #fff;
}
table.normal thead th:nth-child(1) {
	border-left: 1px solid #999;
}
table.normal thead th:nth-last-child(1) {
	border-right: 1px solid #999;
}
table.normal tbody th {
	background: #efefef;
	text-align: center;
}
table.normal .delete_cell {
	background-color: #fff;
	border: none !important;
}
table.normal.th_right th {
	text-align: right;
}
table.normal.th_center th {
	text-align: center;
}
/*------------------------------------------------------------------------------
|
| ■┓リストスタイル
| ┗┛
------------------------------------------------------------------------------*/
ul.normal > li:not(:last-child) {
	margin-bottom: .5em;
}
ul.normal > li {
	margin-left: 16px;
	position: relative;
}
ul.normal > li::before {
	background-color: var(--color-text);
	border-radius: 8px;
	content: "";
	display: inline-block;
	margin-right: 12px;
	position: absolute;
		top: 8px;
		left: -16px;
	width: 4px;
	height: 4px;
}
/*------------------------------------------------------------------------------
|
| ■┓input  textarea  select設定
| ┗┛
------------------------------------------------------------------------------*/
input[type="password"],
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="search"],/* inputで指定すると、radio、checkboxも変更されてしまうためtypeで指定 */
textarea,
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #999;
	border-radius: 0;
	box-shadow: inset 1px 4px 8px -8px rgba(0,0,0,0.5);
	font-family: inherit;
	font-size: inherit;
	margin-bottom: 6px;
	margin-top: 6px;
	outline: none;
	padding: 4px 8px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
/* input */
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px white inset;
}
/* input type="number" */
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance: textfield;
}
/* input:focus select:focus */
input:focus,
textarea:focus,
select:focus {
	background-color: #fffff0;
}
.btn_bottom input:focus,
a.btn_input:active {
	background-color: #fff;
}
/* input type="radio" */
input[type="radio"] {
	display: none;
}
/*	
input[type="radio"] + label {
	display: inline-block;
	margin-right: 16px;
	padding-left: 22px;
	position: relative;
}
input[type="radio"] + label::before,
input[type="radio"] + label::after {
	content: "";
	position: absolute;
	transition: all .2s;
}
input[type="radio"] + label::before {
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 14px;
		top: 5px;
		left: 0;
	width: 14px;
	height: 14px;
}
input[type="radio"] + label::after {
	border-radius: 50%;
		top: 8px;
		left: 3px;
	width: 10px;
	height: 10px;
	opacity: 0;
}
input[type="radio"] + label:hover::before {
	background: #fff;
}
input[type="radio"]:checked + label::before {
	background: #fff;
	border: 1px solid #f60;
}
input[type="radio"]:checked + label::after {
	background: #f60;
	opacity: 1;
}
*/
/* input type="checkbox" */
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	display: inline-block;
	padding: 0 3px 3px 22px;
	position: relative;
}
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	content: "";
	position: absolute;
	transition: all .2s;
}
input[type="checkbox"] + label::before {
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 4px;
	left: 0;
	top: 4px;
	width: 16px;
	height: 16px;
}
input[type="checkbox"] + label::after {
	border-bottom: 2px solid #f60;
	border-left: 2px solid #f60;
	left: 4px;
	opacity: 0;
	top: 8px;
	transform: rotate(-45deg) scale(.5);
	width: 8px;
	height: 4px;
}
input[type="checkbox"] + label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #f60;
}
input[type="checkbox"]:checked + label::after {
	opacity: 1;
	transform: rotate(-45deg) scale(1);
}
/* select */
select::-ms-expand {
	display: none;
}
select {
	background-color: #fff;
	background-image: url(https://secure.apap.jp/vc/base/usr/docs/images/select_arrow.svg);
	background-position: right 4px top 50%;
	background-repeat: no-repeat;
	background-size: 8px 8px;
	cursor: pointer;
	max-width: 100%;
	padding-right: 20px;
}
/* input:disabled select:disabled */
input[type="radio"]:disabled + label,
input[type="checkbox"]:disabled + label,
select:disabled {
	color: #999;
	cursor: default !important;
}
input[type="radio"]:disabled + label::before,
input[type="checkbox"]:disabled + label::before {
	background-color: #fff;
	border-color: #ddd;
}
select:disabled {
	background-image: url(https://secure.apap.jp/vc/base/usr/docs/images/select_arrow_disabled.svg);
	border-color: #ccc;
}
/* 自動入力のため手動入力しないインプットタグの枠線を消す（input.no_frameline） */
input.no_frameline[type="text"],
input.no_frameline[type="number"],
input.no_frameline[type="email"],
input.no_frameline[type="tel"] {
	background: transparent;
	border: none;
	box-shadow: none;
	cursor: default;
}
/*------------------------------------------------------------------------------
|
| 申込フォームページの最下部ナビゲーション
|
------------------------------------------------------------------------------*/
.submit_area {
	display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
	margin-top: 48px;
	text-align: center;
	width: calc(50% + 128px);
}
.submit_area.close {
	justify-content: center;
	width: 100%;
}
.submit_area.close a.btn_close {
	min-width: 256px;
}
.submit_area .btn_submit {
	margin-left: auto;
}
/*------------------------------------------------------------------------------
|
| 「次へ」等のボタン　→　（a.btn_submit）
| 「戻る」等のボタン　→　（a.btn_back）
|
------------------------------------------------------------------------------*/
/* ボタン表現 */
a.btn_submit,
a.btn_back {
	border-radius: 4px;
	display: flex;
		justify-content: center;
		align-items: center;
	min-width: 256px;
	position: relative;
	transition: all .2s;
}
a.btn_submit {
	background-color: #f60;
	color: #fff !important;
	padding: 18px 12px;
}
a.btn_back {
	background: #ddd;
	color: #000 !important;
	font-size: 14px;
	font-size: 1.4rem;
	min-width: 128px;
	padding: 10px 12px;
}
/* spanタグ表現 */
a.btn_submit span {
	margin-left: 24px;
}
a.btn_submit span,
a.btn_back span {
	display: block;
	line-height: 1.0;
}
a.btn_back span {
	margin-left: 16px;
}
a.btn_submit span::before,
a.btn_back span::before {
	content: "";
	display: block;
	position: absolute;
}
a.btn_submit span::before {
	background: url(https://secure.apap.jp/vc/base/usr/apply/images/ic_arrow@2x.png) no-repeat 0 0;
	background-size: 16px 8px;
	margin-left: -24px;
	top: calc(50% - 8px);
	width: 16px;
	height: 8px;
}
a.btn_back span::before {
	background: url(https://secure.apap.jp/vc/base/usr/apply/images/ic_back@2x.png) no-repeat 0 0;
	background-size: 8px 8px;
	margin-left: -16px;
	top: calc(50% - 4px);
	width: 8px;
	height: 8px;
}
/*------------------------------------------------------------------------------
|
| 「閉じる」ボタン　→　（a.btn_close）
|
------------------------------------------------------------------------------*/
a.btn_close {
	background: #ddd;
	border-radius: 4px;
	color: #000 !important;
	display: flex;
		justify-content: center;
		align-items: center;
	font-size: 14px;
	font-size: 1.4rem;
	min-width: 128px;
	padding: 10px 12px;
	position: relative;
	transition: all .2s;
}
a.btn_close span {
	display: block;
	line-height: 1.0;
}
/*------------------------------------------------------------------------------
|
| ホバースタイル
|
------------------------------------------------------------------------------*/
a.btn_submit:hover,
a.btn_back:hover,
a.btn_close:hover {
	opacity: 0.6;
	text-decoration: none !important;
}
