@charset "UTF-8";

/* 全体
-------------------------------------------------------*/
:root {
	--color-main: #007BC7;
	--color-sub: #E60020;
	--color-txt: #333;
	--color-wh: #FFF;
	--font-base: "Zen Kaku Gothic New", sans-serif;
	--font-sub: "Oswald", sans-serif;
	--trans-min02: all 0.2s ease-out;
}

body {
	position: relative;
	width: 100%;
	max-width: 1920px;
	padding-bottom: 100px;
	margin: 0 auto;
	background-color: var(--font-wh);
	color: var(--font-txt);
	font-family: var(--font-base);
	font-style: normal;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: .05em;
	word-break: normal;
	line-break: strict;
	overflow: clip;
	overflow-wrap: anywhere;
}
@media screen and (max-width: 640px), print {
	body {
		min-width: 0;
		font-size: 14px;
	}
}

/* header */
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.header_wrap {
	display: flex;
	align-items: center;
	height: 80px;
	width: calc(100% - 80px);
	margin: 0 auto;
}
.header_link {
	transition: var(--trans-min02);
}
.header_link:hover {
	opacity: .7;
}
@media screen and (max-width: 640px), print {
	.header_wrap {
		height: 70px;
	}
	.header_logo {
		width: 165px;
	}
}

/* footer */
.footer {
	background-color: var(--font-wh);
}
.footer_wrap {
	display: flex;
	justify-content: space-between;
	height: 80px;
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 15px 0;
	margin: 0 auto;
}
.footer_logo{
	display: flex;
	align-items: center;
}
.footer_link {
	transition: var(--trans-min02);
}
.footer_link:hover {
	opacity: .7;
}
.footer_copy{
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.footer_copyTxt {
	font-size: 12px;
}
@media screen and (max-width: 640px), print {
	.footer_logo{
		width: 160px;
	}
	.footer_wrap {
		flex-direction: column;
		height: 90px;
	}
}

/* 追従ボタン */
.float {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	background-color: var(--color-wh);
	box-shadow: 0px -3px 15px rgba(19, 54, 135, .18);
	z-index: 999;
}


/* 共通
-------------------------------------------------------*/
/* PC・SP */
.spOnly {
	display: none;
}
@media screen and (max-width: 640px), print {
	.pcOnly {
		display: none;
	}
	.spOnly {
		display: block;
	}
}

/* margin：0 */
.mt0 {
	margin-top: 0;
}
.mb0 {
	margin-bottom: 0;
}
.ml0 {
	margin-left: 0;
}
.mr0 {
	margin-right: 0;
}

/* ラッパー */
.wrap {
	width: calc(100% - 40px);
	max-width: 1200px;
	margin: 0 auto;
}

/* 通常リスト */
* + .list {
	margin-top: 10px;
}
.list:has( + *) {
	margin-bottom: 10px;
}
.list > li + li {
	margin-top: 5px;
}

/* 番号リスト */
* + .listNum {
	margin-top: 10px;
}
.listNum:has( + *) {
	margin-bottom: 10px;
}
.listNum {
	counter-reset: listNum;
}
.listNum > li {
	counter-increment: listNum;
	position: relative;
	padding-left: 25px;
}
.listNum > li::before {
	content: counter(listNum) ".";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--color-main);
	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
}
.listNum > li + li {
	margin-top: 5px;
}
@media screen and (max-width: 640px), print {
	.listNum > li::before {
		font-size: 16px;
	}
}

/* 注釈リスト */
* + .listNote {
	margin-top: 10px;
}
.listNote:has( + *) {
	margin-bottom: 10px;
}
.listNote {
	color: #AAA;
}
.listNote > li {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
}
.listNote > li::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 640px), print {
	.listNote > li {
		font-size: 13px;
	}
}

/* ボタン */
.btnList {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
.btnList_item {
	width: 360px;
	max-width: calc((100% - 40px) / 2);
}
.btn {
	max-width: 360px;
	margin: 0 auto;
}
.btnList_item > .btn {
	width: 100%;
	max-width: 100%;
	margin: 0;
}
.btn_link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 50px;
	border-radius: 4px;
	background-color: var(--color-main);
	color: var(--color-wh);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	transition: var(--trans-min02);
}
.btn_link::after {
	content: '';
	position: absolute;
	right: 24px;
	top: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	margin: auto 0;
	background: url(/banking-app/images/icon_arrow_wh.svg) center / 100% 100% no-repeat;
}
.btn_link[href$=".pdf"]::after {
	background-image: url(/banking-app/images/icon_pdf_wh.svg);
}
.btn_link--wh[href$=".pdf"]::after {
	background-image: url(/banking-app/images/icon_pdf_bl.svg);
}
.btn_link:hover {
	opacity: .7;
}
.btn_link--wh {
	border: 1px solid var(--color-main);
	background-color: var(--color-wh);
	color: var(--color-main);
}
.btn_link--wh::after {
	background-image: url(/banking-app/images/icon_arrow_bl.svg);
}
.btn_link--grd {
	background: linear-gradient(115deg, rgba(105, 190, 242, 1) 0%, rgba(80, 168, 221, 1) 20%, rgba(0, 123, 199, 1) 58%, rgba(0, 66, 180, 1) 100%);
}
@media screen and (max-width: 640px), print {
	.btnList {
		display: block;
	}
	.btnList_item {
		width: 100%;
		max-width: 100%;
	}
	.btnList_item + .btnList_item {
		margin-top: 20px;
	}
	.btn {
		max-width: 100%;
	}
	.btn_link {
		font-size: 16px;
	}
}

/* タイトル h2 */
.titH2 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 54px;
	z-index: 1;
}
.titH2::before {
	content: '';
	display: inline-block;
	width: 1px;
	height: 50px;
	margin-bottom: 8px;
	background: linear-gradient(0deg, rgba(0, 123, 199, 1) 0%, rgba(80, 168, 221, .7) 50%, rgba(173, 217, 243, 0) 100%);
}
.titH2_sub {
	color: var(--color-main);
	font-family: var(--font-sub);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .3em;
}
.titH2_main {
	font-size: 56px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .03em;
}
@media screen and (max-width: 1000px), print {
	.titH2_main {
		font-size: 48px;
	}
}
@media screen and (max-width: 640px), print {
	.titH2 {
		gap: 5px;
		margin-bottom: 35px;
	}
	.titH2::before {
		height: 40px;
		margin-bottom: 5px;
	}
	.titH2_sub {
		font-size: 13px;
	}
	.titH2_main {
		font-size: 30px;
	}
}

/* タイトル h3 */
.titH3 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 45px;
	z-index: 1;
}
.titH3_main {
	display: inline-block;
	border-bottom: 1px solid var(--color-main);
	color: var(--color-main);
	padding-bottom: 10px;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: .05em;
}
@media screen and (max-width: 1000px), print {
	.titH3_main {
		font-size: 36px;
	}
}
@media screen and (max-width: 640px), print {
	.titH3 {
		margin-bottom: 30px;
	}
	.titH3_main {
		font-size: 24px;
		letter-spacing: .03em;
	}
}


/* 清水銀行アプリの特長
-------------------------------------------------------*/
.secMv {
	position: relative;
	padding: 80px 0 30px;
	background: linear-gradient(127deg, rgba(255, 255, 255, 1) 30%, rgba(211, 237, 251, 1) 70%, rgba(186, 227, 249, 1) 85%);
}
.secMv::after {
	content: '';
	position: absolute;
	bottom: -60px;
	right: 50px;
	width: 600px;
	height: 600px;
	background: url(/banking-app/images/bg_logo.svg) center / 100% no-repeat;
	mix-blend-mode: multiply;
}
.secMv_contents {
	position: relative;
	display: flex;
	align-items: center;
	z-index: 1;
}
.secMv_main {
	flex: 1;
	transform: translateX(30px);
}
.secMv_tit {
	margin-bottom: 25px;
	color: var(--color-main);
	font-size: 80px;
	font-weight: 400;
	line-height: 1.2;
}
.secMv_list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	max-width: 400px;
}
.secMv_list_item {
	padding: 5px 15px;
	border-radius: 20px;
	background-color: #009FE8;
	color: var(--color-wh);
	box-shadow: 0px 3px 10px rgba(29, 86, 201, .3);
}
.secMv_btn {
	position: relative;
	margin: 110px 0 0 35px;
}
.secMv_btn > .btn_link {
	box-shadow: 0px 3px 15px rgba(19, 54, 135, .43);
}
.secMv_btn > .btn_link::after {
	transform: rotate(90deg);
}
.secMv_btn_icon {
	position: absolute;
	top: -50px;
	left: -35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	background: url(/banking-app/images/bg_bubble_red_bd.svg) center / 100% no-repeat;
	color: var(--color-wh);
	font-family: var(--font-sub);
	color: var(--color-wh);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	z-index: 1;
}
.secMv_btn_icon em {
	font-size: 22px;
	font-weight: 700;
}
.secMv_img {
	width: min(612px, 55%);
}
@media screen and (max-width: 1000px), print {
	.secMv_tit {
		font-size: 65px;
	}
}
@media screen and (max-width: 640px), print {
	.secMv {
		padding: 70px 0 30px;
	}
	.secMv::after {
		bottom: -80px;
		right: -100px;
		width: 350px;
		height: 350px;
	}
	.secMv_contents {
		display: block;
	}
	.secMv_main {
		transform: none;
		padding: 30px 0;
	}
	.secMv_tit {
		font-size: 42px;
	}
	.secMv_list {
		gap: 10px;
	}
	.secMv_list_item {
		padding: 5px 10px;
	}
	.secMv_btn {
		margin: 70px 15px 0;
	}
	.secMv_btn_icon {
		top: -50px;
		left: -20px;
		width: 70px;
		height: 70px;
		font-size: 12px;
	}
	.secMv_btn_icon em {
		font-size: 16px;
	}
	.secMv_img {
		width: 80%;
		margin: 0 auto;
	}
}


/* 清水銀行アプリの特長
-------------------------------------------------------*/
.secPoint {
	position: relative;
	padding: 30px 0 90px;
	background: linear-gradient(136deg, rgba(248, 250, 252, 1) 0%, rgba(245, 250, 255, 1) 32%, rgba(245, 252, 255, 1) 71%, rgba(248, 250, 252, 1) 100%);
}
.secPoint .titH2 {
	position: relative;
	z-index: 1;
}
.secPoint_panelList::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(/banking-app/images/bg_point.png) calc(50% - 50px) 70px / 2577px no-repeat;
	mix-blend-mode: multiply;
}
.secPoint_panelList_item {
	position: relative;
	display: flex;
	align-items: center;
	padding: 40px 70px 0;
	border-radius: 40px;
	backdrop-filter: blur(37px) brightness(1.07) opacity(75%);
	z-index: 1;
}
.secPoint_panelList_item:nth-child(even) {
	flex-direction: row-reverse;
}
.secPoint_panelList_item:has(.secPoint_panelList_img--full) {
	gap: 45px;
	padding: 60px 0 60px 70px;
}
.secPoint_panelList_item:nth-child(even):has(.secPoint_panelList_img--full) {
	padding-left: 0;
}
.secPoint_panelList_item + .secPoint_panelList_item {
	margin-top: 40px;
}
.secPoint_panelList_main {
	width: 52%;
	padding-left: 50px;
}
.secPoint_panelList_main:has(+ .secPoint_panelList_img.secPoint_panelList_img--full) {
	width: 48%;
}
.secPoint_panelList_img {
	flex: 1;
	text-align: center;
}
.secPoint_panelList_img > img {
	width: 350px;
}
.secPoint_panelList_img.secPoint_panelList_img--full > img {
	width: 100%;
}
.secPoint_panelList_tit {
	margin-bottom: 30px;
}
.secPoint_panelList_tit_point {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	padding-top: 3px;
	background: url(/banking-app/images/bg_bubble_bl.svg) center / 100% no-repeat;
	color: var(--color-wh);
	font-family: var(--font-sub);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .2em;
	transform: translateX(-50px);
	z-index: 1;
}
.secPoint_panelList_item:nth-child(even) .secPoint_panelList_tit_point {
	background-image: url(/banking-app/images/bg_bubble_red.svg);
}
.secPoint_panelList_tit_point em {
	font-size: 42px;
	font-weight: 500;
	line-height: 1;
	margin-top: -5px;
	letter-spacing: 0;
}
.secPoint_panelList_tit_main {
	color: var(--color-main);
	font-size: 50px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .04em;
}
.secPoint_panelList_tit_main > span {
	color: #666464;
	font-size: 40px;
	font-weight: 500;
	padding-right: 10px;
}
.secPoint_panelList_txt {
	font-size: 18px;
	letter-spacing: .08em;
}
@media screen and (max-width: 1000px), print {
	.secPoint_panelList::after {
		background-size: 1300px;
		background-position: calc(50% - 100px) 800px;
	}
	.secPoint_panelList_item {
		display: block;
		padding: 20px 20px 0;
		border-radius: 30px;
	}
	.secPoint_panelList_item:has(.secPoint_panelList_img--full) {
		padding: 20px 20px 30px;
	}
	.secPoint_panelList_item + .secPoint_panelList_item {
		margin-top: 30px;
	}
	.secPoint_panelList_main {
		width: 100%;
		padding-left: 30px;
	}
	.secPoint_panelList_main:has(+ .secPoint_panelList_img.secPoint_panelList_img--full) {
		width: 100%;
	}
	.secPoint_panelList_img {
		margin-top: 30px;
	}
	.secPoint_panelList_img.secPoint_panelList_img--full {
		text-align: right;
		transform: translateX(20px);
	}
	.secPoint_panelList_img > img {
		width: min(300px, 60%);
	}
	.secPoint_panelList_img.secPoint_panelList_img--full > img {
		width: min(500px, 85%);
	}
	.secPoint_panelList_tit_main {
		font-size: 46px;
	}
	.secPoint_panelList_tit_main > span {
		font-size: 36px;
	}

}
@media screen and (max-width: 640px), print {
	.secPoint {
		padding: 30px 0 50px;
	}
	.secPoint_panelList_tit {
		margin-bottom: 20px;
	}
	.secPoint_panelList_tit_point {
		width: 70px;
		height: 70px;
		margin-bottom: 5px;
		font-size: 12px;
		transform: translateX(-30px);
	}
	.secPoint_panelList_tit_point em {
		font-size: 24px;
	}
	.secPoint_panelList_tit_main {
		font-size: 28px;
	}
	.secPoint_panelList_tit_main > span {
		font-size: 30px;
	}
	.secPoint_panelList_txt {
		font-size: 16px;
	}
}


/* 清水銀行アプリはとにかく便利！
-------------------------------------------------------*/
.secFunction {
	position: relative;
	padding: 30px 0 0;
}
.secFunction_panelList {
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
}
.secFunction_panelList_item {
	width: calc((100% - 35px * 2) / 3);
	padding: 0 40px 40px;
	border-radius: 32px;
	background: linear-gradient(145deg, rgba(167, 213, 241, 1) 5%, rgba(97, 177, 225, 1) 25%, rgba(34, 129, 187, 1) 58%, rgba(40, 90, 177, 1) 100%);
	color: var(--color-wh);
	box-shadow: 0px 3px 15px rgba(19, 54, 135, .43);
}
.secFunction_panelList_titSub {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--font-sub);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .27em;
}
.secFunction_panelList_titSub::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 36px;
    margin-bottom: 5px;
	background-color: var(--color-wh);
}
.secFunction_panelList_icon {
	text-align: center;
	margin: 30px 0 20px;
}
.secFunction_panelList_tit {
	text-align: center;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .03em;
}
@media screen and (max-width: 1000px), print {
	.secFunction_panelList_item {
		width: calc((100% - 35px) / 2);
	}
}
@media screen and (max-width: 640px), print {
	.secFunction_panelList {
		gap: 15px 10px;
	}
	.secFunction_panelList_item {
		width: calc((100% - 10px) / 2);
		padding: 0 10px 25px;
		border-radius: 20px;
	}
	.secFunction_panelList_titSub {
		font-size: 12px;
	}
	.secFunction_panelList_titSub::before {
		height: 20px;
	}
	.secFunction_panelList_icon {
		margin: 20px 0 15px;
	}
	.secFunction_panelList_icon > img {
		height: 40px;
	}
	.secFunction_panelList_tit {
		font-size: 16px;
	}
	.secFunction_panelList_txt {
		font-size: 12px;
	}
}


/* 清水銀行アプリのはじめかた
-------------------------------------------------------*/
.secStarted {
	position: relative;
	padding: 100px 0 115px;
}
.secStarted::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 1655px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(220, 242, 255) 28%, rgba(212, 239, 255) 49%, rgba(224, 243, 255) 66%, rgba(255, 255, 255) 100%);
	z-index: -1;
}
.secStarted .btnList_item {
	width: 440px;
}
.secStarted_panelList {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	margin-bottom: 50px;
}
.secStarted_panelList_item {
	position: relative;
	width: calc((100% - 60px * 2) / 3);
	padding: 40px;
	border-radius: 32px;
	background-color: var(--color-wh);
}
.secStarted_panelList_item + .secStarted_panelList_item::before {
	content: '';
	position: absolute;
	top: 34%;
	left: -45px;
	display: block;
	width: 32px;
	height: 48px;
	background: url(/banking-app/images/icon_arrow_flow.svg) center / 100% 100% no-repeat;
}
.secStarted_panelList_num {
	position: absolute;
	top: -35px;
	left: 0;
	font-family: var(--font-sub);
	font-size: 80px;
	font-weight: 500;
	line-height: 1;
	background: linear-gradient(132deg, rgba(26, 130, 232, 1) 20%, rgba(48, 156, 222) 40%, rgba(101, 201, 239) 64%, rgba(193, 255, 242) 82%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.secStarted_panelList_tit {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .03em;
}
.secStarted_panelList_img {
	text-align: center;
	height: 400px;
	margin-bottom: 30px;
}
@media screen and (max-width: 1000px), print {
	.secStarted::after {
		height: 120%;
	}
	.secStarted_panelList {
		display: block;
		margin-bottom: 30px;
	}
	.secStarted_panelList_item {
		width: 100%;
		padding: 35px 30px;
		border-radius: 26px;
	}
	.secStarted_panelList_item + .secStarted_panelList_item {
		margin-top: 60px;
	}
	.secStarted_panelList_item + .secStarted_panelList_item::before {
		top: -55px;
		left: 0;
		right: 0;
		transform: rotate(90deg);
		margin: 0 auto;
	}
}
@media screen and (max-width: 640px), print {
	.secStarted {
		padding: 50px 0 60px;
	}
	.secStarted_panelList_num {
		top: -28px;
		font-size: 60px;
	}
	.secStarted_panelList_tit {
		height: auto;
		margin-bottom: 20px;
		font-size: 20px;
	}
	.secStarted_panelList_img {
		height: 300px;
		margin-bottom: 30px;
	}
}


/* セキュリティについて
-------------------------------------------------------*/
.secSecurity {
	position: relative;
	width: calc(100% - 120px);
	padding: 20px 0 85px;
	margin: 0 auto;
	border-radius: 100px;
	background: linear-gradient(115deg, rgba(248, 250, 252, 1) 0%, rgba(234, 238, 246) 54%, rgba(240, 247, 255) 100%);
}
.secSecurity_lead {
	text-align: center;
	font-size: 18px;
	letter-spacing: .08em;
	margin-bottom: 40px;
}
.secSecurity_panelList {
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
}
.secSecurity_panelList_item {
	width: calc((100% - 35px * 2) / 3);
	padding: 0 40px 40px;
	border-radius: 32px;
	background-color: var(--color-wh);
}
.secSecurity_panelList_titSub {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--color-sub);
	font-family: var(--font-sub);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .27em;
}
.secSecurity_panelList_titSub::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 36px;
    margin-bottom: 5px;
	background-color: var(--color-sub);
}
.secSecurity_panelList_icon {
	text-align: center;
	margin: 30px 0 20px;
}
.secSecurity_panelList_tit {
	text-align: center;
	margin-bottom: 10px;
	color: var(--color-main);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .03em;
}
@media screen and (max-width: 1000px), print {
	.secSecurity_panelList {
		display: block;
	}
	.secSecurity_panelList_item {
		width: 100%;
		padding: 0 30px 35px;
		border-radius: 26px;
	}
	.secSecurity_panelList_item + .secSecurity_panelList_item {
		margin-top: 30px;
	}
}
@media screen and (max-width: 640px), print {
	.secSecurity {
		width: calc(100% - 20px);
		padding: 20px 0 50px;
		border-radius: 40px;
	}
	.secSecurity_lead {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.secSecurity_panelList_titSub {
		font-size: 13px;
	}
	.secSecurity_panelList_titSub::before {
		height: 30px;
	}
	.secSecurity_panelList_tit {
		font-size: 20px;
	}
}


/* 注意事項
-------------------------------------------------------*/
.secCaution {
	position: relative;
	padding: 50px 0 0;
}
.secCaution_tabelList_item {
	padding: 25px 0;
	border-bottom: 1px solid #CCC;
}
.secCaution_tabelList_item:first-child {
	padding-top: 0;
}
.secCaution_tabelList_head {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.secCaution_tabelList_icon {
	width: 70px;
	text-align: center;
}
.secCaution_tabelList_tit {
	flex: 1;
	color: var(--color-main);
	font-size: 32px;
	font-weight: 400;
}
.secCaution_tabelList_body {
	padding-left: 70px;
}
@media screen and (max-width: 640px), print {
	.secCaution {
		position: relative;
		padding: 35px 0 0;
	}
	.secCaution_tabelList_head {
		margin-bottom: 15px;
	}
	.secCaution_tabelList_icon {
		width: 50px;
		height: 50px;
		padding: 8px;
	}
	.secCaution_tabelList_tit {
		font-size: 24px;
	}
	.secCaution_tabelList_body {
		padding-left: 50px;
	}
}


/* よくあるご質問
-------------------------------------------------------*/
.secFaq {
	position: relative;
	padding: 50px 0 100px;
}
@media screen and (max-width: 640px), print {
	.secFaq {
		padding: 35px 0 60px;
	}
}


/* ダウンロードはこちら
-------------------------------------------------------*/
.secDownload {
	position: relative;
	padding: 30px 0;
	background: linear-gradient(127deg, rgba(255, 255, 255, 1) 30%, rgba(211, 237, 251, 1) 70%, rgba(186, 227, 249, 1) 85%);
}
.secDownload::after {
	content: '';
	position: absolute;
	bottom: -60px;
	right: 50px;
	width: 600px;
	height: 600px;
	background: url(/banking-app/images/bg_logo.svg) center / 100% no-repeat;
	mix-blend-mode: multiply;
}
.secDownload .titH2 {
	margin-bottom: 65px;
}
.secDownload_contents {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 20px;
	z-index: 1;
}
.secDownload_img {
	width: min(538px, 45%);
	margin-left: -40px;
}
.secDownload_main {
	flex: 1;
	padding-bottom: 90px;
}
.secDownload_box {
	padding: 0 0 35px;
	border-radius: 32px;
	background-color: var(--color-wh);
	box-shadow: 0px 3px 15px rgba(19, 54, 135, .15);
}
.secDownload_box_tit {
	position: relative;
	width: min(360px, 88%);
	text-align: center;
	padding: 15px;
	margin: 0 auto 20px;
	border-radius: 0 0 20px 20px;
	background: linear-gradient(115deg, rgba(105, 190, 242, 1) 0%, rgba(80, 168, 221, 1) 20%, rgba(0, 123, 199, 1) 58%, rgba(0, 66, 180, 1) 100%);
}
.secDownload_box_tit_main {
	color: var(--color-wh);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .03em;
}
.secDownload_box_tit_icon {
	position: absolute;
	top: -50px;
	left: -35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	background: url(/banking-app/images/bg_bubble_red_bd.svg) center / 100% no-repeat;
	color: var(--color-wh);
	font-family: var(--font-sub);
	color: var(--color-wh);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	z-index: 1;
}
.secDownload_box_tit_icon em {
	font-size: 22px;
	font-weight: 700;
}
.secDownload_box_list {
	display: flex;
	flex-wrap: wrap;
}
.secDownload_box_list_item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: calc(100% / 2);
	padding: 0 15px;
}
.secDownload_box_list_item + .secDownload_box_list_item {
	border-left: 1px solid #CCC;
}
.secDownload_box_list_dw {
	width: min(162px, 55%);
}
.secDownload_box_list_qr {
	width: min(120px, 45%);
}
.secDownload_box_list_link {
	transition: var(--trans-min02);
}
.secDownload_box_list_link:hover {
	opacity: .7;
}
@media screen and (min-width: 641px), print {
	.secDownload .titH2 {
		align-items: flex-start;
		text-align: left;
	}
}
@media screen and (max-width: 1000px), print {
	.secDownload_box_tit_main {
		font-size: 20px;
	}
}
@media screen and (max-width: 640px), print {
	.secDownload {
		padding: 30px 0 50px;
	}
	.secDownload::after {
		bottom: -80px;
		right: -100px;
		width: 350px;
		height: 350px;
	}
	.secDownload_contents {
		display: block;
	}
	.secDownload_img {
		width: 80%;
		margin: 0 auto;
	}
	.secDownload_main {
		padding: 0;
		margin-bottom: 30px;
	}
	.secDownload_box {
		padding: 0 0 25px;
		border-radius: 20px;
	}
	.secDownload_box_tit {
		width: calc(100% - 60px);
		padding: 10px;
		border-radius: 0 0 15px 15px;
	}
	.secDownload_box_tit_main {
		font-size: 16px;
	}
	.secDownload_box_tit_icon {
		top: -50px;
		left: -20px;
		width: 70px;
		height: 70px;
		font-size: 12px;
	}
	.secDownload_box_tit_icon em {
		font-size: 16px;
	}
	.secDownload_box_list {
		display: block;
		padding: 0 20px;
	}
	.secDownload_box_list_item {
		gap: 15px;
		width: 100%;
		padding: 0 20px;
	}
	.secDownload_box_list_item + .secDownload_box_list_item {
		padding-top: 15px;
		margin-top: 15px;
		border-left: none;
		border-top: 1px solid #CCC;
	}
}


/* お問い合わせ
-------------------------------------------------------*/
.secContact {
	position: relative;
	padding: 30px 0 90px;
	background: linear-gradient(102deg, rgba(248, 250, 252, 1) 0%, rgba(245, 250, 255, 1) 32%, rgba(245, 252, 255, 1) 71%, rgba(248, 250, 252, 1) 100%);
}
.secContact_box {
	max-width: 1000px;
	text-align: center;
	padding: 40px;
	margin: 0 auto;
	border-radius: 40px;
	background-color: rgba(255, 255, 255, .75);
}
.secContact_box::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(/banking-app/images/bg_contact.png) calc(50% - 120px) -120px / 2045px no-repeat;
	mix-blend-mode: multiply;
}
.secContact_box_tit {
	position: relative;
	margin-bottom: 30px;
	color: var(--color-main);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .03em;
	z-index: 1;
}
.secContact_box_item {
	position: relative;
	max-width: 560px;
	margin: 0 auto;
	z-index: 1;
}
.secContact_box_item + .secContact_box_item {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid #DDD;
}
.secContact_box_tel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}
.secContact_box_num {
	font-family: var(--font-sub);
	font-size: 50px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .06em;
}
.secContact_box_txt {
	font-size: 18px;
}
@media screen and (max-width: 640px), print {
	.secContact {
		padding: 30px 0 50px;
	}
	.secContact_box {
		padding: 30px 20px;
		border-radius: 26px;
	}
	.secContact_box::after {
		background-size: 900px;
		background-position: calc(50% - 40px) 0;
	}
	.secContact_box_tit {
		margin-bottom: 20px;
		font-size: 20px;
	}
	.secContact_box_tel {
		gap: 10px;
	}
	.secContact_box_icon {
		width: 50px;
	}
	.secContact_box_num {
		font-size: 32px;
	}
	.secContact_box_txt {
		font-size: 16px;
	}
}