@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  list-style: none; }

img {
  vertical-align: top; }

a img {
  border: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset, img {
  border: 0; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before, q:after {
  content: ''; }

abbr, acronym {
  border: 0; }

html {
  font-size: 62.5%; }

* {
  box-sizing: border-box; }

body {
  font-family: 'Noto Serif JP', serif; }

.catch {
  font-family: 'Noto Sans JP', sans-serif; }

::selection {
  background: rgba(84, 155, 34, 0.1); }

::-moz-selection {
  background: rgba(84, 155, 34, 0.1); }

body {
  position: relative;
  color: #0F0E0E; }
  @media (max-width: 767px) {
    body:after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #000;
      position: absolute;
      top: 0;
      left: 0;
      transition: 0.3s all;
      opacity: 0;
      pointer-events: none; }
    body.nav-active:after {
      opacity: 0.5; } }

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block; }

.sp {
  display: none; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media (max-width: 767px) {
  .pc {
    display: none; }

  .sp {
    display: block; } }
a {
  transition: all 0.3s;
  text-decoration: none; }

.is-show {
  opacity: 1 !important; }

.l-header {
  display: flex;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background: #fff; }
  @media (max-width: 767px) {
    .l-header {
      height: 60px;
      display: block;
      padding: 10px; } }
  .l-header_wrapper {
    width: 100%;
    justify-content: space-between; }
    @media (min-width: 768px) {
      .l-header_wrapper {
        display: flex; } }
  .l-header_logo {
    text-align: left;
    margin: 0 1%; }
    @media (max-width: 767px) {
      .l-header_logo img {
        max-width: 90px;
        margin: auto 0; } }
    .l-header_logo a {
      align-items: center;
      height: 100%; }
      @media (min-width: 768px) {
        .l-header_logo a {
          display: flex;
          margin: 0;
          margin-left: 10px; } }
      @media (min-width: 768px) {
        .l-header_logo a .logo {
          margin-right: 40px; } }
      @media (max-width: 767px) {
        .l-header_logo a .logo {
          margin-right: 10px;
          text-align: left; } }
  @media (min-width: 768px) {
    .l-header_nav {
      margin: 0 1%; } }
  .l-header_nav ul {
    display: flex; }
    .l-header_nav ul li {
      position: relative; }
      .l-header_nav ul li a {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.5;
        color: #0F0E0E;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        height: 80px;
        margin: 0 25px;
        text-align: center;
        position: relative;
        text-decoration: none; }
        @media (max-width: 767px) {
          .l-header_nav ul li a {
            height: auto; } }
        .l-header_nav ul li a:after {
          content: "";
          width: 0;
          height: 1px;
          left: 0;
          background: #549B22;
          position: absolute;
          bottom: 20px;
          transition: 0.3s all; }
        .l-header_nav ul li a:hover {
          text-decoration: none; }
          .l-header_nav ul li a:hover:after {
            width: 100%;
            height: 1px; }
    .l-header_nav ul li ul {
      list-style: none;
      position: absolute;
      top: 100%;
      left: 0;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      width: 200%; }
    .l-header_nav ul li ul li {
      overflow: hidden;
      width: 200%;
      height: 0;
      color: #fff;
      -moz-transition: .2s;
      -webkit-transition: .2s;
      -o-transition: .2s;
      -ms-transition: .2s;
      transition: .2s; }
      .l-header_nav ul li ul li a {
        background: #7a6a56;
        text-align: left;
        height: 40px;
        padding: 0 25px; }
    .l-header_nav ul li:hover ul li {
      overflow: visible;
      height: 41px;
      border-bottom: 1px solid #fff; }
    .l-header_nav ul li:hover ul li:first-child {
      border-top: 0; }
    .l-header_nav ul li:hover ul li:last-child {
      border-bottom: 0; }
    .l-header_nav ul .nav-reserve a {
      color: #549B22; }
      .l-header_nav ul .nav-reserve a:after {
        display: none; }
      .l-header_nav ul .nav-reserve a span {
        font-size: 13px;
        font-size: 1.3rem;
        line-height: 1.8461538462;
        background: #fff;
        display: block;
        padding: 10px 20px;
        border-radius: 100px;
        transition: 0.1s all; }
      .l-header_nav ul .nav-reserve a:hover span {
        background: #004a3c; }
  .l-header_nav .nav-logo {
    margin: 10px;
    text-align: left; }
    @media (min-width: 768px) {
      .l-header_nav .nav-logo {
        display: none; } }
    @media (max-width: 767px) {
      .l-header_nav .nav-logo .sp {
        max-width: 300px; } }

@media screen and (min-width: 767px) {
  .navToggle {
    display: none; } }
@media screen and (max-width: 767px) {
  .nav-reserve a {
    background: #fff;
    color: #fff !important; }
    .nav-reserve a:after {
      background: #0F0E0E; }
    .nav-reserve a span {
      display: block;
      font-size: 10px;
      font-size: 1rem;
      line-height: 1; }

  /* ハンバーガー */
  /* ハンバーガー */
  nav.l-header_nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%; }

  nav.l-header_nav ul {
    background: #549B22;
    margin: 0 auto;
    padding: 0;
    width: 100%; } }
  @media screen and (max-width: 767px) and (max-width: 767px) {
    nav.l-header_nav ul {
      display: block; } }

@media screen and (max-width: 767px) {
  nav.l-header_nav ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff; }

  /* 最後はラインを描かない */
  nav.l-header_nav ul li:last-child {
    padding-bottom: 0;
    border-bottom: none; }

  nav.l-header_nav ul li a {
    display: block;
    color: #fff;
    padding: 1em 0; }

  /* このクラスを、jQueryで付与・削除する */
  nav.l-header_nav.active {
    transform: translateY(0%); }

  /* ハンバーガー用 */
  /* ハンバーガー用 */
  .navToggle {
    display: block;
    position: fixed;
    /* bodyに対しての絶対位置指定 */
    background-color: #fff;
    right: 0;
    top: 7px;
    width: 42px;
    height: 45px;
    cursor: pointer;
    z-index: 3;
    text-align: center; }

  .navToggle span {
    display: block;
    position: absolute;
    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #549B22;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px; }

  .navToggle span:nth-child(1) {
    top: 13px; }

  .navToggle span:nth-child(2) {
    top: 22px; }

  .navToggle span:nth-child(3) {
    top: 31px; }

  .navToggle span:nth-child(4) {
    border: none;
    color: #549B22;
    font-size: 6px;
    font-weight: bold;
    top: 38px; }

  /* 最初のspanをマイナス45度に */
  .navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg); }

  /* 2番目と3番目のspanを45度に */
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg); } }
#top-contact {
  position: fixed;
  z-index: 2;
  top: 100px;
  right: 0;
  background-color: #F8E520;
  display: inline;
  text-align: center;
  padding: 10px 20px;
  font-weight: 800; }
  #top-contact a {
    color: #549B22;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3888888889; }
  #top-contact a:hover {
    opacity: 0.7; }
  @media (max-width: 767px) {
    #top-contact {
      display: none; } }

#footer-contact {
  width: 100%;
  padding: 15px;
  position: fixed;
  z-index: 2;
  bottom: 0;
  background-color: #F8E520;
  display: inline;
  text-align: center;
  font-weight: 800;
  display: table-cell;
  /* IE8から使用可能 */
  vertical-align: middle; }
  #footer-contact a {
    color: #549B22;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3888888889; }
  #footer-contact a:hover {
    opacity: 0.7; }
  @media (min-width: 768px) {
    #footer-contact {
      display: none; } }

.l-footer {
  background: #549B22;
  width: 100%;
  padding: 20px 0;
  color: #fff;
  text-align: center; }
  @media (max-width: 767px) {
    .l-footer {
      margin-bottom: 50px; } }
  .l-footer_wrapper {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px; }
    .l-footer_wrapper address {
      font-size: 10px;
      font-size: 1rem;
      line-height: 2.4;
      margin-top: 10px; }
    .l-footer_wrapper .f_logo {
      width: 100px;
      margin: 0 auto;
      margin-bottom: 20px; }
    .l-footer_wrapper h2 {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.5;
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        .l-footer_wrapper h2 {
          margin-bottom: 5px; } }
    .l-footer_wrapper a {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.8461538462;
      color: #fff;
      margin: 0 10px; }
    .l-footer_wrapper a:hover {
      text-decoration: underline; }

.l-main, .l-page {
  width: 100%;
  margin: 0 auto; }
  .l-main .l-title, .l-page .l-title {
    font-size: 35px;
    font-size: 3.5rem;
    line-height: 1.4285714286;
    margin: 50px auto;
    font-family: "Noto Serif JP", serif;
    color: #549B22; }
  .l-main_wrapper, .l-page_wrapper {
    margin: 0 auto; }
  .l-main .l-title_wrapper, .l-page .l-title_wrapper {
    text-align: center; }

@media (min-width: 768px) {
  .pcnone {
    display: none; } }

@media (max-width: 767px) {
  .spnone {
    display: none; } }

/*# sourceMappingURL=common.css.map */
