@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
/*----------------------------------------------
 reset styles
----------------------------------------------*/
main { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; display:block; } 

/*----------------------------------------------
 formatting styles
----------------------------------------------*/
html { font-size: 62.5%; } 
body {
  font-family: 'Noto Serif JP', serif;
	font-size: 1.6em;/* =16px */
  color: #333333;
  min-width: 1080px;
}
@media screen and (max-width:767px) {
  body {
    -webkit-text-size-adjust: 100%;
    min-width: initial;
  }
}

@media screen and (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a {
  color: #333333;
  text-decoration: none;
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.7;
}
img {
	border-style: none;
}
ul {
  list-style: none;
}
em {
  font-style: normal;
  font-weight: bold;
}
.nomalFont {
  font-family: "Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}
.spOnly {
  display: none;
}
@media screen and (max-width:767px) {
  .spOnly {
    display: block;
  }
}

/*----------------------------------------------
 clearfix
----------------------------------------------*/
.clearfix:after {
    content:"";
    display:block;
    clear:both;
}

/*----------------------------------------------
 box-sizing
----------------------------------------------*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ----------------------------------------------
header
----------------------------------------------*/
header {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 100px;
}
#headerHead {
  display: flex;
  justify-content: space-between;
  padding: 10px 44px 10px 20px;
  width: 100%;
  height: 100px;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  #headerHead {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
}
#menu ul {
  display: flex;
  padding-top: 30px;
}
#menu ul li a {
  display: inline-block;
  font-weight: bold;
  margin: 0 1em;
}
header h1 {
  font-size: 4.2rem;
  text-align: center;
  color: #fff;
  padding-top: 125px;
}
.menuBtn {
    display: none;
}
#spMenu {
  display: none;
}
@media screen and (max-width:767px) {
  header {
    padding-top: 0;
  }
  #headerHead {
    display: block;
    padding: 3px 0;
    height: 60px;
  }
  #headerHead #logo img {
    width: auto;
    height: 54px;
  }
  header h1 {
    font-size: 2.6rem;
    padding-top: 90px;
  }
  .menuBtn {
    display: block;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border: none;
    background-color: #A02900;
    box-shadow: 0 0 0 0;
    padding-top: 32px;
    font-size: 1.1rem;
    color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    transition-duration: 0.3s;
    z-index: 100;
  }
  .menuBtn::before {
    font-family: 'Noto Serif JP', serif;
    content: "メニュー";
    letter-spacing: -0.1em;
    white-space: nowrap;
  }
  .menuBtn span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.5s all;
    position: absolute;
    top: 13px;
    left: 16px;
  }
  .menuBtn span:nth-child(2) {
    top: 22px;
  }
  .menuBtn span:nth-child(3) {
    top: 31px;
  }
  #menu ul {
    display: none;
  }
  body.noScrol {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .noScrol header {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  .noScrol header h1 {
    display: none;
  }
  .noScrol #headerHead {
    background: rgb(182,82,60);
    background: linear-gradient(90deg, rgba(182,82,60,1) 0%, rgba(165,53,14,1) 100%);
    height: auto;
  }
  .noScrol #headerHead #logo {
     display: none;
  }
  .noScrol .menuBtn::before {
    content: "閉じる";
  }
  .noScrol .menuBtn span {
    transform: rotate(225deg);
    top: 22px;
  }
  .noScrol .menuBtn span:nth-child(2) {
    transform: rotate(0);
    top: 22px;
    opacity: 0;
  }
  .noScrol .menuBtn span:nth-child(3) {
    transform: rotate(-225deg);
    top: 22px;
  }
  .noScrol #menu ul {
    display: block;
    width: 100%;
    padding: 35px 0 50px;
    background: url("../img/menubg.png") no-repeat 50% 100%;
  } 
  .noScrol #menu ul li a {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 2.2rem;
    color: #fff;
    text-align: center;
    padding: 25px 0;
  }
  .noScrol #menu ul li a:hover {
    opacity: 1;
  }
  .noScrol #spMenu {
    display: block;
    background-color: #fff;
    padding: 1px 0 40px;
  }
  .noScrol #spMenu .contactBox .bnr {
    margin-top: 40px;
  }
}


/* ----------------------------------------------
main
----------------------------------------------*/
main {
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

/* ----------------------------------------------
footoer
----------------------------------------------*/
footer {
  border-top: 1px solid #CCCCCC;
  padding-top: 60px;
}
.contactBox {
  width: 1080px;
  margin: auto auto 40px;
  display: flex;
  justify-content: space-between;
}
.contactBox > div,
.contactBox > p {
  width: 340px;
  height: 120px;
}
.contactBox p.contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid;
  font-weight: bold;
  font-size: 2.0rem;
}
.contactBox p.contact a img {
  width: 20px;
  height: auto;
  margin-right: 5px;
}
.contactBox p.contact.tel a {
  font-size: 2.4rem;
  border-color: #CCCCCC;
}
.contactBox .bnr a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  border: 1px solid #333333;
}
.contactBox .bnr a .img {
  width: 76px;
  height: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactBox .bnr a .img img {
  display: inline-block;
  width: 65px;
  height: auto;
  margin-right: 5px;
}
.contactBox .bnr a .text {
  width: calc(100% - 76px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3px;
}
.contactBox .bnr a .text span {
  display: block;
  line-height: 0;
  padding-right: 12px;
  text-align: center;
  margin-bottom: 14px;
}
.contactBox .bnr a .text span img {
  width: auto;
  height: 30px;
}
.contactBox .bnr a .text em {
  display: block;
  font-size: 1.8rem;
}

.snsBox {
  display: flex;
  justify-content: center;
}
.snsBox p {
  margin: 0 10px;
}
.snsBox a img {
  width: 40px;
  height: auto;
}
footer small {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #808080;
  padding: 40px 0;
}
@media screen and (max-width:767px) {
  .contactBox {
    width: calc(100% - 30px);
    margin: auto auto 40px;
    display: block;
  }
  .contactBox > div,
  .contactBox > p {
    width: 100%;
    height: auto;
  }
  .contactBox p.contact a {
    height: 60px;
    margin-top: 20px;
  }
  .contactBox p.contact.tel a {
    margin-top: 40px;
    border-color: #333;
  }
  .contactBox .bnr a {
    height: 100px;
  }
  .contactBox .shop img {
    width: 100%;
    height: auto;
  }
  #spMenu .contactBox {
    padding-top: 40px;
  }
}




