/*--------------------------------------------------------------*/
/* MainReset */
/*--------------------------------------------------------------*/
html {
	font-size: 62.5%;
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased
}
body, div, dl, dt, dd, ul, ol, li, pre, code, 
form, fieldset, legend, input, textarea, figure, 
p, blockquote, th, td {
	font-size: 1.6rem;
	color: #444;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 2.4rem;
	font-weight: normal;
	letter-spacing: 0.2em;
	margin: 0;
	padding: 0;
}
/* min767 */
@media screen and (min-width: 767px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}
/* 768 */
@media (max-width: 768px) {
	body, div, dl, dt, dd, ul, ol, li, pre, code, 
	form, fieldset, legend, input, textarea, figure, 
	p, blockquote, th, td {
		font-size: 1.5rem;
	}
	h1, h2, h3, h4, h5, h6 {
		font-size: 2.1rem;
	}
}
/* 580 */
@media (max-width: 580px) {
	body, div, dl, dt, dd, ul, ol, li, pre, code, 
	form, fieldset, legend, input, textarea, figure, 
	p, blockquote, th, td {
		font-size: 1.4rem;
	}
	h1, h2, h3, h4, h5, h6 {
		font-size: 1.8rem;
	}
}
/* font */
body {
	color: #444;
	font-family: "noto-sans-cjk-jp", "kozuka-gothic-pro", "小塚ゴシック Pro", "Kozuka Gothic Pro", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
	-mts-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-weight: 400;
	font-style: normal;
}
img {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
address, caption, code, th {
	font-style: normal;
	font-weight: normal;
}
img, fieldset {
	border: 0;
}
ol, ul {
	list-style-type: none;
}

/*--------------------------------------------------------------*/
/* 共通 base */
/*--------------------------------------------------------------*/
::selection {
	background: #1f6998c7;
	color: #fff;
}
a:active {
	color: #316dc6;
	outline: 0;
	text-decoration: none;
}
body.is-pc a:hover {
	color: #316dc6;
	outline: 0;
	text-decoration: none;
}
body.is-pc a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
p {
	line-height: 1.8;
}
strong {
	background: linear-gradient(transparent 60%,#FFE600 40%);
}
.content {
	max-width: 1140px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	transition: .3s padding ease;
}
.content.wide {
	max-width: 1640px;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex.reverse {
	flex-direction: row-reverse;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}

/*--------------------------------------------------------------*/
/* Form関連 */
/*--------------------------------------------------------------*/
input, textarea, table select, button {
	font-family: inherit;
	font-size: inherit;
	font-weight: normal;
}
input, table select, button {
	vertical-align: middle;
}
textarea::placeholder,
input::placeholder {
	color: #ccc;
}
input:-ms-input-placeholder {
	color: #ccc;
}
input::-ms-input-placeholder {
	color: #ccc;
}
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=checkbox],
input[type=submit],
input[type=button],
input[type=number],
button,
textarea {
	border-radius: 4px;
	border: 1px solid #bfbfbf;
	margin: 0;
	padding: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	background-color: #fff;
}
textarea {
	width: 100%;
	height: 240px;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
table select:focus,
textarea:focus {
	outline: none;
	background-color: #FFFFDF;
	border: 1px solid #444;
	border-color: #838383;
}
input[type=submit],
input[type=button],
button {
	outline: none;
	cursor: pointer;
	background-color: #F4F4F4;
}
body.is-pc input[type=submit]:hover,
body.is-pc input[type=button]:hover {
	background-color: #fff;
}
input[type=submit]:active,
input[type=button]:active,
button:active {
	background-color: #01472e;
}
/* checkbox */
input[type=checkbox] {
	display: none;
}
input[type=checkbox] + .mwform-checkbox-field-text {
	position: relative;
	vertical-align: middle;
	cursor: pointer;
}
input[type=checkbox] + .mwform-checkbox-field-text:before {
	content: "\f0c8";
	font-family: "Font Awesome 5 Free";
	font-weight: 500;
	color: #ccc;
	font-size: 22px;
	margin-right: 4px;
	position: relative;
	bottom: -2px;
}
input[type=checkbox]:checked + .mwform-checkbox-field-text:before {
	content: "\f14a";
	color: #f39800;
}
/* radio */
input[type=radio] {
	display: none;
}
input[type=radio] + .mwform-radio-field-text:before {
	content: "\f111";
	font-family: "Font Awesome 5 Free";
	font-weight: 500;
	color: #ccc;
	font-size: 18px;
	margin-right: 6px;
}
input[type=radio]:checked + .mwform-radio-field-text:before {
	content: "\f192";
	color: #316dc6;
}
/* label */
.form label {
	white-space: nowrap;
}
/* select */
select {
	/* styling */
	background-image: linear-gradient(45deg, transparent 50.1%, #fff 50.1%), linear-gradient(135deg, #fff 50.1%, transparent 50.1%), linear-gradient(to right, #aaa, #aaa);
	background-position: calc(100% - 22px) calc(20px), calc(100% - 17px) calc(20px), 100% 0;
	background-size: 5px 5px, 5px 5px, 46px 46px;
	background-repeat: no-repeat;
	background-color: white;
	border: thin solid #bfbfbf;
	border-radius: 4px;
	display: inline-block;
	font: inherit;
	line-height: 1.5em;
	padding: 10px 50px 10px 10px;
	color: #000;
	/* reset */
	margin: 0;      
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	width: 100%;
}
select:focus {
	background-image: linear-gradient(45deg, white 50.1%, transparent 50.1%), linear-gradient(135deg, transparent 50.1%, white 50.1%), linear-gradient(to right, #aaa, #aaa);
	background-position: calc(100% - 17px) calc(20px), calc(100% - 22px) calc(20px), 100% 0;
	background-size: 5px 5px, 5px 5px, 46px 46px;
	background-repeat: no-repeat;
	border-color: #bfbfbf;
	outline: 0;
}
select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}
/* submit */
input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: none;
	border-style: none;
	line-height: 1.2;
	background: #316dc6;
	color: #fff;
	padding: 14px 10px;
	width: 220px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: block;
	margin: 0 auto;
	transition: .3s ease;
}
body.is-pc input[type="submit"]:hover {
	background-color: #ea4737;
}
/* 580 */
@media (max-width: 580px) {
	input[type="submit"] {
		margin: 30px auto 0 auto;
	}
}

/*--------------------------------------------------------------*/
/* 共通 table */
/*--------------------------------------------------------------*/
table {
	border-collapse: collapse;
	border-top: 1px solid #BABABA;
	border-left: 1px solid #BABABA;
	margin: 30px 0;
}
table tr th,
table tr td {
	padding: 15px 20px;
	border-bottom: 1px solid #BABABA;
	border-right: 1px solid #BABABA;
}
table tr th {
	background: #f1f1f1;
	white-space: nowrap;
}

/*--------------------------------------------------------------*/
/* パララックス */
/*--------------------------------------------------------------*/
.mv_left,
.mv_right,
.mv_up,
.mv_down,
.mv_bk {
	position: relative;
}
.mv_left {
	opacity: 0;
	left: -40px;
}
.mv_right {
	opacity: 0;
	right: -40px;
}
.mv_up {
	opacity: 0;
	top: 40px;
}
.mv_down {
	opacity: 0;
	top: -40px;
}
.mv_fade {
	opacity: 0;
	transition-duration: 1.2s;
}
.mv_fade.cb_ani {
	opacity: 1;
}
.fade_up {
	transition-duration: 1.2s;
	transform: translate3d(0,40px,0);
	opacity: 0;
	transition-property: opacity,transform
}
.fade_up.cb_ani {
	opacity: 1;
	transform: translateZ(0);
}
/* custom */
.custom {
	transition-duration: 1.2s;
	opacity: 0;
	transition-property: opacity,transform
}
/* c1 */
.custom.c1 {
	transform: translateY(0)!important;
}
.custom.c1.cb_ani {
	opacity: 1;
	transform: translateY(-60%)!important;
}

/*--------------------------------------------------------------*/
/* 共通 button.btn */
/*--------------------------------------------------------------*/
button.btn {
	background: #ef6f2e;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px;
	transition: .3s;
}
body.is-pc button.btn:hover {
	background: #f55200;
	border-radius: 8px;
}

/*--------------------------------------------------------------*/
/* 共通 a.btn */
/*--------------------------------------------------------------*/
a.btn {
	display: inline-block;
	line-height: 1;
	color: #fff;
	max-width: 220px;
	width: 100%;
	padding: 16px 10px;
	border: 1px solid #fff;
	text-align: center;
	position: relative;
	transition: .3s ease;
}
body.is-pc a.btn:hover {
	background: #1f5198;
	border-color: #1f5198;
	color: #fff;
}

/*--------------------------------------------------------------*/
/* 共通 a.view_more */
/*--------------------------------------------------------------*/
a.view_more {
	font-size: 1.4rem;
	margin-right: 6px;
	transition: .3s ease;
}
a.view_more i {
	margin-left: 11px;
	transition: .3s ease;
}
body.is-pc a.view_more:hover i {
	transform: translateX(3px);
}


/*--------------------------------------------------------------*/
/* 画像hoverエフェクト .effect2 liが多段の場合に不具合がある為 */
/*--------------------------------------------------------------*/
.effect2 {
	position: relative;
}
.effect2::after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.08);
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
}
body.is-pc a:hover > .effect2::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.effect2::before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 6px;
	right: 6px;
	bottom: 6px;
	left: 6px;
	border: solid 1px #fff;
	-webkit-transition: all 0.4s ease-in;
	transition: all 0.4s ease-in;
	opacity: 0;
}
body.is-pc a:hover > .effect2::before {
	opacity: 1;
}

/*--------------------------------------------------------------*/
/* 共通 a.more */
/*--------------------------------------------------------------*/
a.more {
	display: inline-block;
	font-size: 1.2rem;
	color: #b3b3b3;
	border: 1px solid #b3b3b3;
	line-height: 1;
	max-width: 140px;
	width: 100%;
	padding: 14px 12px 14px 0px;
	border-radius: 2px;
	text-align: center;
	position: relative;
	transition: .3s ease;
}
a.more.white {
	color: #fff;
	border: 1px solid #fff;
}
body.is-pc a.more:hover {
	background: #1f5198;
	border-color: #1f5198;
	color: #fff;
}
a.more i {
	position: absolute;
	top: 52%;
	right: 25px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	transition: .3s ease;
}
body.is-pc a.more:hover i {
	right: 20px;
}

/*---------------------------------------------*/
/* 共通 pd_std */
/*---------------------------------------------*/
.pd_std_ss {
	padding-top: 60px;
	padding-bottom: 60px;
}
.pd_std_s {
	padding-top: 100px;
	padding-bottom: 100px;
}
.pd_std {
	padding-top: 120px;
	padding-bottom: 120px;
}
.pd_std.bzero,
.pd_std_s.bzero {
	padding-bottom: 0px;
}
.pd_std.tzero,
.pd_std_s.tzero {
	padding-top: 0px;
}
/* 1240 */
@media (max-width: 1240px) {
	.pd_std_s {
		padding-top: max(8.065vw, 60px); //100px;
		padding-bottom: max(8.065vw, 60px); //100px;
	}
	.pd_std {
		padding-top: max(9.677vw, 60px); //120px;
		padding-bottom: max(9.677vw, 60px); //120px;
	}
}

/*--------------------------------------------------------------*/
/* 共通 レスポンシブ関連 */
/*--------------------------------------------------------------*/
.sp_view {
	display: none;
}
.tb_view {
	display: none;
}
.unique {
	display: none;
}
/* 768 */
@media (max-width: 768px) {
	.pc_view {
		display: none;
	}
	.tb_view {
		display: block;
	}
	.tb_none {
		display: none!important;
	}
}
/* 580 */
@media (max-width: 580px) {
	.sp_view {
		display: block;
	}
	.sp_none {
		display: none!important;
	}
}

/*--------------------------------------------------------------*/
/* 共通 Over */
/*--------------------------------------------------------------*/
.over {
	position: relative;
}
.over::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}
.over.deep::before {
	background: rgba(0,0,0,0.7);
}

/*--------------------------------------------------------------*/
/* SUB */
/*--------------------------------------------------------------*/
body.sub {
	padding-top: 80px;
}
/* 1000 */
@media (max-width: 1000px) {
	body.sub {
		padding-top: 70px;
	}
}
/* 580 */
@media (max-width: 580px) {
	body.sub {
		padding-top: 60px;
	}
}

/*--------------------------------------------------------------*/
/* #header */
/*--------------------------------------------------------------*/
#header {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	transition: background .3s ease;
	top: 0;
	left: 0;
	z-index: 9;
}
body.sub #header {
	background: #fff;
}
#header.white,
body.is-pc #header:hover {
	background: #fff;
	box-shadow: 0px 2px 1px 0px rgb(0 0 0 / 10%);
}
#header #gnav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 3vw;
}
#header #gnav .logo {
	max-width: 400px;
	height: 80px;
	display: flex;
	align-items: center;
	transition: .3s ease;
}
#header.white #gnav .logo {
	height: 70px;
	transition: .3s ease;
}
#header #gnav .logo img {
	max-width: 300px;
	min-width: 260px;
	width: 26vw;
	display: block;
}
#header #gnav nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex: 1;
	gap: 0 3vw;
	transition: gap .15s ease;
}
#header #gnav nav > ul {
	display: flex;
	align-items: center;
	gap: 0 2.5vw;
	transition: gap .15s ease;
}
#header #gnav nav > ul > li {
	position: relative;
}
#header #gnav nav > ul > li > a::after {
	content: '';
	display: block;
	height: 1px;
	width: 100%;
	background: #316dc6;
	position: absolute;
	bottom: 22px;
	left: 0;
	transform: scale(0, 1);
	transition: .3s;
}
body.is-pc #header #gnav nav > ul > li > a:hover {
	color: #316dc6;
}
body.is-pc #header #gnav nav > ul > li > a:hover::after {
	transform: scale(1, 1);
}
#header #gnav nav div.contact {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 160px;
	min-width: 130px;
	width: 18%;
}
#header #gnav nav div.contact a {
	display: block;
	width: 100%;
	padding: 5px 0;
	text-align: center;
	border: 1px solid #444;
	transition: .3s ease;
}
body.is-pc #header #gnav nav div.contact a:hover {
	border: 1px solid #316dc6;
	background: #316dc6;
	color: #fff;
}
/* 1240 */
@media (max-width: 1240px) {
	#header #gnav nav {
		gap: 0 1.5vw;
	}
	#header #gnav nav > ul {
		gap: 0 1.5vw;
	}
	#header #gnav nav > ul > li > a,
	#header #gnav nav > ul > li > div > a {
		font-size: 1.4rem;
	}
	#header #gnav nav div.contact a {
		font-size: 1.4rem;
	}
}
/* 1000 */
@media (max-width: 1000px) {
	#header #gnav {
		padding: 0 30px 0 3vw;
	}
	#header #gnav .logo {
		height: 70px!important;
	}
	#header #gnav nav {
		margin-right: 40px;
	}
	#header #gnav nav > ul {
		display: none;
	}
}
/* 580 */
@media (max-width: 580px) {
	#header #gnav .logo {
		height: 60px!important;
	}
	#header #gnav .logo img {
		min-width: 250px;
	}
	#header #gnav nav {
		display: none;
	}
}

/*--------------------------------------------------------------*/
/* #header SP MENU関連 */
/*--------------------------------------------------------------*/
/* sp_menu_btn */
#sp_menu_btn {
	display: none;
	width: 35px;
	height: 32px;
	position: absolute;
	top: 20px;
	right: 16px;
	cursor: pointer;
	z-index: 99;
	transition: top .3s ease;
}
#sp_menu_btn .oc {
	color: #000836;
	font-size: 1.25rem;
	line-height: 1;
	position: absolute;
	bottom: 0;
}
.menu--active #sp_menu_btn .oc {
	font-size: 11px;
}
#open {
	position: relative;
	height: 12px;
}
.menu_line {
	background: #000836;
	display: block;
	height: 2px;
	position: absolute;
	transition:transform .3s;
	width: 100%;
}
.menu--active .menu_line {
	background: #000;
}
body.is-pc #sp_menu_btn:hover .menu_line {
	background: #316dc6;
}
body.is-pc #sp_menu_btn:hover .oc {
	color: #316dc6;
}
.menu_line-bottom {
	bottom: 0;
}
.menu--active .menu_line-top {
	top: 8px;
	transform: rotate(15deg);
}
.menu--active .menu_line-bottom {
	bottom: 2px;
	transform: rotate(165deg);
}
.menu--active #sp_menu_btn .oc {
	color: #000;
}
body.is-pc.menu--active #sp_menu_btn:hover .menu_line {
	background: #555;
}
body.is-pc.menu--active #sp_menu_btn:hover .oc {
	color: #555;
}
/* sp_menu_right */
.sp_menu_right {
	background: #fff;
	height: 100vh;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	width: 78%;
	padding: 20px 10px 20px 25px;
	z-index: 98;
	-webkit-overflow-scrolling: touch;
}
.menu--active .sp_menu_right {
	right: 78%;
	margin-left: 0;
}
/* logo */
.sp_menu_right .logo {
	margin-bottom: 30px;
}
.sp_menu_right .logo a {
	display: inline-flex;
	align-items: center;
	gap: 0 10px;
}
.sp_menu_right .logo a img {
	max-width: 300px;
	min-width: 215px;
	width: 40vw;
	margin-left: -7px;
}
/* btns */
#header .sp_menu_right div.btns {
	display: flex;
	align-items: center;
	gap: 0 8px;
	transition: margin .3s ease;
	margin-bottom: 24px;
}
/* div.free */
#header .sp_menu_right a.free {
	font-size: 14px;
	color: #fff;
	background: #ea4737;
	text-align: center;
	display: block;
	padding: 5px 12px;
	border-radius: 5px;
	white-space: nowrap;
	transition: .3s ease;
}
body.is-pc #header .sp_menu_right a.free:hover {
	background: #316dc6;
}
/* sp_menu_left */
.sp_menu_left {
	transform: translateX(-100%);
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	background: url(../images/sp_menu_left.jpg) no-repeat;
	background-size: auto 100%;
	background-position: center center;
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 40%;
	z-index: 98;
}
.menu--active .sp_menu_left {
	left: 22.1%;
}
/* 1000 */
@media (max-width: 1000px) {
	/* sp_menu_btn */
	#sp_menu_btn {
		display: block;
	}
}
/* 580 */
@media (max-width: 580px) {
	/* sp_menu_btn */
	#sp_menu_btn {
		top: 16px;
		right: 16px;
	}
	/* right */
	.sp_menu_right {
		padding: 20px 10px 20px 20px;
	}
	/* sp_menu_left */
	.sp_menu_left {
		animation: act_anime 20s infinite alternate linear;
	}
}
@keyframes act_anime {
	0% { 
		background-position: right 63% center;
	}
	100% { 
		background-position: right 37% center;
	}
}

/*--------------------------------------------------------------*/
/* #header SP開閉メニュー */
/*--------------------------------------------------------------*/
/* ul.sp_nav */
ul.sp_nav {
	list-style: none;
	max-width: 300px;
	margin-bottom: 24px;
}
ul.sp_nav > li {
	border-bottom: 1px solid #ddd;
}
ul.sp_nav > li > span.pare {
	display: block;
	padding: 10px;
	position: relative;
	text-decoration: none;
}
ul.sp_nav > li > span.pare > span.txt {
	cursor: default;
}
ul.sp_nav .ac {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transform-origin: center center;
	display: inline-block;
	transition: .2s;
	cursor: pointer;
}
ul.sp_nav > li.open .ac {
	transform: translateY(-50%) rotate(45deg);
}
/* sp_sub */
ul.sp_nav ul.sp_sub {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0 0 13px 15px;
}
ul.sp_nav ul.sp_sub li {
	margin-left: 10px;
	margin-top: 5px;
}
ul.sp_nav ul.sp_sub li a {
	position: relative;
}
body.is-pc ul.sp_nav ul.sp_sub li a:hover span.txt {
	margin-left: 5px;
}
body.is-pc ul.sp_nav ul.sp_sub li a:hover::before {
	border-top: 1px solid #316dc6;
}
ul.sp_nav ul.sp_sub li a::before {
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	border-top: 1px solid #444;
	position: absolute;
	top: 52%;
	left: -5px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 0;
}
ul.sp_nav ul.sp_sub li a span.txt {
	display: inline-block;
	padding-left: 3px;
	background: #fff;
	position: relative;
	z-index: 1;
	transition: .3s ease;
}

/*--------------------------------------------------------------*/
/* #header サブメニュー1 */
/*--------------------------------------------------------------*/
#header div#gnav nav > ul > li > a,
#header div#gnav nav > ul > li > .sub {
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 22px 0;
	height: 80px;
	color: #fff;
	transition: .3s ease;
}
#header.white div#gnav nav > ul > li > a,
#header.white div#gnav nav > ul > li > .sub {
	height: 70px;
	transition: .3s ease;
}
#header div#gnav nav > ul > li > a,
#header div#gnav nav > ul > li > .sub {
	color: #444;
}
#header div#gnav nav > ul > li > .sub > span.txt {
	cursor: default;
}
body.is-pc #header div#gnav nav > ul > li > .sub > span.txt:hover {
	color: #316dc6;
}
#header div#gnav nav > ul > li a div.effect2 {
	min-width: 150px;
}
#header div#gnav nav > ul > li a div.effect2 img {
	border-radius: 3px;
}
#header div#gnav nav li.contact a {
	color: #fff;
}
#header div#gnav nav > ul > li:hover > .sub:before,
#header div#gnav nav > ul > li:focus-within > .sub:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 13px;
	transform: translateX(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #316dc6;
	opacity: 1;
	transition: opacity 0.2s ease;
}
#header div#gnav nav > ul > li.active > a,
#header div#gnav nav > ul > li.active > .sub {
	color: #316dc6;
}

/*--------------------------------------------------------------*/
/* #header サブメニュー2 */
/*--------------------------------------------------------------*/
#header div#gnav nav > ul > li > div.sub .sub_box {
	position: absolute;
	top: 80px;
	left: 50%;
	z-index: 1;
	padding: 20px 25px 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transform: translate(-50%, -10px);
	transition: opacity .3s ease, transform .3s ease, left .3s ease;
	opacity: 0;
	pointer-events: none;
	background: #fff;
	height: initial;
	box-shadow: 0px 2px 1px 0px rgb(0 0 0 / 10%);
	flex-wrap: initial;
}
#header.white div#gnav nav > ul > li > div.sub .sub_box {
	top: 70px;
}
#header div#gnav nav > ul > li > div.sub .sub_box .sub_header {
	min-width: 130px;
	color: #316dc6;
	text-align: left;
}
#header div#gnav nav > ul > li.li04 > div.sub .sub_box .sub_header {
	width: 205px;
}
#header div#gnav nav > ul > li > div.sub .sub_box .sub_header div.h3 {
	color: #316dc6;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.2;
	white-space: nowrap;
	padding-right: 20px;
	margin-bottom: 8px;
}
#header div#gnav nav > ul > li > div.sub .sub_box .sub_header span.eng {
	font-size: 1.1rem;
	color: #636363!important;
	line-height: 1.1;
}
#header div#gnav nav > ul > li > div.sub .sub_box ul {
	flex: 1;
	display: flex;
	gap: 0 8px;
}
#header div#gnav nav > ul > li > div.sub .sub_box ul li {
	text-align: center;
	font-size: 1.4rem;
}
#header div#gnav nav > ul > li > div.sub .sub_box ul li a span.txt {
	color: #333;
	display: block;
	margin-top: 5px;
	font-size: 1.3rem;
	transition: color .6s ease;
}
body.is-pc #header div#gnav nav > ul > li > div.sub .sub_box ul li:hover a span.txt {
	color: #316dc6;
}
/* hover */
#header div#gnav nav > ul > li:hover > div.sub .sub_box,
#header div#gnav nav > ul > li:focus-within > div.sub .sub_box {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0px);
}
#header div#gnav nav > ul > li:hover > a,
#header div#gnav nav > ul > li:focus-within > a {
	color: #316dc6;
	opacity: 1;
}
/* ul.c4 */
#header div#gnav nav > ul > li > div.sub .sub_box ul.c4 li {
	width: 23.5%;
}
/* 1350 */
@media (max-width: 1350px) {
	/* nth-child(1)だけウィンドウ幅で位置変更 */
	#header div#gnav nav > ul > li:nth-child(1) > div.sub .sub_box {
		left: calc(50% + 15vw);
	}
}

/*--------------------------------------------------------------*/
/* Start */
/*--------------------------------------------------------------*/
body.sub div.start {
	display: none;
}
div.start {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ebeae9;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
}
div.start .typing-text {
	font-size: 2.6rem;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
}
div.start .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(-10px);
}
/* 768 */
@media (max-width: 768px) {
	div.start .typing-text {
		font-size: 1.5rem;
	}
}
/* 580 */
@media (max-width: 580px) {
	div.start .typing-text {
		font-size: 1.4rem;
		font-weight: bold;
	}
}

/*--------------------------------------------------------------*/
/* TopMain */
/*--------------------------------------------------------------*/
#TopMain {
	height: 100svh;
	background: #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
}
#TopMain p.txt {
	text-align: center;
}
#TopMain video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
#TopMain #main_txt {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	z-index: 2;
}
#TopMain #main_txt .flex {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

/*--------------------------------------------------------------*/
/* line_txt */
/*--------------------------------------------------------------*/
.line_txt {
	position: relative;
}
.line_txt img {
	display: block;
	position: absolute;
	z-index: 5;
}
.line_txt.iti_left img {
	top: -50%;
	left: 5%;
	transform: translateY(-60%);
}
.line_txt.iti_right img {
	top: -50%;
	right: 5%;
	transform: translateY(-60%);
}
.line_txt.line_contents img {
	max-width: 770px;
	width: 50%;
}
/* 580 */
@media (max-width: 580px) {
	.line_txt.line_contents img {
		width: 80%;
	}
}

/*--------------------------------------------------------------*/
/* TopContents */
/*--------------------------------------------------------------*/
#TopContents {
	background: #ebeae9;
	border-top: 100px solid #444;
	padding-top: 160px;
	padding-bottom: 160px;
}
#TopContents .line_txt {
	z-index: 6;
}
#TopContents ul {
	display: flex;
	flex-direction: column;
	gap: 100px 0;
}
#TopContents ul li {
	position: relative;
}
#TopContents ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	max-width: 100%;
	z-index: 1;
}
#TopContents ul li:nth-child(1)::before {
	background: url(../images/top_contents01.jpg) left center / cover no-repeat;
	/* 左側に (1260px × 40% + 左右の余白) 分の余白を確保 */
	margin-right: calc(444.6px + (100vw - 1140px) / 2);
}
#TopContents ul li:nth-child(2)::before {
	background: url(../images/top_contents02.jpg) left center / cover no-repeat;
	/* 右側に (1260px × 40% + 左右の余白) 分の余白を確保 */
	margin-left: calc(444.6px + (100vw - 1140px) / 2);
}
#TopContents ul li:nth-child(3)::before {
	background: url(../images/top_contents03.jpg) left center / cover no-repeat;
	/* 左側に (1260px × 40% + 左右の余白) 分の余白を確保 */
	margin-right: calc(444.6px + (100vw - 1140px) / 2);
}
#TopContents ul li::after {
	content: '';
	background: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	max-width: 100%;
	z-index: 2;
}
#TopContents ul li:nth-child(odd)::after {
	margin-right: calc(444.6px + (100vw - 1140px) / 2);
}
#TopContents ul li:nth-child(even)::after {
	margin-left: calc(444.6px + (100vw - 1140px) / 2);
}
#TopContents ul li .content {
	display: flex;
	max-height: 420px;
	min-height: 260px;
	height: 26vw;
	position: relative;
	z-index: 3;
}
#TopContents ul li:nth-child(odd) .content {
	justify-content: flex-end;
}
#TopContents ul li:nth-child(even) .content {
	justify-content: flex-start;
}
#TopContents ul li .content div.text {
	width: 40%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	background: #ebeae9;
	gap: 3vw 0;
	text-align: center;
}
#TopContents ul li .content div.text header h1 {
	font-size: 2.4rem;
	line-height: 1.2;
}
#TopContents ul li .content div.text header span.en {
	display: inline-block;
	color: #b3b3b3;
	font-size: 1.2rem;
}
/* 1650 */
@media (max-width: 1650px) {
	#TopContents {
		padding-top: max(9.697vw, 80px); //160px;
		border-top: max(6.061vw, 40px) solid #444;
		padding-bottom: max(9.697vw, 100px); //160px;
	}
}
/* 1240 */
@media (max-width: 1240px) {
	#TopContents ul li .content div.text header h1 {
		font-size: max(1.94vw, 1.8rem); //2.4rem;
	}
	#TopContents ul li .content div.text header span.en {
		font-size: max(0.97vw, 1.1rem); //1.2rem;
	}
	#TopContents ul li .content div.text p.txt {
		font-size: max(1.29vw, 1.4rem); //1.6rem;
	}
}
/* 1140 */
@media (max-width: 1140px) {
	#TopContents ul {
		gap: max(8.772vw, 70px) 0;
	}
}
/* 580 */
@media (max-width: 580px) {
	#TopContents ul li:nth-child(odd)::after {
		margin-right: 10%;
	}
	#TopContents ul li .content div.text {
		position: absolute;
		top: 65%;
		right: 5%;
		width: 80%;
		background: rgb(255 255 255 / 85%);
	}
	#TopContents ul li:nth-child(even) div.text {
		right: initial;
		left: 5%;
	}
	/**/
	#TopContents ul {
		gap: 220px 0;
		margin-bottom: 140px;
	}
	#TopContents ul li:nth-child(1)::before {
		margin-right: 10%;
	}
	#TopContents ul li:nth-child(2)::before {
		margin-left: 10%;
	}
	#TopContents ul li:nth-child(3)::before {
		margin-right: 10%;
	}
	#TopContents ul li:nth-child(odd)::after {
		margin-right: 10%;
	}
	#TopContents ul li:nth-child(even)::after {
		margin-left: 10%;
	}
}

/*--------------------------------------------------------------*/
/* TopColumn */
/*--------------------------------------------------------------*/
#TopColumn {
	background: #ebeae9;
	color: #fff;
	display: none;
}
#TopColumn header h1 {
	color: #444444;
}
#TopColumn div.bk {
	background: #444444;
}
#TopColumn div.bk .flex {
	align-items: center;
	gap: 30px 5%;
}
#TopColumn div.bk .flex figure {
	width: 40%;
	margin-left: 3%;
}
#TopColumn div.bk .flex div.text {
	flex: 1;
}
#TopColumn div.bk .flex div.text p.txt {
	color: #fff;
	margin-bottom: 60px;
}
#TopColumn div.bk .flex div.text div.control {
	text-align: right;
	padding-right: 5%;
}
/* 768 */
@media (max-width: 768px) {
	#TopColumn div.bk .flex figure {
		margin-left: 0;
	}
}
/* 580 */
@media (max-width: 580px) {
	#TopColumn div.bk .flex figure {
		width: 100%;
		margin-left: 0;
	}
	#TopColumn div.bk .flex div.text {
		flex: 1;
	}
}

/*--------------------------------------------------------------*/
/* TopBlog */
/*--------------------------------------------------------------*/
#TopBlog {
	position: relative;
	margin: 90px 0;
}
#TopBlog .content {
	position: relative;
	z-index: 3;
}
#TopBlog .content div.text {
	width: 45%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 25px 0 10px 0;
}
#TopBlog .content div.text header {
	margin-bottom: 130px;
}
#TopBlog .content div.text p.txt {
	margin-bottom: 30px;
}
#TopBlog::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	max-width: 100%;
	z-index: 1;
	background: url(../images/top_blog01.jpg?20260324) left center / cover no-repeat;
	margin-left: calc((100vw - 1140px) / 2 + 570px);
}
#TopBlog::after {
	content: '';
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	max-width: 100%;
	z-index: 2;
	margin-left: calc(570px + (100vw - 1140px) / 2);
}
/* line_txt */
#TopBlog .line_txt.iti_left img {
	left: calc(((100vw - 1140px) / 2) - 4%);
	transform: translateY(-30%);
}
#TopBlog .line_txt.line_contents img {
	max-width: 450px;
	width: 40%;
}
/* 1240 */
@media (max-width: 1240px) {
	#TopBlog {
		position: relative;
		margin: max(7.258vw, 60px) 0;
	}
	#TopBlog .line_txt.iti_left img {
		left: 1%;
		transform: translateY(-30%);
	}
}
/* 768 */
@media (max-width: 768px) {
	#TopBlog::before {
		margin-left: 65%;
	}
	#TopBlog::after {
		margin-left: 65%;
	}
	#TopBlog .content div.text {
		width: 63%;
	}
}

/*--------------------------------------------------------------*/
/* TopRecruit */
/*--------------------------------------------------------------*/
#TopRecruit {
	position: relative;
	background: url(../images/top_recruit_bk.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
#TopRecruit div.l3_box {
	margin-right: calc((100vw - 1140px) / 2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
#TopRecruit div.l3_box .line_txt {
	flex: 1;
}
#TopRecruit div.l3_box .line_txt header h1 {
	color: #fff;
	margin-left: 10vw;
	position: relative;
	z-index: 6;
	transition: margin .3s ease;
}
#TopRecruit .line_txt.line_contents img {
	max-width: 895px;
	width: 90%;
	position: absolute;
	top: 50%;
	left: 15%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	transition: left .3s ease;
}
#TopRecruit div.l3_box div.text {
	width: calc(1140px / 2);
	padding-right: 20px;
	margin-left: auto;
	text-align: center;
	display: inline-flex;
	flex-direction: column;
	gap: 5vw;
}
#TopRecruit div.l3_box div.text p.txt {
	color: #fff;
}
/* 1500 */
@media (max-width: 1500px) {
	#TopRecruit div.l3_box .line_txt header h1 {
		margin-left: 20px;
	}
	#TopRecruit .line_txt.line_contents img {
		left: 5%;
	}
}
/* 1140 */
@media (max-width: 1140px) {
	#TopRecruit div.l3_box div.text {
		width: calc(100vw / 2);
		margin-top: 60px;
	}
	#TopRecruit div.l3_box {
		margin-right: 0;
	}
}
/* 580 */
@media (max-width: 580px) {
	#TopRecruit.over::before {
		background: rgba(0, 0, 0, 0.25);
	}
	#TopRecruit div.l3_box div.text {
		width: 100%;
	}
}

/*--------------------------------------------------------------*/
/* TopLinks */
/*--------------------------------------------------------------*/
#TopLinks {
	background: #ebeae9;
	overflow: hidden;
}
#TopLinks.pd_std {
	padding-bottom: 220px;
}
#TopLinks .line_txt.line_contents {
	margin-right: calc(100vw / 2);
}
#TopLinks .line_txt.line_contents h3 {
	position: relative;
}
#TopLinks .line_txt.line_contents h3::after {
	content: '';
	display: block;
	height: 2px;
	width: 200%;
	border-bottom: 1px solid #ccc;
	position: absolute;
	top: 50%;
	right: 20%;
	-webkit-transform: translate(100%, -50%);
	transform: translate(100%, -50%);
	transition: right .3s ease;
}
#TopLinks .line_txt.line_contents img {
	max-width: 580px;
	width: 60%;
	position: relative;
	transition: left .3s ease;
	left: 15%;
	display: inline-block;
}
#TopLinks ul {
	max-width: 670px;
	margin-top: 40px;
	margin-left: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 10px;
}
#TopLinks ul li {
	width: calc((100% / 4) - (30px / 4));
}
/* 1500 */
@media (max-width: 1500px) {
	#TopLinks .line_txt.line_contents img {
		left: 5%;
	}
	#TopLinks .line_txt.line_contents h3::after {
		right: 30%;
	}
}
/* 1240 */
@media (max-width: 1240px) {
	#TopLinks.pd_std {
		padding-bottom: max(17.742vw, 150px); //220px;
	}
}

/* 580 */
@media (max-width: 580px) {
	#TopLinks.pd_std {
		padding-bottom: 130px;
	}
	#TopLinks .line_txt.line_contents img {
		width: 100%;
	}
	#TopLinks .line_txt.line_contents h3::after {
		right: -15%;
	}
	#TopLinks ul {
		margin-top: 30px;
		gap: 10px 3%;
	}
	#TopLinks ul li {
		width: calc(97% / 2);
	}
}

/*--------------------------------------------------------------*/
/* TopContact */
/*--------------------------------------------------------------*/
#TopContact {
	background: #444444;
	color: #fff;
}
#TopContact .line_txt.iti_right img {
	transform: translateY(-155%);
}
#TopContact .content {
	display: flex;
	align-items: center;
	z-index: 3;
	gap: 40px 0;
}
#TopContact div.l_txt {
	width: 50%;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}
#TopContact div.r_txt {
	width: 50%;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}
#TopContact div p.txt,
#TopContact div div.tel {
	color: #fff;
}
/* 580 */
@media (max-width: 580px) {
	#TopContact div.l_txt {
		width: 100%;
	}
	#TopContact div.r_txt {
		width: 100%;
	}
}

/*--------------------------------------------------------------*/
/* SubPage Base */
/*--------------------------------------------------------------*/
#SubPage > header {
	background: #444;
	color: #fff;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#SubPage > header > h1 {
	font-size: 3.0rem;
	margin-bottom: 5px;
}
#SubPage > header > span.small {
	font-size: 1.5rem;
	display: block;
	text-align: center;
	letter-spacing: 0;
	margin-bottom: 6px;
}
#SubPage > header > span.eng {
	font-size: 1.2rem;
}
/* nav */
#SubPage nav.hjump {
	background: #444;
	border-top: 2px solid #7f7f7f;
	padding: 20px 0;
	position: sticky;
	top: 70px;
	box-shadow: 0px 2px 1px 0px rgb(0 0 0 / 10%);
	transition: .3s ease;
	z-index: 8;
}
#SubPage nav.hjump.active {
	padding: 8px 0 12px 0;
}
#SubPage nav.hjump ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
}
#SubPage nav.hjump ul li a {
	font-size: 1.6rem;
	color: #fff;
	position: relative;
}
body.is-pc #SubPage nav.hjump ul li a:hover {
	opacity: 0.7;
}
#SubPage nav.hjump ul li a::after {
	content: '';
	height: 2px;
	width: 0%;
	border-top: 1px solid #aaa;
	position: absolute;
	bottom: -5px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	transition: .3s ease;
}
#SubPage nav.hjump ul li a.is-active::after {
	width: 98%;
}
/* 1240 */
@media (max-width: 1240px) {
	#SubPage > header {
		height: max(16.129vw, 140px); //200px;
	}
	#SubPage > header > h1 {
		font-size: max(2.42vw, 2.2rem); //3.0rem;
	}
	#SubPage > header > span.eng {
		font-size: max(0.97vw, 1.1rem); //1.2rem;
	}
	#SubPage nav.hjump ul li a {
		font-size: max(1.29vw, 1.4rem); //1.6rem;
	}
}
/* 1000 */
@media (max-width: 1000px) {
	#SubPage nav.hjump {
		top: 70px;
	}
}
/* 580 */
@media (max-width: 580px) {
	#SubPage nav.hjump {
		display: none;
	}
	#SubPage > header > span.small {
		font-size: 1.3rem;
	}
}

/*--------------------------------------------------------------*/
/* 企業情報 -> Message */
/*--------------------------------------------------------------*/
#Message {
	background: url(../images/message_bk.jpg) no-repeat;
	background-size: cover;
	background-position: bottom center;
}
#Message .content {
	padding-left: 100px;
}
#Message header {
	margin-bottom: 30px;
}
#Message header h1 {
	color: #fff;
}
#Message p.txt {
	color: #fff;
}
/* 1040 */
@media (max-width: 1040px) {
	#Message .content {
		padding-left: 5vw;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Message .content {
		padding-left: 20px;
	}
	#Message p.txt {
		
	}
}

/*--------------------------------------------------------------*/
/* 企業情報 -> Torikumi */
/*--------------------------------------------------------------*/
#Torikumi {
	background: #ebeae9;
	overflow: hidden;
	padding-bottom: 60px;
}
#Torikumi header {
	margin-bottom: 50px;
}
#Torikumi header h1 {
	color: #444;
	font-size: 2.8rem;
	position: relative;
}
#Torikumi header h1 span.txt {
	display: inline-block;
	background: #ebeae9;
	padding-right: 10px;
}
#Torikumi header h1::before {
	content: '';
	height: 2px;
	width: 1920px;
	border-top: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: -1;
}
#Torikumi .torikumi_lead {
	text-align: center;
	font-size: 2.8rem;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 60px;
	color: #444;
}
#Torikumi .torikumi_inner {
	align-items: center;
	gap: 0 5%;
	flex-wrap: nowrap;
	max-width: 1000px;
	margin: 0 auto 90px auto;
}
/* circle */
#Torikumi .torikumi_fig {
	flex-shrink: 0;
}
.torikumi_circle {
	position: relative;
	width: 280px;
	height: 315px;
	margin: 0 auto;
}
.circle_center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: #1f5198;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: 400;
	z-index: 2;
}
.circle_items {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.circle_items li {
	position: absolute;
}
.circle_items li span {
	position: absolute;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #444;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.4;
	transform: translate(-50%, -50%);
}
/* 行政 */
.circle_items li.ci_bottom span {
	background: #969696;
	color: #fff;
	font-size: 1.3rem;
}
/* 指定確認検査機関 */
.circle_items li.ci_right_bottom span {
	background: #969696;
	color: #fff;
}
/* 中央ライン */
.circle_items li::before {
	content: '';
	height: 2px;
	width: 140px;
	border-top: 2px solid #444;
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: 0 0;
	transform: translate(0, -50%);
	z-index: -1;
}
/* 6分割配置 */
.ci_left_top     { top: calc(50% - 95px); left: calc(50% - 55px); }
.ci_top          { top: calc(50% - 95px); left: calc(50% + 55px); }
.ci_right_top    { top: 50%;              left: calc(50% + 110px); }
.ci_right_bottom { top: calc(50% + 95px); left: calc(50% + 55px); }
.ci_bottom       { top: calc(50% + 95px); left: calc(50% - 55px); }
.ci_left_bottom  { top: 50%;              left: calc(50% - 110px); }
/* ライン角度 */
.circle_items .ci_left_top::before     { transform: translate(0, -50%) rotate(60deg); }
.circle_items .ci_top::before          { transform: translate(0, -50%) rotate(120deg); }
.circle_items .ci_right_top::before    { transform: translate(0, -50%) rotate(180deg); }
.circle_items .ci_right_bottom::before { transform: translate(0, -50%) rotate(240deg); }
.circle_items .ci_bottom::before       { transform: translate(0, -50%) rotate(300deg); }
.circle_items .ci_left_bottom::before  { transform: translate(0, -50%) rotate(0deg); }
/* テキスト */
#Torikumi .torikumi_txt {
	flex: 1;
}
#Torikumi .torikumi_txt p.txt {
	line-height: 2.0;
	color: #444;
}
/* 1240 */
@media (max-width: 1240px) {
	#Torikumi {
		padding-bottom: max(4.839vw, 42px); //60px;
	}
	#Torikumi header {
		margin-bottom: max(4.032vw, 35px); //50px;
	}
	#Torikumi header h1 {
		font-size: max(2.26vw, 2rem); //2.8rem;
	}
	#Torikumi .torikumi_lead {
		font-size: max(2.26vw, 1.5rem); //2.8rem;
		margin-bottom: max(4.839vw, 42px); //60px;
	}
}
/* 768 */
@media (max-width: 768px) {
	#Torikumi .torikumi_inner {
		flex-direction: column;
		gap: 30px 0;
	}
	#Torikumi .torikumi_fig {
		width: 100%;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Torikumi .torikumi_lead {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
}


/*--------------------------------------------------------------*/
/* 企業情報 -> Gyoumu */
/*--------------------------------------------------------------*/
#Gyoumu {
	background: url(../images/gyoumu_bk.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
#Gyoumu ul {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
	margin-bottom: 80px;
}
#Gyoumu ul li {
	display: flex;
	align-items: center;
	gap: 25px 5%;
}
#Gyoumu .gyoumu_head {
	flex-shrink: 0;
	width: 340px;
	border: 1px solid #fff;
	padding: 21px 20px 16px 30px;
	position: relative;
}
#Gyoumu .gyoumu_head::after {
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	position: absolute;
	top: 7px;
	left: 7px;
	box-sizing: content-box;
}
#Gyoumu .gyoumu_head h2 {
	color: #fff;
	font-size: 1.8rem;
	letter-spacing: 0;
}
#Gyoumu ul li p.txt {
	color: #fff;
	flex: 1;
	line-height: 1.9;
}
#Gyoumu .gyoumu_link {
	text-align: center;
}
#Gyoumu .gyoumu_link a {
	color: #fff;
	font-size: 1.5rem;
	border-bottom: 1px solid #fff;
	padding-bottom: 3px;
	transition: opacity .3s ease;
}
body.is-pc #Gyoumu .gyoumu_link a:hover {
	opacity: 0.7;
}
/* 1240 */
@media (max-width: 1240px) {
	#Gyoumu .gyoumu_head {
		max-width: 320px;
		min-width: 270px;
		width: 29%;
	}
	#Gyoumu .gyoumu_head h2 {
		font-size: max(1.45vw, 1.5rem); //1.8rem;
	}
	#Gyoumu ul {
		margin-bottom: max(6.452vw, 60px); //80px;
	}
}
/* 768 */
@media (max-width: 768px) {
	#Gyoumu ul li {
		flex-direction: column;
		align-items: flex-start;
	}
	#Gyoumu .gyoumu_head {
		width: auto;
		min-width: 220px;
	}
}

/*--------------------------------------------------------------*/
/* 企業情報 -> Company */
/*--------------------------------------------------------------*/
#Company {
	background: #ebeae9;
	color: #fff;
	padding-top: 80px;
}
#Company header h1 {
	color: #444444;
	font-size: 2.8rem;
}
#Company div.bk {
	background: #444444;
	padding-bottom: 90px;
}
#Company ul li:not(:last-child) {
	margin-bottom: 100px;
}
#Company ul li h2 {
	color: #fff;
	font-size: 2.0rem;
	padding-left: 30px;
	margin-bottom: 30px;
}
#Company ul li table, /* 共通解除 */
#Company ul li table tr th,
#Company ul li table tr td {
	border: none;
	margin: 0;
	background: initial;
}
#Company ul li table {
	max-width: 820px;
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 60px;
}
#Company ul li table tr:not(:last-child) {
	border-bottom: 1px solid #666;
}
#Company ul li table tr th {
	font-weight: normal;
	color: #fff;
	width: 25%;
	padding: 20px;
}
#Company ul li table tr td {
	color: #fff;
	padding: 20px 20px 20px 0px;
}
#Company div.map p.note {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 10px;
}
#Company div.map iframe {
	width: 100%;
	height: 480px;
}
/* 1240 */
@media (max-width: 1240px) {
	#Company {
		padding-top: max(6.452vw, 40px); //80px;
	}
	#Company header h1 {
		font-size: max(2.26vw, 2rem); //2.8rem;
	}
	#Company div.bk {
		padding-bottom: max(7.258vw, 63px); //90px;
	}
	#Company ul li:not(:last-child) {
		margin-bottom: max(8.065vw, 70px); //100px;
	}
	#Company ul li h2 {
		color: #fff;
		font-size: max(1.61vw, 1.6rem); //2.0rem;
		padding-left: max(2.419vw, 10px); //30px;
		margin-bottom: max(2.419vw, 15px); //30px;
	}
	#Company ul li table {
		margin-bottom: max(4.839vw, 42px); //60px;
	}
	#Company div.map p.note {
		font-size: max(1.13vw, 1.1rem); //1.4rem;
	}
	#Company div.map iframe {
		height: max(38.71vw, 360px); //480px;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Company ul li table tr th {
		display: block;
		width: 100%;
		text-align: left;
		padding: 20px 0 5px 20px;
	}
	#Company ul li table tr td {
		display: block;
		width: 100%;
		padding: 10px 20px 20px 20px;
	}
}

/*--------------------------------------------------------------*/
/* 企業情報 -> Team */
/*--------------------------------------------------------------*/
#Team {
	overflow: hidden;
}
#Team header {
	margin-bottom: 50px;
}
#Team header h1 {
	display: inline-block;
	color: #444;
	font-size: 2.8rem;
	position: relative;
}
#Team header h1 span.txt {
	display: inline-block;
	background: #fff;
	padding-right: 10px;
}
#Team header h1::before {
	content: '';
	height: 2px;
	width: 1920px;
	border-top: 1px solid #ccc;
	position: absolute;
	top: 60%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: -1;
}
#Team header span.now {
	background: #fff;
	display: inline-block;
	padding: 0 15px 0 5px;
	transform: translate3d(-5px, -2px, 0);
}
#Team p.lead {
	max-width: 1020px;
	margin: 0 auto 80px auto;
}
#Team div.flex {
	gap: 40px 20%;
	max-width: 900px;
	margin: 0 auto;
	flex-wrap: initial;
}
/* base */
#Team div.flex h2 {
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
	margin-bottom: 30px;
}
#Team div.flex ul {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
#Team div.flex ul li {
	display: flex;
	flex-wrap: wrap;
}
#Team div.flex ul li span {
	background: #444;
	color: #fff;
}
#Team div.flex ul li span.th {
	width: calc(100% - 100px);
	padding: 18px 0 18px 30px;
	text-align: left;
}
#Team div.flex ul li span.th.bk {
	padding: 0;
}
#Team div.flex ul li span.td {
	width: 100px;
	padding: 18px 0;
	text-align: center;
}
#Team div.flex ul li span.th.bk span.txt {
	background: #808080;
	padding: 18px 0 18px 30px;
	display: block;
	width: 70%;
	margin-left: auto;
}
#Team div.flex ul li span.td.bk {
	background: #808080;
}
/* div.area */
#Team div.flex div.area {
	width: 36%;
}
/* div.uchi */
#Team div.flex div.uchi {
	flex: 1;
}
#Team div.flex div.uchi ul li {
	gap: 0 5px;
}
#Team div.flex div.uchi ul li span.th {
	width: calc(100% - 105px);
}
/* 1240 */
@media (max-width: 1240px) {
	#Team header {
		margin-bottom: max(4.032vw, 35px); //50px;
	}
	#Team header h1 {
		font-size: max(2.26vw, 2rem); //2.8rem;
	}
	#Team header span.now {
		font-size: max(1.29vw, 1.2rem); //1.6rem;
	}
	#Team p.lead {
		margin: 0 auto max(6.452vw, 56px) auto;
	}
	/* base */
	#Team div.flex h2 {
		font-size: max(1.61vw, 1.7rem); //2.0rem;
	}
}
/* 1000 */
@media (max-width: 1000px) {
	#Team div.flex {
		gap: 45px 10%;
	}
}
/* 768 */
@media (max-width: 768px) {
	#Team div.flex {
		max-width: 540px;
		flex-wrap: wrap;
	}
	#Team div.flex ul {
		gap: 5px 0;
	}
	/* div.area */
	#Team div.flex div.area {
		width: 100%;
	}
	/* div.uchi */
	#Team div.flex div.uchi {
		width: 100%;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Team header span.now {
		padding-left: 0;
	}
	#Team div.flex ul li span.th {
		padding: 15px 0 15px 30px;
	}
	#Team div.flex ul li span.td {
		padding: 15px 0;
	}
	#Team div.flex ul li span.th.bk span.txt {
		padding: 15px 0 15px 20px;
		width: 80%;
	}
}

/*--------------------------------------------------------------*/
/* 企業情報 -> Members */
/*--------------------------------------------------------------*/
#Members {
	background: #fff;
	color: #fff;
	padding-top: 80px;
	overflow: hidden;
}
#Members .line_txt.line_contents img {
	max-width: 480px;
	width: 50%;
}
#Members header h1 {
	color: #444444;
	font-size: 2.8rem;
}
#Members div.bk {
	background: #ebeae9;
	padding-bottom: 140px;
}
#Members div.ceo {
	position: relative;
	overflow: hidden;
}
#Members div.ceo::after {
	content: '';
	height: 2px;
	width: 1920px;
	border-top: 1px solid #fff;
	position: absolute;
	bottom: 0;
	left: calc((100vw - 1140px) / 2);
}
#Members div.ceo > div.flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px 5%;
}
#Members div.ceo figure {
	width: 45%;
}
#Members div.ceo div.text {
	width: 50%;
}
#Members div.ceo div.text dl {
	margin-bottom: 60px;
}
#Members div.ceo div.text dl dt {
	font-size: 1.6rem;
	margin-bottom: 12px;
}
#Members div.ceo div.text dl dd {
	font-size: 3.0rem;
	font-weight: 500;
}
#Members div.ceo div.text ul {
	display: flex;
	flex-direction: column;
	gap: 5px 0;
}
/* ul.members */
#Members ul.members {
	display: flex;
	flex-wrap: wrap;
	gap: 25px 2%;
}
#Members ul.members > li {
	width: calc(96% / 3);
	padding: 20px;
	border: 1px solid #444;
}
#Members ul.members > li .flex {
	display: flex;
	align-items: flex-start;
	gap: 0 12px;
	margin-bottom: 7px;
}
#Members ul.members > li .flex figure {
	width: 51%;
}
#Members ul.members > li .flex dl.profile {
	flex: 1;
}
#Members ul.members > li .flex dl.profile dt {
	font-size: 1.4rem;
	margin-top: 15px;
	margin-bottom: 5px;
}
#Members ul.members > li .flex dl.profile dd {
	font-size: 2.0rem;
	font-weight: bold;
}
/* ul.career */
#Members ul.career {
	display: flex;
	flex-direction: column;
	gap: 2px 0;
}
#Members ul.career li {
	font-size: 1.4rem;
}
/* #Staffs */
#Staffs header {
	margin-bottom: 50px;
}
#Staffs header h2 {
	color: #444;
	font-size: 2.8rem;
	position: relative;
}
#Staffs header h2 span.txt {
	display: inline-block;
	background: #ebeae9;
	padding-right: 10px;
}
#Staffs header h2::before {
	content: '';
	height: 2px;
	width: 1920px;
	border-top: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: -1;
}
#Staffs h3 {
	font-size: 2.0rem;
	margin-bottom: 30px;
	letter-spacing: 0;
}
#Staffs div.msg {
	margin-top: 10px;
}
#Staffs div.msg span.note {
	font-size: 1.2rem;
}
/* 1240 */
@media (max-width: 1240px) {
	#Members {
		padding-top: max(6.452vw, 40px); //80px;
	}
	#Members div.bk {
		padding-bottom: max(11.29vw, 40px); //140px;
	}
	#Members header h1 {
		font-size: max(2.26vw, 2rem); //2.8rem;
	}
	#Members div.ceo div.text dl {
		margin-bottom: max(4.839vw, 30px); //60px;
	}
	#Members div.ceo div.text dl dt {
		font-size: max(1.29vw, 1.1rem); //1.6rem;
		margin-bottom: max(0.968vw, 8px); //12px;
	}
	#Members div.ceo div.text dl dd {
		font-size: max(2.42vw, 2.0rem); //3.0rem;
	}
	/* ul.members */
	#Members ul.members > li .flex dl.profile dt {
		font-size: max(1.13vw, 1.2rem); //1.4rem;
	}
	#Members ul.members > li .flex dl.profile dd {
		font-size: max(1.61vw, 1.6rem); //2.0rem;
	}
	/* ul.career */
	#Members ul.career li {
		font-size: max(1.13vw, 1.3rem); //1.4rem;
	}
	/* #Staffs */
	#Staffs header h2 {
		font-size: max(2.26vw, 2.1rem); //2.8rem;
	}
	#Staffs header h2 span.txt {
		padding-right: max(0.806vw, 7px); //10px;
	}
	#Staffs h3 {
		font-size: max(1.61vw, 1.6rem); //2.0rem;
		margin-bottom: max(2.419vw, 21px); //30px;
	}
}
/* 768 */
@media (max-width: 768px) {
	#Members div.ceo figure {
		width: 100%;
	}
	#Members div.ceo div.text {
		width: 100%;
	}
	/* ul.members */
	#Members ul.members {
		gap: 25px 3%;
	}
	#Members ul.members > li {
		width: calc(97% / 2);
		padding: 20px;
	}
}
/* 580 */
@media (max-width: 580px) {
	/* ul.members */
	#Members ul.members {
		gap: 20px 3%;
	}
	#Members ul.members > li {
		width: 100%;
		padding: 20px;
	}
}

/*--------------------------------------------------------------*/
/* 業務紹介 -> Message2 */
/*--------------------------------------------------------------*/
#Message2 {
	background: url(../images/service_msg_bk.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
#Message2 p.txt {
	color: #fff;
	text-align: center;
}
/* 768 */
@media (max-width: 768px) {
	#Message2 p.txt {
		text-align: left;
	}
}

/*--------------------------------------------------------------*/
/* 業務紹介 -> Service */
/*--------------------------------------------------------------*/
#Service {
	background: #ebeae9;
	overflow: hidden;
}
#Service header {
	margin-bottom: 50px;
}
#Service header h1 {
	color: #444;
	font-size: 2.8rem;
	position: relative;
}
#Service header h1 span.txt {
	display: inline-block;
	background: #ebeae9;
	padding-right: 10px;
}
#Service header h1::before {
	content: '';
	height: 2px;
	width: 1920px;
	border-top: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: -1;
}
#Service header p.txt {
	margin-top: 30px;
}
#Service header p.txt a {
	color: #316dc6;
	border-bottom: 1px solid #316dc6;
	transition: .3s ease;
}
body.is-pc #Service header p.txt a:hover {
	color: #ea4737;
	border: none;
}
/* row */
#Service div.flex.row {
	gap: 25px 3%;
	margin-bottom: 50px;
}
#Service div.flex.row figure {
	max-width: 400px;
	width: 40%;
}
#Service div.flex.row > figure img {
	display: block;
}
#Service div.row dl {
	flex: 1;
	border: 1px solid #444;
}
#Service div.row dl dt {
	border: 1px solid #444;
	background: #444;
	color: #fff;
	font-size: 2.0rem;
	padding: 10px 0 10px 20px;
	letter-spacing: 0.2em;
}
#Service div.row dl dd {
	padding: 30px;
}
#Service div.row dl dd p.txt {
	margin-bottom: 20px;
}
#Service div.row dl dd ul {
	display: flex;
	flex-direction: column;
	gap: 5px 0;
}
#Service div.row dl dd ul li {
	font-size: 1.7rem;
}
#Service div.row dl dd ul li::before {
	font-weight: 500;
	content: '\25CF';
	margin-right: 4px;
}
#Service div.row dl dd h3 {
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 0;
}
#Service div.row dl dd h3::before {
	font-weight: 500;
	content: '\25A0';
	margin-right: 4px;
}
#Service div.row dl dd div.flex {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 30px 5%;
	max-width: 500px;
}
#Service div.row dl dd figure {
	text-align: center;
}
#Service div.row dl dd figure img {
	margin-bottom: 10px;
	display: inline-block;
}
#Service div.row dl dd figcaption {
	font-size: 1.2rem;
}
#Service div.row.mb {
	margin-bottom: 100px;
}
/* 1240 */
@media (max-width: 1240px) {
	#Service header {
		margin-bottom: max(4.032vw, 35px); //50px;
	}
	#Service header h1 {
		font-size: max(2.26vw, 2rem); //2.8rem;
	}
	#Service div.row dl dt {
		font-size: max(1.61vw, 1.7rem); //2.0rem;
		padding: max(0.806vw, 7px) 0 max(0.806vw, 7px) max(1.613vw, 14px);
	}
	#Service div.row dl dd {
		padding: max(2.419vw, 20px); //30px;
	}
	#Service div.row dl dd ul li {
		font-size: max(1.37vw, 1.4rem); //1.7rem;
	}
	#Service div.row dl dd h3 {
		font-size: max(1.45vw, 1.5rem); //1.8rem;
	}
	#Service div.row.mb {
		margin-bottom: max(8.065vw, 70px); //100px;
	}
}
/* 1140 */
@media (max-width: 1140px) {
	/* row */
	#Service div.flex.row {
		align-items: flex-start;
	}
}
/* 768 */
@media (max-width: 768px) {
	#Service div.flex.row figure {
		width: 100%;
		margin: 0 auto;
	}
	#Service div.flex.row > figure img {
		display: block;
	}
	#Service div.row dl {
		width: 100%;
		flex: initial;
	}
}

/*--------------------------------------------------------------*/
/* 採用情報 -> Recruit */
/*--------------------------------------------------------------*/
#Recruit {
	background: #ebeae9;
	padding-bottom: 180px;
}
#Recruit div.recruit_head {
	background: url(../images/recruit_head_bk.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	margin-bottom: 80px;
}
#Recruit div.recruit_head p.txt {
	color: #fff;
	text-align: center;
}
#Recruit table, /* 共通解除 */
#Recruit table tr th,
#Recruit table tr td {
	border: none;
	margin: 0;
	background: initial;
}
#Recruit table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #444;
}
#Recruit table tr {
	border-bottom: 1px solid #444;
}
#Recruit table tr th {
	padding: 30px 20px;
	white-space: nowrap;
}
#Recruit table tr td {
	padding: 30px 20px;
}
/* 1240 */
@media (max-width: 1240px) {
	#Recruit {
		padding-bottom: max(14.516vw, 100px); //180px;
	}
	#Recruit table tr th,
	#Recruit table tr td {
		padding-top: max(2.419vw, 20px); //30px;
		padding-top: max(2.419vw, 20px); //30px;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Recruit table tr th {
		display: block;
		text-align: left;
		font-weight: 500;
		padding-bottom: 0;
		padding-left: 15px;
		padding-right: 15px;
		font-size: 15px;
	}
	#Recruit table tr td {
		display: block;
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*--------------------------------------------------------------*/
/* 遵法化コンサルティング -> OneStop */
/*--------------------------------------------------------------*/
#OneStop {
	background: url(../images/onestop_bk.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
#OneStop header {
	text-align: center;
	margin-bottom: 60px;
}
#OneStop header h1 {
	font-size: 3.0rem;
	color: #fff;
}
#OneStop p.txt {
	line-height: 2;
	font-size: 1.6rem;
	color: #fff;
	text-align: center;
}
/* 1240 */
@media (max-width: 1240px) {
	#OneStop header {
		margin-bottom: max(4.839vw, 42px); //60px;
	}
	#OneStop header h1 {
		font-size: max(2.42vw, 2.0rem); //3.0rem;
	}
	#OneStop p.txt {
		font-size: max(1.29vw, 1.4rem); //1.6rem;
	}
}
/* 580 */
@media (max-width: 580px) {
	#OneStop p.txt {
		text-align: left;
	}
}

/*--------------------------------------------------------------*/
/* 遵法化コンサルティング -> Flow1 */
/*--------------------------------------------------------------*/
#Flow {
	padding-bottom: 40px;
}
#Flow .flow_msg01 {
	background: #444;
}
#Flow .flow_msg01 header {
	margin-bottom: 60px;
	text-align: center;
}
#Flow .flow_msg01 header h1 {
	color: #fff;
	font-size: 3.0rem;
}
#Flow .flow_msg01 p.txt {
	color: #fff;
	text-align: center;
}
#Flow .flow_msg02 {
	background: url(../images/flow_msg_bk.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding-bottom: 180px;
}
#Flow .flow_msg02 p.txt {
	color: #fff;
	max-width: 940px;
	margin: 0 auto;
	padding: 25px 40px;
	border: 1px solid #fff;
	position: relative;
}
#Flow .flow_msg02 p.txt::before {
	content: '';
	border: 1px solid #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 7px;
	left: 7px;
	box-sizing: content-box;
}
#Flow .line_txt.line_contents img {
	max-width: 500px;
	width: 48%;
}
/* 1240 */
@media (max-width: 1240px) {
	#Flow {
		padding-bottom: max(3.226vw, 20px); //40px;
	}
	#Flow .flow_msg01 header {
		margin-bottom: max(4.839vw, 42px); //60px;
	}
	#Flow .flow_msg01 header h1 {
		font-size: max(2.42vw, 2.1rem); //3.0rem;
	}
	#Flow .flow_msg02 {
		padding-bottom: max(14.516vw, 126px); //180px;
	}
	#Flow .flow_msg02 p.txt {
		padding: max(2.016vw, 22px) max(3.226vw, 25px);
	}
}
/* 768 */
@media (max-width: 768px) {
	#Flow .flow_msg01 p.txt {
		text-align: left;
	}
	#Flow .flow_msg02 p.txt {
		text-align: left;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Flow {
		padding-bottom: 0px;
	}
	#Flow .flow_msg02 .content {
		padding-right: 24px;
	}
}

/*--------------------------------------------------------------*/
/* 遵法化コンサルティング -> Flow2 */
/*--------------------------------------------------------------*/
#Flow .flow_image .content {
	max-width: 800px;
}
#Flow .flow_image ol {
	display: flex;
	flex-direction: column;
	row-gap: 60px;
	width: 100%;
}
#Flow .flow_image ol > li {
	position: relative;
	z-index: 1;
}
#Flow .flow_image dl dt {
	background: #6f1a43;
	color: #fff;
	padding: 10px;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.6;
	position: relative;
}
#Flow .flow_image dl dt.mb span.txt {
	display: inline-block;
	transform: translateY(13px);
	position: relative;
	z-index: 3;
}
#Flow .flow_image dl dt::before {
	/*content: '';*/
	display: block;
	width: calc(100% - 14px);
	height: calc(100% - 12px);
	border: 1px solid #fff;
	position: absolute;
	top: 7px;
	left: 7px;
}
#Flow .flow_image dl dd {
	border: 3px solid #6f1a43;
	padding: 40px 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 35px 3%;
	position: relative;
}
#Flow .flow_image dl dd .box {
	width: calc(97% / 2);
}
#Flow .flow_image dl dd .box h3 {
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0;
	margin-left: 40px;
	margin-bottom: 10px;
	position: relative;
}
#Flow .flow_image dl dd .box h3 span.num {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background-color: #6a1b41;
	font-size: 1.8rem;
	font-weight: normal;
	color: #fff;
	padding-bottom: 1px;
	position: absolute;
	top: 0;
	left: -40px;
}
#Flow .flow_image dl dd .box ul {
	margin-left: 36px;
}
#Flow .flow_image dl dd .box ul li {
	position: relative;
	margin-left: 16px;
	margin-bottom: 5px;
}
#Flow .flow_image dl dd .box ul li::before {
	content: '\30FB';
	position: absolute;
	top: 0;
	left: -16px;
}
#Flow .flow_image dl dd .box span.note {
	display: inline-block;
	padding-top: 30px;
	margin-left: 36px;
}
/* vbox */
#vbox {
	position: absolute;
	left: 50%;
	width: 49%;
	border: 3px solid #ff8c24d6;
	z-index: 3;
}
#Flow .flow_image dl dt.iti {
	text-align: left;
}
#Flow .flow_image dl dt.iti span.wrap {
	display: inline-block;
	text-align: center;
	margin-left: 15%;
}
#Flow .flow_image span.note {
	display: inline-block;
	font-size: 1.1rem;
	margin-top: 15px;
}
#Flow div.flow_pdf a {
	display: inline-block;
	font-size: 2.0rem;
	margin-top: 60px;
	position: relative;
	transition: .3s ease;
}
#Flow div.flow_pdf a::after {
	content: '';
	width: 107%;
	height: 2px;
	border-bottom: 1px solid #444;
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translate(-50%, 0);
	transition: .3s ease;
}
body.is-pc #Flow div.flow_pdf a:hover::after {
	border-color: #316dc6;
}
/* 900 */
@media (max-width: 900px) {
	#Flow .flow_image dl dt {
		font-size: max(2vw, 1.5rem); //1.8rem;
	}
	#Flow .flow_image dl dd {
		padding: 20px max(4.444vw, 28px); //40px;
	}
	#Flow .flow_image dl dd .box h3 {
		font-size: max(2.22vw, 1.4rem); //2.0rem;
		margin-left: max(4.444vw, 28px); //40px;
	}
	#Flow .flow_image dl dd .box h3 span.num {
		width: max(3.333vw, 20px); //30px;
		height: max(3.333vw, 20px); //30px;
		font-size: max(2vw, 1.3rem); //1.8rem;
		left: max(-4.444vw, -28px); //-40px;
	}
	#Flow .flow_image dl dd .box ul {
		margin-left: max(4vw, 25px); //36px;
	}
	#Flow .flow_image dl dd .box ul li {
		margin-left: max(1.778vw, 11px); //16px;
	}
	#Flow div.flow_pdf a {
		font-size: max(2.22vw, 1.4rem); //2.0rem;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Flow .content {
		padding-left: 13px;
		padding-right: 13px;
	}
	#Flow .flow_image dl dd {
		gap: 25px 3%;
		padding: 20px 5px; //30px;
	}
	#Flow .flow_image dl dd .box h3 {
		font-size: max(2.22vw, 1.3rem); //2.0rem;
		margin-left: 28px; //40px;
	}
	#Flow .flow_image dl dd .box h3 span.num {
		left: -25px; //-40px;
	}
	#Flow .flow_image dl dd .box ul {
		margin-left: 12px; //36px;
	}
	#Flow .flow_image dl dd .box ul li {
		margin-left: 4px; //16px;
		margin-bottom: 2px;
		font-size: 1.1rem;
	}
	#Flow .flow_image dl dd .box ul li::before {
		left: -10px;
	}
	#Flow .flow_image dl dd .box span.note {
		padding-top: 20px;
		font-size: 1.1rem;
		margin-left: 10px;
	}
	/* vbox */
	#vbox {
		position: absolute;
		border: 2px solid #ff8c24d6;
	}
	#Flow .flow_image dl dt.iti span.wrap {
		margin-left: 9%;
	}
}

/*--------------------------------------------------------------*/
/* 遵法化コンサルティング -> Flow2 -> .step-box */
/*--------------------------------------------------------------*/
.step-box {
	width: 100%;
	height: 0px;
	background-color: #6f1a43;
	transition: height 0.6s ease;
	clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 50% 100%, 0 2px);
	transform: translateY(-2px);
	position: absolute;
}
.step-box.cb_ani {
	height: 60px;
}

/*--------------------------------------------------------------*/
/* 遵法化コンサルティング -> Flow2 -> color設定 */
/*--------------------------------------------------------------*/
/* col01 */
#Flow .flow_image ol > li.col01 dl dt {
	background: #6f1a43;
}
#Flow .flow_image ol > li.col01 dl dd {
	border: 3px solid #6f1a43;
}
#Flow .flow_image ol > li.col01 dl dd .box h3 span.num {
	background-color: #6a1b41;
}
#Flow .flow_image ol > li.col01 .step-box {
	background-color: #6f1a43;
}
/* col02 */
#Flow .flow_image ol > li.col02 dl dt {
	background: #a84c6c;
}
#Flow .flow_image ol > li.col02 dl dd {
	border: 3px solid #a84c6c;
}
#Flow .flow_image ol > li.col02 dl dd .box h3 span.num {
	background-color: #a84c6c;
}
#Flow .flow_image ol > li.col02 .step-box {
	background-color: #a84c6c;
}
/* col03 */
#Flow .flow_image ol > li.col03 dl dt {
	background: #b01c3b;
}
#Flow .flow_image ol > li.col03 dl dd {
	border: 3px solid #b01c3b;
}
#Flow .flow_image ol > li.col03 dl dd .box h3 span.num {
	background-color: #b01c3b;
}
#Flow .flow_image ol > li.col03 .step-box {
	background-color: #b01c3b;
}
/* col04 */
#Flow .flow_image ol > li.col04 dl dt {
	background: #e71f37;
}
#Flow .flow_image ol > li.col04 dl dd {
	border: 3px solid #e71f37;
}
#Flow .flow_image ol > li.col04 dl dd .box h3 span.num {
	background-color: #e71f37;
}
#Flow .flow_image ol > li.col04 .step-box {
	background-color: #e71f37;
}
/* col05 */
#Flow .flow_image ol > li.col05 dl dt {
	background: #f8b512;
}
#Flow .flow_image ol > li.col05 dl dd {
	border: 3px solid #f8b512;
}
#Flow .flow_image ol > li.col05 dl dd .box h3 span.num {
	background-color: #f8b512;
}
#Flow .flow_image ol > li.col05 .step-box {
	background-color: #f8b512;
}
/* col06 */
#Flow .flow_image ol > li.col06 dl dt {
	background: #ea5943;
}
#Flow .flow_image ol > li.col06 dl dd {
	border: 3px solid #ea5943;
}
#Flow .flow_image ol > li.col06 dl dd .box h3 span.num {
	background-color: #ea5943;
}
#Flow .flow_image ol > li.col06 .step-box {
	background-color: #ea5943;
}

/*--------------------------------------------------------------*/
/* 遵法化コンサルティング -> support */
/*--------------------------------------------------------------*/
#Flow section.support header {
	text-align: center;
	margin-bottom: 60px;
}
#Flow section.support header h1 {
	font-size: 3.0rem;
}
#Flow section.support .flex {
	gap: 20px 4%;
	display: flex;
	align-content: stretch;
	flex-wrap: wrap;
	
}
#Flow section.support .flex dl {
	width: calc(96% / 2);
	border: 2px solid #444;
}
#Flow section.support .flex dl dt {
	border: 2px solid #444;
	background: #444;
	color: #fff;
	text-align: center;
	font-size: 2.0rem;
	letter-spacing: 0.2em;
	padding: 5px 0;
}
#Flow section.support .flex dl dd {
	padding: 20px;
}
#Flow section.support .flex dl dd ul {
	margin-left: 10px;
	display: flex;
	flex-direction: column;
	row-gap: 8px;
}
#Flow section.support .flex dl dd ul li {
	font-size: 1.6rem;
	position: relative;
}
#Flow section.support .flex dl dd ul li::before {
	content: '\30FB';
	position: absolute;
	top: 0;
	left: -18px;
}
#Flow section.support .flex dl dd span.note {
	font-size: 1.1rem;
	display: inline-block;
	margin-top: 30px;
}
/* 1240 */
@media (max-width: 1240px) {
	#Flow section.support header {
		margin-bottom: max(4.839vw, 42px); //60px;
	}
	#Flow section.support header h1 {
		font-size: max(2.42vw, 2.0rem); //3.0rem;
	}
	#Flow section.support .flex dl dt {
		font-size: max(1.61vw, 1.6rem); //2.0rem;
	}
	#Flow section.support .flex dl dd ul li {
		font-size: max(1.29vw, 1.4rem); //1.6rem;
		position: relative;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Flow section.support .flex dl {
		width: 100%;
	}
	#Flow section.support .flex dl dd span.note {
		margin-top: 20px;
	}
}

/*--------------------------------------------------------------*/
/* 企業情報 -> Faq */
/*--------------------------------------------------------------*/
#Faq {
	padding-top: 80px;
}
#Faq .line_txt.line_contents img {
	max-width: 471px;
	width: 43%;
}
#Faq header h1 {
	color: #444444;
	font-size: 2.8rem;
}
#Faq div.bk {
	background: #ebeae9;
	padding-bottom: 220px;
}
/* kaihei */
#Faq .kaihei {
	margin: 0 auto;
}
#Faq .kaihei dl {
	margin: 0 auto;
	border-bottom: 1px solid #ccc;
}
#Faq .kaihei dl:last-of-type {
	border: none;
}
/* dt */
#Faq .kaihei dl dt {
	font-size: 1.8rem;
	font-weight: 500;
	background: #ebeae9;
	padding: 22px 40px 20px 20px;
	text-align: left;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0 25px;
	transition: background .3s ease;
}
#Faq .kaihei dl dt span._flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 25px;
}
body.is-pc #Faq .kaihei dl dt:hover {
	background: #e4e4e4;
}
#Faq .kaihei dl dt span.qq {
	font-size: 3.0rem;
	font-weight: normal;
	color: #fff;
	display: inline-flex;
	aspect-ratio: 1 / 1;
	width: 44px;
	background: #444;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-bottom: 6px;
}
#Faq .kaihei dl dt span.text {
	flex: 1;
}
/* dd */
#Faq .kaihei dl dd {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	display: none;
	background: #ebeae9;
}
#Faq .kaihei dl dd span._flex {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 25px;
}
#Faq .kaihei dl dd span.aa {
	font-size: 3.0rem;
	font-weight: normal;
	color: #fff;
	display: inline-flex;
	aspect-ratio: 1 / 1;
	width: 44px;
	background: #808080;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-bottom: 6px;
}
#Faq .kaihei dl dd span.text {
	line-height: 2;
	font-weight: normal;
	flex: 1;
}
#Faq .kaihei dl dd span.text a {
	color: #316dc6;
	border-bottom: 1px solid #316dc6;
	transition: .3s ease;
}
#Faq .kaihei dl dd span.text a:hover {
	color: #ea4737;
	border: none;
}
#Faq .kaihei dl dd span.text div.box {
	padding-left: 25px;
	margin: 25px 0;
}
#Faq .kaihei dl dd ul {
	margin-bottom: 25px;
	margin-left: 25px;
	list-style: disc;
}
#Faq .kaihei dl dd p {
	margin-bottom: 25px;
}
#Faq .kaihei dl dt::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	width: 20px;
	height: 2px;
	background: #333;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-delay: 0;
	transition-delay: 0;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transform: rotate(90deg);
}
#Faq .kaihei dl dt.active::after {
	transform: rotate(0deg);
}
#Faq .kaihei dl dt::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	width: 20px;
	height: 2px;
	background: #333;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-delay: 0;
	transition-delay: 0;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transform: rotate(0deg);
}
#Faq .kaihei dl dt.active::before {
	transform: rotate(-180deg);
}
/* 1240 */
@media (max-width: 1240px) {
	#Faq {
		padding-top: max(6.452vw,40px); //80px;
	}
	#Faq header h1 {
		font-size: max(2.26vw, 2rem); //2.8rem;
	}
	#Faq div.bk {
		padding-bottom: max(17.742vw, 80px); //220px;
	}
	#Faq .kaihei dl dt {
		font-size: max(1.45vw, 1.5rem); //1.8rem;
	}
	#Faq .kaihei dl dt span._flex {
		gap: 0 max(2.016vw, 12px);
	}
	#Faq .kaihei dl dd {
		font-size: max(1.29vw, 1.3rem); //1.6rem;
	}
	#Faq .kaihei dl dd span._flex {
		gap: 0 max(2.016vw, 12px); //25px;
	}
	#Faq .kaihei dl dt span.qq {
		font-size: max(2.42vw, 1.9rem); //3.0rem;
		width: max(3.548vw, 24px); //44px;
		padding-bottom: max(0.484vw, 5px); //6px;
	}
	#Faq .kaihei dl dd span.aa {
		font-size: max(2.42vw, 1.9rem); //3.0rem;
		width: max(3.548vw, 24px); //44px;
		padding-bottom: max(0.484vw, 3px); //6px;
	}
}
/* 740 */
@media (max-width: 740px) {
	#Faq .kaihei {
		width: 100%;
	}
	#Faq .kaihei dl dt span._flex {
		align-items: flex-start;
	}
	#Faq .kaihei dl dt::after {
		right: 10px;
	}
	#Faq .kaihei dl dt::before {
		right: 10px;
	}
}
/* 580 */
@media (max-width: 580px) {
	/* dt */
	#Faq .kaihei dl dt {
		line-height: 1.4;
		padding: 14px 23px 12px 0px;
		gap: 0 20px;
	}
	/* dd */
	#Faq .kaihei dl dd {
		padding: 14px 23px 12px 0px;
	}
	#Faq .kaihei dl dd span.text {
		line-height: 1.7;
	}
	#Faq .kaihei dl dd span.text div.box {
		padding-left: 9px;
		margin: 25px 0;
	}
	/* +- */
	#Faq .kaihei dl dt::after {
		right: 0px;
	}
	#Faq .kaihei dl dt::before {
		right: 0px;
	}
	#Faq .kaihei dl dt::after {
		top: 48%;
		width: 15px;
		height: 3px;
	}
	#Faq .kaihei dl dt::before {
		top: 48%;
		width: 15px;
		height: 3px;
	}
}

/*--------------------------------------------------------------*/
/* 実績 -> ProjectMap */
/*--------------------------------------------------------------*/
#ProjectMap {
	overflow: hidden;
}
#ProjectMap .content {
	position: relative;
}
#ProjectMap header {
	margin-bottom: 50px;
}
#ProjectMap header h2 {
	display: inline-block;
	color: #444;
	font-size: 2.8rem;
	position: relative;
}
#ProjectMap header h2 span.txt {
	display: inline-block;
	background: #fff;
	padding-right: 10px;
}
#ProjectMap header h2::before {
	content: '';
	height: 2px;
	width: 1920px;
	border-top: 1px solid #ccc;
	position: absolute;
	top: 60%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: -1;
}
#ProjectMap header span.now {
	background: #fff;
	display: inline-block;
	padding: 0 15px 0 5px;
	transform: translate3d(-5px, -2px, 0);
}
#ProjectMap header span.note {
	font-size: 1.2rem;
	transform: translateY(9px);
	display: inline-block;
}
#ProjectMap figure img {
	max-width: 500px;
	margin: 0 auto;
}
#ProjectMap ul {
	max-width: 500px;
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#ProjectMap ul li {
	width: calc(50% - 10px);
	display: flex;
	justify-content: space-between;
	background: #ccc;
	color: #fff;
	padding: 10px 15px;
	position: relative;
}
#ProjectMap ul li::before {
	content: '';
	width: 70%;
	height: 2px;
	border-bottom: 1px dotted #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0, -50%);
	z-index: 0;
}
#ProjectMap ul li span {
	display: inline-block;
	position: relative;
	z-index: 1;
}
#ProjectMap ul li span.name {
	padding-right: 5px;
}
#ProjectMap ul li span.cnt {
	padding-left: 5px;
}
#ProjectMap ul.ue {
	position: absolute;
	top: 15%;
	left: 20px;
}
#ProjectMap ul.shita {
	position: absolute;
	bottom: 5%;
	right: 20px;
}
/* color */
#ProjectMap ul.ue li:nth-child(1),
#ProjectMap ul.ue li:nth-child(1) span {
	background: #00a9a5;
}
#ProjectMap ul.ue li:nth-child(2),
#ProjectMap ul.ue li:nth-child(2) span {
	background: #ec7c7c;
}
#ProjectMap ul.ue li:nth-child(3),
#ProjectMap ul.ue li:nth-child(3) span {
	background: #008650;
}
#ProjectMap ul.ue li:nth-child(4),
#ProjectMap ul.ue li:nth-child(4) span {
	background: #ed7731;
}
#ProjectMap ul.shita li:nth-child(1),
#ProjectMap ul.shita li:nth-child(1) span {
	background: #a5c56a;
}
#ProjectMap ul.shita li:nth-child(2),
#ProjectMap ul.shita li:nth-child(2) span {
	background: #fcd000;
}
#ProjectMap ul.shita li:nth-child(3),
#ProjectMap ul.shita li:nth-child(3) span {
	background: #76c7d3;
}
/* 1240 */
@media (max-width: 1240px) {
	#ProjectMap header {
		margin-bottom: max(4.032vw, 35px); //50px;
	}
	#ProjectMap header h2 {
		font-size: max(2.26vw, 2rem); //2.8rem;
	}
	#ProjectMap header span.now {
		font-size: max(1.29vw, 1.2rem); //1.6rem;
	}
	#ProjectMap ul li span {
		font-size: max(1.29vw, 1.2rem); //1.6rem;
	}
}
/* 768 */
@media (max-width: 768px) {
	#ProjectMap ul {
		width: 100%;
		margin: 0 auto;
	}
	#ProjectMap ul.ue {
		position: initial;
	}
	#ProjectMap ul.shita {
		position: initial;
	}
	#ProjectMap figure {
		margin: 30px 0;
	}
}
/* 580 */
@media (max-width: 580px) {
	#ProjectMap header span.now {
		padding-left: 0;
	}
	#ProjectMap ul {
		gap: 5px;
	}
	#ProjectMap ul li {
		width: calc(50% - 5px);
		padding: 8px 8px;
	}
}

/*--------------------------------------------------------------*/
/* 実績 -> Partners */
/*--------------------------------------------------------------*/
#Partners .line_txt.line_contents img {
    max-width: 604px;
    width: 50%;
}
#Partners .content {
	position: relative;
}
#Partners header {
	margin-bottom: 5px;
}
#Partners header h2 {
	display: inline-block;
	color: #444;
	font-size: 2.8rem;
	position: relative;
}
#Partners header h2 span.txt {
	display: inline-block;
	padding-right: 10px;
}
#Partners div.bk {
	background: #ebeae9;
	padding-bottom: 160px;
}
#Partners ul {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px 3%;
}
#Partners ul li {
	width: calc(94% / 3);
	border: 1px solid #444;
	padding: 15px 10px;
	text-align: center;
	font-size: 1.5rem;
}
/* 1240 */
@media (max-width: 1240px) {
	#Partners header h2 {
		font-size: max(2.26vw, 2rem); //2.8rem;
	}
	#Partners div.bk {
		padding-bottom: max(12.903vw, 112px); //160px;
	}
	#Partners ul {
		gap: max(2.419vw, 21px) 3%;
	}
	#Partners ul li {
		font-size: max(1.29vw, 1.4rem); //1.6rem;
	}
}
/* 768 */
@media (max-width: 768px) {
	#Partners ul li {
		width: calc(97% / 2);
	}
}
/* 580 */
@media (max-width: 580px) {
	#Partners ul {
		gap: 10px 3%;
	}
	#Partners ul li {
		width: 100%;
	}
}

/*--------------------------------------------------------------*/
/* お問い合わせ -> Contact */
/*--------------------------------------------------------------*/
#Contact {
	background: #ebeae9;
	padding-bottom: 180px;
}
#Contact form table, /* 共通解除 */
#Contact form table tr th,
#Contact form table tr td {
	border: none;
	margin: 0;
	background: initial;
}
#Contact .content {
	max-width: 840px;
}
#Contact h2 {
	margin-bottom: 60px;
}
/* form */
#Contact form p {
	line-height: 1.4;
}
#Contact form table {
	width: 100%;
	border: none;
}
#Contact form table tr th,
#Contact form table tr td {
	border: none;
}
#Contact form table tr th {
	vertical-align: middle;
}
#Contact form table tr th,
#Contact form table tr td {
	padding-top: 25px;
	padding-bottom: 25px;
}
#Contact form table tr td {
	padding-left: 0;
	padding-right: 0;
}
#Contact form table th {
	vertical-align: top;
	width: 210px;
	white-space: nowrap;
	text-align: left;
	padding: 25px 55px 0 10px;
	position: relative;
}
#Contact form table tr th span.item {
	position: absolute;
	top: 33px;
	left: 10px;
}
#Contact form table tr th span.hissu {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	display: inline-block;
	padding: 0px 3px 2px 3px;
	background: #316dc6;
	color: #fff;
	font-size: 11px;
}
#Contact form table tr td textarea {
	width: 100%;
	height: 200px;
}
#Contact form table tr td.control {
	position: relative;
}
#Contact form input[type=tel] {
	max-width: 300px;
}
#Contact div.form_control {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
#Contact div.form_control input {
	margin: 0;
}
/* 1240 */
@media (max-width: 1240px) {
	#Contact {
		background: #ebeae9;
		padding-bottom: max(14.516vw, 60px); //180px;
	}
	#Contact h2 {
		margin-bottom: max(4.839vw, 42px); //60px;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Contact.pd_std {
		padding-bottom: max(9.677vw, 84px); //120px;
	}
	/* table */
	#Contact form table tr th {
		display: block;
		width: 100%;
		padding: 20px 5px 5px 5px;
	}
	#Contact form table tr th span.item {
		position: initial;
		top: initial;
		left: initial;
	}
	#Contact form table tr th span.hissu {
		top: calc(50% + 5px)
	}
	/* tr.mes */
	#Contact form table tr.mes th {
		vertical-align: top;
		padding: 20px 5px 5px 5px;
	}
	#Contact form table tr.mes th span.hissu {
		top: calc(50% + 5px);
		right: 10px;
	}
	#Contact form table tr td {
		display: block;
		width: 100%;
		padding: 5px 5px 20px 5px;
	}
	#Contact form table td textarea {
		height: 180px;
	}
	.wpcf7 form .wpcf7-response-output {
		font-size: 13px;
	}
	#Contact .mwform-tel-field input {
		width: 30%;
	}
}

/*--------------------------------------------------------------*/
/* 個人情報保護方針 */
/*--------------------------------------------------------------*/
.mw_wp_form_confirm table {
	margin-bottom: 40px!important;
}
.mw_wp_form_confirm section.privacy {
	display: none;
}
section.privacy {
	padding: 30px 0 60px 0;
}
section.privacy .scroll {
	border: 1px solid #ccc;
	margin: 0 auto 5px auto;
	padding: 20px;
	max-width: 825px;
	width: 100%;
	height: 250px;
	overflow-y: scroll;
	background: #f9f9f9;
}
#Contact section.privacy .scroll header h2 {
	font-weight: 400;
	font-size: 2.0rem;
	margin-top: 0;
	margin-bottom: 10px;
	color: initial;
}
section.privacy .scroll header p {
	margin-bottom: 20px;
	font-size: 1.6rem;
	line-height: 1.6;
}
#Contact section.privacy .scroll strong {
	background: initial;
}
section.privacy .scroll dl dt {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 7px;
}
section.privacy .scroll dl dd {
	font-size: 1.6rem;
	margin-bottom: 25px;
	line-height: 1.5;
}
section.privacy .scroll dl dd ul {
	list-style-type: disc;
	margin-left: 20px;
}
section.privacy .scroll dl dd ul li {
	font-size: 1.4rem;
}
/* 1240 */
@media (max-width: 1240px) {
	/* 個人情報保護方針 */
	section.privacy {
		padding: 30px 0 max(4.839vw, 42px) 0;
	}
}
/* 580 */
@media (max-width: 580px) {
	section.privacy .scroll header h2 {
		font-size: 1.8rem;
	}
	section.privacy .scroll header p {
		font-size: 1.5rem;
	}
	section.privacy .scroll dl dt {
		font-size: 1.6rem;
	}
	section.privacy .scroll dl dd {
		font-size: 1.5rem;
	}
}

/*--------------------------------------------------------------*/
/* breadcrumbs */
/*--------------------------------------------------------------*/
.breadcrumbs {
	padding-top: 15px;
	margin-bottom: -15px;
	background: #ebeae9;
	position: relative;
	z-index: 2;
}
.breadcrumbs span {
	font-size: 14px;
}
.breadcrumbs i {
	font-size: 13px;
	margin: 0 6px 0 7px;
}
.breadcrumbs a {
	color: #000;
}
body.is-pc .breadcrumbs a:hover {
	color: #4e9cb8;
}
/* 580 */
@media (max-width: 580px) {
	.breadcrumbs span {
		font-size: 14px;
	}
	.breadcrumbs i {
		font-size: 12px;
		margin: 0 3px 0 5px;
	}
}

/*--------------------------------------------------------------*/
/* Blog */
/*--------------------------------------------------------------*/
#Blog {
	background: #ebeae9;
}
#Blog.pd_std_s {
	padding-bottom: 180px;
}
/* 1240 */
@media (max-width: 1240px) {
	#Blog.pd_std_s {
		padding-bottom: max(14.516vw, 60px); //180px;
	}
}

/*--------------------------------------------------------------*/
/* #Blog 一覧 */
/*--------------------------------------------------------------*/
#Blog .col2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 0 20px;
}
#Blog .col2 div.main {
	width: 70%;
}
#Blog .col2 div.main ul.post_list > li {
	background: #fff;
	border: 1px solid #444;
	border-radius: 4px;
	padding: 30px;
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
#Blog .col2 div.main ul.post_list > li figure {
	aspect-ratio: 1 / 1;
	max-width: 250px;
	height: 100%;
	width: 33%;
	margin-right: 27px;
}
#Blog .col2 div.main ul.post_list > li figure img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	vertical-align: bottom;
}
#Blog .col2 div.main ul.post_list > li div.text {
	flex: 1;
}
#Blog .col2 div.main ul.post_list > li div.text time {
	font-size: 1.4rem;
	display: inline-block;
	margin-right: 5px;
}
#Blog .col2 div.main ul.post_list > li div.text ul.tags {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 3px;
}
#Blog .col2 div.main ul.post_list > li div.text ul.tags li a {
	display: block;
	font-size: 1.2rem;
	line-height: 1.4;
	white-space: nowrap;
	background: #23ac38;
	color: #fff;
	padding: 0px 10px 1px 10px;
	height: initial;
	border-radius: 10px;
	transition: .2s;
}
body.is-pc #Blog .col2 div.main ul.post_list > li div.text ul.tags li a:hover {
	background: #ea4737!important;
}
#Blog .col2 div.main ul.post_list > li div.text h2 {
	font-size: 2.0rem;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 15px;
}
#Blog .col2 div.main ul.post_list > li div.text h2 + p.txt {
	margin-bottom: 11px;
	font-size: 1.6rem;
	line-height: 1.7;
}
/* 768 */
@media (max-width: 768px) {
	/* main */
	#Blog .col2 div.main {
		width: 100%;
		margin-bottom: 40px;
	}
}
/* 580 */
@media (max-width: 580px) {
	/* ul.post_list */
	#Blog .col2 div.main ul.post_list > li {
		display: block;
	}
	#Blog .col2 div.main ul.post_list > li figure {
		max-width: 100%;
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	#Blog .col2 div.main ul.post_list > li div.text time {
		margin-bottom: 5px;
	}
	#Blog .col2 div.main ul.post_list > li figure img {
		width: 100%;
	}
	#Blog .col2 div.main ul.post_list > li div.text {
		width: 100%;
	}
	/* col2 */
	#Blog .col2 {
		padding: 20px 20px;
	}
	#Blog .col2 div.main ul.post_list > li div.text h2 + p.txt {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
}

/*--------------------------------------------------------------*/
/* #Blog サイドバー */
/*--------------------------------------------------------------*/
#Blog .col2 aside#sidebar {
	width: 25%;
}
#Blog .col2 aside#sidebar h3 {
	position: relative;
	background: #444;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.6;
	padding: 5px 20px;
	border-radius: 3px 3px 0 0;
}
#Blog .col2 aside#sidebar h3 + ul {
	background: #fff;
	border: 1px solid #444;
	border-radius: 0 0 3px 3px;
	padding: 16px 20px;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}
#Blog .col2 aside#sidebar h3 + ul li {
	font-size: 1.6rem;
	line-height: 1.3;
}
/* 768 */
@media (max-width: 768px) {
	#Blog .col2 aside#sidebar {
		width: 100%;
	}
}
/* 580 */
@media (max-width: 580px) {
	#Blog .col2 aside#sidebar h3 {
		font-size: 1.5rem;
	}
	#Blog .col2 aside#sidebar h3 + ul li {
		font-size: 1.5rem;
	}
}


/*--------------------------------------------------------------*/
/* #Blog 詳細 */
/*--------------------------------------------------------------*/
article.post-wrap header {
	margin-bottom: 30px;
}
article.post-wrap header h1 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	letter-spacing: 0;
}
article.post-wrap header .timecat {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 15px;
}
article.post-wrap header .timecat time {
	margin-left: 7px;
	font-size: 1.4rem;
}
article.post-wrap header .timecat ul.cat {
	display: flex;
	align-items: center;
	gap: 3px;
}
article.post-wrap header .timecat ul.cat li a {
	display: block;
	font-size: 1.2rem;
	line-height: 1.4;
	background: #23ac38;
	color: #fff;
	padding: 0px 10px 1px 10px;
	height: initial;
	border-radius: 10px;
	transition: .2s;
}
body.is-pc article.post-wrap header .timecat ul.cat li a:hover {
	background: #ea4737!important;
}
article.post-wrap header figure {
	margin-bottom: 20px;
}
article.post-wrap header figure img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-height: 300px;
}
article.post-wrap div.entry {
	border: 1px solid #444;
	padding: 30px 30px 20px 30px;
	background: #fff;
	border-radius: 3px;
}
article.post-wrap div.entry *:not(img):not(picture):not(figcaption):not(source) {
	all: revert;
}
article.post-wrap div.entry a:hover {
	color: red;
	text-decoration: none;
}
/* 580 */
@media (max-width: 580px) {
	article.post-wrap div.entry {
		padding: 15px 10px;
	}
	article.post-wrap div.entry img {
		width: 100%!important;
	}
}

/*--------------------------------------------------------------*/
/* Blog -> コラムテーマ */
/*--------------------------------------------------------------*/
/* taxonomy */
#Blog div.themes {
	margin-bottom: 30px;
}
#Blog div.themes h2 {
	text-align: center;
	margin-bottom: 30px;
}
#Blog div.themes div.description p {
	margin-bottom: 20px;
}
/* single */
#Blog div.themes_single {
	font-size: 1.6rem;
	text-align: center;
	padding: 25px;
	border: 1px solid #444;
	border-radius: 3px;
	background: #fff;
	margin-bottom: 30px;
	position: relative;
}
#Blog div.themes_single span.txt {
	display: inline-block;
	padding: 1px 6px 3px 6px;
	background: #444;
	color: #fff;
	font-size: 1.1rem;
	position: absolute;
	border-radius: 0 0 3px 0;
	top: 0;
	left: 0;
}
/* 1240 */
@media (max-width: 1240px) {
	#Blog div.themes_single h2 {
		font-size: max(1.94vw, 1.6rem); //2.4rem;
	}
	#Blog div.themes_single {
		padding: 25px max(2.016vw, 15px); //25px;
	}
}

/*--------------------------------------------------------------*/
/* Blog -> コラムテーマリスト */
/*--------------------------------------------------------------*/
ul.themes_list {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}
ul.themes_list > li {
	background: #fff;
	border: 1px solid #444;
	border-radius: 3px;
}
ul.themes_list > li div.theme_title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 15px 20px;
	background: #444;
	gap: 10px;
}
ul.themes_list > li div.theme_title a {
	color: #fff;
	transition: .3s ease;
}
body.is-pc ul.themes_list > li div.theme_title a:hover {
	color: #fff;
	opacity: 0.8;
}
ul.themes_list > li div.theme_title span.popup {
	font-size: 1.2rem;
	display: inline-block;
	width: 100px;
	white-space: nowrap;
}
ul.themes_list > li div.inner {
	padding: 30px;
}
ul.themes_list > li div.theme_detail {
	display: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 20px;
	margin-top: 20px;
}
div.modal_topic_title {
	background: #444;
	color: #fff;
	border-radius: 5px;
	text-align: center;
	padding: 20px;
	margin-bottom: 25px;
}
ul.theme_posts {
	list-style: disc;
	margin-left: 10px;
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}
nav.themes_list_pagenavi {
	margin-top: 40px;
	text-align: center;
}
/* 580 */
@media (max-width: 580px) {
	ul.themes_list > li div.inner {
		padding: 20px;
	}
	ul.themes_list > li div.theme_title {
		display: block;
	}
	ul.themes_list > li div.theme_title span.popup {
		display: block;
		text-align: right;
		width: 100%;
		margin-top: 5px;
	}
	div.modal_topic_title {
		padding: 15px;
		margin-bottom: 20px;
	}
	.modaal-content-container {
		padding: 20px!important;
	}
}

/*--------------------------------------------------------------*/
/* ページャー 一覧ページ用 */
/*--------------------------------------------------------------*/
.navigation {
	margin-top: 40px;
	text-align: center;
}
ul.page-numbers {
	display: inline-flex;
	column-gap: 4px;
	margin: 0 auto;
}
ul.page-numbers li a {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	width: 30px;
	border: 1px solid #444;
	text-decoration: none;
	transition: .3s ease;
}
ul.page-numbers li span.current {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	width: 30px;
	color: #fff;
	background: #444;
}
body.is-pc ul.page-numbers li a:hover {
	border-color: #1f5198;
	background: #1f5198;
	color: #fff;
}

/*--------------------------------------------------------------*/
/* ページャー 詳細ページ用 */
/*--------------------------------------------------------------*/
/* table */
table.page_navi {
	border-collapse: separate;
	margin-top: 40px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
	width: 100%;
	background: #fff;
	border: 1px solid #444;
	border-radius: 3px;
}
table.page_navi th,
table.page_navi td {
	border: none;
	width: calc(100%/3);
	text-align: center;
}
table.page_navi td div.ya a {
	transition: .3s ease;
}
body.is-pc table.page_navi td div.ya a:hover {
	color: #ea4737;
}
table.page_navi td div.ya a i.fa-angle-left {
	margin-right: 8px;
}
table.page_navi td div.ya a i.fa-angle-right {
	margin-left: 8px;
}
/* 580 */
@media (max-width: 580px) {
	table.page_navi th,
	table.page_navi td {
		padding: 10px 0;
	}
}

/*--------------------------------------------------------------*/
/* 404 */
/*--------------------------------------------------------------*/
#Fn404 {
	background: #ebeae9;
	padding: 100px 0 180px  0;
}
#Fn404 p {
	text-align: center;
	line-height: 2;
}
#Fn404 p a {
	text-decoration: underline;
	transition: .3s ease;
}
body.is-pc #Fn404 p a:hover {
	text-decoration: none;
}
/* 1240 */
@media (max-width: 1240px) {
	#Fn404 {
		padding: max(8.065vw, 70px) 0 max(14.516vw, 90px)  0;
	}
}

/*--------------------------------------------------------------*/
/* ArrowBanner */
/*--------------------------------------------------------------*/
.arrow_banner {
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
	position: fixed;
	text-decoration: none;
	right: 1%;
	bottom: 3%;
	z-index: 6;
	aspect-ratio: 19 / 9;
	width: 170px;
	padding-left: 15px;
	transform: translateX(-10px);
	transition: opacity .3s ease, transform .3s ease;
}
.arrow_banner.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
.arrow_banner .text {
	position: relative;
	z-index: 2;
}
.arrow_banner .text .txt1 {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 3px;
	color: #fff;
}
.arrow_banner .text .txt2 {
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
}
.arrow_banner svg {
	object-fit: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.arrow_banner .bk {
	fill: #1f5198;
	transition: .3s ease;
}
body.is-pc body.is-pc .arrow_banner:hover .bk {
	fill: #ea4737;
}
/* 1000 */
@media (max-width: 1000px) {
	.arrow_banner {
		display: none;
	}
	div.sp_menu_right .arrow_banner {
		display: flex;
		position: initial;
		opacity: 1;
		visibility: initial;
		width: 144px;
		transform: translateX(0);
	}
	div.sp_menu_right .arrow_banner p.txt1 {
		font-size: 1.3rem;
		margin-bottom: 1px;
	}
	div.sp_menu_right .arrow_banner p.txt2 {
		font-size: 1.0rem;
	}
}

/*--------------------------------------------------------------*/
/* footer */
/*--------------------------------------------------------------*/
footer div.foot {
	background: #ebeae9;
}
footer div.foot > .flex {
	align-items: center;
}
/* logo */
footer div.foot div.logo {
	width: 60%;
}
footer div.foot div.logo a {
	display: inline-flex;
	align-items: center;
	gap: 0 10px;
}
footer div.foot div.logo a .flex {
	align-items: center;
	gap: 0 12px;
}
footer div.foot div.logo a img {
	width: 85px;
	transition: .5s ease;
}
footer div.foot div.logo a div.text {
	line-height: 1.4;
	flex: 1;
	display: inline-flex;
	flex-direction: column;
	gap: 5px 0;
}
footer div.foot div.logo a div.text span {
	transition: .5s ease;
}
body.is-pc footer div.foot div.logo a:hover div.text span {
	color: #444;
	opacity: 0.8;
}
footer div.foot div.logo a div.text span.name1 {
	font-size: 1.6rem;
	font-weight: 500;
}
footer div.foot div.logo a div.text span.name2 {
	font-size: 2.0rem;
	font-weight: 500;
}
footer div.foot div.logo a div.text span.eng {
	font-size: 1.2rem;
	font-weight: 500;
}
/* nav */
footer div.foot nav {
	flex: 1;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer div.foot nav ul li {
	white-space: nowrap;
}
footer div.foot nav ul.pare li {
	margin: 15px 0;
}
footer div.foot nav ul.pare li > a,
footer div.foot nav ul.pare li > .a {
	position: relative;
}
footer div.foot nav ul.pare li a span.txt,
footer div.foot nav ul.pare li .a span.txt {
	display: inline-block;
	background: #ebeae9;
	padding-left: 3px;
	position: relative;
	z-index: 1;
	transition: .3s ease;
}
footer div.foot nav ul.pare li .a span.txt {
	cursor: default;
}
body.is-pc footer div.foot nav ul.pare li a:hover span.txt {
	transform: translateX(4px);
	color: #777;
}
footer div.foot nav ul.pare > li a::before,
footer div.foot nav ul.pare > li .a::before {
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	border-top: 1px solid #444;
	position: absolute;
	top: 50%;
	left: -5px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 0;
}
/* ul.child */
footer div.foot nav ul.child {
	margin-left: 15px;
}
footer div.foot nav ul.child li {
	margin: 5px 0 0 0;
}
/* copy */
footer div.copy {
	font-size: 1.4rem;
	padding: 30px 0;
	text-align: center;
}
/* 1240 */
@media (max-width: 1240px) {
	footer div.foot div.logo a div.text span.name1 {
		font-size: max(1.29vw, 1.2rem); //1.6rem;
		font-weight: 500;
	}
	footer div.foot div.logo a div.text span.name2 {
		font-size: max(1.61vw, 1.4rem); //2.0rem;
		font-weight: 500;
	}
	footer div.foot div.logo a div.text span.eng {
		font-size: max(0.97vw, 0.8rem); //1.2rem;
		font-weight: 500;
	}
}
/* 768 */
@media (max-width: 768px) {
	/* logo */
	footer div.foot div.logo {
		width: 67%;
	}
}
/* 580 */
@media (max-width: 580px) {
	footer div.foot > .flex {
		align-items: center;
		gap: 30px 0;
	}
	/* logo */
	footer div.foot div.logo {
		width: 100%;
		text-align: center;
	}
	footer div.foot div.logo a div.text {
		text-align: left;
	}
	footer div.foot div.logo a img {
		width: 72px;
	}
	footer div.foot nav {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	footer div.foot nav ul.pare {
		width: 168px;
	}
	footer div.foot nav ul.pare:nth-child(1) li:last-child {
		margin-bottom: 0;
	}
	/* copy */
	footer div.copy {
		font-size: 1.2rem;
		padding: 30px 0;
		text-align: center;
	}
}

