@charset "UTF-8";

body{
  font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ＭＳ 明朝', 'MS Mincho',sans-serif;
}
a{
  color: #000;
  text-decoration: underline;
}
a:hover{
  text-decoration: none;
}
/* header */
header{
  height: 65px;
  box-sizing: border-box;
  position: fixed;
  top:0;
  left: 0;
  background-color: #fff;
  width: 100%;
  z-index: 999;
}
.h_wrap{
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display:-webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  width: 1000px;
  margin: auto;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
}
.menutel{
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display:-webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  align-items:center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

}
.h_wrap .tel{
  margin-left: 2em;
  color:#595959;
}

.h_wrap .tel p:first-child{
  font-size: 0.5em;
  margin: 0 0 0.2em 0;
}
.h_wrap .tel p:nth-child(2),
.h_wrap .tel p:nth-child(3){
  font-size: 1.1em;
  letter-spacing: 1px;
  margin: 0;
}
.h_wrap h1{
  margin: 8px 0;
  height: 49px;
}
.h_wrap h1 img{
  width: auto;
  height: 100%;
}
/* menu */
#pcnav{
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display:-webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
}
#pcnav li{
  font-size: 12px;
  list-style: none;
  border-right:1px solid #a09d9c;
}
#pcnav li a{
  display: block;
  color: #000;
  padding: 0 1.6em;
}
#pcnav li a:hover{
  text-decoration: none;
}
/*スライド*/
.slider-pro{
  position: relative;
}
.slider-pro .logo{
  position:absolute;
  bottom: 0;
  right: 0;
  z-index: 888;
  margin: 0;
  padding: 0;
  line-height: 0;
}
/* contents */
.maincon{
  margin: auto;
  width: 756px;
}
.maincon > section{
  margin: 1em 0;
}
.hidden{
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}
/*クリックで中身表示*/
.maincon input:checked ~ .hidden{
    padding: 10px 0;
    height: auto;
    opacity: 1;
    margin-bottom: 4em;
}
.maincon label{
  cursor: pointer;
}
.maincon input{
  display: none;
}
.maincon label:hover{
  opacity: 0.8;
}
/* footer */
footer li{
  list-style: none;
}
footer .logo{
  width: 170px;
  margin: 5em auto;
}
footer .logo img{
  width: 100%;
  height: auto;
}
footer .link{
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
   display:-ms-flexbox;/*--- IE10 ---*/
   display:-webkit-flex;/*--- safari（PC）用 ---*/
   display:flex;
  justify-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .link li{
  margin-right: 1em;
  line-height: 30px;
}
footer .link li.textlink{
  font-size: 12px;
  margin-right: 2em;
}
footer .link li.textlink a{
  color: #000;
}
footer .link li.textlink a:hover{
  text-decoration: none;
}
footer .link li a i{
  font-size: 30px;
  color: #000;
}
footer .about{
  font-size: 12px;
  display:-webkit-box;/*--- Androidブラウザ用 ---*/
  display:-ms-flexbox;/*--- IE10 ---*/
  display:-webkit-flex;/*--- safari（PC）用 ---*/
  display:flex;
  justify-content: center;
  align-items: center;
  flex-wrap:wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .about li{
  margin-right: 1em;
}
/**/
.mb04{
  margin-bottom: 4em !important;
}
.mb02{
  margin-bottom: 2em !important;
}
.mb01{
  margin-bottom: 1em !important;
}
.fb01{
  font-size: 18px;
  font-weight: bold;
}
.fs01{
  font-size: 14px;
  padding-left: 0.6em;
}


/* PCのみCSS ------------------------------------------------------------------------------------*/
@media print, screen and (min-width: 640px) {

nav #spnav {
  display: none;
}
.pcnone{
  display: none;
}

}/*←CSSの一番最後に記述 */

/* スマートフォン用CSS------------------------------------------------------------------------ */
@media screen and (max-width: 640px) {

  img{
		max-width: 100%;
		height: auto;
		width /***/:auto;
	}
  .spnone{
    display: none;
  }

  .sp-mask{
    width:100% !important;
  }
  .slider-pro{
    position: relative;
    min-width: 0;
    width: 100%;
  }
  .slider-pro .logo {
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 888;
      margin: 0;
      padding: 0;
      line-height: 0;
      width: 60%;
  }
  header{
    height: 60px;
  }
  .h_wrap {
    width: 100%;
  }
  .h_wrap .tel {
    display: none;
  }
  .h_wrap h1 {
    margin: 8px 0 0 4px;
    height: 49px;
  }
  .h_wrap h1 img {
      width: auto;
      height: 90%;
  }
  nav #pcnav{
    display: none;
  }
  /* spmenu*/
	nav ul{
		margin:0;
	}
	nav #spnav {
	    position: fixed;
	    z-index: 30;
	    top: 0;
	    left: 0;
	    background: rgba(255, 255, 255, 0.9);
	    color: #000;
	    text-align: center;
	    transform: translateY(-100%);
	    transition: all 0.6s;
	    width: 100%;
      padding: 0;
	}

	nav #spnav li {
	    font-size: 1.1em;
	    list-style-type: none;
	    padding: 0;
	    width: 100%;
      list-style: none;
      margin: 0;
    	width: 100%;
    	text-align: left;
      list-style: none;

	}
	/* 最後はラインを描かない */
	nav #spnav li:last-child a {
	    border-bottom: none;
	}
	nav #spnav li a {
	  display: block;
	  color: #000;
	  padding: 1em 1em;
    border-bottom: 1px #eee solid;
    text-decoration: none;
    font-size: 14px;
	}

	/* このクラスを、jQueryで付与・削除する */
	nav #spnav.active {
	    transform: translateY(60px);
	}
	.navToggle {
	    display: block;
	    position: fixed;    /* bodyに対しての絶対位置指定 */
	    right: 20px;
	    top: 10px;
	    width: 50px;
	    height: 40px;
	    cursor: pointer;
	    z-index:50;
	    background: #fff;
	    text-align: center;
	}
	.navToggle span {
	    display: block;
	    position: absolute;    /* .navToggleに対して */
	    width: 40px;
	    border-bottom: solid 3px #999;
	    -webkit-transition: .35s ease-in-out;
	    -moz-transition: .35s ease-in-out;
	    transition: .35s ease-in-out;
	    left: 6px;
	}
	.navToggle span:nth-child(1) {
	    top: 10px;
	}

	.navToggle span:nth-child(2) {
	    top: 20px;
	}

	.navToggle span:nth-child(3) {
	    top: 30px;
	}
	.navToggle span:nth-child(4) {
	    border: none;
	    color: #fff;
	    font-size: 15px;
	    top: 34px;
	}
	/* 最初のspanをマイナス45度に */
	.navToggle.active span:nth-child(1) {
	    top: 18px;
	    left: 6px;
	    -webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}
	/* 2番目と3番目のspanを45度に */
	.navToggle.active span:nth-child(2),
	.navToggle.active span:nth-child(3) {
	    top: 18px;
	    -webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    transform: rotate(45deg);
	}
  /**/
  .maincon{
    margin: auto;
    width: 94%;
  }
  footer .link {
      flex-wrap: wrap;
  }
  footer .about {
      padding: 0 1em;
  }
  footer .logo {
      width: 40%;
      margin: 5em auto 1em auto;
  }

}/* ←CSSの一番最後に記述 */
