/*responsive css*/

body {
  font-family: Quicksand, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: black;
  font-size: 20px;
  margin: 0 auto; padding: 0;
  line-height: 180%;
  width:100%; height: 100%;
  -webkit-text-size-adjust: 100%;　 /*スマホを横にした時のフォントサイズ拡大防止*/
}

h1{
  font-size: 36px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  line-height: 120%;
}
h1:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 150px;
  height: 5px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #023894;
  border-radius: 2px;
}

h2{
  font-size: 36px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  line-height: 120%;
}
h2:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 150px;
  height: 5px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #023894;
  border-radius: 2px;
}

h3{
  margin: 8% 0 8% 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #023894;
}

h4{
  margin-bottom: 4%;
  padding: 1.5%;
  font-size: 28px;
  font-weight: bold;
  color: white;
  background-color: #023894;
  border-bottom: 4px solid orange;
}

h5, h6,{
  font-weight:bold;
  text-transform:uppercase;
}

a:link { text-decoration: none; width: auto;  transition: 1.0s;}
a:visited {}
a:hover{ background-color: none; text-decoration: none;}
a:active {}

img {  /*レスポンシブ自動サイズ調整*/
  max-width: 100%;
  height: auto;
  border-style:none; /*イメージ枠線消去*/
   /*ドラッグ無効*/
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

 /*見出しをセンタリング*/
.headline_c{
  text-align: center;
  margin-bottom: 40px;
}

 /*二行目字下げ*/
.text_indent{
  text-indent: -1em;
  padding-left: 1em;
}

 /*大きい文字*/
.font24p{
  font-size: 24px;
  line-height: 180%;
}


/*********************************************header*/
header{
  padding: 0;
  max-width: 100%; height: 100%;
  font-size: 16px;
}
/*ヘッダ固定*/
#head_fix{
  width: 100%;  height: auto;
  position: fixed;
  background-color: white;
  z-index: 100;
  top: 0;
  box-shadow: 2px 2px 6px lightgray;
}
/*ヘッダ下に空を入れる*/
#head_margin {
  margin-top: 140px;
}

#headbox{
  margin:0 auto;
  padding: 1% 2% 0 2%;
  max-width: 1200px; height: 100%;
}

/*ロゴ*/
#logobox{
  margin-top: 5px;
  width: 31%; height: auto;
  text-align: left;
  float: left;
}
#logobox a:hover{ 
  background-color: transparent;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=80)";
}
/*電話*/
#telbox{
  margin-top: 20px;
  padding: 0 4% 0 4%;
  width: 30%; height: auto;
  text-align: right;
  float: left; 
}
#telbox a:hover{ 
  background-color: transparent;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=80)";
}
/*メール*/
#mailbox{
  margin-top: 15px;
  padding: 0;
  width: 31%; height: auto;
  text-align: right;
  float: left;
}
#mailbox a:hover{ 
  background-color: transparent;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=80)";
}

/*ヘッダ下、モバイル版の電話とメール*/
#mobile_banner{
  margin: 0 auto;
}
#telbox_mobile{
  margin: 2% 0 2% 0;
  padding-right: 2%;
  width: 48%; height: auto;
  float: left; 
}
#mailbox_mobile{
  margin: 2% 0 2% 0;
  padding-left: 2%;
  width: 48%; height: auto;
  float: left; 
}


/*帯メニュー 0626更新*/
#menu{
  margin: 0 auto;
  width: 100%; height: 50px;
  padding: 0;
  line-height: 300%;
  background-color: #023894;
  clear: both;
}
.header_Navi{ 
  margin:0 auto;
  padding: 0;
  max-width: 1200px; height: 100%;
  list-style-type: none;  
  text-align: center;
  background-color: #023894;
}
.header_Navi li{  
  width: 14.28%; /*コンテンツの数で変更*/
  height: 50px;
  float: left;
  border-left: 1px solid white;
  border-right: 1px solid white;
  box-sizing: border-box; /*線を内側に*/
  background-color: #023894;
} 
.header_Navi li+ li{  /*区切り線を整える*/
  border-left: 0;
  border-right: 1px solid white;
  box-sizing: border-box; /*線を内側に*/
} 
.header_Navi li a{  /*リンクの範囲*/
  display: block;
  width: 100%;
  padding: 0;
}
.header_Navi a:link { color: white;}
.header_Navi a:visited { color: white;}
.header_Navi a:hover{ background-color: orange; color: #023894; }
.header_Navi a:active { color: white;}




/*ここからハンバーガーメニュー*/
#nav-drawer {
  position: relative;
  padding: 0;
  width: 25%; height: 100%;
  text-align: right;
  float: right;
  display: none; /*pcは使用しない*/
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
    display: inline-block;
}
/*ハンバーガーアイコン表示部分*/
#nav-open{ 
  height: 0;
  cursor: pointer;
  zoom: 50%;
}
/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
  padding: 0%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 80%;/*右側に隙間を作る*/
    max-width: 200px;/*最大幅*/
    height: 100%;
    background-color: whitesmoke;
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateY(-105%);
    transform: translateY(-105%);/*上から登場*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}
#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
/*ここまで*/


/*ハンバーガーメニュー内*/
#humb_menu{
  margin: 0 auto;
  width: 100%; height: 100%;
  float: right;
}
/*humberger menu中身*/
.humber_Navi{ 
  margin:0 auto;
  padding: 0;
  max-width: 100%; height: 100%;
  list-style-type: none;  
  text-align: center;
  background-color:  #023894;
}
.humber_Navi li{  
  width: 100%; /*コンテンツの数で変更*/
  float: left;
  border-top: 0px solid silver;
  border-bottom: 1px solid silver;
  box-sizing: border-box; /*線を内側に*/
} 
.humber_Navi li+ li{  /*区切り線を整える*/
  border-top: 0;
  border-bottom: 1px solid silver;
  box-sizing: border-box; /*線を内側に*/
}
.humber_Navi li a{  /*リンクの範囲*/
  display: block;
  width: 100%;
  padding: 10% 0 10% 0;
}

.humber_Navi a:link { color: white;}
.humber_Navi a:visited { color: white;}
.humber_Navi a:hover{ background-color: orange; color: #023894; }
.humber_Navi a:active { color: white;}
/*ここまで*/
/*********************************************footer*/
footer{
  max-width: 100%; height: 100%;
  color: white;
  background-color: #023894;
}

.footbox{
  margin: 0 auto;
  padding: 2%;
  max-width: 1200px; height: 100%;
}
.footbox p{ 
  font-size: 16px;
  line-height: 160%;
}

/*メニュー*/
.footer_Navi{
  width: 100%; height: 100%;
  margin-top: 1%;
  line-height: 120%;
  font-size: 14px;
}   
.footer_Navi li{  
  width: 100%;
  padding-bottom: 1%;
}  
.footer_Navi li:before{  
  content: "・";
} 

.footer_Navi a:link{  color: white;  }
.footer_Navi a:visited {  color: white;  }
.footer_Navi a:hover{ text-decoration:underline; color: orange;}

/*********************************************section*/
/*top画像箇所*/
.topimg{
  margin: 0 auto;
}
.topimg img{
  margin: 0 auto;
  vertical-align: bottom;
  width: 100%; height: 100%;
}

/*pc_mobile*/
.pc_{ display: inline;}
.mobile_{ display: none;}

/*各セクション*/
.sec_white{
  margin: 0 auto;
  max-width: 100%; height: 100%;
}

.sec_box{
  margin:0 auto;
  padding: 50px 2% 50px 2%;
  max-width: 1200px; height: 100%;
}



/*横に3つ並べる*/
.line3 ul{ 
  margin-top: 6%;
  width: 100%; height: 100%;
  list-style-type: none;  
  padding: 0;
}  
.line3 ul li{  
  width: 30%; /*コンテンツの数で変更*/
  float: left;
} 
.line3 ul li:nth-child(even){ /*真ん中の左右に余白*/
  margin: 0 4% 0 4%;
} 

/*********************************************テーブル*/

table{
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  float: left;
}
table th{
  padding: 2%;
  border: 1px solid lightgray;
}
table td{
  padding: 2%;
  border: 1px solid lightgray;
  vertical-align: top;
}
td.td1 { width: 25%; background-color: whitesmoke;}
td.td2 { width: 75%; }

.td2 a:hover{ 
  background-color: transparent;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=80)";
}
/*********************************************営業案内*/
.info_inbox{
  width: 100%;
  float: left;
}
/*横に画像を2つ並べる*/
.info_photobox1{
  width: 46%;
  margin-bottom: 4%;
  padding: 0 2% 0 2%;
  float: left;
}
/*********************************************経営理念*/
.daihyou{
  font-size: 24px;
  float: right;
  font-weight: bold;
}
/*********************************************アクセス*/

.access_inbox{
  width: 100%;
  margin-bottom: 4%;
  float: left;
}
.access_inbox img{
  width: 40%;
  margin-bottom: 4%;
  float: left;
}
.access_inbox p{
  width: 55%;
  float: right;
}

/*********************************************個人情報*/
.privacy_box{
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
/*********************************************フォーム*/
.contactform {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 4%;
  width: 80%;
  overflow: hidden;
  border: 1px solid silver;
  box-sizing: border-box; /*線を内側に*/
  background-color: whitesmoke;
}

 /*必須*/
.needred{
  display: inline;
  padding: 1%;
  color: white;
  font-size: 16px;
  background-color: red;
}

.contactform dl{
  width: 100%;
}
.contactform dt{
  width: 100%;
  padding-top: 1%;
  padding-bottom: 1%;
  font-weight: bold;
  float: left;
}
.contactform dd{
  width: 100%;
  padding-bottom: 2%;
  float: left;
}

form input{
  width: 100%;  height: 30px;
  border: 1px solid silver;
  box-sizing: border-box; /*線を内側に*/
  background-color: white;
}
form textarea{
  width: 100%;  height: auto;
  border: 1px solid silver;
  box-sizing: border-box; /*線を内側に*/
  background-color: white;
}
form select{
  width: 100%;  height: 25px;
  zoom: 150%;
}

.sbmbtn{
  text-align: center;
  margin: -4% 0 -4% 0;
}
input#mailsubmit {
  font-size: 20px;
  margin-top: 4%;
  width: 100%;
  height: 50px;
  font-weight: bold;
  letter-spacing: 4px;
  color: white;
  background-color: #023894;
  border: 1px solid silver;
  box-sizing: border-box; /*線を内側に*/
}
input#mailsubmit:hover {
  cursor: pointer;
  background-color: orange;
  color: black;
  border: 1px solid orange;
  box-sizing: border-box; /*線を内側に*/
  transition: 1.0s;
}
/*********************************************送信完了*/
.sendingmail{
  margin: 0 auto;
  text-align: center;
}

/*********************************************clearfix*/
.clearfix:after {
  content: " ";  
  display: block; 
  visibility: hidden; 
  clear: both; 
  height: 0;
  line-height: 0;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}