@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
  color:#241e1e;
  margin:0;
  padding:0;
  background:#FFFFFF;
  font-family: "Noto Sans JP", serif;
  text-align:center;
  font-size:100%;
  -webkit-text-size-adjust: none;
  position:relative;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: 0.12em;
}

a:link,
a:visited,
a:hover,
a:active { color:#241e1e;text-decoration:none;}

ul{ list-style:none;}

img {
  padding:0px;
  margin:0px;
  vertical-align:bottom;
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity:0.7;
}

/*
html ----------------------------------------------------------*/

/*
font-family: "Noto Serif JP", serif;
*/

/* body base
===============================================================*/


.l-wrap {
  padding: 120px 0 0 0;
}
.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 40px;
}
@media screen and (max-width: 1200px) {
  .l-wrap {
    padding: 80px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .l-wrap {
    padding: 60px 0 0 0;
  }
  .l-inner {
    padding: 0 30px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
.l-headerWrap {
  display: flex;
  align-items: center;
  height: 120px;
  background: #efefef;
}
.l-headerLogo {
  margin-left: 66px;
  max-width: 331px;
}

.l-headerMenuBtn {
  display : flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 25px;
  right: 25px;
  height: 70px;
  width: 70px;
  cursor: pointer;
  z-index: 10000;
  background: #421e12;
  border-radius: 50%;
}
.l-headerMenuBtnInner,
.l-headerMenuBtnInner span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.l-headerMenuBtnInner {
  position: relative;
  width: 32px;
  height: 27px;
  background: none;
  border: none;
  appearance: none;
}
.l-headerMenuBtnInner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFF;
}
.l-headerMenuBtnInner span:nth-of-type(1) {
  top: 0;
}
.l-headerMenuBtnInner span:nth-of-type(2) {
  top: 12px;
}
.l-headerMenuBtnInner span:nth-of-type(3) {
  bottom: 0;
}
.l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(2) {
  opacity: 0;
}
.l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.l-headerMenu {
  position: absolute;
  top: 120px;
  background: rgba(0,0,0,0.8);
  color: #FFF;
  width: 100%;
  display: none;
}
.l-headerMenuInner {
  height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}
.l-gNav {
  width: 100%;
}
.l-gNavMenu {
}
.l-gNavMenu li {
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
}
.l-gNavMenu li:nth-of-type(n + 2) {
  margin-top: 30px;
}
.l-gNavMenu li a {
  display: block;
  color: #FFF;
}
@media screen and (max-width: 1200px) {
  .l-headerWrap {
    height: 80px;
  }
  .l-headerLogo {
    margin-left: 40px;
    max-width: 300px;
  }

  .l-headerMenuBtn {
    height: 60px;
    width: 60px;
    top: 10px;
    right: 10px;
  }
  .l-headerMenuBtnInner {
    width: 28px;
    height: 21px;
  }
  .l-headerMenuBtnInner span {
    height: 2px;
  }
  .l-headerMenuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .l-headerMenuBtnInner span:nth-of-type(2) {
    top: 9px;
  }
  .l-headerMenuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(2) {
    opacity: 0;
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }

  .l-headerMenu {
    top: 80px;
  }
  .l-headerMenuInner {
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 768px) {
  .l-headerWrap {
    height: 60px;
  }
  .l-headerLogo {
    margin-left: 30px;
    max-width: 210px;
  }

  .l-headerMenuBtn {
    height: 50px;
    width: 50px;
    top: 5px;
    right: 5px;
  }
  .l-headerMenuBtnInner {
    width: 25px;
    height: 20px;
  }
  .l-headerMenuBtnInner span {
    height: 2px;
  }
  .l-headerMenuBtnInner span:nth-of-type(1) {
    top: 0;
  }
  .l-headerMenuBtnInner span:nth-of-type(2) {
    top: 9px;
  }
  .l-headerMenuBtnInner span:nth-of-type(3) {
    bottom: 0;
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(2) {
    opacity: 0;
  }
  .l-headerMenuBtn.is-open .l-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }

  .l-headerMenu {
    top: 60px;
  }
  .l-headerMenuInner {
    height: calc(100vh - 60px);
  }
  .l-gNav {
  }
  .l-gNavMenu {
  }
  .l-gNavMenu li {
    font-size: 18px;
    line-height: 1.4;
  }
  .l-gNavMenu li:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .l-gNavMenu li a {
  }
}

.l-flowContact {
  position: fixed;
  top: 42px;
  right: 120px;
  z-index: 10010;
}
.l-flowContactInner {
  
}
.l-flowContact__tel a {
  font-size: 26px;
  line-height: 1.3;
  margin-top: 8px;
}
.l-flowContact__tel a > span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 22px;
}
.l-flowContact__tel a > span:before {
  content: '';
  display: block;
  background: url("../images/common/icon-tel2.png") no-repeat center;
  background-size: contain;
  width: 17px;
  height: 24px;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .l-flowContact {
    top: 22px;
    right: 90px;
  }
}
@media screen and (max-width: 768px) {
  .l-flowContact {
    top: auto;
    bottom: 0;
    right: 0px;
    background: #421e12;
    width: 100%;
    padding: 5px ;
    box-sizing: border-box;
  }
  .l-flowContact__tel a {
    font-size: 20px;
    margin-top: 0;
    height: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #FFF;
  }
  .l-flowContact__tel a > span {
    display: inline-block;
    position: relative;
    padding: 0 0 0 20px;
  }
  .l-flowContact__tel a > span:before {
    content: '';
    display: block;
    background: url("../images/common/icon-tel3.png") no-repeat center;
    background-size: contain;
    width: 14px;
    height: 20px;
    position: absolute;
    top: 5px;
    left: 0;
  }
}


.l-footer {
  background: #2b180f;
  color: #FFF;
  padding: 30px 0;
}
.l-footerCopy {
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 22px 0 72px;
  }
  .l-footerCopy {
    font-size: 11px;
    line-height: 1.4;
  }
}