@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');



/* ----------------------------------------------

 * 要素を左右中央寄せ

---------------------------------------------- */

.taC {
  text-align: center !important;
}

.taR {
  text-align: right !important;
}

.taL {
  text-align: left !important;
}


/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
header a {
  outline:none;
  color: #ffffff;
}
header a:hover {
  text-decoration: none;
}
header a,a:hover,a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
header a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}


#header {
/*ラインの影設定*/
  box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  z-index: 99;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background:#cc0000;
}
#gNav a:hover {
  color: #ffffff;
}
nav li a {
  font-size: 13px;
  letter-spacing: 0.2em;
}
nav .sub-menu,.mean-container .mean-nav ul ul {
  background-color:rgba(153,0,0,0.8);
/*プルダウンメニュー★グラデーション背景設定*/
  background-color: rgba(204,0,0,0.7);
}


/* ---------------------------------------------------------------------------------------------

　   レスポンシブ設定

--------------------------------------------------------------------------------------------- */
/*=▼▼▼======================
     max-width : 480px
==============================*/
@media screen and (max-width: 480px){
  .container {
    padding: 0 10px;
}
/*=▼▼======header==========*/
#header {
    padding: 5px 0;
    height: 60px;
}
.h_logo {
    width: 200px;
    position: absolute;
    top: 16px;
    left: 10px;
    z-index: 100;
}
#gNav ul > li:hover a,#gNav .current-menu-item a,#gNav .current-menu-parent a {
  color: #ffffff;
}
/*=▲▲======header==========*/
}


/*=▼▼▼======================
     max-width : 916px
==============================*/
@media screen and (min-width: 481px) and (max-width: 916px){
  .container {
    padding: 0 20px;
}
/*=▼▼======header==========*/
#header {
    padding: 10px 0;
    height: 60px;
}
.h_logo {
    width: 200px;
    position: absolute;
    top: 18px;
    left: 10px;
    z-index: 100;
}
#gNav ul > li:hover a,#gNav .current-menu-item a,#gNav .current-menu-parent a {
  color: #ffffff;
}
/*=▲▲======header==========*/
}


/*=▼▼▼======================
     max-width : 1296px
==============================*/
@media screen and (min-width: 917px) and (max-width: 1296px){
  .container {
    padding: 0 30px;
margin: 0px auto;
  }
  #main {
    padding-top: 58px;
  }
/*=▼▼======header==========*/
#header {
    padding: 10px 0;
    height: 60px;
}
.h_logo {
    width: 200px;
    position: absolute;
    top: 18px;
    left: 10px;
    z-index: 100;
}
#gNav .nav {
    overflow-y: auto;
    height: 100vh;
}
.mean-nav .container {
    padding: 0;
}
nav li .fa {
    display: none;
}
#gNav ul > li:hover a,#gNav .current-menu-item a,#gNav .current-menu-parent a {
  color: #ffffff;
}
/*=▲▲======header==========*/
h1{
	display: none;
}
}


/*=▼▼▼======================
     min-width : 1297px
==============================*/
@media screen and (min-width: 1297px){
.container {
    width: 90%;
/*=====真ん中に表示させる=====*/
    margin: 0px auto;
}
  #main {
    padding-top: 80px;
  }

/*=▼▼======header==========*/
  #header {
/*メニューのとこの高さを調整*/
    height: 70px;
  }
  .h_logo{
	width: 300px;
	height: 50px;
}
#h_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #gNav ul {
    position: relative;
    display: flex;
  }
  #gNav li {
    position: relative;
    margin-right: 2.5em;
  }
  #gNav li:last-child {
    margin-right: 0;
  }
  #gNav li i {
    font-size: 16px;
    margin-left: 5px;
  }
  #gNav li a {
    position: relative;
    display: block;
    text-align: center;
    line-height: 30px;
  }
ul  .sub-menu {
	margin : -49px;
}
  #gNav .sub-menu {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  #gNav .sub-menu a {
    padding: 10px;
    display: block;
    border-bottom: none;
    line-height: 1.2em;
  }
  #gNav .sub-menu a:hover:after {
    content: none;
  }
  #gNav .sub-menu li {
    display: block;
    font-size: 16px;
    padding: 0;
    margin: 0;
  }
  #gNav .sub-menu li:last-child {
    border-bottom: none;
  }
  #gNav ul > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  #gNav ul > li:hover a,#gNav .current-menu-item a,#gNav .current-menu-parent a {
    color: #ffffff;
  }
  #gNav li:hover ul.sub-menu {
    top: 89px;
    visibility: visible;
    opacity: 1;
    z-index: 9999;
  }
  #gNav li ul li:after {
    content: none;
  }
 #gNav li:hover ul.sub-menu a {
    color: #ffffff;
  }
  #gNav .sub-menu li a:hover {
    background:#990000;
  }
  #gNav .contact_btn a:hover {
    color: #ffffff;
  }
/*=▲▲======header==========*/
h1 .site-description{
    z-index: 1;
	font-size: 0.75em;
	font-weight: normal;
}
}


@media (min-width: 760px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}


