﻿@charset "utf-8";

/* =======================================================================
	BASE_STYLE
======================================================================= */
html {height:100%;box-sizing: border-box;scroll-padding-top: 70px;}
*, *:before, *:after {box-sizing: inherit;}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, 
pre, code, form, fieldset, legend, input, textarea, 
p, blockquote, th, td{margin:0;padding:0;}
a {outline: none; color:#0055AC;}
img { border:none }
h2,h3,h4,h5,h6 {font-size:100%;	font-weight:normal;}
body{
	width:100%;
	height:100%;
	font-family: "Noto Sans Japanese";
	font-size:15px;
	line-height: 1.5;
	color:#111;
	background:#FFF;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	word-wrap:
	break-word;
}
#wrapper{width:100%;}
.spnone{display:none !important;}

/* Clearfix */
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
/* FadeIn */
.fadeIn {opacity: 0;transition: 1s;}
.fadeIn.is-show{opacity: 1;}

/* =======================================================================
	HEADER
======================================================================= */
header{
	width:100%;
	height:60px;
	line-height:1;
	background:#FFF;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
	position: fixed;
	z-index:999;
}
header .header_inner{
	width:100%;
	display: flex;
	position:relative;
	padding:0;
	margin:0 auto;
}
header .header_inner .header_logo{padding:16px 0 0 15px;}
header .header_inner .header_logo img{
	width:auto;
	height:30px;
}
header .header_inner nav.pc_nav ul{display:none;}
header .header_inner .header_link{display:none;}

/* Drawer */
.el_humburger {
	cursor: pointer;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	pointer-events: auto;
	caret-color: transparent;
	position: fixed;
	top: 19px;
	right: 19px;
	padding:0;
	z-index:100;
}
.el_humburger_wrapper {
	width: 34px;
	display: inline-block;
}
.el_humburger_text.el_humburger_text__close {display: none; }
.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {display: none; }
.js_humburgerOpen .el_humburger_text.el_humburger_text__close {display: block;}
.el_humburger span.el_humburger_bar {
	width: 100%;
	height: 3px;
	background: #332967;
	display: block;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	margin: 0 auto 7px;
}
body.js_humburgerOpen span.el_humburger_bar{
	background: #FFF !important;
	margin: 0 auto 8px;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
	-webkit-transform: translateY(9px) rotate(-45deg);
	-ms-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {opacity: 0;}
.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
	-webkit-transform: translateY(-12px) rotate(45deg);
	-ms-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}
.el_humburgerButton.el_humburgerButton__close {
	background: #FFF;
}
.el_humburgerButton__close span.el_humburger_bar {
	width: 35px;
	height: 4px;
	display: block;
	margin: 0 auto;
}
.el_humburgerButton__close span.el_humburger_bar.top {
	-webkit-transform: translateY(5px) rotate(-45deg);
	-ms-transform: translateY(5px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
}
.el_humburgerButton__close span.el_humburger_bar.bottom {
	-webkit-transform: translateY(-6px) rotate(45deg);
	-ms-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}
.navi {
	display:block !important;
	width: 0;
	height: 100%;
	overflow: auto;
	will-change: transform;
	background-color: rgba(30, 20, 50, 0.95);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
	transform:translateZ(0) translateX(0%);
	position: fixed;
	top:0;
	right:0;
	padding-top: 20%;
	z-index: 99;
}
.js_humburgerOpen .navi {width: 100%;}
.navi_item {
	font-size: 16px;
	font-weight:500;
	white-space: nowrap;
	margin:0 0 60px 10%;
	padding-left:30px;
	position:relative;
}
.navi_item a{
	color:#FFF;
	text-decoration: none;
	display:block;
	padding:10px 10px 10px 0;
}
.navi_item:before {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 15px;
    height: 3px;
    background-color: #FFF;
    left: 0;
}
.navi_item.op_innerLink {cursor: pointer;}
.navi_btn {display:none;}


/* =======================================================================
	MAIN
======================================================================= */
#wrapper main{width:100%;}
h2.title1{
	font-size:20px;
	font-weight:700;
	line-height:1;
	position:relative;
	padding-left:40px;
	margin-top:-5px;
}
h2.title1::after{
	content: '';
	width: 25px;
	height: 4px;
	display: block;
	background-color:#7D71B2;
	position: absolute;
	top: 9px;
	left:0;
}
h2.title2{
	font-size:26px;
	font-weight:600;
	line-height:1;
	background:url(../images/title_bg.png) top center no-repeat;
	background-size:auto 12px;
	text-align:center;
	position:relative;
	padding:25px 0 0 0;
}
h2.title2 span{
	font-size:16px;
	color:#7D71B2;
	display:block;
	margin:15px 0 0 0;
}

/* MV
------------------------------------------------------------------------*/
body section.mv{
	width:100%;
	height:auto;
	background:url(../images/mv_bg_sp.jpg) top center no-repeat;
	background-size:cover;
	position:relative;
	overflow: hidden;
}
section.mv .mv_inner{
	width:90%;
	padding:100px 0 40px 0;
	margin:0 auto;
}
.mv_inner .mv_txt h1{
	font-size:17px;
	text-align:center;
}
.mv_inner .mv_txt h1 img{
	width:94%;
	height:auto;
	display:block;
	margin:20px auto 25px auto;
}
.mv_inner .mv_txt h2{
	font-size:15px;
	font-weight:500;
	display:block;
}
.mv_inner .mv_txt h2 br{display:none;}
.mv_inner .mv_txt h2 span{
	font-size:13px;
	font-weight:400;
	display:block;
	margin:12px 0 0 0;
}
.mv_inner .mv_pic{
	text-align:center;
	margin-top:35px;
}
.mv_inner .mv_pic img{
	width:80%;
	height:auto;
}

/* PRODUCT
------------------------------------------------------------------------*/
body section#product{
	width:100%;
	padding:40px 0;
}
section#product .product_inner{
	width:90%;
	display: flex;
	flex-wrap: wrap;
	margin:0 auto;
}
.product_inner .product_txt{
	width:100%;
	order:1;
}
.product_inner .product_movie{
	width:100%;
	margin-top:30px;
	order:2;
}
.product_inner .product_movie iframe{
	width:100%;
	height:auto;
	min-height:200px;
	display:block;
	margin:0 auto;
}
.product_inner .product_txt h3{
	font-size:15px;
	font-weight:500;
	margin-top:25px;
}
.product_inner .product_txt h3 span{
	font-size:13px;
	font-weight:400;
	display:block;
	margin:15px 0 0 0;
}
.product_inner .product_txt h3 span br{display:none;}

/* FEATURES
------------------------------------------------------------------------*/
body section#features{
	width:100%;
	background:#F7F8FE;
	border-top:#F1F2F9 1px solid;
	border-bottom:#F1F2F9 1px solid;
	padding:35px 0 30px 0;
}
section#features .features_inner{
	width:90%;
	margin:0 auto;
}
section#features .features_inner h2.title2{
	margin-bottom:-5px;
}
section#features .features_inner .features_txt{
	width:100%;
	order:2;
}
section#features .features_inner .features_pic{
	width:100%;
	order:1;
}
section#features .features_inner .features_pic img{
	width:100%;
	height:auto;
	display:block;
	margin:0 auto;
}
.features_inner .features_txt h3{
	font-size:24px;
	font-weight:700;
	line-height:1.4;
	margin-top:25px;
}
.features_inner .features_txt h4{
	font-size:15px;
	line-height:1.6;
	font-weight:500;
	margin-top:15px;
}
.features_inner .features_txt h4 br{display:none;}
.features_inner .features_txt h4 sup{margin-right:10px;}
.features_inner .features_txt a{
	color:#780DA6;
	text-decoration: underline;
	margin:0 5px;
}
.features_inner a:hover{opacity:0.75;}
.features_inner .features_txt ul.notes{
	font-size:13px;
	line-height:1.5;
	font-weight:400;
    list-style-type: none;
    padding:0;
    margin:20px 0 0 33px;
}
.features_inner .features_txt ul.notes li{
    text-indent: -33px;
    margin-top:5px;
}
section#features .features_inner .features_bx1,
section#features .features_inner .features_bx2{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	margin:35px auto 0 auto;
}
.features_txt.features_num1{
	background:url(../images/features_num1.png) no-repeat;
	background-position:100% 3%;
	background-size:35%;
}
.features_txt.features_num2{
	background:url(../images/features_num2.png) no-repeat;
	background-position:100% 3%;
	background-size:35%;
}
.features_txt.features_num3{
	background:url(../images/features_num3.png) no-repeat;
	background-position:100% 3%;
	background-size:35%;
}

/* COMPARISON
------------------------------------------------------------------------*/
body section#comparison{
	width:100%;
	padding:35px 0;
}
section#comparison .comparison_inner{
	width:90%;
	margin:0 auto;
}
.comparison_inner h3{
	font-weight:500;
	text-align:center;
	margin:30px 0;
}
.comparison_inner h3 span{
	font-size:12px;
	font-weight:400;
	display:block;
	margin:10px 0 0 0;
}
.comparison_inner .comparison_area{
	overflow-x: scroll;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	margin:0 auto;
}
.comparison_area table{
	width:700px;
	font-weight:500;
	text-align:center;
	border-collapse:collapse;
	border-spacing:1px;
	border: solid 1px #BBB;
}
.comparison_area table th{
	width:35%;
	font-size:16px;
	font-weight:700 !important;
	font-weight:normal;
    background:#F7F8FE;
	border: solid 1px #BBB;
	padding:1.2% 1.5%;
	margin:0;
}
.comparison_area table th:first-child{width:18%;}
.comparison_area table td{
	font-size:14px;
	border: solid 1px #BBB;
	padding:1.2% 2%;
	margin:0;
}
.comparison_area table td span{color:#780DA6;}
.comparison_area table td.function_name{text-align:left;}
.comparison_inner img{
	display:block;
	margin:0 auto;
}
.comparison_inner p.notes{
	font-size:12px;
	font-weight:400;
	white-space: nowrap;
	display:block;
	margin:15px 0;
}
.comparison_inner a.rs_btn img{
	width:100%;
	height:auto;
	margin-top:15px;
}

/* SYSTEM
------------------------------------------------------------------------*/
body section#system{
	width:100%;
	background:#F7F8FE;
	border-top:#F1F2F9 1px solid;
	border-bottom:#F1F2F9 1px solid;
	padding:35px 0 25px 0;
}
section#system .system_inner{
	width:90%;
	margin:0 auto;
}
.system_inner dl{
	width:100%;
	font-weight:500;
	border-top: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	margin:30px auto 0 auto;
}
.system_inner dl dt{
	width:100%;
	font-size:16px;
	font-weight:600;
	border-top: solid 1px #CCC;
	padding:12px 0 8px 0;
}
.system_inner dl dd{
	width:100%;
	font-size:14px;
	padding:0 0 15px 0;
}
.system_inner dl dd span{
	font-size:13px;
	font-weight:400;
	display:block;
	margin-top:5px;
}
.system_inner dl dt:first-child,
.system_inner dl dd:nth-child(2){border:none;}

.system_inner ul.notes{
	font-size:13px;
	line-height:1.5;
	font-weight:400;
    list-style-type: none;
    padding:0;
    margin:15px 0 0 18px;
}
.system_inner ul.notes li{
    text-indent: -18px;
    margin-top:10px;
}


/* =======================================================================
	FOOTER
======================================================================= */
footer{
	width:100%;
	text-align:center;
	border-top:#F1F2F9 1px solid;
}
footer a{
	color:#111;
	text-decoration: none;
}
footer .footer_inner{
	width:100%;
	font-size:14px;
	padding:0;
	margin:0 auto;
}
.footer_inner .company_info{
	line-height:1.6;
	border-bottom:#DDD 1px solid;
	padding:20px 0 17px 0;
}
.footer_inner .company_info img{
	width:auto;
	height:45px;
	display:block;
	margin:0 auto;
}
.footer_inner .company_info b{
	display:block;
	margin:10px 0 0 0;
}
.footer_inner ul{
	width:100%;
	list-style-type: none;
	padding:0;
	margin:0;
}
.footer_inner ul li{
	line-height:1;
	border-bottom:#DDD 1px solid;
}
.footer_inner ul li.fnav_head{
	color:#FFF;
	font-weight:500;
	background:#6C6398;
	padding:10px 0 11px 0;
}
.footer_inner ul li a{
	width:100%;
	height:100%;
	font-size:14px;
	font-weight:500;
	display: block;
	padding:16px 0;
}
ul.others_link{
	width:100%;
	list-style-type: none;
	border-bottom:#DDD 1px solid;
	padding:0;
	margin:0;
}
ul.others_link li{
	border-bottom:#DDD 1px solid;
}
ul.others_link li:last-child{border:none;}
ul.others_link li a{
	width:100%;
	height:100%;
	font-size:13px;
	font-weight:500;
	background:#f6f6f6;
	display: block;
	padding:16px 0;
}
footer .copyright{
	width:100%;
	font-size:10px;
	background:#f6f6f6;
	text-align:center;
	padding:15px 0;
}

/* =======================================================================
	RELEASE NOTE
======================================================================= */
section#releasenote{
	width:90%;
	padding:100px 0 40px 0;
	margin:0 auto;
}
section#releasenote h1{
	font-size:26px;
	font-weight:600;
	line-height:1;
	text-align:center;
	position:relative;
}
section#releasenote h1 span{
	font-size:16px;
	color:#7D71B2;
	display:block;
	margin:20px 0 0 0;
}
section#releasenote h2{
	font-size:20px;
	font-weight:600;
	line-height:1;
	color:#FFF;
	background:#222;
	padding:10px 12px;
	margin:35px 0 20px 0;
}
section#releasenote a.dbtn{display:none;}
section#releasenote h3{
	font-size:17px;
	font-weight:600;
	margin:20px 0 0 0;
}
section#releasenote p{
	font-weight:500;
	margin:10px 0 0 0;
}
section#releasenote ul{
	width:90%;
	margin:0 0 0 25px;
}
section#releasenote ul li{
	font-size:15px;
	font-weight:500;
	margin:15px 0 0 0;
}
section#releasenote ul li ul{
	margin:0 0 0 20px;
}
section#releasenote ul li ul li{
	font-size:15px;
	font-weight:500;
	margin:10px 0;
}