@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*preset*/
.container p {
	font-size: 16px;
	line-height: 1.5;
}
img {
	image-rendering: -webkit-optimize-contrast;
}
sup {
	font-size: 0.6em;
	margin-top: 0.3em;
}
.notes, .notes_num {
	font-size: 13px;
}
.notes li, .notes_num li {
	font-size: 13px;
}
.bg_green {
	background-color: #F3F7CC;
}
.bg_gray {
	background-color: #F5F5F5;
}
.bg_gray--gradient {
	background-image: linear-gradient(0deg, rgba(236, 236, 236, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

@media screen and (max-width: 767px) {
	.container p {
		font-size: 14px;
	}
}

/*KV*/
.signboard {
	width: 100%;
	margin: 0;
	background-image: url(/service/app/banking/images/kv.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
.signboard .inner {
	max-width: 1200px;
	height: 459px;
	margin: 0 auto;
}
.sbd__block {
	display: grid;
	grid-template:
		"icon title"
		"icon catch"
	/150px 1fr;
	gap: 14px 18px;
	padding-top: 66px;
}
.sbd__app-icon {
	grid-area: icon;
}
.sbd__title {
	grid-area: title;
	font-size: 52px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.040em;
	line-height: 1.5;
}
.sbd__catch {
	grid-area: catch;
	display: flex;
	gap: 30px;
	margin-top: -50px;
}
.sbd__catch li {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 17px;
	font-weight: 500;
}
.sbd__catch li::before {
	content: "";
	min-width: 24px;
	height: 24px;
	background-image: url(/service/app/banking/images/icon_check.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.sbd-dl__block {
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translateX(-135%);
	background-color: #FFFFFF;
	width: 433px;
	box-shadow: 0 3px 3px rgba(0, 0, 0, .10);
	border-radius: 10px;
	padding-bottom: 20px;
}
.sbd-dl__title {
	background-image: linear-gradient(90deg,rgba(178, 234, 215, 1) 0%, rgba(230, 242, 238, 1) 100%);
	border-radius: 10px 10px 0 0;
	padding: 10px;
}
.sbd-dl__title p {
	display: flex;
	gap: 13px;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.120em;
}
.sbd-dl__title p::before {
	content: "";
	min-width: 27px;
	height: 33px;
	background-image: url(/service/app/banking/images/icon_download.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.sbd-dl__qr {
	margin: 20px auto;
	width: fit-content;
}
.sbd-dl__link {
	font-size: 15px;
	letter-spacing: 0.025em;
	text-align: center;
}
.sbd-dl__link a {
	font-weight: 400;
}
.sbd-ranking__block {
	position: absolute;
	top: 35px;
	right: 100px;
}
.sbd-notes__block {
	position: absolute;
	bottom: -40px;
	right: 100px;
}
.sbd-notes__block .notes {
	color: #333333;
}

@media screen and (max-width: 1199px) {
	.signboard {
		background-position: calc(50% - 50px) center;
	}
	.signboard .inner {
		padding: 0 1%;
		/* width: 100vw; */
		/* max-width: max-content; */
	}
	.sbd__block {
		grid-template:
			"icon title"
			"icon catch"
			/18% 1fr;
		gap: 14px 18px;
		padding-top: 50px;
	}
	.sbd__app-icon {
	}
	.sbd__title {
		font-size: clamp(32px,4vw,52px);
	}
	.sbd__catch {
		flex-direction: column;
		gap: 10px;
		margin-top: -20px;
	}
	.sbd__catch li {
		font-size: 15px;
	}
	.sbd__catch li::before {
	}
	.sbd-dl__block {
		left: 2%;
		transform: none;
		max-width: 50%;
	}
	.sbd-dl__title {
	}
	.sbd-dl__title p {
	}
	.sbd-dl__title p::before {
	}
	.sbd-dl__qr {
	}
	.sbd-dl__link {
	}
	.sbd-dl__link a {
	}
	.sbd-ranking__block {
		top: auto;
		bottom: 20px;
		right: 20px;
	}
	.sbd-notes__block {
		right: 2%;
	}
	.sbd-notes__block .notes {
	}
}
@media screen and (max-width: 767px) {
	.signboard {
		background-image: url(/service/app/banking/images/kv_sp.jpg);
		background-position: center bottom;
		height: 135vw;
		margin-top: 250px;
	}
	.signboard .inner {
		/* width: 100vw; */
		padding: 0;
	}
	.sbd__block {
		grid-template:
			"icon title"
			"catch catch"
			/84px 230px;
		gap: 30px 12px;
		justify-content: center;
		/* width: 90%; */
		position: absolute;
		top: -270px;
		left: 50%;
		transform: translateX(-50%);
	}
	.sbd__app-icon {
	}
	.sbd__title {
		font-size: 32px;
		line-height: 1.125;
	}
	.sbd__catch {
	}
	.sbd__catch li {
	}
	.sbd__catch li::before {
		min-width: 18px;
		height: 18px;
		margin-left: 6px;
	}
	.sbd-dl__block {
		left: 50%;
		transform: translateX(-50%);
		top: -50px;
		background-color: transparent;
		box-shadow: none;
		bottom: auto;
		max-width: 315px;
	}
	.sbd-dl__title {
	}
	.sbd-dl__title p {
	}
	.sbd-dl__title p::before {
	}
	.sbd-dl__qr {
	}
	.sbd-dl__button {
		background-color: #C4D700;
		border-radius: 33px;
		padding: 14px 40px;
		margin-bottom: 11px;
	}
	.sbd-dl__button a {
		font-size: 18px;
		font-weight: 700;
		color: #007F51;
		text-decoration: none;
	}

	.sbd-dl__link {
	}
	.sbd-dl__link a {
	}
	.sbd-ranking__block {
		right: 17px;
	}
	.sbd-notes__block {
		right: 24px;
	}
	.sbd-notes__block .notes {
	}
}

/*point*/
.point-section {
	width: 100%;
	padding-top: 100px;
}
.point-section .inner {
	max-width: 982px;
	margin-bottom: 0;
}
p.point-subtitle {
	font-size: 22px;
	letter-spacing: 0.075em;
	text-align: center;
}
h2.point-title {
	font-size: 32px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.075em;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 70px;
}
.point__number {
	font-family: Roboto, -apple-system, "Arial", "Helvetica", "Helvetica Neue", "Avenir", "Droid Sans", "Noto Sans JP", メイリオ, "MS PGothic", sans-serif, "Meiryo UI";
	display: inline-block;
	background-color: #007F51;
	color: #fff;
	border-radius: 50%;
	width: 67px;
	height: 67px;
	margin: 0 8px 0 10px;
	font-size: 45px;
	font-weight: 600;
}
.point-block {
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 1) 100%);
	border: 1px solid #D9D9D9;
	border-radius: 10px;
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 35px;
	padding: 0 60px 0 70px;
	margin-bottom: 60px;
}
.point-block:last-child {
	margin-bottom: 0;
}
.point-block .point__number {
	position: absolute;
	width: 55px;
	height: 55px;
	top: -27px;
	right: 0;
	left: 0;
	margin: 0 auto;
	padding-top: 8px;
	font-size: 24px;
	text-align: center;
}
.point-block__col {
	display: flex;
	flex-direction: column;
	align-self: center;
}
.point-block__img {
	width: 360px;
}
.point-block--title {
	display: flex;
	gap: 25px;
	margin-bottom: 27px;
}
.point-block--title__icon {

}
.point-block--title__txt {
	font-size: 24px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.075em;
	line-height: 1.5;
}
.point-block__no1 {
	font-weight: 500;
	letter-spacing: 0.025em;
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 15px;
	width: fit-content;
	background-color: #FFFFFF;
	border-radius: 14px;
	padding: 2px 18px 2px 14px;
}
.point-block__no1::before {
	content: "";
	min-width: 23px;
	height: 18px;
  background-image: url(/service/app/banking/images/icon_crown.png);
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
	.point-section {
	}
	.point-section .inner {
	}
	p.point-subtitle {
	}
	h2.point-title {
	}
	.point__number {
	}
	.point-block {
		padding: 30px 15px 0 30px;
		gap: 35px;
	}
	.point-block:last-child {
	}
	.point-block .point__number {
	}
	.point-block__col {
	}
	.point-block__col.txt {
		width: 52%;
	}
	.point-block__col.img {
		width: 44%;
		align-self: flex-end;
	}
	.point-block__img {
		width: 100%;
	}
	.point-block--title {
		gap: 20px;
		margin-bottom: 20px;
	}
	.point-block--title__icon {
	}
	.point-block--title__txt {
		font-size: clamp(19px,2.5vw,24px);
	}
	.point-block__no1 {
		margin-top: 0;
		border-radius: 22px;
	}
	.point-block__no1::before {
	}
}
@media screen and (max-width: 767px) {
	.point-section {
		padding-top: 60px;
		padding-bottom: 50px;
	}
	.point-section .inner {
	}
	p.point-subtitle {
		font-size: 18px;
	}
	h2.point-title {
		font-size: 26px;
	}
	.point__number {
	}
	.point-block {
		flex-direction: column;
		gap: 10px;
	}
	.point-block:last-child {
	}
	.point-block .point__number {
	}
	.point-block__col {
	}
	.point-block__col.txt {
		width: 100%;
	}
	.point-block__col.txt .notes li {
		font-size: 12px;
	}
	.point-block__col.img {
		width: 100%;
	}
	.point-block__img {
	}
	.point-block--title {
		gap: 12px;
		margin-bottom: 16px;
	}
	.point-block--title__icon {
		width: 56px;
	}
	.point-block--title__txt {
		font-size: 20px;
		letter-spacing: 0;
	}
	.point-block__no1 {
		margin: 0 auto;
	}
	.point-block__no1::before {
	}
}

/*cv-dl*/
.cv-dl-section {
	width: 100%;
	box-shadow: 0 -6px 6px rgba(0, 0, 0, .04);
	margin: 0 auto;
}
.cv-dl-section .inner {
	display: flex;
	justify-content: center;
	padding: 17px 0;
	margin-bottom: 0;
}
.cv-dl-app {
	align-items: center;
	display: flex;
	gap: 14px;
	border-right: 1px solid #D2D2D2;
	padding-right: 35px;
	margin-right: 35px;
}
.cv-dl-app div {
	width: 126px;
}
.cv-dl-app p {
	font-size: 24px;
	font-weight: 700;
	color: #004831;
}
.cv-dl-qr {
}
@media screen and (max-width: 1199px) {
	.cv-dl-section {
	}
	.cv-dl-section .inner {
	}
	.cv-dl-app {
	}
	.cv-dl-app div {
	}
	.cv-dl-app p {
	}
	.cv-dl-qr {
	}
}
@media screen and (max-width: 767px) {
	.cv-dl-section {
	}
	.cv-dl-section .inner {
		padding: 20px 0;
	}
	.cv-dl-app {
	}
	.cv-dl-app div {
	}
	.cv-dl-app p {
	}
	.cv-dl-qr {
	}
	.cv-dl-btn p {
		margin-bottom: 0;
	}
	.cv-dl-btn p a {
		display: block;
		font-size: 18px;
		font-weight: 700;
		color: #FFFFFF;
		text-decoration: none;
		background-color: #007F51;
		border-radius: 26px;
		padding: 14px 30px;
	}
}
/*追従*/
#cvFollow {
	opacity: 0;
	transition: opacity 0.5s ease;
}
#cvFollow.visible {
	opacity: 1;
}
.sticky {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}
@media screen and (max-width: 1199px) {
	.sticky {
		/* bottom: 77px; */
	}
}
@media screen and (max-width: 767px) {
}

/*movie*/
.movie-section {
	width: 100%;
}
.movie-section .inner {
	max-width: 982px;
	margin-bottom: 0;
}
p.movie-subtitle {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.075em;
	text-align: center;
}
h2.movie-title {
	font-size: 32px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.075em;
	line-height: 1.5;
	text-align: center;
}
p.movie_alert {
	font-size: 18px;
	font-weight: 700;
	color: #004831;
	position: relative;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
}
.movie_alert::before {
	content: "";
	min-width: 48px;
	height: 48px;
	background-image: url(/service/app/banking/images/icon_alert.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.movie_modal__contents {
	display: flex;
	justify-content: space-between;
}
.movie_modal__txt {
	width: auto;
}
.movie_modal__txt .movie_modal_alert {
	color: #333333;
	justify-content: start;
	margin-bottom: 30px;
	margin-top: 0;
}
.movie_modal__txt .icon-arrow::after {
	content: url(/service/app/banking/images/icon_arrow.svg);
	width: 8px;
	height: 13px;
	margin-left: 7px;
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.movie_modal__txt-block {
	width: 90%;
}
.movie_modal__img {
}
.movie_modal__img p {
	font-size: 11px;
	text-align: right;
	margin-bottom: 0;
}
.movie_modal__img div {
	width: 264px;
}

@media screen and (max-width: 1199px) {
	.movie-section {
	}
	.movie-section .inner {
	}
	p.movie-subtitle {
	}
	h2.movie-title {
	}
	p.movie_alert {
	}
	.movie_alert::before {
	}
	.movie_modal__contents {
	}
	.movie_modal__txt {
	}
	.movie_modal__txt .movie_modal_alert {
	}
	.movie_modal__txt .icon-arrow::after {
	}
	.movie_modal__txt-block {
	}
	.movie_modal__img {
	}
	.movie_modal__img p {
	}
	.movie_modal__img div {
	}
}
@media screen and (max-width: 767px) {
	.movie-section {
	}
	.movie-section .inner {
	}
	p.movie-subtitle {
		font-size: 15px;
	}
	h2.movie-title {
		font-size: 26px;
	}
	.movie-thumb.check-icon img {
		transform: none;
	}
	p.movie_alert {
		font-size: 16px;
		gap: 10px;
		align-items: flex-start;
		margin-top: 30px;
	}
	.movie_alert::before {
		min-width: 30px;
		height: 30px;
	}
	.movie_modal__contents {
		flex-direction: column;
	}
	.movie_modal__txt {
	}
	.movie_modal__txt .movie_modal_alert {
		gap: 20px;
	}
	.movie_modal__txt .movie_modal_alert::before {
		min-width: 36px;
		height: 36px;
	}
	.movie_modal__txt .icon-arrow::after {
	}
	.movie_modal__txt-block {
		width: 100%;
	}
	.movie_modal__img {
	}
	.movie_modal__img p {
	}
	.movie_modal__img div {
	}
}

/*step*/
.step-section {
	width: 100%;
	padding-top: 90px;
	padding-bottom: 90px;
}
.step-section .inner {
	max-width: 982px;
	margin-bottom: 0;
}
h2.step-title {
	font-size: 24px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.075em;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 20px;
	display: flex;
	gap: 11px;
	align-items: center;
	justify-content: center;
}
h2.step-title::before {
	content: "";
	min-width: 29px;
	height: 26px;
	background-image: url(/service/app/banking/images/icon_login.png);
	background-size: contain;
	background-repeat: no-repeat;
}
.step-section .step-flow-carousel .carousel__list .carousel__list__item {
	background-color: #FFFFFF;
}
.step_block {
	display: flex;
}
.step_text {
	display: flex;
	flex-direction: column;
	align-self: center;
	text-align: center;
}
.step_img {
	display: flex;
	justify-content: center;
}
p.step_text--main {
	font-size: 18px;
	font-weight: 700;
}
p.step_text--small {
	font-size: 14px;
}
.circle_orange {
	font-family: Roboto, -apple-system, "Arial", "Helvetica", "Helvetica Neue", "Avenir", "Droid Sans", "Noto Sans JP", メイリオ, "MS PGothic", sans-serif, "Meiryo UI";
	display: inline-block;
	background-color: #D98727;
	color: #fff;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	margin: 0 2px 0 2px;
	font-size: 11px;
	font-weight: 600;
	padding-top: 4px;
}
.circle_green {
	font-family: Roboto, -apple-system, "Arial", "Helvetica", "Helvetica Neue", "Avenir", "Droid Sans", "Noto Sans JP", メイリオ, "MS PGothic", sans-serif, "Meiryo UI";
	display: inline-block;
	background-color: #C4D700;
	color: #004831;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	margin: 0 2px 0 2px;
	font-size: 11px;
	font-weight: 600;
	padding-top: 4px;
}
@media screen and (max-width: 1199px) {
	.step-section {
	}
	.step-section .inner {
	}
	h2.step-title {
	}
	h2.step-title::before {
	}
	.step-section .row {
		display: flex;
	}
	.step-section .step-flow-carousel .carousel__list .carousel__list__item {
	}
	.step_block {
	}
	.step_text {
	}
	.step_img {
	}
	p.step_text--main {
	}
	p.step_text--small {
	}
	.circle_orange {
	}
	.circle_green {
	}
}
@media screen and (max-width: 767px) {
	.step-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.step-section .inner {
	}
	h2.step-title {
		font-size: 20px;
		letter-spacing: 0;
		gap: 8px;
		margin-bottom: 30px;
	}
	h2.step-title::before {
		min-width: 24px;
		height: 22px;
	}
	.step-section .row {
		flex-direction: column-reverse;
	}
	.step-section .step-flow-carousel .carousel__list .carousel__list__item {
		padding: 30px 30px;
	}
	.step_block {
	}
	.step_text {
	}
	.step_img {
		margin: 0 auto;
	}
	.step_img img {
		max-width: 200px;
	}

	p.step_text--main {
	}
	p.step_text--small {
	}
	.circle_orange {
	}
	.circle_green {
	}
}

/*functions*/
.functions-section {
	width: 100%;
}
.functions-section .inner {
	max-width: 982px;
	margin-bottom: 0;
}
h2.functions-title {
	font-size: 32px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.075em;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 36px;
}
.functions-block {
	display: flex;
	border: 1px solid #CCCCCC;
	border-radius: 10px;
	padding: 20px;
}
.functions__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 23px;
	border-right: 1px solid #CCCCCC;
}
.functions__box:last-child {
	border-right: none;
}
.functions__box-img {
	margin-bottom: 15px;
}
p.functions__box-title {
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}
p.functions__box-txt {
	font-size: 14px;
	line-height: 1.71;
}
p.functions__box-txt a.icon-arrow {
	font-weight: normal;
}
.functions-toggle {
	margin-bottom: 34px;
}
p.functions-toggle__title {
	font-size: 18px;
	margin-bottom: 0;
}
.functions-table {margin-bottom: 0;}
.functions-table th {
	background-color: #E6F2EE;
	font-size: 16px;
	text-align: center;
	width: 21%;
	border-bottom: 1px solid #FFFFFF;
	text-align: left;
	vertical-align: top;
	padding: 18px 20px;
}
.functions-table td {
	background-color: #F9F9F9;
	border-bottom: 1px solid #FFFFFF;
	padding: 15px 20px;
	font-size: 16px;
	line-height: 1.5;
}
.functions-table td .list_primary li {
	margin-bottom: 16px;
}
.functions-table tr:last-of-type th,
.functions-table tr:last-of-type td {
	border: 0;
}
.functions-table td .list_primary,
.functions-table td .list_primary li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
	.functions-section {
	}
	.functions-section .inner {
	}
	h2.functions-title {
	}
	.functions-block {
	}
	.functions__box {
		padding: 0 14px;
	}
	.functions__box:last-child {
	}
	.functions__box-img {
	}
	p.functions__box-title {
	}
	p.functions__box-txt {
	}
	p.functions__box-txt a.icon-arrow {
	}
	.functions-toggle {
	}
	p.functions-toggle__title {
	}
	.functions-table {
	}
	.functions-table th {
		width: 23%;
	}
	.functions-table td {
	}
	.functions-table tr:last-of-type th,
	.functions-table tr:last-of-type td {
	}
	.functions-table td .list_primary,
	.functions-table td .list_primary li:last-child {
	}
}
@media screen and (max-width: 767px) {
	.functions-section {
		/* padding-top: 50px; */
		/* padding-bottom: 50px; */
	}
	.functions-section .inner {
	}
	h2.functions-title {
		font-size: 26px;
	}
	.functions-block {
		flex-direction: column;
		padding: 30px 20px;
	}
	.functions__box {
		border-right: none;
		border-bottom: 1px solid #CCCCCC;
		flex-direction: row;
		gap: 15px;
		align-items: flex-start;
		padding: 0 0 20px 0;
		margin-bottom: 20px;
	}
	.functions__box:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.functions__box-img {
		width: 125px;
	}
	p.functions__box-title {
		text-align: left;
		margin-bottom: 0;
	}
	p.functions__box-txt {
		margin-bottom: 0;
	}
	p.functions__box-txt a.icon-arrow {
	}
	.functions-toggle {
	}
	p.functions-toggle__title {
		font-size: 16px;
	}
	.functions-table, .functions-table tr, .functions-table th, .functions-table td {
		display: block;
	}
	.functions-table {
	}
	.functions-table th {
		width: 100%;
	}
	.functions-table td {
		margin-bottom: 10px;
	}
	.functions-table td p {
		font-size: 16px;
	}
	.functions-table tr:last-of-type th,
	.functions-table tr:last-of-type td {
	}
	.functions-table td .list_primary,
	.functions-table td .list_primary li:last-child {
	}
}

/*faq*/
.faq-section {
	width: 100%;
	padding-top: 90px;
	padding-bottom: 90px;
}
.faq-section .inner {
	max-width: 982px;
	margin-bottom: 0;
}
h2.faq-title {
	font-size: 32px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.075em;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 16px;
}
p.faq-txt {
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 30px;
}
.faq-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	border-bottom: 1px solid #CCCCCC;
	margin-bottom: 60px;
}
.faq-list li {

}
.faq-list li a {
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;	position: relative;
	display: table;
	width: 100%;
	padding: 22px 0;
	border-top: 1px solid #CCCCCC;
	border-bottom: none;
}
.faq-btn {
	background-color: #FFFFFF;
}

@media screen and (max-width: 1199px) {
	.faq-section {
	}
	.faq-section .inner {
	}
	h2.faq-title {
	}
	p.faq-txt {
	}
	.faq-list {
	}
	.faq-list li {
	}
	.faq-list li a {
	}
	.faq-btn {
	}
}
@media screen and (max-width: 767px) {
	.faq-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.faq-section .inner {
	}
	h2.faq-title {
		font-size: 26px;
	}
	p.faq-txt {
	}
	.faq-list {
		margin-bottom: 40px;
	}
	.faq-list li {
	}
	.faq-list li a {
	}
	.faq-btn {
	}
}

/*system*/
.system-section {
	width: 100%;
	margin-bottom: 0;
}
.system-section .inner {
	max-width: 982px;
	margin-bottom: 0;
}
h2.system-title {
	font-size: 24px;
	font-weight: 700;
	color: #004831;
	letter-spacing: 0.025em;
	line-height: 1.5;
	margin-bottom: 0;
}
.system-block {
	display: flex;
	gap: 25px;
	justify-content: space-between;
}
.system-unit--app {
}
.system-app {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
}
.system-app__name {
	align-items: center;
	display: flex;
	gap: 16px;
}
.system-app__name div {
	width: 125px;
}
.system-app__qr {
}
.system-info {
}
.system-info__unit {
	display: flex;
	gap: 1em;
}
.system-info__unit p {
	margin-bottom: 0;
}
.system-info--alert {
	border-top: 1px solid #707070;
	margin: 18px 0 0;
	padding: 20px 0 35px;
}
.system-info--alert.notes li {
	letter-spacing: 0.075em;
}
.system-unit--img {
	width: 389px;
	display: contents;
}

@media screen and (max-width: 1199px) {
	.system-section {
	}
	.system-section .inner {
	}
	h2.system-title {
		font-size: clamp(20px,2.5vw,24px);
	}
	.system-block {
	}
	.system-unit--app {
		width: 68%;
	}
	.system-app {
	}
	.system-app__name {
	}
	.system-app__name div {
		width: 20%;
	}
	.system-app__qr {
	}
	.system-info {
	}
	.system-info__unit {
		flex-direction: column;
		gap: 5px;
	}
	.system-info__unit p {
	}
	.system-info--alert {
	}
	.system-info--alert.notes li {
	}
	.system-unit--img {
		width: 40%;
		display: block;
		align-self: end;
	}
}
@media screen and (max-width: 767px) {
	.system-section {
		padding-bottom: 0;
	}
	.system-section .inner {
	}
	h2.system-title {
		font-size: 22px;
	}
	.system-block {
		flex-direction: column;
	}
	.system-unit--app {
		width: 100%;
	}
	.system-app {
		margin-bottom: 18px;
	}
	.system-app__name {
		gap: 9px;
	}
	.system-app__name div {
		width: 65px;
	}
	.system-app__qr {
	}
	.system-app-btn {
		margin-bottom: 22px;
	}
	.system-app-btn p {
		margin-bottom: 0;
		text-align: center;
	}
	.system-app-btn p a {
		display: block;
		font-size: 18px;
		font-weight: 700;
		color: #004831;
		text-decoration: none;
		background-color: #C4D700;
		border-radius: 26px;
		padding: 14px 40px;
	}
	.system-info {
	}
	.system-info__unit {
		gap: 0;
		margin-bottom: 5px;
	}
	.system-info__unit p {
	}
	.system-info--alert {
		padding: 20px 0 0;
		border-top: 1px solid #CCCCCC;
	}
	.system-info--alert.notes li {
		letter-spacing: 0;
	}
	.system-unit--img {
		width: 100%;
		max-width: 240px;
		margin: 0 auto;
	}
}


@media screen and (max-width: 1199px) and (min-width:768px) {
}

@media screen and (max-width: 1199px) {
}

@media screen and (max-width: 767px) {
}
