@charset "UTF-8";

/*==================================================================
	Style setting
===================================================================*/
html {
	overflow-x:hidden;
}
body {
	-webkit-text-size-adjust:none;
	-ms-text-size-adjust:none;
	word-wrap:break-word;
	font: 16px/1.7 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',Osaka,sans-serif;
	color: #606060;
}
/*==================================================================
	Header setting
===================================================================*/
#header{
	background: #04AAEB;
}
#logo{
	font-size: 0;
	width: 22%;
}
#header .inner{
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#header .header-btn{
	background: #0154A4;
	display: -webkit-box;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	height: 100%;
	width: 85px;
}
/*==================================================================
	Footer setting
===================================================================*/
#footer{
	background: #04AAEB;
	color: #fff;
	font-weight: bold;
	padding: 20px 0 25px;
	text-align: center;
}
.nav-footer a{
	color: inherit;
	text-decoration: none;
}
.nav-footer a:not(:last-child){
	border-right: 1px solid #fff;
	padding-right: 13px;
	margin-right: 13px;
}
/*==================================================================
	Contents
===================================================================*/
[data-animated] {
	visibility: hidden;
}
.animated {
	opacity: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
.fadeUp, .fadeUp.animatedAll > * {
	-webkit-animation-name: fadeUp;
	animation-name: fadeUp;
}
.fadeLeft, .fadeLeft.animatedAll > * {
	-webkit-animation-name: fadeLeft;
	animation-name: fadeLeft;
}
@-webkit-keyframes fadeUp {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
		visibility: hidden;
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
		visibility: visible;
	}
}
@keyframes fadeUp {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
		visibility: hidden;
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
		visibility: visible;
	}
}
@keyframes fadeLeft {
	0% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
		opacity: 0;
		visibility: hidden;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
		visibility: visible;
	}
}
.inner{
	margin: auto;
	width: 920px;
}
.svg{
	display: -webkit-box;
	display: flex;
}
.main-block{
	background: url(../images/header_bg.png) no-repeat center / cover;
	padding: 100px 0 200px;
	text-align: center;
	position: relative;
    }
@media screen and (max-width: 940px) {
.main-block{
	background: url(../images/header_bg.png) no-repeat center / cover;
	padding: 78px 0 102px;
	text-align: center;
	position: relative;
    }
    
.main-block:before{
	transform: skewY(17deg);
	bottom: -100%;
}
.main-block:after{
	transform: skewY(-20deg);
	bottom: -90%;
}
    
.mtfa-block .line1{
	top: 125px;
	-webkit-transform: skewY(17deg);
	-ms-transform: skewY(17deg);
	transform: skewY(17deg);
	background-color: #04AAEB;
	z-index: -1;
}
}
.main-block:before, .main-block:after{
	background-color: #fff;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 10;
}
.main-block:before{
	bottom: -100%;
}
.main-block:after{
	bottom: -100%;
}
.main-txt{
	opacity: 0;
	color: #FFF;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 70px;
	line-height: 1.5;
	margin-bottom: 30px;
	text-shadow: 1px 1px 10px #000;
}
.main-txt span{
	display: inline-block;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: perspective(30px) rotateY(90deg) scale(.25);
	-ms-transform: perspective(30px) rotateY(90deg) scale(.25);
	transform: perspective(30px) rotateY(90deg) scale(.25);
	opacity: 0;
}
.main-block.show .main-txt{
	opacity: 1;
}
.main-block.show .main-txt span{
	-webkit-transform: perspective(30px) rotateY(0) scale(1);
	-ms-transform: perspective(30px) rotateY(0) scale(1);
	transform: perspective(30px) rotateY(0) scale(1);
	opacity: 1;
}
.main-block .bg-overlay{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	-webkit-transition: all 1s 1s ease;
	-ms-transition: all 1s  1s ease;
	transition: all 1s 1s ease;
	z-index: 10;
}
.main-block.show .bg-overlay{
	left: 100%;
}
.main-block.show .arrow-down{
	opacity: 1;
	-webkit-transition: all .5s 3.2s linear;
	-ms-transition: all .5s 3.2s linear;
	transition: all .5s 3.2s linear;
}
.main-block .inner{
	position: relative;
	z-index: 15;
}
.main-top{
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.main-top span{
	opacity: 0;
	-webkit-transition: all 1s linear;
	-ms-transition: all 1s linear;
	transition: all 1s linear;
	margin: 0 15px;
}
.main-block.show .main-top span{
	opacity: 1;
}
.main-block.show .main-top span:nth-child(1){
	-webkit-transition-delay: 2s;
	-ms-transition-delay: 2s;
	transition-delay: 2s;
}
.main-block.show .main-top span:nth-child(2){
	-webkit-transition-delay: 2.5s;
	-ms-transition-delay: 2.5s;
	transition-delay: 2.5s;
}
.main-block.show .main-top span:nth-child(3){
	-webkit-transition-delay: 3s;
	-ms-transition-delay: 3s;
	transition-delay: 3s;
}
.main-block.show .main-top span:nth-child(4){
	-webkit-transition-delay: 3.5s;
	-ms-transition-delay: 3.5s;
	transition-delay: 3.5s;
}
.main-top img{
	height: 53px;
}
.arrow-down{
	display: table;
	margin: auto;
    margin-bottom:-80px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -115px;
	opacity: 0;
}

@media (max-width: 768px){
    .arrow-down{
	display: table;
	margin: auto;
    margin-bottom:-40px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -115px;
	opacity: 0;
}
}
.arrow-down span{
	display: block;
	margin-bottom: 19px;
}
.arrow-down span:last-child{
	margin-bottom: 0;
}
.arrow-down span:after{
	content: "";
    left: 30px;
    width: 40px;
    height: 40px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
	display: block;
    margin-bottom: -20px;
}
/*ここからふわふわ*/
.fuwafuwa {
    -webkit-animation: fuwafuwa 3s infinite linear alternate;
    animation: fuwafuwa 3s infinite linear alternate;
}

@-webkit-keyframes fuwafuwa {
    0% {
        -webkit-transform: translate(0, 0) rotate(-5deg);
    }

    50% {
        -webkit-transform: translate(0, -5px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(0, 0)rotate(5deg);
    }
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) rotate(-5deg);
    }

    50% {
        transform: translate(0, -5px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0)rotate(5deg);
    }
}
/*ここまでふわふわ*/

.mtfa-block{
	position: relative;
	z-index: 10;
	margin-top: -125px;
	margin-bottom: 80px;
	padding-top: 160px;
}
.mtfa-block .line1, .mtfa-block .line2, .mtfa-block .cr-line{
	position: absolute;
	-webkit-transition: all 1s cubic-bezier(.5,0,0,1);
	-o-transition: all 1s cubic-bezier(.5,0,0,1);
	transition: all 1s cubic-bezier(.5,0,0,1);
	right: 0;
	left: 0;
	display: block;
	height: 0;
	width: 100%;
}
.mtfa-block .line1{
	top: 60px;
	background-color: #04AAEB;
	z-index: -1;
}
.mtfa-block.show .line1{
	height: 30%;
	-webkit-transition-delay: 2.5s;
	-ms-transition-delay: 2.5s;
	transition-delay: 2.5s;
}
.mtfa-block .line2{
	background: #000 url(../images/bg01.jpg) repeat;
	top: 25%;
	-webkit-transform: skewY(17deg);
	-ms-transform: skewY(17deg);
	transform: skewY(17deg);
	z-index: -2;
}
.mtfa-block.show .line2{
	height: 75%;
	-webkit-transition-delay: 3.5s;
	-ms-transition-delay: 3.5s;
	transition-delay: 3.5s;
}
.mtfa-block .cr-line{
	top: -280px;
	-webkit-transform: skewY(-21deg);
	-ms-transform: skewY(-21deg);
	transform: skewY(-21deg);
	background-color: #0154A4;
	z-index: -1;
}
.mtfa-block.show .cr-line{
	height: 30%;
	-webkit-transition-delay: 3s;
	-ms-transition-delay: 3s;
	transition-delay: 3s;
}
.mtfa-block .mtfa-ttl{
	margin-top: 100px;
	margin-bottom: 50px;
	text-align: center;
}

.mtfa-block .mtfa-ttl img{
	width: 45%;
}
.mtfa-list{
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.mtfa-list li{
	background: #fff;
	-webkit-flex: 0 46.74%;
	flex: 0 46.74%;
	margin-bottom: 37px;
	max-width: 46.74%;
}
.mtfa-list li img{
	width: 100%;
	}
.mtfa-list li .mtfa-info{
	padding: 25px 40px 32px;
}
.mtfa-list li .mtfa-name{
	border-left: 3px solid #0154A4;
	margin-bottom: 15px;
	padding: 10px 0 10px 15px;
}
.mtfa-list li .mtfa-txt p:not(:last-child){
	margin-bottom: 10px;
}
.f-you{
	margin-bottom: 160px;
	overflow: hidden;
}
.f-you-box{
	background: #F1F1F1;
	margin-left: 98px;
	margin-top: -12px;
	margin-bottom: 88px;
	position: relative;
	padding: 82px 0 56px 52px;
	z-index: -1;
}
.f-you-box:after{
	content: "";
	background: #F1F1F1;
	position: absolute;
	left: 100%;
	top: 0;
	bottom: 0;
	width: 500%;
}
.f-you-list{
	margin-bottom: 50px;
}
.f-you-list li{
	border-bottom: 3px solid #fff;
	display: -webkit-box;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	color: #0154A4;
	font-size: 1.3125rem;
	font-weight: bold;
	margin-bottom: 12px;
	padding-bottom: 10px;
}
.f-you-list li i{
	flex-shrink: 0;
	color: #04AAEB;
	font-size: 32px;
	margin-right: 16px;
	margin-top: 0;
}

.btn-link2{
	background: #0154A4;
	border: 6px solid #0154A4;
	display: block;
	font-size: 0;
	margin: auto;
	max-width: 500px;
	padding: 17px 5px;
	text-align: center;
	width: 100%;
}

.btn-link2 img{
	opacity: 0.2;
}

.btn-link{
	background: #fff;
	border: 6px solid #0154A4;
	display: block;
	font-size: 0;
	margin: auto;
	max-width: 500px;
	padding: 17px 5px;
	text-align: center;
	width: 100%;
}
.btn-link:hover{
	background: #0154A4;
}
.btn-link .hover-img, .btn-link:hover .current-img{
	display: none;
}
.btn-link:hover .hover-img{
	display: block;
	margin: auto;
}
.scope{
	background: #04AAEB;
	color: #fff;
	font-weight: bold;
	padding: 170px 0 132px;
	position: relative;
}
.scope .icon-down{
	position: absolute;
	left: 0;
	right: 0;
	font-size: 0;
	text-align: center;
	top: -47px;
}
.scope.scope-grey{
	background: #F1F1F1;
	color: #606060;
	padding: 130px 0 118px;
}
.scope .scope-ttl{
	margin-bottom: 50px;
	text-align: center;
}
.scope-top{
	display: -webkit-box;
	display: flex;
	margin: 60px 0 44px;
	padding: 0 4.35% 0 9.78%;
}
.scope-top .scope-top-item{
	flex: 1;
	border: 2px solid #fff;
	margin: 0 30px;
	position: relative;
	padding: 15px 20px;
	text-align: center;
}
.scope-top .scope-top-item span{
	font-size: 13px;
}
.scope-top .scope-top-item .scope-top-c{
	background: #fff;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	color: #04aaeb;
	display: -webkit-box;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	height: 72px;
	width: 72px;
	position: absolute;
	left: -36px;
	top: -36px;
}
.scope-mess{
	margin-bottom: 85px;
	text-align: center;
}
.scope-mess p:not(:last-child){
	margin-bottom: 17px;
}
.scope-box{
	display: table;
	margin: 0 auto 17px;
}
.scope-box dt{
	background: #fff;
	border: 3px solid #0154A4;
	color: #0154A4;
	padding: 1px 15px;
	text-align: center;
}
.scope-box dd{
	background: #0154A4;
	color: #fff;
	padding: 5px 15px 6px;
	text-align: center;
}
.tbl-scope{
	display: -webkit-box;
	display: flex;
	margin-right: -5px;
}
.tbl-scope .tbl-scope-col{
	color: #0154A4;
	-webkit-flex: 1;
	flex: 1;
	padding: 0 5px;
	text-align: center;
}
.tbl-scope .tbl-scope-info{
	color: #fff;
	max-width: 172px;
	padding: 0;
	margin-right: -5px;
	flex-shrink: 0;
}
.tbl-scope .tbl-scope-row{
	display: -webkit-box;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	border-bottom: 2px solid #04AAEB;
	background: #fff;
	padding: 12px 0px;
	position: relative;
}
.tbl-scope .tbl-scope-col:not(:last-child) .tbl-scope-row:after{
	content: "";
	background: #04AAEB;
	height: 2px;
	position: absolute;
	right: -10px;
	width: 10px;
	bottom: -2px;
}
.tbl-scope .tbl-scope-row:first-child,
.tbl-scope .tbl-scope-row:last-child{
	border-bottom: none;
}
.tbl-scope .tbl-scope-row:first-child:after,
.tbl-scope .tbl-scope-row:last-child:after{
	display: none;
}
.tbl-scope .tbl-scope-col.tbl-scope-info .tbl-scope-row{
	border-color: #fff;
}
.tbl-scope .tbl-scope-info .tbl-scope-row{
	background: transparent;
}
.tbl-scope .tbl-scope-name{
	-webkit-border-radius: 10px 10px 0 0;
	-ms-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
	font-size: 1.3125rem;
	padding: 15px 5px 1px;
}
.tbl-scope-row:last-child{
	-webkit-border-radius: 0 0 10px 10px;
	-ms-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}
.tbl-scope .recommend .tbl-scope-name span{
	background: #0154A4;
	-webkit-border-radius: 0 0 10px 10px;
	-ms-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
	color: #fff;
	display: block;
	left: 0;
	margin: auto;
	max-width: 58%;
	padding: 12px 5px;
	position: absolute;
	right: 0;
	top: -36px;
	width: 100%;
}
.tbl-scope .recommend .tbl-scope-name,
.tbl-scope .recommend .tbl-scope-row{
	-webkit-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
}
.tbl-scope .recommend .tbl-scope-name:before,
.tbl-scope .recommend .tbl-scope-row:last-child:after{
	content: "";
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
}
.tbl-scope .recommend .tbl-scope-name:before{
	-webkit-border-radius: 10px 10px 0 0;
	-ms-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
	height: 18px;
	top: -18px;
}
.tbl-scope .recommend .tbl-scope-row:last-child:after{
	-webkit-border-radius: 0 0 10px 10px;
	-ms-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
	height: 23px;
	bottom: -23px;
}
.cl-yellow{
	color: #FF0;
}
.cl-blue{
	color: #04AAEB;
}
.scope.scope-grey .tbl-scope .tbl-scope-info{
	color: #606060;
}
.scope.scope-grey .tbl-scope:not(.tbl-scope-border) .tbl-scope-row,
.scope.scope-grey .tbl-scope:not(.tbl-scope-border) .tbl-scope-col.tbl-scope-info .tbl-scope-row{
	border-color: #E6E6E6;
}
.scope.scope-grey .tbl-scope:not(.tbl-scope-border) .tbl-scope-col:not(:last-child) .tbl-scope-row:after{
	background-color: #E6E6E6;
}
.scope-time{
	max-width: 596px;
	margin: 40px auto 25px;
}
.scope-time-row{
	border-bottom: 2px solid #fff;
	display: -webkit-box;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	margin-bottom: 12px;
	padding-bottom: 9px;
}
.scope-time-row label{
	background: #0154A4;
	color: #fff;
	position: relative;
	width: 130px;
	padding: 1px 5px 2px;
	text-align: center;
	margin-right: 25px;
	flex-shrink: 0;
}
.scope-time-row label:after{
	content: "";
	border-left: 10px solid #0154A4;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	position: absolute;
	left: 100%;
	top: 50%;
	margin-top: -7px;
}
.scope-f{
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 43px 0 84px;
}
.scope-f-col{
	color: #0154A4;
	-webkit-flex: 1;
	flex: 1;
	margin: 0 10px;
	max-width: 338px;
	text-align: center;
	width: 100%;
}
.scope-f .scope-f-tit:before{
	content: "＼";
	margin-right: 10px;
}
.scope-f .scope-f-tit:after{
	content: "／";
	margin-left: 10px;
}
.scope-f-box{
	border: 4px solid #fff;
	margin-top: 20px;
	padding: 0 5px 20px;
}
.scope-f-box h3{
	background: #0154A4;
	color: #fff;
	font-size: 1em;
	margin: -15px auto 10px;
	padding: 2px 10px;
	text-align: center;
	width: 194px;
}
.result{
	padding: 97px 0 170px;
}
.function{
	padding-bottom: 180px;
}
.function .tbl-scope{
	margin-bottom: 118px;
}
.function .icon-down{
	bottom: -54px;
	top: auto!important;
	z-index: 999;
}
.a-wrap{
	background: #04AAEB;
	color: #fff;
	padding: 189px 0 100px;
	position: relative;
	overflow: hidden;
	z-index: 10;
}

.precaution{
	position: relative;
}
.precaution:after{
	content: "";
	background: #000 url(../images/bg01.jpg) repeat;
	-webkit-transform: skewY(17deg);
	-ms-transform: skewY(17deg);
	transform: skewY(17deg);
	-webkit-transition: all 1s cubic-bezier(.5,0,0,1);
	-o-transition: all 1s cubic-bezier(.5,0,0,1);
	transition: all 1s cubic-bezier(.5,0,0,1);
	top: -20%;
	position: absolute;
	left: 0;
	right: 0;
	height: 0;
	z-index: -2;
}
.precaution.show:after{
	height: 125%;
}
.a-wrap .ttl{
	text-align: center;
}
.video{
	margin-bottom: 70px;
}
.video .ttl{
	margin-bottom: 70px;
}
.video .video-ifr{
	height: 517px;
}
.video .video-ifr iframe{
	height: 100%;
	width: 100%;
}
/* 注意事項 */
.precaution{
	margin-bottom: 100px;
}
.precaution .ttl{
	margin-bottom: 58px;
}
.message{
	font-weight: bold;
	margin-bottom: 55px;
	text-align: center;
}
.box-wrap{
	background: #fff;
	color: #606060;
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 56px 36px 40px;
}
.box-wrap .box{
	border: 2px solid #0556A3;
	-webkit-flex: 1;
	flex: 1;
	padding: 0px 90px 39px;
}
.box-wrap .box-ttl{
	background: #0154A4;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin: -17px auto 30px;
	padding: 1px 5px;
	text-align: center;
	width: 194px;
}
.box-wrap .sub-tit{
	color: #606060;
	font-weight: bold;
	text-align: center;
}
.box-wrap .box p:not(:last-child){
	margin-bottom: 16px;
}
.box-wrap .box ul{
	display: table;
	margin: 20px auto;
}
.box-wrap .box ul li{
	font-weight: bold;
	margin-bottom: 3px;
	position: relative;
	padding-left: 20px;
}
.box-wrap .box ul li:last-child{
	margin-bottom: 0;
}
.box-wrap .box ul li:before{
	content: "●";
	position: absolute;
	left: 0;
}
/* よくある質問 */
.faq{
	position: relative;
}
.faq:before{
	content: "";
	background: #0154A4;
	-webkit-transform: skewY(17deg);
	-ms-transform: skewY(17deg);
	transform: skewY(17deg);
	top: -100px;
	position: absolute;
	left: 0;
	right: 0;
	height: 300%;
	z-index: -2;
}
.faq .ttl{
	margin-bottom: 45px;
	text-align: left;
}
.faq-box{
	background: #F1F1F1;
	margin-left: 97px;
	position: relative;
	padding: 50px 0px 45px 50px;
}
.faq-box:after{
	content: "";
	background: #F1F1F1;
	position: absolute;
	left: 100%;
	top: 0;
	bottom: 0;
	width: 500%;
}
.faq-box dt{
	border-bottom: 3px solid #fff;
	color: #04AAEB;
	font-size: 1.3125rem;
	font-weight: bold;
	margin-top: 24px;
	margin-bottom: 20px;
	padding: 6px 60px 6px 70px;
	position: relative;
}
.faq-box dt:before{
	content: "";
	background: url(../images/icon_q.svg) no-repeat center top / contain;
	height: 43px;
	width: 34px;
	top: -4px;
	position: absolute;
	left: 10px;
}
.faq-box dt .a-icon{
	border: 1px solid #04AAEB;
	position: absolute;
	right: 25px;
	height: 30px;
	width: 30px;
	top: 50%;
	margin-top: -15px;
}
.faq-box dt .a-icon:after{
	content: "";
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 10px solid #04AAEB;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -5px;
	margin-left: -8px;
}
.faq-box dt.active .a-icon:after{
	border-top: 10px solid #04AAEB;
	border-bottom: none;
}
.faq-box dd{
	display: none;
	border-bottom: 3px solid #fff;
	color: #606060;
	padding: 0 30px 20px 95px;
	position: relative;
}
.faq-box dd:before{
	content: "";
	background: url(../images/icon_a.svg) no-repeat center top / contain;
	height: 42px;
	width: 36px;
	position: absolute;
	top: 5px;
	left: 46px;
}
.faq-box dd:last-child{
	border-bottom: none;
	margin-bottom: 20px;
	padding-bottom: 0;
}
/* 料金 */
.fee{
	background: #F1F1F1;
	padding: 130px 0 107px;
}
.fee .fee-ttl{
	margin-bottom: 77px;
	text-align: center;
}
.fee-wrap{
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	margin-bottom: 80px;
}
.fee-wrap .fee-item{
	padding: 0 30px;
	position: relative;
}
.fee-wrap .fee-item .fee-c{
	position: absolute;
	top: -42px;
	right: -37px;
    height: 35%;
    width: 35%;
}
/* システムの利用フロー */
.flow{
	position: relative;
}
.flow:before{
	content: "";
	position: absolute;
	-webkit-transition: all 2s .5s cubic-bezier(.5,0,0,1);
	-o-transition: all 2s .5s cubic-bezier(.5,0,0,1);
	transition: all 2s .5s cubic-bezier(.5,0,0,1);
	right: 0;
	left: 0;
	display: block;
	height: 0;
	width: 100%;
}
.flow:before{
	-webkit-transform: skewY(-30deg);
	-ms-transform: skewY(-30deg);
	transform: skewY(-30deg);
	background-color: #0154A4;
	top: 3%;
	z-index: -1;
}
.flow.show:before{
	height: 91%;
}
.flow .ttl{
	margin-bottom: 110px;
}
.flow-box{
	background: #fff;
	color: #606060;
	margin-bottom: 127px;
	padding: 91px 20px 70px;
	position: relative;
}
.dolist{
	margin: 0 auto 10px;
}
.dolist li{
	background: url(../images/flow/icon_checkbox.svg) no-repeat left 5px;
	color: #0154A4;
	font-weight: bold;
	margin-bottom: 5px;
	position: relative;
	padding-left: 25px;
}
.dolist li:last-child{
	margin-bottom: 0;
}
.flow-box .flow-tit{
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	position: absolute;
	color: #fff;
	font-size: 2.6875em;
	text-align: center;
	top: -40px;
	left: 10px;
	right: 10px;
}
.flow-box .flow-tit span{
	position: relative;
	background: url(../images/bg01.jpg);
	min-width: 480px;
	padding: 0 63px 23px;
	overflow: hidden;
}
.flow-box .flow-tit span:before, .flow-box .flow-tit span:after{
	content: "";
	background: #fff;
	position: absolute;
	bottom: 0;
	width: 50%;
	height: 20px;
}
.flow-box .flow-tit span:before{
	left: -15px;
	-webkit-transform: skewX(55deg);
	-ms-transform: skewX(55deg);
	transform: skewX(55deg);
}
.flow-box .flow-tit span:after{
	right: -15px;
	-webkit-transform: skewX(-55deg);
	-ms-transform: skewX(-55deg);
	transform: skewX(-55deg);
}
.flow-box .flow-message{
	margin-bottom: 55px;
	text-align: center;
}
.flow-box .flow-message .flow-message-tit{
	font-size: 1.3125em;
	font-weight: bold;
	color: #0154A4;
	margin-bottom: 5px;
}
.easy-step{
	padding-left: 45px;
	padding-right: 45px;
}
.step-line{
	display: -webkit-box;
	display: flex;
	margin: 0 -44px;
	position: relative;
	z-index: 10;
}
.step-line:before{
	content: "";
	background-color: #0154A4;
	height: 4px;
	position: absolute;
	top: 36px;
	left: 15%;
	right: 15%;
	z-index: -1;
}
.step-line li{
	flex: 1;
	padding: 0 44px;
	text-align: center;
}
.step-line li ._tit{
	color: #0154A4;
	font-size: 1.3125em;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 10px;
}
.step-line li ._txt{
	margin-bottom: 30px;
	display: inline-block;
	text-align: left;
}
/* 分析用インジケータ */
.analysis-step{
	padding-left: 68px;
	padding-right: 68px;
}
.analysis-step-ul{
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 -5px 34px;
}
.analysis-step-ul li{
	padding: 0 5px;
}
.note{
	padding-left: 1em;
	position: relative;
}
.note:before{
	content: "※";
	position: absolute;
	left: 0;
}
.analysis-box{
	background-color: #F1F1F1;
	margin-top: 45px;
	padding: 34px 45px;
}
.analysis-box .analysis-box-tit{
	background-color: #04AAEB;
	display: inline-block;
	line-height: 1;
	margin-left: -60px;
	margin-bottom: 37px;
	padding: 17px 55px 17px 36px;
}
.analysis-box .analysis-box-txt ._big{
	color: #0154A4;
	font-size: 1.1em;
	font-weight: bold;
}
.analysis-box .analysis-box-txt p:not(:last-child) {
	margin-bottom: 15px;
}
.luminous {
  display: inline-block;
  position: relative;
}

.luminous::before {
  content: "";
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
  color: white;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAAA2FBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8lb+eLAAAAR3RSTlMAAQMEBQYHCAkKDA0ODxATFBgmKTxdXl9hYmZ3fICGi5KUlZeYmpudoKKlpquyubq8vsDKzM7R1dfZ3N7i5Obo6e/x8/n7/WpLgakAAAHOSURBVEjHldfpVsJADAXgtFRQwX0BrSuKqKCI4ILYgrj0/d/IggjTyQ1N8485+U5pJ9wORJRftqrgEKsCaxqvrj5HrEbbFt0IeVO4RdSMQA2taz+ipneiH7QeFZIY9kQ5vN60vrYPuzyIH1wLOxdqzKygEQY21pcqDC3UHAs21rVU/J0nqZwg9cp1R8K+4p4l7aue9pWjs3ifkfbVE8a1nzJhvQXatD2A791dUZv2wKky3Ipnw9Q1R7Dxflct3JrMFdaWnWuPvsyZRJrZmc7RdWKeuQZ2ql+JvNPBsfFbsDW0sT4Mb4t8GpJasGKZOshokzqrxVprkdZbrrNYW2ezRHeGfXOyWV+Za5rMyaJ9dSrq8kqr8ftUp017k6qLYl7tJfY7qSdqsx/1SpIlSXvtaLTzd1YZlJDdZ7M2014n/vQxPauEJclCPbHz9AyLkgV6aue5PdbYMv1vjTdGuG7asvgbq690Fr/oLCslE8ZlXa5BXFHmGsIVbSoCXFGnIscVfabyc9iaiJfSz2GDkmC9J8U9C5pb+LSh9rrKfQYaWWHCBkWNlWb7xcINYbY/4brq341LJ2i5a125hpraRO5Rf2hV2GD3fB7YTcFZnn4BclIbTTX46/4AAAAASUVORK5CYII=) center center /30px 30px no-repeat rgba(0,0,0,.6);
  transition: inherit;
}

.luminous:hover::before {
  opacity: 1;
}

/* バックテスト用EA */
.ea-step{
	padding-left: 34px;
	padding-right: 34px;
}
.ea-item:not(:last-child){
	margin-bottom: 76px;
}
.ea-item .ea-item-tit{
	color: #0154A4;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 17px;
	text-align: center;
}
.ea-item .ea-item-wrap{
	display: -webkit-box;
	display: flex;
	margin-top: 35px;
}
.ea-item .ea-item-img{
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	margin-right: 24px;
}
.ea-item .ea-item-c{
	line-height: 1.5;
}
.ea-item .ea-item-c p:not(:last-child){
	margin-bottom: 10px;
}
.ea-item .dolist{
	display: table;
}
/* MTFAnalytics 分析ツール */
.tool-step{
	margin-bottom: 170px;
	padding: 120px 37px 100px;
	position: relative;
}
.tool-step .icon-down{
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	bottom: -60px;
}
.tool-step .flow-tit{
	top: -57px;
}
.tool-step .tool-step-img{
	text-align: center;
}
.tool-step .tool-step-img img{
	width: 20%;
}
.tool-step .tool-message{
	color: #0154A4;
	font-size: 1.3125em;
	font-weight: bold;
	margin-bottom: 79px;
	text-align: center;
}
.tool-list{
	display: -webkit-box;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: -65px;
}
.tool-list li{
	border: 4px solid #0154A4;
	max-width: calc(50% - 20px);
	width: calc(50% - 20px);
	margin-bottom: 80px;
	position: relative;
	padding: 0 24px 28px;
}
.tool-list li a{
	color: inherit;
	text-decoration: none;
}
.tool-list li .num{
	position: absolute;
	left: 0;
	right: 0;
	top: -39px;
	text-align: center;
}
.tool-list li .tool-tit{
	color: #0154A4;
	font-size: 1.25em;
	font-weight: bold;
	margin: 67px 0 23px;
	text-align: center;
}
.tool-list li .tool-img{
	margin-bottom: 13px;
	text-align: center;
}

.wrap-box{
	background-color: #fff;
	color: #606060;
	margin-bottom: 100px;
	padding: 80px 40px 100px;
	position: relative;
}
.wrap-box .num{
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	top: -39px;
}
.wrap-box .wrap-box-ttl{
	text-align: center;
	font-weight: bold;
	font-size: 43px;
	color: #0154A4;
	margin-bottom: 12px;
}
.wrap-box .wrap-box-m{
	margin-bottom: 50px;
	text-align: center;
}
.wrap-box .wrap-box-m p:not(:last-child){
	margin-bottom: 15px;
}
.wrap-box .wrap-box-txt p:not(:last-child){
	margin-bottom: 25px;
}
.wrap-box .wrap-box-img{
	margin-bottom: 55px;
	text-align: center;
}
.wrap-box-item{
	display: -webkit-box;
	display: flex;
	margin-bottom: 62px;
}
.wrap-box-item ._img{
	flex-shrink: 0;
	margin-right: 24px;
	width: 48.19%;
}
.wrap-box-item .dolist li{
	float: left;
	margin-right: 14px;
}
.wrap-box-item .dolist li.clear{
	clear: both;
}
.chart-item{
	margin-bottom: 47px;
}
.chart-item .chart-item-ttl{
	background: #0154A4;
	color: #fff;
	font-size: 23px;
	font-weight: bold;
	letter-spacing: 2em;
	margin-bottom: 20px;
	padding: 10px;
	text-indent: 2em;
	text-align: center;
}
.chart-item .chart-row{
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.chart-item .chart-row .chart-col{
	width: 48.19%;
}
.chart-item .chart-col-tit{
	color: #0154A4;
	font-size: 1.3125em;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}
.chart-item .chart-img{
	margin-bottom: 10px;
}
.dl-wrap{
	padding: 0 85px;
}
.ttl-box dt{
	border: 2px solid #0154A4;
	color: #0154A4;
	line-height: 1.5;
	letter-spacing: .5em;
	font-size: 1.3125em;
	font-weight: bold;
	margin-bottom: 15px;
	padding: 5px 10px;
	text-align: center;
}
.ttl-box dd:not(:last-child){
	margin-bottom: 22px;
}
.ttl-box dd p:not(:last-child), .dl-wrap > p:not(:last-child){
	margin-bottom: 29px;
}

.caution-box {
	font-size: 50%;
	overflow: auto;
	height: 150px;
	width: 90%;
	line-height: 1.4em;
	border: 2px solid #DDD;
	margin-top: 0px;
	color: #999;
	margin-bottom: 15px;
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-align: justify;
	margin-right: auto;
	margin-left: 5%;
	}

.check_wrap {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 60px;
	line-height: 1.3em;
	text-align: left;
	padding: 0px;
	font-size: 1em;
	right: -0px;
	position: relative;
	font-weight: bold;
	}



/*チェックボックスのデザイン*/

.checkbox {
  display: none;
}

.checkbox + .checkbox-icon {
  position: relative;
  vertical-align: middle;
}
.checkbox + .checkbox-icon:before {
	/*content: "\f372";
	font-family: Ionicons;
	color: #0F0;
	font-size: 22px;*/
	content: "";
	display: block;
	position: absolute;
	top:-2px;
	left: -25px;
	width: 15px;  /*チェックボックスの幅*/
	height: 15px; /*チェックボックスの高さ*/
	border: 2px solid #999;
	border-radius: 4px;
}

.checkbox:checked + .checkbox-icon {
	color: #000000;
}

.checkbox:checked + .checkbox-icon:after {
	/*content: "\f374";
	color: #FF00FF;*/
	content: "";
	display: block;
	position: absolute;
	top: -10px;
	left: -25px;
	width: 10px;  
	height: 17px;
	transform: rotate(40deg);
	border-right-width: 5px; /*チェックマークの太さ*/
	border-bottom-width: 5px; /*チェックマークの太さ*/
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #FF0000; /*チェックマークの色*/
	border-bottom-color: #FF0000; /*チェックマークの色*/
}
	
/*ページトップアイコン*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 2%;
	z-index: 20;
}


/*==================================================================
	Responsive setting
===================================================================*/
@media (min-width: 641px){
	.spc-none{display:none!important;}
}
@media (min-width: 769px){
	.pc-none{display:none!important;}
}

@media screen and (max-width: 940px) {
	.inner{
		padding: 0 12px;
		width: 100%;
	}
	#header .inner{
		padding: 0;
	}
	.step-line{
		margin: 0 -20px;
	}
	.step-line li{
		padding: 0 20px;
	}
}

@media (max-width: 768px){
	.sp-none{display:none!important;}
	.main-block:after{
		bottom: -100%;
	}
	.main-block{
		padding-bottom: 8vw
	}
	.arrow-down{
		bottom: -110px;
	}
	.mtfa-block .cr-line{
		top: 0;
	}
	.mtfa-block:before{
		top: 0;
	}
	.mtfa-block{
		margin-top: 0;
		padding-top: 0;
	}
	.mtfa-block .mtfa-ttl img{
		max-width: 40%;
	}
	.mtfa-list li{
		-webkit-flex: 0 49%;
		flex: 0 49%;
		margin-bottom: 2%;
		max-width: 49%;
	}
	.scope-top{
		padding: 0;
	}
	.scope-top .scope-top-item:last-child{
		margin-right: 0;
	}
	.video .video-ifr{
		height: 54.69vw;
	}
	.fee-wrap .fee-item{
		padding: 0 11px;
	}
	.fee-wrap .fee-item .fee-c{
		top: -30%;
		right: 50%;
		width: 38.32%;
		text-align: center;
		transform: translateX(50%);
	}
	.a-wrap{
		padding-top: 134px;
	}
	.flow:before{
		top: -2%;
	}
	.flow-box{
		margin-bottom: 120px;
		padding: 65px 20px 50px;
	}
	.flow-box .flow-tit{
		font-size: 2em;
	}
	.flow-box .flow-tit span{
		display: block;
		min-width: 0;
		padding-left: 0px;
		padding-right: 0px;
		max-width: 520px;
		width: 98%;
	}
	.step-line{
		display: block;
	}
	.step-line:before{
		height: auto;
		width: 4px;
		top: 15%;
		bottom: 15%;
		left: 9%;
		right: initial;
	}
	.step-line li{
		display: -webkit-box;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		align-items: center;
	}
	.step-line li .step-line-c{
		margin: 0 5px;
	}
	.step-line li .step-num{
		width: 13%;
	}
	.step-line li ._img{
		width: 27.67%;
	}
	.ea-item:not(:last-child){
		margin-bottom: 35px;
	}
	.ea-item .ea-item-wrap{
		display: block;
		margin-top: 20px;
	}
	.ea-item .ea-item-img{
		margin: 0 0 10px;
		text-align: center;
	}
	.wrap-box .wrap-box-m{
		margin-bottom: 20px;
	}
	.wrap-box-item{
		display: block;
	}
	.wrap-box-item ._img{
		margin-bottom: 20px;
		text-align: center;
		width: 100%;
	}
	.chart-item .chart-item-ttl{
		letter-spacing: 1em;
		text-indent: 1em;
	}
	.wrap-box .wrap-box-ttl{
		font-size: 2.15em;
	}
	.wrap-box .wrap-box-img{
		margin-bottom: 30px;
	}
	.dl-wrap{
		padding: 0;
	}
	.ttl-box dd p:not(:last-child), .dl-wrap > p:not(:last-child){
		margin-bottom: 20px;
	}
}


@media screen and (max-width: 640px){
	.sp-none{display:none!important;}
	html{
		font-size: 14px;
	}
	body{
		font-size: 1rem;
	}
	#header .header-right{
		width: 13.28%;
	}
	#header .header-btn{
		padding: 0 20%;
		width: 100%;
	}
	.main-txt{
		font-size: 9vw;
		text-shadow: 1px 1px 5px #000;
		letter-spacing: 1.5vw;
	}
	.f-you{
		margin-bottom: 6.18rem;
	}
	.f-you-box{
		margin-top: 22px;
		margin-left: 20px;
		margin-bottom: 3.12rem;
		padding: 40px 20px;
	}
	.f-you-list{
		margin-bottom: 38px;
	}
	.f-you-list li{
		font-size: 1.18rem;
	}
	.f-you-list li i{
		font-size: 1.45rem;
	}
	.btn-link{
		border-width: 3px;
		padding: 3.3vw 5vw;
		width: 73.67vw;
	}
	
	.btn-link2{
		border-width: 3px;
		padding: 3.3vw 5vw;
		width: 73.67vw;
	}
	.icon-down{
		font-size: 0;
		margin: auto;
		width: 18.75vw;
	}
	.scope .icon-down{
		top: -9vw;
	}
	.function .icon-down{
		bottom: -8vw;
	}
	.scope{
		padding: 7.3rem 0 2.91rem;
	}
	.scope.scope-grey{
		padding: 4.36rem 0;
	}
	.result{
		padding: 3.36rem 0;
	}
	.scope .scope-ttl{
		margin-bottom: 30px;
	}
	.scope-top{
		display: block;
		padding: 0 12.67%;
	}
	.scope-top .scope-top-item{
		margin: 0 0 3.18rem;
		padding: 10px 20px;
	}
	.scope-top .scope-top-item .scope-top-c{
		height: 62px;
		width: 62px;
	}
	.tbl-scope .tbl-scope-col{
		width: 19%;
	}
	.tbl-scope .tbl-scope-info{
		font-size: 1rem;
		-webkit-flex: 0 38%;
		flex: 0 38%;
		width: 38%;
	}
	.tbl-scope .tbl-scope-name{
		font-size: 1rem;
		padding-top: 9px;
	}
	.tbl-scope .recommend .tbl-scope-name:before{
		height: 8px;
		top: -8px;
	}
	.tbl-scope .recommend .tbl-scope-row:last-child:after{
		height: 12px;
		bottom: -12px;
	}
	.tbl-scope .recommend .tbl-scope-name span{
		max-width: 90%;
		padding: 4px 5px;
		top: -18px;
	}
	.tbl-scope .tbl-scope-row{
		padding: 9px 0;
	}
	.tbl-scope .tbl-scope-row img{
		width: 1.64rem;
	}
	.tbl-scope .tbl-scope-row:not(.tbl-scope-name) span{
		height: 2.18rem;
		width: 2.18rem;
	}
	.tbl-scope .tbl-scope-row:not(.tbl-scope-name) span img{
		width: 100%;
	}
	.scope-mess{
		margin-bottom: 3.36rem;
	}
	.scope-f{
		display: block;
	}
	.scope-f-col{
		margin: 0 auto 2rem;
	}
	.scope-f-col:last-child{
		margin-bottom: 0;
	}
	.function .tbl-scope{
		margin-bottom: 4rem;
	}
	.a-wrap{
		padding: 22vw 0 4.5rem;
	}
	.video, .video .ttl{
		margin-bottom: 3rem;
	}
	.video:before{
		top: 14vw;
	}
	.video.show:before{
		height: 85vw;
	}
	.precaution .ttl{
		margin-bottom: 3rem;
	}
	.box-wrap{
		display: block;
		padding: 10% 7.34%;
	}
	.box-wrap .box{
		margin-bottom: 4rem;
		max-width: 100%;
		padding: 0 20px 20px;
	}
	.box-wrap .box:last-child{
		margin-bottom: 0;
	}
	.faq-box{
		margin-left: 20px;
		padding: 13px 0 20px 13px;
	}
	.faq-box dt{
		font-size: 1rem;
		padding-left: 3.18rem;
	}
	.faq-box dt:before{
		height: 1.9rem;
		width: 1.5rem;
		top: 0;
	}
	.faq-box dd{
		font-size: .86rem;
		padding-left: 3.18rem;
	}
	.faq-box dd:before{
		left: 10px;
		height: 1.9rem;
		width: 1.5rem;
	}
	.faq-box dt .a-icon{
		height: 1.64rem;
		width: 1.64rem;
	}
	.faq-box dt .a-icon:after{
		border-bottom-width: .59rem;
		border-left-width: .45rem;
		border-right-width: .45rem;
		margin-left: -0.45rem;
		margin-top: -0.3rem;
	}
	.faq-box dt.active .a-icon:after{
		border-bottom-width: .59rem;
		border-top-width: .59rem;
	}
	.fee{
		padding: 3.73rem 0 2.73rem;
	}
	.flow .ttl{
		margin-bottom: 17vw;
	}
	.flow-box .flow-message{
		margin-bottom: 24px;
	}
	.analysis-step-ul{
		margin-bottom: 14px;
	}
	.analysis-box{
		padding: 17px 10px;
	}
	.analysis-box .analysis-box-tit{
		margin-bottom: 17px;
		margin-left: -30px;
		position: relative;
		padding: 2vw 30px;
	}
	.analysis-box .analysis-box-tit:after{
		content: "";
		background-color: #04AAEB;
		position: absolute;
		right: 100%;
		width: 100%;
		top: 0;
		bottom: 0;
	}
	.tool-list{
		display: block;
	}
	.tool-list li{
		margin-bottom: 60px;
		max-width: 100%;
		padding: 0 18px 18px;
		width: 100%;
	}
	.tool-list li .tool-tit{
		margin: 45px 0 10px;
	}
	.tool-list li .num{
		margin: auto;
		top: -7vw;
		width: 13vw;
	}
	.tool-step .icon-down{
		bottom: -8.5vw;
	}
	.wrap-box{
		padding: 40px 20px;
	}
	.wrap-box .num{
		top: -6.5vw;
		margin: auto;
		width: 13vw;
	}
}

@media screen and (max-width: 480px) {
	.main-block{
		padding: 28px 0 80px;
	}
	.main-top span{
		margin: 0 3px;
	}
	.mtfa-block{
		padding-top: 18px;
		margin-bottom: 4rem;
	}

	.mtfa-block .line1{
		top: 0px;
	}
	.mtfa-block .mtfa-ttl {
		margin-top: 0px;
   		 margin-bottom: 20px;
		}
	.mtfa-block.show .cr-line{
		height: 25%;
	}
	.mtfa-block.show:before{
		height: 32%;
	}
	.mtfa-block:after{
		top: 32%;
	}
	.mtfa-block.show:after{
		height: 63%;
	}
	.mtfa-block .mtfa-ttl img{
		max-width: 45%;
	}
	.mtfa-list{
		display: block;
	}
	.mtfa-list li{
		margin-bottom: 20px;
		max-width: 100%;
	}
	.mtfa-list li:nth-child(2){
		animation-delay: 0s!important;
	}
	.mtfa-list li:last-child{
		margin-bottom: 0;
	}
	.mtfa-list li .mtfa-info{
		padding: 11px 14px 20px;
	}
	.mtfa-list li .mtfa-img img{
		width: 100%;
	}
	.scope-time-row label{
		width: 5.55rem;
	}
	.tbl-scope .tbl-scope-info{
		font-size: 3.5vw;
	}
	.tool-step .tool-step-img img{
		width: 50%;
	}	
	.step-line:before{
		left: 9.5vw;
	}
	.step-line li .step-line-c{
		font-size: 3vw;
	}
	.step-line li ._txt{
		text-align: center;
	}
	.tool-list li .tool-tit{
		margin-top: 35px;
	}
	.chart-item .chart-row{
		display: block;
	}
	.chart-item .chart-row .chart-col{
		margin-bottom: 35px;
		width: 100%;
	}
	.chart-item .chart-img{
		text-align: center;
	}
	.flow:before{
		top: -1.5%;
	}
	footer{
		font-size: 0.9em;
	}
}

