@charset "utf-8";

/*------------------------------------------------
   Reset
------------------------------------------------*/

*{
margin:0;
padding:0;
}

#table{
font-size:inherit;
}

th{
text-align:left;
font-weight:normal;
}

img{
border:0;
max-width: 100%;
vertical-align: bottom;
}

img.pc-only{
	display: inline;
}
img.sp-only{
	display: none;
}

@media screen and (max-width: 768px) {
	/* 768px以下用（タブレット／スマートフォン用）の記述 */
	img.pc-only{
		display: none;
	}
	img.sp-only{
		display: inline;
	}
}


li{
	list-style:none;
}

a{
	color: #000;
	text-decoration: underline;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
}

a:hover{
	opacity:0.7;
	text-decoration: none;
}

h1,h2,h3,h4{
	font-weight: normal;
	font-size: 1em;
}


button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

input[type="submit"]{
	cursor: pointer;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:#ccc;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:#ccc;
}
::placeholder{ /* Others */
 color:#ccc
}

/*------------------------------------------------
   Layout
------------------------------------------------*/
html{
	width:100%;
	height:100%;
	font-size: 62.5%;
	line-height : 2.0;
	color:#000;
	text-align:center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	
}

body{
	width:100%;
	height:100%;
	font-size:1.2rem;
	-webkit-text-size-adjust: 100%;
	line-height: 2;
}


.header-wrp{
	/*position:fixed;*/
	position: relative;
	width: 100%;
}

/*header*/

header{
	background-color: #000;
	width: 100%;
	height: 80px;
	color: #fff;
	margin-bottom: 8px;
	z-index: 11;
	/*position: absolute;*/
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
}

header .inner{
	/*width: 1080px;*/
	width: 1190px;
	height: 80px;
	margin: 0 auto;
	position: relative;
}

header .inner #logo{
	position: absolute;
	left: 0;
	top: 30px;
	
}

header .inner #logo img{
	width: 94px;
}

/* .utility-menu-pc */

header .inner .utility-menu-pc{
	display: flex;
	justify-content: flex-end;
	padding-top: 12px;
	height: 25px;
}

header .inner .utility-menu-pc .tel-wrp{
	font-size: 1.5rem;
	margin-right: 15px;
	line-height: 25px;
}

header .inner .utility-menu-pc .tel-wrp span.num:before{
	content: "\f095";
	font-family: FontAwesome;
	margin-right: 3px;
}

header .inner .utility-menu-pc .tel-wrp span.time{
	font-size: 1.0rem;
	padding-left: 5px;
}

header .inner .utility-menu-pc ul{
	font-size: 0;
}

header .inner .utility-menu-pc li{
	display: inline-block;
	line-height: 25px;
}

header .inner .utility-menu-pc li:not(:last-child){
	margin-right: 5px;
}


header .inner .utility-menu-pc li a{
	display: inline-block;
	line-height: 25px;
	width: 110px;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
	background-color: #ccc;
	font-size: 1.0rem;
	text-decoration: none;
	letter-spacing: 1px;
}

header .inner .utility-menu-pc li.demo a{
	background-color:#3585C0;
}

header .inner .utility-menu-pc li.user a{
	/*background-color:#70AD47;*/
	background-color:#CB6500;
}

header .inner .utility-menu-pc li.contact a{
	/*background-color:#CB6500;*/
	background-color:#70AD47;
}

header .inner .utility-menu-pc li.download a{
	background-color:#6A4C93;
}

header .inner .utility-menu-pc li a i{
	margin-right: 3px;
	font-weight: normal;
	font-style: normal;
	font-size: 1.2rem;
	vertical-align: middle;
	font-family: FontAwesome;
}


/* pc-header-menu */

header .inner .pc-header-menu{
	position: absolute;
	left: 140px;
	width: 1050px;
}

header .inner .pc-header-menu ul{
	display: flex;
	justify-content:center;
	width: 100%;
}

header .inner .pc-header-menu ul li{
}

header .inner .pc-header-menu ul li a{
	color: #fff;
	text-decoration: none;
	padding: 0 12px;
	line-height: 43px;
	display: inline-block;
	font-size: 1.2rem;
	letter-spacing: 1px;
	display: inline-block;
	position: relative;
}

header .inner .pc-header-menu ul li.subscription a{
    letter-spacing: 0;
    font-size: 1.1rem;
}

header .inner .pc-header-menu ul li a:hover{
	opacity: 1;
}

header .inner .pc-header-menu ul li a:after{
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: -4px;
	left: 0;
	background-color: #CB6500;
	opacity: 0;
	transition: 100ms;
}

header .inner .pc-header-menu ul li a:hover:after,
header .inner .pc-header-menu ul li a.current:after{
	opacity: 1;
	bottom: 0;
	transition-delay: 200ms;
	
}

header .inner .pc-header-menu ul li i.fa{
	margin-left: 6px;
}

/**/

header .inner #toggle-sidebar,
header .inner #tel-icon,
header .inner .contact-btn{
	display: none;
}

/* .dropdwon-menu */

.dropdwon-menu{
	border-bottom: #ccc solid 1px;
	/*position: absolute;*/
	position: fixed ;
	width: 100%;
	background-color: #fff;
	z-index: 10;
	/*top: 80px;*/
	left: 0;
	top:-250px;
	transition: all 0.4s linear 0s;
	-webkit-transition: all 0.4s linear 0s;
	-moz-transition: all 0.4s linear 0s;
}

@media print{
	.dropdwon-menu{
		display: none;
	}
}

.dropdown-active{
	top: 80px;

}

.dropdwon-menu .inner{
	/*width: 1080px;*/
	width: 1190px;
	margin: 0 auto;
	padding: 20px 0 30px;
}

.dropdwon-menu .inner .menu-hdr{
	margin-bottom: 25px;
}

.dropdwon-menu .inner .menu-hdr ul{
	text-align: left;
	font-size: 0;
}

.dropdwon-menu .inner .menu-hdr ul li{
	display: inline-block;
}

.dropdwon-menu .inner .menu-hdr ul li.parent{
	font-size: 1.7rem;
	color: #003366;
}

.dropdwon-menu .inner .menu-hdr ul li.parent:after{
	 content: "\f0da";
	font-family: FontAwesome;
	display: inline-block;
	padding: 0 8px;
}

.dropdwon-menu .inner .menu-hdr ul li.parent a{
	text-decoration: none;
}

.dropdwon-menu .inner .menu-hdr ul li.child{
	font-size: 1.4rem;
}

.dropdwon-menu .inner .menu-hdr ul li.child a{
	color: #003366;
}

.dropdwon-menu .inner .menu-list-wrp ul{
	display: flex;
	flex-wrap: wrap;
}

.dropdwon-menu .inner .menu-list-wrp ul li{
	width: 159px;
}

.dropdwon-menu .inner .menu-list-wrp ul li a:hover{
	/*text-decoration: underline;*/
}

.dropdwon-menu .inner .menu-list-wrp ul li:not(:last-child){
	margin-right: 12px;
}

.dropdwon-menu .inner .menu-list-wrp ul li .ph img{
	/*border: #ddd solid 1px;*/
	width: 159px;
	height: 88px;
}

.dropdwon-menu .inner .menu-list-wrp ul li .ph{
	margin-bottom: 15px;
}

.dropdwon-menu .inner .menu-list-wrp ul li .txt{
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 600;
}

.dropdwon-menu .inner .menu-list-wrp ul li a{
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
}

/*
#menu-download .inner .menu-list-wrp ul li:first-child .txt{
	font-size: 1.2rem;
	line-height: 1.3;
}
*/


/**/

.dropdwon-menu .inner .menu-btm{
	text-align: center;
	padding-top: 30px;
}

.dropdwon-menu .inner .menu-btm a{
	display: inline-flex;
	line-height: 50px;
	padding: 0 50px;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: #FFF;
	background-color: #133261;
	border-radius: 25px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
	position: relative;
}

.dropdwon-menu .inner .menu-btm a:after{
	transition: all 0.15s;
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "chevron_right";
	font-family: "Material Icons";
	font-size: 2rem;
	font-weight: 400;
	text-decoration: none;
}

.dropdwon-menu .inner .menu-btm a:hover:after{
	right: 12px;
}

main{
	/*width:1080px;*/
	width: 1190px;
	margin: 0 auto 30px;
	display: block; /* 追記 */
	text-align: left;
}

#top{
	position: relative;
	background-color: #ddd;
}

#top #wrp{
	z-index: 2;
	position: relative;
}

#top:after{
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	/*height: 682px;*/
	height: 722px;
	top: 0;
	left: 0;
	background-color: #fff;
}

main#index{
	padding-top: 88px;
}

/**/

.bread-crumb-wrp{
	padding-top: 80px;
	margin-bottom: 30px;
	background-color: #EDEDED;
}

.bread-crumb-wrp .inner{
	width: 1190px;
	margin: 0 auto;
    font-size: 1.3rem;
    padding: 10px 0;
}

.bread-crumb-wrp .inner ul{
	text-align: left;
}

.bread-crumb-wrp .inner ul li{
	display: inline-block;
	text-align: left;
}

.bread-crumb-wrp .inner ul li a {
    color: #0066CC;
    text-decoration: none;
}

.ttl-wrp{
	margin-bottom: 20px;
}

.ttl-wrp .cat-name{
	font-size: 3.1rem;
	text-align: left;
	line-height: 1;
}

.ttl-wrp .cat-name .eng{
	display: block;
    color: #CC6600;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 12px;
}

.sub-ttl-wrp{
	margin-bottom: 20px;
}

.sub-ttl-wrp .sub-cat-name{
	font-size: 3.1rem;
	text-align: left;
	margin-bottom: 20px;
	color: #3585C0;
	
}


/**/

main .main-vis-wrp{
	width: 100%;
	vertical-align: top;
	display: flex;
}

#index-main-visual-2019{
	width: 890px;
	height: 440px;
	background-color: #ddd;
	margin-bottom: 24px;
	/*display: inline-block;*/
}

#index-main-visual-2019 li a{
	display: block;
}

.index-news-wrp{
	width: 292px;
	height: 440px;
	/*display: inline-block;*/
	margin-left: 8px;
	border: solid #eee 2px;
	box-sizing: border-box;
	overflow: hidden;
}

.index-news-wrp .news-hdr{
	border-bottom: #ddd solid 1px;
	height: 20px;
	padding: 10px;
	font-size: 0;
}

.index-news-wrp .news-hdr h2{
	display: inline-block;
	text-align: left;
	width: 60%;
	font-size: 1.3rem;
	line-height: 20px;
	font-weight: bold;
}

.index-news-wrp .news-hdr h2 span{
	font-size: 1.1rem;
	font-weight: normal;
}

.index-news-wrp .news-hdr a{
	display: inline-block;
	text-align: right;
	width: 40%;
	font-size: 1.2rem;
	line-height: 20px;
	text-decoration: none;
	color: #000;
}

.index-news-wrp .news-hdr a i.fa{
	margin-left: 8px;
	font-size: 2rem;
	color: #ccc;
	vertical-align: bottom;
	
}

.index-news-wrp .news-main{
	height: 400px;
	overflow: hidden;
}

.index-news-wrp .news-main li{
	display: block;
	border-bottom: #ddd solid 1px;
}

.index-news-wrp .news-main li a{
	display: block;
	padding: 13px 10px;
	text-align: left;
	text-decoration: none;
	font-size: 1.1rem;
    line-height: 1.5;
}

.index-news-wrp .news-main li a:hover .list-inner{
	color: #2d75c7;
}

.index-news-wrp .news-main li .list-hdr{
	font-size: 1.0rem;
	margin-bottom:5px;	
}

.index-news-wrp .news-main li .list-hdr .date{
	color: #6D7278;
	margin-right: 5px;
	display: inline-block;
}

.index-news-wrp .news-main li .list-hdr .cat{
	display: inline-block;
	background-color: #667E96;
	color: #fff;
	padding: 4px 8px;
	border-radius: 3px;
}

.top-ticker-twitter-wrp{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.top-ticker-twitter-wrp .twitter-wrp .inr-spacer{
	border: #EDEDED solid 1px;
	border-radius: 5px;
	height: 160px;
	box-sizing: border-box;
	overflow: hidden;
}

.top-ticker-twitter-wrp .twitter-wrp .inr-spacer h2{
	padding: 0 10px;
    margin: 0 0 0px;
    font-size: 1.4rem;
    line-height: 30px;
}

.top-ticker-twitter-wrp .twitter-wrp .inr-spacer h2:before{
	content: "\f099";
    font-family: FontAwesome;
    font-size: 2.2rem;
    margin-right: 5px;
	color: #1DA1F2;
	vertical-align: middle;
}

.top-ticker-twitter-wrp .twitter-wrp .inr-spacer h2 span{
	font-size: 1.2rem;
	margin-left: 5px;
}

.top-ticker-twitter-wrp .twitter-wrp .inr-spacer h2 span a{
	color: #1DA1F2;
}

/* ticker-wrp */

.ticker-wrp{
	width: 890px;
	background-color: #fff;
	padding:30px 40px;
	text-align: left;
	margin-bottom: 24px;
	box-sizing: border-box;
	border:#EDEDED solid 1px;
	height: 160px;
    overflow: hidden;
}

.ticker-wrp .inr-wrp ul{
	height: 100px;
	overflow: hidden;
}

.ticker-wrp li{
	margin-bottom: 5px;
}

.ticker-wrp li.subscription{
    margin-bottom: 10px;
}

.ticker-wrp li dl{
	display: flex;
}

.ticker-wrp li .date{
	display: block;
	font-size: 1.2rem;
	margin-right: 15px;
}

.ticker-wrp li .title{
	display: block;
	font-size: 1.4rem;
}

.top-ticker-twitter-wrp .twitter-wrp{
	width: 292px;
	margin-left: 8px;
}

/*feature-wrp-2019*/

.feature-wrp-2019 ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.feature-wrp-2019 ul li{
	/*width: 264px;*/
	/*width: 275px;*/
	width: 23.5%;
	overflow: hidden;
	margin-bottom: 24px;
	margin-right: 2%;
}

.feature-wrp-2019 ul li a{
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #F2F2F2;
}

.feature-wrp-2019 ul li img{
	max-width: 100%;
	width: 100%;
}

.feature-wrp-2019 ul li.wide{
	/*width: 592px;*/
	width: 49%;
}

.feature-wrp-2019 ul li:nth-of-type(3n){
	margin-right: 0;
}

.feature-wrp-2019 ul li .ph{
	/*border: #ddd solid 1px;*/
}

.feature-wrp-2019 ul li .ph .double{
	display: none;
}

.feature-wrp-2019 ul li.wide .ph .single{
	display: none;
}

.feature-wrp-2019 ul li.wide .ph .double{
	display: block;
}

.feature-wrp-2019 ul li .txt{
	background-color: #F2F2F2;
	font-size: 1.3rem;
	padding: 10px;
	height: auto;
	text-align: left;
	line-height: 1.6;
}

.feature-wrp-2019 ul li .txt .ttl{
	height: auto;
	margin-bottom: 5px;
}

.feature-wrp-2019 ul li .txt .cat{
	color: #0085DE;
	font-size: 1.1rem;
	margin-bottom: 20px;
}

/* morelink */

.morelink-wrp{
	width: 100%;
	padding: 30px 0;
	text-align: center;
}

.morelink{
	margin: 0 auto;
	text-decoration: none;
	display: inline-block;
	background-color: #999;
	width: 500px;
	line-height: 60px;
	color: #fff;
	font-size: 1.5rem;
	border-radius: 5px;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
	cursor: pointer;
}

.morelink:hover{
	opacity: 0.7;
}

/* #btm-info-wrp-2019 */

#btm-info-wrp-2019 h2{
	padding: 40px 0;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	background-color: #003366;
}

#btm-info-wrp-2019 br{
	display: none;
}

#btm-info-wrp-2019 .contact-wrp{
	padding: 30px 0;
}

#btm-info-wrp-2019 .main-inner ul{
	font-size: 0;
}

#btm-info-wrp-2019 .main-inner ul li{
	display: inline-block;
	font-size: 1.4rem;
	text-align: center;
	padding: 0 15px;
}

#btm-info-wrp-2019 .main-inner ul li button{
	cursor: pointer;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	-moz-transition: all 0.3s linear 0s;
}

#btm-info-wrp-2019 .main-inner ul li button:hover{
	opacity: 0.7;

}

#btm-info-wrp-2019 .main-inner ul li i.fa{
	margin-right: 5px;
}

#btm-info-wrp-2019 .main-inner ul li.tel-box{
	font-size: 2.2rem;
	color: #003366;
	font-weight: bold;
}

#btm-info-wrp-2019 .main-inner ul li.faq-box button{
	background-color:#333;
	width: 307px;
	height: 80px;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1.6rem;
	font-weight: bold;
}

#btm-info-wrp-2019 .main-inner ul li.contact-box button{
	/*background-color:#CC6600;*/
	background-color:#70AD47;
	width: 307px;
	height: 80px;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1.6rem;
	font-weight: bold;
}


/* footer */

#footer-2019{
	background-color: #EFEFEF;
}

#footer-2019 .main-inner{
	padding: 40px 0;
	/*width: 1080px;*/
	width: 1190px;
	margin:  0 auto;
}

#footer-2019 .main-inner h2 img{
	width: 254px;
}

#footer-2019 .main-inner h2{
	margin-bottom: 20px;
}

#footer-2019 .main-inner .clearfix{
	font-size: 0;
	
}

#footer-2019 .main-inner #footer-company{
	display: inline-block;
	vertical-align: top;
	width: 25%;
	font-size: 1.2rem;
	line-height: 1.6;
	text-align: left;
}

#footer-2019 .main-inner #footer-menu{
	display: inline-block;
	vertical-align: top;
	width: 25%;
	font-size: 1.2rem;
	line-height: 2;
	text-align: left;
}

#footer-2019 .main-inner #footer-menu li{
	display: block;
	text-align: left;
}

#footer-2019 .main-inner #footer-menu-external{
	display: inline-block;
	vertical-align: top;
	width: 25%;
	font-size: 1.2rem;
	line-height: 2;
	text-align: left;
	margin: 0 0 20px;
}

#footer-2019 .main-inner #footer-menu-external li{
	display: block;
	text-align: left;
}

#footer-2019 .main-inner #footer-menu li:before,
#footer-2019 .main-inner #footer-menu-external li:before{
	content: "\f105";
	font-family: FontAwesome;
	margin-right: 3px;
}

#footer-2019 .main-inner #footer-menu li a:hover,
#footer-2019 .main-inner #footer-menu-external li a:hover{
	text-decoration: none;
	
}

#footer-2019 .main-inner #footer-note-wrp{
	display: inline-block;
	vertical-align: top;
	width: 25%;
	font-size: 1.2rem;
	text-align: left;
}

#footer-2019 .main-inner #footer-note-wrp .note{
	background-color: #fff;
	padding: 20px;
	border: #ccc solid 1px;
	font-size: 1.2rem;
	line-height: 1.6;
	text-align:left;
	color: #333;
	margin-bottom: 10px;
}

#footer-2019 .main-inner #footer-note-wrp .note h3{
	text-align: center;
	margin-bottom: 5px;
	font-weight: bold;
}


#footer-2019 .btm-inner{
	background-color: #000;
	padding: 40px 0;
	color: #fff;
	font-size: 1.0rem;
}

#footer-2019 .btm-inner img{
	width: 78px;
	margin-bottom: 10px;	
}

#footer-2019 .btm-inner .footer-txt{
	margin-bottom: 10px;
}

#footer-2019 .btm-inner .footer-txt strong{
	font-weight: normal;	
}

/**/

#footer-2019 .main-inner #footer-menu-external .external{
	margin: 0 0 30px;
}

#footer-2019 .main-inner #footer-menu-external .sns li{
line-height: 1.3;
}

#footer-2019 .main-inner #footer-menu-external .sns li.tw:before{
	content: "";
	margin: 0;
}

#footer-2019 .main-inner #footer-menu-external .sns li.tw a{
	text-decoration: none;
}

#footer-2019 .main-inner #footer-menu-external .sns li.tw a:before{
	content: "\f099";
	font-family: FontAwesome;
	font-size: 2.6rem;
	margin-right: 5px;
	color: #1DA1F2;
}

/* @group toTop */

#page-top {
	position: fixed;
	bottom: 0;
	right: 45px;
	font-size: 2.8rem;
	font-weight: bold;
	z-index:12;
}

#page-top a {
	background-color: #999;
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
	-khtml-opacity: 0.7;
	opacity:0.7;
	text-decoration: none;
	color: #FFF;
	text-align: center;
	display: block;
	border-radius: 48px;
	-moz-border-radius: 48px;
	-webkit-border-radius: 48px;
	width:48px;
	height:48px;
	line-height: 45px;
}

#page-top a:hover {
	border-style: none;
	background: #999999;
}

#page-top a:link,
#page-top a:visited{
	color:#FFF;
}


/* 一覧へ戻る FeatureCAM　へのリンク */

#wrp .backto-index-menu{
	margin-bottom:50px;
	text-align:center;
}

#wrp .backto-index-menu li{
	display:inline-block;
	border:none;
	padding:0;
	width:307px;
	margin-right:19px;
	font-size:1.8rem;
	border-bottom:none;
	margin-bottom:0;
}


#wrp .backto-index-menu li:last-child{
	margin-right:0;
}

#wrp .backto-index-menu a{
	text-align:center;
	display:inline-block;
	background-color:#003366;
	color:#FFF;
	width:307px;
	height:60px;
	line-height:60px;
	border-radius:8px;
	padding:0 20px;
	box-sizing:border-box;
	text-align:center;
	font-size:1.4rem;
}

#wrp .backto-index-menu li.backto-index a{
	background-color:#003366;
}

#wrp .backto-index-menu li.backto-fc a{
	background-color:#CB6600;
}

/**/

/**/

#common-side-form-wrp{
	background-color:#ECECEC;
	border:#000 solid 3px;
	margin-bottom:50px;
}

#common-side-form-wrp .hdr{
	background-color:#000;
	padding:20px;
	text-align:center;
	color:#fff;
}

#common-side-form-wrp .hdr h2{
	font-size:2.0rem;
	margin-bottom:10px;
}

#common-side-form-wrp .hdr figure{
	width:83px;
	margin:0 auto;
}

#common-side-form-wrp iframe{
	padding:20px;
	box-sizing: border-box;
}

#common-side-form-wrp form{
	padding:20px;
}


#common-side-form-wrp table{
	width:100%;
	text-align: left;
	font-size:1.5rem;
}

#common-side-form-wrp .must{
	background-color:#E73E23;
	font-weight:normal;
	font-size:1.1rem;
	display:inline-block;
	padding:0px 8px;
	margin-left:5px;
	color:#fff;
	text-align:center;
	border-radius:3px;
}

#common-side-form-wrp th,
#common-side-form-wrp td{
	display:block;
	width:100%;
}

#common-side-form-wrp th{
	padding-bottom:5px;
	text-align:left;
}

#common-side-form-wrp td{
	padding-bottom:15px;
	text-align:left;
}

#common-side-form-wrp input[type="text"] {
	padding:10px 5px;
	font-size:1.3rem;
	width:100%;
	box-sizing:border-box;
    border-radius: 5px;
    border: #ddd solid 1px;
}

#common-side-form-wrp input[type="submit"] {
    width: 100%;
    border-radius: 0;
    border: none;
    /*background-color: #003366;*/
	background-color: #70AD47;
    box-sizing: border-box;
    border-radius: 8px;
    color: #fff;
    height: 60px;
    font-size: 1.6rem;
}


.bnr-subscription-wrp{
    margin-bottom: 40px;
}


.secondaly .bnr-subscription-wrp{
    background-color: #F7F7F7;
    padding: 30px;
    
}


.bnr-wp-dl-bnr-case-wrp{
    margin-bottom: 40px;
}


.secondaly .bnr-wp-dl-bnr-case-wrp{
    background-color: #F7F7F7;
    margin-top: 30px;
    padding: 30px;
    
}

.bnr-wp-dl-bnr-point-wrp{
    margin-bottom: 40px;
}


.secondaly .bnr-wp-dl-bnr-point-wrp{
    background-color: #F7F7F7;
    margin-top: 30px;
    padding: 30px;
    
}

/**********************************/

.fusion360-intro-outer{
	background-color: #EDEDED;
}

.fusion360-intro-outer-wrp{
	width: 1190px;
	margin: 0 auto 0;
	background-color: #EDEDED;
    padding: 50px 250px;
    box-sizing: border-box;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp{
	margin-bottom:0;
	background-color: #fff;
	padding: 40px;
    border-radius: 10px;
    border: #eee solid 1px;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp h2{
	font-size:2.4rem;
	margin-bottom:10px;
	letter-spacing:2px;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp li{
	font-size:1.8rem;
	margin-bottom:7px;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp li a{
	text-decoration: none;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp dl{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp dt{
	width: 60%;
	padding-right: 5%;
	box-sizing: border-box;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp dt:before{
	content: "\f0da";
	margin-right:5px;
	color:#CB6600;
	font-family: FontAwesome;
	text-decoration: none;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp dt span{
	text-decoration: underline;
}

.fusion360-intro-outer-wrp .fusion-intro-wrp dd{
	width: 40%;
	box-sizing: border-box;
	border: #ddd solid 1px;
	margin-bottom: 0;
}


/*------------------------------------------------
   Default
------------------------------------------------*/

/* float */
.clearfix:after{
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearfix{
display:inline-block;
}
/* Hides from IE-mac \*/
*html .clearfix{
height:1%;
}
.clearfix{
display:block;
}
/* End hide from IE-mac */

.fleft{float:left;}
.fright{float:right;}

/* text */
.lh01{line-height:1;}
.lh02{line-height:1.1;}
.lh03{line-height:1.2;}
.lh04{line-height:1.3;}
.lh05{line-height:1.4;}
.lh06{line-height:1.5;}
.lh07{line-height:1.6;}
.lh08{line-height:1.7;}
.lh09{line-height:1.8;}
.lh10{line-height:1.9;}
.lh11{line-height:2;}

.ttl01{font-size:14px;font-weight:bold;}
.ttl02{font-size:16px;font-weight:bold;}

.blt{font-weight:bold;}
.nlt{font-weight:normal;}

.mint{font-size:10px;}
.bigt{font-size:14px;}

.alignl{text-align:left;}
.alignc{text-align:center;}
.alignr{text-align:right;}

.valignt{vertical-align:top;}
.valignm{vertical-align:middle;}
.valignb{vertical-align:bottom;}

.black01{color:#000000;}
.glay01{color:#333333;}
.glay02{color:#666666;}
.glay03{color:#999999;}
.blue01{color:#003366;}
.blue02{color:#006699;}
.blue03{color:#0099cc;}
.red01{color:#cc0000;}
.red02{color:#990000;}
.red03{color:#CC3300;}
.orange01{color:#FF9900;}
.orange02{color:#FF6600;}
.green01{color:#339900;}
.green02{color:#006600;}

.ct01{color:#000;}
.ct02{color:#000;}
.ct03{color:#000;}

/* margin */
.mat01{margin-top:5px;}
.mat02{margin-top:10px;}
.mat03{margin-top:15px;}
.mat04{margin-top:20px;}
.mat05{margin-top:25px;}
.mat06{margin-top:30px;}
.mat07{margin-top:35px;}
.mat08{margin-top:40px;}
.mat09{margin-top:45px;}
.mat10{margin-top:50px;}

.mar01{margin-right:5px;}
.mar02{margin-right:10px;}
.mar03{margin-right:15px;}
.mar04{margin-right:20px;}
.mar05{margin-right:25px;}
.mar06{margin-right:30px;}
.mar07{margin-right:35px;}
.mar08{margin-right:40px;}
.mar09{margin-right:45px;}
.mar10{margin-right:50px;}

.mab01{margin-bottom:5px;}
.mab02{margin-bottom:10px;}
.mab03{margin-bottom:15px;}
.mab04{margin-bottom:20px;}
.mab05{margin-bottom:25px;}
.mab06{margin-bottom:30px;}
.mab07{margin-bottom:35px;}
.mab08{margin-bottom:40px;}
.mab09{margin-bottom:45px;}
.mab10{margin-bottom:50px;}

.mal01{margin-left:5px;}
.mal02{margin-left:10px;}
.mal03{margin-left:15px;}
.mal04{margin-left:20px;}
.mal05{margin-left:25px;}
.mal06{margin-left:30px;}
.mal07{margin-left:35px;}
.mal08{margin-left:40px;}
.mal09{margin-left:45px;}
.mal10{margin-left:50px;}


/* padding */
.pat01{padding-top:5px;}
.pat02{padding-top:10px;}
.pat03{padding-top:15px;}
.pat04{padding-top:20px;}
.pat05{padding-top:25px;}
.pat06{padding-top:30px;}
.pat07{padding-top:35px;}
.pat08{padding-top:40px;}
.pat09{padding-top:45px;}
.pat10{padding-top:50px;}

.par01{padding-right:5px;}
.par02{padding-right:10px;}
.par03{padding-right:15px;}
.par04{padding-right:20px;}
.par05{padding-right:25px;}
.par06{padding-right:30px;}
.par07{padding-right:35px;}
.par08{padding-right:40px;}
.par09{padding-right:45px;}
.par10{padding-right:50px;}

.pab01{padding-bottom:5px;}
.pab02{padding-bottom:10px;}
.pab03{padding-bottom:15px;}
.pab04{padding-bottom:20px;}
.pab05{padding-bottom:25px;}
.pab06{padding-bottom:30px;}
.pab07{padding-bottom:35px;}
.pab08{padding-bottom:40px;}
.pab09{padding-bottom:45px;}
.pab10{padding-bottom:50px;}

.pal01{padding-left:5px;}
.pal02{padding-left:10px;}
.pal03{padding-left:15px;}
.pal04{padding-left:20px;}
.pal05{padding-left:25px;}
.pal06{padding-left:30px;}
.pal07{padding-left:35px;}
.pal08{padding-left:40px;}
.pal09{padding-left:45px;}
.pal10{padding-left:50px;}

.paa01{padding:5px;}
.paa02{padding:10px;}
.paa03{padding:15px;}
.paa04{padding:20px;}



@media screen and (max-width: 768px) {
/* 768px以下用（タブレット／スマートフォン用）の記述 */

	#top{
		position: relative;
		background-color: #fff;
	}

	#top:after{
		display: none;
	}
	
	#wrp{
		height: 100%;
		width: 100%;
		-webkit-overflow-scrolling: touch;
		overflow:scroll;	}

	/*header*/

	header{
		background-color: #000;
		width: 100%;
		height: 50px;
		color: #fff;
		margin-bottom: 0;
		z-index: 11;
		position: static;
		top:auto;
		left: auto;
		overflow: hidden;
	}

	header .inner{
		width: 100%;
		height: 50px;
		margin: 0 auto;
		position: relative;
	}

	header .inner #logo{
		position: absolute;
		left: 13px;
		top: 15px;
	}

	header .inner #logo img{
		width: 78px;
	}
	
	header .inner #toggle-sidebar{
		display: block;
		position: fixed;
		right: 7px;
		top: 4px;
		width: 40px;
		height: 40px;
		overflow: hidden;
		background-color: rgba(0,0,0,0.90);
		background-image: url("../images/index/ico-menu.png");
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: 25px auto;
		z-index: 12;
		cursor: pointer;
	}
	
	header .inner #tel-icon{
		display: block;
		position: absolute;
		right: 47px;
		top: 4px;
		width: 40px;
		height: 40px;
		overflow: hidden;
		background-color: rgba(0,0,0,0.90);
		background-image: url("../images/index/ico-tel.png");
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: 20px auto;
		z-index: 12;
		cursor: pointer;
	}
	
	header .inner #tel-icon a{
		display: block;
		height: 100%;
		width: 100%;
	}
	
	#close-btn{
		display: block;
		position: absolute;
		right: 7px;
		top: 6px;
		width: 40px;
		height: 40px;
		overflow: hidden;
		background-color: rgba(0,0,0,0.90);
		background-image: url("../images/index/ico-close.png");
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: 20px auto;
		z-index: 12;
		cursor: pointer;
	}
	
	
	header .inner .contact-btn{
		display: block;
		position: absolute;
		right: 87px;
		top: 13px;
		overflow: hidden;
		cursor: pointer;
	}
	
	header .inner .contact-btn a{
		display: inline-block;
		line-height: 25px;
		width: 100px;
		color: #fff;
		font-weight: bold;
		border-radius: 5px;
		background-color: #70AD47;
		font-size: 1.0rem;
		text-decoration: none;
	}
	
	header .inner .contact-btn i{
		font-family: fontawesome;
		margin-right: 3px;
		font-style: normal;
	}
	

	/**/

	#menu-product,
	#menu-service,
	#menu-download,
	#menu-casestudy,
	#menu-document,
	#menu-support,
	header .inner .utility-menu-pc,
	header .inner .pc-header-menu{
		display: none;
		}
	
	/*  */
	.bread-crumb-wrp {
		padding-top:0;
		margin-bottom: 15px;
		background-color: #EDEDED;
	}
	
	.bread-crumb-wrp .inner{
		width: 100%;
		margin: 0 auto;
		font-size: 1.1rem;
		padding: 10px;
		box-sizing: border-box;
	}

	
	.ttl-wrp .cat-name {
		font-size: 2.4rem;
		letter-spacing: 1px;
		font-weight: normal;
		margin-bottom: 20px;
		line-height: 1;
		text-align: center;
	}
	
	.ttl-wrp h1 .eng {
		display: block;
		color: #CC6600;
		font-size: 1.2rem;
		line-height: 1;
		font-weight: bold;
		margin-bottom: 5px;
	}


	
	/**/

	main{
		width:100%;
		margin: 0 auto 30px;
	}

	main#index{
		padding-top: 0px;
	}
	
	main.secondaly{
		padding: 0 10px;
		box-sizing: border-box;
	}

	/**/

	main .main-vis-wrp{
		width: 100%;
		vertical-align: top;
		display: flex;
	}

	#index-main-visual-2019{
		width: 100%;
		height:auto;
		background-color: #ddd;
		margin-bottom: 8px;
		/*display: inline-block;*/
	}

	.slick-dotted.slick-slider {
		margin-bottom: 0;
	}
	
	#index-main-visual-2019 li a{
		display: block;
	}
	
	
	/* .index-main-inner-wrp */
	
	.index-main-inner-wrp{
		padding: 8px 8px;
	}


	/* ticker-wrp */

	.ticker-wrp{
		background-color: #F2F2F2;
		padding:20px 10px;
		margin-bottom: 8px;
		height: auto;
	}

	.ticker-wrp .inr-wrp ul{
		height: 100px;
		overflow: hidden;
	}

	.ticker-wrp li dl{
		margin: 0 0 5px 0;
	}

	.ticker-wrp li .date{
		display: block;
		font-size: 1.0rem;
		margin: 0 15px 0;
	}

	.ticker-wrp li .title{
		display: block;
		font-size: 1.1rem;
		line-height: 1.5;
		text-align: left;
	}
	
	/*  */

	.top-ticker-twitter-wrp .twitter-wrp {
		width: 100%;
		margin: 0 0 8px 0;
		text-align: center;
	}

	.top-ticker-twitter-wrp .twitter-wrp .inr-spacer{
		width: 292px;
		margin: 0 auto;
	}
	
	.index-news-wrp{
		display: none;
	}

	/**/
	
	.feature-wrp-2019{
		
	}
	
	.feature-wrp-2019 ul li {
		width: calc(50% - 4px);
		margin-bottom: 8px;
		margin-right: 0;
		justify-content: space-between;
		display: flex;
	}

	.feature-wrp-2019 ul li.wide {
		width: calc(50% - 4px);
	}

	.feature-wrp-2019 ul li:nth-of-type(2n){
		margin-left: 8px;	
	}

	.feature-wrp-2019 ul li .ph .double{
		display: none;
	}

	.feature-wrp-2019 ul li.wide .ph .single{
		display: block;
	}

	.feature-wrp-2019 ul li.wide .ph .double{
		display: none;
	}


	.feature-wrp-2019 ul li a{
			background-color: #f2f2f2;
	}

	.feature-wrp-2019 ul li .txt{
		background-color: #F2F2F2;
		font-size: 1.2rem;
		padding: 10px;
		height: auto;
		text-align: left;
		line-height: 1.6;
	}

	.feature-wrp-2019 ul li .txt .ttl{
		height: 100%;
		margin-bottom: 5px;
	}

	.feature-wrp-2019 ul li .txt .cat{
		color: #0085DE;
		font-size: 1.0rem;
	}



	/* morelink */

	.morelink-wrp{
		width: 100%;
		padding: 10px 0;
	}

	.morelink{
		margin: 0 auto;
		text-decoration: none;
		display: inline-block;
		background-color: #999;
		width: 100%;
		line-height: 60px;
		color: #fff;
		font-size: 1.5rem;
		border-radius: 5px;
		transition: all 0.3s linear 0s;
		-webkit-transition: all 0.3s linear 0s;
		-moz-transition: all 0.3s linear 0s;
		cursor: pointer;
	}

	.morelink:hover{
		opacity: 0.7;
	}


	/* #btm-info-wrp-2019 */

	#btm-info-wrp-2019 h2{
		padding: 30px 20px;
		text-align: center;
		color: #fff;
		font-size: 1.3rem;
		background-color: #003366;
	}
	
	#btm-info-wrp-2019 br{
	display: inline;
	}
	
	#btm-info-wrp-2019 h2 p{
		line-height: 1.8;
	}

	#btm-info-wrp-2019 .contact-wrp{
		padding: 20px 0;
	}

	#btm-info-wrp-2019 .main-inner ul{
		font-size: 0;
	}

	#btm-info-wrp-2019 .main-inner ul li{
		display: block;
		font-size: 1.4rem;
		text-align: center;
		padding: 0 0;
	}
	
	#btm-info-wrp-2019 .main-inner ul li:not(:last-child){
		margin-bottom: 10px;
	}
	
	#btm-info-wrp-2019 .main-inner ul li.tel-box{
		margin-bottom: 20px;
	}

	#btm-info-wrp-2019 .main-inner ul li button{
		cursor: pointer;
		transition: all 0.3s linear 0s;
		-webkit-transition: all 0.3s linear 0s;
		-moz-transition: all 0.3s linear 0s;
	}

	#btm-info-wrp-2019 .main-inner ul li button:hover{
		opacity: 0.7;
	}

	#btm-info-wrp-2019 .main-inner ul li i.fa{
		margin-right: 5px;
	}

	#btm-info-wrp-2019 .main-inner ul li.tel-box{
		font-size: 2.2rem;
		color: #003366;
		font-weight: bold;
	}

	#btm-info-wrp-2019 .main-inner ul li.faq-box button{
		background-color:#333;
		width: 307px;
		height: 80px;
		color: #fff;
		border: none;
		border-radius: 6px;
		font-size: 1.6rem;
		font-weight: bold;
	}

	#btm-info-wrp-2019 .main-inner ul li.contact-box button{
		background-color:#70AD47;
		width: 307px;
		height: 80px;
		color: #fff;
		border: none;
		border-radius: 6px;
		font-size: 1.6rem;
		font-weight: bold;
	}


	/* footer */

	#footer-2019{
		background-color: #000;
	}

	#footer-2019 .main-inner{
		padding: 0 0;
		width: 100%;
		margin:  0 auto;
		display: flex;
	}

	#footer-2019 .main-inner h2 img{
		width: 254px;
	}

	#footer-2019 .main-inner h2{
		margin-bottom: 20px;
	}
	
	#footer-2019 .main-inner .footer-company-logo-pc{
		display: none;
	}

	#footer-2019 .main-inner .clearfix{
		font-size: 0;
		display: flex;
		flex-wrap: wrap;
	}

	#footer-2019 .main-inner #footer-company{
		order: 4;
		display: block;
		vertical-align: top;
		width: 100%;
		font-size: 1.2rem;
		line-height: 1.6;
		text-align: center;
		color: #fff;
		padding: 0 20px;
		margin-bottom: 20px;
		box-sizing: border-box;
	}

	#footer-2019 .main-inner #footer-menu{
		order: 1;
		display:block;
		width: 100%;
		font-size: 1.2rem;
		line-height: 2;
		text-align: left;
		background-color: #efefef;
		padding: 20px 20px 0;
		box-sizing: border-box;
	}

	#footer-2019 .main-inner #footer-menu li{
		display: block;
		text-align: left;
		
	}
	
	#footer-2019 .main-inner #footer-menu li a,
	#footer-2019 .main-inner #footer-menu-external li a{
		display: block;
		text-decoration: none;
		padding:5px 0;
		color: #000;
	}
	
	#footer-2019 .main-inner #footer-menu-external{
		order: 2;
		display: block;
		vertical-align: top;
		width: 100%;
		font-size: 1.2rem;
		line-height: 2;
		text-align: left;
		background-color: #efefef;
		padding: 0 20px 20px;
	}

	#footer-2019 .main-inner #footer-menu-external li{
		display: block;
		text-align: left;
	}

	#footer-2019 .main-inner #footer-menu li:before,
	#footer-2019 .main-inner #footer-menu-external li:before{
		display: none;
		content: "\f105";
		font-family: FontAwesome;
		margin-right: 3px;
	}

	#footer-2019 .main-inner #footer-menu li a:hover,
	#footer-2019 .main-inner #footer-menu-external li a:hover{
		text-decoration: none;
	}
	
	#footer-2019 .main-inner #footer-menu li span:before,
	#footer-2019 .main-inner #footer-menu-external li span:before{
		content: "\f105";
		font-family: FontAwesome;
		margin-right: 3px;
	}
	

	#footer-2019 .main-inner #footer-note-wrp{
		order: 3;
		display: inline-block;
		vertical-align: top;
		width: 100%;
		font-size: 1.2rem;
		text-align: left;
		padding: 16px 8px 0;
		background-color: #000;
		color: #fff;
	}

	#footer-2019 .main-inner #footer-note-wrp .note{
		background-color: #000;
		padding: 20px;
		border: #666 solid 1px;
		font-size: 1.2rem;
		line-height: 1.6;
		text-align:left;
		color: #fff;
		margin-bottom: 20px;
	}

	#footer-2019 .main-inner #footer-note-wrp .note h3{
		text-align: center;
		margin-bottom: 5px;
		font-weight: bold;
	}
	
	#footer-2019 .main-inner #footer-note-wrp .g-sign{
		text-align: center;
		margin-bottom: 20px;
	}
	
	#footer-2019 .main-inner a{
		color: #fff;
	}


	#footer-2019 .btm-inner{
		background-color: #000;
		padding: 20px 20px 60px;
		color: #fff;
		font-size: 1.0rem;
	}

	#footer-2019 .btm-inner img{
		width: 78px;
		margin-bottom: 10px;	
	}

	#footer-2019 .btm-inner .footer-txt{
		margin-bottom: 10px;
		line-height: 1.8;
	}

	#footer-2019 .btm-inner .footer-txt strong{
		font-weight: normal;	
	}

	/* @group toTop */
	
	/*
	#page-top {
		position: fixed;
		bottom: 15px;
		right: 15px;
		font-size: 2.8rem;
		font-weight: bold;
		z-index:12;
		width: 48px;
		height: 48px;
	}
	*/
	

	#page-top a {
		background-color: #999;
		filter:alpha(opacity=70);
		-moz-opacity:0.7;
		-khtml-opacity: 0.7;
		opacity:0.7;
		text-decoration: none;
		color: #FFF;
		text-align: center;
		display: block;
		border-radius: 48px;
		-moz-border-radius: 48px;
		-webkit-border-radius: 48px;
		width:48px;
		height:48px;
		line-height: 45px;
	}

	#page-top a:hover {
		border-style: none;
		background: #999999;
	}

	#page-top a:link,
	#page-top a:visited{
		color:#FFF;
	}
	
	/**/

	#main-sidebar{
		background-color: #000;
		color: #fff;
		font-size: 1.4rem;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}
	
	#main-sidebar .inner-hdr{
		position: relative;
		height: 49px;
		border-bottom: #333 solid 1px;
		
	}
	
	#main-sidebar .inner-hdr .logo{
		position: absolute;
		left: 13px;
    top: 17px;
	}
	
	#main-sidebar .inner-hdr .logo img{
		width: 78px;
		height: 20px;
	}
	
	
	#main-sidebar .inner-hdr #tel-btn{
		display: block;
		position: absolute;
		right: 47px;
		top: 6px;
		width: 40px;
		height: 40px;
		overflow: hidden;
		background-color: rgba(0,0,0,0.90);
		background-image: url("../images/index/ico-tel.png");
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: 20px auto;
		z-index: 12;
		cursor: pointer;
	}
	
	#main-sidebar .inner-hdr #tel-btn a{
		display: block;
		width: 100%;
		height: 100%;
	}
	
	#main-sidebar .inner-hdr .contact-btn{
		display: block;
		position: absolute;
		right: 87px;
		top: 15px;
		overflow: hidden;
		cursor: pointer;
	}
	
	#main-sidebar .inner-hdr .contact-btn a{
		display: inline-block;
		line-height: 25px;
		width: 100px;
		color: #fff;
		font-weight: bold;
		border-radius: 5px;
		background-color: #CB6500;
		font-size: 1.0rem;
		text-decoration: none;
	}
	
	#main-sidebar .inner-hdr .contact-btn i{
		font-family: fontawesome;
		margin-right: 3px;
		font-style: normal;
	}
	
	
	#main-sidebar .bnr-wrp ul{
		padding-top: 16px;
		width: 200px;
		margin: 0 auto 16px;
	}
		
	#main-sidebar .bnr-wrp ul li{
		display: block;
		text-align: center;
	}
	
	#main-sidebar .bnr-wrp ul li:not(:last-child){
		margin-bottom: 10px;
	}

	#main-sidebar .bnr-wrp ul li img{
		width: 200px;
		height: 63px;
	}

	#main-sidebar .menu-wrp ul{
		border-top: #333 solid 1px;
	}
	
	#main-sidebar .menu-wrp a{
		color: #fff;
	}
	
	#main-sidebar .menu-wrp{
		width: 100%;
		text-align: left;
	}
	
	
	#main-sidebar .menu-wrp dt span{
		display: block;
		padding: 15px;
		border-bottom: #333 solid 1px;
		position: relative;
	}
	
	#main-sidebar .menu-wrp dt span:after{
		content: "";
		position: absolute;
		right: 20px;
		top: 18px;
		height: 10px;
		width: 15px;
		background-image: url("../images/index/ico-menu-arrow.png");
		background-size: 15px 10px;
		background-position: 50% 50%;
		background-repeat: no-repeat;
	}
	
	#main-sidebar .menu-wrp dt.is-active span:after{
		transform: rotate(180deg);
	}

	#main-sidebar .menu-wrp dd span{
		display: block;
		padding: 15px;
	}
	
	#main-sidebar .menu-wrp dd{
		display: none;
	}
	
	#main-sidebar .menu-wrp .accordion-menu ul{
		background-color: #444;
	}
	
	#main-sidebar .menu-wrp a{
		display: block;
		padding: 17px;
		border-bottom: #333 solid 1px;
		text-decoration: none;
	}

    .secondaly .bnr-subscription-wrp{
        background-color: #F7F7F7;
        padding: 0;    
    }
    
    
    .bnr-wp-dl-bnr-case-wrp{
        margin-bottom: 40px;
    }


    .secondaly .bnr-wp-dl-bnr-case-wrp{
        background-color: #F7F7F7;
        margin-top: 30px;
        padding: 0;

    }

    .bnr-wp-dl-bnr-point-wrp{
        margin-bottom: 40px;
    }


    .secondaly .bnr-wp-dl-bnr-point-wrp{
        background-color: #F7F7F7;
        margin-top: 30px;
        padding: 0;
    }

	/* fusion 360 へのリンクボックス */
	
	.fusion360-intro-outer-wrp{
		width: 100%;
		margin: 0 auto 0;
		background-color: #EDEDED;
		padding: 20px 20px;
		box-sizing: border-box;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp{
		margin-bottom:0;
		background-color: #fff;
		padding: 20px;
		border-radius: 10px;
		border: #eee solid 1px;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp h2{
		font-size:1.6rem;
		margin-bottom:10px;
		letter-spacing:1px;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp li{
		font-size:1.4rem;
		margin-bottom:7px;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp li a{
		text-decoration: none;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp dl{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp dt{
		width: 60%;
		padding-right: 5%;
		box-sizing: border-box;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp dt:before{
		content: "\f0da";
		margin-right:5px;
		color:#CB6600;
		font-family: FontAwesome;
		text-decoration: none;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp dt span{
		text-decoration: underline;
	}

	.fusion360-intro-outer-wrp .fusion-intro-wrp dd{
		width: 40%;
		box-sizing: border-box;
		border: #ddd solid 1px;
		margin-bottom: 0;
	}

    
	
}


/* 旧global.ccからの継承分 */

	
/* 一覧へ戻る FeatureCAM　へのリンク */

	#wrp .backto-index-menu{
		padding-top:30px;
		margin-bottom:30px;
		text-align:center;
	}
	
	#wrp .backto-index-menu li{
		display:block;
		border:none;
		padding:0;
		width: 100%;
		font-size:1.3rem;
		border-bottom:none;
		margin-bottom:10px;
	}

	#wrp .backto-index-menu a{
		text-align:center;
		display:block;
		background-color:#003366;
		color:#FFF;
		width:100%;
		height:60px;
		line-height:60px;
		border-radius:8px;
		padding:0 20px;
		box-sizing:border-box;
		text-align:center;
		font-size:1.3rem;
	}
	
	#wrp .backto-index-menu li.backto-index a{
		background-color:#003366;
	}
	
	#wrp .backto-index-menu li.backto-fc a{
		background-color:#333;
	}



/*768px*/
@media screen and (min-width : 769px){

/* 一覧へ戻る FeatureCAM　へのリンク */

	#wrp .backto-index-menu{
		margin-bottom:50px;
		text-align:center;
	}
	
	#wrp .backto-index-menu li{
		display:inline-block;
		border:none;
		padding:0;
		width:307px;
		margin-right:19px;
		font-size:1.4rem;
		border-bottom:none;
		margin-bottom:0;
	}


	#wrp .backto-index-menu li:last-child{
		margin-right:0;
	}
		
	#wrp .backto-index-menu a{
		text-align:center;
		display:inline-block;
		background-color:#003366;
		color:#FFF;
		width:307px;
		height:60px;
		line-height:60px;
		border-radius:8px;
		padding:0 20px;
		box-sizing:border-box;
		text-align:center;
		font-size:1.4rem;
		text-decoration: none;
	}
	
	#wrp .backto-index-menu li.backto-index a{
		background-color:#003366;
	}
	
	#wrp .backto-index-menu li.backto-fc a{
		background-color:#333;
	}

}

/* リストファインダー 埋め込み 共通設定 */

form p.valid-error{
	margin: 3px 0 0 0;
	border-radius: 3px;
	padding: 5px;
	color: #fff;
	font-size: 1.1rem;
	font-weight: bold;
	background-color: #cc0000;
}