@charset "utf-8";
/* CSS Document */
/*######################################################
基本設定
######################################################*/
@import url("reset.css");
@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css); /*font-family: "Mplus 1p";*/
@import url(//fonts.googleapis.com/earlyaccess/roundedmplus1c.css); /*font-family: "Rounded Mplus 1c";*/
@import url(//fonts.googleapis.com/earlyaccess/hannari.css); /*font-family: "Hannari";*/
@import url(//fonts.googleapis.com/earlyaccess/kokoro.css); /*font-family: "Kokoro";*/
@import url(//fonts.googleapis.com/earlyaccess/sawarabimincho.css); /*font-family: "Sawarabi Mincho";*/
@import url(//fonts.googleapis.com/earlyaccess/sawarabigothic.css); /*font-family: "Sawarabi Gothic";*/
@import url(//fonts.googleapis.com/earlyaccess/nikukyu.css); /*font-family: "Nikukyu";*/
@import url(//fonts.googleapis.com/earlyaccess/nicomoji.css); /*font-family: "Nico Moji";*/
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css); /*font-family: "Noto Sans Japanese";*/
@import url('https://fonts.googleapis.com/css?family=Work+Sans:800&display=swap'); /*font-family: 'Work Sans', sans-serif;*/
html {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	color: #666;
	font-family: "Noto Sans Japanese", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 14px;
	line-height: 1.6;
	height: 100%;
}
img {
	max-width: 100%;
	height: auto;
	width /***/ : auto;
	vertical-align: bottom;
}
a {
	color: #00ACD7;
	text-decoration: none;
	transition: 0.3s;
	cursor: pointer;
}
a:hover {
	opacity: 0.5;
}
@media (max-width: 768px) {
	html {}
	body {}
	img {}
	a {}
	a:hover {}
}
/*######################################################
共通箇所
######################################################*/
/*//////////////////////////////////////
header
//////////////////////////////////////*/
header {
	width: 100%;
	padding: 0px calc(50% - 600px);
	box-sizing: border-box;
	position: absolute;
	display: flex;
	justify-content: space-between;
	z-index: 10000;
	/* background: rgba(0,0,0,0.5); */
	border-top: solid 14px #090;
}
header .logo {
	padding-top: 30px;
	color: #fff;
	white-space: nowrap;
	font-size: 34px;
	font-weight: 700;
	/* line-height: 1.2; */
}
header .logo:hover {
	opacity: 0.5;
}
@media (max-width: 768px) {
	header {
		padding: 5px;
		width: 100%;
		box-sizing: border-box;
		min-width: inherit;
	}
	header .logo {
		padding: 0;
		display: block;
		text-align: center;
		width: 100%;
	}
	header .logo:hover {}
}
/*//////////////////////////////////////
nav
//////////////////////////////////////*/
nav {
	position: relative;
	z-index: 100;
	margin-top: 46px;
	margin-right: -20px;
}
nav .sp_menu {
	display: none;
}
nav .sp_menu_bg {
	display: none;
}
nav > ul {
	display: flex;
	justify-content: space-around;
}
nav > ul li {}
nav > ul li:first-of-type {
	display: none;
}
nav ul li a {
	display: block;
	margin: 0;
	padding: 10px 20px;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}
nav ul > li:hover > a {
	opacity: 0.5;
}
nav > ul > li .drop {
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 10px;
	background: rgba(255, 255, 255, .9);
	/* box-shadow: 0px 2px 5px rgba(0,0,0,.5); */
	box-sizing: border-box;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}
nav > ul > li .drop dl {
	display: flex;
	flex-wrap: wrap;
}
nav > ul > li .drop dl a {
	padding: 10px;
	font-weight: 500;
}
nav > ul > li .drop dl a:hover {}
nav > ul > li .drop dl dt {}
nav > ul > li .drop dl dt a {}
nav > ul > li .drop dl dd {
	width: calc(100%/3);
}
nav > ul > li:hover > .drop {
	opacity: 1;
	visibility: visible;
}
nav.fixed {
	position: fixed;
	top: 0;
	background: #090;
	animation-name: navi;
	animation-duration: 1s;
	animation-timing-function: ease;
	left: 0;
	margin: 0;
	min-width: 1200px;
	padding: 0px calc(50% - 600px);
	backface-visibility: hidden;
}
@keyframes navi {
	0% {
		top: -100px;
	}
	100% {
		top: 0;
	}
}
nav.fixed ul {
	position: relative;
}
nav.fixed > ul li:first-of-type {
	display: block;
}
@media (max-width: 768px) {
	nav {
		z-index: 300;
	}
	nav .sp_menu {
		display: block;
		position: fixed;
		top: 0px;
		right: 0px;
		color: #fff;
		width: 50px;
		height: 50px;
		z-index: 9999;
		background: #090;
		cursor: pointer;
		transition: 0.5s ease-in-out;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		border-radius: 0 0 0 5px;
		box-sizing: border-box;
		text-align: center;
		padding-top: 27px;
		font-family: "Noto Sans Japanese";
		font-size: 12px;
	}
	nav .sp_menu:before {
		content: "";
		position: absolute;
		top: 23px;
		left: 0;
		right: 0;
		margin: auto;
		background: #fff;
		height: 3px;
		width: 32px;
		box-shadow: inset 0px 0px 0px 0px #fff, 0px -8px #fff, 0 -16px #fff;
	}
	nav.open .sp_menu {
		right: 80%;
	}
	nav .sp_menu_bg {
		z-index: 99;
		display: none;
		top: 0;
		left: 0;
		position: fixed;
	}
	nav.open .sp_menu_bg {
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.2);
	}
	nav.open ul {
		right: 0px;
	}
	nav ul li {
		float: none;
		width: 100%;
		text-align: left;
		padding: 0;
	}
	nav ul li a {
		color: #fff;
	}
	nav ul li ul {
		background: transparent;
		position: relative;
		overflow: visible;
	}
	nav > ul {
		position: fixed !important;
		z-index: 1000;
		display: block;
		font-size: 0.9em;
		background-color: #090;
		width: 80%;
		right: -80%;
		padding: 10px;
		list-style-type: none;
		transition: 0.5s ease-in-out;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		box-sizing: border-box;
		height: 100%;
		top: 0px;
		overflow: scroll;
	}
	nav > ul li {}
	nav > ul li:first-of-type {
		display: block;
	}
	nav ul li a {}
	nav ul > li:hover > a {}
	nav > ul > li .drop {
		opacity: 1;
		visibility: visible;
		position: relative;
		padding: 0;
		background: transparent;
		margin: -5px 0 5px 20px;
	}
	nav > ul > li .drop dl {
		display: block;
	}
	nav > ul > li .drop dl a {
		font-weight: 300;
		padding: 5px;
	}
	nav > ul > li .drop dl a:hover {}
	nav > ul > li .drop dl dt {}
	nav > ul > li .drop dl dt a {}
	nav > ul > li .drop dl dd {
		width: auto;
	}
	nav > ul > li:hover > .drop {}
	nav.fixed {}
	nav.fixed ul {}
}
/*//////////////////////////////////////
footer
//////////////////////////////////////*/
footer {
	background: #090;
	color: #fff;
	padding: 100px calc(50% - 600px) 80px;
	/* display: flex; */
	/* justify-content: space-between; */
}
footer dl {display: flex;justify-content: space-between;}
footer dl dt{display: flex;flex-direction: column;justify-content: space-between;}
footer dl dt table{
}
footer dl dt table tr{
}
footer dl dt table tr td{padding: 5px;}
footer dl dt table tr td ul{
    list-style: disc;
    padding: 0 0 0 1.4rem;
}
footer dl dt table tr td ul li{}
footer dl dt small{}
footer dl dd{
}
footer dl dd iframe{width: 530px;height: 370px;}
a.page_top {
	transition: 1s;
	position: fixed;
	right: 10px;
	bottom: 10px;
	display: block;
	text-indent: -9999px;
	border: 6px #ccc solid;
	border-radius: 50px;
	width: 65px;
	height: 65px;
	float: right;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	z-index: 5555;
}
a.page_top:before {
	content: '';
	height: 0;
	width: 0;
	display: block;
	border: 12px transparent solid;
	border-bottom-color: #ccc;
	position: absolute;
	top: 0px;
	left: 15px;
	border-radius: 3px;
}
a.page_top:after {
	content: '';
	height: 20px;
	width: 10px;
	display: block;
	background: #ccc;
	position: absolute;
	top: 21px;
	left: 22px;
	border-radius: 2px;
}
a.page_top.fixed {
	visibility: visible;
	opacity: 1;
}
a.page_top.fixed:hover {
	opacity: 0.5;
}
@media (max-width: 768px) {
	footer {
		padding: 40px 20px;
	}
footer dl {flex-direction: column-reverse;}
footer dl dt{
}
footer dl dt table{margin: 1rem 0 3rem;font-size: 12px;}
footer dl dt table tr{
}
footer dl dt table tr td{
}
footer dl dt table tr td ul{}
footer dl dt table tr td ul li{}
footer dl dt small{font-size: 12px;text-align: center;}
footer dl dd{
}
footer dl dd iframe{width: 100%;height: 200px;}
	a.page_top {
		border-radius: 50px;
		width: 46px;
		height: 46px;
	}
	a.page_top:before {
		border: 14px transparent solid;
		border-bottom-color: #ccc;
		left: 3px;
		top: -10px;
		border-radius: 3px;
	}
	a.page_top:after {
		height: 15px;
		width: 13px;
		top: 13px;
		left: 11px;
		border-radius: 2px;
	}
}
/*//////////////////////////////////////
全体要素
//////////////////////////////////////*/
#container {
	min-height: calc(100vh - 434px);
}
.ttl {
	background: #EFECE3;
	border-top: solid 96px;
	padding: 100px 0 60px;
	text-align: center;
	margin-bottom: 30px;
}
.ttl strong {
	display: block;
	font-size: 32px;
}
.ttl b {
	display: block;
	font-size: 18px;
}
@media (max-width: 768px) {
	#container {
		min-height: calc(100vh - 338px);
	}
	.ttl {
		border-top: solid 60px;
		padding: 30px 0 30px;
	}
	.ttl strong {}
	.ttl b {}
}
/*######################################################
個別設定
######################################################*/
/*/////////////////////////////////////////
index.php
/////////////////////////////////////////*/
.top_img {
	background: url(../img/top/bg_top_img.jpg)no-repeat center;
	height: 100vh;
	min-height: 500px;
	background-size: cover;
	position: relative;
	box-sizing: border-box;
	padding-top: calc(10px + 30vh);
	text-align: center;
	color: #fff;
}
.top_img:before {
	content: "";
	background: rgb(0 75 0 / 30%);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.top_img > strong {
	display: block;
	font-size: 54px;
	line-height: 1;
	position: relative;
	/* font-weight: 900; */
	margin-bottom: 10vh;
	font-family: 'Work Sans', sans-serif;
}
.top_img > b {
	font-size: 30px;
	position: relative;
	font-weight: 500;
	line-height: 1.2;
}
.top_img .notice {
	position: relative;
	background: rgba(255, 255, 255, .7);
	color: #f00;
	width: 1000px;
	box-sizing: border-box;
	margin: 5vh auto 0;
	padding: 10px;
	font-size: 14px;
	z-index: 1000;
}
.top_img .notice strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
}
.top_img .notice ul {
	display: flex;
	justify-content: center;
}
.top_img .notice ul li {}
.top_img .notice ul li a {
	color: #f00;
	display: block;
	border: solid 2px #f00;
	font-size: 12px;
	padding: 2px 50px;
	margin: 10px 5px 0;
}
.top_img .notice ul li a:hover {
	opacity: 1;
	background: #f00;
	color: #fff;
}
.top_cnt01 {
	display: flex;
	position: relative;
}
.top_cnt01:before {
	/*content: "";*/
	background: url(../img/top/bg_objective.png)no-repeat center;
	background-size: 250px auto;
	opacity: 0;
	background-position-x: calc(50% + 1000px);
	background-position-y: 20px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.top_cnt01.action:before {
	animation: anime6 1s forwards;
}
@keyframes anime6 {
	0% {
		opacity: 0;
		background-position-x: calc(50% + 1000px);
	}
	100% {
		opacity: 1;
		background-position-x: calc(50% + 380px);
	}
}
.top_cnt01:after {
	content: "KENSUKE MORI";
	position: absolute;
	color: rgb(0 153 0 / 100%);
	font-weight: 900;
	font-size: 128px;
	line-height: 1;
	top: -24px;
	font-family: 'Work Sans', sans-serif;
	z-index: 100;
	opacity: 0;
}
.top_cnt01.action:after {
	animation: anime1 1s forwards;
}
@keyframes anime1 {
	0% {
		opacity: 0;
		left: -1000px;
	}
	100% {
		opacity: 1;
		left: calc(50% - 600px);
	}
}
.top_cnt01 .company01 {
	padding: 160px calc(50% - 520px);
	box-sizing: border-box;
	width: 100%;
}
.top_cnt01 .company01 dl {display: flex;flex-direction: row-reverse;justify-content: space-between;width: 100%;}
.top_cnt01 .company01 dl dt{
}
.top_cnt01 .company01 dl dt img{height: 280px;}
.top_cnt01 .company01 dl dd{width: 636px;}
.top_cnt01 .company01 dl dd div{
    font-size: 16px;
    margin: 0 0 .5rem;
}
.top_cnt01 .company01 dl dd div b{color: #333;font-size: 42px;font-weight: 900;margin: 0 1rem 0 0;}
.top_cnt01 .company01 dl dd strong{color: #090;font-size: 1.7rem;font-weight: 900;display: block;margin: 0 0 .5rem;}
.top_cnt01 .company01 dl dd p{font-size: 13px;}
.top_cnt02 {
	background: rgb(0 153 0 / 50%);
	position: relative;
	color: #fff;
	padding: 160px calc(50% - 600px);
	box-sizing: border-box;
}
.top_cnt02:before {
	/* content: ""; */
	background: url(../img/top/bg_service.png)no-repeat;
	background-size: 290px auto;
	opacity: 0;
	background-position-x: calc(50% - 350px);
	background-position-y: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.top_cnt02.action:before {
	animation: anime7 1s forwards;
}
@keyframes anime7 {
	0% {
		opacity: 0;
		background-position-x: calc(50% - 1000px);
	}
	100% {
		opacity: 1;
		background-position-x: calc(50% - 350px);
	}
}
.top_cnt02:after {
	content: "SERVICE";
	position: absolute;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 900;
	font-size: 128px;
	line-height: 1;
	top: -24px;
	font-family: 'Work Sans', sans-serif;
	z-index: 100;
	opacity: 0;
}
.top_cnt02.action:after {
	animation: anime3 1s forwards;
}
@keyframes anime3 {
	0% {
		opacity: 0;
		right: -1000px;
	}
	100% {
		opacity: 1;
		right: calc(50% - 650px);
	}
}
.top_cnt02 .service {
	padding: 0 0 60px 660px;
}
.top_cnt02 .service strong {
	display: block;
	font-size: 38px;
	line-height: 1;
	margin-bottom: 20px;
	color: #fff;
	font-weight: 700;
}
.top_cnt02 .service p {}
.top_cnt02 ul {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
	color: #666;
	max-width: 1200px;
	margin-bottom: 25px;
}
.top_cnt02 ul > li {
	width: calc((100% - 45px) / 3);
	margin-bottom: 15px;
	margin-right: calc(45px/2);
	padding: 30px 30px 70px 30px;
	box-sizing: border-box;
	background: #fff;
	position: relative;
	line-height: 1.4;
	font-size: 14px;
	opacity: 0;
}
.top_cnt02 ul > li:nth-of-type(3n) {
	margin-right: 0;
}
.top_cnt02 ul > li:nth-of-type(2) {
	animation-delay: .2s;
}
.top_cnt02 ul > li:nth-of-type(3) {
	animation-delay: .4s;
}
.top_cnt02 ul > li:nth-of-type(4) {
	animation-delay: .6s;
}
.top_cnt02 ul > li:nth-of-type(5) {
	animation-delay: .8s;
}
.top_cnt02 ul > li:nth-of-type(6) {
	animation-delay: 1s;
}
.top_cnt02 ul > li:nth-of-type(7) {
	animation-delay: 1.2s;
}
.top_cnt02 ul > li:nth-of-type(8) {
	animation-delay: 1.4s;
}
.top_cnt02 ul > li:nth-of-type(9) {
	animation-delay: 1.6s;
}
.top_cnt02 ul > li:nth-of-type(10) {
	animation-delay: 1.8s;
}
.top_cnt02 ul > li:nth-of-type(11) {
	animation-delay: 2s;
}
.top_cnt02 ul > li:nth-of-type(12) {
	animation-delay: 2.2s;
}
.top_cnt02 ul > li strong {
	display: block;
	color: #333;
	font-size: 21px;
	font-weight: 900;
	margin: 0 0 15px;
	line-height: 1;
}
.top_cnt02 ul > li ol {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.top_cnt02 ul > li ol li {
	background: #66c266;
	color: #fff;
	line-height: 1;
	padding: 3px 10px 5px;
	margin: 0 5px 5px 0;
}
.top_cnt02 ul > li b {
	display: block;
	color: #333;
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 15px;
}
.top_cnt02 ul > li a {
	display: block;
	width: 80%;
	text-align: center;
	background: #090;
	color: #fff;
	font-weight: 200;
	padding: 10px;
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: auto;
	line-height: 1;
}
.top_cnt02 ul > li a.soon {
	pointer-events: none;
	background: #999;
}
.top_cnt02 .to_mail-maga {
	background: #090;
	color: #fff;
	padding: 20px 60px 40px;
}
.top_cnt02 .to_mail-maga strong {
	font-size: 40px;
	font-weight: 700;
	margin-right: 50px;
	position: relative;
	padding: 0 0 0 70px;
}
.top_cnt02 .to_mail-maga strong:before {
	content: "";
	width: 60px;
	height: 40px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 12px;
	border-radius: 4px;
}
.top_cnt02 .to_mail-maga strong:after {
	content: "";
	position: absolute;
	left: 6px;
	top: -12px;
	transform: rotate(45deg) skew(-5deg, -5deg);
	height: 36px;
	width: 36px;
	border: solid 6px #090;
}
.top_cnt02 .to_mail-maga b {
	font-size: 28px;
	font-weight: 700;
}
.top_cnt02 .to_mail-maga dl {
	display: flex;
	justify-content: space-between;
	margin: 20px 0 0;
	font-size: 14px;
	align-items: center;
}
.top_cnt02 .to_mail-maga dl dt {}
.top_cnt02 .to_mail-maga dl dd {}
.top_cnt02 .to_mail-maga dl dd a {
	display: block;
	background: #fff;
	width: 280px;
	text-align: center;
	font-size: 24px;
	padding: 12px 0 15px;
	border-radius: 5px;
	color: #090;
}
.top_cnt03 {
	background: #F5F5F5;
	padding: 100px calc(50% - 550px) 160px;
	box-sizing: border-box;
	position: relative;
}
.top_cnt03:before {
	content: "NEWS";
	position: absolute;
	color: rgb(0 153 0 / 15%);
	font-weight: 900;
	font-size: 128px;
	line-height: 1;
	/* right: 0; */
	left: calc(50% - 600px);
	margin: auto;
	text-align: center;
	font-family: 'Work Sans', sans-serif;
	opacity: 0;
}
.top_cnt03.action:before {
	animation: anime4 1s forwards;
}
@keyframes anime4 {
	0% {
		opacity: 0;
		top: -500px;
	}
	100% {
		opacity: 1;
		top: -24px;
	}
}
.top_cnt03 strong {
	display: block;
	font-size: 38px;
	line-height: 1;
	padding: 0 0 50px;
	color: #090;
	font-weight: 900;
	text-align: center;
}
.top_cnt03 dl {
	font-size: 13px;
	height: 400px;
	overflow-y: auto;
}
.top_cnt03 dl dt {
	font-weight: 700;
	position: relative;
}
.top_cnt03 dl dt b {
	content: attr(title);
	background: #090;
	color: #fff;
	font-weight: 200;
	font-size: 12px;
	line-height: 1;
	margin-left: 5px;
	padding: 0px 10px 1px;
}
.top_cnt03 dl dd {
	margin-bottom: 20px;
	padding: 10px 1rem 20px;
	border-bottom: dotted 1px #ddd;
	overflow: hidden;
}
.top_cnt03 dl dd b {
	display: block;
	font-weight: 700;
	color: #333;
}
.top_cnt03 dl dd img {display: block;border: 5px solid #fff;outline: solid 2px #EAEAEA;max-width: 480px;max-height: 270px;}
@media (max-width: 768px) {
	.top_img {
		min-height: inherit;
		height: auto;
		width: 100%;
		padding-top: 100px;
		padding-bottom: 10px;
	}
	.top_img:before {}
	.top_img > strong {
		font-size: 34px;
		margin-bottom: 20px;
	}
	.top_img b {
		font-size: 14px;
	}
	.top_img .notice {
		width: 96%;
		margin: 10px auto;
	}
	.top_img .notice strong {
		font-size: 15px;
	}
	.top_img .notice ul {
		flex-direction: column;
	}
	.top_img .notice ul li {}
	.top_img .notice ul li a {}
	.top_img .notice ul li a:hover {}
	.top_cnt01 {
		display: block;
	}
	.top_cnt01:before {
		background-size: 80px auto;
		background-position-y: 5px;
	}
	.top_cnt01.action:before {}
	@keyframes anime6 {
		0% {
			opacity: 0;
			background-position-x: calc(50% + 1000px);
		}
		100% {
			opacity: 1;
			background-position-x: calc(50% + 170px);
		}
	}
	.top_cnt01:after {
		font-size: 60px;
		top: -10px;
	}
	.top_cnt01.action:after {}
	@keyframes anime1 {
		0% {
			opacity: 0;
			left: -1000px;
		}
		100% {
			opacity: 1;
			left: 0;
		}
	}
	.top_cnt01 .company01 {
		padding: 70px 20px 50px;
		width: 100%;
	}
.top_cnt01 .company01 dl {flex-direction: column;margin: 2.5rem 0 0;}
.top_cnt01 .company01 dl dt{
}
.top_cnt01 .company01 dl dt img{height: 200px;margin: auto;display: block;}
.top_cnt01 .company01 dl dd{width: 100%;}
.top_cnt01 .company01 dl dd div{text-align: center;}
.top_cnt01 .company01 dl dd div b{display: block;}
.top_cnt01 .company01 dl dd strong{
}
.top_cnt01 .company01 dl dd p{
}
	.top_cnt02 {
		padding: 70px 20px 30px;
	}
	.top_cnt02:before {
		background-size: 160px auto;
		background-position-y: 5px;
	}
	.top_cnt02.action:before {}
	@keyframes anime7 {
		0% {
			opacity: 0;
			background-position-x: calc(50% - 1000px);
		}
		100% {
			opacity: 1;
			background-position-x: calc(50% - 100px);
		}
	}
	.top_cnt02:after {
		font-size: 60px;
		top: -10px;
	}
	.top_cnt02.action:after {}
	@keyframes anime3 {
		0% {
			opacity: 0;
			right: 1000px;
		}
		100% {
			opacity: 1;
			right: 0;
		}
	}
	.top_cnt02 .service {
		padding: 0;
		width: 100%;
		margin-bottom: 30px;
	}
	.top_cnt02 .service strong {
		font-size: 18px;
	}
	.top_cnt02 .service p {}
	.top_cnt02 ul {
		max-width: 100%;
		flex-direction: column;
	}
	.top_cnt02 ul > li {
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.top_cnt02 ul > li:nth-of-type(2) {}
	.top_cnt02 ul > li:nth-of-type(3) {}
	.top_cnt02 ul > li:nth-of-type(4) {}
	.top_cnt02 ul > li:nth-of-type(5) {}
	.top_cnt02 ul > li:nth-of-type(6) {}
	.top_cnt02 ul > li:nth-of-type(7) {}
	.top_cnt02 ul > li:nth-of-type(8) {}
	.top_cnt02 ul > li:nth-of-type(9) {}
	.top_cnt02 ul > li:nth-of-type(10) {}
	.top_cnt02 ul > li:nth-of-type(11) {}
	.top_cnt02 ul > li:nth-of-type(12) {}
	.top_cnt02 ul > li strong {
		margin: -10px -10px 10px;
	}
	.top_cnt02 ul > li ol {}
	.top_cnt02 ul > li ol li {}
	.top_cnt02 ul > li b {}
	.top_cnt02 ul > li a {}
	.top_cnt02 ul > li a.soon {}
	.top_cnt02 .to_mail-maga {
		padding: 20px 20px 20px;
	}
	.top_cnt02 .to_mail-maga strong {
		display: table;
		margin: 0 auto 0;
	}
	.top_cnt02 .to_mail-maga strong:before {}
	.top_cnt02 .to_mail-maga strong:after {}
	.top_cnt02 .to_mail-maga b {
		font-size: 21px;
		text-align: center;
		display: block;
	}
	.top_cnt02 .to_mail-maga dl {
		flex-direction: column;
	}
	.top_cnt02 .to_mail-maga dl dt {
		margin: 0 0 20px;
	}
	.top_cnt02 .to_mail-maga dl dt br {
		/* display: none; */
	}
	.top_cnt02 .to_mail-maga dl dd {
		width: 100%;
	}
	.top_cnt02 .to_mail-maga dl dd a {
		width: 100%;
	}
	.top_cnt03 {
		padding: 20px 20px 50px;
		width: 100%;
	}
	.top_cnt03:before {
		font-size: 110px;
	}
	.top_cnt03.action:before {
    left: 0;
    right: 0;
}
	@keyframes anime4 {
		0% {
			opacity: 0;
			top: -500px;
		}
		100% {
			opacity: 1;
			top: -20px;
		}
	}
	.top_cnt03 strong {
		padding: 40px 0 50px;
	}
	.top_cnt03 dl {}
	.top_cnt03 dl dt {}
	.top_cnt03 dl dt b {}
	.top_cnt03 dl dd {}
	.top_cnt03 dl dd b {}
.top_cnt03 dl dd img {
    max-width: 100%;
}
}
/*/////////////////////////////////////////
下層ページ共通
/////////////////////////////////////////*/
.kaso_img {
	background-repeat: no-repeat;
	background-position: center;
	height: 300px;
	background-size: cover;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
}
.kaso_img:before {
	content: "";
	background: rgb(0 75 0 / 30%);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.kaso_img:after {
	content: attr(title);
	position: absolute;
	z-index: 1;
	font-family: 'Work Sans', sans-serif;
	font-size: 138px;
	font-weight: 900;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	color: rgba(255, 255, 255, 0.4);
	line-height: 105px;
}
.kaso_img strong {
	display: block;
	font-size: 50px;
	line-height: 1;
	font-weight: 700;
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
}
.pankuzu {
	padding: 0px calc(50% - 600px);
	line-height: 46px;
	background: #85E7FF;
	color: #fff;
}
.pankuzu a {
	color: #fff;
}
.pankuzu a:hover {}
.header_inner {
	width: 100%;
}
.headline {
	display: flex;
	justify-content: space-between;
}
.headline dt {
	padding: 10px 0 0;
}
.headline dd {}
.headline dd ul {
	display: flex;
	font-weight: 600;
}
.headline dd ul li {
	padding: 10px 0 20px 25px;
}
.headline dd ul li a {
	color: #00ACD7;
}
.kaso_head {
	display: flex;
	justify-content: space-between;
}
.kaso_head dt {}
.kaso_head dt a {
	font-size: 34px;
	font-weight: 900;
	display: flex;
	align-items: center;
	pointer-events: none;
}
.kaso_head dt a img {
	width: 50px;
	margin: 0 10px 0 0;
}
.kaso_head dt a span {
	letter-spacing: -10px;
}
.kaso_head dd {
	display: flex;
	position: relative;
	margin: -10px 0 0;
}
/*.kaso_head dd:after {content: "※こちらは初回受付専用ダイヤルです。既存のお客様は担当者携帯へ直接ご連絡ください。";position: absolute;right: 0;bottom: -2px;font-size: 11px;color: #999;}*/
.kaso_head dd.after_off:after {
	content: none;
}
.kaso_head dd .tel {
	font-size: 32px;
	font-weight: 900;
	text-align: right;
	color: #999;
	position: relative;
	line-height: 1;
	margin-top: 16px;
	padding: 0 0 0 36px;
}
.kaso_head dd .tel:before {
	content: "土日祝を除く10:00~15:00\A";
	white-space: pre;
	font-size: 16px;
	position: absolute;
	right: 5px;
	top: -16px;
}
.kaso_head dd .tel:after {
	content: "☎";
	font-size: 34px;
	position: absolute;
	left: 0;
	top: -3px;
}
.kaso_head dd .tel a {
	color: #999;
	pointer-events: none;
}
.kaso_head dd .app {
	background: #00ACD7;
	border-radius: 3px;
	margin-left: 5px;
	height: 50px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 10px 0 50px;
}
.kaso_head dd .app:before {
	content: "";
	width: 30px;
	height: 20px;
	background: #fff;
	position: absolute;
	left: 10px;
	top: 17px;
	border-radius: 1px;
}
.kaso_head dd .app:after {
	content: "";
	position: absolute;
	left: 13px;
	top: 5px;
	transform: rotate(45deg) skew(-5deg, -5deg);
	height: 18px;
	width: 18px;
	border: solid 3px #00ACD7;
}
.kaso_head_nav {
	border-top: solid 130px #fff;
	background: #090;
	height: 46px;
}
.kaso_head_nav .sp_menu {
	display: none;
}
.kaso_head_nav .sp_menu_bg {
	display: none;
}
.kaso_head_nav dl {
	padding: 0px calc(50% - 600px);
	display: flex;
	font-size: 16px;
	font-weight: 500;
}
.kaso_head_nav dl dt {
	flex: auto;
}
.kaso_head_nav dl dt a {
	color: #fff;
	display: block;
	text-align: center;
	padding: 10px 0 11px;
}
.kaso_head_nav dl dd {
	display: none;
}
.kaso_head_nav dl dd a {
	color: #fff;
}
.kaso_head_nav.fixed dl {
	position: fixed;
	top: 0;
	background: rgba(0, 204, 255, 0.8);
	animation-name: navi;
	animation-duration: 1s;
	animation-timing-function: ease;
	left: 0;
	margin: 0;
	min-width: 1200px;
	padding: 0px calc(50% - 600px);
	z-index: 2000;
}
@keyframes navi {
	0% {
		top: -100px;
	}
	100% {
		top: 0;
	}
}
.kaso_ttl {
	min-height: 180px;
	background-position: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	color: #fff;
	font-size: 18px;
	position: relative;
	padding: 30px 0;
}
.kaso_ttl:before {
	content: "";
	background: rgba(0, 204, 255, 0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.kaso_ttl > strong {
	font-size: 40px;
	font-weight: 700;
	position: relative;
}
.kaso_ttl > small {
	position: relative;
	letter-spacing: .3rem;
}
.kaso_ttl .notice {
	position: relative;
	background: rgba(255, 255, 255, .7);
	color: #f00;
	width: 1000px;
	box-sizing: border-box;
	margin: 20px auto 0;
	padding: 10px;
	font-size: 14px;
	z-index: 1000;
	text-align: center;
}
.kaso_ttl .notice strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
}
.kaso_ttl .notice ul {
	display: flex;
	justify-content: center;
}
.kaso_ttl .notice ul li {}
.kaso_ttl .notice ul li a {
	color: #f00;
	display: block;
	border: solid 2px #f00;
	font-size: 12px;
	padding: 2px 50px;
	margin: 10px 5px 0;
}
.kaso_ttl .notice ul li a:hover {
	opacity: 1;
	background: #f00;
	color: #fff;
}
.kaso_cnt {
	padding: 100px calc(50% - 600px);
}
#faq {
	padding: 50px calc(50% - 500px);
	font-size: 19px;
}
#faq h3 {
	color: #00ACD7;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#faq dl {}
#faq dl dt {
	color: #090;
	font-size: 24px;
	position: relative;
	padding: 0 0 0 50px;
	margin: 0 0 10px;
}
#faq dl dt:before {
	content: "Q.";
	font-weight: 900;
	font-size: 40px;
	position: absolute;
	top: -18px;
	left: 0;
}
#faq dl dd {
	position: relative;
	margin: 0 0 40px 50px;
	padding: 5px 0 0 50px;
	font-size: 14px;
}
#faq dl dd:before {
	content: "A.";
	color: #7FE5FF;
	font-weight: 900;
	font-size: 40px;
	position: absolute;
	top: -18px;
	left: 0;
}
#faq dl dd a {
	color: #00ACD7;
	/* text-decoration: underline; */
}
/*コロナ関連*/
div[id$="_corona"] {
	padding: 40px calc(50% - 520px) 70px;
	font-size: 14px;
}
div[id$="_corona"] .corona_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
div[id$="_corona"] .corona_inner hr {
	margin: 1rem 0;
	border: solid 1px #ddd;
}
div[id$="_corona"] .corona_inner .corona_inner_txt {
	width: 100%;
	margin: 0 0 50px;
}
div[id$="_corona"] .corona_inner .corona_inner_cnt {
	width: 600px;
	height: 560px;
	overflow-y: auto;
	padding: 0 10px 0 0;
}
div[id$="_corona"] .corona_inner .corona_inner_doc {
	width: 400px;
}
div[id$="_corona"] > a {
	color: #00ACD7;
}
div[id$="_corona"] h3 {
	color: #f00;
	font-size: 40px;
	font-weight: 900;
	/* margin: 0 0 30px; */
	text-align: center;
}
div[id$="_corona"] strong {
	display: block;
	font-weight: 700;
}
div[id$="_corona"] b {
	color: #f00;
}
div[id$="_corona"] > ol {
	width: 800px;
	margin: 30px auto 60px;
	display: flex;
	justify-content: space-between;
}
div[id$="_corona"] > ol li {
	width: 260px;
}
div[id$="_corona"] > ol li a {
	display: block;
	text-align: center;
	color: #f00;
	border: solid 2px #f00;
	line-height: 38px;
}
div[id$="_corona"] > ol li a:hover {
	opacity: 1;
	background: #f00;
	color: #fff;
}
div[id$="_corona"] > ol li a.active {
	opacity: 1;
	background: #f00;
	color: #fff;
	pointer-events: none;
}
div[id$="_corona"] .corona_inner ul {
	margin: 1rem 1rem 2rem 0.5rem;
	list-style: disc;
	font-weight: 500;
	color: #999;
}
div[id$="_corona"] .corona_inner ul > strong {
	display: block;
	font-weight: 900;
	font-size: 20px;
	color: #333;
}
div[id$="_corona"] .corona_inner ul li {
	margin: 0 0 0 2rem;
	font-weight: normal;
	color: #666;
}
div[id$="_corona"] .corona_inner ul li s {
	color: #ccc;
}
div[id$="_corona"] .corona_inner ol {
	margin: 1rem 1rem 2rem 0.5rem;
	list-style: decimal;
	font-weight: 500;
	color: #999;
}
div[id$="_corona"] .corona_inner ol li {
	margin: 0 0 0 2rem;
	font-weight: normal;
	color: #666;
}
div[id$="_corona"] .corona_inner ol li s {
	color: #ccc;
}
div[id$="_corona"] .corona_inner dl {
	margin: 1.5rem 0 0;
	display: flex;
	flex-wrap: wrap;
}
div[id$="_corona"] .corona_inner dl dt {
	width: 100%;
	font-weight: 900;
	color: #00ACD7;
}
div[id$="_corona"] .corona_inner dl dd {
	width: calc((100%/4) - 5px);
	box-sizing: border-box;
	border: solid 2px #090;
	position: relative;
	padding: 5px;
	margin: 5px 15px 0 0;
}
div[id$="_corona"] .corona_inner dl dd:before {
	content: "+";
	position: absolute;
	right: -3px;
	font-size: 20px;
	font-weight: 900;
	color: #00ACD7;
	top: -18px;
	bottom: 0;
	margin: auto;
	align-items: center;
	width: 0;
	height: 0;
	line-height: 1;
}
div[id$="_corona"] .corona_inner dl dd:nth-last-of-type(2):before {
	content: "=";
}
div[id$="_corona"] .corona_inner dl dd:last-of-type {
	width: 100px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
div[id$="_corona"] .corona_inner dl dd:last-of-type:before {
	content: "";
}
div[id$="_corona"] .corona_inner dl dd b {
	font-weight: 700;
}
div[id$="_corona"] iframe {
	display: block;
	height: 560px;
	width: 100%;
}
div[id$="_corona"] .corona_ginko_doc {
	display: block;
	height: 670px;
	width: 100%;
}
div[id$="_corona"] .corona_ginko_doc iframe {
	display: block;
	width: 100%;
	height: 100%;
}
/*税込表記*/
.tax-in {
	display: block;
	font-size: 21px;
}
.tax-in:before {
	content: "（税込";
}
.tax-in:after {
	content: "）";
}
@media (max-width: 768px) {
	.kaso_img {
		height: 150px;
	}
	.kaso_img:before {}
	.kaso_img:after {
		font-size: 42px;
		line-height: 32px;
	}
	.kaso_img strong {
		font-size: 20px;
		font-weight: 900;
	}
	.pankuzu {
		padding: 10px;
		line-height: 1;
	}
	.pankuzu a {}
	.pankuzu a:hover {}
	.header_inner {}
	.headline {}
	.headline dt {
		padding: 0 60px 10px 0;
	}
	.headline dd {
		display: none;
	}
	.headline dd ul {}
	.headline dd ul li {}
	.headline dd ul li a {}
	.kaso_head {
		flex-direction: column;
	}
	.kaso_head dt {
		margin-bottom: 10px;
	}
	.kaso_head dt a {
		font-size: 19px;
	}
	.kaso_head dt a img {
		width: 25px;
		margin: 0 5px 0 0;
	}
	.kaso_head dt a span {
		letter-spacing: -5px;
	}
	.kaso_head dd {
		justify-content: center;
		margin: 0 0 40px;
	}
	.kaso_head dd:after {
		right: 0;
		bottom: inherit;
		top: 40px;
		font-size: 10px;
	}
	.kaso_head dd .tel {
		font-size: 22px;
		padding: 0 0 0 27px;
		margin-top: 15px;
	}
	.kaso_head dd .tel:before {
		font-size: 12px;
		top: -14px;
	}
	.kaso_head dd .tel:after {
		font-size: 24px;
	}
	.kaso_head dd .tel a {
		pointer-events: all;
	}
	.kaso_head dd .app {
		font-size: 16px;
		height: 40px;
	}
	.kaso_head dd .app:before {
		top: 11px;
	}
	.kaso_head dd .app:after {
		top: 1px;
		left: 14px;
		border-top: none;
		border-left: none;
	}
	.kaso_head_nav {
		background: transparent;
		border: none;
		height: 190px;
	}
	.kaso_head_nav .sp_menu {
		display: block;
		position: fixed;
		top: 0px;
		right: 0px;
		color: #fff;
		width: 50px;
		height: 50px;
		z-index: 20000;
		background: #090;
		cursor: pointer;
		transition: 0.5s ease-in-out;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		border-radius: 0 0 0 5px;
		box-sizing: border-box;
		text-align: center;
		padding-top: 27px;
		font-family: "Noto Sans Japanese";
		font-size: 12px;
	}
	.kaso_head_nav .sp_menu:before {
		content: "";
		position: absolute;
		top: 23px;
		left: 0;
		right: 0;
		margin: auto;
		background: #fff;
		height: 3px;
		width: 32px;
		box-shadow: inset 0px 0px 0px 0px #fff, 0px -8px #fff, 0 -16px #fff;
	}
	.kaso_head_nav.open .sp_menu {
		right: 80%;
	}
	.kaso_head_nav .sp_menu_bg {
		z-index: 15000;
		display: none;
		top: 0;
		left: 0;
		position: fixed;
	}
	.kaso_head_nav.open .sp_menu_bg {
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.2);
	}
	.kaso_head_nav.fixed dl {
		background: #090;
		animation: none;
		left: inherit;
		min-width: auto;
		margin: inherit;
		padding: 10px 20px;
	}
	.kaso_head_nav.open dl {
		right: 0px;
	}
	.kaso_head_nav dl {
		position: fixed !important;
		z-index: 20000 !important;
		display: block;
		font-size: 14px;
		background-color: #090;
		width: 80%;
		right: -80%;
		padding: 10px 20px;
		transition: 0.5s ease-in-out;
		box-sizing: border-box;
		height: 100%;
		top: 0px;
		overflow: scroll;
	}
	.kaso_head_nav dl dt {}
	.kaso_head_nav dl dt:last-of-type {
		margin: 0 0 5px;
		padding: 0 0 5px;
		border-bottom: solid 1px #fff;
	}
	.kaso_head_nav dl dt a {
		text-align: left;
		padding: 3px 0;
	}
	.kaso_head_nav dl dt a:before {
		content: "・";
	}
	.kaso_head_nav dl dd {
		display: block;
	}
	.kaso_head_nav dl dd a {}
	.kaso_head_nav dl dd a:before {
		content: "- ";
	}
	.kaso_ttl {
		padding: 20px 0;
	}
	.kaso_ttl:before {}
	.kaso_ttl > strong {
		font-size: 30px;
		font-weight: 900;
	}
	.kaso_ttl > small {}
	.kaso_ttl .notice {
		width: 96%;
		margin: 10px auto;
	}
	.kaso_ttl .notice strong {
		font-size: 15px;
	}
	.kaso_ttl .notice ul {
		flex-direction: column;
	}
	.kaso_ttl .notice ul li {}
	.kaso_ttl .notice ul li a {}
	.kaso_ttl .notice ul li a:hover {}
	.kaso_cnt {
		padding: 40px 20px !important;
	}
	#faq {}
	#faq h3 {
		font-size: 24px;
	}
	#faq dl {}
	#faq dl dt {
		font-size: 14px;
		padding: 0 0 0 24px;
	}
	#faq dl dt:before {
		font-size: 18px;
		top: -5px;
	}
	#faq dl dd {
		margin: 0 0 30px 10px;
		padding: 0 0 0 24px;
	}
	#faq dl dd:before {
		font-size: 18px;
		top: -3px;
	}
	#faq dl dd a {}
	/*コロナ関連*/
	div[id$="_corona"] {}
	div[id$="_corona"] .corona_inner {
		flex-direction: column;
	}
	div[id$="_corona"] .corona_inner .corona_inner_cnt {
		width: 100%;
	}
	div[id$="_corona"] .corona_inner .corona_inner_doc {
		width: 100%;
	}
	div[id$="_corona"] > a {}
	div[id$="_corona"] h3 {
		font-size: 28px;
		line-height: 1.2;
		margin: 0 0 20px;
	}
	div[id$="_corona"] strong {}
	div[id$="_corona"] b {}
	div[id$="_corona"] > ol {
		flex-direction: column;
		width: 100%;
		margin: 10px auto 30px;
	}
	div[id$="_corona"] > ol li {
		width: auto;
	}
	div[id$="_corona"] > ol li a {
		line-height: inherit;
		font-size: 12px;
		padding: 2px 50px;
		margin: 10px 5px 0;
	}
	div[id$="_corona"] > ol li a:hover {}
	div[id$="_corona"] > ol li a.active {}
	div[id$="_corona"] .corona_inner ul {
		margin: 1rem 1rem 1rem 0;
	}
	div[id$="_corona"] .corona_inner ul li {
		margin: 0 0 0 2rem;
	}
	div[id$="_corona"] .corona_inner ol {
		margin: 1rem 1rem 1rem 0;
	}
	div[id$="_corona"] .corona_inner ol li {
		margin: 0 0 0 2rem;
	}
	div[id$="_corona"] .corona_inner dl {
		flex-direction: column;
	}
	div[id$="_corona"] .corona_inner dl dt {}
	div[id$="_corona"] .corona_inner dl dd {
		width: 100% !important;
		margin: 0 0 20px;
	}
	div[id$="_corona"] .corona_inner dl dd:before {
		left: 0;
		right: -19px;
		top: inherit;
		bottom: -5px;
		transform: rotate(90deg);
	}
	div[id$="_corona"] .corona_inner dl dd:nth-last-of-type(2):before {}
	div[id$="_corona"] .corona_inner dl dd:last-of-type {
		margin: 0;
	}
	div[id$="_corona"] .corona_inner dl dd:last-of-type:before {}
	div[id$="_corona"] .corona_inner dl dd b {}
	div[id$="_corona"] iframe {
		height: 500px;
		margin: 50px 0;
	}
	div[id$="_corona"] .corona_ginko_doc {
		height: 360px;
	}
	div[id$="_corona"] .corona_ginko_doc iframe {
		margin: 0;
	}
	/*税込表記*/
	.tax-in {
		font-size: 14px;
	}
	.tax-in:before {}
	.tax-in:after {}
}
/*/////////////////////////////////////////
keieikakushin
/////////////////////////////////////////*/
#keieikakushin01 {
	padding: 30px calc(50% - 600px) 40px;
	text-align: center;
	color: #00ACD7;
	font-size: 28px;
	font-weight: 900;
}
#keieikakushin01 strong {
	display: block;
	font-size: 40px;
	margin: 0 0 30px;
}
#keieikakushin01 .notice {
	  font-size: 12px;
    color: #f00;
    font-weight: normal;
    text-align: left;
    width: 70%;
    margin: 20px auto 0;
}
#keieikakushin02 {
	padding: 50px calc(50% - 510px) 30px;
	background: #7FE5FF;
	font-size: 22px;
}
#keieikakushin02 h3 {
	color: #fff;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#keieikakushin02 ul {
	counter-reset: num;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px 0 0;
	font-size: 14px;
}
#keieikakushin02 ul li {
	position: relative;
	width: 480px;
	box-sizing: border-box;
	background: #fff;
	padding: 60px 25px 30px;
	margin: 0 0 40px;
}
#keieikakushin02 ul li:before {
	position: absolute;
	top: 10px;
	left: -30px;
	background: #00ACD7;
	width: 240px;
	line-height: 40px;
	color: #fff;
	counter-increment: num;
	content: "支援措置 "counter(num)"（全国共通）";
	font-weight: 500;
	font-size: 17px;
	box-sizing: border-box;
	padding: 0 0 0 27px;
}
#keieikakushin02 ul li:last-of-type:before {
	content: "支援措置 "counter(num)"（独自）";
}
#keieikakushin02 ul li:after {
	position: absolute;
	top: 50px;
	left: -30px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 20px 0;
	border-color: transparent #00c9fb transparent transparent;
}
#keieikakushin02 ul li strong {
	display: block;
	color: #00ACD7;
	font-size: 26px;
	font-weight: 900;
}
#keieikakushin03 {
	padding: 70px calc(50% - 520px);
	font-size: 21px;
}
#keieikakushin03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 50px;
}
#keieikakushin03 ul {
	font-weight: 900;
	margin: 2rem;
}
#keieikakushin03 ul li {
	position: relative;
	padding: 0 0 0 1.5rem;
}
#keieikakushin03 ul li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#keieikakushin03 table {
	font-size: 18px;
	border: solid 3px #999;
	border-right: none;
	border-bottom: none;
	background: #fff;
	width: 100%;
	table-layout: fixed;
	margin: 20px auto;
}
#keieikakushin03 table small {
	font-size: 12px;
}
#keieikakushin03 table tr {}
#keieikakushin03 table tr th {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	background: #00ACD7;
	color: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	vertical-align: middle;
}
#keieikakushin03 table tr td {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	text-align: center;
}
#keieikakushin03 table tr td:first-child {
	background: #f5f5f5;
}
#keieikakushin03 ol {
	margin: 0 0 20px;
	font-size: 18px;
}
#keieikakushin03 ol li {
	position: relative;
	padding: 0 0 0 1.5rem;
}
#keieikakushin03 ol li:before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
#keieikakushin04 {
	padding: 50px calc(50% - 520px);
	font-size: 16px;
	counter-reset: num;
}
#keieikakushin04 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#keieikakushin04 > ul {
	counter-reset: num;
	margin: 30px 0 0;
}
#keieikakushin04 > ul > li {
	background: #A9E8F8;
	margin: 0 0 30px 30px;
	position: relative;
	padding: 22px 46px 40px;
}
#keieikakushin04 > ul > li:before {
	position: absolute;
	top: 18px;
	left: -30px;
	background: #00ACD7;
	width: 240px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	counter-increment: num;
	content: "支援措置 "counter(num)"（全国共通）";
	font-weight: 500;
	font-size: 17px;
	box-sizing: border-box;
	padding: 0 0 0 27px;
}
#keieikakushin04 > ul > li:last-of-type:before {
	content: "支援措置 "counter(num)"（独自）";
}
#keieikakushin04 > ul > li:after {
	position: absolute;
	top: 58px;
	left: -30px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 20px 0;
	border-color: transparent #00c9fb transparent transparent;
}
#keieikakushin04 > ul > li strong {
	display: block;
	font-size: 21px;
	font-weight: 700;
	color: #333;
	margin: 0 0 30px 180px;
}
#keieikakushin04 > ul > li > b {
	color: #f00;
}
#keieikakushin04 > ul > li p {
	font-weight: 700;
	margin: 1rem 0;
}
#keieikakushin04 > ul > li p small {
	display: block;
	font-size: 90%;
	font-weight: normal;
}
#keieikakushin04 > ul > li .example {
	font-size: 14px;
	border: solid 3px #999;
	border-right: none;
	border-bottom: none;
	background: #fff;
	width: 100%;
	table-layout: fixed;
	margin: 20px 0 20px;
}
#keieikakushin04 > ul > li .example caption {
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: #00ACD7;
}
#keieikakushin04 > ul > li .example tr {}
#keieikakushin04 > ul > li .example tr th {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	background: #f5f5f5;
}
#keieikakushin04 > ul > li .example tr th b {
	display: block;
	font-size: 16px;
	font-weight: 700;
}
#keieikakushin04 > ul > li .example tr td {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
}
#keieikakushin04 > ul > li .example tr td dl {}
#keieikakushin04 > ul > li .example tr td dl small {
	font-size: 12px;
}
#keieikakushin04 > ul > li .example tr td dl dt {
	font-weight: 700;
}
#keieikakushin04 > ul > li .example tr td dl dd {
	margin: 0 0 0 10px;
}
#keieikakushin04 > ul > li .tokurei {
	font-size: 14px;
	border: solid 3px #999;
	border-right: none;
	border-bottom: none;
	background: #fff;
	width: 100%;
	table-layout: fixed;
	margin: 0 0 20px;
}
#keieikakushin04 > ul > li .tokurei small {
	font-size: 12px;
}
#keieikakushin04 > ul > li .tokurei tr {}
#keieikakushin04 > ul > li .tokurei tr th {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	background: #00ACD7;
	color: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 17px;
}
#keieikakushin04 > ul > li .tokurei tr td {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	text-align: center;
}
#keieikakushin04 > ul > li .tokurei tr td:first-child {
	background: #f5f5f5;
}
#keieikakushin04 > ul > li dl {
	margin: 1rem 1rem 2rem;
}
#keieikakushin04 > ul > li dl dt {}
#keieikakushin04 > ul > li dl dt b {
	font-weight: 700;
	display: block;
}
#keieikakushin04 > ul > li dl dd {
	margin: .5rem 1rem;
}
#keieikakushin04 > ul > li dl dd ul {
	margin: 0 2rem 10px;
}
#keieikakushin04 > ul > li dl dd ul li {}
#keieikakushin04 > ul > li dl dd ul li:before {
	content: "◆";
}
#keieikakushin04 > ul > li dl table {
	font-size: 14px;
	border: solid 3px #999;
	border-right: none;
	border-bottom: none;
	background: #fff;
	width: 100%;
	/* table-layout: fixed; */
	margin: 20px 0 20px;
}
#keieikakushin04 > ul > li dl table tr {}
#keieikakushin04 > ul > li dl table tr th {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	background: #00ACD7;
	color: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 17px;
}
#keieikakushin04 > ul > li dl table tr td {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	/* text-align: center; */
	vertical-align: middle;
}
#keieikakushin04 > ul > li dl table tr td:first-child, #keieikakushin04 > ul > li dl table tr td:last-child {
	white-space: nowrap;
	text-align: center;
}
#keieikakushin04 > ul > li dl table tr td small {
	font-size: 12px;
}
#keieikakushin04 > ul > li dl table tr td ol {
	counter-reset: num2;
}
#keieikakushin04 > ul > li dl table tr td ol li {
	position: relative;
	padding: 0 0 0 41px;
}
#keieikakushin04 > ul > li dl table tr td ol li:before {
	counter-increment: num2;
	content: "（ "counter(num2)" ）";
	position: absolute;
	left: 0;
}
#keieikakushin04 > ul > li dl > li {
	position: relative;
	padding: 0 0 0 20px;
}
#keieikakushin04 > ul > li dl > li:before {
	content: "※";
	position: absolute;
	left: 0;
}
#keieikakushin05 {
	padding: 30px calc(50% - 520px);
	font-size: 16px;
	counter-reset: num;
}
#keieikakushin05 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#keieikakushin05 dl {
	margin: 20px 0 40px;
}
#keieikakushin05 dl dt {
	float: left;
	color: #00ACD7;
}
#keieikakushin05 dl dd {
	padding: 0 0 20px 135px;
}
#keieikakushin05 dl dd small {
	position: relative;
	display: block;
	padding: 5px 0 0 18px;
	font-size: 14px;
}
#keieikakushin05 dl dd small:before {
	content: "※";
	position: absolute;
	left: 0;
}
#keieikakushin05 ul {
	display: flex;
	padding: 30px 0 40px;
}
#keieikakushin05 ul li {
	flex: auto;
	text-align: center;
	background: #B6ECFA;
	color: #00ACD7;
	padding: 2px 0 4px;
	position: relative;
}
#keieikakushin05 ul li span {
	position: absolute;
	font-size: 12px;
	line-height: 21px;
	bottom: -26px;
	border: solid 5px;
	border-top: none;
	box-sizing: border-box;
	white-space: nowrap;
}
#keieikakushin05 ul li span.flow01 {
	right: 73px;
	width: 174px;
}
#keieikakushin05 ul li span.flow02 {
	right: 69px;
	width: 150px;
}
#keieikakushin06 {
	padding: 50px calc(50% - 500px);
	font-size: 19px;
	background: #00ACD7;
	color: #fff;
}
#keieikakushin06 h3 {
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#keieikakushin06 table {
	border: solid 3px #ddd;
	border-right: none;
	border-bottom: none;
	color: #666;
	background: #fff;
	width: 100%;
	text-align: center;
	/* font-weight: 900; */
	font-size: 20px;
	margin: 30px 0 0;
	line-height: 1.4;
}
#keieikakushin06 table tr {}
#keieikakushin06 table th {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 10px 10px;
	background: #ccc;
	vertical-align: middle;
	font-weight: 700;
	line-height: 1.2;
}
#keieikakushin06 table th small {
	font-weight: normal;
}
#keieikakushin06 table td {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 10px 10px;
	vertical-align: middle;
	font-size: 34px;
	font-weight: 700;
}
#keieikakushin06 table td:first-of-type {
	background: #f1f1f1;
	font-weight: 700;
	font-size: 20px;
}
#keieikakushin06 table td b {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #f00;
}
#keieikakushin06 table td ul {
	text-align: left;
	display: table;
	margin: auto;
	font-size: 14px;
	font-weight: normal;
}
#keieikakushin06 table td ul li {
	position: relative;
	display: block;
	padding: 5px 0 0 18px;
}
#keieikakushin06 table td ul li:before {
	content: "※";
	position: absolute;
	left: 0;
}
#keieikakushin06 > ul {}
#keieikakushin06 > ul li {
	position: relative;
	padding: 0 0 0 1.5rem;
	font-size: 90%;
}
#keieikakushin06 > ul li:before {
	content: "※";
	position: absolute;
	left: 0;
}
@media (max-width: 768px) {
	#keieikakushin01 {
		font-size: 20px;
		line-height: 1.2;
	}
	#keieikakushin01 strong {
		font-size: 28px;
	}
	#keieikakushin01 .notice {
    width: 100%;
}
	#keieikakushin02 {
		font-size: 14px;
	}
	#keieikakushin02 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#keieikakushin02 ul {
		flex-direction: column;
		margin: 30px 0 0;
	}
	#keieikakushin02 ul li {
		width: auto;
		padding: 50px 25px 30px;
		margin: 0 0 20px;
	}
	#keieikakushin02 ul li:before {
		font-size: 14px;
		width: 190px;
		line-height: 30px;
		left: -10px;
	}
	#keieikakushin02 ul li:last-of-type:before {}
	#keieikakushin02 ul li:after {
		top: 40px;
		left: -10px;
		border-width: 0 10px 10px 0;
	}
	#keieikakushin02 ul li strong {
		font-size: 16px;
		line-height: 1.2;
		height: auto;
		margin: 0 0 10px;
	}
	#keieikakushin03 {
		font-size: 14px;
	}
	#keieikakushin03 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#keieikakushin03 ul {
		margin: 1rem;
	}
	#keieikakushin03 ul li {}
	#keieikakushin03 ul li:before {}
	#keieikakushin03 table {
		font-size: 12px;
		table-layout: auto;
	}
	#keieikakushin03 table small {}
	#keieikakushin03 table tr {}
	#keieikakushin03 table tr th {
		font-size: 12px;
	}
	#keieikakushin03 table tr td {}
	#keieikakushin03 table tr th:first-child, #keieikakushin03 table tr td:first-child {
		white-space: nowrap;
	}
	#keieikakushin03 ol {
		font-size: 12px;
	}
	#keieikakushin03 ol li {
		padding: 0 0 0 1rem;
	}
	#keieikakushin03 ol li:before {}
	#keieikakushin04 {
		font-size: 14px;
	}
	#keieikakushin04 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#keieikakushin04 > ul {}
	#keieikakushin04 > ul > li {
		margin: 0 0 10px 0;
		padding: 50px 20px 20px;
	}
	#keieikakushin04 > ul > li:before {
		font-size: 14px;
		width: 190px;
		line-height: 30px;
		left: -10px;
		top: 10px;
		text-align: left;
	}
	#keieikakushin04 > ul > li:last-of-type:before {}
	#keieikakushin04 > ul > li:after {
		top: 40px;
		left: -10px;
		border-width: 0 10px 10px 0;
	}
	#keieikakushin04 > ul > li strong {
		margin: 0 0 10px 0;
		font-size: 16px;
	}
	#keieikakushin04 > ul > li > b {}
	#keieikakushin04 > ul > li p {}
	#keieikakushin04 > ul > li p small {}
	#keieikakushin04 > ul > li .example {
		font-size: 12px;
	}
	#keieikakushin04 > ul > li .example caption {}
	#keieikakushin04 > ul > li .example tr {
		display: flex;
		flex-direction: column;
	}
	#keieikakushin04 > ul > li .example tr th {
		padding: 5px 10px;
	}
	#keieikakushin04 > ul > li .example tr th b {}
	#keieikakushin04 > ul > li .example tr td {
		padding: 5px 10px;
	}
	#keieikakushin04 > ul > li .example tr td dl {
		margin: 0;
	}
	#keieikakushin04 > ul > li .example tr td dl small {}
	#keieikakushin04 > ul > li .example tr td dl dt {}
	#keieikakushin04 > ul > li .example tr td dl dd {}
	#keieikakushin04 > ul > li .tokurei {}
	#keieikakushin04 > ul > li .tokurei small {}
	#keieikakushin04 > ul > li .tokurei tr {}
	#keieikakushin04 > ul > li .tokurei tr th {
		font-size: 14px;
		padding: 5px;
	}
	#keieikakushin04 > ul > li .tokurei tr td {
		font-size: 12px;
		vertical-align: middle;
		padding: 5px;
	}
	#keieikakushin04 > ul > li .tokurei tr td:first-child {}
	#keieikakushin04 > ul > li dl {
		margin: .5rem .5rem 1rem;
	}
	#keieikakushin04 > ul > li dl dt {}
	#keieikakushin04 > ul > li dl dt b {}
	#keieikakushin04 > ul > li dl dd {}
	#keieikakushin04 > ul > li dl dd ul {}
	#keieikakushin04 > ul > li dl dd ul li {}
	#keieikakushin04 > ul > li dl dd ul li:before {}
	#keieikakushin04 > ul > li dl table {
		font-size: 12px;
		border-bottom: solid 3px #999;
		border-top: none;
	}
	#keieikakushin04 > ul > li dl table tr {
		display: flex;
		flex-direction: column;
	}
	#keieikakushin04 > ul > li dl table tr th {
		display: none;
	}
	#keieikakushin04 > ul > li dl table tr td {
		text-align: left;
		padding: 5px 10px 5px 20px;
		border-bottom: none;
	}
	#keieikakushin04 > ul > li dl table td:before {
		content: "";
		white-space: pre;
		font-weight: 700;
		margin: 0 0 0 -10px;
	}
	#keieikakushin04 > ul > li dl table td:nth-of-type(1):before {
		content: "";
	}
	#keieikakushin04 > ul > li dl table td:nth-of-type(2):before {
		content: "資金の特徴\A";
	}
	#keieikakushin04 > ul > li dl table td:nth-of-type(3):before {
		content: "融資対象\A";
	}
	#keieikakushin04 > ul > li dl table td:nth-of-type(4):before {
		content: "限度額\A";
	}
	#keieikakushin04 > ul > li dl table tr td:first-child {
		border-top: solid 3px #999;
		font-size: 14px;
		padding: 10px 10px 10px 20px;
		background: #f1f1f1;
		font-weight: 700;
	}
	#keieikakushin04 > ul > li dl table tr td:last-child {
		text-align: left;
	}
	#keieikakushin04 > ul > li dl table tr td small {}
	#keieikakushin04 > ul > li dl table tr td ol {
		margin: 5px 0 0;
	}
	#keieikakushin04 > ul > li dl table tr td ol li {
		padding: 0 0 0 34px;
	}
	#keieikakushin04 > ul > li dl table tr td ol li:before {}
	#keieikakushin04 > ul > li dl > li {
		font-size: 12px;
		padding: 0 0 0 14px;
	}
	#keieikakushin04 > ul > li dl > li:before {}
	#keieikakushin05 {
		font-size: 14px;
	}
	#keieikakushin05 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#keieikakushin05 dl {
		margin: 0;
	}
	#keieikakushin05 dl dt {
		float: inherit;
	}
	#keieikakushin05 dl dd {
		padding: 0 0 10px 10px;
		font-size: 12px;
	}
	#keieikakushin05 dl dd small {}
	#keieikakushin05 dl dd small:before {}
	#keieikakushin05 ul {
		flex-direction: column;
		padding: 20px 0;
	}
	#keieikakushin05 ul li {
		width: 160px;
		text-align: right;
		padding: 2px 20px 4px;
		box-sizing: border-box;
	}
	#keieikakushin05 ul li span {
		line-height: 21px;
		left: 160px;
		right: inherit !important;
		bottom: inherit;
		border: solid 5px;
		border-left: none;
		width: auto !important;
		text-align: left;
		padding: 0 20px 0;
		display: flex;
		align-items: center;
	}
	#keieikakushin05 ul li span.flow01 {
		bottom: 14px;
	}
	#keieikakushin05 ul li span.flow02 {
		bottom: 10px;
		height: 30px;
	}
	#keieikakushin06 {
		font-size: 14px;
	}
	#keieikakushin06 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#keieikakushin06 table {
		font-size: 14px;
	}
	#keieikakushin06 table tr {}
	#keieikakushin06 table th {}
	#keieikakushin06 table th small {}
	#keieikakushin06 table td {
		font-size: 16px;
		padding: 10px 15px;
	}
	#keieikakushin06 table td:first-of-type {
		font-size: 14px;
		white-space: nowrap;
	}
	#keieikakushin06 table td b {}
	#keieikakushin06 table td ul {
		font-size: 12px;
	}
	#keieikakushin06 table td ul li {}
	#keieikakushin06 table td ul li:before {}
	#keieikakushin06 > ul {
		font-size: 12px;
	}
	#keieikakushin06 > ul li {
		padding: 0 0 0 1rem;
	}
	#keieikakushin06 > ul li:before {}
}
/*/////////////////////////////////////////
jigyoukeizoku
/////////////////////////////////////////*/
#jigyoukeizoku01 {
	padding: 30px calc(50% - 600px) 40px;
	text-align: center;
	color: #00ACD7;
	font-size: 28px;
	font-weight: 900;
}
#jigyoukeizoku01 strong {
	display: block;
	font-size: 40px;
	margin: 0 0 30px;
}
#jigyoukeizoku02 {
	padding: 50px calc(50% - 510px) 30px;
	background: #7FE5FF;
	font-size: 19px;
}
#jigyoukeizoku02 h3 {
	color: #fff;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#jigyoukeizoku02 ul {
	counter-reset: num;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px 0 0;
	font-size: 14px;
}
#jigyoukeizoku02 ul li {
	position: relative;
	width: 480px;
	box-sizing: border-box;
	background: #fff;
	padding: 60px 25px 30px;
	margin: 0 0 40px;
}
#jigyoukeizoku02 ul li:before {
	position: absolute;
	top: 10px;
	left: -30px;
	background: #00ACD7;
	width: 140px;
	line-height: 40px;
	color: #fff;
	counter-increment: num;
	content: "メリット "counter(num);
	font-weight: 500;
	font-size: 17px;
	box-sizing: border-box;
	padding: 0 0 0 27px;
}
#jigyoukeizoku02 ul li:after {
	position: absolute;
	top: 50px;
	left: -30px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 20px 0;
	border-color: transparent #00c9fb transparent transparent;
}
#jigyoukeizoku02 ul li strong {
	display: block;
	color: #00ACD7;
	font-size: 25px;
	font-weight: 900;
}
#jigyoukeizoku02 ul li strong span {
	color: #f00;
	font-weight: 500;
	font-size: 18px;
	margin: 0 0 0 1rem;
}
#jigyoukeizoku02 ul li a {
	color: #00ACD7;
}
#jigyoukeizoku03 {
	padding: 70px calc(50% - 520px);
	font-size: 20px;
}
#jigyoukeizoku03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 50px;
}
#jigyoukeizoku03 > strong {
	color: #333;
	font-size: 33px;
	font-weight: 900;
	margin: 0 0 30px;
	display: block;
}
#jigyoukeizoku03 > b {
	color: #f00;
}
#jigyoukeizoku03 ul {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	margin: 0 0 30px;
}
#jigyoukeizoku03 ul li {
	width: 485px;
	box-sizing: border-box;
	border: solid 7px #ccc;
	border-radius: 5px;
	padding: 15px 20px 20px;
}
#jigyoukeizoku03 ul li strong {
	display: block;
	font-size: 28px;
	font-weight: 900;
	margin: 0 0 10px;
	color: #00ACD7;
}
#jigyoukeizoku03 ol {
	line-height: .8;
	margin: 1rem 1rem 2rem;
	font-weight: 900;
}
#jigyoukeizoku03 ol li {}
#jigyoukeizoku03 ol li:before {
	content: "・";
}
#jigyoukeizoku04 {
	padding: 50px calc(50% - 520px);
	font-size: 20px;
}
#jigyoukeizoku04 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 50px;
}
#jigyoukeizoku04 ul {
	counter-reset: num;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px 0 0;
	font-size: 18px;
}
#jigyoukeizoku04 ul li {
	position: relative;
	width: 480px;
	box-sizing: border-box;
	padding: 10px 25px 30px;
	margin: 0 0 40px;
	background: #A9E8F8;
}
#jigyoukeizoku04 ul li:before {
	position: absolute;
	top: 10px;
	left: -30px;
	background: #00ACD7;
	width: 140px;
	line-height: 40px;
	color: #fff;
	counter-increment: num;
	content: "タイプ "counter(num);
	font-weight: 500;
	font-size: 17px;
	box-sizing: border-box;
	padding: 0 0 0 27px;
}
#jigyoukeizoku04 ul li:after {
	position: absolute;
	top: 50px;
	left: -30px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 20px 0;
	border-color: transparent #00c9fb transparent transparent;
}
#jigyoukeizoku04 ul li strong {
	display: block;
	font-weight: 700;
	font-size: 34px;
	margin: 0 0 10px -20px;
}
#jigyoukeizoku04 ul li b {
	display: block;
	color: #00ACD7;
	margin: 0 0 0 100px;
	font-size: 28px;
}
#jigyoukeizoku05 {
	padding: 50px calc(50% - 540px);
	font-size: 19px;
}
#jigyoukeizoku05 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 50px;
}
#jigyoukeizoku05 ul {
	border: dotted 3px #ccc;
	width: 770px;
	box-sizing: border-box;
	margin: 20px auto 30px;
	padding: 10px 40px;
	font-size: 26px;
	line-height: 1.4;
}
#jigyoukeizoku05 ul li {}
#jigyoukeizoku05 ol {
	font-weight: 700;
	font-size: 19px;
	margin: 1rem 0 1rem 1rem;
	line-height: 1.4;
}
#jigyoukeizoku05 ol li {
	position: relative;
	padding: 0 0 0 1.5rem;
}
#jigyoukeizoku05 ol li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#jigyoukeizoku05 ol li small {
	position: relative;
	margin-left: 1rem;
	font-weight: normal;
	font-size: 14px;
}
#jigyoukeizoku05 ol li small:before {
	content: "※";
}
#jigyoukeizoku06 {
	padding: 30px calc(50% - 520px);
	font-size: 16px;
	counter-reset: num;
}
#jigyoukeizoku06 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#jigyoukeizoku06 dl {
	margin: 20px 0 40px;
}
#jigyoukeizoku06 dl dt {
	float: left;
	color: #00ACD7;
}
#jigyoukeizoku06 dl dd {
	padding: 0 0 20px 135px;
}
#jigyoukeizoku06 ul {
	display: flex;
	padding: 30px 0 40px;
}
#jigyoukeizoku06 ul li {
	flex: auto;
	text-align: center;
	background: #B6ECFA;
	color: #00ACD7;
	padding: 2px 0 4px;
	position: relative;
}
#jigyoukeizoku06 ul li span {
	position: absolute;
	font-size: 12px;
	line-height: 21px;
	bottom: -26px;
	border: solid 5px;
	border-top: none;
	box-sizing: border-box;
	white-space: nowrap;
}
#jigyoukeizoku06 ul li span.flow01 {
	right: 56px;
	width: 267px;
}
#jigyoukeizoku07 {
	padding: 50px calc(50% - 520px);
	font-size: 16px;
	counter-reset: num;
}
#jigyoukeizoku07 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#jigyoukeizoku07 dl {
	background: #B6ECFA;
	margin: 25px 0 0;
	padding: 25px 70px 40px;
	font-size: 14px;
}
#jigyoukeizoku07 dl small {
	position: relative;
	padding: 0 0 0 1rem;
	display: inline-block;
}
#jigyoukeizoku07 dl small:before {
	content: "※";
	position: absolute;
	left: 0;
}
#jigyoukeizoku07 dl dt {
	margin: 0 -35px -20px;
	color: #333;
	font-size: 28px;
	font-weight: 700;
}
#jigyoukeizoku07 dl dt:before {
	counter-increment: num;
	content: "メリット "counter(num)" 詳細";
	color: #fff;
	background: #00ACD7;
	font-weight: 500;
	padding: 0 20px;
	margin: 0 20px 0 0;
}
#jigyoukeizoku07 dl dd {}
#jigyoukeizoku07 dl dd strong {
	display: block;
	font-weight: 700;
	margin: 40px 0 0 -20px;
	font-size: 16px;
}
#jigyoukeizoku07 dl ul {
	margin: 1rem;
}
#jigyoukeizoku07 dl ul li {
	position: relative;
	padding: 0 0 0 1rem;
}
#jigyoukeizoku07 dl ul li:before {
	content: "・";
	position: absolute;
	left: 0;
}
#jigyoukeizoku07 dl ul li b {
	display: block;
	font-weight: 700;
}
#jigyoukeizoku07 dl table {
	background: #fff;
	border: solid 3px #666;
	border-right: none;
	border-bottom: none;
	color: #333;
	width: 100%;
	margin: 20px auto;
	table-layout: fixed;
}
#jigyoukeizoku07 dl table caption {
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: #00ACD7;
}
#jigyoukeizoku07 dl table tr {}
#jigyoukeizoku07 dl table tr th {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 3px 5px;
	background: #00ACD7;
	color: #fff;
	vertical-align: middle;
	white-space: nowrap;
}
#jigyoukeizoku07 dl table tr td {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 3px 5px;
	text-align: center;
	vertical-align: middle;
}
#jigyoukeizoku07 dl table tr td:first-child {
	background: #f5f5f5;
}
#jigyoukeizoku07 dl table small {
	padding: 0;
	font-size: 12px;
}
#jigyoukeizoku07 dl table small:before {
	content: none;
}
#jigyoukeizoku07 dl table#setubi {
	table-layout: auto;
}
#jigyoukeizoku07 dl table#setubi tr td {
	text-align: left;
}
#jigyoukeizoku07 dl table#setubi tr td:first-child {
	text-align: center;
}
#jigyoukeizoku07 dl .notice {
	padding: .5rem;
	border: double 3px;
	background: #fff;
	/* display: table; */
}
#jigyoukeizoku09 {
	padding: 50px calc(50% - 500px);
	font-size: 19px;
	background: #00ACD7;
	color: #fff;
}
#jigyoukeizoku09 h3 {
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#jigyoukeizoku09 table {
	border: solid 3px #ddd;
	border-right: none;
	border-bottom: none;
	color: #666;
	background: #fff;
	width: 100%;
	text-align: center;
	font-weight: 900;
	font-size: 30px;
	margin: 30px 0 0;
}
#jigyoukeizoku09 table tr {}
#jigyoukeizoku09 table th {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	background: #ccc;
}
#jigyoukeizoku09 table td {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	vertical-align: middle;
}
#jigyoukeizoku09 table td:first-of-type {
	background: #f1f1f1;
}
#jigyoukeizoku09 table td b {
	font-size: 36px;
}
#jigyoukeizoku09 table td small {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #999;
}
#jigyoukeizoku09 small {
	font-size: 14px;
	display: block;
}
@media (max-width: 768px) {
	#jigyoukeizoku01 {
		font-size: 20px;
		line-height: 1.2;
	}
	#jigyoukeizoku01 strong {
		font-size: 28px;
	}
	#jigyoukeizoku02 {
		font-size: 14px;
	}
	#jigyoukeizoku02 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#jigyoukeizoku02 ul {
		flex-direction: column;
		margin: 30px 0 0;
	}
	#jigyoukeizoku02 ul li {
		width: auto;
		padding: 50px 25px 30px;
		margin: 0 0 20px;
	}
	#jigyoukeizoku02 ul li:before {
		font-size: 14px;
		width: 110px;
		line-height: 30px;
		left: -10px;
	}
	#jigyoukeizoku02 ul li:after {
		top: 40px;
		left: -10px;
		border-width: 0 10px 10px 0;
	}
	#jigyoukeizoku02 ul li strong {
		font-size: 16px;
		line-height: 1.2;
		height: auto;
		margin: 0 0 10px;
	}
	#jigyoukeizoku02 ul li strong span {
		font-size: 14px;
		margin: 0 0 0 .5rem;
	}
	#jigyoukeizoku02 ul li a {}
	#jigyoukeizoku03 {
		font-size: 14px;
	}
	#jigyoukeizoku03 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#jigyoukeizoku03 > strong {
		font-size: 20px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#jigyoukeizoku03 > b {}
	#jigyoukeizoku03 ul {
		flex-direction: column;
	}
	#jigyoukeizoku03 ul li {
		width: auto;
		padding: 10px 20px;
		margin: 0 0 10px;
	}
	#jigyoukeizoku03 ul li strong {
		font-size: 20px;
	}
	#jigyoukeizoku03 ol {
		margin: .5rem .5rem 1rem;
	}
	#jigyoukeizoku03 ol li {}
	#jigyoukeizoku03 ol li:before {}
	#jigyoukeizoku04 {
		font-size: 14px;
	}
	#jigyoukeizoku04 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#jigyoukeizoku04 ul {
		margin: 0;
	}
	#jigyoukeizoku04 ul li {
		margin: 0 0 10px 0;
		padding: 10px 20px 20px;
	}
	#jigyoukeizoku04 ul li:before {
		font-size: 14px;
		width: 100px;
		line-height: 30px;
		left: -10px;
		top: 10px;
	}
	#jigyoukeizoku04 ul li:after {
		top: 40px;
		left: -10px;
		border-width: 0 10px 10px 0;
	}
	#jigyoukeizoku04 ul li strong {
		margin: 0 0 10px -10px;
		font-size: 20px;
	}
	#jigyoukeizoku04 ul li b {
		font-size: 20px;
		margin: 0 0 0 80px;
	}
	#jigyoukeizoku05 {
		font-size: 14px;
	}
	#jigyoukeizoku05 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#jigyoukeizoku05 ul {
		width: auto;
		font-size: 12px;
		padding: 10px 10px;
		margin: 10px auto 10px;
	}
	#jigyoukeizoku05 ul li {}
	#jigyoukeizoku05 ol {
		margin: .5rem;
		font-size: 14px;
	}
	#jigyoukeizoku05 ol li {}
	#jigyoukeizoku05 ol li:before {}
	#jigyoukeizoku05 ol li small {
		font-size: 12px;
	}
	#jigyoukeizoku05 ol li small:before {}
	#jigyoukeizoku06 {
		font-size: 14px;
	}
	#jigyoukeizoku06 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#jigyoukeizoku06 dl {
		margin: 0;
	}
	#jigyoukeizoku06 dl dt {
		float: inherit;
	}
	#jigyoukeizoku06 dl dd {
		padding: 0 0 10px 10px;
		font-size: 12px;
	}
	#jigyoukeizoku06 ul {
		flex-direction: column;
		padding: 20px 0;
	}
	#jigyoukeizoku06 ul li {
		width: 160px;
		text-align: right;
		padding: 2px 20px 4px;
		box-sizing: border-box;
	}
	#jigyoukeizoku06 ul li span {
		line-height: 21px;
		left: 160px;
		right: inherit !important;
		bottom: inherit;
		border: solid 5px;
		border-left: none;
		width: auto !important;
		text-align: left;
		padding: 0 20px 0;
		display: flex;
		align-items: center;
	}
	#jigyoukeizoku06 ul li span.flow01 {
		bottom: 14px;
		height: 58px;
	}
	#jigyoukeizoku07 {
		font-size: 14px;
	}
	#jigyoukeizoku07 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#jigyoukeizoku07 dl {
		margin: 10px 0 10px;
		padding: 10px 20px 10px;
	}
	#jigyoukeizoku07 dl small {
		font-size: 12px;
	}
	#jigyoukeizoku07 dl small:before {}
	#jigyoukeizoku07 dl dt {
		font-size: 16px;
		margin: 0;
		padding: 30px 0 0;
		position: relative;
	}
	#jigyoukeizoku07 dl dt:before {
		position: absolute;
		top: 0;
		left: 0;
	}
	#jigyoukeizoku07 dl dd {}
	#jigyoukeizoku07 dl dd strong {
		margin: 20px 0 0 0;
	}
	#jigyoukeizoku07 dl ul {
		margin: .5rem;
	}
	#jigyoukeizoku07 dl ul li {}
	#jigyoukeizoku07 dl ul li:before {}
	#jigyoukeizoku07 dl ul li b {}
	#jigyoukeizoku07 dl table {
		font-size: 12px;
	}
	#jigyoukeizoku07 dl table caption {}
	#jigyoukeizoku07 dl table tr {}
	#jigyoukeizoku07 dl table tr th {}
	#jigyoukeizoku07 dl table tr td {}
	#jigyoukeizoku07 dl table tr td:first-child {}
	#jigyoukeizoku07 dl table small {}
	#jigyoukeizoku07 dl table small:before {}
	#jigyoukeizoku07 dl table#setubi {}
	#jigyoukeizoku07 dl table#setubi tr td {}
	#jigyoukeizoku07 dl table#setubi tr td:first-child {}
	#jigyoukeizoku07 dl .notice {
		font-size: 12px;
	}
	#jigyoukeizoku09 {
		font-size: 14px;
	}
	#jigyoukeizoku09 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#jigyoukeizoku09 table {}
	#jigyoukeizoku09 table tr {}
	#jigyoukeizoku09 table th {}
	#jigyoukeizoku09 table td {
		font-size: 16px;
		padding: 10px 15px;
	}
	#jigyoukeizoku09 table td:first-of-type {
		font-size: 14px;
		white-space: nowrap;
	}
	#jigyoukeizoku09 table td b {
		font-size: 20px;
	}
	#jigyoukeizoku09 table td small {
		font-size: 12px;
	}
	#jigyoukeizoku09 small {
		font-size: 12px;
	}
}
/*/////////////////////////////////////////
mudanchushataisaku
/////////////////////////////////////////*/
#mudanchusha01 {
	padding: 50px calc(50% - 600px);
	text-align: center;
	color: #00ACD7;
	font-size: 28px;
	font-weight: 700;
}
#mudanchusha01 strong {
	display: block;
	font-size: 40px;
}
#mudanchusha02 {
	padding: 50px calc(50% - 600px) 70px;
	background: #7FE5FF;
	text-align: center;
	font-size: 21px;
}
#mudanchusha02 h3 {
	color: #fff;
	font-size: 45px;
	font-weight: 900;
	/* margin: 0 0 50px; */
}
#mudanchusha02 strong {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 50px;
	display: block;
}
#mudanchusha02 > ul {
	margin: 40px auto;
	text-align: left;
	font-weight: 700;
	color: #333;
	display: table;
}
#mudanchusha02 > ul li {
	position: relative;
	padding: 0 0 0 30px;
}
#mudanchusha02 > ul li:before {
	content: "✓";
	color: #00ACD7;
	margin: 0 10px 0 0;
	position: absolute;
	left: 0;
}
#mudanchusha02 ol {
	margin: 50px auto 0;
	text-align: left;
	font-size: 18px;
	width: 1030px;
}
#mudanchusha02 ol > li {
	background: #fff;
	margin: 0 0 30px;
	padding: 25px 45px;
}
#mudanchusha02 ol > li b {
	display: block;
	color: #00ACD7;
	font-size: 34px;
	font-weight: 700;
	margin: 0 0 30px;
	line-height: 1;
}
#mudanchusha02 ol > li ul {
	margin: 10px 10px;
}
#mudanchusha02 ol > li ul li {
	position: relative;
	padding: 0 0 0 20px;
}
#mudanchusha02 ol > li ul li:before {
	content: "・";
	position: absolute;
	left: 0;
}
#mudanchusha03 {
	padding: 40px calc(50% - 600px);
	font-size: 23px;
}
#mudanchusha03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
}
#mudanchusha03 strong {
	color: #00ACD7;
	text-align: center;
	font-size: 38px;
	font-weight: 900;
	display: block;
}
#mudanchusha03 p {
	width: 1060px;
	margin: 20px auto 25px;
}
#mudanchusha03 .kaiketu {
	border: solid 7px #ccc;
	border-radius: 3px;
	width: 1060px;
	box-sizing: border-box;
	margin: 0 auto 30px;
	padding: 15px 38px;
	font-size: 19px;
}
#mudanchusha03 .kaiketu > b {
	background: #00ACD7;
	color: #fff;
	display: inline-block;
	width: 300px;
	text-align: center;
	margin: 0 20px 0 0;
	line-height: 46px;
	vertical-align: bottom;
	font-size: 24px;
}
#mudanchusha03 .kaiketu > strong {
	font-size: 35px;
	font-weight: 900;
	color: #333;
	line-height: 46px;
	display: inline-block;
	vertical-align: bottom;
}
#mudanchusha03 .kaiketu u {
	font-weight: 900;
}
#mudanchusha03 .kaiketu ul {
	color: #00ACD7;
	font-weight: 700;
	margin: 20px;
	font-size: 24px;
}
#mudanchusha03 .kaiketu ul li {
	position: relative;
	padding: 0 0 0 2rem;
}
#mudanchusha03 .kaiketu ul li:before {
	content: "✓";
	position: absolute;
	left: 0;
}
#mudanchusha03 .kaiketu ol {
	margin: 30px 0;
	font-size: 24px;
	font-weight: 700;
}
#mudanchusha03 .kaiketu ol li {
	background: #F1F1F1;
	margin: 0 0 20px;
	padding: 30px 25px;
}
#mudanchusha03 .kaiketu ol li b {
	color: #f00;
}
#mudanchusha04 {
	padding: 30px calc(50% - 550px) 50px;
	background: #7FE5FF;
	font-size: 21px;
}
#mudanchusha04 h3 {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 0px;
	text-align: center;
	line-height: 1.4;
}
#mudanchusha04 b {
	color: #f00;
}
#mudanchusha04 ul {
	margin: 20px auto;
	font-weight: 700;
	color: #333;
	display: table;
	font-size: 30px;
}
#mudanchusha04 ul li {
	position: relative;
	padding: 0 0 0 2.5rem;
}
#mudanchusha04 ul li:before {
	content: "✓";
	color: #00ACD7;
	position: absolute;
	left: 0;
}
#mudanchusha05 {
	padding: 30px calc(50% - 550px) 50px;
	font-size: 19px;
}
#mudanchusha05 h3 {
	color: #00ACD7;
	font-size: 48px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 40px;
}
#mudanchusha05 .youi {
	border: solid 7px #7FE5FF;
	border-radius: 3px;
	padding: 20px 50px;
	margin: 40px 0;
}
#mudanchusha05 .youi dt {
	color: #00ACD7;
	font-size: 32px;
	font-weight: 700;
}
#mudanchusha05 .youi dd {
	position: relative;
	padding: 0 0 0 1.5rem;
}
#mudanchusha05 .youi dd:before {
	content: "・";
	position: absolute;
	left: 0;
}
#mudanchusha05 .service {
	border: solid 7px #fff;
	border-radius: 3px;
	padding: 20px 50px;
	margin: 40px 0;
}
#mudanchusha05 .service dt {
	color: #00ACD7;
	font-size: 32px;
	font-weight: 700;
}
#mudanchusha05 .service dd {
	margin: 30px 0 0;
}
#mudanchusha05 .service dd b {
	display: block;
	font-size: 28px;
	font-weight: 700;
}
#mudanchusha05 .service li {
	margin: 50px 0 0;
	list-style: none;
}
#mudanchusha05 .service li u {}
#mudanchusha06 {
	padding: 50px calc(50% - 500px);
	font-size: 19px;
	background: #00ACD7;
	color: #fff;
}
#mudanchusha06 h3 {
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#mudanchusha06 table {
	border: solid 3px #ddd;
	border-right: none;
	border-bottom: none;
	color: #666;
	background: #fff;
	width: 100%;
	text-align: center;
	font-weight: 900;
	font-size: 30px;
	margin: 30px 0 0;
}
#mudanchusha06 table tr {}
#mudanchusha06 table th {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	background: #ccc;
}
#mudanchusha06 table td {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	vertical-align: middle;
}
#mudanchusha06 table td:first-of-type {
	background: #f1f1f1;
}
#mudanchusha06 table td b {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #f00;
}
#mudanchusha06 ul {
	font-size: 12px;
}
#mudanchusha06 ul li {
	position: relative;
	padding: 0 0 0 1.5rem;
	font-size: 90%;
}
#mudanchusha06 ul li:before {
	content: "※";
	position: absolute;
	left: 0;
}
@media (max-width: 768px) {
	#mudanchusha01 {
		font-size: 20px;
		line-height: 1.2;
		font-weight: 900;
	}
	#mudanchusha01 strong {
		font-size: 24px;
	}
	#mudanchusha02 {
		font-size: 14px;
	}
	#mudanchusha02 h3 {
		font-size: 24px;
	}
	#mudanchusha02 strong {
		font-size: 20px;
		margin: 0 0 30px;
	}
	#mudanchusha02 > ul {
		margin: 30px auto;
		line-height: 1.4;
	}
	#mudanchusha02 > ul li {
		padding: 0 0 5px 18px;
	}
	#mudanchusha02 > ul li:before {}
	#mudanchusha02 ol {
		width: auto;
		margin: 20px auto 0;
		font-size: 14px;
	}
	#mudanchusha02 ol > li {
		margin: 0 0 10px;
		padding: 20px 20px;
	}
	#mudanchusha02 ol > li b {
		font-size: 20px;
		line-height: 1.2;
		margin: 0 0 10px;
	}
	#mudanchusha02 ol > li ul {}
	#mudanchusha02 ol > li ul li {
		padding: 0 0 0 14px;
	}
	#mudanchusha02 ol > li ul li:before {}
	#mudanchusha03 {
		font-size: 14px;
	}
	#mudanchusha03 h3 {
		font-size: 28px;
	}
	#mudanchusha03 strong {
		font-size: 20px;
	}
	#mudanchusha03 p {
		width: auto;
	}
	#mudanchusha03 .kaiketu {
		width: auto;
		padding: 20px;
		font-size: 14px;
	}
	#mudanchusha03 .kaiketu > b {
		display: block;
		width: auto;
		margin: 0;
		font-size: 16px;
		line-height: 2;
	}
	#mudanchusha03 .kaiketu > strong {
		font-size: 24px;
	}
	#mudanchusha03 .kaiketu u {}
	#mudanchusha03 .kaiketu ul {
		font-size: 14px;
		margin: .5rem;
	}
	#mudanchusha03 .kaiketu ul li {
		padding: 0 0 0 1rem;
	}
	#mudanchusha03 .kaiketu ul li:before {}
	#mudanchusha03 .kaiketu ol {
		margin: 10px 0;
		font-size: 12px;
	}
	#mudanchusha03 .kaiketu ol li {
		margin: 0 0 10px;
		padding: 20px;
	}
	#mudanchusha03 .kaiketu ol li b {}
	#mudanchusha04 {
		font-size: 14px;
	}
	#mudanchusha04 h3 {
		font-size: 24px;
		line-height: 1.2;
		font-weight: 900;
	}
	#mudanchusha04 b {}
	#mudanchusha04 ul {
		font-size: 14px;
	}
	#mudanchusha04 ul li {
		padding: 0 0 0 1rem;
	}
	#mudanchusha04 ul li:before {}
	#mudanchusha05 {
		font-size: 14px;
	}
	#mudanchusha05 h3 {
		font-size: 24px;
		line-height: 1.2;
		font-weight: 900;
		margin: 0 0 30px;
	}
	#mudanchusha05 .youi {
		padding: 10px 20px 20px;
		margin: 20px 0;
	}
	#mudanchusha05 .youi dt {
		font-size: 20px;
	}
	#mudanchusha05 .youi dd {
		padding: 0 0 0 1rem;
	}
	#mudanchusha05 .youi dd:before {}
	#mudanchusha05 .service {
		border: none;
		padding: 0;
		margin: 0;
	}
	#mudanchusha05 .service dt {
		font-size: 20px;
		margin: 0 0 10px;
	}
	#mudanchusha05 .service dd {
		margin: 0 0 10px;
	}
	#mudanchusha05 .service dd b {
		font-size: 16px;
	}
	#mudanchusha05 .service li {}
	#mudanchusha05 .service li u {}
	#mudanchusha06 {
		font-size: 14px;
	}
	#mudanchusha06 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#mudanchusha06 table {
		font-size: 14px;
	}
	#mudanchusha06 table tr {}
	#mudanchusha06 table th {}
	#mudanchusha06 table td {
		padding: 5px;
	}
	#mudanchusha06 table td:first-of-type {}
	#mudanchusha06 table td b {
		font-size: 12px;
	}
	#mudanchusha06 ul {}
	#mudanchusha06 ul li {
		padding: 0 0 0 1rem;
	}
	#mudanchusha06 ul li:before {}
}
/*/////////////////////////////////////////
hojokin
/////////////////////////////////////////*/
#hojokin01 {
	padding: 50px calc(50% - 600px);
	text-align: center;
	color: #00ACD7;
	font-size: 28px;
	font-weight: 700;
}
#hojokin01 strong {
	display: block;
	font-size: 40px;
}
#hojokin01 .notice {
	  font-size: 12px;
    color: #f00;
    font-weight: normal;
    text-align: left;
    width: 70%;
    margin: 20px auto 0;
}
#hojokin02 {
	padding: 50px calc(50% - 515px) 70px;
	background: #090;
	text-align: center;
	font-size: 21px;
	color: #fff;
}
#hojokin02 h3 {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 50px;
}
#hojokin02 > b {
	display: block;
	font-weight: 700;
	font-size: 32px;
}
#hojokin02 > ul {
	display: flex;
	justify-content: space-between;
	margin: 40px 0 100px;
	text-align: left;
	font-size: 16px;
	color: #666;
}
#hojokin02 > ul li {
	width: 470px;
	background: #fff;
	box-sizing: border-box;
	padding: 20px 34px;
}
#hojokin02 > ul li strong {
	display: block;
	color: #00ACD7;
	font-weight: 900;
	font-size: 34px;
	text-align: center;
	line-height: 1;
	margin: 0 0 20px;
}
#hojokin02 > ul li b {
	font-weight: 700;
	color: #333;
}
#hojokin02 > ul li p {
	color: #00ACD7;
	text-align: center;
	margin: 15px -15px;
}
#hojokin02 > ul li a {
	display: block;
	text-align: center;
	background: #00ACD7;
	color: #fff;
	line-height: 38px;
}

#hojokin03 {
	padding: 40px calc(50% - 515px);
	font-size: 22px;
}
#hojokin03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#hojokin03 h3 small {
	font-size: 36px;
	display: block;
	margin: 0 0 30px;
}
#hojokin03 > strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	margin: 40px 0;
}
#hojokin03 > ul {
	margin: 0 1rem 10px;
	line-height: .5;
}
#hojokin03 > ul li {
	padding: 0 0 0 1.5rem;
	margin: 0;
	position: relative;
}
#hojokin03 > ul li:before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
}
#hojokin03 > ul li b {
	line-height: 1;
	color: #f00;
}
#hojokin03 table {
	width: 100%;
	border: solid 2px #ccc;
	border-right: none;
	border-bottom: none;
	text-align: center;
	font-size: 18px;
	margin: 30px 0 60px;
}
#hojokin03 table tr {}
#hojokin03 table tr:nth-of-type(odd) {
	background: #F5F5F5;
}
#hojokin03 table tr th {
	border: solid 2px #ccc;
	border-left: none;
	border-top: none;
	background: #7FE5FF;
	/* color: #333; */
	font-weight: 700;
	padding: 5px;
}
#hojokin03 table tr td {
	border: solid 2px #ccc;
	border-left: none;
	border-top: none;
	padding: 5px;
}
#hojokin03 table tr td strong {
	color: #f00;
	font-weight: 700;
}
#hojokin03 p {
	text-align: center;
	border: dotted 3px #999;
	color: #333;
	margin: 30px auto 30px;
	padding: 20px;
	width: 70%;
	font-weight: 900;
	font-size: 30px;
}
#hojokin03 > small {
	font-size: 16px;
	display: block;
}
#hojokin03 dl {
	font-size: 23px;
	margin: 0 auto 30px;
	width: 85%;
}
#hojokin03 dl dt {
	float: left;
}
#hojokin03 dl dd {
	padding: 0 0 5px 50px;
}
#hojokin04 {
	padding: 40px calc(50% - 515px);
	font-size: 22px;
}
#hojokin04 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#hojokin04 > strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	margin: 40px 0;
}
#hojokin04 > b {
	color: #f00;
}
#hojokin04 > ul {
	display: flex;
	justify-content: space-between;
	margin: 40px 0 0;
	text-align: left;
	font-size: 16px;
}
#hojokin04 > ul > li {
	width: 470px;
	border: solid #ccc 3px;
	box-sizing: border-box;
	padding: 20px 15px;
}
#hojokin04 > ul li strong {
	display: block;
	color: #00ACD7;
	font-weight: 900;
	font-size: 34px;
	text-align: center;
	line-height: 1;
	margin: 0 0 20px;
}
#hojokin04 > ul li ol {
	margin: 20px 20px;
	font-size: 30px;
	font-weight: 700;
}
#hojokin04 > ul li ol li {
	position: relative;
	padding: 0 0 0 2.5rem;
}
#hojokin04 > ul li ol li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#hojokin04 > ul li small {
	font-size: 14px;
}
#hojokin05 {
	padding: 40px calc(50% - 515px);
	font-size: 14px;
}
#hojokin05 dl {
	display: flex;
	justify-content: space-between;
	margin: 0 0 30px;
}
#hojokin05 dl dt {
	position: relative;
	width: 185px;
}
#hojokin05 dl dt:before {
	content: attr(title);
	position: absolute;
	background: #0FB1D9;
	color: #fff;
	top: 10px;
	left: -24px;
	padding: 5px 19px;
}
#hojokin05 dl dt:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 24px 15px 0;
	border-color: transparent #62D7F4 transparent transparent;
	position: absolute;
	top: 42px;
	left: -24px;
}
#hojokin05 dl dt img {}
#hojokin05 dl dd {
	width: calc(100% - 206px);
}
#hojokin05 dl dd ul {
	display: flex;
	margin: 0 0 5px;
}
#hojokin05 dl dd ul li {
	background: #B6ECFA;
	padding: 5px 15px;
	margin-right: 10px;
}
#hojokin05 dl dd strong {
	display: block;
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 5px;
}
#hojokin05 dl dd b {
	color: #00ACD7;
}
#hojokin06 {
	padding: 40px calc(50% - 515px);
	font-size: 22px;
}
#hojokin06 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#hojokin06 > strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	margin: 40px 0;
}
#hojokin06 > b {
	color: #f00;
}
#hojokin06 .flow {
	margin: 20px 0;
}
#hojokin06 .flow strong {
	display: block;
	color: #00ACD7;
}
#hojokin06 .flow table {
	width: 100%;
	font-size: 14px;
	margin: 10px 0;
}
#hojokin06 .flow table tbody {}
#hojokin06 .flow table tr {}
#hojokin06 .flow table tr th {
	color: #00ACD7;
	background: #B6ECFA;
	padding: 5px;
}
#hojokin06 .flow table tr td {
	padding: 5px 1px;
}
#hojokin06 .flow table tr td span {
	background: #00ACD7;
	color: #fff;
	display: block;
	text-align: center;
	font-size: 12px;
	padding: 5px;
	position: relative;
	margin: 5px 0;
}
#hojokin06 .flow table tr td span.bottom {}
#hojokin06 .flow table tr td span.bottom:before {
	content: "";
	width: 11px;
	height: 11px;
	background: #00ACD6;
	position: absolute;
	top: -16px;
	right: 5px;
	border-radius: 50%;
}
#hojokin06 .flow table tr td span.bottom:after {
	content: "";
	border-right: 3px solid #00ACD6;
	position: absolute;
	right: 9px;
	top: -9px;
	height: 10px;
}
#hojokin06 .flow dl {
	font-size: 12px;
}
#hojokin06 .flow dl dt {
	float: left;
	text-align: right;
	width: 30px;
	color: #00ACD7;
}
#hojokin06 .flow dl dd {
	padding: 0 0 5px 45px;
}
#hojokin06 .flow dl dd u {
	font-weight: 500;
}
#hojokin06 .flow dl dd b {
	font-weight: 500;
	color: #f00;
}
#hojokin07 {
	padding: 40px calc(50% - 515px);
	font-size: 22px;
}
#hojokin07 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#hojokin07 > strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	margin: 40px 0;
}
#hojokin07 > b {
	font-weight: 700;
}
#hojokin07 > p {
	text-align: center;
	font-size: 50px;
	margin: 20px 0;
	color: #00ACD7;
	font-weight: 700;
}
#hojokin07 > small {
	font-size: 16px;
	display: block;
}
#hojokin09 {
	padding: 40px calc(50% - 515px) 70px;
	background: #7FE5FF;
	text-align: center;
	font-size: 12px;
}
#hojokin09 h3 {
	color: #333;
	font-size: 40px;
	font-weight: 900;
	margin: 0 0 30px;
}
#hojokin09 .kobo_list {
	margin: 0 0 40px;
}
#hojokin09 .kobo_list p {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
}
#hojokin09 .kobo_list ul {
	background: #fff;
	border: solid 15px #fff;
	text-align: left;
	height: 240px;
	overflow-y: auto;
	border-width: 15px 20px;
}
#hojokin09 .kobo_list ul li {
	font-size: 14px;
	list-style: disc;
	padding: 0 0 5px 0;
	margin: 0 0 0 30px;
}
#hojokin09 .kobo_list ul li b {
	font-weight: 700;
}
#hojokin09 .kobo_list_hojo {
	display: flex;
	justify-content: space-between;
	margin: 0 0 40px;
}
#hojokin09 .kobo_list_hojo dl {
	width: 470px;
}
#hojokin09 .kobo_list_hojo dl dt {
	margin: 0 0 10px;
}
#hojokin09 .kobo_list_hojo dl dt strong {
	color: #00ACD7;
	display: block;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 10px;
}
#hojokin09 .kobo_list_hojo dl dd {
	background: #fff;
	border: solid 15px #fff;
	text-align: left;
	height: 240px;
	overflow-y: auto;
	border-width: 15px 20px;
}
#hojokin09 .kobo_list_hojo dl dd b {
	color: #333;
	font-weight: 700;
	font-size: 14px;
}
#hojokin09 .kobo_list_hojo dl dd ul {
	margin: 0 20px 20px;
}
#hojokin09 .kobo_list_hojo dl dd ul li {
	position: relative;
}
#hojokin09 .kobo_list_hojo dl dd ul li[date] {
	padding-left: 40px;
}
#hojokin09 .kobo_list_hojo dl dd ul li:before {
	content: attr(date);
	position: absolute;
	left: 0;
}
#hojokin09 .to_mail-maga {
	background: #01ACD8;
	color: #fff;
	padding: 20px 60px 40px;
	text-align: left;
}
#hojokin09 .to_mail-maga strong {
	font-size: 40px;
	font-weight: 700;
	margin-right: 50px;
	position: relative;
	padding: 0 0 0 70px;
}
#hojokin09 .to_mail-maga strong:before {
	content: "";
	width: 60px;
	height: 40px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 12px;
	border-radius: 4px;
}
#hojokin09 .to_mail-maga strong:after {
	content: "";
	position: absolute;
	left: 6px;
	top: -12px;
	transform: rotate(45deg) skew(-5deg, -5deg);
	height: 36px;
	width: 36px;
	border: solid 6px #00ACD7;
}
#hojokin09 .to_mail-maga b {
	font-size: 28px;
	font-weight: 700;
}
#hojokin09 .to_mail-maga dl {
	display: flex;
	justify-content: space-between;
	margin: 20px 0 0;
	font-size: 14px;
	align-items: center;
}
#hojokin09 .to_mail-maga dl dt {}
#hojokin09 .to_mail-maga dl dd {}
#hojokin09 .to_mail-maga dl dd a {
	display: block;
	background: #fff;
	width: 280px;
	text-align: center;
	font-size: 24px;
	padding: 12px 0 15px;
	margin: 0 0 0 30px;
	border-radius: 5px;
}
#hojokin10 {
	padding: 10px calc(50% - 515px) 50px;
	font-size: 12px;
}
#hojokin10 ul {
	display: flex;
	flex-wrap: wrap;
}
#hojokin10 ul li {
	width: 50%;
}
#hojokin10 ul li dl {
	border: solid 5px #00ACD7;
	border-radius: 10px;
	padding: 20px;
	height: 100%;
	position: relative;
	margin: 0 100px 0 0;
	box-sizing: border-box;
}
#hojokin10 ul li dl:before {
	content: "";
	position: absolute;
	right: -40px;
	bottom: 20px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 15px 40px;
	border-color: transparent transparent transparent #00ACD7;
}
#hojokin10 ul li dl:after {
	content: "";
	position: absolute;
	right: -30px;
	bottom: 25px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 30px;
	border-color: transparent transparent transparent #fff;
}
#hojokin10 ul li dl dt {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}
#hojokin10 ul li dl dt:before {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -10px;
	width: 40px;
	height: 30px;
	background: #00ACD7;
	border-radius: 10px 10px 0 0;
}
#hojokin10 ul li dl dt:after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: 8px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 10px 0px 10px;
	border-color: #fff transparent transparent transparent;
}
#hojokin10 ul li dl dd {}
#hojokin10 ul li dl dd:before {
	content: "";
	position: absolute;
	right: -75px;
	bottom: 20px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #00ACD7;
}
#hojokin10 ul li dl dd:after {
	content: "";
	position: absolute;
	right: -63px;
	bottom: -1px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
}
#hojokin11 {
	padding: 50px calc(50% - 550px) 50px;
	background: #7FE5FF;
	font-size: 16px;
	text-align: center;
}
#hojokin11 h3 {
	/* color: #666; */
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 40px;
	text-align: center;
}
#hojokin11 > b {
	color: #f00;
}
#hojokin11 > br {}
#hojokin11 ul {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
	margin: 30px auto 50px;
	font-size: 12px;
	line-height: 1.4;
	color: #666;
	text-align: left;
}
#hojokin11 ul > li {
	background: #fff;
	width: calc((100%/3) - 10px);
	margin: 0 5px 10px;
	padding: 15px 10px 20px 10px;
	box-sizing: border-box;
}
#hojokin11 ul > li .scrl {
	height: 150px;
	overflow-x: auto;
}
#hojokin11 ul > li strong {
	display: block;
	position: relative;
	margin: 20px auto 10px;
	text-align: center;
	background: #fff;
	text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
	z-index: 1;
}
#hojokin11 ul > li strong:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 0;
	border-bottom: dashed 1px;
	z-index: -1;
}
#hojokin11 ul > li b {
	display: block;
	color: #00ACD7;
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 900;
	text-align: center;
	display: flex;
	align-items: center;
	/* height: 70px; */
	justify-content: center;
}
#hojokin11 ul > li p {
	text-align: center;
}
#hojokin11 ul > li dl {
	margin: 1rem .5rem 1rem 1rem;
}
#hojokin11 ul > li dl dt {
	color: #00ACD7;
	font-weight: 700;
	margin-left: -.5rem;
	position: relative;
	padding: 0 0 0 .5rem;
}
#hojokin11 ul > li dl dt:before {
	content: "✓";
	position: absolute;
	left: -5px;
}
#hojokin11 ul > li dl dd {
	font-weight: 700;
}
#hojokin11 > ol {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 30px auto 0;
	font-size: 14px;
	line-height: 1.4;
	color: #666;
	text-align: left;
}
#hojokin11 > ol > li {
	background: #fff;
	width: 100%;
	/* width: calc((100%/2) - 10px); */
	/*width: calc((100%/3) - 10px);*/
	margin-bottom: 30px;
	padding: 15px 15px 20px 20px;
	box-sizing: border-box;
	text-align: center;
}
#hojokin11 > ol > li strong {
	display: flex;
	height: 100px;
	justify-content: center;
	align-items: center;
	color: #00ACD7;
	font-size: 22px;
	margin-bottom: 10px;
	font-weight: 900;
	text-align: center;
}
#hojokin11 > ol > li b {
	color: #f00;
}
#hojokin11 > ol > li .scrl {
	border: solid 1px #ddd;
	margin: 20px 0 0;
	padding: 10px 10px;
	overflow-y: auto;
	max-height: 110px;
}
#hojokin11 > ol > li .scrl ul {
	margin: 0;
	flex-direction: column;
	list-style: disc;
	font-size: inherit;
}
#hojokin11 > ol > li .scrl ul li {
	padding: 0;
	width: auto;
	margin: 0 0 0 20px;
}
@media (max-width: 768px) {
	#hojokin01 {
		font-size: 20px;
		line-height: 1.2;
	}
	#hojokin01 strong {
		font-size: 30px;
		font-weight: 900;
	}
#hojokin01 .notice {
    width: 100%;
}
	#hojokin02 {
		font-size: 14px;
		text-align: left;
	}
	#hojokin02 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
		font-weight: 900;
		text-align: center;
	}
	#hojokin02 > b {
		font-size: 20px;
	}
	#hojokin02 > ul {
		flex-direction: column;
		font-size: 14px;
	}
	#hojokin02 > ul li {
		width: auto;
		margin: 0 0 10px;
		padding: 15px 15px;
	}
	#hojokin02 > ul li strong {
		font-size: 30px;
		margin: 0 0 10px;
	}
	#hojokin02 > ul li b {}
	#hojokin02 > ul li p {
		font-size: 12px;
	}
	#hojokin02 > ul li a {}
		
	#hojokin03 {
		font-size: 14px;
	}
	#hojokin03 h3 {
		font-size: 24px;
		margin: 0 0 30px;
	}
	#hojokin03 h3 small {
		font-size: 14px;
	}
	#hojokin03 > strong {
		font-size: 16px;
		margin: 20px 0;
	}
	#hojokin03 > ul {}
	#hojokin03 > ul li {}
	#hojokin03 > ul li:before {}
	#hojokin03 > ul li b {}
	#hojokin03 table {
		margin: 20px 0 50px;
		font-size: 12px;
	}
	#hojokin03 table tr {}
	#hojokin03 table tr:nth-of-type(odd) {}
	#hojokin03 table tr th {}
	#hojokin03 table tr td {}
	#hojokin03 table tr td strong {}
	#hojokin03 p {
		margin: 20px auto 20px;
		padding: 20px 0;
		width: 90%;
		box-sizing: border-box;
		font-size: 16px;
	}
	#hojokin03 > small {
		font-size: 12px;
	}
	#hojokin03 dl {
		font-size: 14px;
		width: 90%;
	}
	#hojokin03 dl dt {}
	#hojokin03 dl dd {
		padding: 0 0 5px 30px;
	}
	#hojokin04 {
		font-size: 14px;
	}
	#hojokin04 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#hojokin04 > strong {
		font-size: 16px;
		margin: 30px 0;
	}
	#hojokin04 > b {}
	#hojokin04 > ul {
		flex-direction: column;
		font-size: 14px;
	}
	#hojokin04 > ul br {
		display: none;
	}
	#hojokin04 > ul > li {
		width: auto;
		padding: 10px 20px;
		margin: 0 0 10px;
	}
	#hojokin04 > ul li strong {
		font-size: 30px;
	}
	#hojokin04 > ul li ol {
		font-size: 16px;
		margin: 10px 10px;
	}
	#hojokin04 > ul li ol li {
		padding: 0 0 0 1.5rem;
	}
	#hojokin04 > ul li ol li:before {}
	#hojokin04 > ul li small {
		font-size: 12px;
	}
	#hojokin05 {
		font-size: 14px;
	}
	#hojokin05 dl {
		flex-direction: column;
		border-bottom: dotted #ccc;
		padding: 0 0 20px;
		margin: 0 0 20px;
		font-size: 12px;
	}
	#hojokin05 dl dt {
		width: auto;
		margin: 0 0 10px;
	}
	#hojokin05 dl dt:before {
		left: -10px;
	}
	#hojokin05 dl dt:after {
		top: 39px;
		left: -10px;
		border-width: 0 10px 10px 0;
	}
	#hojokin05 dl dt img {}
	#hojokin05 dl dd {
		width: auto;
	}
	#hojokin05 dl dd ul {}
	#hojokin05 dl dd ul li {
		margin-right: 5px;
	}
	#hojokin05 dl dd strong {
		font-size: 14px;
	}
	#hojokin05 dl dd b {}
	#hojokin06 {
		font-size: 14px;
	}
	#hojokin06 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#hojokin06 > strong {
		font-size: 16px;
		margin: 30px 0;
	}
	#hojokin06 > b {}
	#hojokin06 .flow {}
	#hojokin06 .flow strong {}
	#hojokin06 .flow table {}
	#hojokin06 .flow table tbody {
		display: flex;
	}
	#hojokin06 .flow table tr {
		display: flex;
		flex-direction: column;
		margin: 0 10px 0 0;
	}
	#hojokin06 .flow table tr th {
		width: 120px;
	}
	#hojokin06 .flow table tr td {
		position: relative;
		flex: 1;
	}
	#hojokin06 .flow table tr td span {
		position: absolute;
		white-space: nowrap;
		display: flex;
		align-items: center;
		width: 180px;
	}
	#hojokin06 .flow table tr td span.flow01 {
		bottom: -5px;
	}
	#hojokin06 .flow table tr td span.flow02 {
		bottom: 0px;
		height: 22px;
	}
	#hojokin06 .flow table tr td span.flow03 {
		bottom: 7px;
	}
	#hojokin06 .flow table tr td span.flow04 {
		bottom: 15px;
	}
	#hojokin06 .flow table tr td span.flow05 {
		bottom: -79px;
		height: 120px;
	}
	#hojokin06 .flow table tr td span.flow06 {
		bottom: -72px;
	}
	#hojokin06 .flow table tr td span.flow07 {
		bottom: -57px;
	}
	#hojokin06 .flow table tr td span.flow08 {
		bottom: -27px;
	}
	#hojokin06 .flow table tr td span.flow09 {
		bottom: -10px;
	}
	#hojokin06 .flow table tr td span.flow10 {
		bottom: -41px;
		height: 53px;
	}
	#hojokin06 .flow table tr td span.flow11 {
		bottom: -38px;
	}
	#hojokin06 .flow table tr td span.flow12 {
		bottom: -35px;
	}
	#hojokin06 .flow table tr td span.flow13 {
		bottom: -43px;
		height: 29px;
	}
	#hojokin06 .flow table tr td span.flow14 {
		bottom: -40px;
	}
	#hojokin06 .flow table tr td span.bottom {}
	#hojokin06 .flow table tr td span.bottom:before {
		right: inherit;
		left: -17px;
		top: inherit;
		bottom: 5px;
	}
	#hojokin06 .flow table tr td span.bottom:after {
		right: inherit;
		left: -10px;
		top: inherit;
		bottom: 9px;
		border-right: none;
		border-bottom: 3px solid #00ACD6;
		width: 10px;
		height: 0;
	}
	#hojokin06 .flow dl {}
	#hojokin06 .flow dl dt {}
	#hojokin06 .flow dl dd {}
	#hojokin06 .flow dl dd u {}
	#hojokin06 .flow dl dd b {}
	#hojokin07 {
		font-size: 14px;
	}
	#hojokin07 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#hojokin07 > strong {
		font-size: 16px;
	}
	#hojokin07 > b {}
	#hojokin07 > p {
		font-size: 26px;
	}
	#hojokin07 > small {}
	#hojokin09 {
		font-size: 12px;
	}
	#hojokin09 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#hojokin09 .kobo_list {}
	#hojokin09 .kobo_list p {}
	#hojokin09 .kobo_list ul {}
	#hojokin09 .kobo_list ul li {}
	#hojokin09 .kobo_list ul li b {
		display: block;
	}
	#hojokin09 .kobo_list_hojo {
		flex-direction: column;
	}
	#hojokin09 .kobo_list_hojo dl {
		width: auto;
		margin: 0 0 20px;
	}
	#hojokin09 .kobo_list_hojo dl dt {}
	#hojokin09 .kobo_list_hojo dl dt strong {
		font-size: 16px;
	}
	#hojokin09 .kobo_list_hojo dl dd {
		border: solid 10px #fff;
	}
	#hojokin09 .kobo_list_hojo dl dd b {}
	#hojokin09 .kobo_list_hojo dl dd ul {
		font-size: 12px;
		margin: 0 10px 10px;
	}
	#hojokin09 .kobo_list_hojo dl dd ul li {}
	#hojokin09 .kobo_list_hojo dl dd ul li[date] {}
	#hojokin09 .kobo_list_hojo dl dd ul li:before {}
	#hojokin09 .to_mail-maga {
		padding: 20px 20px 20px;
	}
	#hojokin09 .to_mail-maga strong {
		display: table;
		margin: 0 auto 0;
	}
	#hojokin09 .to_mail-maga strong:before {}
	#hojokin09 .to_mail-maga strong:after {}
	#hojokin09 .to_mail-maga b {
		font-size: 21px;
		text-align: center;
		display: block;
	}
	#hojokin09 .to_mail-maga dl {
		flex-direction: column;
	}
	#hojokin09 .to_mail-maga dl dt {
		margin: 0 0 20px;
	}
	#hojokin09 .to_mail-maga dl dd {
		width: 100%;
	}
	#hojokin09 .to_mail-maga dl dd a {
		width: 100%;
		margin: 0;
	}
	#hojokin10 {
		font-size: 12px;
	}
	#hojokin10 ul {
		flex-direction: column;
	}
	#hojokin10 ul li {
		width: auto;
		margin: 0 0 10px;
	}
	#hojokin10 ul li dl {
		padding: 10px;
		margin: 0 70px 0 0;
	}
	#hojokin10 ul li dl:before {
		bottom: inherit;
		top: 10px;
	}
	#hojokin10 ul li dl:after {
		bottom: inherit;
		top: 15px;
	}
	#hojokin10 ul li dl dt {
		font-size: 16px;
	}
	#hojokin10 ul li dl dt:before {
		bottom: inherit;
		top: 40px;
	}
	#hojokin10 ul li dl dt:after {
		bottom: inherit;
		top: 32px;
	}
	#hojokin10 ul li dl dd {}
	#hojokin10 ul li dl dd:before {
		bottom: inherit;
		top: 10px;
	}
	#hojokin10 ul li dl dd:after {
		bottom: inherit;
		top: 56px;
	}
	#hojokin10 ul li:nth-of-type(even) {}
	#hojokin10 ul li:nth-of-type(even) dl {
		margin: 0 0 0 70px;
	}
	#hojokin10 ul li:nth-of-type(even) dl:before {
		border-width: 15px 40px 15px 0;
		border-color: transparent #00ACD7 transparent transparent;
		right: inherit;
		left: -40px;
	}
	#hojokin10 ul li:nth-of-type(even) dl:after {
		border-width: 10px 30px 10px 0;
		border-color: transparent #fff transparent transparent;
		right: inherit;
		left: -30px;
	}
	#hojokin10 ul li:nth-of-type(even) dl dt {}
	#hojokin10 ul li:nth-of-type(even) dl dt:before {
		left: -80px;
		right: inherit;
	}
	#hojokin10 ul li:nth-of-type(even) dl dt:after {
		left: -70px;
		right: inherit;
	}
	#hojokin10 ul li:nth-of-type(even) dl dd {}
	#hojokin10 ul li:nth-of-type(even) dl dd:before {
		left: -75px;
		right: inherit;
	}
	#hojokin10 ul li:nth-of-type(even) dl dd:after {
		left: -63px;
		right: inherit;
	}
	#hojokin11 {
		font-weight: normal;
	}
	#hojokin11 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
		font-weight: 900;
	}
	#hojokin11 > br {
		display: none;
	}
	#hojokin11 ul {
		flex-direction: column;
		width: auto;
		font-size: 14px;
	}
	#hojokin11 ul > li {
		width: auto;
		margin-bottom: 10px;
	}
	#hojokin11 ul > li .scrl {
		height: auto;
	}
	#hojokin11 ul > li b {
		font-size: 20px;
		font-weight: 900;
	}
	#hojokin11 > ol {
		flex-direction: column;
		width: auto;
		font-size: 14px;
	}
	#hojokin11 > ol > li {
		width: auto;
		margin-bottom: 10px;
		text-align: left;
	}
	#hojokin11 > ol > li strong {
		/* font-size: 22px; */
		height: auto;
	}
	#hojokin11 > ol > li b {}
	#hojokin11 > ol > li .scrl {}
	#hojokin11 > ol > li .scrl ul {}
	#hojokin11 > ol > li .scrl ul li {}
}
/*/////////////////////////////////////////
joseikin
/////////////////////////////////////////*/
#joseikin01 {
	padding: 20px calc(50% - 600px);
	text-align: center;
	color: #00ACD7;
	font-size: 28px;
	font-weight: 700;
}
#joseikin01 strong {
	display: block;
	font-size: 46px;
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 40px;
}
#joseikin01 small {
	display: block;
	font-size: 14px;
	color: #666;
	font-weight: 500;
	line-height: 1.2;
}
#joseikin02 {
	padding: 50px calc(50% - 515px) 70px;
	background: #7FE5FF;
	text-align: center;
	font-size: 21px;
}
#joseikin02 h3 {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 50px;
}
#joseikin02 > b {
	display: block;
	font-weight: 700;
	font-size: 32px;
}
#joseikin02 > ul {
	display: flex;
	justify-content: space-between;
	margin: 40px 0 0;
	text-align: left;
	font-size: 16px;
}
#joseikin02 > ul li {
	width: 470px;
	background: #fff;
	box-sizing: border-box;
	padding: 20px 34px;
}
#joseikin02 > ul li strong {
	display: block;
	color: #00ACD7;
	font-weight: 900;
	font-size: 34px;
	text-align: center;
	line-height: 1;
	margin: 0 0 20px;
}
#joseikin02 > ul li b {
	font-weight: 700;
	color: #333;
}
#joseikin02 > ul li p {
	color: #00ACD7;
	text-align: center;
	margin: 15px -15px;
}
#joseikin02 > ul li a {
	display: block;
	text-align: center;
	background: #00ACD7;
	color: #fff;
	line-height: 38px;
}
#joseikin03 {
	padding: 40px calc(50% - 515px);
	font-size: 22px;
}
#joseikin03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#joseikin03 h3 small {
	font-size: 36px;
	display: block;
	margin: 0 0 30px;
}
#joseikin03 > strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	margin: 40px 0;
}
#joseikin03 > ul {
	margin: 1.5rem 1rem 2rem;
	line-height: .5;
}
#joseikin03 > ul li {
	padding: 0 0 0 1.5rem;
	margin: 0;
	position: relative;
}
#joseikin03 > ul li:before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
}
#joseikin03 > ul li b {
	line-height: 1;
	color: #f00;
}
#joseikin03 table {
	width: 100%;
	border: solid 2px #ccc;
	border-right: none;
	border-bottom: none;
	text-align: center;
	font-size: 18px;
	margin: 30px 0 60px;
}
#joseikin03 table tr {}
#joseikin03 table tr:nth-of-type(odd) {
	background: #F5F5F5;
}
#joseikin03 table tr th {
	border: solid 2px #ccc;
	border-left: none;
	border-top: none;
	background: #7FE5FF;
	/* color: #333; */
	font-weight: 700;
	padding: 5px;
}
#joseikin03 table tr td {
	border: solid 2px #ccc;
	border-left: none;
	border-top: none;
	padding: 5px;
}
#joseikin03 table tr td strong {
	color: #f00;
	font-weight: 700;
}
#joseikin04 {
	padding: 50px calc(50% - 560px) 70px;
	background: #7FE5FF;
	font-size: 24px;
	line-height: 1.4;
}
#joseikin04 h3 {
	color: #fff;
	font-size: 38px;
	font-weight: 900;
	margin: 0 0 50px;
	text-align: center;
}
#joseikin04 strong {
	display: block;
	font-weight: 700;
	font-size: 28px;
	margin: 50px 0;
}
#joseikin04 > b {
	color: #f00;
}
#joseikin04 ul {
	width: 1040px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto 40px;
	font-size: 16px;
	line-height: 1.2;
}
#joseikin04 ul li {
	width: 310px;
	background: #fff;
	box-sizing: border-box;
	padding: 20px;
}
#joseikin04 ul li dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 1;
	color: #00ACD7;
	font-weight: 900;
	margin: 0 0 10px;
}
#joseikin04 ul li dl dt {
	text-align-last: justify;
	text-justify: inter-ideograph;
}
#joseikin04 ul li dl dd {
	font-size: 50px;
}
#joseikin04 ul li b {
	display: block;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 10px;
}
#joseikin05 {
	padding: 40px calc(50% - 520px);
	font-size: 22px;
}
#joseikin05 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#joseikin05 > strong {
	display: block;
	font-weight: 700;
	font-size: 28px;
	margin: 40px 0;
}
#joseikin05 > strong span {
	color: #000;
}
#joseikin05 .jukyu_jisseki {
	width: 920px;
	margin: 0 auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color: #333;
}
#joseikin05 .jukyu_jisseki dl {
	display: flex;
	width: 47%;
	margin: 0 0 30px;
}
#joseikin05 .jukyu_jisseki dl dt {}
#joseikin05 .jukyu_jisseki dl dt img {
	margin: 0 15px 0 0;
}
#joseikin05 .jukyu_jisseki dl dd {
	flex: auto;
}
#joseikin05 .jukyu_jisseki dl dd strong {
	display: flex;
	position: relative;
	justify-content: flex-end;
	line-height: 1;
	color: #00ACD7;
	font-size: 42px;
	font-weight: 900;
	margin: 10px 0 0;
}
#joseikin05 .jukyu_jisseki dl dd strong:before {
	content: "受給\A総額";
	white-space: pre;
	position: absolute;
	left: 0;
	font-size: 20px;
	top: 3px;
}
#joseikin06 {
	padding: 40px calc(50% - 515px) 50px;
	font-size: 22px;
}
#joseikin06 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
	margin: 0 0 40px;
}
#joseikin06 ul {
	font-size: 34px;
	font-weight: 900;
	margin: 50px auto 0;
	width: 850px;
}
#joseikin06 ul li {
	position: relative;
	padding: 0 0 0 2.5rem;
}
#joseikin06 ul li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#joseikin07 {
	padding: 50px calc(50% - 515px);
	font-size: 20px;
}
#joseikin07 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
	margin: 0 0 40px;
}
#joseikin07 dl {
	font-size: 16px;
	position: relative;
	margin: 40px 0 40px;
}
#joseikin07 dl:before {
	content: "";
	position: absolute;
	width: calc(100% - 400px);
	height: 0;
	border-top: solid 8px #7FE5FF;
	top: 29px;
	bottom: 0;
	right: 0;
}
#joseikin07 dl:after {
	content: "";
	position: absolute;
	width: 0;
	height: 42px;
	border-right: solid 8px #7FE5FF;
	top: 14px;
	bottom: 0;
	right: calc(100% - 400px);
}
#joseikin07 dl dt {
	text-align: center;
	background: #7FE5FF;
	width: 300px;
	margin: 0 0 10px;
	line-height: 30px;
	position: relative;
}
#joseikin07 dl dt:before {
	content: "";
	position: absolute;
	width: 100px;
	height: 0;
	border-top: solid 8px #7FE5FF;
	top: -2px;
	bottom: 0;
	left: 300px;
	margin: auto;
}
#joseikin07 dl dd {
	padding: 50px 0 0;
}
#joseikin07 dl dd ul {
	display: flex;
	justify-content: space-between;
}
#joseikin07 dl dd ul li {
	background: #00ACD7;
	color: #fff;
	padding: 0 10px;
	line-height: 30px;
}
#joseikin07 dl dd ul li:before {
	content: "●";
	color: #00ACD7;
	position: absolute;
	font-size: 28px;
	top: 16px; /* width: 8px; */ background: linear-gradient(to bottom, #fff 0%, #fff 10px, transparent 10px, transparent 100%), linear-gradient(to right, transparent 0%, transparent 10px, #00ACD7 10px, #00ACD7 17px, transparent 17px, transparent 100%);
	text-align: center;
}
#joseikin07 dl dd ul li:after {
	content: "";
	position: absolute;
	border: solid 7px #00ACD7;
	border-right: none;
	border-bottom: none;
	bottom: 30px;
	box-sizing: border-box;
}
#joseikin07 dl dd ul li:nth-of-type(1):before {
	left: 418px;
	height: 58px;
}
#joseikin07 dl dd ul li:nth-of-type(1):after {
	width: 388px;
	height: 56px;
	left: 47px;
}
#joseikin07 dl dd ul li:nth-of-type(2):before {
	left: 536px;
	height: 72px;
}
#joseikin07 dl dd ul li:nth-of-type(2):after {
	left: 169px;
	width: 384px;
	height: 44px;
}
#joseikin07 dl dd ul li:nth-of-type(3):before {
	left: 654px;
	height: 83px;
}
#joseikin07 dl dd ul li:nth-of-type(3):after {
	left: 267px;
	width: 404px;
	height: 32px;
}
#joseikin07 dl dd ul li:nth-of-type(4):before {
	left: 772px;
	height: 94px;
}
#joseikin07 dl dd ul li:nth-of-type(4):after {
	left: 507px;
	width: 282px;
	height: 20px;
}
#joseikin07 dl dd ul li:nth-of-type(5):before {
	left: 890px;
	height: 115px;
}
#joseikin07 dl dd ul li:nth-of-type(5):after {
	content: none;
}
#joseikin07 dl dd ul li:nth-of-type(6):before {
	left: 1008px;
	height: 115px;
}
#joseikin07 dl dd ul li:nth-of-type(6):after {
	content: none;
}
#joseikin08 {
	padding: 50px calc(50% - 515px) 70px;
	font-size: 19px;
	background: #00ACD7;
	color: #fff;
}
#joseikin08 h3 {
	font-size: 46px;
	font-weight: 700;
	margin: 0 0 30px;
	text-align: center;
}
#joseikin08 table {
	border: solid 3px #ddd;
	border-right: none;
	border-bottom: none;
	color: #666;
	background: #fff;
	width: 100%;
	/* font-weight: 900; */
	/* font-size: 27px; */
	margin: 30px 0 0;
}
#joseikin08 table tr {}
#joseikin08 table th {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	background: #ccc;
}
#joseikin08 table td {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 30px 35px;
	vertical-align: middle;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
}
#joseikin08 table td:first-of-type {
	background: #f1f1f1;
	text-align: center;
	font-weight: 700;
	font-size: 19px;
}
#joseikin08 table td b {
	font-size: 36px;
}
#joseikin08 table td small {
	display: block;
	font-size: 16px;
	color: #999;
	margin: 10px 0 0;
	font-weight: normal;
}
@media (max-width: 768px) {
	#joseikin01 {
		font-size: 20px;
		line-height: 1.2;
	}
	#joseikin01 strong {
		font-size: 30px;
		font-weight: 900;
		margin: 0;
	}
	#joseikin02 {
		font-size: 14px;
		text-align: left;
	}
	#joseikin02 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
		font-weight: 900;
		text-align: center;
	}
	#joseikin02 > b {
		font-size: 20px;
	}
	#joseikin02 > ul {
		flex-direction: column;
		font-size: 14px;
	}
	#joseikin02 > ul li {
		width: auto;
		margin: 0 0 10px;
		padding: 15px 15px;
	}
	#joseikin02 > ul li strong {
		font-size: 30px;
		margin: 0 0 10px;
	}
	#joseikin02 > ul li b {}
	#joseikin02 > ul li p {
		font-size: 12px;
	}
	#joseikin02 > ul li a {}
	#joseikin03 {
		font-size: 14px;
	}
	#joseikin03 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#joseikin03 h3 small {}
	#joseikin03 > strong {
		font-size: 16px;
		margin: 20px 0;
	}
	#joseikin03 > ul {
		margin: 0 1rem 10px;
		line-height: .5;
	}
	#joseikin03 > ul li {}
	#joseikin03 > ul li:before {}
	#joseikin03 > ul li b {}
	#joseikin03 table {
		margin: 20px 0 20px;
		font-size: 12px;
	}
	#joseikin03 table tr {}
	#joseikin03 table tr:nth-of-type(odd) {}
	#joseikin03 table tr th {}
	#joseikin03 table tr td {}
	#joseikin03 table tr td strong {}
	#joseikin04 {
		font-size: 14px;
	}
	#joseikin04 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#joseikin04 strong {
		font-size: 16px;
		margin: 20px 0;
	}
	#joseikin04 > b {}
	#joseikin04 ul {
		flex-direction: column;
		width: auto;
		font-size: 14px;
		margin: 0 auto 20px;
	}
	#joseikin04 ul li {
		width: auto;
		margin: 0 0 10px;
	}
	#joseikin04 ul li dl {
		justify-content: center;
	}
	#joseikin04 ul li dl dt {
		font-size: 16px;
		margin: 0 10px 0 0;
	}
	#joseikin04 ul li dl dd {
		font-size: 45px;
	}
	#joseikin04 ul li b {
		font-size: 16px;
	}
	#joseikin05 {
		font-size: 14px;
	}
	#joseikin05 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#joseikin05 > strong {
		font-size: 16px;
		margin: 20px 0;
	}
	#joseikin05 > strong span {}
	#joseikin05 .jukyu_jisseki {
		flex-direction: column;
		width: auto;
	}
	#joseikin05 .jukyu_jisseki dl {
		width: auto;
		margin: 0 0 10px;
	}
	#joseikin05 .jukyu_jisseki dl dt {}
	#joseikin05 .jukyu_jisseki dl dt img {
		width: 60px;
		margin: 0 10px 0 0;
	}
	#joseikin05 .jukyu_jisseki dl dd {}
	#joseikin05 .jukyu_jisseki dl dd strong {
		font-size: 35px;
		justify-content: flex-start;
		padding: 0 0 0 40px;
		margin: 0px 0 0;
	}
	#joseikin05 .jukyu_jisseki dl dd strong:before {
		font-size: 15px;
	}
	#joseikin06 {
		font-size: 14px;
	}
	#joseikin06 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#joseikin06 ul {
		width: auto;
		font-size: 16px;
		margin: 20px auto 0;
	}
	#joseikin06 ul li {
		padding: 0 0 0 1.5rem;
	}
	#joseikin06 ul li:before {}
	#joseikin07 {
		font-size: 14px;
	}
	#joseikin07 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#joseikin07 dl {
		display: flex;
		font-size: 12px;
		margin: 20px 0 20px;
		height: 320px;
	}
	#joseikin07 dl:before {
		right: inherit;
		left: 11px;
		top: 170px;
		width: 48px;
	}
	#joseikin07 dl:after {
		right: inherit;
		left: 30px;
		top: 178px;
		height: 139px;
	}
	#joseikin07 dl dt {
		writing-mode: vertical-rl;
		width: 30px;
		height: 160px;
		margin: 0 10px 0 0;
	}
	#joseikin07 dl dt:before {
		width: 0;
		height: 10px;
		border-top: none;
		border-left: solid 8px #7FE5FF;
		top: inherit;
		bottom: -10px;
		left: 0;
		right: 0;
	}
	#joseikin07 dl dd {
		padding: 0;
	}
	#joseikin07 dl dd ul {
		flex-direction: column;
		height: 100%;
	}
	#joseikin07 dl dd ul li {
		margin: 0 0 5px 60px;
		line-height: 1.4;
		padding: 7px 10px 8px;
		width: 170px;
	}
	#joseikin07 dl dd ul li:before {
		height: 24px !important;
		top: inherit;
		left: 20px !important;
		text-align: left;
		line-height: 24px;
		background: linear-gradient(to right, #fff 0%, #fff 10px, transparent 10px, transparent 100%), linear-gradient(to bottom, transparent 0%, transparent 10px, #00ACD7 10px, #00ACD7 17px, transparent 17px, transparent 100%);
		z-index: 10;
	}
	#joseikin07 dl dd ul li:after {
		bottom: inherit;
	}
	#joseikin07 dl dd ul li:nth-of-type(1):before {
		top: 178px;
		width: 63px;
	}
	#joseikin07 dl dd ul li:nth-of-type(1):after {
		width: 64px;
		height: 176px;
		left: 76px;
		top: 12px;
	}
	#joseikin07 dl dd ul li:nth-of-type(2):before {
		top: 200px;
		width: 74px;
	}
	#joseikin07 dl dd ul li:nth-of-type(2):after {
		width: 52px;
		height: 151px;
		left: 88px;
		top: 66px;
	}
	#joseikin07 dl dd ul li:nth-of-type(3):before {
		top: 222px;
		width: 80px;
	}
	#joseikin07 dl dd ul li:nth-of-type(3):after {
		width: 40px;
		height: 120px;
		left: 100px;
		top: 119px;
	}
	#joseikin07 dl dd ul li:nth-of-type(4):before {
		top: 244px;
		width: 95px;
	}
	#joseikin07 dl dd ul li:nth-of-type(4):after {
		width: 28px;
		height: 81px;
		left: 112px;
		top: 180px;
	}
	#joseikin07 dl dd ul li:nth-of-type(5):before {
		top: 266px;
		width: 111px;
	}
	#joseikin07 dl dd ul li:nth-of-type(5):after {
		content: "";
		width: 16px;
		height: 41px;
		left: 124px;
		top: 240px;
	}
	#joseikin07 dl dd ul li:nth-of-type(6):before {
		top: 288px;
		width: 120px;
	}
	#joseikin07 dl dd ul li:nth-of-type(6):after {}
	#joseikin08 {
		font-size: 14px;
	}
	#joseikin08 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#joseikin08 table {}
	#joseikin08 table tr {}
	#joseikin08 table th {}
	#joseikin08 table td {
		font-size: 16px;
		padding: 10px 15px;
	}
	#joseikin08 table td:first-of-type {
		font-size: 14px;
		white-space: nowrap;
	}
	#joseikin08 table td b {}
	#joseikin08 table td small {
		font-size: 12px;
	}
}
/*/////////////////////////////////////////
ginko
/////////////////////////////////////////*/
#ginko01 {
	padding: 30px calc(50% - 600px) 40px;
	text-align: center;
	color: #00ACD7;
	font-size: 28px;
	font-weight: 900;
}
#ginko01 strong {
	display: block;
	font-size: 40px;
	margin: 0 0 30px;
}
#ginko02 {
	padding: 50px calc(50% - 510px) 30px;
	background: #7FE5FF;
	font-size: 15px;
}
#ginko02 h3 {
	color: #fff;
	font-size: 38px;
	font-weight: 900;
	margin: 0 0 50px;
	text-align: center;
}
#ginko02 ul {
	counter-reset: num;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#ginko02 ul li {
	position: relative;
	width: 480px;
	box-sizing: border-box;
	background: #fff;
	padding: 60px 25px 30px;
	margin: 0 0 40px;
}
#ginko02 ul li:before {
	position: absolute;
	top: 10px;
	left: -30px;
	background: #00ACD7;
	width: 154px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	counter-increment: num;
	content: "セットの理由 "counter(num);
	font-weight: 500;
	font-size: 18px;
}
#ginko02 ul li:after {
	position: absolute;
	top: 50px;
	left: -30px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 20px 0;
	border-color: transparent #00c9fb transparent transparent;
}
#ginko02 ul li strong {
	display: block;
	color: #00ACD7;
	font-size: 21px;
	font-weight: 900;
	height: 80px;
}
#ginko03 {
	padding: 50px calc(50% - 525px);
	font-size: 16px;
}
#ginko03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 50px;
}
#ginko03 ul {
	display: flex;
	justify-content: space-between;
}
#ginko03 ul > li {
	width: 485px;
	box-sizing: border-box;
	border: solid 7px #ccc;
	border-radius: 5px;
	padding: 15px 40px;
}
#ginko03 ul > li strong {
	display: block;
	text-align: center;
	font-size: 40px;
	font-weight: 900;
	margin: 0 0 10px;
}
#ginko03 ul > li a {
	display: block;
	text-align: center;
	background: #00ACD7;
	color: #fff;
	line-height: 40px;
	margin: 10px 0 0;
}
#ginko03 ul > li ol {
	font-weight: 700;
	font-size: 20px;
	margin: 0 0 10px;
}
#ginko03 ul > li ol li {
	position: relative;
	padding: 0 0 0 1.5rem;
}
#ginko03 ul > li ol li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#ginko04 {
	padding: 50px calc(50% - 520px);
	font-size: 21px;
}
#ginko04 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#ginko04 ul {
	font-weight: 900;
	margin: 2rem;
}
#ginko04 ul li {
	position: relative;
	padding: 0 0 0 1.5rem;
}
#ginko04 ul li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#ginko05 {
	padding: 50px calc(50% - 520px);
	font-size: 21px;
}
#ginko05 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#ginko05 span {
	color: #f00;
}
#ginko05 u {
	color: #f00;
}
#ginko05 strong {
	display: block;
	margin: 2rem 0;
	font-weight: 900;
	font-size: 28px;
}
#ginko05 b {
	color: #f00;
	font-weight: 700;
}
#ginko06 {
	padding: 50px calc(50% - 520px);
	font-size: 16px;
	counter-reset: num;
}
#ginko06 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 36px;
	font-weight: 900;
	margin: 0 0 30px;
}
#ginko06 ul {
	counter-reset: num;
	margin: 30px 0 0;
}
#ginko06 ul li {
	background: #A9E8F8;
	margin: 0 0 30px 30px;
	position: relative;
	padding: 22px 46px 40px;
}
#ginko06 ul li:before {
	position: absolute;
	top: 18px;
	left: -30px;
	background: #00ACD7;
	width: 154px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	counter-increment: num;
	content: "セットの理由 "counter(num);
	font-weight: 500;
	font-size: 18px;
}
#ginko06 ul li:after {
	position: absolute;
	top: 58px;
	left: -30px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 20px 0;
	border-color: transparent #00c9fb transparent transparent;
}
#ginko06 ul li strong {
	display: block;
	font-size: 21px;
	font-weight: 700;
	color: #333;
	margin: 0 0 30px 90px;
}
#ginko06 ul li > b {
	color: #f00;
}
#ginko06 ul li p {
	font-weight: 700;
	margin: 1rem 0;
}
#ginko06 ul li p small {
	display: block;
	font-size: 90%;
	font-weight: 500;
}
#ginko06 ul li .example {
	font-size: 14px;
	border: solid 3px #999;
	border-right: none;
	border-bottom: none;
	background: #fff;
	width: 100%;
	table-layout: fixed;
	margin: 0 0 20px;
}
#ginko06 ul li .example caption {
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: #00ACD7;
}
#ginko06 ul li .example tr {}
#ginko06 ul li .example tr th {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	background: #f5f5f5;
}
#ginko06 ul li .example tr th b {
	display: block;
	font-size: 16px;
	font-weight: 700;
}
#ginko06 ul li .example tr td {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
}
#ginko06 ul li .example tr td dl {}
#ginko06 ul li .example tr td dl small {
	font-size: 12px;
}
#ginko06 ul li .example tr td dl dt {
	font-weight: 700;
}
#ginko06 ul li .example tr td dl dd {
	margin: 0 0 0 10px;
}
#ginko06 ul li .tokurei {
	font-size: 14px;
	border: solid 3px #999;
	border-right: none;
	border-bottom: none;
	background: #fff;
	width: 100%;
	table-layout: fixed;
	margin: 0 0 20px;
}
#ginko06 ul li .tokurei small {
	font-size: 12px;
}
#ginko06 ul li .tokurei tr {}
#ginko06 ul li .tokurei tr th {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	background: #00ACD7;
	color: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 17px;
}
#ginko06 ul li .tokurei tr td {
	border: solid 3px #999;
	border-left: none;
	border-top: none;
	padding: 10px;
	text-align: center;
}
#ginko06 ul li .tokurei tr td:first-child {
	background: #f5f5f5;
}
#ginko07 {
	padding: 30px calc(50% - 520px);
	font-size: 16px;
	counter-reset: num;
}
#ginko07 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#ginko07 dl {
	margin: 20px 0 40px;
}
#ginko07 dl dt {
	float: left;
	color: #00ACD7;
}
#ginko07 dl dd {
	padding: 0 0 20px 135px;
}
#ginko07 ul {
	display: flex;
	padding: 30px 0 40px;
}
#ginko07 ul li {
	flex: auto;
	text-align: center;
	background: #B6ECFA;
	color: #00ACD7;
	padding: 2px 0 4px;
	position: relative;
}
#ginko07 ul li span {
	position: absolute;
	font-size: 12px;
	line-height: 21px;
	bottom: -26px;
	border: solid 5px;
	border-top: none;
	box-sizing: border-box;
	white-space: nowrap;
}
#ginko07 ul li span.flow01 {
	right: 85px;
	width: 280px;
}
#ginko07 ul li span.flow02 {
	right: 52px;
	width: 145px;
}
#ginko08 {
	padding: 50px calc(50% - 500px);
	font-size: 19px;
	background: #00ACD7;
	color: #fff;
}
#ginko08 h3 {
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#ginko08 table {
	border: solid 3px #ddd;
	border-right: none;
	border-bottom: none;
	color: #666;
	background: #fff;
	width: 100%;
	text-align: center;
	/* font-weight: 900; */
	font-size: 20px;
	margin: 30px 0 0;
	line-height: 1.4;
}
#ginko08 table tr {}
#ginko08 table th {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 10px 10px;
	background: #ccc;
	vertical-align: middle;
	font-weight: 700;
	line-height: 1.2;
}
#ginko08 table th small {
	font-weight: normal;
}
#ginko08 table td {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 10px 10px;
	vertical-align: middle;
}
#ginko08 table td:first-of-type {
	background: #f1f1f1;
	font-weight: 700;
}
#ginko08 table td b {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #f00;
}
#ginko08 ul {
	font-size: 12px;
}
#ginko08 ul li {
	position: relative;
	padding: 0 0 0 1.5rem;
	font-size: 90%;
}
#ginko08 ul li:before {
	content: "※";
	position: absolute;
	left: 0;
}
@media (max-width: 768px) {
	#ginko01 {
		font-size: 20px;
		line-height: 1.2;
	}
	#ginko01 strong {
		font-size: 30px;
	}
	#ginko02 {
		font-size: 14px;
	}
	#ginko02 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#ginko02 h3 br {
		display: none;
	}
	#ginko02 ul {
		flex-direction: column;
	}
	#ginko02 ul li {
		width: auto;
		padding: 50px 25px 30px;
		margin: 0 0 20px;
	}
	#ginko02 ul li:before {
		font-size: 14px;
		width: 130px;
		line-height: 30px;
		left: -10px;
	}
	#ginko02 ul li:after {
		top: 40px;
		left: -10px;
		border-width: 0 10px 10px 0;
	}
	#ginko02 ul li strong {
		font-size: 16px;
		line-height: 1.2;
		height: auto;
		margin: 0 0 10px;
	}
	#ginko03 {
		font-size: 14px;
	}
	#ginko03 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#ginko03 ul {
		flex-direction: column;
	}
	#ginko03 ul > li {
		width: auto;
		padding: 10px 20px;
		margin: 0 0 10px;
	}
	#ginko03 ul > li strong {
		font-size: 30px;
	}
	#ginko03 ul > li a {}
	#ginko03 ul > li ol {
		font-size: 16px;
	}
	#ginko03 ul > li ol li {}
	#ginko03 ul > li ol li:before {}
	#ginko04 {
		font-size: 14px;
	}
	#ginko04 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#ginko04 ul {
		/* font-size: 16px; */
		margin: 1rem;
	}
	#ginko04 ul li {
		padding: 0 0 0 1rem;
	}
	#ginko04 ul li:before {}
	#ginko05 {
		font-size: 14px;
	}
	#ginko05 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#ginko05 span {}
	#ginko05 u {}
	#ginko05 strong {
		font-size: 16px;
		margin: 1rem 0;
	}
	#ginko05 b {}
	#ginko06 {
		font-size: 14px;
	}
	#ginko06 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#ginko06 h3 br {
		display: none;
	}
	#ginko06 ul {}
	#ginko06 ul li {
		margin: 0 0 10px 0;
		padding: 50px 20px 20px;
	}
	#ginko06 ul li:before {
		font-size: 14px;
		width: 130px;
		line-height: 30px;
		left: -10px;
		top: 10px;
	}
	#ginko06 ul li:after {
		top: 40px;
		left: -10px;
		border-width: 0 10px 10px 0;
	}
	#ginko06 ul li strong {
		margin: 0 0 10px 0;
		font-size: 16px;
	}
	#ginko06 ul li > b {}
	#ginko06 ul li p {}
	#ginko06 ul li p small {}
	#ginko06 ul li .example {
		font-size: 12px;
	}
	#ginko06 ul li .example caption {}
	#ginko06 ul li .example tr {
		display: flex;
		flex-direction: column;
	}
	#ginko06 ul li .example tr th {
		padding: 5px 10px;
	}
	#ginko06 ul li .example tr th b {
		font-size: 14px;
	}
	#ginko06 ul li .example tr td {
		padding: 5px 10px;
	}
	#ginko06 ul li .example tr td dl {}
	#ginko06 ul li .example tr td dl small {}
	#ginko06 ul li .example tr td dl dt {}
	#ginko06 ul li .example tr td dl dd {}
	#ginko06 ul li .tokurei {}
	#ginko06 ul li .tokurei small {}
	#ginko06 ul li .tokurei tr {}
	#ginko06 ul li .tokurei tr th {
		font-size: 14px;
		padding: 5px;
	}
	#ginko06 ul li .tokurei tr td {
		font-size: 12px;
		vertical-align: middle;
		padding: 5px;
	}
	#ginko06 ul li .tokurei tr td:first-child {}
	#ginko07 {
		font-size: 14px;
	}
	#ginko07 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#ginko07 dl {
		margin: 0;
	}
	#ginko07 dl dt {
		float: inherit;
	}
	#ginko07 dl dd {
		padding: 0 0 10px 10px;
		font-size: 12px;
	}
	#ginko07 ul {
		flex-direction: column;
		padding: 20px 0;
	}
	#ginko07 ul li {
		width: 160px;
		text-align: right;
		padding: 2px 20px 4px;
		box-sizing: border-box;
	}
	#ginko07 ul li span {
		line-height: 21px;
		left: 160px;
		right: inherit !important;
		bottom: inherit;
		border: solid 5px;
		border-left: none;
		width: auto !important;
		text-align: left;
		padding: 0 20px 0;
		display: flex;
		align-items: center;
	}
	#ginko07 ul li span.flow01 {
		bottom: 15px;
		height: 58px;
	}
	#ginko07 ul li span.flow02 {
		bottom: 10px;
		height: 30px;
	}
	#ginko08 {
		font-size: 14px;
	}
	#ginko08 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#ginko08 table {
		font-size: 12px;
		border-bottom: solid 3px #ddd;
		border-top: none;
	}
	#ginko08 table tr {
		display: flex;
		flex-direction: column;
	}
	#ginko08 table th {
		display: none;
	}
	#ginko08 table th small {}
	#ginko08 table td {
		text-align: left;
		padding: 5px 10px 5px 20px;
		border-bottom: none;
	}
	#ginko08 table td br {
		display: none;
	}
	#ginko08 table td:first-of-type {
		border-top: solid 3px #ddd;
		font-size: 14px;
		padding: 10px 10px 10px 20px;
	}
	#ginko08 table td:before {
		content: "";
		white-space: pre;
		font-weight: 700;
		margin: 0 0 0 -10px;
	}
	#ginko08 table td:nth-of-type(2):before {
		content: "基本料金\A";
	}
	#ginko08 table td:nth-of-type(3):before {
		content: "補助金の着手金\A";
	}
	#ginko08 table td:nth-of-type(4):before {
		content: "成功報酬（融資）\A";
	}
	#ginko08 table td:nth-of-type(5):before {
		content: "成功報酬（補助金）\A";
	}
	#ginko08 table td b {}
	#ginko08 ul {}
	#ginko08 ul li {
		padding: 0 0 0 1rem;
	}
	#ginko08 ul li:before {}
}
/*/////////////////////////////////////////
keieiryokukoujoukeikaku
/////////////////////////////////////////*/
#keieiryoku01 {
	padding: 50px calc(50% - 600px);
	text-align: center;
	color: #00ACD7;
	font-size: 24px;
	font-weight: 700;
}
#keieiryoku01 strong {
	display: block;
	font-size: 40px;
}
#keieiryoku01 b {
	color: #f00;
}
#keieiryoku01 .notice {
	  font-size: 12px;
    color: #f00;
    font-weight: normal;
    text-align: left;
    width: 70%;
    margin: 20px auto 0;
}
#keieiryoku02 {
	padding: 50px calc(50% - 550px) 30px;
	background: #7FE5FF;
	/* text-align: center; */
	font-size: 19px;
	font-weight: 700;
	color: #f00;
}
#keieiryoku02 h3 {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 50px;
	text-align: center;
}
#keieiryoku02 strong {
	display: block;
	font-size: 33px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 45px;
	color: #333;
}
#keieiryoku02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1000px;
	margin: 0 auto 0;
	font-size: 22px;
	line-height: 1.2;
	color: #666;
}
#keieiryoku02 ul li {
	background: #fff;
	width: 472px;
	margin-bottom: 30px;
	padding: 15px 15px 20px 20px;
	box-sizing: border-box;
}
#keieiryoku02 ul li b {
	display: block;
	color: #00ACD7;
	font-size: 36px;
	margin-bottom: 5px;
}
#keieiryoku02 ul li b small {
	color: #f00;
	font-size: 16px;
	margin-left: 10px;
}
#keieiryoku03 {
	padding: 130px calc(50% - 528px) 30px;
	font-size: 20px;
	counter-reset: num;
}
#keieiryoku03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#keieiryoku03 strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	margin: 40px 0;
	text-align: center;
}
#keieiryoku03 dl {
	background: #B6ECFA;
	margin: 25px 0 0;
	padding: 25px 70px 40px;
	font-size: 14px;
}
#keieiryoku03 dl dt {
	margin: 0 -35px 20px;
	color: #333;
	font-size: 28px;
	font-weight: 700;
}
#keieiryoku03 dl dt:before {
	counter-increment: num;
	content: "特例"counter(num);
	color: #fff;
	background: #00ACD7;
	font-weight: 500;
	padding: 0 20px;
	margin: 0 20px 0 0;
}
#keieiryoku03 dl dd {}
#keieiryoku03 dl dd b {
	font-weight: 700;
	color: #333;
}
#keieiryoku03 dl dd p {
	text-align: center;
}
#keieiryoku03 dl dd ul {
	display: flex;
	flex-wrap: wrap;
	font-size: 24px;
	font-weight: 700;
	margin: 0 -25px 20px;
}
#keieiryoku03 dl dd ul li {
	position: relative;
	padding: 0 20px 0 25px;
}
#keieiryoku03 dl dd ul li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#keieiryoku03 dl dd .list {
	display: flex;
	margin: 20px 0;
	justify-content: space-between;
	font-size: 12px;
}
#keieiryoku03 dl dd .list table {
	background: #fff;
	border: solid 3px #666;
	border-right: none;
	border-bottom: none;
	color: #333;
	width: 49%;
}
#keieiryoku03 dl dd .list table caption {
	text-align: left;
	color: #666;
}
#keieiryoku03 dl dd .list table caption small {
	display: block;
	font-size: 10px;
	margin: 0 0 12px;
}
#keieiryoku03 dl dd .list table tr {}
#keieiryoku03 dl dd .list table tr th {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	vertical-align: middle;
	padding: 3px 5px;
	background: #00ACD7;
	color: #fff;
}
#keieiryoku03 dl dd .list table tr td {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	vertical-align: middle;
	padding: 3px 5px;
}
#keieiryoku03 dl dd > table {
	background: #fff;
	border: solid 3px #666;
	border-right: none;
	border-bottom: none;
	color: #333;
	width: 100%;
	margin: 20px auto;
}
#keieiryoku03 dl dd > table tr {}
#keieiryoku03 dl dd > table tr th {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 3px 5px;
	background: #00ACD7;
	color: #fff;
}
#keieiryoku03 dl dd > table tr td {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 3px 5px;
	text-align: center;
	vertical-align: middle;
}
#keieiryoku04 {
	padding: 30px calc(50% - 528px);
	font-size: 14px;
	counter-reset: num;
}
#keieiryoku04 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
	#keieiryoku04 .sticky_table_txt{display: none;}
#keieiryoku04 table {
	border: solid 3px #666;
	border-right: none;
	border-bottom: none;
	color: #333;
	width: 100%;
	margin: 20px auto 0;
}
#keieiryoku04 table tr {}
#keieiryoku04 table tr th:first-child, #keieiryoku04 table tr td:first-child {
	vertical-align: middle;
	background: #f5f5f5;
	color: #333;
	white-space: nowrap;
	font-weight: normal;
	text-align: center;
}
#keieiryoku04 table tr th {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 5px 5px;
	background: #00ACD7;
	color: #fff;
	vertical-align: middle;
	font-weight: 600;
}
#keieiryoku04 table tr th:last-of-type {
	/* background: #7FE5FF; */
	/* color: #666; */
}
#keieiryoku04 table tr td {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 5px 5px;
}
#keieiryoku04 table tr:nth-of-type(3) td {
	text-align: center;
}
#keieiryoku04 table tr td u {
	font-weight: 600;
}
#keieiryoku04 table tr td small {
	display: block;
	font-size: 86%;
}
#keieiryoku04 table tr td ul {}
#keieiryoku04 table tr td ul li {
	margin: 0 0 5px;
}
#keieiryoku04 table tr td ol li {
	position: relative;
	padding: 0 0 0 16px;
}
#keieiryoku04 table tr td ol li:before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
#keieiryoku04 ol.kome {
	counter-reset: num;
	margin: 0 0 20px;
	font-size: 12px;
	color: #999;
}
#keieiryoku04 ol.kome li {
	position: relative;
	padding: 0 0 0 25px;
}
#keieiryoku04 ol.kome li:before {
	counter-increment: num;
	content: "※"counter(num);
	position: absolute;
	left: 0;
}
#keieiryoku05 {
	padding: 30px calc(50% - 528px);
	font-size: 14px;
	counter-reset: num;
}
#keieiryoku05 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#keieiryoku05 dl {
	margin: 20px 0 40px;
}
#keieiryoku05 dl dt {
	position: relative;
	font-weight: 900;
	padding: 0 0 0 20px;
	font-size: 20px;
}
#keieiryoku05 dl dt b {
	display: inline-block;
	background: #00ACD7;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 0 8px 0;
	margin: 0 0 0 5px;
}
#keieiryoku05 dl dt small {
	color: #f00;
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 0 5px;
}
#keieiryoku05 dl dt:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#keieiryoku05 dl dd {}
#keieiryoku05 dl dd ul {
	display: flex;
	padding: 10px 0 40px;
}
#keieiryoku05 dl dd ul li {
	flex: auto;
	text-align: center;
	background: #B6ECFA;
	color: #00ACD7;
	padding: 2px 0 4px;
}
#keieiryoku05 dl dd ul li span {
	position: relative;
	font-size: 12px;
	line-height: 1.2;
}
#keieiryoku05 dl dd ul li span:before {
	content: "";
	position: absolute;
	top: 23px;
	border: solid 5px;
	border-top: none;
	box-sizing: border-box;
	white-space: nowrap;
}
#keieiryoku05 dl dd ul li span:after {
	content: "";
	position: absolute;
	box-sizing: border-box;
	white-space: nowrap;
}
#keieiryoku05 dl dd ul li span.flow01 {}
#keieiryoku05 dl dd ul li span.flow01:before {
	content: "約１ヶ月";
	width: 115px;
	right: 10px;
}
#keieiryoku05 dl dd ul li span.flow01:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow02 {}
#keieiryoku05 dl dd ul li span.flow02:before {
	content: "約１ヶ月";
	width: 387px;
	right: 10px;
	padding: 20px 0 0;
}
#keieiryoku05 dl dd ul li span.flow02:after {
	content: "申請～認定の間に設備導入でもOK";
	top: 63px;
	right: 109px;
}
#keieiryoku05 dl dd ul li span.flow03 {}
#keieiryoku05 dl dd ul li span.flow03:before {
	content: "60日以内";
	width: 311px;
	right: 10px;
	padding: 20px 130px 0 0;
}
#keieiryoku05 dl dd ul li span.flow03:after {
	content: "約１ヶ月";
	top: 63px;
	right: 206px;
}
#keieiryoku05 dl dd ul li span.flow04 {}
#keieiryoku05 dl dd ul li span.flow04:before {
	content: "60日以内";
	width: 296px;
	right: 10px;
	padding: 0 0 0 110px;
}
#keieiryoku05 dl dd ul li span.flow04:after {
	content: "約１ヶ月";
	top: 43px;
	right: 80px;
}
#keieiryoku05 dl dd ul li span.flow05 {}
#keieiryoku05 dl dd ul li span.flow05:before {
	content: "約１ヶ月";
	width: 200px;
	right: 10px;
}
#keieiryoku05 dl dd ul li span.flow05:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow06 {}
#keieiryoku05 dl dd ul li span.flow06:before {
	content: "約１ヶ月";
	width: 684px;
	right: 10px;
	padding: 20px 0 0;
}
#keieiryoku05 dl dd ul li span.flow06:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow07 {}
#keieiryoku05 dl dd ul li span.flow07:before {
	content: "約１ヶ月";
	width: 216px;
	right: 10px;
}
#keieiryoku05 dl dd ul li span.flow07:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow08 {}
#keieiryoku05 dl dd ul li span.flow08:before {
	content: "１年以内";
	width: 252px;
	right: 44px;
}
#keieiryoku05 dl dd ul li span.flow08:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow09 {}
#keieiryoku05 dl dd ul li span.flow09:before {
	content: "１ヶ月以上";
	width: 150px;
	right: 10px;
}
#keieiryoku05 dl dd ul li span.flow09:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow10 {}
#keieiryoku05 dl dd ul li span.flow10:before {
	content: "";
	width: 100px;
	height: 19px;
	left: -30px;
	border-right: none;
	border-width: 11px;
}
#keieiryoku05 dl dd ul li span.flow10:after {
	content: "";
	top: 24px;
	left: 68px;
	border-style: solid;
	border-width: 12px 0 12px 12px;
	border-color: transparent transparent transparent #00ACD7;
}
#keieiryoku05 dl dd ul li span.flow11 {}
#keieiryoku05 dl dd ul li span.flow11:before {
	content: "約１ヶ月";
	width: 95px;
	right: 10px;
}
#keieiryoku05 dl dd ul li span.flow11:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow12 {}
#keieiryoku05 dl dd ul li span.flow12:before {
	content: "約１ヶ月";
	width: 161px;
	right: 22px;
	padding: 20px 0 0;
}
#keieiryoku05 dl dd ul li span.flow12:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow13 {}
#keieiryoku05 dl dd ul li span.flow13:before {
	content: "１ヶ月以上";
	width: 350px;
	right: -60px;
	padding: 0 0 0 60px;
}
#keieiryoku05 dl dd ul li span.flow13:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow14 {}
#keieiryoku05 dl dd ul li span.flow14:before {
	content: "";
	width: 100px;
	height: 39px;
	left: -30px;
	border-right: none;
	border-width: 11px;
}
#keieiryoku05 dl dd ul li span.flow14:after {
	content: "";
	top: 44px;
	left: 68px;
	border-style: solid;
	border-width: 12px 0 12px 12px;
	border-color: transparent transparent transparent #00ACD7;
}
#keieiryoku05 dl dd ul li span.flow15 {}
#keieiryoku05 dl dd ul li span.flow15:before {
	content: "約１ヶ月";
	width: 215px;
	right: 10px;
}
#keieiryoku05 dl dd ul li span.flow15:after {
	content: "";
}
#keieiryoku05 dl dd ul li span.flow16 {}
#keieiryoku05 dl dd ul li span.flow16:before {
	content: "";
	width: 100px;
	height: 19px;
	left: -80px;
	border-right: none;
	border-width: 11px;
}
#keieiryoku05 dl dd ul li span.flow16:after {
	content: "";
	top: 24px;
	left: 18px;
	border-style: solid;
	border-width: 12px 0 12px 12px;
	border-color: transparent transparent transparent #00ACD7;
}
#keieiryoku06 {
	padding: 50px calc(50% - 500px);
	font-size: 19px;
	background: #00ACD7;
	color: #fff;
}
#keieiryoku06 h3 {
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#keieiryoku06 table {
	border: solid 3px #ddd;
	border-right: none;
	border-bottom: none;
	color: #666;
	background: #fff;
	width: 100%;
	text-align: center;
	font-weight: 900;
	font-size: 30px;
	margin: 30px 0 0;
}
#keieiryoku06 table tr {}
#keieiryoku06 table th {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	background: #ccc;
}
#keieiryoku06 table td {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	vertical-align: middle;
}
#keieiryoku06 table td:first-of-type {
	background: #f1f1f1;
}
#keieiryoku06 table td b {
	font-size: 36px;
}
#keieiryoku06 table td small {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #999;
}
#keieiryoku06 ul {
	font-size: 12px;
}
#keieiryoku06 ul li {
	position: relative;
	padding: 0 0 0 1.5rem;
	font-size: 90%;
}
#keieiryoku06 ul li:before {
	content: "※";
	position: absolute;
	left: 0;
}
@media (max-width: 768px) {
	#keieiryoku01 {
		font-size: 20px;
		line-height: 1.2;
		font-weight: 900;
	}
	#keieiryoku01 strong {
		font-size: 28px;
	}
	#keieiryoku01 b {}
	#keieiryoku02 {
		font-size: 14px;
		font-weight: normal;
	}
#keieiryoku01 .notice {
    width: 100%;
}
	#keieiryoku02 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
		font-weight: 900;
	}
	#keieiryoku02 strong {
		font-size: 16px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#keieiryoku02 ul {
		flex-direction: column;
		width: auto;
		font-size: 14px;
	}
	#keieiryoku02 ul li {
		width: auto;
		margin-bottom: 10px;
	}
	#keieiryoku02 ul li b {
		font-size: 20px;
		font-weight: 900;
	}
	#keieiryoku02 ul li b small {
		font-size: 14px;
		margin-left: 5px;
	}
	#keieiryoku03 {
		font-size: 14px;
	}
	#keieiryoku03 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#keieiryoku03 strong {
		font-size: 20px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#keieiryoku03 dl {
		margin: 10px 0 10px;
		padding: 10px 20px 10px;
	}
	#keieiryoku03 dl dt {
		font-size: 16px;
		margin: 0;
		padding: 30px 0 0;
		position: relative;
	}
	#keieiryoku03 dl dt:before {
		position: absolute;
		top: 0;
		left: 0;
	}
	#keieiryoku03 dl dd {}
	#keieiryoku03 dl dd b {}
	#keieiryoku03 dl dd p {}
	#keieiryoku03 dl dd ul {
		margin: 10px 0;
		font-size: 16px;
	}
	#keieiryoku03 dl dd ul li {
		padding: 0 10px 0 18px;
	}
	#keieiryoku03 dl dd ul li:before {}
	#keieiryoku03 dl dd .list {
		flex-direction: column;
		margin: 20px 0 0;
	}
	#keieiryoku03 dl dd .list table {
		width: 100%;
		margin: 0 0 20px;
	}
	#keieiryoku03 dl dd .list table caption {}
	#keieiryoku03 dl dd .list table caption small {
		margin: 0;
	}
	#keieiryoku03 dl dd .list table tr {}
	#keieiryoku03 dl dd .list table tr th {}
	#keieiryoku03 dl dd .list table tr td {}
	#keieiryoku03 dl dd > table {
		font-size: 12px;
	}
	#keieiryoku03 dl dd > table tr {}
	#keieiryoku03 dl dd > table tr th {}
	#keieiryoku03 dl dd > table tr td {}
	#keieiryoku04 {
		font-size: 14px;
	}
	#keieiryoku04 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	
	#keieiryoku04 .sticky_table_txt{display: block;margin: 20px auto 0;font-size: 12px;color: #999;}
	#keieiryoku04 .sticky_table_wrapper {
  overflow: scroll;
  width: calc(100vw - 2.5rem);
  /* height: 75vh; */
  border: solid 2px #666;
  /* border-top: 0; */
  /* border-bottom: 0; */
  /* margin: 20px auto 0; */
  /* padding: 20px 0 0; */
  position: relative;
}
	#keieiryoku04 table {
		font-size: 12px;
		/* table-layout: fixed; */
		width: 1000px;
		margin: 0;
		border: none;
	}
	#keieiryoku04 table tr {}
	#keieiryoku04 table tr th:first-child, #keieiryoku04 table tr td:first-child {
		width: 40px;
		position: -webkit-sticky;
		position: sticky;
		left: 0;
		z-index: 1;
		border-left: 0;
		border-right: 0;
		background: linear-gradient(to left, #666 1px, #f5f5f5 1px);
	}
	#keieiryoku04 table tr th {
    border: solid 1px #666;
    border-top: 0;
}
	#keieiryoku04 table tr th:last-of-type {}
	#keieiryoku04 table tr td {
    border: solid 1px #666;
    border-bottom: 0;
}
	#keieiryoku04 table tr td ul {}
	#keieiryoku04 table tr td ul li {}
	#keieiryoku04 table tr td ul li:before {}
	#keieiryoku05 {
		font-size: 14px;
	}
	#keieiryoku05 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#keieiryoku05 dl {
		font-size: 12px;
	}
	#keieiryoku05 dl dt {
		font-size: 14px;
		padding: 0 0 0 14px;
	}
	#keieiryoku05 dl dt b {
		font-size: 12px;
	}
	#keieiryoku05 dl dt small {}
	#keieiryoku05 dl dt:before {}
	#keieiryoku05 dl dd {}
	#keieiryoku05 dl dd p {
		display: none;
	}
	#keieiryoku05 dl dd ul {
		flex-direction: column;
		padding: 20px 0;
	}
	#keieiryoku05 dl dd ul li {
		width: 160px;
		text-align: right;
		padding: 10px 20px 10px;
		box-sizing: border-box;
		line-height: 1.2;
	}
	#keieiryoku05 dl dd ul li span {}
	#keieiryoku05 dl dd ul li span:before {
		width: auto !important;
		border: solid 5px;
		border-left: none;
		top: inherit;
		right: inherit !important;
		left: 20px;
		text-align: left;
		padding: 0 10px;
		display: flex;
		align-items: center;
	}
	#keieiryoku05 dl dd ul li span:after {
		right: inherit !important;
	}
	#keieiryoku05 dl dd ul li span.flow01 {}
	#keieiryoku05 dl dd ul li span.flow01:before {
		bottom: 5px;
		height: 38px;
	}
	#keieiryoku05 dl dd ul li span.flow01:after {}
	#keieiryoku05 dl dd ul li span.flow02 {}
	#keieiryoku05 dl dd ul li span.flow02:before {
		bottom: 5px;
		height: 112px;
		width: 110px !important;
		padding: 80px 10px 0;
	}
	#keieiryoku05 dl dd ul li span.flow02:after {
		left: 30px;
		top: 15px;
	}
	#keieiryoku05 dl dd ul li span.flow03 {}
	#keieiryoku05 dl dd ul li span.flow03:before {
		bottom: 5px;
		height: 73px;
		padding: 0 10px 50px;
	}
	#keieiryoku05 dl dd ul li span.flow03:after {
		left: 30px;
		top: -76px;
	}
	#keieiryoku05 dl dd ul li span.flow04 {}
	#keieiryoku05 dl dd ul li span.flow04:before {
		bottom: 5px;
		height: 74px;
		padding: 45px 10px 0;
		width: 110px !important;
	}
	#keieiryoku05 dl dd ul li span.flow04:after {
		left: 30px;
		top: 13px;
	}
	#keieiryoku05 dl dd ul li span.flow05 {}
	#keieiryoku05 dl dd ul li span.flow05:before {
		bottom: 5px;
		height: 36px;
		padding: 0 10px 0;
	}
	#keieiryoku05 dl dd ul li span.flow05:after {}
	#keieiryoku05 dl dd ul li span.flow06 {}
	#keieiryoku05 dl dd ul li span.flow06:before {
		bottom: 5px;
		height: 110px;
		padding: 80px 10px 0;
		width: 110px !important;
	}
	#keieiryoku05 dl dd ul li span.flow06:after {}
	#keieiryoku05 dl dd ul li span.flow07 {}
	#keieiryoku05 dl dd ul li span.flow07:before {
		bottom: 8px;
		height: 36px;
	}
	#keieiryoku05 dl dd ul li span.flow07:after {}
	#keieiryoku05 dl dd ul li span.flow08 {}
	#keieiryoku05 dl dd ul li span.flow08:before {
		bottom: 5px;
		height: 36px;
	}
	#keieiryoku05 dl dd ul li span.flow08:after {}
	#keieiryoku05 dl dd ul li span.flow09 {}
	#keieiryoku05 dl dd ul li span.flow09:before {
		bottom: 5px;
		height: 40px;
	}
	#keieiryoku05 dl dd ul li span.flow09:after {}
	#keieiryoku05 dl dd ul li span.flow10 {}
	#keieiryoku05 dl dd ul li span.flow10:before {
		border: solid 9px;
		border-bottom: 0;
		border-left: 0;
		left: 20px;
		top: 6px;
		height: 50px;
	}
	#keieiryoku05 dl dd ul li span.flow10:after {
		border-width: 12px 12px 0 12px;
		border-color: #00ACD7 transparent transparent transparent;
		top: 52px;
		left: 32px;
	}
	#keieiryoku05 dl dd ul li span.flow11 {}
	#keieiryoku05 dl dd ul li span.flow11:before {
		bottom: 5px;
		height: 40px;
	}
	#keieiryoku05 dl dd ul li span.flow11:after {}
	#keieiryoku05 dl dd ul li span.flow12 {}
	#keieiryoku05 dl dd ul li span.flow12:before {
		bottom: 5px;
		height: 43px;
		width: 110px !important;
		padding: 15px 10px 0;
	}
	#keieiryoku05 dl dd ul li span.flow12:after {}
	#keieiryoku05 dl dd ul li span.flow13 {}
	#keieiryoku05 dl dd ul li span.flow13:before {
		bottom: -29px;
		height: 105px;
		padding: 75px 10px 0;
	}
	#keieiryoku05 dl dd ul li span.flow13:after {}
	#keieiryoku05 dl dd ul li span.flow14 {}
	#keieiryoku05 dl dd ul li span.flow14:before {
		border: solid 9px;
		border-bottom: 0;
		border-left: 0;
		left: 20px;
		top: 6px;
		height: 50px;
		width: 110px !important;
	}
	#keieiryoku05 dl dd ul li span.flow14:after {
		border-width: 12px 12px 0 12px;
		border-color: #00ACD7 transparent transparent transparent;
		top: 53px;
		left: 113px;
	}
	#keieiryoku05 dl dd ul li span.flow15 {}
	#keieiryoku05 dl dd ul li span.flow15:before {
		bottom: 5px;
		height: 40px;
	}
	#keieiryoku05 dl dd ul li span.flow15:after {}
	#keieiryoku05 dl dd ul li span.flow16 {}
	#keieiryoku05 dl dd ul li span.flow16:before {
		border: solid 9px;
		border-bottom: 0;
		border-left: 0;
		left: 20px;
		top: 6px;
	}
	#keieiryoku05 dl dd ul li span.flow16:after {
		border-width: 12px 12px 0 12px;
		border-color: #00ACD7 transparent transparent transparent;
		top: 19px;
		left: 32px;
	}
	#keieiryoku06 {
		font-size: 14px;
	}
	#keieiryoku06 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#keieiryoku06 table {}
	#keieiryoku06 table tr {}
	#keieiryoku06 table th {}
	#keieiryoku06 table td {
		font-size: 16px;
		padding: 10px 15px;
	}
	#keieiryoku06 table td:first-of-type {
		font-size: 14px;
		white-space: nowrap;
	}
	#keieiryoku06 table td b {
		font-size: 20px;
	}
	#keieiryoku06 table td small {
		font-size: 12px;
	}
	#keieiryoku06 ul {}
	#keieiryoku06 ul li {
		padding: 0 0 0 1rem;
	}
	#keieiryoku06 ul li:before {}
}
/*/////////////////////////////////////////
sentansetsubi
/////////////////////////////////////////*/
#sentansetsubi01 {
	padding: 50px calc(50% - 600px);
	text-align: center;
	color: #f00;
	font-size: 27px;
	font-weight: 700;
}
#sentansetsubi01 strong {
	display: block;
	font-size: 40px;
	color: #00ACD7;
}
#sentansetsubi01 .notice {
	  font-size: 12px;
    color: #f00;
    font-weight: normal;
    text-align: left;
    width: 70%;
    margin: 20px auto 0;
}
#sentansetsubi02 {
	padding: 50px calc(50% - 550px) 30px;
	background: #7FE5FF;
	/* text-align: center; */
	font-size: 19px;
	font-weight: 700;
	color: #f00;
}
#sentansetsubi02 h3 {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 50px;
	text-align: center;
}
#sentansetsubi02 strong {
	display: block;
	font-size: 33px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 45px;
	color: #333;
}
#sentansetsubi02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1000px;
	margin: 0 auto 0;
	font-size: 22px;
	line-height: 1.2;
	color: #666;
}
#sentansetsubi02 ul li {
	background: #fff;
	width: 320px;
	margin-bottom: 30px;
	padding: 15px 15px 20px 20px;
	box-sizing: border-box;
}
#sentansetsubi02 ul li b {
	display: block;
	color: #00ACD7;
	font-size: 36px;
	margin-bottom: 5px;
	font-weight: 900;
}
#sentansetsubi03 {
	padding: 130px calc(50% - 528px) 30px;
	font-size: 20px;
	counter-reset: num;
}
#sentansetsubi03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#sentansetsubi03 strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	margin: 40px 0;
	text-align: center;
}
#sentansetsubi03 dl {
	border: solid 7px #ccc;
	border-radius: 5px;
	margin: 30px 0;
	padding: 15px 40px;
	color: #f00;
}
#sentansetsubi03 dl dt {
	font-size: 24px;
	font-weight: 900;
}
#sentansetsubi03 dl dd {}
#sentansetsubi03 dl dd ul {
	margin: 0 1rem 0;
}
#sentansetsubi03 dl dd ul li {
	position: relative;
	padding: 0 0 0 24px;
}
#sentansetsubi03 dl dd ul li:before {
	content: "◎";
	position: absolute;
	left: 0;
}
#sentansetsubi04 {
	padding: 30px calc(50% - 528px) 30px;
	font-size: 20px;
	counter-reset: num;
}
#sentansetsubi04 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
}
#sentansetsubi04 dl {
	background: #B6ECFA;
	margin: 25px 0 0;
	padding: 25px 70px 40px;
	font-size: 14px;
}
#sentansetsubi04 dl dt {
	margin: 0 -35px 20px;
	color: #333;
	font-size: 28px;
	font-weight: 700;
}
#sentansetsubi04 dl dt:before {
	counter-increment: num;
	content: "特例"counter(num);
	color: #fff;
	background: #00ACD7;
	font-weight: 500;
	padding: 0 20px;
	margin: 0 20px 0 0;
}
#sentansetsubi04 dl dd {}
#sentansetsubi04 dl dd ul {
	display: flex;
	flex-wrap: wrap;
	font-size: 24px;
	font-weight: 700;
	margin: 0 -25px 20px;
}
#sentansetsubi04 dl dd ul li {
	position: relative;
	padding: 0 20px 0 25px;
}
#sentansetsubi04 dl dd ul li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	color: #00ACD7;
}
#sentansetsubi04 dl dd > table {
	background: #fff;
	border: solid 3px #666;
	border-right: none;
	border-bottom: none;
	color: #333;
	width: 100%;
	margin: 20px auto;
}
#sentansetsubi04 dl dd > table tr {}
#sentansetsubi04 dl dd > table tr th {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 3px 5px;
	background: #00ACD7;
	color: #fff;
}
#sentansetsubi04 dl dd > table tr td {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 3px 5px;
	text-align: center;
}
#sentansetsubi06 {
	padding: 30px calc(50% - 528px);
	font-size: 14px;
	counter-reset: num;
}
#sentansetsubi06 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#sentansetsubi06 table {
	border: solid 3px #666;
	border-right: none;
	border-bottom: none;
	color: #333;
	width: 100%;
	margin: 20px auto 0;
	table-layout: fixed;
}
#sentansetsubi06 table tr {}
#sentansetsubi06 table tr:nth-of-type(odd) {
	background: #f5f5f5;
}
#sentansetsubi06 table tr th {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 5px 5px;
	background: #00ACD7;
	color: #fff;
	vertical-align: middle;
}
#sentansetsubi06 table tr th small {
	display: block;
	font-size: 12px;
}
#sentansetsubi06 table tr td {
	border: solid 3px #666;
	border-top: none;
	border-left: none;
	padding: 5px 5px;
	text-align: center;
	vertical-align: middle;
}
#sentansetsubi06 ul {
	counter-reset: num2;
	margin: 0 0 20px;
}
#sentansetsubi06 ul li {
	position: relative;
	padding: 0 0 0 30px;
}
#sentansetsubi06 ul li:before {
	counter-increment: num2;
	content: "※"counter(num2);
	position: absolute;
	left: 0;
}
#sentansetsubi07 {
	padding: 50px calc(50% - 500px);
	font-size: 19px;
	background: #00ACD7;
	color: #fff;
}
#sentansetsubi07 h3 {
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
	text-align: center;
}
#sentansetsubi07 table {
	border: solid 3px #ddd;
	border-right: none;
	border-bottom: none;
	color: #666;
	background: #fff;
	width: 100%;
	text-align: center;
	font-weight: 900;
	font-size: 30px;
	margin: 30px 0 0;
}
#sentansetsubi07 table tr {}
#sentansetsubi07 table th {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	background: #ccc;
}
#sentansetsubi07 table td {
	border: solid 3px #ddd;
	border-top: none;
	border-left: none;
	padding: 5px 10px;
	vertical-align: middle;
}
#sentansetsubi07 table td:first-of-type {
	background: #f1f1f1;
}
#sentansetsubi07 table td b {
	font-size: 36px;
}
#sentansetsubi07 table td small {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #999;
}
#sentansetsubi07 small {
	font-size: 14px;
	display: block;
}
#sentansetsubi08 {
	padding: 50px calc(50% - 528px) 70px;
	font-size: 14px;
	counter-reset: num;
}
#sentansetsubi08 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 30px;
}
#sentansetsubi08 dl {
	margin: 20px 0 0px;
}
#sentansetsubi08 dl dt {
	position: relative;
	font-weight: 900;
	/* padding: 0 0 0 20px; */
	font-size: 20px;
}
#sentansetsubi08 dl dt b {
	display: inline-block;
	background: #00ACD7;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 0 8px 0;
	margin: 0 0 0 5px;
}
#sentansetsubi08 dl dt small {
	color: #f00;
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 0 5px;
}
#sentansetsubi08 dl dd {}
#sentansetsubi08 dl dd b {
	color: #f00;
}
#sentansetsubi08 dl dd ul {
	display: flex;
	padding: 5px 0 0px;
}
#sentansetsubi08 dl dd ul li {
	flex: auto;
	text-align: center;
	background: #B6ECFA;
	color: #00ACD7;
	padding: 2px 0 4px;
}
#sentansetsubi08 dl dd ul li span {
	position: relative;
	font-size: 12px;
	line-height: 1.2;
}
#sentansetsubi08 dl dd ul li span:before {
	content: "";
	position: absolute;
	top: 23px;
	border: solid 5px;
	border-top: none;
	box-sizing: border-box;
	white-space: nowrap;
}
#sentansetsubi08 dl dd ul li span:after {
	content: "";
	position: absolute;
	box-sizing: border-box;
	white-space: nowrap;
}
#sentansetsubi08 dl dd ul li span.flow01 {}
#sentansetsubi08 dl dd ul li span.flow01:before {
	content: "約１ヶ月";
	width: 115px;
	right: 10px;
}
#sentansetsubi08 dl dd ul li span.flow01:after {
	content: "";
}
#sentansetsubi08 dl dd ul li span.flow02 {}
#sentansetsubi08 dl dd ul li span.flow02:before {
	content: "約１ヶ月";
	width: 387px;
	right: 10px;
	padding: 20px 0 0;
}
#sentansetsubi08 dl dd ul li span.flow02:after {
	content: "申請～認定の間に設備導入でもOK";
	top: 63px;
	right: 109px;
}
@media (max-width: 768px) {
	#sentansetsubi01 {
		font-size: 20px;
		line-height: 1.2;
		font-weight: 900;
	}
	#sentansetsubi01 strong {
		font-size: 28px;
	}
#sentansetsubi01 .notice {
    width: 100%;
}
	#sentansetsubi02 {
		font-size: 14px;
		font-weight: normal;
	}
	#sentansetsubi02 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
		font-weight: 900;
	}
	#sentansetsubi02 strong {
		font-size: 16px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#sentansetsubi02 ul {
		flex-direction: column;
		width: auto;
		font-size: 14px;
	}
	#sentansetsubi02 ul li {
		width: auto;
		margin-bottom: 10px;
	}
	#sentansetsubi02 ul li b {
		font-size: 20px;
		font-weight: 900;
	}
	#sentansetsubi03 {
		font-size: 14px;
	}
	#sentansetsubi03 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#sentansetsubi03 strong {
		font-size: 20px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#sentansetsubi03 dl {
		padding: 10px 20px;
		margin: 20px 0 0;
	}
	#sentansetsubi03 dl dt {
		font-size: 16px;
	}
	#sentansetsubi03 dl dd {}
	#sentansetsubi03 dl dd ul {}
	#sentansetsubi03 dl dd ul li {
		padding: 0 0 0 16px;
	}
	#sentansetsubi03 dl dd ul li:before {}
	#sentansetsubi04 {
		font-size: 14px;
	}
	#sentansetsubi04 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#sentansetsubi04 dl {
		margin: 10px 0 10px;
		padding: 10px 20px 10px;
	}
	#sentansetsubi04 dl dt {
		font-size: 16px;
		margin: 0;
		padding: 30px 0 0;
		position: relative;
	}
	#sentansetsubi04 dl dt:before {
		position: absolute;
		top: 0;
		left: 0;
	}
	#sentansetsubi04 dl dd {}
	#sentansetsubi04 dl dd ul {
		margin: 10px 0;
		font-size: 16px;
	}
	#sentansetsubi04 dl dd ul li {
		padding: 0 10px 0 18px;
	}
	#sentansetsubi04 dl dd ul li:before {}
	#sentansetsubi04 dl dd > table {
		font-size: 12px;
	}
	#sentansetsubi04 dl dd > table tr {}
	#sentansetsubi04 dl dd > table tr th {}
	#sentansetsubi04 dl dd > table tr td {}
	#sentansetsubi06 {
		font-size: 14px;
	}
	#sentansetsubi06 h3 {
		font-size: 24px;
		line-height: 1.2;
		margin: 0 0 30px;
	}
	#sentansetsubi06 table {
		font-size: 12px;
	}
	#sentansetsubi06 table tr {}
	#sentansetsubi06 table tr:nth-of-type(odd) {}
	#sentansetsubi06 table tr th {}
	#sentansetsubi06 table tr th small {}
	#sentansetsubi06 table tr td {}
	#sentansetsubi06 ul {
		font-size: 12px;
	}
	#sentansetsubi06 ul li {}
	#sentansetsubi06 ul li:before {}
	#sentansetsubi07 {
		font-size: 14px;
	}
	#sentansetsubi07 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#sentansetsubi07 table {}
	#sentansetsubi07 table tr {}
	#sentansetsubi07 table th {}
	#sentansetsubi07 table td {
		font-size: 16px;
		padding: 10px 15px;
	}
	#sentansetsubi07 table td:first-of-type {
		font-size: 14px;
		white-space: nowrap;
	}
	#sentansetsubi07 table td b {
		font-size: 20px;
	}
	#sentansetsubi07 table td small {
		font-size: 12px;
	}
	#sentansetsubi07 small {
		font-size: 12px;
	}
	#sentansetsubi08 {
		font-size: 14px;
	}
	#sentansetsubi08 h3 {
		font-size: 24px;
		line-height: 1.2;
	}
	#sentansetsubi08 dl {}
	#sentansetsubi08 dl dt {
		font-size: 14px;
	}
	#sentansetsubi08 dl dt b {}
	#sentansetsubi08 dl dt small {}
	#sentansetsubi08 dl dd {}
	#sentansetsubi08 dl dd b {}
	#sentansetsubi08 dl dd ul {
		flex-direction: column;
	}
	#sentansetsubi08 dl dd ul li {
		padding: 10px 20px 10px;
		box-sizing: border-box;
		line-height: 1.2;
	}
	#sentansetsubi08 dl dd ul li span {}
	#sentansetsubi08 dl dd ul li span:before {}
	#sentansetsubi08 dl dd ul li span:after {}
	#sentansetsubi08 dl dd ul li span.flow01 {}
	#sentansetsubi08 dl dd ul li span.flow01:before {}
	#sentansetsubi08 dl dd ul li span.flow01:after {}
	#sentansetsubi08 dl dd ul li span.flow02 {}
	#sentansetsubi08 dl dd ul li span.flow02:before {}
	#sentansetsubi08 dl dd ul li span.flow02:after {}
}
/*/////////////////////////////////////////
branding
/////////////////////////////////////////*/
#branding01 {
	padding: 40px calc(50% - 600px);
	text-align: center;
	color: #00ACD7;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.2;
}
#branding01 strong {
	display: block;
	font-size: 40px;
	margin: 0 0 20px;
}
#branding02 {
	padding: 50px calc(50% - 515px) 70px;
	background: #7FE5FF;
	font-size: 25px;
}
#branding02 h3 {
	color: #fff;
	font-size: 45px;
	font-weight: 900;
	margin: 0 0 40px;
	text-align: center;
}
#branding02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 18px;
	margin: 40px 0 0;
	line-height: 1.4;
}
#branding02 ul li {
	width: 480px;
	box-sizing: border-box;
	background: #fff;
	padding: 20px 35px 30px;
	margin: 0 0 25px;
}
#branding02 ul li strong {
	color: #00ACD7;
	display: block;
	font-weight: 900;
	font-size: 35px;
	line-height: 1.2;
	margin: 0 0 10px;
}
#branding03 {
	padding: 50px calc(50% - 515px) 100px;
	font-size: 22px;
}
#branding03 h3 {
	color: #00ACD7;
	text-align: center;
	font-size: 46px;
	font-weight: 900;
	margin: 0 0 40px;
}
#branding03 b {
	color: #f00;
}
#branding03 ul {
	margin: 2rem;
	color: #00ACD7;
	font-weight: 900;
}
#branding03 ul li {
	position: relative;
	padding: 0 0 0 2rem;
}
#branding03 ul li:before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
}
#branding03 ol {
	margin: 1.5rem 0;
}
#branding03 ol li {
	position: relative;
	padding: 0 0 0 1.5rem;
}
#branding03 ol li:before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
#branding03 ol li u {
	color: #f00;
	font-weight: 900;
}
#branding03 a.app {
	background: #00ACD7;
	color: #fff;
	display: block;
	text-align: center;
	font-size: 34px;
	border-radius: 3px;
	line-height: 95px;
	margin: 50px auto 0;
	width: 95%;
}
#branding04 {
	padding: 50px calc(50% - 515px) 70px;
	background: #7FE5FF;
	font-size: 16px;
	color: #333;
}
#branding04 h3 {
	color: #fff;
	font-size: 32px;
	font-weight: 900;
	margin: 0 0 40px;
	text-align: center;
}
#branding04 > strong {
	font-size: 26px;
	font-weight: 900;
	margin: 0 0 40px;
	text-align: center;
	display: block;
}
#branding04 dl {
	counter-reset: num;
}
#branding04 dl div {
	font-weight: bold;
	padding: 0 0 0 10px;
}
#branding04 dl dt {
	font-size: 20px;
	font-weight: 900;
	color: #000;
	margin: 40px 0 10px;
}
#branding04 dl dd {
	position: relative;
	margin: 0 0 10px 20px;
	padding: 0 0 0 1.7rem;
}
#branding04 dl dd .t-dot {
	text-emphasis: dot;
	font-weight: normal;
	padding: 0;
	display: inline;
}
#branding04 dl dd:before {
	counter-increment: num;
	/*content: "☑ "counter(num)".";*/
	content: counter(num)".";
	position: absolute;
	left: 0;
	font-weight: 900;
}
#branding04 dl dd ol {
	counter-reset: num;
}
#branding04 dl dd ol > li {
	position: relative;
	margin: 10px 0 10px 20px;
	padding: 0 0 0 2.5rem;
}
#branding04 dl dd ol > li:before {
	counter-increment: num;
	/*content: "☑ ("counter(num)")";*/
	content: "("counter(num)")";
	position: absolute;
	left: 0;
	font-weight: 900;
}
#branding04 dl dd ol li > ul {
	list-style: disc;
}
#branding04 dl dd > ul {
	list-style: disc;
}
#branding04 dl dd > ul li {
	margin: 0 0 0 1.5rem;
}
#branding04 dl dd span {
	display: block;
	position: relative;
	;
	padding: 0px 10px 5px 2rem;
}
#branding04 dl dd span:before {
	content: "※";
	position: absolute;
	left: 10px;
}
@media (max-width: 768px) {
	#branding01 {
		font-size: 20px;
		line-height: 1.2;
	}
	#branding01 strong {
		font-size: 28px;
	}
	#branding02 {
		font-size: 14px;
	}
	#branding02 h3 {
		font-size: 24px;
		margin: 0 0 30px;
	}
	#branding02 ul {
		font-size: 14px;
		margin: 20px 0 0;
		flex-direction: column;
	}
	#branding02 ul li {
		margin: 0 0 10px;
		padding: 20px 20px;
		width: auto;
	}
	#branding02 ul li strong {
		font-size: 20px;
		line-height: 1.2;
		margin: 0 0 10px;
	}
	#branding03 {
		font-size: 14px;
	}
	#branding03 h3 {
		font-size: 28px;
		margin: 0 0 30px;
	}
	#branding03 b {}
	#branding03 ul {
		margin: 1rem;
	}
	#branding03 ul li {
		padding: 0 0 0 1rem;
	}
	#branding03 ul li:before {}
	#branding03 ol {}
	#branding03 ol li {
		padding: 0 0 0 1rem;
	}
	#branding03 ol li:before {}
	#branding03 ol li u {}
	#branding03 a.app {}
	#branding04 {}
	#branding04 h3 {
		font-size: 20px;
	}
	#branding04 > strong {
		font-size: 18px;
	}
	#branding04 dl {}
	#branding04 dl div {
		padding: 0;
	}
	#branding04 dl dt {
		font-size: 18px;
	}
	#branding04 dl dd {
		margin: 0 0 5px 0;
	}
	#branding04 dl dd:before {}
	#branding04 dl dd ol {}
	#branding04 dl dd ol li {
		margin: 5px 0 5px 10px;
	}
	#branding04 dl dd ol li:before {}
	#branding04 dl dd span {}
	#branding04 dl dd span:before {}
}
/*/////////////////////////////////////////
company.php
/////////////////////////////////////////*/
#company {
	font-size: 16px;
	padding: 100px calc(50% - 500px);
}
#company h2 {
	display: block;
	font-size: 38px;
	line-height: 1;
	margin: 0 0 40px;
	color: #00ACD7;
	font-weight: 900;
	text-align: center;
}
#company strong {
	display: block;
	font-size: 28px;
	line-height: 1;
	margin: 0 0 40px;
	font-weight: 900;
	text-align: center;
}
#company strong br {
	display: none;
}
#company strong:before {
	content: "「";
}
#company strong:after {
	content: "」";
}
#company ul {
	font-size: 21px;
	font-weight: 700;
	margin: 0 auto 20px;
	display: table;
}
#company ul li {
	position: relative;
	padding: 0 0 10px 2rem;
}
#company ul li:before {
	content: "✔";
	position: absolute;
	color: #029102;
	left: 0;
}
#company01 {
	padding: 100px calc(50% - 550px);
	background: #090;
	color: #fff;
	font-size: 11px;
}
#company01 h3 {
	display: block;
	font-size: 38px;
	line-height: 1;
	margin: 0 0 50px;
	font-weight: 900;
	text-align: center;
}
#company01 > dl {
	display: flex;
	background: #fff;
	color: #666;
	margin: 20px;
	padding: 15px;
	line-height: 1.2;
	/* align-items: center; */
	justify-content: space-between;
}
#company01 > dl > dt {
	position: relative;
}
#company01 > dl > dt div {
	position: absolute;
	color: #333;
	bottom: 5px;
	left: 0;
	right: 0;
	text-align: center;
	text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
#company01 > dl > dt strong {
	font-size: 18px;
	margin: 0 0 0 10px;
}
#company01 > dl > dt img {
	width: 220px;
}
#company01 > dl > dd {
	width: calc(100% - 240px);
	position: relative;
	/* font-size: 14px; */
}
#company01 > dl > dd strong {
	display: block;
	font-weight: 700;
	font-size: 18px;
	margin: -5px 0 10px;
}
#company01 > dl > dd strong span {
	font-size: 24px;
	margin: 0 0 0 10px;
}
#company01 > dl > dd p {
	margin: 1rem 0;
}
#company01 > dl > dd dl {
	overflow-y: auto;
	height: 100px;
	position: absolute;
	bottom: 0;
	width: 100%;
}
#company01 > dl > dd dl li {
	list-style: none;
}
#company01 > dl > dd dl li b {
	font-weight: 700;
	display: inline-block;
	margin: 0 0 5px;
}
#company01 > dl > dd dl dt {
	float: left;
	padding: 0 .5rem 0;
}
#company01 > dl > dd dl dd {
	padding: 0 0 0 58px;
}
#company02 {
	font-size: 16px;
	padding: 100px calc(50% - 550px);
	background: #F5F5F5;
}
#company02 h3 {
	display: block;
	font-size: 38px;
	line-height: 1;
	margin: 0 0 50px;
	font-weight: 900;
	text-align: center;
	color: #00ACD7;
}
#company02 table {
	width: 100%;
	margin-bottom: 50px;
	border-bottom: double 3px #ddd;
}
#company02 table tr {
	border-bottom: dotted 1px #ccc;
}
#company02 table th {
	padding: 20px;
	font-weight: 500;
	width: 250px;
}
#company02 table td {
	padding: 20px;
}
#company02 table td small {
	font-size: 12px;
}
#company02 table td ul {
	list-style: disc;
	margin-left: 1.5rem;
}
#company02 table td ul li {
	margin-bottom: .5rem;
}
#company02 table td dl {}
#company02 table td dl dt {
	float: left;
}
#company02 table td dl dd {
	padding: 0 0 10px 100px;
}
#company02 table td a {
	color: #00ACD7;
}
#company03 {
	font-size: 16px;
	padding: 0 calc(50% - 300px) 100px;
	background: #fff;
	color: #fff;
}
#company03 img {
	transform: rotate(-0.5deg);
}
@media (max-width: 768px) {
	#company {
		font-size: 14px;
	}
	#company h2 {
		font-size: 28px;
		margin: 0 0 30px;
	}
	#company strong {
		line-height: 1.2;
		font-size: 21px;
	}
	#company strong br {
		display: block;
	}
	#company strong:before {
		content: none;
	}
	#company strong:after {
		content: none;
	}
	#company ul {
		font-size: 16px;
		margin: 0 0 10px;
	}
	#company ul li {
		padding: 0 0 10px 1rem;
	}
	#company ul li:before {}
	#company01 {}
	#company01 h3 {
		font-size: 28px;
		margin: 0 0 30px;
	}
	#company01 > dl {
		margin: 0 0 10px;
		flex-direction: column;
	}
	#company01 > dl > dt {
		text-align: center;
	}
	#company01 > dl > dt div {}
	#company01 > dl > dt strong {}
	#company01 > dl > dt img {}
	#company01 > dl > dd {
		width: auto;
	}
	#company01 > dl > dd strong {
		text-align: center;
		margin: 0 0 20px;
	}
	#company01 > dl > dd strong span {}
	#company01 > dl > dd p {}
	#company01 > dl > dd dl {
		position: relative;
	}
	#company01 > dl > dd dl li {}
	#company01 > dl > dd dl li b {}
	#company01 > dl > dd dl dt {}
	#company01 > dl > dd dl dd {}
	#company02 {}
	#company02 h3 {
		font-size: 28px;
		margin: 0 0 30px;
	}
	#company02 table {
		font-size: 12px;
		margin-bottom: 10px;
	}
	#company02 table tr {
		display: flex;
		flex-direction: column;
	}
	#company02 table th {
		font-size: 14px;
		text-align: left;
		padding: 10px 10px 0;
		font-weight: 700;
	}
	#company02 table td {
		padding: 10px 20px 10px;
	}
	#company02 table td small {}
	#company02 table td ul {}
	#company02 table td ul li {}
	#company02 table td dl {}
	#company02 table td dl dt {}
	#company02 table td dl dd {
		padding: 0 0 10px 70px;
	}
	#company02 table td a {}
	#company03 {}
	#company03 img {}
}
/*/////////////////////////////////////////
recruit.php
/////////////////////////////////////////*/
#recruit01 {
	padding: 100px calc(50% - 550px);
	color: #00ACD7;
	font-size: 21px;
	text-align: center;
}
#recruit01 strong {
	display: block;
	font-size: 30px;
	margin: 0 0 10px;
	color: #00ACD7;
	font-weight: 900;
}
#recruit02 {
	padding: 100px calc(50% - 550px);
	background: #090;
	color: #fff;
	font-size: 16px;
	text-align: center;
}
#recruit02 h3 {
	display: block;
	font-size: 38px;
	line-height: 1;
	margin: 0 0 50px;
	font-weight: 900;
	text-align: center;
}
#recruit02 a {
	display: block;
	background: #fff;
	color: #00ACD7;
	text-align: center;
	font-weight: 900;
	font-size: 26px;
	width: 80%;
	margin: 50px auto 0;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 3px;
}
#recruit02 a:hover {
	opacity: 1;
	background: #00ACD7;
	color: #fff;
}
#recruit03 {
	padding: 100px calc(50% - 550px);
	font-size: 16px;
	text-align: center;
}
#recruit03 h3 {
	display: block;
	font-size: 38px;
	line-height: 1;
	margin: 0 0 50px;
	font-weight: 900;
	text-align: center;
	color: #00ACD7;
}
#recruit03 a {
	display: block;
	background: #00ACD7;
	color: #fff;
	text-align: center;
	font-weight: 900;
	font-size: 26px;
	width: 80%;
	margin: 50px auto 0;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 3px;
}
#recruit_toform {
	padding: 0 calc(50% - 550px) 100px;
	font-size: 16px;
}
#recruit_toform dl {
	display: flex;
	justify-content: space-between;
}
#recruit_toform dl h3 {
	display: block;
	font-size: 38px;
	line-height: 1;
	margin: 0 0 50px;
	font-weight: 900;
	text-align: center;
}
#recruit_toform dl a {
	display: block;
	text-align: center;
	font-weight: 900;
	font-size: 26px;
	width: 80%;
	margin: 50px auto 0;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 3px;
}
#recruit_toform dl dt, #recruit_toform dl dd {
	width: calc((100%/2) - 10px);
	padding: 40px 20px;
	box-sizing: border-box;
	border-width: 3px;
	border-style: solid;
	border-radius: 5px;
}
#recruit_toform dl dt {
	background: #090;
	color: #fff;
	border-color: #090;
}
#recruit_toform dl dt h3 {}
#recruit_toform dl dt a {
	color: #00ACD7;
	background: #fff;
}
#recruit_toform dl dt a:hover {
	opacity: 1;
	background: #00ACD7;
	color: #fff;
}
#recruit_toform dl dd {
	border-color: #00ACD7;
}
#recruit_toform dl dd h3 {}
#recruit_toform dl dd a {
	background: #00ACD7;
	color: #fff;
}
@media (max-width: 768px) {
	#recruit01 {
		font-size: 14px;
	}
	#recruit01 strong {
		font-size: 24px;
	}
	#recruit02 {
		font-size: 14px;
	}
	#recruit02 h3 {
		font-size: 24px;
		margin: 0 0 30px;
	}
	#recruit02 a {}
	#recruit02 a:hover {}
	#recruit03 {
		font-size: 14px;
	}
	#recruit03 h3 {
		font-size: 24px;
		margin: 0 0 30px;
	}
	#recruit03 a {}
	#recruit_toform {
		font-size: 14px;
	}
	#recruit_toform dl {
		flex-direction: column;
	}
	#recruit_toform dl h3 {
		font-size: 24px;
		margin: 0 0 30px;
	}
	#recruit_toform dl a {}
	#recruit_toform dl dt, #recruit_toform dl dd {
		width: 100%;
		padding: 30px 10px;
		margin: 0 0 30px;
	}
	#recruit_toform dl dt {}
	#recruit_toform dl dt h3 {}
	#recruit_toform dl dt a {}
	#recruit_toform dl dd {}
	#recruit_toform dl dd h3 {}
	#recruit_toform dl dd a {}
}
/*/////////////////////////////////////////
privacypolicy.php
/////////////////////////////////////////*/
#privacypolicy {
	padding: 100px calc(50% - 500px);
	font-size: 14px;
}
#privacypolicy b {
	font-weight: 900;
}
#privacypolicy dl {
	margin: 30px 20px 0;
	counter-reset: num;
}
#privacypolicy dl dt {
	font-weight: 900;
}
#privacypolicy dl dt:before {
	counter-increment: num;
	content: counter(num)".";
}
#privacypolicy dl dd {
	margin: 0 10px 20px;
}
#privacypolicy dl dd p {
	text-align: center;
}
#privacypolicy dl dd a {}
#privacypolicy dl dd a:hover {}
#privacypolicy dl dd ol {
	counter-reset: num2;
}
#privacypolicy dl dd ol li {
	position: relative;
	padding: 5px 0 0 20px;
	margin: 0 0 0 10px;
	line-height: 1.4;
}
#privacypolicy dl dd ol li:before {
	counter-increment: num2;
	content: counter(num2)".";
	position: absolute;
	left: 0;
}
@media (max-width: 768px) {
	#privacypolicy {
		font-size: 12px;
	}
	#privacypolicy b {}
	#privacypolicy dl {
		margin: 20px 10px 0;
	}
	#privacypolicy dl dt {}
	#privacypolicy dl dt:before {}
	#privacypolicy dl dd {}
	#privacypolicy dl dd p {
		margin: 10px 0 0;
	}
	#privacypolicy dl dd a {}
	#privacypolicy dl dd a:hover {}
	#privacypolicy dl dd ol {}
	#privacypolicy dl dd ol li {
		padding: 5px 0 0 16px;
	}
	#privacypolicy dl dd ol li:before {}
}


/*/////////////////////////////////////////
staff_list
/////////////////////////////////////////*/
#staff_list{
    margin: 50px auto 0;
    max-width: 1030px;
}
#staff_list dl {
	display: flex;
	background: #fff;
	color: #666;
	margin: 20px 0;
	padding: 15px;
	line-height: 1.2;
	/* align-items: center; */
	justify-content: space-between;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
}
#staff_list dl > dt {
	position: relative;
}
#staff_list dl > dt div {
	position: absolute;
	color: #333;
	bottom: 5px;
	left: 0;
	right: 0;
	text-align: center;
	text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
#staff_list dl > dt strong {
	font-size: 18px;
	margin: 0 0 0 10px;
}
#staff_list dl > dt img {
	width: 180px;
}
#staff_list dl > dd {
	width: calc(100% - 200px);
	position: relative;
	/* font-size: 14px; */
}
#staff_list dl > dd strong {
	display: block;
	font-weight: 700;
	font-size: 18px;
	margin: -5px 0 10px;
	text-align: left;
	color: #666;
}
#staff_list dl > dd strong span {
	font-size: 24px;
	margin: 0 0 0 10px;
}
#staff_list dl > dd p {
	margin: 1rem 0;
}
#staff_list dl > dd dl {
	overflow-y: auto;
	height: 100px;
	position: absolute;
	bottom: 0;
	width: 100%;
}
#staff_list dl > dd dl li {
	list-style: none;
}
#staff_list dl > dd dl li b {
	font-weight: 700;
	display: inline-block;
	margin: 0 0 5px;
}
#staff_list dl > dd dl dt {
	float: left;
	padding: 0 .5rem 0;
}
#staff_list dl > dd dl dd {
	padding: 0 0 0 58px;
}
@media (max-width: 768px) {
	#staff_list{}
	#staff_list dl {
		margin: 0 0 10px;
		flex-direction: column;
	}
	#staff_list dl > dt {
		text-align: center;
	}
	#staff_list dl > dt div {}
	#staff_list dl > dt strong {}
	#staff_list dl > dt img {width: 220px;}
	#staff_list dl > dd {
		width: auto;
	}
	#staff_list dl > dd strong {
		text-align: center;
		margin: 0 0 20px;
	}
	#staff_list dl > dd strong span {}
	#staff_list dl > dd p {}
	#staff_list dl > dd dl {
		position: relative;
	}
	#staff_list dl > dd dl li {}
	#staff_list dl > dd dl li b {}
	#staff_list dl > dd dl dt {}
	#staff_list dl > dd dl dd {}
}


/*/////////////////////////////////////////
contract
/////////////////////////////////////////*/
#contract{
    padding: 100px calc(50% - 500px);
}
#contract dl{
    padding: 0 2rem 2rem;
}
#contract dl dt{
    padding: 2rem 0 0 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #090;
    position: relative;
}
#contract dl dt:before{content:attr(num);position: absolute;left: 0;}
#contract dl dd{
    padding: 1rem;
}
#contract dl dd .pdf{
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 132%;
	}
#contract dl dd .pdf object{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#contract dl dd ul{list-style: disc;padding: 0 0 0 1.5rem;}
#contract dl dd ul li{margin: 0 0 .5rem;}
#contract dl dd ul li span{
    display: inline-block;
    font-weight: 900;
    color: #090;
    padding: 0 5px;
}
#contract dl dd .imgpc{
}
#contract dl dd .imgsp{display: none;}
#contract h3{}
#contract iframe{display: block; margin: 2rem auto;}
#contract .notion{
    text-align: center;
    color: #f70;
    font-weight: bold;
}
@media (max-width: 768px) {
	#contract{}
#contract dl{
    padding: 0 0rem 1rem;
}
#contract dl dt{
    font-size: .9rem;
}
#contract dl dt:before{}
#contract dl dd{}
#contract dl dd .pdf{
    padding-top: 153%;
}
#contract dl dd .pdf object{}
#contract dl dd ul{}
#contract dl dd ul li{}
#contract dl dd ul li span{}
#contract dl dd .imgpc{
    display: none;
}
#contract dl dd .imgsp{
    display: block;
}
#contract h3{}
#contract iframe{
    width: 100%;
}
#contract .notion{}
}