@charset "UTF-8";

/* ===================================================================
	ドラピタとは ファーストビュー以下のcss
=================================================================== */

/* サービス概要の説明 */
.about_outline_explanation {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 0 auto;
	padding: 30px 0 90px;
	text-align: center;
}

.service_img {
	margin-bottom: 30px;
	text-align: center;
}

.about_outline_explanation p {
	margin-bottom: 45px;
	font-weight: 500;
	line-height: 1.8;
}

/* ボタン */
.about_btn_area {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 670px;
	margin: 0 auto;
}
.about_btn_area .btn_bs,
.about_btn_area .btn_primary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 310px;
	width: 90%;
	height: 2.6em;
	padding: 0 2em;
	margin: 0 10px;
	border-radius: 1.3em;
	color: var(--bs-white);
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
}
.about_btn_area .btn_bs {
	background: var(--bs-dorapita);
}
.about_btn_area .btn_primary {
	background: var(--bs-primary);
}


.about_btn_area .btn_bs .icon_round,
.about_btn_area .btn_primary .icon_round {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}
.about_btn_area .btn_bs .icon_round {
	background: var(--bs-primary);
}
.about_btn_area .btn_primary .icon_round {
	background: var(--bs-white);
}
.about_btn_area .btn_bs .icon_round::after,
.about_btn_area .btn_primary .icon_round::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-image: url('../../img/front/new_dorapita/icon_arrow.svg');
	background-repeat: no-repeat;
	background-size: 40px auto;
}
.about_btn_area .btn_bs .icon_round::after {
	background-position: -30px -10px;
}
.about_btn_area .btn_primary .icon_round::after {
	background-position: -30px -20px;
}



/* 選ばれる理由 */
.about_reason {
	background: #f5f6f6 url(../../img/front/new_dorapita/bk_graphcheck.png) repeat top center;
	padding: 90px 0 110px;
}
.about_reason_title {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 0 auto 50px;
}
.about_reason_inner {
	max-width: 1100px;
	width: var(--def-width);
	margin: 0 auto;
	padding: 50px 0;
	border: solid 10px #CFE6E6;
	border-radius: 25px;
	background: var(--bs-white);
	filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.2));
}

.about_reason_list_title_area {
	width: var(--def-width);
	max-width: 860px;
	margin: 0 auto 60px;
	padding-bottom: 35px;
	text-align: center;
	border-bottom: solid 3px #00797E;
}
.about_reason_subtitle {
	margin-bottom: 25px;
}
.about_reason_inner h3 {
	display: flex;
	justify-content: center;
	align-items:flex-end;
	font-weight: 700;
	font-size: 2.1rem;
}
.about_logo {
	margin-bottom: calc((-56px / 2 ) + .55em);
}
.about_reason_title_num {
	color: var(--bs-dorapita);
}
.about_reason_title_num > span {
	font-size: 135%;
}

/* 理由リスト */

.reason_list {
	max-width: 860px;
	width: 90%;
	margin: 0 auto;
}
.reason_list li {
	margin-bottom: 70px;
	display: flex;
	justify-content: space-between;
}
.reason_list li:last-child {
	margin-bottom: 0;
}

.about_reason_img {
	flex-shrink: 0;
	flex-grow: 0;
	width: 42%;
	margin-right: 50px;
	text-align: center;
}
.reason_list li:nth-child(2n) .about_reason_img  {
	order: 2;
	margin-right: 0;
	margin-left: 50px;
}
.about_reason_txt {
}
.reason_list li:nth-child(2n) .about_reason_txt  {
	order: 1;
}
.reason_list_item_title {
	display: flex;
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.35;
}
.reason_list_item_title_num {
	align-self: center;
	flex-shrink: 0;
	flex-grow: 0;
}

.reason_list_item_title_txt {
	padding-left: 25px;
	margin-left: 20px;
	border-left: solid 2px #FFC824;

}

.reason_list li p {
	line-height: 1.9;
	font-weight: 500;
}


/* ご利用の流れ */
.about_flow {
	padding: 60px 0;
	background: #E5F2F2;
}

.about_flow_title {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 0 auto 80px;
}

/* flowリスト */
.about_flow_list {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 0 auto 65px;
}

.about_flow_list li {
	position: relative;
	width: 23.5%;
	padding: 0 10px 30px;
	border-radius: 5px;
	background: #F7F7F7;
	text-align: center;
}

.about_flow_list li::after {
	position: absolute;
	top: 50%;
	right: -29px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	border: 10px solid transparent;
	border-left: 15px solid #7DBBBD; 
	content: "";
}
.about_flow_list li:last-child::after {
	content: none;
}
.about_flow_num {
	display: flex;
	justify-content: center;
	align-items: center;
	width:  55px;
	height: 55px;
	margin: -20px auto 5px;
	background: var(--bs-dorapita);
	border-radius: 50%;
	text-align: center;
}
.about_flow_img {
	margin-bottom: 5px;
	text-align: center;
}
.about_flow_list_txt {
	font-size: 1.25rem;
	font-weight: 500;
}





/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
	
}


/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
	
	/* 選ばれる理由 */
	.about_reason_img {
		width: 35%;
	}
	
	/* ご利用の流れ */
	.about_flow_list_txt {
		font-size: 1.1rem;
	}
	
	.about_flow_list li::after {
		position: absolute;
		top: 50%;
		right: -22px;
		border: 6px solid transparent;
		border-left: 11px solid #7DBBBD;
		content: "";
	}
	
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {

}


/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.about_btn_area {
		display: block;
	}
	.about_btn_area .btn_bs,
	.about_btn_area .btn_primary {
		margin: 10px auto;
	}
	
	.about_reason_inner h3 {
		flex-wrap: wrap;
		font-size: 1.8rem;
	}
	.about_reason_title_num {
		width: 100%;
		margin-top: 15px;
	}
	
	.reason_list li {
		display: block;
	}
	.about_reason_img,
	.reason_list li:nth-child(2n) .about_reason_img {
		width: 100%;
		margin: 0 auto 30px;
	}
	.reason_list_item_title {
		align-items: center;
	}
	.reason_list_item_title br {
		display: none;
	}
	
	.about_flow_list {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 30px;
	}
	.about_flow_list li {
		width: 100%;
		margin-bottom: 50px;
		padding-bottom: 10px;
	}
	.about_flow_list li:last-child {
		margin-bottom: 0;
	}
	.about_flow_list li::after {
		display: inline-block;
		position: relative;
		top: inherit;
		right: inherit;
		bottom: -40px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translate(0);
		border: 10px solid transparent;
		border-top: 10px solid #7DBBBD;
		content: "";
	}
}



/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	.about_reason_inner h3 {
		font-size: 1.6rem;
	}
	.about_logo {
		margin-bottom: calc((-56px / 2 ) + 0.55em);
		margin-bottom: -.4em;
	}
	.about_logo img {
		width: auto;
		height: 1.8em;
	}
	.reason_list_item_title {
		font-size: 1.2rem;
	}
	.reason_list_item_title img {
		width: auto;
		height: 25px;
	}
	.reason_list_item_title_txt {
		margin-left: 10px;
		padding-left: 10px;
	}
}




@media (max-width: 479px) {
	
}











