/* メニューボタンに指カーソル */
label{
cursor: pointer
&:focus
outline: none
}

/*（コンテンツ）チェックボックス等は非表示に*/
.nav-unshown {
display:none;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-icon {
 cursor: pointer;
 display: inline-block;
 height: 50px;
 position: relative;
 width: 50px;
}
#nav-icon span {
-webkit-transform: rotate(0);
 background: gray;
 border-radius: 4px;
 content: "";
 display: block;
 height: 16%;
 left: 50%;
 margin: -8% 0 0 -42%;
 position: absolute;
 top: 50%;
 transform: rotate(0);
 transition: all 0.3s ease-in-out 0s;
 width: 84%;
}
.span_menu{
 font: 1pt;
 color: black;
 bottom: 0;
 margin: 50% 0 0 0%;
 text-align: center;
}
#nav-icon span::before, #nav-icon span::after {
-webkit-transform: rotate(0);
 background: gray;
 border-radius: 4px;
 content: "";
 display: block;
 height: 100%;
 left: 50%;
 margin: -8% 0 0 -50%;
 position: absolute;
 top: 50%;
 transform: rotate(0);
 transition: all 0.3s ease-in-out;
 width: 100%;
}

/*メニューボタンの上と下のバー位置調整*/
#nav-icon span:before {
 margin-top: -38%;
}
#nav-icon span:after {
 margin-top: 19%;
}

/*閉じる用の薄黒カバー*/
#nav-close {
 display: none;/*はじめは隠しておく*/
 position: fixed;
 z-index: 99;
 top: 0;/*全体に広がるように*/
 left: 0;
 width: 100%;
 height: 100%;
 background: black;
 opacity: 0.3;
 transition: all 0.3s ease-in-out;
}

/*中身*/
#nav-content {
 overflow: auto;
 position: fixed;
 top: 80px;
 left: 0;
 z-index: 9999;/*最前面に*/
 width: 60%;/*右側に隙間を作る（閉じるカバーを表示）*/
 max-width: 100%;/*最大幅（調整してください）*/
 height: 80%;
 background: #fff;/*背景色*/
 transition: .3s ease-in-out;/*滑らかに表示*/
 -webkit-transform: translateX(-105%);
 transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-icon span {
 left: 50%;
 opacity: 0;
 -webkit-animation: active-menu-bar02 .8s forwards;
 animation: active-menu-bar02 .8s forwards;
}
#nav-input:checked ~#nav-icon span::before{
 -webkit-transform: translateY(12px) rotate(-45deg);
	 transform: translateY(12px) rotate(-45deg);
}
#nav-input:checked ~#nav-icon span::after{
 -webkit-transform: translateY(-12px) rotate(45deg);
	 transform: translateY(-12px) rotate(45deg);
}

#nav-input:checked ~ #nav-close {
 display: block;/*カバーを表示*/
 pointer-events: auto;
 background-color: rgba(0,0,0,.3)
 opacity: .5;
}
#nav-input:checked ~ #nav-content {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*中身を表示（右へスライド）*/
 box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/*多階層*/
.nav-content1{
position: relative;
 left: 2%;  
 width: 100%;
 height: 50px;
 max-width: 1000px;
 margin: 0 auto;
}
.nav-content1 > li {
 float: left;
 width: 100%;
 height: 50px;
 line-height: 50px;
 background: white;
}
.nav-content1 > li a {
 display: block;
 color: black;
}
.nav-content1 > li a:hover {
 color: black;
}

ul.nav-content2{
 visibility: hidden;
 opacity: 0;
 z-index: 1;
}
ul.nav-content3{
 visibility: hidden;
 opacity: 0;
}
.nav-content1 > li:hover{
 background: skyblue;
 -webkit-transition: all .5s;
	 transition: all .5s;
}
.nav-content2 > li a:hover{
background: skyblue;
}
.nav-content3 > li a:hover{
background: skyblue;
}
.nav-content4 > li a:hover{
background: skyblue;
}
/* 下矢印 */
.init-bottom:after {
 content: '';
 display: inline-block;
 width: 6px;
 height: 6px;
 margin: 0 0 0 15px;
 border-right: 1px solid black;
 border-bottom: 1px solid black;
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 transform: rotate(45deg);
}
/* 右矢印 */
.init-right:after {
 content: '';
 display: inline-block;
 width: 6px;
 height: 6px;
 margin: 0 0 0 15px;
 border-right: 1px solid black;
 border-top: 1px solid black;
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 transform: rotate(45deg);
}
/* floatクリア */
.nav-content1:before,
.nav-content1:after {
 content: "";
 display: table;
}
.nav-content1:after {
 clear: both;
}
.nav-content1 {
 *zoom: 1;
}
/* 多階層専用 */
.nav-content1 > li.menu__multi {
 position: relative;
}

li.menu__multi ul.nav-content2 {
 position: absolute;
 top: 0px;
 left: 25%;
 width: 100%;
 background: white;
 -webkit-transition: all .2s ease;
 transition: all .2s ease;
}

li.menu__multi:hover ul.nav-content2 {
 background: #F2F2F2;
 visibility: visible;
 opacity: 1;
}

li.menu__multi ul.nav-content2 li {
 position: relative;
}

li.menu__multi ul.nav-content2 li:hover {
 background: skyblue;
}

li.menu__multi ul.nav-content2 li ul.nav-content3 {
 position: absolute;
 top: -1px;
 left: 100%;
 width: 100%;
 background: #111;
 -webkit-transition: all .2s ease;
 transition: all .2s ease;
}

li.menu__multi ul.nav-content2 li:hover ul.nav-content3 {
 visibility: visible;
 opacity: 1;
}

li.menu__multi ul.nav-content2 li ul.nav-content3 li {
 position: relative;
}

li.menu__multi ul.nav-content2 li ul.nav-content3 li:hover {
 background: skyblue;
}
li.menu__multi ul.nav-content2 li ul.nav-content3 li ul.nav-content4 {
 position: absolute;
 top: -1px;
 left: 100%;
 width: 100%;
 background: #2a1f1f;
 -webkit-transition: all .2s ease;
 transition: all .2s ease;
}
li.menu__multi ul.nav-content2 li ul.nav-content3 li:hover ul.nav-content4 {
 visibility: visible;
 opacity: 1;
}

/* headerに並んでるボタン */
.nav-list{
text-align: center;
padding: 10px;
}
.nav-list ul{
margin: 0;
padding: 0;
}
.nav-list ul li{
list-style: none;
display: inline-block;
width: 15%;
/* min-width: 150px;*/
}
.nav-list li{
border-right:2px solid #ddd;
}
.nav-list ul li a{
text-decoration: none;
color: #333;
font-weight: bold;
}
.nav-list ul li.current a{
color: #F33135;
}
.nav-list ul li a:hover{
color: #E7DA66;
}

/* スライダー用CSS */
/* 表示画面 */
#stage {
	position: relative;
	max-width: 600px;
	margin: 1% 0 0 20%;
	overflow: hidden;
}
/*全ての写真を水平一列に格納したdiv、#photosに,
スライドショーの animation を設定*/
#photos {
	position:absolute;
	top:0;
	width:100%;
	animation: imgPassToLeft0 30s infinite;
	-webkit-animation: imgPassToLeft0 30s infinite;
}
/*各写真の並び位置を設定
#photo1, #photo2, #photo3, #photo4, #photo5 */
#photo0 { left:  0%; }
#photo1 { left:100%; } 
#photo2 { left:200%; }
#photo3 { left:300%; }
#photo4 { left:400%; }
#photo5 { left:500%; }
#photo6 { left:600%; }
.pic { position:absolute;top:0;width:100%; }
/*写真サイズを可変に*/
.pic img { width:100%; }

/* 全てのラジオボタンを非表示に */
#back1,#back2,#back3,#back4,#back5,#next1,#next2,#next3,#next4,#next5{
	display: none;
}
/*送りボタン文字（＜、＞）の設定*/
.b_left span, .b_right span {
	position: absolute;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 40px;
	font-weight: bold;
	opacity:0;
	top: 40%;
	color:#EEE;
}
.b_left span {
	left: 5%;;	
}
.b_right span {
	left: 85%;
}
/*ボタン文字hover時の設定*/
.pic:hover > label div span {
	opacity:1;
	color:#EEE;
}
.pic label div span:hover {
	color:#f00;
	cursor:pointer;
}
/* 各送りボタンクリック時のanimation設定 */
#next1:checked ~ #photos {
	animation: imgPassToLeft1 30s infinite;	
	animation-delay: -4.8s;
	-webkit-animation: imgPassToLeft1 30s infinite;	
	-webkit-animation-delay: -4.8s;
}
#next2:checked ~ #photos {
	animation: imgPassToLeft2 30s infinite;
	animation-delay: -10.8s;
	-webkit-animation: imgPassToLeft2 30s infinite;
	-webkit-animation-delay: -10.8s;
}
#next3:checked ~ #photos {
	animation: imgPassToLeft3 30s infinite;
	animation-delay: -16.8s;
	-webkit-animation: imgPassToLeft3 30s infinite;
	-webkit-animation-delay: -16.8s;
}
#next4:checked ~ #photos {
	animation: imgPassToLeft4 30s infinite;
	animation-delay: -22.8s;
	-webkit-animation: imgPassToLeft4 30s infinite;
	-webkit-animation-delay: -22.8s;
}
#next5:checked ~ #photos {
	animation: imgPassToLeft5 30s infinite;
	animation-delay: -28.8s;
	-webkit-animation: imgPassToLeft5 30s infinite;
	-webkit-animation-delay: -28.8s;
}
#back1:checked ~ #photos {
	animation: imgPassToRight1 30s infinite;
	animation-delay: -28.8s;
	-webkit-animation: imgPassToRight1 30s infinite;
	-webkit-animation-delay: -28.8s;
}
#back2:checked ~ #photos {
	animation: imgPassToRight2 30s infinite;
	animation-delay: -22.8s;
	-webkit-animation: imgPassToRight2 30s infinite;
	-webkit-animation-delay: -22.8s;
}
#back3:checked ~ #photos {
	animation: imgPassToRight3 30s infinite;
	animation-delay: -16.8s;
	-webkit-animation: imgPassToRight3 30s infinite;
	-webkit-animation-delay: -16.8s;
}
#back4:checked ~ #photos {
	animation: imgPassToRight4 30s infinite;
	animation-delay: -10.8s;
	-webkit-animation: imgPassToRight4 30s infinite;
	-webkit-animation-delay: -10.8s;
}
#back5:checked ~ #photos {
	animation: imgPassToRight5 30s infinite;
	animation-delay: -4.8s;
	-webkit-animation: imgPassToRight5 30s infinite;
	-webkit-animation-delay: -4.8s;
}
/* animation設定 */
@keyframes imgPassToLeft0 {
	0%  { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@keyframes imgPassToLeft1 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@keyframes imgPassToLeft2 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@keyframes imgPassToLeft3 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@keyframes imgPassToLeft4 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@keyframes imgPassToLeft5 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@keyframes imgPassToRight1 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@keyframes imgPassToRight2 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@keyframes imgPassToRight3 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@keyframes imgPassToRight4 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@keyframes imgPassToRight5 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@-webkit-keyframes imgPassToLeft0 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@-webkit-keyframes imgPassToLeft1 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@-webkit-keyframes imgPassToLeft2 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@-webkit-keyframes imgPassToLeft3 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@-webkit-keyframes imgPassToLeft4 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@-webkit-keyframes imgPassToLeft5 {
	0% { left:-100%; }
	16% { left:-100%; }
	20% { left:-200%; }
	36% { left:-200%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-400%; }
	76% { left:-400%; }
	80% { left:-500%; }
	96% { left:-500%; }
	100% { left:-600%; }
}
@-webkit-keyframes imgPassToRight1 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@-webkit-keyframes imgPassToRight2 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@-webkit-keyframes imgPassToRight3 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@-webkit-keyframes imgPassToRight4 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}
@-webkit-keyframes imgPassToRight5 {
	0% { left:-500%; }
	16% { left:-500%; }
	20% { left:-400%; }
	36% { left:-400%; }
	40% { left:-300%; }
	56% { left:-300%; }
	60% { left:-200%; }
	76% { left:-200%; }
	80% { left:-100%; }
	96% { left:-100%; }
	100% { left:0%; }
}

/* 事例集のテーブル */
table.jirei{
  margin:0 auto;
  border-radius:10px;
  -webkit-border-radius:10px;
  -moz-border-radius:10px;
  border:1px solid #666;
  border-spacing: 0;
  overflow:hidden;
}
table.jirei td,th{
  border-bottom:1px solid #666;
}
table.jirei td,th{
  padding:10px;
}
table.jirei th{
  background:#EFEFEF;
}
table.jirei tbody tr:last-child th,
table.jirei tbody tr:last-child td{
  border-bottom: none;
}
table.jirei th + th,td{
  border-left:1px solid #666;
}
.photo_jirei0 {
	text-align: center;
}
img.photo_jirei {
	width:50%;
	height:50%;
}
img.photo_jirei3 {
	width:40%;
	height:40%;
}
img.photo_jirei4 {
	width:60%;
	height:60%;
}
img.photo_jirei5 {
	width:20%;
	height:20%;
}

/* メリットのテーブル */
table.meritopen{
      border: none;
}
table.meritopen tr{
      border: none;
}
table.meritopen td{
      border: none;
}
.meritbox{
    position: relative;
    margin: 1em 0;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
    float: left;
    width: 90%;
}
.meritbox .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.meritbox p {
    margin: 0; 
    padding: 0;
}

/* マニュアルのテーブル */
table.manual_format{
      border: none;
      text-align:center;
}
table.manual_format td:nth-child(1){
  width: 23%;
}
table.manual_format td:nth-child(2){
  width: 23%;
}
table.manual_format td:nth-child(3){
  width: 23%;
}
table.manual_format td:nth-child(4){
  width: 31%;
}
table.manual_format tr{
      border: none;
}
table.manual_format td{
      border: none;
}
#photo_manual {
	text-align:center;
	width:20%;
	height:35%;
}
img.photo_manual1{
 width: 70%;
 height: 70%;
}
img.photo_manual2{
 width: 100%;
 height: 100%;
}

/* 支援窓口のテーブル */
table.support_window{
      border: none;
      text-align:center;
      valign:middle;
}
table.support_window tr{
      border: none;
      valign:middle;
}
table.support_window td:nth-child(1){
      border: none;
      valign:middle;
}
table.support_window td:nth-child(2){
      border: none;
      valign:middle;
}
table.support_window td:nth-child(3){
      border: none;
      valign:middle;
}
table.support_window td:nth-child(4){
      border: none;
      valign:middle;
}

/* 支援窓口の色 */
.support_window1{
background: -webkit-linear-gradient(top,  #FFF 0%,#79CEED 50%,#FFF 100%); 
background: linear-gradient(to bottom,  #FFF 0%,#79CEED 50%,#FFF 100%);
}
.support_window2{
background: -webkit-linear-gradient(top,  #FFF 0%,#C5E7F1 50%,#FFF 100%); 
background: linear-gradient(to bottom,  #FFF 0%,#C5E7F1 50%,#FFF 100%);
}
.support_window3{
background: -webkit-linear-gradient(top,  #FFF 0%,#BEF2E5 50%,#FFF 100%); 
background: linear-gradient(to bottom,  #FFF 0%,#BEF2E5 50%,#FFF 100%);
}
.support_window4{
background: -webkit-linear-gradient(top,  #FFF 0%,#60EFDB 50%,#FFF 100%); 
background: linear-gradient(to bottom,  #FFF 0%,#60EFDB 50%,#FFF 100%);
}

/* Q&Aのテーブル */
.qa_table{
      border: none;
      text-align:center;
}

