:root{
 --main-color :#541006;
 --main-color2 :#5F0900;
}

/*
===================================================
        Reset
===================================================
*/
*{
 margin: 0px;
 padding: 0px;
}
li{
 list-style: none;
}
a{
 text-decoration: none;
}
address{
 font-style:normal;
}
/*
===================================================
        Base Setting
===================================================
*/
body {
 -webkit-text-size-adjust:100%;
 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;
 overflow-x: hidden;
 width: 100%;
}
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: 1000px;
 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
}
.maxWidth4{
 max-width: 600px;
 padding-left: 15px;
 padding-right: 15px;
 margin-left: auto;
 margin-right: auto
}
#header{
 position: absolute;
 top: 0px;
 left: 0px;
 width: 100%;
 z-index: 2;
}
.page #header{
 background: var(--main-color);
 padding-bottom: 8px;
 position: relative;
}
#header .inner{
 position: relative;
 max-width: 1920px;
 margin-left: auto;
 margin-right: auto;
 display: flex;
 justify-content: space-between;
 padding: 20px 30px;
}
#header #logo{
 width: 300px;
}
#header #logo a{
 display: block;
 width: 100%;
 height: 100%;
 transition: .5s;
}
#header #logo a:hover{
 opacity: .8;
}
#header #logo a img{
 width: 100%;
 height: auto;
 max-width: none;
}
#header #nav{
 display: flex;
 justify-content: flex-end;
 align-items: center;
 flex-wrap: wrap;
 margin-top: 15px;
}
#header #nav .mainMenu{
 display: flex;
 justify-content: flex-end;
 flex-wrap: wrap;
}
#header #nav .mainMenu>li{
 margin: 5px 20px;
 position: relative;
}
#header #nav .mainMenu>li>a{
 color: #fff;
 text-shadow:1px 1px 2px #000;
 position: relative;
 z-index: 2;
}
#header #nav .mainMenu>li:after{
 content: "";
 display: block;
 position: absolute;
 width: 100%;
 height: 5px;
 border-radius: 10px;
 left: 0px;
 background: rgba(255,255,255,0);
 z-index: 1;
 transition: .5s;
 transform: translate(0,-4px);
}
#header #nav .mainMenu>li:hover:after{
 background: rgba(255,255,255,1);
 transform: translate(0,0px);
}
#header #nav .btnContact a{
 background: var(--main-color);
 color: #fff;
 padding: 15px 35px;
 margin: 5px 5px 5px 30px;
 border-radius: 40px;
 transition: .5s;
 display: block;
}
.page #header #nav .btnContact a{
 background: #fff;
 color: var(--main-color);
}
#header #nav .btnContact a:hover{
 opacity: .7;
}
#main{

}
#footer{
 position: relative;
 overflow: hidden;
}
#footer:before{
 content: "";
 display: block;
 width: 100%;
 height: 15vw;
 background: url(../img/bg_footer.png) no-repeat center bottom;
 background-size: contain;
 transform: scale(1.2);
}
#footer .inner{
 background: var(--main-color2);
 color: #fff;
 padding: 50px 0px;
 position: relative;
 z-index: 2;
}
#footer .inner a{
 color: #fff;
}
#footer .footerMenu{
 display: flex;
 justify-content: center;
}
#footer .footerMenu li{
 border-right: solid 1px #fff;
}
#footer .footerMenu li:last-child{
 border-right:none;
}
#footer .footerMenu li a{
 display: block;
 padding: 0px 15px;
}
#footer .gmap{
 text-align: center;
}
#footer .gmap iframe{
 display: inline-block;
 width: 100%;
 max-width: 600px;
}

#pagetop{
 position: fixed;
 z-index: 2;
 bottom: 5px;
 right: 5px;
 opacity: 0;
 transform: scale(0);
 transition: 0.5s;
}
#pagetop.active{
 opacity: 1;
 transform: scale(1);
}
#pagetop a{
 position: relative;
 transition: 1s;
}
#pagetop a img{
 transform: scale(0.8);
 transition: .5s;
}
#pagetop a:hover{
 filter: brightness(1.5);
}
#pagetop a:hover>img{
 transform: scale(0.9);
}


/* common css */
.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;
}
.mt10{
 margin-top: 10px;
}
.mt20{
 margin-top: 20px;
}
.mt30{
 margin-top: 30px;
}
.mt40{
 margin-top: 40px;
}
.mt50{
 margin-top: 50px;
}
.mt75{
 margin-top: 75px;
}
.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;
}
.p5{
 padding: 5px;
}
.p10{
 padding: 10px;
}
.p20{
 padding: 20px;
}
.p30{
 padding: 30px;
}
.p40{
 padding: 40px;
}
.p50{
 padding: 50px;
}
.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;
}
.pt20{
 padding-top: 20px;
}
.pt30{
 padding-top: 30px;
}
.pt40{
 padding-top: 40px;
}
.pt50{
 padding-top: 50px;
}
.pt100{
 padding-top: 100px;
}
.pr1em{
 padding-right: 1em;
}
.pr2em{
 padding-right: 2em;
}
.pr3em{
 padding-right: 3em;
}
.pl1em{
 padding-left: 1em;
}
.pl2em{
 padding-left: 2em;
}
.pl3em{
 padding-left: 3em;
}
.font-s{
 font-size: 80%;
}
.font-ss{
 font-size: 60%;
}
.font-m{
 font-size: 100%;
}
.font-ml{
 font-size: 125%;
}
.font-l{
 font-size: 150%;
}
.font-ll{
 font-size: 200%;
}
.font-lll{
 font-size: 300%;
}
.flex{
 display: flex;
 justify-content: center;
}
.flex.start{
 justify-content: flex-start;
}
.flex.end{
 justify-content: end;
}
.flex.sa{
 justify-content: space-around;
}
.flex.sb{
 justify-content: space-between;
}
.flex.wrap{
 flex-wrap: wrap;
}
.flex.reverse{
 flex-direction: row-reverse;
}
.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% !important;
}
.w20{
 width: 20% !important;
}
.w25{
 width: 25% !important;
}
.w30{
 width: 30% !important;
}
.w33{
 width: 33% !important;
}
.w40{
 width: 40% !important;
}
.w45{
 width: 45% !important;
}
.w50{
 width: 50% !important;
}
.w60{
 width: 60% !important;
}
.w70{
 width: 70% !important;
}
.w80{
 width: 80% !important;
}
.w90{
 width: 90% !important;
}
.w100{
 width: 100% !important;
}
.wAuto{
 width: auto;
}
.lh1_2em{
 line-height: 1.2em;
}
.lh1_5em{
 line-height: 1.5em;
}
.lh1_75em{
 line-height: 1.75em;
}
.lh2em{
 line-height: 2em;
}
.sp-menuArea {
 display: none;
}

.b{
 font-weight: bold;
}

.dNone{
 display: none;
}
.dIb{
 display: inline-block;
}
.dBlock{
 display: block;
}

.hover{
 opacity: 1;
 transition: .5s;
}
.hover:hover{
 opacity: .5;
}

.br10{
 border-radius: 10px;
}

.red,
.red a{
 color:#c00;
}

.white,
.white a{
 color: #fff;
}
.black,
.black a{
 color: #222;
}
.brown,
.brown a{
 color: var(--main-color);
}

.bgBrown{
 background: var(--main-color);
}
.bgBrown2{
 background: #CFC0A9;
}
.bgWhite{
 background: #fff;
}

.styleTtl{
 text-align: center;
}
.styleTtl>span{
 display: inline-block;
 background: var(--main-color);
 color: #fff;
 border-radius: 50px;
 padding: 8px 30px;
 min-width: 300px;
 line-height: 1em;
 box-sizing: border-box;
}
.styleList{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
 word-break: break-all;
}
.styleList .img{
 overflow: hidden;
 max-height: 247px;
}
.styleList figcaption{
 padding: 10px;
}
.styleList figcaption{
 display: flex;
}
.styleList figcaption .date{
 width: 8em;
}
.styleList figcaption .text{
 width: calc( 100% - 8em );
}
.styleList2{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}
.styleList2 .img{
 overflow: hidden;
}
.styleList2 figcaption{
 padding: 10px;
}
.styleList2 figcaption{
 display: flex;
}
.styleList2 figcaption .date{
 width: 8em;
}
.styleList2 figcaption .text{
 width: calc(100%-8em);
}
.styleBtn{
 text-align: center;
}
.styleBtn a{
 color: var(--main-color);
 display: inline-block;
 border:solid 1px var(--main-color);
 border-radius: 30px;
 padding: 5px 15px;
 min-width: 220px;
}
.styleBtn.white a{
 color: #fff;
 border:solid 1px#fff;
}

.styleBtn2 a{
 color: var(--main-color);
 display: inline-block;
 background: var(--main-color);
 border:solid 1px var(--main-color);
 border-radius: 30px;
 padding: 5px 15px;
 min-width: 220px;
 text-align: center;
 color:#fff;
}

.btns a{
 display: inline-block;
 color: #fff;
 background: var(--main-color);
 border-radius: 40px;
 min-width: 300px;
 text-align: center;
 padding: 2px;
 margin: 2px;
}
.btnMap{
 display: inline-block;
 background: var(--main-color);
 color: #fff;
 border-radius: 30px;
 padding: 1px 20px;
 margin-top: 15px;
}
.btnMap:after{
 display: inline-block;
 content: "";
 background: url(../img/icon_map.png) no-repeat center;
 background-size: contain;
 width: 1em;
 height: 1em;
 margin-left: 5px;
 position: relative;
 top: 2px;
}


#sec_pagettl{
 text-align: center;
 color: var(--main-color);
 background: url(../img/page_bgL.png) no-repeat left center , url(../img/page_bgR.png) no-repeat right center;
 background-size: contain;
}
#sec_pagettl .inner{
 height: 15vw;
 max-height: 300px;
 display: flex;
 justify-content: center;
 align-items: center;
}
#sec_pagettl h1{
 font-size: 200%;
 background: rgba(255,255,255,0.5);
 padding: 15px;
 border-radius: 50px;
}


/*
===================================================
        pc small
===================================================
*/
@media screen and (max-width: 1500px) {
 #header #nav .mainMenu{
  margin-right: 10px;
 }
 #header #nav .mainMenu>li{
  margin: 0px 10px;
 }

}

/*
===================================================
        sp
===================================================
*/
@media screen and (max-width: 1257px) {
 #header .inner{
  display: block;
  padding: 5px 15px;
 }
 #header #logo{
  width: 180px;
  position: relative;
 }
 #footer .inner{
  padding: 30px 0px 60px;
 }
 #footer .logo img{
  max-width: 294px;
  min-width: 180px;
  width: 40vw;
 }
 #footer .footerMenu{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  font-size: 80%;
 }
 #footer .footerMenu li{
  width: 50%;
  box-sizing: border-box;
  border-bottom: solid 1px #fff;
 }
 #footer .footerMenu li:nth-child(odd){
  border-right:solid 1px #fff;
 }
 #footer .footerMenu li:nth-child(even){
  border-right:none;
 }
 #footer .footerMenu li:nth-last-child(1),
 #footer .footerMenu li:nth-last-child(2):nth-child(odd){
  border-bottom:none;
 }
 #footer .footerMenu li a{
  display: block;
  padding: 10px;
  text-align: center;
 }

 #pagetop{
  position: fixed;
  z-index: 10;
  bottom: -10px;
  right: -10px;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
 }
 #pagetop.active{
  opacity: 1;
  transform: scale(1);
 }
 #pagetop a{
  position: relative;
  transition: 1s;
 }
 #pagetop a img{
  transform: scale(0.6);
  transition: .5s;
 }
 #pagetop a:hover{
  filter: brightness(1.5);
 }
 #pagetop a:hover>img{
  transform: scale(0.7);
 }

 .styleList{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  justify-content: center;
 }
 .styleList figcaption{
  padding: 10px;
 }
 .styleList figcaption{
  display: flex;
  justify-content: center;
 }
 .styleList li{
  margin-bottom: 5px;
 }

 .styleList2{
  grid-template-columns: repeat(2, 1fr);
 }


 .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;
  right: 12px;
  width: 40px;
  height: 40px;
 }
 .sp-menuBtn .sp-menuBtn__inner {
  transition: transform 0.5s;
  position: relative;
  top: 18px;
  width: 40px;
  height: 2px;
  background: #fff;
  transition: .5s;
 }
 .sp-menuBtn .sp-menuBtn__inner::after {
  transition: transform 0.5s;
  position: absolute;
  top: -10px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: .5s;
 }
 .sp-menuBtn .sp-menuBtn__inner::before {
  transition: transform 0.5s;
  position: absolute;
  top: 10px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: .5s;
 }

 .sp-menuBtn.active .sp-menuBtn__inner {
  background: transparent;
 }
 .sp-menuBtn.active .sp-menuBtn__inner::after {
  top:0px;
  animation: 1s animeCloseMenu1 forwards;
 }
 .sp-menuBtn.active .sp-menuBtn__inner::before {
  top:0px;
  animation: 1s animeCloseMenu2 forwards;
 }
 @keyframes animeCloseMenu1{
  0% {
   transform:rotate(0deg);
  }
  50% {
   transform:rotate(0deg);
  }
  100% {
   transform:rotate(45deg);
  }
 }
 @keyframes animeCloseMenu2{
  0% {
   transform:rotate(0deg);
  }
  50% {
   transform:rotate(0deg);
  }
  100% {
   transform:rotate(-45deg);
  }
 }

 .sp-menuBtn span {
  color: #fff;
  font-size: 12px;
  position: fixed;
  z-index: 999;
  top: 42px;
  right: 12px;
  display: block;
  width: 40px;
  text-align: center;
 }
 .sp-menuArea {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0px;
  height: 0px;
  width: 100%;
  height: 100%;
  background: #660000;
  overflow-y: auto;
 }
 .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: #fff;
 }
 .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 #fff;
  border-top: solid 4px transparent;
  border-bottom: solid 4px transparent;
 }

 .sp-maxWidth800{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto
 }
 .sp-maxWidth600{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
 }
 .sp-maxWidth456{
  max-width: 456px;
  margin-left: auto;
  margin-right: auto
 }
 .sp-maxWidth400{
  max-width: 400px;
  margin-left: auto;
  margin-right: auto
 }
.sp-maxWidth359{
  max-width: 359px;
  margin-left: auto;
  margin-right: auto
 }
	
 .font-m{
  font-size: 100%;
 }
 .font-ml{
  font-size: 110%;
 }
 .font-l{
  font-size: 125%;
 }
 .font-ll{
  font-size: 150%;
 }
 .font-lll{
  font-size: 200%;
 }
 .sp-font-l{
  font-size: 150%;
 }
 .sp-font-m{
  font-size: 100%;
 }
 .sp-font-s{
  font-size: 80%;
 }
 .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-m0auto{
  margin: 0 auto;
 }
 .sp-mb0{
  margin-bottom: 0px;
 }
 .sp-mb1em{
  margin-bottom: 1em;
 }
 .sp-mb2em{
  margin-bottom: 2em;
 }
 .sp-mb3em{
  margin-bottom: 3em;
 }
 .sp-mb25{
  margin-bottom: 25px;
 }
 .sp-mb50{
  margin-bottom: 50px;
 }
 .sp-mt0{
  margin-top: 0px;
 }
 .sp-mt1em{
  margin-top: 1em;
 }
 .sp-mt2em{
  margin-top: 2em;
 }
 .sp-mt3em{
  margin-top: 3em;
 }
 .sp-mt10{
  margin-top: 10px;
 }
 .sp-mt25{
  margin-top: 25px;
 }
 .sp-mt50{
  margin-top: 50px;
 }
 .sp-mr0{
  margin-right: 0px;
 }
 .sp-ml0{
  margin-left: 0px;
 }
 .sp-pb0{
  padding-bottom: 0px;
 }
 .sp-pb1em{
  padding-bottom: 1em;
 }
 .sp-pb2em{
  padding-bottom: 2em;
 }
 .sp-pb3em{
  padding-bottom: 3em;
 }
 .sp-pb25{
  padding-bottom: 25px;
 }
 .sp-pb50{
  padding-bottom: 50px;
 }
 .sp-pt0{
  padding-top: 0px;
 }
 .sp-pt1em{
  padding-top: 1em;
 }
 .sp-pt2em{
  padding-top: 2em;
 }
 .sp-pt3em{
  padding-top: 3em;
 }
 .sp-pt10{
  padding-top: 10px;
 }
 .sp-pt25{
  padding-top: 25px;
 }
 .sp-pt50{
  padding-top: 50px;
 }
 .sp-pr0{
  padding-right: 0px;
 }
 .sp-pl0{
  padding-left: 0px;
 }
 .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% !important;
 }
 .sp-w20{
  width: 20% !important;
 }
 .sp-w30{
  width: 30% !important;
 }
 .sp-w40{
  width: 40% !important;
 }
 .sp-w50{
  width: 50% !important;
 }
 .sp-w60{
  width: 60% !important;
 }
 .sp-w70{
  width: 70% !important;
 }
 .sp-w80{
  width: 80% !important;
 }
 .sp-w90{
  width: 90% !important;
 }
 .sp-w100{
  width: 100% !important;
 }
 .sp-p0{
  padding: 0px;
 }
 .sp-p10{
  padding: 10px;
 }
 .sp-p20{
  padding: 20px;
 }
 .sp-wAuto{
  width: auto;
 }

 #sec_pagettl h1{
  font-size: 150%;
 }

}

/*
===================================================
        sp small
===================================================
*/
@media screen and (max-width: 600px) {
 #sec_pagettl h1{
  font-size: 130%;
 }
 .styleList2{
  grid-template-columns: 1fr;
 }
}