/*
===================================================
	Reset
===================================================
*/
*{
 margin: 0px;
 padding: 0px;
}
li{
 list-style: none;
}
a{
 text-decoration: none;
}
address{
 font-style:normal;
}
/*
===================================================
	Base Setting
===================================================
*/
body {
	line-height: 1.4em;
 letter-spacing: 0.05em;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS P Gothic","Osaka",arial,sans-serif;
}
img{
 max-width: 100%;
 height: auto;
 vertical-align: bottom;
}
.sp-visible{
 visibility: hidden;
 width: 0px;
 height: 0px;
}
.maxWidth{
 max-width: 1200px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth2{
 max-width: 1100px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
.maxWidth3{
 max-width: 800px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
#header .inner{
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 20px 10px;
}
#header .inner h1{
 width: 50%;
}
#header .inner h1 a{
 display: flex;
 align-items: center;
}
#header .inner h1 .logo{
 padding-right: 20px;
 max-width: 135px;
 width: 25%;
}
#header .inner h1 .ttl{
 width: 75%;
}
#header .inner .info{
 display: flex;
 align-items: center;
}
#header .inner .info .tel a{
 display: flex;
 align-items: center;
 margin-right: 35px;
}
#header .inner .info .tel .icon{
 padding-right: 10px;
}
#header .inner .info .access a{
 display: flex;
 align-items: center;
}
#header .inner .info .access .icon{
 padding-right: 10px;
}
#header .menuBtn p{
 position: relative;
 display: block;
 width: 80%;
 height: 5px;
 background: #301504;
 cursor: pointer;
}
#header .menuBtn p:before{
 position: absolute;
 content: "";
 display: block;
 width: 100%;
 height: 5px;
 background: #301504;
 top: -10px;
 transition: transform .5s;
}
#header .menuBtn p:after{
 position: absolute;
 content: "";
 display: block;
 width: 100%;
 height: 5px;
 background: #301504;
 top: 10px;
 transition: transform .5s;
}
#header .menuBtn.active p{
 background: #fff;
}
#header .menuBtn.active p:before{
 position: absolute;
 content: "";
 display: block;
 width: 100%;
 height: 5px;
 background: #301504;
 top: 0px;
 transform: rotate(45deg);
}
#header .menuBtn.active p:after{
 position: absolute;
 content: "";
 display: block;
 width: 100%;
 height: 5px;
 background: #301504;
 top: 0px;
 transform: rotate(-45deg);
}
#nav{
 position: relative;
}
#nav>ul{
 position: absolute;
 width: 100%;
 background: rgba(255,255,255,0.8);
 text-align: center;
 padding: 5px;
 box-sizing: border-box;
}
#nav>ul>li{
 display: inline-block;
}
#nav>ul>li>a{
 display: block;
 padding: 10px 13px 10px 10px;
 border-right: solid 1px #301504;
 min-width: 120px;
}
#nav>ul>li:first-child a{
 border-left: solid 1px #301504;
}
#nav a{
 position: relative;
}
#nav a:before{
 position: absolute;
 display: block;
 content: "";
 bottom: 5px;
 border-bottom: solid 1px transparent;
 width: 87%;
}
#nav a:hover:before{
 transition: .5s;
 border-bottom: solid 1px #301504;
}
#nav .subMenu>.subMenuArea{
 position: absolute;
 background: rgba(255,255,255,0.8);
 font-size: 80%;
 width: 150px;
 box-sizing: border-box;
 margin-top: 5px;
 opacity: 0;
 visibility: hidden;
}
#nav .subMenu>.subMenuArea a{
 display: block;
 padding: 10px 0px;
}
#nav .subMenu>.subMenuArea a:hover{
 background: #301504;
 color: #fff;
}
#nav .subMenu.active>.subMenuArea{
 opacity: 1;
 visibility: visible;
 transition: .5s;
}
#main{

}
#footer .bnr ul.bnrList{
 max-width: 400px;
}
#footer .bnr ul.bnrList li{
 display: inline-block;
 margin: 5px;
}

#footer .bnr #share_list .shere li{
 display: inline-block;
 vertical-align: middle;
}
#footer .bnr #share_list .shere li.fb{
 padding-top: 2px;
}

#pagetop{
 position: fixed;
 z-index: 2;
 bottom: 15px;
 right: 15px;
 visibility: hidden;
 opacity: 0;
}
#pagetop.active{
 visibility: visible;
 opacity: 1;
}
#pagetop a{
 position: relative;
 background: rgba(255,255,255,0.7);
 border-radius: 20px;
 padding:5px 15px 5px 30px;
 border: solid 2px #888;
 box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
 color: #555;
}
#pagetop a:before{
 display: block;
 position: absolute;
 content: "";
 border-bottom: solid 10px #555;
 border-left: solid 6px transparent;
 border-right: solid 6px transparent;
 left: 10px;
 top: 10px;
}
#pagetop a:hover:before{
 transition: .5s;
 border-bottom: solid 10px #fff;
}
#pagetop a:hover{
 transition: .5s;
 text-decoration: none;
 color: #fff;
 background: rgba(0,0,0,0.7);
}
.clearfix{
 overflow: hidden;
}
.fLeft{
 float: left;
}
.fRight{
 float: right;
}
.tLeft{
 text-align: left;
}
.tRight{
 text-align: right;
}
.tCenter{
 text-align: center;
}
.vTop{
 vertical-align: top;
}
.vMiddle{
 vertical-align: middle;
}
.vBottom{
 vertical-align: bottom;
}
.mb1em{
 margin-bottom: 1em;
}
.mb2em{
 margin-bottom: 2em;
}
.mb3em{
 margin-bottom: 3em;
}
.mb50{
 margin-bottom: 50px;
}
.mb100{
 margin-bottom: 100px;
}
.mt1em{
 margin-top: 1em;
}
.mt2em{
 margin-top: 2em;
}
.mt3em{
 margin-top: 3em;
}
.mt5{
 margin-top: 5px;
}
.mt10{
 margin-top: 10px;
}
.mt50{
 margin-top: 50px;
}
.mt100{
 margin-top: 100px;
}
.mr1em{
 margin-right: 1em;
}
.mr2em{
 margin-right: 2em;
}
.mr3em{
 margin-right: 3em;
}
.ml1em{
 margin-left: 1em;
}
.ml2em{
 margin-left: 2em;
}
.ml3em{
 margin-left: 3em;
}
.m0{
	margin: 0;
}
.m5{
 margin: 5px;
}
.m0auto{
 margin: 0 auto;
}
.m1emauto{
 margin: 1em auto;
}
.m1emauto0{
 margin: 1em auto 0;
}
.mInlineAuto{
 margin-left: auto;
 margin-right: auto;
}
.pb1em{
 padding-bottom: 1em;
}
.pb2em{
 padding-bottom: 2em;
}
.pb3em{
 padding-bottom: 3em;
}
.pb50{
 padding-bottom: 50px;
}
.pb100{
 padding-bottom: 100px;
}
.pt1em{
 padding-top: 1em;
}
.pt2em{
 padding-top: 2em;
}
.pt3em{
 padding-top: 3em;
}
.pt10{
 padding-top: 10px;
}
.pt50{
 padding-top: 50px;
}
.pt100{
 padding-top: 100px;
}
.p5{
 padding: 5px;
}
.p10{
 padding: 10px;
}
.p20{
 padding: 20px;
}
.p30{
 padding: 30px;
}
.p40{
 padding: 40px;
}
.p50{
 padding: 50px;
}
.font-s{
 font-size: 80%;
}
.font-ss{
 font-size: 60%;
}
.font-ml{
 font-size: 125%;
}
.font-l{
 font-size: 140%;
}
.font-ll{
 font-size: 180%;
}
.font-lll{
 font-size: 220%;
}
.flex{
 display: flex;
 justify-content: center;
}
.flex.sa{
 justify-content: space-around;
}
.flex.sb{
 justify-content: space-between;
}
.flex.wrap{
 flex-wrap: wrap;
}
.flex .asCenter{
 align-self: center;
}
.w10,.w20,.w25,.w30,.w33,.w40,.w45,.w50,.w60,.w70,.w80,.w90,.w100{
 box-sizing: border-box;
}
.w10{
 width: 10%;
}
.w20{
 width: 20%;
}
.w25{
 width: 25%;
}
.w30{
 width: 30%;
}
.w33{
 width: 33%;
}
.w40{
 width: 40%;
}
.w45{
 width: 45%;
}
.w50{
 width: 50%;
}
.w60{
 width: 60%;
}
.w70{
 width: 70%;
}
.w80{
 width: 80%;
}
.w90{
 width: 90%;
}
.w100{
 width: 100%;
}
.wAuto{
 width: auto;
}
.wFit{
 width: fit-content;
}
.sp-menuArea {
 display: none;
}
.lh1_5em{
 line-height: 1.5em;
}
.lh2em{
 line-height: 2em;
}
.green,
.green a{
 color: #126B6F;
}
.white,
.white a{
 color: #fff;
}
.brown,
.brown a{
 color: #301504;
}
.red,
.red a{
 color: #c1121f;
}
.bgWhite{
 background: #fff;
}
.bgBrown{
 background: #301504;
}
.bgBrown2{
 background: #DDC7BC;
}
.bgIvory{
 background: #F3E8C5;
}
.borderWhite{
 border: solid 1px #fff;
}
.mincho{
 font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.bold{
 font-weight: bold;
}
.dIb{
 display: inline-block;
}
.br5{
 border-radius: 5px;
}
.styleTable1{
 border-collapse: collapse;
 border-spacing: 0;
 width: 100%;
 background: #fff;
}
.styleTable1 th,
.styleTable1 td{
 border:solid 1px #301504;
 padding: 10px;
 height: 2em;
}
.styleBtn{
 display: block;
 border:solid 1px #301504;
 background: #fff;
 padding: 20px 40% 20px 20px;
 font-weight: bold;
 position: relative;
}
.styleBtn:before{
 position: absolute;
 display: block;
 content: "";
 width: 10px;
 border-bottom: solid 1px #301504;
 right: 12%;
 top: 50%;
 transform: rotate(45deg);
 margin-top: -4px;
}
.styleBtn:after{
 position: absolute;
 display: block;
 content: "";
 width: 30%;
 border-bottom: solid 1px #301504;
 right: 12%;
 top: 50%;
}
.dNone{
 display: none;
}
.spMenuArea{
 z-index: 999;
 position: fixed;
 left: 0px;
 top: 0px;
 width: 100%;
 height: 100%;
 background: #fff;
 box-sizing: border-box;
 padding: 20px;
 opacity: 0;
 visibility: hidden;
}
.spMenuArea.active{
 opacity: 1;
 visibility: visible;
 transition: .5s;
}
.spMenuArea>ul{
 margin-top: 60px;
 height: 85%;
 overflow-y: auto;
}
.spMenuArea li a{
 display: block;
 padding: 5px;
 border-bottom: solid 1px #eee;
 color: #222;
}
.spMenuArea .sub{
 padding-left: 25px;
}
.imgAuto{
 width: 100%;
 height: auto;
}

/*
===================================================
	tb
===================================================
*/
@media screen and (max-width: 1200px) {
 #nav ul li a{
  min-width: 70px;
  font-size: 90%;
 }
}

/*
===================================================
	sp
===================================================
*/
@media screen and (max-width: 1000px) {
 .sp-bold{
  font-weight: bold;
 }
 .sp-visible{
  visibility: visible;
  width: auto;
  height: auto;
 }
 .sp-hidden{
  visibility: hidden;
  width: 0px;
  height: 0px;
 }
 .sp-dBlock{
  display: block;
 }
 .sp-dIb{
  display: inline-block;
 }
 .sp-dNone{
  display: none;
 }
 .sp-menuBtn {
  cursor: pointer;
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 6px;
  width: 35px;
  height: 35px;
  border: solid 2px #888;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.07);
 }
 .sp-menuBtn .sp-menuBtn__inner {
  transition: transform 0.5s;
  position: relative;
  top: 10px;
  left: 8px;
  width: 19px;
  height: 3px;
  background: #555555;
 }
 .sp-menuBtn .sp-menuBtn__inner::after {
  transition: transform 0.5s;
  position: absolute;
  top: 6px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
 }
 .sp-menuBtn .sp-menuBtn__inner::before {
  transition: transform 0.5s;
  position: absolute;
  top: 12px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
 }
 .sp-menuBtn.active .sp-menuBtn__inner {
  position: relative;
  top: 16px;
  left: 8px;
  width: 19px;
  height: 3px;
  background: #555555;
  transform: rotate(45deg);
 }
 .sp-menuBtn.active .sp-menuBtn__inner::after {
  position: absolute;
  top: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
  transform: rotate(90deg);
 }
 .sp-menuBtn.active .sp-menuBtn__inner::before {
  position: absolute;
  top: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #555555;
 }
 .sp-menuBtn span {
  display: none;
 }
 .sp-menuArea {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0px;
  height: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: scroll;
 }
 .sp-menuArea.active {
  transition: opacity 0.5s;
  opacity: 1;
  visibility: visible;
  z-index: 998;
 }
 .sp-menuArea .sp-menu {
  padding: 50px 10px 10px;
 }
 .sp-menuArea .sp-menu li {
  border-bottom: solid 1px #eee;
 }
 .sp-menuArea .sp-menu li a {
  position: relative;
  display: block;
  padding: 10px 5px 10px 12px;
  color: #555555;
 }
 .sp-menuArea .sp-menu li a::before {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -3px;
  vertical-align: middle;
  content: "";
  display: block;
  border-left: solid 6px #555555;
  border-top: solid 4px transparent;
  border-bottom: solid 4px transparent;
 }
 .sp-font-l{
  font-size: 140%;
 }
 .sp-font-m{
  font-size: 100%;
 }
 .sp-font-s{
  font-size: 60%;
 }
 .sp-font-ss{
  font-size: 40%;
 }
 .sp-fLeft{
  float: left;
 }
 .sp-fRight{
  float: right;
 }
 .sp-tLeft{
  text-align: left;
 }
 .sp-tRight{
  text-align: right;
 }
 .sp-tCenter{
  text-align: center;
 }
 .sp-vTop{
  vertical-align: top;
 }
 .sp-vMiddle{
  vertical-align: middle;
 }
 .sp-vBottom{
  vertical-align: bottom;
 }
 .sp-m0{
  margin: 0px;
 }
 .sp-mb0{
  margin-bottom: 0px;
 }
 .sp-mb1em{
  margin-bottom: 1em;
 }
 .sp-mb2em{
  margin-bottom: 2em;
 }
 .sp-mb3em{
  margin-bottom: 3em;
 }
 .sp-mt0{
  margin-top: 0px;
 }
 .sp-mt1em{
  margin-top: 1em;
 }
 .sp-mt2em{
  margin-top: 2em;
 }
 .sp-mt3em{
  margin-top: 3em;
 }
 .sp-pb0{
  padding-bottom: 0px;
 }
 .sp-pb1em{
  padding-bottom: 1em;
 }
 .sp-pb2em{
  padding-bottom: 2em;
 }
 .sp-pb3em{
  padding-bottom: 3em;
 }
 .sp-pt0{
  padding-top: 0px;
 }
 .sp-pt1em{
  padding-top: 1em;
 }
 .sp-pt2em{
  padding-top: 2em;
 }
 .sp-pt3em{
  padding-top: 3em;
 }
 .sp-p10{
  padding: 10px;
 }
 .sp-w10,.sp-w20,.sp-w25,.sp-w30,.sp-w33,.sp-w40,.sp-w50,.sp-w60,.sp-w70,.sp-w80,.sp-w90,.sp-w100{
  box-sizing: border-box;
 }
 .sp-w10{
  width: 10%;
 }
 .sp-w20{
  width: 20%;
 }
 .sp-w30{
  width: 30%;
 }
 .sp-w40{
  width: 40%;
 }
 .sp-w50{
  width: 50%;
 }
 .sp-w60{
  width: 60%;
 }
 .sp-w70{
  width: 70%;
 }
 .sp-w80{
  width: 80%;
 }
 .sp-w90{
  width: 90%;
 }
 .sp-w100{
  width: 100%;
 }
 .wAuto{
  width: auto;
 }
 #header{
  z-index: 9999;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
 }
 #header .inner h1 {
  width: 210px;
 }
 #header .inner .info .tel a {
  margin-right: 10px;
 }
 #header .info .icon img{
  height: 30px;
  width: auto;
 }
 #header .menuBtn{
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  padding-top: 2px;
 }
 #main{
  margin-top: 60px;
 }

 #footer .bnr #share_list .shere{
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
 }

 #footer .bnr ul.bnrList{
  max-width: none;
 }
 #footer .bnr ul.bnrList{
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
 }
 #footer .bnr ul.bnrList li{
  text-align: center;
  width: 48%;
  display: inline-block;
  margin: 0px 0px 10px 3px;
 }
 .styleTable1{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  background: #fff;
 }
 .styleTable1 th,
 .styleTable1 td{
  border:solid 1px #301504;
  padding: 5px;
  height: auto;
  font-size: 80%;
 }
 .styleBtn{
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
 }
 .styleBtn:before{
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  border-bottom: solid 1px #301504;
  right: 6%;
  top: 50%;
  transform: rotate(45deg);
  margin-top: -4px;
 }
 .styleBtn:after{
  position: absolute;
  display: block;
  content: "";
  width: 20%;
  border-bottom: solid 1px #301504;
  right: 6%;
  top: 50%;
 }
}

.news_wrap{
	display: flex;
	align-items: center;
	height: 411px;
}
.white.news_ttl {
	display: block;
	margin: 3em auto 1em;
    /*position: absolute;
    margin-top: 77px;*/
}
.news_wrap .text{
	line-height:1.5;
}
@media screen and (max-width: 1000px) {
.news_wrap{
	height: 176px;
}

.white.news_ttl {
    margin-top: 9px;
}
	
.news_wrap .text{
	margin-top: 0.3em;
}
}