@charset "utf-8";

/* div,ul,li,p,figure,h1,h2,h3,h4,h5,h6 {
border: 1px dotted #ff00ff; } */

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

/*PCSP
----------------------------------------*/

.disp_pc {
	display: block !important;
}

.disp_sp {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	.disp_pc {
		display: none !important;
	}

	.disp_sp {
		display: block !important;
	}
}

/*/PCSP
----------------------------------------*/

/*全体
----------------------------------------*/

html,
body {

	/* scroll-behavior: smooth; */

	font-size: 18px;

	font-family: arial, Meiryo, sans-serif;
	/* font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif"; */

	color: #111111;
	line-height: 1.4;

	background: #ffffff;

	width: 100%;
	min-height: 100vh;

	/* display: flex;
	flex-direction: column; */

}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	html,
	body {
		font-size: 14px;
	}

}

/* /SP
---------------------------------------- */



/*/全体
----------------------------------------*/

/*リンクテキスト
----------------------------------------*/

a {
	color: #0000ff;
	text-decoration: none;
}

/*/リンクテキスト
---------------------------------------- */

/* 全体
---------------------------------------- */

main {

	width: 100%;
	/* flex: 1; */

}

.narrow {

	/* width: 90%;
	max-width: 1000px; */

	width: 1000px;

	height: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;

}

.narrow>* {

	margin-left: auto;
	margin-right: auto;
	text-align: center;

}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	.narrow {
		width: 95%;
	}

}

/* /SP
---------------------------------------- */

/* /全体
---------------------------------------- */

/* 共通 
---------------------------------------- */

/* 行間 */

p+p {
	margin-top: 1em;
}

/* セクション見出し */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	line-height: 1.2;
}

h2 {
	/* font-size: 30px; */
	font-size: 1.66rem;
	color: #006699;
	margin-bottom: 40px;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	h2 {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}


}

/* /SP
---------------------------------------- */



/* コンテンツ間スペース */
.csp {
	padding: 80px 0;
}

/* セクション背景 */
.bgalter {
	background-color: rgba(171, 197, 221, 0.2);
}

/* アロー付きリンク */
a.arrow {
	position: relative;
	padding-right: 0.6em;
}

a.arrow::after {
	content: '';
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 0;
	width: 0.6em;
	height: 0.6em;
	margin-top: -0.3em;
	border-top: 2px solid #2250a7;
	border-right: 2px solid #2250a7;
	transform: rotate(45deg);
}

/* 外部アイコン付きリンク */
.external {
	/* position: relative; */
	padding-right: 1.2em;
}

.external::after {
	/* position: absolute; */
	display: inline-block;
	background-image: url(../images/iconexternal.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	width: 1em;
	height: 1em;
	margin-top: -0.62em;
	margin-left: 0.5em;
}

/* ダウンロードアイコン付きリンク */
.download {
	position: relative;
	padding-right: 1.2em;
}

.download::after {
	position: absolute;
	display: inline-block;
	background-image: url(../images/icondownload.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	width: 1em;
	height: 1em;
	top: 50%;
	margin-top: -0.55em;
	right: 0;
}


/* ボックスと写真の角Ｒ */
.boxr {
	border-radius: 10px;
}

/* もっと見るリンク */
.more {
	position: relative;
	padding: 1em;
	border: 1px solid #dde8f1;
	background-color: #ffffff;
	margin: 0 36px;
}

.more a {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: block;
}

.more p {
	display: inline-block;
	pointer-events: none;
	color: #0000ff;
}

/* 事例質問等ボックス */
.contentsbox {
	padding: 20px;
	margin-bottom: 40px;
	border: 2px solid #dde8f1;
	background-color: #ffffff;
}

/* 開閉トリガー */

.trigger {

	position: relative;
	text-align: left;

	/* font-size: 20px; */
	font-size: 1.11rem;

	padding-right: 3em;
	font-weight: bold;

	cursor: pointer;

}

.trigger+* {
	display: none;
}


.trigger::after {

	content: '';
	position: absolute;
	display: inline-block;
	top: 0;
	right: 0;

	width: 1.2em;
	height: 1.2em;

	margin-top: -0.3em;
	margin-right: 0.8em;

	border-right: 2px solid #006699;
	border-bottom: 2px solid #006699;
	transform: rotate(45deg);

	transition: all 0.2s ease-out;
}

.trigger.close::after {
	margin-top: 0.4em;
	transform: rotate(-135deg);
}

/* 注釈 */
p.ast {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 0.8rem;
}

p.ast::before {
	content: '※';
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	/* コンテンツ間スペース */
	.csp {
		padding: 40px 0;
	}
	
	/* もっと見るリンク */
	.more {
		margin: 0 10px;
	}

	/* 事例質問等ボックス */
	.contentsbox {
		padding: 20px;
		margin-bottom: 20px;
	}

}

/* /SP
---------------------------------------- */



/* /共通 
---------------------------------------- */

/*ヘッダ
---------------------------------------- */

header {
	height: 80px;
	border-bottom: 1px solid #b1d7ea;
}

header ul {

	height: 100%;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	padding: 0 20px;

}

header ul li {
	height: 100%;
}

header ul li img {
	width: auto;
	vertical-align: top;
	/* resetの局所的無効化 */

}

header ul li:first-of-type {
	padding: 20px 0;
}

header ul li:last-of-type {
	padding: 12px 0;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	header {
		height: 50px;
	}

	header ul {
		padding: 0 10px;
	}

	header ul li:first-of-type {
		padding: 10px 0;
	}

}

/* /SP
---------------------------------------- */



/*/ヘッダ
---------------------------------------- */

/* MV
---------------------------------------- */

#sec_mv {}

#sec_mv .inner {

	background-image: url(../images/mvbg.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;

}

#sec_mv .spec {

	padding: 10px 0;

}

.mv_pc {
	position: relative;
}

/* /MV
---------------------------------------- */

/* FVガイド
---------------------------------------- */

#sec_read {
	padding: 20px 0;
}

#sec_read h2 {

	color: #111111;
	margin-bottom: initial;

}

#sec_read p.tlink {
	text-align: right;
	padding-right: 5%;
}

#sec_read p.tlink a {
	color: #2250a7;
}

#sec_read .bt {

	margin: 20px 5%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	/* css 20220801 */
	margin: 20px auto;
	max-width: 70%;

}

#sec_read .bt li+li {
	margin-left: 20px;
}

#sec_read .telew {

	margin: 1rem 0;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;

}

#sec_read .telew li {
	width: 50%;
	margin: 1rem;
}

#sec_read .telnavi {

	display: none;

	position: relative;
	background-color: #ffffff;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);

	padding: 30px 20px 35px 20px;
	margin-bottom: 40px;

}

#sec_read .telnavi.active {
	display: block;
}

#sec_read .telnavi .close {

	position: absolute;
	top: 4%;
	right: 2%;

	width: 4%;
	height: auto;

}

#sec_read .telnavi .number {
	padding: 0 30%;
}

#sec_read .telnavi .ttl {

	/* font-size: 24px; */
	font-size: 1.33rem;

	font-weight: bold;

	padding: 10px;
	margin: 20px 0;

	color: #ffffff;
	background-color: #3399cc;

}

#sec_read .telnavi .guideflow {
	margin: 0 30% 0 10%;
}

.point_wrapper {
	display: flex;
	margin-bottom: 20px;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#sec_read {
		padding-top: 0;
	}

	#sec_read h2 {
		margin: 0.5em 0 1em 0;
	}

	#sec_read .bt {
		margin: 10px 0;
		/* css 20220801 */
		margin: 10px auto;
	}

	#sec_read .bt li+li {
		margin-left: 5px;
	}

	#sec_read .telew {
		margin: 0;
	}

	#sec_read .telew li {
		margin: 0 0.5rem 1.5rem 0.5rem;
	}

	#sec_read .telnavi {
		padding: 15px 20px 35px 20px;
	}

	#sec_read .telnavi .close {
		width: 2rem;
		height: auto;
	}

	#sec_read .telnavi .number {
		padding: 0 20%;
	}

	#sec_read .telnavi .ttl {
		font-size: 1rem;
		padding: 5px;
		margin: 10px 0;
	}

	#sec_read .telnavi .guideflow {
		margin: 0 10% 0 10%;
	}

	a.call {

		width: 50%;
		margin: 1em 0 0 14%;

		display: inline-block;
		color: #3399cc;
		font-weight: bold;

		padding: 0.2em;
		border: 2px solid #3399cc;

	}

	.point_wrapper {
		padding-top: 10px;
	}

}

/* /SP
---------------------------------------- */



/* /FVガイド
---------------------------------------- */


/* TOPICS
---------------------------------------- */

.topics {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	padding: 10px;
	border-bottom: solid 1px #c3d3e3
}

.topics__new {
	background-color: #ff0000;
	color: #ffffff;
	padding: 0 4px;
	margin-right: 10px;
}

/* /TOPICS
---------------------------------------- */


/* アンカーリンク
---------------------------------------- */

#sec_anchor {}

#sec_anchor ul {

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;

	margin-bottom: 40px;

}

#sec_anchor ul li {
	width: calc(100% / 4.1);
}

#sec_anchor h2 {}

#sec_anchor .note {
	text-align: left;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#sec_anchor ul {
		margin-bottom: 20px;
	}

	#sec_anchor ul li {
		width: calc(100% / 2);
	}

}

/* /SP
---------------------------------------- */



/* /アンカーリンク
---------------------------------------- */

/* 資金ニーズ
---------------------------------------- */

#sec_needs {}

#sec_needs h2 {}

#sec_needs ul {

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;

	/*IE11*/
	width: 100%;

}

#sec_needs ul li {

	width: calc(100% / 3.1);
	margin-bottom: 20px;
	padding: 3%;

	border: 2px solid #dde8f1;
	background-color: #ffffff;

}

#sec_needs ul li figure {

	height: 50px;
	width: auto;

}

#sec_needs ul li h3 {
	/* font-size: 24px; */
	font-size: 1.33em;
	margin: 30px 0;
}

#sec_needs ul li p {
	text-align: left;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#sec_needs ul {
		justify-content: center;
	}

	#sec_needs ul li {
		width: 48%;
		margin-bottom: 4px;
		padding: 5% 2%;
	}

	#sec_needs ul li:nth-of-type(odd) {
		margin-right: 4px;
	}

	#sec_needs ul li h3 {
		font-size: 1.1em;
		margin: 20px 0;
	}

	#sec_needs ul li:nth-of-type(6) h3 {
		margin-bottom: 40px;
	}

}

/* /SP
---------------------------------------- */




/* /資金ニーズ
---------------------------------------- */

/* 特長 
---------------------------------------- */

#sec_tokucho {}

#sec_tokucho h2 {}

#sec_tokucho h3 {

	text-align: left;
	/* font-size: 24px; */

	font-size: 1.33em;
	color: #006699;
}

#sec_tokucho h3 span {
	font-size: 1.5em;
}

#sec_tokucho ul {

	margin: 20px 0 40px 0;
	padding-bottom: 40px;
	border-bottom: 2px dotted #cccccc;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;

	/*IE11*/
	width: 100%;

}

#sec_tokucho ul li {
	width: 50%;
}

#sec_tokucho ul li.format {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;

	/*IE11*/
	width: 100%;


}

#sec_tokucho ul li.format p {
	text-align: left;
}

#sec_tokucho ul li.format div {

	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;

}

#sec_tokucho ul li.format div figure {
	width: 10%;
	margin: 20px 0;
	margin-left: auto;
	margin-right: auto;
}

#sec_tokucho ul li.format div p {
	font-size: 1.2rem;
	font-weight: bold;

}

#sec_tokucho ul li.pic {
	margin-left: 20px;
	padding-left: 20px;
}

#sec_tokucho ul li a {
	font-weight: normal;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#sec_tokucho h3 {

		text-align: center;

		font-size: 1.33em;
		color: #006699;
	}

	#sec_tokucho h3 span {
		font-size: 1.5em;
	}

	#sec_tokucho ul {

		margin: 10px 0 20px 0;
		padding-bottom: 20px;

		flex-direction: column-reverse;
		justify-content: center;

	}

	#sec_tokucho ul li {
		width: 100%;
	}

	#sec_tokucho ul li.format div p {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	#sec_tokucho ul li.pic {
		margin: 0;
		margin-bottom: 10px;
		padding: 0;
	}


}

/* /SP
---------------------------------------- */



/* /特長 
---------------------------------------- */

/* ご契約の流れ
---------------------------------------- */

#sec_flow {}

#sec_flow h2 {}

#sec_flow h3 {
	/* font-size: 20px; */
	font-size: 1.11rem;
	color: #ffffff;
	background-color: #3399cc;
	padding: 12px;
}

#sec_flow h4 {
	/* font-size: 22px; */
	font-size: 1.22rem;
	color: #006699;
	margin: 20px 0;
}

#sec_flow ul.step {

	margin-bottom: 80px;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;

	flex-wrap: nowrap;

	/*IE11*/
	width: 100%;

}

#sec_flow ul.step li {

	position: relative;

	width: calc(100% / 4);

	padding: 20px 0;

	background-color: #ffffff;
	border: 2px solid #dde8f1;

}

#sec_flow ul.step li+li {
	margin-left: 1.5em;
}

#sec_flow ul.step li:not(:last-of-type)::after {

	content: '';
	position: absolute;
	display: inline-block;
	top: 50%;


	width: 1em;
	height: 1em;

	right: -1em;

	border-top: 2px solid #006699;
	border-right: 2px solid #006699;
	transform: rotate(45deg);

}

#sec_flow ul.step li figure {

	height: 80px;
	width: auto;
	margin-top: 20px;

}

#sec_flow ul.step li div.inner {

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding: 0 15px;

	/*IE11*/
	width: 100%;

}

#sec_flow ul.step li div.inner .btsmall {

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	margin-bottom: 10px;

}

#sec_flow ul.step li div.inner .btsmall p+p {

	margin-top: 0.5em;

}

#sec_flow ul.step li div.inner p span {
	color: #ff3333;
	font-weight: bold;
}

#sec_flow ul.step li div.inner p.note {
	font-size: 0.65rem;
	color: #333333;
}

#sec_flow ul.step li div.inner p.pdfopen {
	font-size: 0.65rem;
	color: #333333;
}

#sec_flow div.paper {

	background-color: #ffffff;
	padding: 40px;

}

#sec_flow div.paper h5 {

	background-size: auto auto;
	background-color: rgba(221, 232, 241, 1);
	background-image: repeating-linear-gradient(145deg, transparent, transparent 2px, rgba(255, 255, 255, 1) 2px, rgba(255, 255, 255, 1) 3px);

	/* font-size: 24px; */
	font-size: 1.33rem;
	text-align: left;

	padding: 1em;

}

#sec_flow div.paper div {
	margin: 40px 0;
	text-align: left;
}

#sec_flow div.paper div p.ttl {
	font-weight: bold;
}

#sec_flow div.paper div>ul {
	margin: 0.5em 0;
}

#sec_flow div.paper div>ul li {
	list-style: disc;
	margin-left: 1em;
}

#sec_flow div.paper div p.dl {
	margin: 40px 0;
	line-height: 1.2;

}

#sec_flow div.paper div p.dl span {
	font-size: 0.65rem;
	color: #333333;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#sec_flow ul.step {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: stretch;
	}

	#sec_flow ul.step li {
		width: 100%;
		padding: 20px 0;
	}

	#sec_flow ul.step li+li {
		margin-left: 0;
		margin-top: 3em;
	}

	#sec_flow ul.step li:not(:last-of-type)::after {
		left: calc(50% - 0.5em);
		top: initial;
		bottom: -2em;
		transform: rotate(135deg);
	}

	#sec_flow ul.step li div.inner {
		padding: 0 2%;
	}

	#sec_flow ul.step li div.inner .pdfopen {
		width: 50%;
		margin-left: auto;
	}

	#sec_flow ul.step li div.inner .sodan {
		padding: 0 15%;
	}


	#sec_flow ul.step li div.inner .btsmall {

		flex-direction: row;
		justify-content: space-between;
		align-items: center;

	}

	#sec_flow ul.step li div.inner .btsmall p+p {
		margin-top: 0;
	}

	#sec_flow ul.step li div.inner .btsmall p {
		margin: 0 2px;
	}




	#sec_flow div.paper {
		padding: 20px;
	}

	#sec_flow div.paper div {
		margin: 20px 0;

	}


}

/* /SP
---------------------------------------- */



/* /ご契約の流れ
---------------------------------------- */

/* ご融資事例
---------------------------------------- */
#sec_jirei .jirei_box {
	height: 100%;
	border: solid 1px rgba(51, 153, 204, 1);
	border-radius: 10px;
}

#sec_jirei .jirei_inner {
	padding: 20px;
}

#sec_jirei h3 {
	position: relative;
	/* font-size: 24px; */
	font-size: 1.33rem;
	color: #ffffff;
	text-align: left;
	padding: .5em;
	background-size: auto auto;
	background-color: rgba(51, 153, 204, 1);
	background-image: repeating-linear-gradient(145deg, transparent, transparent 2px, rgba(92, 173, 214, 1) 2px, rgba(92, 173, 214, 1) 4px);
	border-radius: 10px 10px 0 0;
}

#sec_jirei .jirei_no {
	background: #fff;
	padding: 0 10px;
	margin-right: 10px;
	color: #3399cc;
	border-radius: 4px;
}

#sec_jirei h4 {
	position: relative;
	/* font-size: 24px; */
	font-size: 1.33rem;
	text-align: left;
	padding: 1em 1em 20px 1.2em;
	margin-bottom: 40px;
	border-bottom: 2px dotted #cccccc;

}

#sec_jirei h4::before {
	position: absolute;
	display: inline-block;
	background-image: url(../images/iconfile.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	width: 1em;
	height: 1em;
	top: 0;
	margin-top: 1.15em;
	left: 0;
}

#sec_jirei ul.layout {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 20px;
	align-items: center;
}

#sec_jirei ul.layout li:first-of-type {
	flex: 1;
	text-align: left;
	padding-right: 40px;
}

#sec_jirei ul.layout li:last-of-type {
	width: 25%;
}

#sec_jirei ul.layout p {
	border-bottom: dotted 1px #ccc;
	padding-bottom: 10px;
}

#sec_jirei .item:not(:last-child) {
	margin-bottom: 40px;
}

#sec_jirei h5 {
	text-align: left;
	/* font-size: 24px; */
	font-size: 1.33rem;
	color: #3399cc;
	padding: .2em .2em .2em .5em;
	border-left: 5px solid #3399cc;
	margin-bottom: 20px;
}

#sec_jirei p.ttl {
	text-align: left;
	/* font-size: 20px; */
	font-size: 1.11rem;
	font-weight: bold;
	margin-bottom: 20px;
}

#sec_jirei ul.list {
	text-align: left;
	margin-left: 1em;
}

#sec_jirei ul.list li {
	list-style-type: disc;
}



/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {
	#sec_jirei .jirei_inner {
		padding: 0 25px 20px 25px;
	}

	#sec_jirei h3 {
		font-size: 1.33rem;
		padding: 0.5em;
		margin-bottom: 15px;
		line-height: 1.5;
	}

	#sec_jirei h4 {
		font-size: 1.33rem;
		text-align: left;
		padding: 1em 1em 20px 1.5em;
		margin-bottom: 20px;
	}

	#sec_jirei ul.layout {

		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
		margin-bottom: 10px;
	}

	#sec_jirei ul.layout li:first-of-type {
		padding-right: initial;
		margin-bottom: 10px;
	}

	#sec_jirei ul.layout li:last-of-type {
		display: none;
	}

	#sec_jirei .item:not(:last-child) {
		margin-bottom: 20px;
	}

	#sec_jirei h5 {
		font-size: 1.33rem;
		padding: 0.5em;
		border-left: 5px solid #3399cc;
		margin-bottom: 10px;
	}

	#sec_jirei p.ttl {
		font-size: 1.11rem;
		font-weight: bold;
		margin-bottom: 20px;

	}

}

/* /SP
---------------------------------------- */



/* /ご融資事例
---------------------------------------- */

/* よくある質問
---------------------------------------- */

#sec_qa {}

#sec_qa .contentsbox {

	padding-bottom: 40px;

}

#sec_qa .qaqqaa:not(:last-of-type) {
	margin-bottom: 40px;

}

#sec_qa .qaqqaa .trigger {

	padding-left: 2em;
	padding-bottom: 20px;
	border-bottom: 2px dotted #cccccc;
	margin-bottom: 20px;

}

#sec_qa .qaqqaa .trigger::before {

	position: absolute;
	display: inline-block;
	background-image: url(../images/qaqhead.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	width: 1.5em;
	height: 1.5em;
	top: 0;
	margin-top: -0.2em;
	left: 0;
}

#sec_qa .qaqqaa .qaa {

	position: relative;
	padding-left: 2em;
	text-align: left;

	margin-bottom: 80px;

}

#sec_qa .qaqqaa .qaa::before {

	position: absolute;
	display: inline-block;
	background-image: url(../images/qaahead.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	width: 1.5em;
	height: 1.5em;
	top: 0;
	margin-top: -0.2em;
	left: 0;
}

#sec_qa .qaqqaa .qaa p+p {

	margin-top: 2em;

}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	/* SP閲覧で上部余白調整 */
	#sec_qa .qaqqaa:first-child {
		margin-top: 20px;
	}

}

/* /SP
---------------------------------------- */



/* /よくある質問
---------------------------------------- */

/* 商品概要
---------------------------------------- */

#sec_outline {}

#sec_outline p+p {
	margin-top: 0.5em;
}

#sec_outline .outline {
	text-align: left;
	margin-bottom: 40px;

}

#sec_outline .outline ul {

	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;

	border-bottom: 1px dotted #cccccc;
	padding-bottom: 20px;
	margin-bottom: 20px;

}

#sec_outline .outline ul li:first-of-type {

	padding-right: 2em;
	font-weight: bold;
	text-align: right;

	white-space: nowrap;
	width: 20%;

}

#sec_outline .outline ul li:last-of-type {

	flex: 1;

}

#sec_outline .about {
	text-align: left;
}

#sec_outline .about .ttl {
	font-weight: bold;
}

#sec_outline .about p.sim {

	margin: 2em 0;

}


/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#sec_outline {

		padding: 1rem;

	}

	#sec_outline .outline ul {
		flex-direction: column;
	}

	#sec_outline .outline ul li:first-of-type {
		text-align: left;
		white-space: initial;
		width: 100%;
	}

}

/* /SP
---------------------------------------- */




/* /商品概要
---------------------------------------- */

/* ご返済例
---------------------------------------- */

#sec_example {}

#sec_example .read {
	text-align: left;
	margin-bottom: 40px;
}

#sec_example .en:not(:last-of-type) {

	margin-bottom: 40px;


}

#sec_example .en h3 {

	padding: 20px;

	color: #3399cc;

	/* font-size: 24px; */
	font-size: 1.33rem;

	text-align: left;

	border-left: 5px solid #3399cc;

	margin-bottom: 20px;

}

#sec_example .en h3 span {

	font-size: 0.8em;

}

#sec_example .en table {
	/* font-size: 16px; */
	font-size: 0.88rem;

	width: 100%;

}

#sec_example .en table tr th,
#sec_example .en table tr td {

	padding: 1em;
	border: 1px solid #dde8f1;

}


#sec_example .en table tr th {
	background-color: rgba(221, 232, 241, 0.2);
}

#sec_example .en table tr th:first-of-type {
	text-align: right;
	white-space: nowrap;
}

#sec_example .en table tr th:not(:first-of-type) {
	font-weight: normal;
}

#sec_example .en table tr.val {
	font-weight: bold;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#sec_example .en table tr.hd th {
		text-align: center;
		font-weight: bold;
	}

	#sec_example .en table tr.val th {
		background-color: initial;
		text-align: center;
		font-weight: normal;
	}

}

/* /SP
---------------------------------------- */



/* /ご返済例
---------------------------------------- */




/*フッター
---------------------------------------- */

footer {
	padding: 80px 0 160px 0;
}



footer ul {
	width: 1000px;
	height: 60px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer ul li {
	height: 100%;
}

footer ul li:nth-of-type(1) {
	width: 315px;
	padding: 5px 0;
}

footer ul li:nth-of-type(2) {
	white-space: nowrap;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer ul li:nth-of-type(2) a:not(:last-of-type):after {
	content: '|';
	margin: 0 5px;
}

footer a {

	color: #111111;
	text-decoration: underline;

	/* font-size: 16px; */
	font-size: 0.88rem;

}

footer p.guide {

	text-align: center;

	/* font-size: 11px; */
	font-size: 0.61rem;

	color: #333333;

	margin: 35px 0 20px 0;

	padding: 0 1em;

}

footer p.noticebar {

	text-align: center;

	/* font-size: 14px; */
	font-size: 0.77em;

	color: #267ac9;

	padding: 1em;

	background-color: #c9e4ff;

}

footer p.copy {

	/* font-size: 12px; */
	font-size: 0.66rem;

	text-align: center;
	margin: 2em 0;
	padding: 0 1em;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	footer {
		padding: 20px 0;
		margin-bottom: 6rem;
	}

	footer ul {
		width: 100%;
		height: initial;
		padding: 0 20px;
		flex-direction: column;
		justify-content: center;
	}

	footer ul li {
		margin: 1rem;
	}

	footer ul li:not(:nth-of-type(2)) {
		width: 80%;
	}
}

/* /SP
---------------------------------------- */



/*/フッター
---------------------------------------- */

/* 固定ボタン
---------------------------------------- */

#btfix {
	position: fixed;
	left: 0;
	bottom: -100vh;
	width: 100%;
	background-color: rgba(0, 51, 102, 0.9);
	transition: all 0.5s ease-out;

	z-index: 2147483646;
}

#btfix.active {
	bottom: 0vh;
}

#btfix ul {

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	padding: 1rem;
	/* css 20220801 */
	max-width: 70%;
	padding: 1rem 0;

}

#btfix ul li {
	padding: 0.5rem;
	/* css 20220801 */
	padding: 0.5rem 0;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#btfix ul li {
		padding: 0.5rem;
		/* css 20220801 */
		padding: 0.5rem 0;
	}

}

/* /SP
---------------------------------------- */

/* /固定ボタン
---------------------------------------- */

/* 一覧ページ
---------------------------------------- */

/* 共通 */

/* ヘッダ下線消し */
header.morepage {
	border-bottom: none;
}

/* MV */

#sec_mv_more {
	padding: 20px 0;
}

#sec_mv_more h1 {
	font-size: 2.66rem;
	color: #003399;
	white-space: nowrap;
	line-height: 1.2;
}

#sec_mv_more h1 span {
	height: 1.6em;
	display: inline-block;
	background-image: repeating-linear-gradient(145deg, #99add6 0, #99add6 2px, transparent 2px, transparent 4px);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 8px;
}

#sec_anchor_more {

	margin: 20px 0 40px 0;
	font-weight: bold;

}

#sec_anchor_more ul {

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;

}

#sec_anchor_more ul li {
	margin: 0.5em;
}

#sec_anchor_more a {
	display: inline-block;
	color: #003399;
	font-size: 1.11rem;
	padding: 0.2em;
	border-bottom: 3px solid #003399;
}


/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	/* SPでタイトルが2行になる場合 */
	#sec_mv_more h1.disp_sp span {
		height: 3em;
	}

	#sec_anchor_more a {
		font-size: 1rem;
		padding: 0.2em 0;
	}

}

/* /SP
---------------------------------------- */



/* /共通 */

/* 事例 */

#sec_jirei.morepage h4.trigger::after {
	width: 1em;
	height: 1em;
	margin-top: 0.8em;
}

#sec_jirei.morepage h4.trigger.close::after {
	margin-top: 1.4em;
}

#sec_jirei.morepage h4:not(:last-of-type)+div {
	margin-bottom: 80px;
}

#sec_jirei.morepage h4 {

	padding-right: 2.5em;
	margin-bottom: 20px;

}

/* /事例 */

/* 質問 */

#sec_qa.morepage h2 {
	margin-bottom: 80px;
}

#sec_qa.morepage .qaqqaa .qaa {
	margin-bottom: 80px;
}

/* SP
---------------------------------------- */
@media only screen and (max-width: 768px) {

	#sec_qa.morepage h2 {
		margin-bottom: 40px;
	}

}

/* /SP
---------------------------------------- */



/* swiper */
.swiper {
  width: 100%;
	margin-bottom: 30px;
}

.swiper .swiper-slide {
	padding: 0 34px;
	height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  width: 36px !important;
  height: 36px !important;
  background: #003e9d;;
  border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #0052d1;
}

.swiper-button-next:after,
.swiper-button-prev:after{
  font-size: 14px !important;
  font-weight: bold;
  color: #fff;
}

.swiper-pagination {
	position: static !important;
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {
		width: 30px !important;
		height: 30px !important;
	}

  .swiper-button-next {
    margin-right: -10px;
  }
  .swiper-button-prev {
    margin-left: -10px;
  }

	.swiper .swiper-slide {
		padding: 0 10px;
	}
}