@charset "UTF-8";
.company_logo {
	text-align: center;
}
.company_logo img {
	max-width: 70px;
}

#usage .tab_ac {
	border: 1px solid #cecece;
	margin-bottom: 20px;
}
#usage .tab_ac dt {
	color: #3e7314;
	font-size: 15px;
	background: #f5fce1;
	padding: 16px 20px 16px;
	position: relative;
	line-height: inherit;
	border-bottom: none;
	cursor: pointer;
	transition: 0.3s;
}
#usage .tab_ac dt:hover {
	opacity: 0.7;
}
#usage .tab_ac dd {
	position: relative;
	align-items: baseline;
	background: #fcfcfb;
	display: flex;
	padding: 16px 20px 16px;
}
#usage .tab_ac dd .dd_cont {
	width: 845px;
	max-width: 100%;
	line-height: 1.8;
	padding-top: 4px;
}
#usage .tab_ac dt .ac::before {
	top: 49%;
	right: 24px;
	transform: rotate(90deg) translateY(-50%);
}
#usage .tab_ac dt .ac::after {
	top: 50%;
	right: 23px;
	transform: translateY(-50%);
}
#usage .tab_ac dt .ac::before,
#usage .tab_ac dt .ac::after {
	content: "";
	background: #3e7314;
	width: 15px;
	height: 2px;
	position: absolute;
	transition: 0.2s;
}
#usage .tab_ac .open .ac::before {
	opacity: 0;
}
.movie {
	width: 90%;
	margin: 0 auto;
}

.img_dx img {
	width: 250px;
}

.col_l_img.item_center {
	align-items: center;
}

@media screen and (max-width: 767px) {
	.movie {
		width: 100%;
	}
}

/* flow 24.10.04 */

.box_flow{
	display: flex;
	justify-content: space-evenly;
}
.box_flow .col{
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: calc(calc(100% - 60px) / 4);
	border: 2px solid #65ad29;
	text-align: center;
	align-items: center;
}
.box_flow .col:not(:last-of-type)::before{
	position: absolute;
	top: calc(50% - 10px);
	bottom: calc(50% - 10px);
	right: -20px;
	margin-right: -20px;
	content: "";
	vertical-align: middle;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	border: 20px solid transparent;
	border-left: 20px solid #65ad29;
}
.box_flow .col .col_head{
	color: #fff;
	background: #65ad29;
	font-weight: normal;
	padding: 5px;
	width: 100%;
}
.box_flow .col .col_img,
.box_flow .col .col_txt{
	margin: 30px 20px;
}
.box_flow .col .col_txt{
	margin-top: 0;
}
.box_flow .col .col_img{
	max-width: max-content;
}
.txt_big{
	font-size: 120%;
}
.f_center{
	align-items: center;
}
.pc_only {
	display: none;
}
.sp_only{
	display: none;
}

@media only screen and (min-width: 991px) {
	.pc_only {
		display: inline-block;
	}
}
@media only screen and (max-width: 767px){
	.sp_only{
		display: inline-block;
	}
	.box_flow{
		display: block;
	}
	.box_flow .col{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.box_flow .col:not(:last-of-type)::before{
		top: 100%;
		right: auto;
		bottom: -55px;
		margin: auto;
		border-top: 20px solid #65ad29;
		border-left: 20px solid transparent;
	}
}