/*
追加パッケージ共通CSS
*/

.kv h1 {
	padding-bottom: 10px;
}

.outline {
	padding-top: 50px;
}

.outline h2 {
	background: url(../img/bg_about.png) top center no-repeat;
	height: 50px;
	margin-bottom: 3%;
}

.outline_overview {
	margin-bottom: 10px;
	text-align: center;
	vertical-align: center;
}

.outline_overview p {
	display: inline-block;
	width: 86%;
	text-align: center;
	line-height: 2;
	font-weight: bold;
}

.solution {
	padding-top: 50px;
}

.solution h2 {
	background: url(../img/bg_solution.png) top center no-repeat;
	height: 50px;
    margin-bottom: 3%;
}

.solution_overview {
	margin-bottom: 10px;
	text-align: center;
	vertical-align: center;
	background: linear-gradient(45deg, rgb(16, 82, 126), rgb(69, 162, 190), rgb(7, 80, 175));
	padding: 20px;
}

.solution_elements {
	margin: 10px;
	display: flex;
	justify-content: center;
	background-color: rgb(237, 246, 247);
}

.solution_elements h3 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 25px;
	line-height: 1.04;
	text-align: center;
	font-weight: 500;
}

.solution_overview h6 {
	color: white;
	text-align: left;
	padding-top: 10px;
}

.solution_elements .check_icon {
	padding: 20px;

}

.solution_elements .check_icon::before {
	content: "";
	display: block;
	height: 5px;
	width: 100px;
	border-bottom: 4px solid #40e0c5;
	border-left: 8px solid #45e040;
	transform: rotate(-45deg) perspective(30px) rotateY(60deg);
	transform-origin: 0 50%;
	position: absolute;
}

/* 移行フロー*/
.service_flow_overview {
	margin-bottom: 10px;
}

.service_flow_overview .flow .dd_comment {
	color: rgb(8, 119, 189);
	font-weight: bolder;
}

.service_flow {
	padding-top: 50px;
}

.service_flow h2 {
	background: url(../img/bg_flow.png) top center no-repeat;
	height: 50px;
	margin-bottom: 3%;
}



.service_flow_overview ul {
	padding: 0;
}

.service_flow_overview li {
	list-style-type: none;
}

.service_flow_overview dd {
	margin-left: 0;
	font-weight: bold;
}

.service_flow_overview .flow {
	padding-left: 120px;
	position: relative;
}

.service_flow_overview .flow::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #eee;
	margin-left: -8px;
	display: block;
	position: absolute;
	top: 0;
	left: 120px;
}

.service_flow_overview .flow>li {
	position: relative;
}

.service_flow_overview .flow>li {
	margin-bottom: 4vh;
}

.service_flow_overview .flow>li .number_icon {
	font-size: 13px;
	color: #fff;
	background: rgb(107, 144, 219);
	background: -moz-linear-gradient(left, rgb(16, 82, 126), rgb(69, 162, 190) 100%);
	background: -webkit-linear-gradient(left, rgb(16, 82, 126), rgb(69, 162, 190) 100%);
	background: linear-gradient(to right, rgb(16, 82, 126), rgb(69, 162, 190) 100%);
	padding: 8px 20px;
	display: block;
	position: absolute;
	top: 0;
	left: -120px;
}


.service_flow_overview .flow>li .number_icon::after {
	content: "";
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent rgb(69, 162, 190);
	position: absolute;
	top: 50%;
	left: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}


.service_flow_overview .flow>li dl {
	padding-left: 80px;
	position: relative;
}

.service_flow_overview .flow dl {
	padding: 0px;
	background: none;

}

/* 導入事例 */
/* ---------------------------- */

.user_introduction_overview {
	margin-bottom: 10%;
}

.multiple-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10%;
}

.multiple-item {
	width: 49%;
	margin-top: 20px;
}

.multiple-item:nth-child(-n+2) {
	margin-top: 0;
}

/* アニメーション前 */
.u-fade-type-up {
	transform: translateY(50px);
	opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.is-active .u-fade-type-up {
	transition: .6s;
	transform: translateY(0);
	opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2) {
	transition-delay: .4s;
}

.is-active .u-fade-type-up:nth-child(3) {
	transition-delay: .8s;
}

.is-active .u-fade-type-up:nth-child(4) {
	transition-delay: 1.2s;
}

.is-active .u-fade-type-up:nth-child(5) {
	transition-delay: 1.6s;
}

.is-active .u-fade-type-up:nth-child(6) {
	transition-delay: 2s;
}

@media screen and (min-width: 768px) {
	.multiple-item {
		width: 32%;
	}

	.multiple-item:nth-child(-n+3) {
		margin-top: 0;
	}
}

/*
  共通利用CSS
  */

/*文字赤*/

.point_color_red {
	color: red;
}

.point_color_red_underline {
	color: red;
	border-bottom: solid 1px red;
}

.point_color_red_bold {
	color: red;
	font-weight: bold;
}

.margin_top_20 {
	margin-top: 20px;
}

.margin_top_20 h5{
	margin-top: 20px;
}

.margin_top_20 img{
	margin-top: 20px;
}


/*モーダル基礎CSS*/
/* オーバーレイ */
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 10;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
	overflow: hidden;
}

/* モーダルウィンドウ 小*/
.modal-window-small {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%;
	height: 30%;
	background-color: #fff;
	border-radius: 5px;
	z-index: 11;
	padding: 2rem;
	overflow-y: scroll;

}

.modal-window-small p {
	position: relative;
}

/* モーダルウィンドウ 中*/
.modal-window-medium {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background-color: #fff;
	border-radius: 5px;
	z-index: 11;
	padding: 2rem;
	overflow-y: scroll;

}

.modal-window-medium p {
	position: relative;
}

/* モーダルウィンドウ 大*/
.modal-window-large {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background-color: #fff;
	border-radius: 5px;
	z-index: 11;
	padding: 2rem;
	overflow-y: scroll;

}

.modal-window-large p {
	position: relative;
}

/* 閉じるボタン */
.button-close {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	padding: 1em;
	border: none;
	background-color: #6b6b6dd3;
	color: #eaeaea;
	border-radius: 10rem;
	cursor: pointer;
	bottom: 0px;
}


/* 閉じるボタン */
.close_modal_margin_top_small {
	display: grid;
	justify-content: space-around;
	margin-top: 10%;
}

.close_modal_margin_top_medium {
	display: grid;
	justify-content: space-around;
	margin-top: 20%;
}

/* 閉じるボタン */
.close_modal_margin_top_large {
	display: grid;
	justify-content: space-around;
	margin-top: 40%;
}