/**
* 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-color: #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;
}
#header .top .logo img {
	width: 100px;
}

#header .slogan h1 {
	color: #0071BD;
	font-size: 3.6vw;
	font-weight: bold;
	line-height: 1.2;
}
#header .slogan h1 strong {
	font-size: 0.4em;
	color: #555;
}
#header .slogan p {
	font-size: 1.1em;
	font-weight: bold;
	color: #333;
}
#header .slogan p span {
	font-size: 1.6em;
}
#header > .bottom {
	position: absolute;
	bottom: 100px;
	left: 0;
	text-align: center;
	width: 100%;
}

@media (max-width: 480px) {
	#header .slogan {
	    height: 100%;
	    padding-top: 30px;
	}
}

/* マウスボタンでスクロールを促す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);
	}
}

/*////////////////////////////////////////////////////////////////////////
//  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);
}
.browser-bg {
	background-image: url(../images/browser_bg.jpg);
}
.recorder-bg {
	background-image: url(../images/recorder_bg.jpg);
	height: 85vh !important;
}

.parallax h1,
.parallax h2,
.parallax h3 {
	color: #333;
}
@media print {
   #header,
   #contact,
   #parallax1,
   #parallax2,
   #parallax3 {
      background-color: #fff;
   }
}

/*////////////////////////////////////////////////////////////////////////
//  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: 0 0 30%;
	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);
}
@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%;
}

/* モバイル用表示 */
@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);
	}

	.bg-white-op {
		margin: 10px;
	}
	#header .slogan h1 {
		font-size: 1.65em;
		line-height: 1.2;
	}
	#header .slogan h1 strong {
		font-size: 0.7em;
	}
	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-top-80 {
	margin-top: 80px;
}
.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-20 {
	padding: 20px;
}
.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;
}

/* 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: -50px;
    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;
}
.text-gray {
	color: #4D5456;
}
.text-orange {
	color: #952F0F;
}
.text-muted {
	color: #333;
}
.text-green {
	color: #80c46b;
}

/* 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 {
    padding: 10px 10px 10px 10px !important;
}
.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;*/
}

/* 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;
}

/* サービス切り替えボタン 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;
}

--------------------------------------------------------------------
/*追加分*/
.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;
}

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

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

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



/* トライアルボタン 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: 88%;
}
.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: 88%;
}
.btn_download_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;
	}
}

@media (max-width: 460px) {
	.br-sp {
		display: none;
	}
}

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

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

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

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

.weight-bold {
	font-weight: bold;
	margin: 0 1.5rem;
}

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

@media (max-width: 460px) {
	.new-tag {
	color: red;
	font-size: 20px;
	}
}

@media (max-width: 320px) {
	.new-tag {
	color: red;
	font-size: 15px;
	}
}
@media (min-width: 769px) {
	.weight-bold {
		margin: 0 0;
	}
}
.decoration-none:hover {
	text-decoration: none;
}


/*////////////////////////////////////////////////////////////////////////
//   News
///////////////////////////////////////////////////////////////////////*/
.news_bg {
	background-color: #fff;
}
.news_box {
	margin: 0 auto;
	color: #333;
	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: #333;
    font-weight: 700;
}
.news_all {
	margin-top: 1rem;
	font-size: 1.4rem;
	text-align: right;
}
.news_all a {
	color: #333;
}

@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;
	}
}

/*////////////////////////////////////////////////////////////////////////
//   Users_scene
///////////////////////////////////////////////////////////////////////*/
.users_bg {
	background-color: #d2f4ff;
}
.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 1.5rem;
	    height: 65px;
	}
.plan_remark {
	height: 105px;
}
	.plan {
		font-size: 1.8rem;
		height: 165px;
	}
	.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;
	}
}

.col-sm-4_2 {
	float: none;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 768px) {
	.col-sm-4_2 {
	    width: 50%;
        float: left;
	}
}

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

.pa-200 {
	position: absolute;
	top: 140%;
}
