@charset "UTF-8";
/*
base
1. default
2. header
3. footer
4. contact

———————————————————- */
/*----- 1. default -----*/
.titleLogo {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: url(../img/titleLogo.png) 0 0 no-repeat;
  background-size: contain;
  display: block;
  height: 100%;
  width: 100%;
}

.container {
  margin-top: 50px;
}

.spaceWrap {
  padding: 30px 0;
}

header nav .listNav > li > a, footer nav .listNav > li > a {
  font-size: 1.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #ce573c;
}
header nav .listNav > li > a:before, footer nav .listNav > li > a:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13.9px 8px 0 8px;
  border-color: #77625e transparent transparent transparent;
  margin-right: 5px;
}

/*----- 2. header -----*/
header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  border-bottom: 2px solid #ce573c;
  padding: 2px 5px;
  z-index: 1400;
}
header .title h1 {
  font-size: 4vw;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
header .title .titleLogo {
  max-height: calc(100% - 22px);
}
header nav .listNav .second a {
  display: block;
  background-color: #787f18;
  color: #fff;
  padding: 8px 10px;
}
header nav .contactNav li {
  width: 100%;
}
header nav .contactNav li a {
  background-color: #ef840f;
}
header nav .contactNav a {
  display: block;
  width: 100%;
  color: #fff;
  padding: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  text-align: center;
}

/*----- headWrap -----*/
.headWrap:before {
  content: '';
  display: block;
  background: url(../img/baseHeader.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 20vw;
}
.headWrap .breadcrumbs {
  padding: 5px 0;
  display: flex;
  flex-wrap: wrap;
}
.headWrap .breadcrumbs li {
  margin-right: .5em;
}
.headWrap .breadcrumbs li + li:before {
  content: '>';
  margin-right: .5em;
}
.headWrap .breadcrumbs li a {
  font-size: 1.4rem;
  color: #000;
}
.headWrap .breadcrumbs li a[href] {
  border-bottom: 1px solid #000;
}
.headWrap .breadcrumbs li a[href]:hover {
  border-bottom: none;
}
.headWrap h2 {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #787f18;
  padding: 10px 0;
  border: 1px solid #787f18;
}

/*----- 3. footer -----*/
footer {
  background-color: #f4f4f4;
  padding-top: 30px;
}
footer .title p {
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
footer address {
  margin-top: 10px;
}
footer nav .listNav {
  display: flex;
  justify-content: flex-end;
}
footer nav .listNav > li {
  margin-left: 30px;
}
footer nav .second {
  margin-top: 5px;
}
footer nav .second li {
  margin-bottom: 5px;
}
footer nav .second a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #000;
}
footer .copy {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #ce573c;
  font-size: 1.4rem;
  padding: 2px;
  margin-top: 10px;
}

/*----- 4. contact -----*/
.contactWrap {
  padding-bottom: 0;
}
.contactWrap .title {
  color: #787f18;
  font-size: 5.5vw;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.contactWrap .btnBox {
  margin-top: 15px;
}
.contactWrap .btnBox a {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  background-color: #787f18;
  padding: 20px 0;
}

/*---------- sp ----------*/
@media screen and (max-width: 812px) {
  .inner {
    width: 100%;
    padding: 0 15px;
    margin-top: 0;
  }

  header .title {
    padding-right: 50px;
    height: 100%;
  }

  #mNav {
    display: none;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 50px);
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 500;
    padding: 10px 0;
    flex-direction: column;
    justify-content: space-between;
  }
  #mNav .listNav {
    width: 100%;
  }
  #mNav .listNav > li {
    margin-bottom: 10px;
  }
  #mNav .listNav > li > a {
    padding: 10px;
  }
  #mNav .listNav .second li {
    margin-bottom: 2px;
  }
  #mNav .contactNav {
    padding: 0 10px;
  }
  #mNav .contactNav li {
    width: 100%;
    margin-bottom: 5px;
  }

  footer nav {
    display: none;
  }

  .contactWrap:after {
    content: '';
    display: block;
    height: 40vw;
    background: url(../img/bg_contact.jpg) center center no-repeat;
    background-size: cover;
    margin-top: 10px;
  }
}
/*---------- モバイル縦長 ----------*/
@media screen and (max-width: 812px) and (orientation: portrait) {
  .contactWrap .btnBox a {
    margin-bottom: 10px;
  }
}
/*---------- モバイル横長 ----------*/
@media screen and (max-width: 812px) and (orientation: landscape) {
  header .title h1 {
    font-size: 1.4rem;
  }

  .contactWrap .title {
    font-size: 2.4rem;
  }
  .contactWrap .btnBox a {
    width: 49.5%;
  }
}
/*---------- pc ----------*/
@media screen and (min-width: 813px) {
  .inner {
    width: 1000px;
    margin: 0 auto 0;
  }

  .container {
    margin-top: 70px;
  }

  header {
    height: 70px;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .title {
    width: 420px;
  }
  header .title h1 {
    font-size: 1.4rem;
  }
  header .title .titleLogo {
    margin-top: 5px;
    height: 30px;
  }
  header nav {
    display: flex;
  }
  header nav .listNav {
    display: flex;
    align-items: flex-end;
  }
  header nav .listNav > li {
    position: relative;
    margin-right: 55px;
  }
  header nav .listNav .second {
    position: absolute;
    top: 100%;
    left: 0;
    width: 170px;
    padding-top: 14px;
  }
  header nav .listNav .second li {
    overflow: hidden;
    height: 0;
    transition-duration: .2s;
  }
  header nav .listNav .second a:hover {
    background-color: #8c941c;
  }
  header nav .listNav .mouseHover:hover {
    cursor: default;
  }
  header nav .listNav .mouseHover:hover .second {
    display: block;
  }
  header nav .listNav .mouseHover:hover .second li {
    overflow: visible;
    height: 65px;
  }
  header nav .contactNav {
    width: 200px;
  }

  .headWrap {
    position: relative;
    height: 250px;
  }
  .headWrap:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: .2;
  }
  .headWrap .inner {
    position: relative;
    height: 100%;
  }
  .headWrap h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
    height: 3.5em;
    font-size: 3rem;
  }

  footer .inner {
    display: flex;
    justify-content: space-between;
  }
  footer .leftBox {
    width: 45%;
  }
  footer nav {
    width: 45%;
  }
  footer nav .listNav {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 370px;
  }
  footer nav .listNav > li:first-child {
    margin-bottom: 15px;
  }
  footer .copy {
    margin-top: 50px;
  }

  .contactWrap {
    position: relative;
    background: url(../img/bg_contact.jpg) center center no-repeat;
    background-size: cover;
    height: 457px;
    display: flex;
    align-items: center;
  }
  .contactWrap:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .contactWrap .inner {
    position: relative;
    z-index: 1;
  }
  .contactWrap .title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .contactWrap p {
    padding: 0 15px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
  }
  .contactWrap .btnBox {
    margin-top: 50px;
  }
  .contactWrap .btnBox a {
    padding: 30px 0;
    width: 49.5%;
    border: 1px solid #787f18;
  }
  .contactWrap .btnBox a:hover {
    background-color: #fff;
    color: #787f18;
  }
}
/*---------- タブレット ----------*/
@media screen and (min-width: 812px) and (max-width: 1200px) {
  header .title {
    width: 300px;
  }
  header nav .listNav > li > a {
    font-size: 1.6rem;
  }
  header nav .listNav .second a {
    font-size: 1.4rem;
  }
  header nav .listNav .mouseHover:hover .second li {
    height: 58px;
  }
  header nav .contactNav a {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=base.css.map */
