/* section */
.l_main.m_pages.ow_main .m_cnts {
	padding-top: 0;
}

/* clearfix */
.ow_clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* title */
.m_pages .ow_ttl_lv1 {
	margin: 0 0 1rem;
	padding: 0.5em 1em;
	background: #f7f7f7;
	border-left: #0d6fb8 8px solid;
	box-shadow: 0 0 0 1px #dadada;
	font-size: 1.8rem;
	font-weight: bold;
}

/* br */
.ow_iblock {
	display: inline-block;
}

/* width_size */
.ow_W50per { width: 50% !important; }
@media only screen and (max-width: 767px) {
	.ow_W50per { width: 100% !important; }
}

/* input */
input.ow_writing {
	background: #EEE;
	padding: 0 .5rem;
	line-height: 32px;
	box-sizing: border-box;
}

/* ボタングループ */
.m_btn_group.ow_m_btn_group_wrap {
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

.m_btn_group_space-between {
	-webkit-box-pack: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
}

/* ミニボタン */
.ow_mini_btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 2px solid #ccc;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	margin: 0 0.5em 0.3em 0;
	padding: 0.5em 1em;
	font-weight: bold;
	cursor: pointer;
	background: #fff;
}
.ow_mini_btn:hover {
	transition: all .3s ease-in-out;
	background: #0066aa;
	color: #fff;
}
.ow_mini_btn + .ow_mini_btn {
}
.ow_mini_btn_link {
	position: relative;
	padding-right: 1.3em;
}
.ow_mini_btn_link::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 7px;
	width: 4px;
	height: 4px;
	margin: auto;
	vertical-align: middle;
	border-top: 2px solid #0066aa;
	border-right: 2px solid #0066aa;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.ow_mini_btn:hover.ow_mini_btn_link::before {
	transition: all .3s ease-in-out;
	border-top: 2px solid #fff !important;
	border-right: 2px solid #fff !important;
}

/* datelist */
.ow_date_list > dl {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	width: 100%;
	margin: 0rem 0.5rem;
	border-bottom: 1px solid #ccc;
}
.ow_date_list dt {
	width: 6.7em;
}
.ow_date_list dd { flex:1; }
.ow_date_list dd a[href$=".pdf"]::after {
	content: '';
	display: inline-block;
	width: 1.0em;
	height: 1.0em;
	background: url('../imgs/ow/icon_pdf.png') no-repeat center center;
	background-size: contain;
	padding-left: 10px;
	vertical-align: middle;
}
.ow_date_list dt,
.ow_date_list dd {
	padding: 0.5em 0;
	line-height: 1.4em;
}

/* link_ico */

a[href$=".pdf"].ow_ico_pdf::before {
	content: '';
	display: inline-block;
	width: 1.0em;
	height: 1.0em;
	background: url('../imgs/ow/icon_pdf.png') no-repeat center center;
	background-size: contain;
	padding-left: 10px;
	vertical-align: middle;
}

/* blank */
.ow_blank_1 { padding-bottom: 1.0em; }
.ow_blank_2 { padding-bottom: 2.0em; }
.ow_blank_3 { padding-bottom: 3.0em; }

/* bg_color */
.ow_bg_gray { background-color: #f3f0ef; }
.ow_bg_darkgray { background-color: #888888; }
.ow_bg_blue { background-color: #036EB7; }
.ow_bg_white { background-color: #fff; }

/* text */
.ow_txt_red { color: #e60012; }
.ow_txt_blue { color: #0033cc; }
.ow_txt_underline { text-decoration: underline; }
.ow_txt_left { text-align: left; }
.ow_txt_center,
.ow_txt_pc_center { text-align: center; }

@media only screen and (max-width: 1024px) {
	.ow_txt_pc_center { text-align: left !important; }
}

/* listitem */
ul.ow_listitem_kome { margin-left: 2.5em; }
ul.ow_listitem_kome > li:before {
	content: '※';
	padding-right: 0.5em;
	margin-left: -1.5em;
}
ul.ow_listitem_komeno { counter-reset: cnt 0; }
ul.ow_listitem_komeno > li { margin-left: 2.5em; }
ul.ow_listitem_komeno > li:before {
	counter-increment: cnt;
	content: "※" counter(cnt);
	padding-right: 0.5em;
	margin-left: -2.0em;
}

.ow_listitem_komeno_p { counter-reset: cnt 0; }
.ow_listitem_komeno_p > * > p { margin-left: 2.5em; }
.ow_listitem_komeno_p > * > p:before {
	counter-increment: cnt;
	content: "※" counter(cnt);
	padding-right: 0.5em;
	margin-left: -2.0em;
}

/* Q&A */
.ow_qa > dt,
.ow_qa > dd {
	padding: 10px 10px 10px 80px;
	background-repeat: no-repeat;
	background-position: 20px 10px;
	background-size: 2.0em;
}
.ow_qa > dt {
	background-color: #036EB7;
	background-image: url('../imgs/ow/ico_q.png');
	color: #fff;
}
.ow_qa > dd {
	margin: 1.0em auto;
	border: #036EB7 1px solid;
	background-image: url('../imgs/ow/ico_a.png');
}
/* scrollarea */
.ow_scrollarea {
	height: 20em;
	margin: 0 2.0em;
	padding: 1.0em;
	border: #9E9E9F 1px solid;
	overflow-y: scroll;
	overflow-x: hidden;
	
}
.ow_scrollarea a { text-decoration: underline; }

/* supportarea */
.ow_supportdesk {
	margin: 20px;
	background-color: #fff;
}
.ow_supportdesk > dd {
	padding: 10px;
}

/* ow_check */
#ow_check input[type="checkbox"] { display: none; }
#ow_check p {
	display: table;
	margin: auto;
}
#ow_check p,
#ow_check span {
	position: relative;
	padding-left: 1.8em;
	cursor: pointer;
}
#ow_check p::before,
#ow_check span::before {
	content: "";
	display: block;
	position: absolute;
	top: .2em;
	left: 0;
	width: 1.0em;
	height: 1.0em;
	border: 1px solid #999;
}
#ow_check input:checked + p::after,
#ow_check input:checked + span::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 5px;
	width: .5em;
	height: 1.0em;
	transform: rotate(40deg);
	border-bottom: 3px solid #000;
	border-right: 3px solid #000;
}
#ow_chkbtn .ow_chk_on,
#ow_chkbtn.check .ow_chk_off { display: none; }
#ow_chkbtn.check .ow_chk_on { display: block; }
#ow_chkbtn button {
	background-color: inherit!important;
	cursor: pointer;
}

/* ow_check_radio */
#ow_check_radio input[type="radio"] { display: none; }
#ow_check_radio label {
	position: relative;
	padding-left: 1.4em;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	#ow_check_radio label { display: block; }
}
#ow_check_radio label::before,
#ow_check_radio label::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
#ow_check_radio label::before {
	left: 0;
	width: 1.0em;
	height: 1.0em;
	border: 1px solid #999;
}
#ow_check_radio label::after {
	left: .25em;
	width: .6em;
	height: .6em;
}
#ow_check_radio input#mycar_chk1_1:checked~label[for="mycar_chk1_1"]::after,
#ow_check_radio input#mycar_chk1_2:checked~label[for="mycar_chk1_2"]::after,
#ow_check_radio input#mycar_chk2_1:checked~label[for="mycar_chk2_1"]::after,
#ow_check_radio input#mycar_chk2_2:checked~label[for="mycar_chk2_2"]::after,
#ow_check_radio input#mycar_chk3_1:checked~label[for="mycar_chk3_1"]::after,
#ow_check_radio input#mycar_chk3_2:checked~label[for="mycar_chk3_2"]::after,
#ow_check_radio input#mycar_chk4_1:checked~label[for="mycar_chk4_1"]::after,
#ow_check_radio input#mycar_chk4_2:checked~label[for="mycar_chk4_2"]::after,
#ow_check_radio input#mycar_chk5_1:checked~label[for="mycar_chk5_1"]::after,
#ow_check_radio input#mycar_chk5_2:checked~label[for="mycar_chk5_2"]::after {
	background-color: #000;
}

dl#ow_check_radio > dd {
	display: flex;
	flex-flow: column wrap;
	width: 92%;
	align-items: center;
	margin: 20px auto;
	padding: 20px;
	background-color: #fff7ef;
	/* background-color: #fbe5e3; */
	border: #c6c1c1 1px solid;
}

/* ow_table_fixed */
.ow_table_fixed {
	border-collapse: collapse;
	width: 100%;
	word-break: break-all;
}
.ow_table_fixed > tr > *,
.ow_table_fixed > tbody > tr > * {
	border: 1px solid #dcdcdc;
	padding: 20px;
	font-size: 1.8rem;
	vertical-align: middle;
}
.ow_table_fixed > tr > th,
.ow_table_fixed > tbody > tr > th {
	background-color: #f9fafc;
}
@media only screen and (max-width: 800px) {
	.ow_table_fixed > tr > *,
	.ow_table_fixed > tbody > tr > * {
		padding: 10px;
		font-size: 1.4rem;
	}
}
/* page_loan-kinri */
.page_loan-kinri .ow_table_fixed > tr > td,
.page_loan-kinri .ow_table_fixed > tbody > tr > td {
	padding: 20px 2px;
}
.page_loan-kinri .ow_table_fixed > tr:first-child > th:first-child,
.page_loan-kinri .ow_table_fixed > tbody > tr:first-child > th:first-child {
	width: 45%;
}
.page_loan-kinri .ow_table_fixed > tr:first-child > th:nth-child(2),
.page_loan-kinri .ow_table_fixed > tbody > tr:first-child > th:nth-child(2) {
	width: 15%;
}
.page_loan-kinri .ow_table_fixed > tr:first-child > th:nth-child(3),
.page_loan-kinri .ow_table_fixed > tbody > tr:first-child > th:nth-child(3),
.page_loan-kinri .ow_table_fixed > tr:first-child > th:nth-child(4),
.page_loan-kinri .ow_table_fixed > tbody > tr:first-child > th:nth-child(4) {
	width: 20%;
}
.page_loan-kinri .ow_table_fixed > tr > td:nth-last-child(2),
.page_loan-kinri .ow_table_fixed > tbody > tr > td:nth-last-child(2) {
	white-space: nowrap;
}

/* ライフプラン　ダイレクトバンキング 2022.07.06追加 */
.m_lifeplan_service .is_banking_ok {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 1.8rem 5.6926%;
	background-color: #00b7ee;
	color: #fff;
}
.m_lifeplan_service .is_banking_ok .image { flex: 0 0 auto; }
.m_lifeplan_service .is_banking_ok .segment { flex: 1 1 auto; }
.m_lifeplan_service .is_banking_ok .title {
	border-bottom: 1px solid #fff;
}
@media (min-width: 768px) {
	.m_lifeplan_service .is_banking_ok .segment { flex: 0 1 auto; }
}

/* 事業主向け TopArea */
#houjin_top_wrap .ow_biz_top_login_wrap * { box-sizing: border-box; }
#houjin_top_wrap .ow_biz_top_login_wrap {
	width: 100%;
	max-width: 600px;
	margin-top: 30px;
}
#houjin_top_wrap .ow_biz_top_login {
	display: flex;
	max-width: 450px;
	height: 110px;
	margin: auto;
	background-color: #fff;
	border: #004DA0 3px solid;
	border-radius: 10px;
}
#houjin_top_wrap .ow_biz_top_login > * {
	flex: 1 1 auto;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
}
#houjin_top_wrap .ow_biz_top_login .inLink {
	background-image: url('../imgs/topArea/login_link_biztop.png');
}
#houjin_top_wrap .ow_biz_top_login .inInfo {
	position: relative;
	max-width: 130px;
	background-image: url('../imgs/topArea/login_info_biztop.png');
}
#houjin_top_wrap .ow_biz_top_login .inInfo::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	height: 80%;
	margin: auto;
	background-color: #004DA0;
}
@media screen and (max-width:767px) {
	#houjin_top_wrap .ow_biz_top_login_wrap {
		max-width: initial;
		margin: 30px auto 0;
	}
	#houjin_top_wrap .ow_biz_top_login { margin: 0 10px; }
	#houjin_top_wrap .ow_biz_top_login .inLink { background-size: contain; }
	#houjin_top_wrap .ow_biz_top_login .inInfo {
		flex: 0 1  auto;
		width: 90px;
	}
}
