@charset "utf-8";

/*----------------------------------------
	リスク・手数料等
----------------------------------------*/

h5.infobox {
	color: #fff;
	background-color: #025c6c;
	background-image: none;
	margin-top: 20px;
	margin-bottom: 0px !important;
}

div.infobox {
	border: solid 1px #225c6b;
	padding: 15px;
	margin-bottom: 20px;
}

/*----------------------------------------
モーダルウィンドウ 
----------------------------------------*/
.modal_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	z-index: 1;
}
.modal_bg[aria-hidden="false"] {
	visibility: visible;
	opacity: 1;
}

.modal_block {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: auto;
	width: 800px;
	background: #fff;
	padding: 40px 40px 120px;
	box-sizing: border-box;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	max-height: 80vh;
}
.modal_block[aria-hidden="false"] {
	visibility: visible;
	opacity: 1;
}
@media (min-width: 768px) and (max-width: 900px) and (orientation: landscape) {
	.modal_block {
		width: -webkit-calc(100% - 60px);
		width: -moz-calc(100% - 60px);
		width: calc(100% - 60px);
		padding: 40px 32px;
	}
}
@media (max-width: 767px) {
	.modal_block {
		width: -webkit-calc(100% - 40px);
		width: -moz-calc(100% - 40px);
		width: calc(100% - 40px);
		padding: 20px 20px 90px;
	}
}

.modal_block_inner {
	height: 100%;
	overflow-y: auto;
	padding-right: 0;
}

.modal_close_btn {
	width: 210px;
	height: 50px;
	position: absolute;
	bottom: 40px;
	left: 50%;
	background: #2795dd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	margin: 0 0 0 -105px;
}
@media (max-width: 767px) {
	.modal_close_btn {
		bottom: 20px;
	}
}
.modal_close_btn:before {
	position: absolute;
	display: block;
	content: "閉じる";
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: -0.75em auto auto;
	width: 3em;
	height: auto;
	color: #fff;
	font-size: 116%;
	font-weight: bold;
}
@media (max-width: 767px) {
	.modal_close_btn::before {
		content: '閉じる';
		width: 3em;
		height: auto;
		background: none;
		color: #fff;
		font-size: 116%;
		font-weight: bold;
		top: 50%;
		margin-top: -0.75em;	
	}
}
.modal_close_btn:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: -6em;
	right: 0;
	bottom: 0;
	margin: auto;
	background: url(../img/risk/ico_close.png) no-repeat 0 0;
	background-size: 18px auto;
	width: 18px;
	height: 18px;
}
@media (max-width: 767px) {
	.modal_close_btn::after {
		width: 18px;
		height: 18px;
		background: url(../img/risk/ico_close.png) no-repeat 0 0;
		background-size: 18px auto;
		transform: none;
		left: -6em;
	}
}

.bs_block .modal_block_inner p:last-child {
	margin-bottom: 0;
}
.editorBlock .modal_block_inner p:last-child {
	margin-bottom: 0;
}
.cke_editable .modal_block_inner p:last-child {
	margin-bottom: 0;
}

/*----------------------------------------
プルダウン
----------------------------------------*/
.qa_block .q_block {
	background: #444;
	color: #fff;
	padding: 1em 2.5em 1em 1em;
	font-weight: bold;
	margin: 0 10px;
	font-size: 14px;
	cursor: pointer;
	position: relative;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.qa_block .q_block:before,
.qa_block .q_block:after {
	position: absolute;
	display: block;
	content: "";
	width: 18px;
	height: 2px;
	background: #fff;
	top: 50%;
	right: 1em;
	transition: all 400ms;
}
.qa_block .q_block:after {
	transform: rotate(90deg);
}
.qa_block .q_block[data-interaction-expand="true"]:before {
	transform: rotate(180deg);
}
.qa_block .q_block[data-interaction-expand="true"]:after {
	transform: rotate(270deg);
	opacity: 0;
}
.bs_block .qa_block p:last-child {
	margin-bottom: 0;
}
.editorBlock .qa_block p:last-child {
	margin-bottom: 0;
}
.cke_editable .qa_block p:last-child {
	margin-bottom: 0;
}
.qa_block .a_block {
	display: none;
	background: #ededed;
	margin: 0 10px;
	padding: 30px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.qa_block .a_block strong {
	padding-left: 0.5em;
	border-left: 3px solid #444;
}
.qa_block .a_block li {
	background: url(../img/risk/ico_listmark02.gif) no-repeat 3px 0.45em;
}

/*----------------------------------------
その他
----------------------------------------*/
#contents ul.btn_flex {
	display: flex !important;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media only screen and (max-width: 720px) {
	#contents ul.btn_flex.pc_only {
		display: none !important;
	}
}
#contents ul.btn_flex.sp_only {
	display: none !important;
}
@media only screen and (max-width: 720px) {
	#contents ul.btn_flex.sp_only {
		display: flex !important;
	}
}
#contents ul.btn_flex li {
	background: none;
	padding: 0;
	margin-bottom: 10px;
}
@media only screen and (max-width: 720px) {
	#contents ul.btn_flex li {
		width: 100%;
		text-align: center;
		margin-bottom: 14px;
	}
}
#contents .risk_01 .risk_tag {
	font-weight: bold;
	color: #007cc8;
	background-color: #e2f2fc;
	padding: 4px 8px 3px;
	margin: 7px 5px 7px 0;
	border-radius: 3px;
	display: inline-block;
}
@media only screen and (max-width: 720px) {
	#contents .risk_01 .folderTxt {
		padding-left: 160px;
	}
}
#contents .imgColumns_01 .imgWrap {
	padding-top: 0;
}
#contents .imgColumns_01 .imgWrap img {
	position: relative;
	width: auto;
}
@media only screen and (max-width: 720px) {
	#contents .imgColumns_01 .imgWrap img {
		width: auto;
		max-width: 100%;
		height: auto;
	}
}
a:link {
	text-decoration: none !important;
	word-wrap: break-word;
}

.linkTypeWindow {
	padding-right: 24px;
	padding-left: 0;
	background-position: right;
	text-decoration: none;
}
.folderImg {
	width: 180px;
}
.folderImg img {
	width: 180px;
}
.txt-green {
	padding: 23px;
	margin: 0 10px;
	background-color: #e7f6df;
}
.txt-green p {
	margin: 0;
	color: #377f01;
	font-weight: bold;
}
@media only screen and (max-width: 720px) {
	#contents ul.btn_flex.btn_products li {
		width: calc(50% - 5px);
	}
}
@media only screen and (max-width: 720px) {
	#contents table tr {
		display: flex;
		flex-wrap: wrap;
	}
	#contents table tr th,
	#contents table tr td {
		width: 100%;
	}
	.linkTypeWindow {
		padding-right: 18px;
	}
	.a_block p {
		margin-bottom: 10px;
	}
	.folderImg {
		width: 140px;
	}
}

.marker_line {
	color: #2288bb;
	border-bottom: #2288bb solid 1px;
}

/*----------------------------------------
プルダウン内：文頭 インデント 
----------------------------------------*/
.qa_block .indent_01 {
	padding-left: 1.5em;
	text-indent: -1.5em;
	display: block;
}
.qa_block .indent_02 {
	padding-left: 2em;
	text-indent: -2em;
	display: block;
}

/*----------------------------------------
プルダウン内：リスト
----------------------------------------*/
.qa_block ul.list_icon_black li {
	background: url(../img/risk/ico_listmark02.gif) no-repeat 3px 0.45em !important;
}

/*----------------------------------------
プルダウン内：2カラム画像 
----------------------------------------*/
.qa_block .imgColumns_01 {
	margin-top: 30px;
}
@media (max-width: 767px) {
	.qa_block .imgColumns_01 {
		margin-top: 0;
	}
}
.qa_block .imgColumns_01 .item {
	width: 310px;
}
@media (max-width: 767px) {
	.qa_block .imgColumns_01 .item {
		width: 100%;
	}
}
.qa_block .imgColumns_01 .item:first-child {
	margin-right: 20px;
}

.qa_block .imgColumns_01 p {
	margin: 0;
	text-align: center;
}

.qa_block .imgColumns_01 p+p {
	margin-top: 10px;
	font-weight: bold;
}