/**
* Table of Contents:
*
* 00.0 - font
* 01.0 - Global
* 02.0 - Header
* 03.0 - Drawer with menu
* 04.0 - Parallax & block style
* 05.0 - Card lauout
* 06.0 - Footer
* 07.0 - Responsive styles
* 08.0 - CUSTOM
* -----------------------------------------------------------------------------
*/

/* ///////////////////////////////////////////////////////////////////// 
//  00 - font
/////////////////////////////////////////////////////////////////////*/

* {
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
} 
/* Googleフォントfor list-num */
@import url(https://fonts.googleapis.com/css?family=Philosopher);

/* ///////////////////////////////////////////////////////////////////// 
//  01 - Global 
/////////////////////////////////////////////////////////////////////*/

* {outline: none !important;}

html {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	overflow-y: scroll;
}
body {
	color: #333;	
	background: #fff;
	font-size: 16px;
}
p {
	margin-bottom: 20px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
img.img-maru {
    clip-path: circle(78px at center);
    -webkit-clip-path: circle(78px at center);
}
ul,ol {
	margin: 0;
	padding: 0; 
}
a {
	text-decoration: none;
	outline: none;
}
#drawer-right a,
#header a,
#footer a {	
	color: #fff;
	-o-transition: all .4s;
	-ms-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}
#drawer-right a:hover,
#footer a:hover {	
	color: #ccc;	
}
h1, h2, h3, h4, h5, h6 {		
	margin-bottom: 15px;	
}
h2 {
	font-size: 2.8em;
}
h3 {
	font-size: 2.4em;
}
h4 {
	font-size: 1.8em;
}
h5 {
	font-size: 1.6em;
}
.btn.border-radius,
.border-radius {
	border-radius: 3px;
}
.btn {
	border-radius: 0;
}
.btn-o-gray {
	border: 1px solid #9AA2A5;
	color: #4D5456;
}
.btn-o-gray:hover {
	background: #4D5456;
	color: #fff;
}
.btn-o-blue {
	border: 1px solid #1e94cf;
	color: #0071BD;
	background: #fff;
}
.btn-o-blue:hover {
	background: #0071BD;
	color: #fff;
}
.btn-o-white {
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
}
.btn-o-white:hover {
	background: white;
	color: #6a6a6a;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

/*////////////////////////////////////////////////////////////////////////
//  02 - Header
///////////////////////////////////////////////////////////////////////*/

#header{	
	position: relative;			
	text-align: center;
	padding: 0 !important;
	display: table;
	width: 100%;
}
#header > .center {
	display: table-cell;
	height: 400px;/*anywey*/
	vertical-align: middle;
}
#header .top {
	font-size: 0.8em;
	position: fixed;
	top: 0;
	width: 100%;
	padding: 10px;
	height: auto;
	z-index: 500;
	-o-transition: all .5s;
	-ms-transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;	
	transition: all .5s;
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
}
#header .nav a {
	color: #333;
}
.top .logo img {
	width: 100px;
}
.slogan {
    margin-top: 53px;
}
.slogan h1, .top_tit h1 {
	color: #0071BD;
	font-size: 3.6vw;
	font-weight: bold;
	line-height: 1.2;
}
.slogan h1 strong {
	font-size: 0.4em;
	color: #555;
}
.slogan p, .top_tit p {
	font-size: 1.1em;
	font-weight: bold;
	color: #333;
}
.slogan p span, .top_tit span {
	font-size: 1.4em;
}
#header > .bottom {
	position: absolute;
	bottom: 100px;
	left: 0;
	text-align: center;
	width: 100%;
}
.top_bg_white {
	display: none;
}

/* マウスボタンでスクロールを促すCSS */
#mouse,
#mouse:before {
	position: absolute;
	left: 50%;
}
#mouse {
	top: 50%;
	width: 40px;
	height: 65px;
	margin-left: -20px;
	margin-top: -33px;
	box-sizing: border-box;
	border: 2px solid #ffffff;
	border-radius: 25px;
}
#mouse:before {
	content: '';
	top: 8px;
	width: 8px;
	height: 8px;
	background: #ffffff;
	margin-left: -4px;
	border-radius: 4px;
	animation: scroll 1.5s infinite;
	-webkit-animation: scroll 1.5s infinite;
	-moz-animation: scroll 1.5s infinite;
}
@keyframes scroll {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		transform: translateY(41px);
	}
}
@-webkit-keyframes scroll {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		transform: translateY(41px);
	}
}
@-moz-keyframes scroll {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		transform: translateY(41px);
	}
}

@media (max-width: 480px) {
	#header > .center {
		display: table-cell;
		height: 400px;/*anywey*/
		vertical-align: inherit;
	}
	#header .slogan {
	    height: 100%;
	}

.top_bg_white {
	/*min-height: 20px;
    padding: 19px 19px 19px 19px;
    margin-bottom: 20px;*/
    background-color: rgba(255,255,255,0.6);
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
}

/*////////////////////////////////////////////////////////////////////////
//  03 - Drawer with menu
///////////////////////////////////////////////////////////////////////*/

/* ハンバーガーアイコン */
.slide_nav button {
  position: fixed;
  top: 0;
  right:0;
  z-index: 999999;
  margin: 0 14px;
  border :none;
  outline: none;
}
.slide_nav span {
  height:40px;
  width:40px;
  display:block;
  position:relative;
}
.slide_nav .slide_btn {
  width:40px;
  height:40px;
}
.slide_nav .slide_btn:before {
	content:'';
	height:6px;
	width:40px;
	background:#009fe8;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	display:block;
	position:absolute;
	top:3px;
	left:0;
	box-shadow:0 12px #009fe8, 0 24px #009fe8;
	-webkit-box-shadow:0 12px #009fe8, 0 24px #009fe8;
	-moz-box-shadow:0 12px #009fe8, 0 24px #009fe8;
}
.navbar-default {
	background: #1e94cf;
	border: none;
	color: #fff;
}
.slide_nav ul > li > a {
	color: #fff;
}
.nav li.btn_contact a {
    color: #fff !important;
    background: #ff9d02;
	margin-left: 5px;
	border-radius:  0;
	padding-left: 18px !important;
}
.nav li.btn_contact a:hover {
	background: #ff9d02;
}


/*////////////////////////////////////////////////////////////////////////
//  04 - Parallax & block style
///////////////////////////////////////////////////////////////////////*/

.content-block {
	background-size: 100%;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	overflow: hidden;
	padding: 60px 0;
	object-fit: cover;
}
.block-body {
    margin-top: 40px;
}
#header,
#parallax1,
#parallax2,
#parallax3,
#contact {
	max-width: 100%;
	height: auto;
}
#header {
	max-width: 100%;
	height: auto;
}
.top-bg {
	background-image: url(../images/top_bg.jpg);
}
.camera-bg {
	background-image: url(../images/camera_bg.jpg);
	height: 85vh !important;
}
.browser-bg {
	background-image: url(../images/browser_bg.jpg);
	height: 85vh !important;
}
.recorder-bg {
	background-image: url(../images/recorder_bg.jpg);
	height: 85vh !important;
}
.telework-bg {
	background-image: url(../images/telework_bg.jpg);
	height: 85vh !important;
}
.freetrial {
    background-image: url(../images/parallax1.jpg);
}
.news-bg {
	height: 240px !important;
}
.mynumber-bg {
	background-image: url(../images/parallax1.jpg);
}
.mynumber-contact {
	background: url(../images/contact_bg.png);
}

.parallax h1,
.parallax h2,
.parallax h3 {
	color: #333;
}
@media print {
   #header,
   #contact,
   #parallax1,
   #parallax2,
   #parallax3 {
      background-color: #fff;
   }
}
@media (max-width: 480px) {
	.camera-bg {
		height: 80vh !important;
	}
	.browser-bg {
		height: 91.5vh !important;
	}
}

/*////////////////////////////////////////////////////////////////////////
//  05 - Card lauout
///////////////////////////////////////////////////////////////////////*/
/* flexbox
　【flex使用箇所】KAITOカメラ トライアル */
.add-flex-column-nowrap {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
}
.add-flex-column-nowrap .panel-body {
	max-height: 360px;
	height: 100%;	
}

/* flexbox
　【flex使用箇所】導入事例、KAITOシリーズ（３つのサービス） */
.add-flex-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.add-flex-nowrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}
.add-flex-wrap a:hover,
.add-flex-wrap a:focus {
	opacity: 0.9; 
	text-decoration: none;
}
.parallax .add-flex-wrap a { 
	flex: 1;
	padding: 2%;
	margin: 0 1% 10px;
	color: #333;
	background-color: #fff;
	border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}
.parallax .add-flex-nowrap a {
	flex: 0 0 30%;
	padding: 2%;
	margin: 0 1% 10px;
	border: 1px solid rgba(255,255,255,0.7);
	color: #fff;
}
@media (max-width: 767px){
	.parallax .add-flex-wrap a {
		flex: auto;
	}
}
/* Firefox45に対応するため */
.parallax .add-flex-wrap img {
	max-width: 250px;
	width: 100%;
}
/* カード型レイアウト for 事例一覧ページ */
.layout_card {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap; 
}
.layout_card a:hover,
.layout_card a:focus {
	opacity: 0.8;
	text-decoration: none;
}
.layout_card img {
	vertical-align: top;
}
.layout_card .panel {
	width: 100%;
	flex: 0 0 28%;
	margin: 2%;
	flex-flow: column nowrap;
}
/* for Edge （ ％指定に未対応のため固定値を指定 ） 
@supports (-ms-ime-align:auto) {
.layout_card .panel {
	margin: 15px;
}
*/
.layout_card .panel-header {
	width: 100%;
	height: 160px;
	overflow: hidden;
	flex: 45%;
}
.layout_card .panel-header img {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.layout_card .panel-body {
	width: 100%;
	padding: 0 15px;
	flex: 45%;
}
.layout_card .panel-body .company_name {
	width: auto;
	height: 60px;
	margin: 10px auto;
}
.layout_card .panel-body .company_name p {
	text-align: center;
	font-size: 1.2em;
}
.layout_card .panel-body .company_name img {
	max-height: 60px;
	width: auto;
}
.layout_card .panel-footer {
	width: 100%;
	flex: 10%;
}
.layout_card .panel-lineheight {
	line-height: 37px;
}
/* モバイル用表示 */
@media screen and (min-width:600px) and (max-width:991px) {
	.layout_card .panel {
		flex: 0 0 46%;
		margin: 2%;
	}
}
@media (max-width:600px) {
	.swich_service {
		width: 100%;
		margin: 0 auto;
	}
	.layout_card .panel {
		flex: 0 0 100%;
		margin: 2% 0;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	/* スマホ時テキストは非表示 */
	.layout_card .panel-body p:not(.logo_text) {
		display: none;
	}
	/* flex レイアウト */
	.layout_card .panel-header {
		flex: 54%;
	}
	.layout_card .panel-body {
		flex: 30%;
	}
	.layout_card .panel-footer {
		flex: 16%;
	}
}

/* 切り替えタブ用のラベル */
.label-browser {
	background: #337ab7;
}
.label-camera {
	background: #5bc0de;
}
.label-recorder {
	background: #6F5992;
}


/*////////////////////////////////////////////////////////////////////////
//  06 - Footer
///////////////////////////////////////////////////////////////////////*/

#footer,
#copyright {
	background: #1e94cf;
	color: #fff;
}
#footer {
	padding-top: 20px;
}
#copyright {
	padding-bottom: 20px;
}

/*////////////////////////////////////////////////////////////////////////
//  07 - Responsive styles
///////////////////////////////////////////////////////////////////////*/
@media (max-width: 768px) {
	.camera-bg {
		background-image: url(../images/camera_bg_s.jpg);
	}
	.browser-bg {
		background-image: url(../images/browser_bg_s.jpg);
	}
	.recorder-bg {
		background-image: url(../images/recorder_bg_s.jpg);
	}
}
@media (max-width: 480px) {

	#drawer-right {
		padding: 10px 20px;
	}

	#drawer-right .nav-pills>li>a {
		font-size: 17px;
	}

	.nav-stacked>li+li {
		margin-top: 0;
	}

	.nav>li>a {
		padding: 8px 15px;
	}

	#drawer-right .social {
		margin-top: 5px;
	}

	.top-bg {
		background: url(../images/top_bg_s.jpg);
		height: 100vh !important;
	}

	.bg-white-op {
		margin: 10px;
	}
	.slogan h1, .top_tit h1 {
		margin-top: 0;
		font-size: 1.65em;
		line-height: 1.2;
	}
	.slogan h1 strong {
		font-size: 0.6em;
	}
	h2 {
		font-size: 2em;
	}
	h3 {
		font-size: 1.7em;
	}
	h4 {
		font-size: 1.4em;
	}
	h5 {
		font-size: 1.2em;
	}
}

/*////////////////////////////////////////////////////////////////////////
//  08 - CUSTOM
///////////////////////////////////////////////////////////////////////*/

/* margin padding */
.margin-10 {
	margin: 10px;
}
.margin-top-20 {
	margin-top: 20px;
}
.margin-top-50 {
	margin-top: 50px;
}
.margin-left-10 {
	margin-left: 10px;
}
.margin-left-30 {
	margin-left: 30px;
}
.margin-rignt-30 {
	margin-right: 30px;
}
.margin-bottom-5 {
	margin-bottom: 5px;
}
.margin-bottom-10 {
	margin-bottom: 10px;
}
.margin-bottom-20 {
	margin-bottom: 20px;
}
.margin-bottom-30 {
	margin-bottom: 30px;
}
.margin-bottom-50 {
	margin-bottom: 50px;
}
.no-margin-top {
	margin-top: 0 !important;
}
.no-margin-bottom {
	margin-bottom: 0 !important;
}
.no-pad {
	padding: 0 !important;
}
.no-pad-top {
	padding-top: 0 !important;
}
.no-pad-bottom {
	padding-bottom: 0 !important;
}
.pad-wide {
	padding-top: 200px;
	padding-bottom: 100px;
}
.pad-5 {
	padding: 5px !important;
}
.pad-10 {
	padding: 10px;
}
.pad-30 {
	padding: 30px;
}
.pad-top-10 {
	padding-top: 10px;
}
.pad-top-20 {
	padding-top: 20px;
}
.pad-top-40 {
	padding-top: 40px;
}
.pad-top-50 {
	padding-top: 50px;
}
.pad-right-10 {
	padding-right: 10px;
}
.pad-left-10 {
	padding-left: 10px;
}
.pad-left-15 {
	padding-left: 15px;
}
.pad-bottom-20 {
	padding-bottom: 20px;
}


/* position */
.align-top {
	vertical-align: top;
}
.align-middle {
	vertical-align: middle;
}
.align-bottom {
	vertical-align: bottom;
}

/* label alert */
.label-orange {
	background: #952F0F;
}
.label-purple {
	background: #6F5992;
}
.alert-orange { 
	background: #952F0F;
	padding: 2px;
	font-weight: bold;
	min-width: 6em;
}
.mark-blue {
	background: linear-gradient(transparent 60%, rgba(13,70,108,0.2) 40%);
	display: inline-block;
}
.mark-yellow {
	background: linear-gradient(transparent 60%, #868510 40%);
	display: inline-block;
}
/* border */
.border-gray {
	border: solid 2px #ddd;
}
/* box */
.arrow-box {
	background: #eee;
	padding: 30px;
	position: relative;
	z-index: 400;
}
.arrow-box:after {
	content: "";
	position: absolute;
	margin-left: -50px;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 40px 50px 0 50px;
	border-color: #eee transparent transparent transparent;
}
/* bootstrap custom */
.breadcrumb {
	background: transparent;
	font-size: 0.9em;
}
.breadcrumb > li+li:before {
	padding: 0;
	color: #fff;
	content: "";
}
.breadcrumb li+li:after {
	content: " ｜";
}
.breadcrumb li a:hover {
	color: #0D466C;
}
.breadcrumb li:first-child:after {
	content: " ｜";
}
.breadcrumb li+li:last-child:after {
	content: "";
}
.label {
	padding: 6px 10px;
	border-radius: 2px;
}
.btn-warning {
	background-color: #8a6d3b;
	border-color: #8a6d3b;
}
.btn-warning:hover {
	background-color: #574525;
	border-color: #574525;
	color: #fff;
}

/* bg */
.bg-none {
	background-color: transparent;
}
.bg-white {
	background-color: #fff;
}
.bg-blue {
	background-color: #d2f4ff;
}
.bg-gray {
	background-color: #f0f0f0;
}
.bg-orange {
	background: #952F0F;
}
.bg-white-opacity {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 0;
    background-color: rgba(255,255,255,0.6);
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none; 
}

/* text */
.text-white {
	color: #fff !important;
}
.text-gray {
	color: #4D5456;
}
.text-orange {
	color: #952F0F;
}
.text-muted {
	color: #333;
}
.text-green {
	color: #80c46b;
}
.text-bold {
	font-weight: bold;
}

/* list */
.text-indent {
	text-indent: -1em;
	padding-left: 1em;
}
.list-indent li {
	text-indent: -1em;
	padding-left: 1em;
}
.list-num:after {
	content: "";
	display: table;
	clear: both;
}
.list-num {
	color: #004562;
	font-size: 1.4em;
	line-height: 1;
	vertical-align: middle;
	/*margin-left: 3em;*/
	display: block;
}
.list-num span {
	color: #0D466C;
	font-size: 3em;
	font-family: 'Philosopher';
	list-style: decimal inside;
	vertical-align: middle;
	margin-right: 10px; 
	line-height: 1;
	float: left;
}

/* box - icon list */
ul.icon-line,
ul.icon-check {
	padding: 20px;
}
ul.icon-line li,
ul.icon-check li {
	list-style-type: none;
	position: relative;
	font-size: 0.9em;
	margin-bottom: 0.7em;
}
ul.icon-line li:after {
	border: none;
	display: block;
	content: '';
	position: absolute;
	top: .6em;
	left: -1em;
	width: 8px;
	height: 3px;
	background-color: #8a6d3b;
}
ul.icon-check li:after {
	display: block;
	content: '';
	position: absolute;
	top: .6em;
	left: -1.6em;
	width: 1em;
	height: 0.6em;
	border-left: 2px solid #868510;
	border-bottom: 2px solid #868510;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* header nav custom */
.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}
.nav-line li a {
	margin-left: -10px;
}
.nav-line li a:after {
	content: "";
	border-right: solid 1px #ccc;
	margin-left: 10px;
}
.nav-line li.last a:after {
	content: "";
	border-right: none;
	/*margin-right: -15px;*/
}
.nav>li>a {
    padding: 10px 10px 10px 10px !important;
}

/* tab custom */
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:visited,
.nav-tabs>li.active>a:hover {
    color: #fff;
    cursor: pointer;
    background-color: #1e94cf;
    border: 1px solid #1e94cf;
    border-bottom-color: transparent;
    width: 100px;
    text-align: center;
}
.nav-tabs>li>a,
.nav-tabs>li>a:hover {
	background: #999;
	color: #fff;
	width: 100px;
    text-align: center;
}
.nav-tabs {
     border-bottom: none;
}

/* btn-modal */
.btn-modal ul li {
	margin-bottom: 10px;
	word-wrap: break-word;
	text-indent: -0.7em;
	padding-left: 1em;
}
.btn-modal > ul li:hover {
	text-decoration: none;
	color: #333;
}
.btn-modal > ul li:hover {
	background: #f7f7f7;
}
/* ボタンシャドウ シンプル */
.btn-shadow {
    box-shadow: 0 2px 2px rgba(0,0,0,.05), inset 0 -2px 0 rgba(0,0,0,.15);
}
/* ボタンシャドウ */
.btn-shadow.no-shadow {
    text-shadow: none;
    box-shadow: none;
}
/* トライアルボタン */
.btn_trail {
	text-align: center;
}
.btn_trail a {
	margin: 2rem 0 0;
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	padding: 15px;
	color: #fff;
	background: #ff9d02;
    display: block;
    width: 360px;
}
.btn_trail a:hover {
	color: orange;
	text-decoration: none;
}
/* ダウンロードボタン */
.btn_download {
	text-align: center;
}
.btn_download a {
	margin: 2rem 0 0;
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	padding: 13px 15px;
	color: #ff9d02 !important;
	background: #fff;
	border: #ff9d02 2px solid;
    display: block;
    width: 360px;
}
.btn_download a:hover {
	color: orange;
	text-decoration: none;
}
/* 事前トライアルボタン - ブラウザ */
.btn_pretrail {
	text-align: center;
}
.btn_pretrail a {
	margin: 2rem 0 0;
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	padding: 15px;
	color: #fff;
	background: #ff9d02;
    display: block;
    width: 360px;
}
.btn_pretrail a:hover {
	color: orange;
	text-decoration: none;
}

/* サービス切り替えボタン JMASカラー */
.btn-jmas.active,
.btn-jmas.focus,
.btn-jmas:active,
.btn-jmas:focus,
.btn-jmas:hover,
.open >.dropdown-toggle.btn-jmas {
	color:#fff;
	background: #009fe2;
	border-color:#009fe2;
}
.swich_service {
	width: 80%;
	margin: 0 auto;
}
.swich_service .btn {
	border-radius: 3px
}
.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
/* カメラTOPタイトル調整 */
.camera_toptit_adjust {
	margin-left: 38px;
}
/* ブラウザTOPタイトル調整 */
.browser_toptit_adjust {
	position: relative;
    width: 100%;
    height: 100%;
}
.browser_toptit_hi {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
}

/*追加分*/

.table-bordered>tbody>tr>td, 
.table-bordered>tbody>tr>th, 
.table-bordered>tfoot>tr>td, 
.table-bordered>tfoot>tr>th, 
.table-bordered>thead>tr>td, 
.table-bordered>thead>tr>th {
	border: none;
}


.table-striped>tbody>tr:nth-of-type(odd){
	background-color: #FFF;
}

h6 {
	font-size: 1.2em;
}

.font-small {
	font-size: 0.8em;
}
.title {
	line-height: 1.4em;
}

@media (max-width: 768px) {
	h6 {
		font-size: 1.1em;
	}
}

@media (max-width: 480px) {
	h6 {
		font-size: 1.5em;
	}
}

@media (max-width: 480px) {
	.pad-bottom-5 {
		padding-bottom: 5px;
	}
}

.margin-top-10 {
	margin-top: 10px;
}

@media (max-width: 480px) {
	.margin-top-10 {
		margin-top: 0;
	}
}

.margin-top-14 {
	margin-top: 14px;
}

@media (max-width: 768px) {
	.margin-top-14 {
		margin-top: 7px;
	}
}

.margin-top-25 {
	margin-top: 25px;
}

.pad-top-5 {
	padding-top: 5px;
}

.regulation {
	margin-top: 10px;
	margin-bottom: 0;
	padding-top: 5px;
}

@media (max-width: 768px) {
	.regulation {
		margin-top: 10px;
		margin-bottom: 0;
		padding-top: 10px;
	}
}
/* トライアルボタン SP */
.btn_trial_sp {
	margin-top: 4rem;
	text-align: center;
}
.btn_trial_sp a {
	margin: -1rem auto 0 !important;
	text-decoration: none;
	font-size: 0.8em;
	font-weight: bold;
	padding: 15px 0;
	background: #ff9d02;
	display: block;
	width: 95%;
}
.btn_trial_sp a:hover {
	color: orange;
	text-decoration: none;
}
/* ダウンロードボタン SP */
.btn_download_sp {
	text-align: center;
    margin-bottom: 1rem;
}
.btn_download_sp a {
	margin: -1rem auto 0 !important;
	text-decoration: none;
	font-size: 0.8em;
	font-weight: bold;
	padding: 13px 0;
	color: #ff9d02 !important;
	background: #fff;
	border: #ff9d02 2px solid;
    display: block;
    width: 95%;
}
.btn_download_sp a:hover {
	color: orange;
	text-decoration: none;
}
/* 事前トライアルボタン SP - ブラウザ */
.btn_pretrial_sp {
	margin-top: 4rem;
	text-align: center;
}
.btn_pretrial_sp a {
	margin: -1rem auto 0 !important;
	text-decoration: none;
	font-size: 0.8em;
	font-weight: bold;
	padding: 15px 0;
	background: #ff9d02;
	display: block;
	width: 95%;
}
.btn_pretrial_sp a:hover {
	color: orange;
	text-decoration: none;
}

.conA {
	text-align: right;
	padding-right: 20%;
	padding-top: 200px;
}

.conA-sp {
	position: absolute;
	width: 140px;
	padding:  20px;
    left:  55%;
    top: 47%;
}

@media(max-width: 767px) {
	.conA {
    	display: none;
	}
}
@media(max-width: 320px) {
	.conA-sp {
    	display: none;
	}
}

.panel2 {
	border: 1px solid #ccc;
	padding: 6px 12px;
	font-size: 14px;
	margin-top: 30px;
	margin-bottom: 9px;
	color: #000;
}

.new-plan-camera {
	color: #333333;
	font-size: 18px;
}

.new-plan-browser {
	color: #333333;
	font-size: 18px;
}

@media (max-width: 768px) {
	.new-plan-camera {
	color: #333333;
	font-size: 15px;
	}
	.new-plan-browser {
		color: #333333;
		font-size: 15px;
		}
}

@media (max-width: 460px) {
	.new-plan-camera {
	color: #333333;
	font-size: 14px;
	}
	.new-plan-browser {
		color: #333333;
		font-size: 14px;
		}
}

@media (max-width: 320px) {
	.new-plan-camera {
	color: #333333;
	font-size: 11px;
	}
	.new-plan-browser {
		color: #333333;
		font-size: 11px;
		}
}

.weight-bold-camera {
	font-weight: bold;
	line-height: 2.5rem;
}

.new-tag-camera {
	color: red;
	font-size: 20px;
	line-height: 3.8rem;
}

.weight-bold-browser {
	font-weight: bold;
	line-height: 2.5rem;
}

.new-tag-browser {
	color: red;
	font-size: 15px;
}

@media (max-width: 460px) {
	.new-tag-camera {
	color: red;
	font-size: 20px;
    line-height: 3.8rem;
	}
	.weight-bold-camera {
		line-height: 1.7rem;
	}
}

.new-tag-browser {
	color: red;
	font-size: 20px;
    line-height: 3.8rem;
	}

.weight-bold-camera {
	line-height: 2.5rem;
	}

@media (max-width: 320px) {
	.new-tag-camera {
	color: red;
	font-size: 15px;
    line-height: 2.0rem;
	}

	.new-tag-browser {
		color: red;
		font-size: 15px;
		line-height: 2.0rem;
		}
}

.decoration-none-camera:hover {
	text-decoration: none;
}

.left-bold {
	text-align: left;
	font-weight: bold;
}

.center-bold {
	text-align: center;
	font-weight: bold;
}

/*////////////////////////////////////////////////////////////////////////
//   News
///////////////////////////////////////////////////////////////////////*/
.news_bg {
	background-color: #fff;
}
.news_box {
	margin: 0 auto;
	color: #555;
	width: 90%;
}
.news_box p {
	font-weight: 700;
	text-align: center;
	font-size: 2.0rem;
}
.news_box dl {
	margin: 0;
    padding: 0 0;
    border-top: 1px #ccc dashed;
}
.news_box dl.news_last {
    border-bottom: 1px #ccc dashed;
}
.news_box dt {
    padding: 1.0rem 0 0;
    font-size: 1.4rem;
}
.news_box dd {
    padding-bottom: 1.0rem;
    line-height: 2.0rem;
}
.news_box dd a {
	color: #555;
    font-weight: 700;
}
.news_all {
	margin-top: 1rem;
	font-size: 1.4rem;
	text-align: right;
}
.news_all a {
	color: #555;
}
.news_tit {
    font-size: 1.65em !important;
    font-weight: normal !important;
    color: #333 !important;
}
.news_tit_unit {
	text-align: center;
	width: 100%;
    margin-top: 120px !important;
}

@media (min-width: 769px) {
	.news_box {
		margin: 0 auto;
		width: 970px;
	}
	.news_box p {
		font-size: 2.5rem;
	}
	.news_box dl {
	    padding: 1.6rem 0;
	}
	.news_box dt {
		padding: 0 0;
	    font-size: 1.6rem;
	    clear: left;
	    float: left;
	    width: 13%;
	}
	.news_box dd {
		padding: 0 0;
	    margin-left: 13%;
        line-height: 2.0rem;
	}
	.news_all {
		margin-top: 1.5rem;
		font-size: 1.6rem;
	}
	.news_tit {
	    font-size: 2.8em !important;
	}
}

/*////////////////////////////////////////////////////////////////////////
//   Users_scene
///////////////////////////////////////////////////////////////////////*/
.users_unit {
	margin: 2.5rem 0;
}
.scene_tit {
	padding: 1.2rem 1.5rem;
    font-size: 1.8rem;
    line-height: 2.4rem;
	color: #fff;
	font-weight: 700;
	background-color: #55aac4;
}
ul.scene_box {
	list-style: none;
	background-color: #fff;
}
.scene_box li {
	box-sizing: border-box;
 	display: flex;
	flex-direction: column;
}

.scene_detail p {
	margin: 0 1.5rem 1rem;
}
.before {
	padding: 1.0rem 1.2rem 0.5rem;
	font-size: 3.0rem;
	color: #55aac4;
}
.after {
	padding: 0rem 1.2rem 0.5rem;
	font-size: 3.0rem;
	color: #ff9d02;
}
.scene_box ul li {
	margin: 0 1.2rem 1rem;
	list-style-type: none;
}
.scene_img {
	margin: 0 0 1rem;
}
.img_end_sp {
	margin: 0 0 3rem;
}
.scene_box li.arrow_down {
    /*margin: 1.0rem auto 0;
    text-align: center;*/
}
.scene_box li.arrow_down img {
    margin: 0 auto;
}
.scene_box li.arrow_right {
	display: none;
}

@media (min-width: 769px) {
	.users_unit {
		margin: 4.5rem 0;
	}
	.scene_tit {
		padding: 1.5rem 0;
	    font-size: 2.2rem;
	    line-height: 2.4rem;
	    text-align: center;
	}
	ul.scene_box {
		display: flex;
		display: -webkit-flex;
	}
	.scene_box li {
		box-sizing: border-box;
	 	display: flex;
		flex-direction: column;
		justify-content: space-between;
		display: -webkit-flex;
		-webkit-flex-direction: column;
		-webkit-justify-content: space-between;
	}

	.scene_box li.scene_l {
	    margin: 0 0 1.5rem 0.5rem;
	    width: 47%;
	}
	.scene_box li.scene_r {
		margin: 0 0.5rem 1.5rem 0;
		width: 47%;
	}
	.scene_detail p {
		margin: 0 1.5rem 1rem;
	}
	.before {
		font-size: 4.0rem;
	}
	.after {
		padding: 1.0rem 1.2rem 0.5rem;
		font-size: 4.1rem;
		text-align: right;
	}
	.scene_img {
		margin: 0 0;
	}
	.scene_box li.arrow_down {
	    display: none;
	}
	.scene_box li.arrow_right {
	    text-align: center;
	    width: 6%;
	    float: left;
	    display: block;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}
}


/*////////////////////////////////////////////////////////////////////////
//   Plan
///////////////////////////////////////////////////////////////////////*/

.plan_unit {
	margin: 0 auto;
	width: 100%;
}
.flexitem {
    margin: 2rem 0;
	width: 100%;
	text-align: center;
	border: #999 1px solid;
}
.plan_detail {
	margin: 1.5rem;
    font-size: 1.4rem;
	text-align: left;
}
.plan_remark {
	margin: 0 0 1.5rem;
}
.plan_line {
	margin: 0 0 1.5rem;
	padding: 1.0rem 0;
	background-color: #eee;
}
.plan {
	margin: 0 0;
	padding: 1.5rem 0;
	color: #fff;
	line-height: 2.4rem;
}
.plan_tit {
	font-size: 2.4rem;
	font-weight: 700;
}
.plan_kakaku {
	margin: 1.8rem 0 0;
    font-size: 1.6rem;
}
.plan_kakaku li {
	padding: 0 0 5px 0;
    list-style-type: none;
}
.kakaku_l {
	font-size: 2.4rem;
}
.kakaku_s {
	font-size: 1.4rem;
}
.kakaku_bld {
	font-size: 2.0rem;
	font-weight: 700;
}
.br_pc {
	display: none;
}
.br_sp {
	display: block;
}
.bg1 {
	background: #41ac5d;
}
.bg2 {
	background: #07a893;
}
.bg3 {
	background: #0187ad;
}
.bg4 {
	background: #015ead;
}
.bg5 {
	background: #1a40ac;
}
.plan_link a {
	margin: 2rem auto 1.5rem;
    text-decoration: none;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    padding: 15px 0;
    display: block;
    width: 85%;
}

@media (min-width: 992px) {
	.plan_unit {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.flexitem {
    	margin: 2rem 6px;
	}
	.plan_detail {
		margin: 1.5rem 0.7rem;
	    height: 83px;
	}
.plan_remark {
	height: 125px;
}
	.plan {
		font-size: 1.8rem;
		height: 185px;
	}
	.plan_tit {
		font-size: 1.8rem;
	}
	.plan_kakaku {
	    font-size: 1.4rem;
	}
	.kakaku_bld {
		font-size: 1.6rem;
	}
	.br_pc {
		display: block;
	}
	.br_sp {
		display: none;
	}

}
/*////////////////////////////////////////////////////////////////////////
//   20200806追記
///////////////////////////////////////////////////////////////////////*/
.column_bg {
	background-color: #d2f4ff;
}
/*////////////////////////////////////////////////////////////////////////
//   KAITOカメラ用_20190909
///////////////////////////////////////////////////////////////////////*/

[id*="KAITO-"] .title {
	margin: 0;
	text-align: center;
}

[id*="KAITO-"] .br {
	display: none;
}

[id*="KAITO-"] {
	overflow: hidden;
}

[id*="KAITO-"] [class*="btn_"] {
	margin: 0;
}

[id*="KAITO-"] [class*="btn_"] a {
	margin: 0;
}

[id*="KAITO-"] .header {
	height: 59px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 500;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	transition: all .5s;
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	justify-content: space-between;
}

[id*="KAITO-"] .header-logo {
	width: 100px;
	margin: 10px 0 0 25px;
}

[id*="KAITO-"] .header-nav {
	-webkit-align-self: center;
	align-self: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	justify-content: flex-end;
}

[id*="KAITO-"] .header-nav-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	list-style: none;
}

[id*="KAITO-"] .header-nav-list li {
	-webkit-align-self: center;
	align-self: center;
	margin: -5px 0 0 0;
	white-space: nowrap;
}

[id*="KAITO-"] .header-nav-list li a {
	padding: 0 12px;
}

[id*="KAITO-"] .header-nav-list li:not(:last-child) a {
	border-right: solid 1px #ccc;
}

[id*="KAITO-"] .header-nav-list a {
	color: #333;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
}

[id*="KAITO-"] .header-nav [class*="btn_"] {
	background: #ff9d02;
	display: inline-block;
	-o-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
	white-space: nowrap;
}

[id*="KAITO-"] .header-nav [class*="btn_"]:hover {
	background: #ffdfab;
}

[id*="KAITO-"] .btn_trail a:hover {
	color: #fff;
	text-decoration: none;
}

[id*="KAITO-"] .header-nav [class*="btn_"] a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	width: 125px;
	height: 59px;
	display: table-cell;
	vertical-align: middle;
}

[id*="KAITO-"] .header-nav [class*="btn_"] i {
	font-size: 16px;
}

[id*="KAITO-"] .header-nav [class*="btn_"]+[class*="btn_"] {
	margin: 0 0 0 1px;
}

[id*="KAITO-"] .visual {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
	position: relative;
}

#KAITO-camera .visual {
	background-image: url(../images/camera_bg.jpg);
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 100% 30%;
}

#KAITO-browser .visual {
	background-image: url(../images/browser_bg.jpg);
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 100% 30%;
}

[id*="KAITO-"] .visual-inner {
	width: 100%;
}

#KAITO-camera .visual-inner {
	padding: 89px 89px 55px 89px;
}

#KAITO-browser .visual-inner {
	padding: 233px 89px 55px 89px;
}

[id*="KAITO-"] .visual-title {
	color: #0071BD;
	font-size: 3.6vw;
	font-weight: bold;
	line-height: 1.2;
	margin: 0 0 13px 0;
}

[id*="KAITO-"] .visual-title02 {
	color: #0071BD;
	font-size: 3.6vw;
	font-weight: bold;
	line-height: 1.2;
	margin: 0 0 13px 0;
}

[id*="KAITO-"] .visual-title img {
	width: 9vw;
	vertical-align: middle;
}

[id*="KAITO-"] .visual-title02 img {
	width: 9vw;
	vertical-align: middle;
}

[id*="KAITO-"] .visual-subtitle {
	font-size: 1.1vw;
	font-weight: bold;
	margin: 0;
}

[id*="KAITO-"] .visual-subtitle span {
	font-size: 1.4vw;
	color: #8a6d3b;
}

[id*="KAITO-"] .visual-lead {
	font-weight: bold;
	font-size: 1.6vw;
	line-height: 1.6;
	margin: 0;
}

[id*="KAITO-"] .visual-lead02 {
	font-weight: bold;
	font-size: 1.4vw;
	line-height: 1.6;
	margin: 0;
}

[id*="KAITO-"] .visual .img_license {
	width: 10vw;
	top: 12%;
	margin: 0 0 20px 0;
}

[id*="KAITO-"] .visual .img_price {
	margin: 0;
}

[id*="KAITO-"] .visual .img_price img {
	width: 80%;
}

[id*="KAITO-"] .visual-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	align-items: center;
}

#KAITO-camera .visual-wrap {
	margin: 21px 0 0 -34px;
}

#KAITO-browser .visual-wrap {
	margin: 55px 0 0 0;
}

[id*="KAITO-"] .btn_wrap {
	width: 33%;
}

[id*="KAITO-"] .visual [class*="btn_"]+[class*="btn_"] {
	margin: 20px 0 0 0;
}

[id*="KAITO-"] .visual [class*="btn_"] a {
	-o-transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
}

[id*="KAITO-"] .visual [class*="btn_"] a:hover {
	background: #ffdfab;
}

[id*="KAITO-"] .content-block:nth-child(even) {
	background-color: #d2f4ff;
}

[id*="KAITO-"] #about .block-heading {
	text-align: center;
}

[id*="KAITO-"] #about .block-item {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	align-items: center;
	padding: 0 20px;
	margin-bottom: 20px;
	background-color: #FFF;
	border: 1px solid #e3e3e3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

[id*="KAITO-"] #about .block-item__flag {
	width: 134px;
	height: 134px;
	display: block;
}

[id*="KAITO-"] #about .block-item-wrap {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 0%;
	-moz-box-flex: 1;
	flex: 1 0 0%;
	width: 100%;
}

[id*="KAITO-"] #about .block-item__title {
	font-weight: bold;
}

[id*="KAITO-"] #about .block-item-list {
	padding: 0 0 0 55px;
}

[id*="KAITO-"] #about .block-item-list li {
	font-size: 16px;
}

[id*="KAITO-"] #about .block-item-list li+li {
	margin: 8px 0 0 0;
}

[id*="KAITO-"] #about .block-item__img {
	width: 253px;
}

[id*="KAITO-"] #about .link {
	text-align: right;
}

[id*="KAITO-"] #price .flexitem {
	background-color: #FFF;
	border: 1px solid #e3e3e3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

[id*="KAITO-"] #scene .link {
	text-align: right;
	margin: 0;
}

[id*="KAITO-"] #series .wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
}

[id*="KAITO-"] #series .block-heading .title {
	font-size: 24px;
	text-align: center;
	margin: 0 0 21px 0;
}

[id*="KAITO-"] #series [class*="btn_"]+[class*="btn_"] {
	margin: 0 0 0 21px;
}

[id*="KAITO-"] #series [class*="btn_"] {
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	padding: 34px 34px 34px 89px;
	color: #0071BD;
	display: block;
	text-align: center;
	-o-transition: background-color .4s;
	-moz-transition: background-color .4s;
	-webkit-transition: background-color .4s;
	transition: background-color .4s;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #0071BD;
	background-position: 3% bottom;
	-moz-background-size: 25%;
	-o-background-size: 25%;
	background-size: 25%;
	background-repeat: no-repeat;
}

[id*="KAITO-"] #series .btn_camera {
	background-image: url(../images/top_figure_camera_i.png);
}

[id*="KAITO-"] #series .btn_browser {
	background-image: url(../images/top_figure_browser_i.png);
}

[id*="KAITO-"] #series .btn_recorder {
	background-image: url(../images/top_figure_recorder_i.png);
}

[id*="KAITO-"] #series [class*="btn_"]:hover {
	background-color: #0071BD;
	color: #FFF;
}

[id*="KAITO-"] #contact .block-lead {
	text-align: center;
}

[id*="KAITO-"] #contact .block-body {
	margin: 13px 0 0 0;
}

[id*="KAITO-"] #contact .wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center;
	width: 80%;
	margin: 0 auto;
}

[id*="KAITO-"] #contact .btn {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 0%;
	-moz-box-flex: 1;
	flex: 1 0 0%;
}

[id*="KAITO-"] #contact .btn+.btn {
	margin: 0 0 0 21px;
}

[id*="KAITO-"] #copyright {
	text-align: right;
}

@media screen and (max-width: 1199px) {
	[id*="KAITO-"] .header-nav-list li a {
		padding: 0 8px;
	}

	[id*="KAITO-"] .header-nav [class*="btn_"] a {
		font-size: 13px;
		width: 110px;
	}

	[id*="KAITO-"] #about .block-item-list {
		padding: 0 0 0 55px;
	}
}

@media screen and (max-width: 991px) {
	[id*="KAITO-"] .header {
		height: 53px;
	}

	[id*="KAITO-"] .header-nav-list li a {
		padding: 0 3px;
		font-size: 12px;
	}

	[id*="KAITO-"] .header-nav [class*="btn_"] a {
		font-size: 12px;
		height: 53px;
	}

	[id*="KAITO-"] #contact .wrap {
		display: block;
		width: 100%;
	}

	[id*="KAITO-"] #contact .btn+.btn {
		margin: 13px 0 0 0;
	}
}

@media screen and (max-width: 767px) {
	[id*="KAITO-"] .br {
		display: block;
	}

	[id*="KAITO-"] .visual-inner {
		position: relative;
		background-color: rgba(255, 255, 255, 0.6);
	}

	#KAITO-camera .visual-inner {
		margin: 53px 0 0 0;
		padding: 55px 21px;
	}

	[id*="KAITO-"] .visual {
		background-image: url(../images/camera_bg_s.jpg);
		background-position: 0 0;
	}

	[id*="KAITO-"] .visual-title {
		font-size: 8vw;
		line-height: 1.2;
		text-align: center;
		margin: 13px 0 21px 0;
	}

	[id*="KAITO-"] .visual-title02 {
		font-size: 8vw;
		line-height: 1.2;
		text-align: center;
		margin: 13px 0 21px 0;
	}

	[id*="KAITO-"] .visual-title img {
		position: absolute;
		top: 10%;
		left: 0;
		right: 0;
		margin: auto;
		width: 120px;
	}

	[id*="KAITO-"] .visual-title02 img {
		position: absolute;
		top: 5%;
		left: 0;
		right: 0;
		margin: auto;
		width: 120px;
	}

	[id*="KAITO-"] .visual-subtitle {
		font-size: 4vw;
		margin: 60px 0 0 0;
		text-align: center;
	}

	[id*="KAITO-"] .visual-subtitle span {
		font-size: 5vw;
	}

	[id*="KAITO-"] .visual-lead {
		font-size: 4vw;
		text-align: center;
		margin: 0 0 21px 0;
	}

	[id*="KAITO-"] .visual-lead02 {
		font-size: 4vw;
		text-align: left;
		margin: 0 0 5px 0;
	}

	[id*="KAITO-"] .visual .img_license {
		display: none;
	}

	[id*="KAITO-"] .visual .img_price {
		display: none;
	}

	[id*="KAITO-"] .visual-wrap {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		justify-content: center;
	}

	#KAITO-camera .visual-wrap {
		margin: 0;
	}

	[id*="KAITO-"] .btn_wrap {
		width: 100%;
	}

	[id*="KAITO-"] .visual [class*="btn_"] a {
		font-size: 14px;
		padding: 15px;
		margin: 0 auto;
		width: 100%;
	}

	[id*="KAITO-"] #about .block-item-wrap {
		margin: 0;
		-webkit-flex-basis: auto;
		flex-basis: auto;
	}

	[id*="KAITO-"] #about .block-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		flex-direction: column;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		justify-content: center;
	}

	[id*="KAITO-"] #about .block-item__flag {
		width: 30%;
		height: 30%;
		margin: 21px auto;
	}

	[id*="KAITO-"] #about .block-item-list {
		padding: 0 0 0 34px;
	}

	[id*="KAITO-"] #about .block-item-list li {
		font-size: 16px;
	}

	[id*="KAITO-"] #about .block-item__title {
		text-align: center;
	}

	[id*="KAITO-"] #parallax2 .add-flex-wrap a {
		-webkit-box-flex: 1;
		-webkit-flex: auto;
		-moz-box-flex: 1;
		flex: auto;
	}

	[id*="KAITO-"] #series .wrap {
		display: block;
	}

	[id*="KAITO-"] #series [class*="btn_"] {
		font-size: 14px;
		padding: 21px 8px;
		background-position: 5% bottom;
		-moz-background-size: 60px;
		-o-background-size: 60px;
		background-size: 60px;
	}

	[id*="KAITO-"] #series [class*="btn_"]+[class*="btn_"] {
		margin: 21px 0 0 0;
	}

	[id*="KAITO-"] #copyright {
		text-align: center;
	}
}

/*////////////////////////////////////////////////////////////////////////
//   KAITOテレワーク用_20200806 追記
///////////////////////////////////////////////////////////////////////*/
.column_bg {
	background-color: #d2f4ff;
}
.entrust_pack{
	padding: 10px;
	margin-bottom: 10px;
	border: 2px solid #0B217C;
}

/* 20200806 資料請求ボタン追加=================================================== */
.mid-Button {
  display: flex;
  align-items: center;
}

.mid-Button ul {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.mid-Button ul li a {
  background: #fff;
  display: block;
  width: 350px;
  box-sizing: border-box;
  padding: 10px;
  text-decoration: none;
  border-radius: 40px;
  margin: 0 30px;
  font-weight: bold;
  text-align: center;
}

.mid-Button ul li a span {
  background: url("../images/ico_tel.png") no-repeat 0 center;
  padding: 3px 0 4px 40px;
}

.btn01 {
	list-style: none;
}

.btn02 {
	list-style: none;
}

.mid-Button .btn01 a {
  background: #fff url("../images/arrow_04.png") no-repeat 95% center;
  font-size: 24px;
  border: 1.5px solid #23b3d3;
  color: #23b3d3;
}

.mid-Button .btn01 a span {
  background: url("../images/ico_fdocument_blue.png") no-repeat 0 center;
}

.mid-Button .btn01 a:hover {
  color: #fff;
  background: #d3d3d3;
  border-color: #fff;
}

.mid-Button .btn01 a:hover span {
  background: url("../images/ico_fdocument.png") no-repeat 0 center;
}

.mid-Button .btn02 a {
  background: #23b3d3 url("../images/arrow_01.png") no-repeat 95% center;
  font-size: 24px;
  border: 1.5px solid #23b3d3;
  color: #fff;
}

.mid-Button .btn02 a span {
  background: url("../images/ico_fmail.png") no-repeat 0 center;
}

.mid-Button .btn02 a:hover {
  color: #fff;
  background: #d3d3d3;
  border-color: #fff;
}

@media (max-width: 875px) and (min-width: 769px) {
  .bg-white .sec01-inr .container .mid-Button {
    padding: 0!important;
  }
  .mid-Button ul li a {
    display: block;
    width: 320px;
  }
}

@media (max-width: 768px) {
  .bg-white .sec01-inr .container .mid-Button {
    padding: 0 15px;
    display: block;
    text-align: center;
  }
  .mid-Button ul {
    flex-direction: column;
    padding-top: 40px;
  }
  .mid-Button ul li {
    padding: 0 15px 20px 15px;
  }
  .mid-Button ul li a {
    margin: 0;
    padding: 20px;
    font-size: 18px!important;
  }
  .mid-Button .btn01 a span {
  background: url("../images/ico_fdocument_blue_27px.png") no-repeat 0 center;
  }
  .mid-Button .btn01 a:hover span {
    background: url("../images/ico_fdocument_27px.png") no-repeat 0 center;
  }
  .mid-Button ul li a {
  background: #fff;
  display: block;
  width: 280px;
  box-sizing: border-box;
  padding: 10px;
  text-decoration: none;
  border-radius: 40px;
  margin: 0 30px;
  font-weight: bold;
  text-align: center;
}
}
.img-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flexbox{
　　display:-webkit-box;
　　display: -webkit-flex;
　　display:-ms-flexbox;
　　display: flex;
　　-webkit-flex-wrap:wrap;
　　-ms-flex-wrap:wrap;
　　flex-wrap:wrap;
}
@media screen and (min-width: 769px) {
	.box{
 		display: flex;
	}
}

@media screen and (max-width: 768px) {
	.box{
		display: flex;
		flex-direction: column;
	}
	.order1 {
		order: 1;
	}
	.order2 {
		order: 2;
	}
	.order3 {
		order: 3;
	}
	.order4 {
		order: 4;
	}
	.order5 {
		order: 5;
	}
	.order6 {
		order: 6;
	}
	.margins-bottom-30 {
		margin-bottom: 30px;
	}
}

.block_center {
	display: flex;
	justify-content: center;
	align-items: center;
}
hr {
	margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}
.topic {
	border-color: #0A207C;
    border-width: 3px;
    max-width: 20%;
    margin-bottom: 40px;
}
.bold {
	font-weight: bold;
}
.marker-animation.active{
    background-position: -100% 1.4em;
    font-size: 2.1rem;
}
.marker-animation {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
    font-weight: bold;
}
.marker-animation2.active{
	display: inline;
    background-position: -100% 0.5em;
    font-size: 2.1rem;
}
.marker-animation2 {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
	.marker-animation.active{
		display: inline;
    	background-position: -100% 1.4em;
    	font-size: 2.1rem;
	}
	.marker-animation2.active{
		display: inline;
    	background-position: -100% 0.4em;
    	font-size: 2.1rem;
	}
}
.supplement {
	font-size: 12px;
}

.position {
	position: absolute;
	top: -20%;
	right: 5%;
}

.center_item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hov-opa img:hover {
	opacity: 0.9;
}