@charset "UTF-8";
/* ----------------------------------
   reset.scss
---------------------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ----------------------------------
   variables.scss
---------------------------------- */
/* カラーパレット */
/* ----------------------------------
   Header
---------------------------------- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #E3E3E3;
  background-color: white;
  border-radius: 1rem;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 780px) {
  .site-header {
    border-radius: 0;
  }
}

.site-header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  height: 4.6rem;
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 780px) {
  .site-header-inner {
    height: 3.6rem;
  }
}

.mobile-menu-btn-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-area a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1024px) {
  .logo-area a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: inherit;
  }
}
@media (max-width: 780px) {
  .logo-area a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: inherit;
    gap: 0.2rem;
  }
}
.logo-area .logo {
  width: 90px;
}
@media (max-width: 1024px) {
  .logo-area .logo {
    width: 80px;
  }
}
.logo-area span {
  font-weight: 900;
  color: #5B3219;
  font-size: 1.2rem;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .logo-area span {
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .logo-area span {
    font-size: 1.2rem;
  }
}

/* デスクトップナビゲーション */
.desktop-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
@media (max-width: 912px) {
  .desktop-nav {
    gap: 1rem;
  }
}
@media (max-width: 780px) {
  .desktop-nav {
    display: none;
  }
}
.desktop-nav a {
  font-size: 0.95rem;
  font-weight: 800;
  color: #555;
  display: block;
  position: relative;
}
.desktop-nav a:hover {
  color: #9fca2a;
}
.desktop-nav a.is-current {
  color: #9fca2a;
}
.desktop-nav a.is-current::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background-color: #9fca2a;
}
@media (max-width: 1024px) {
  .desktop-nav a {
    font-size: 0.9rem;
  }
}
.desktop-nav a.a-btn {
  color: white;
}

/* ハンバーガーボタン */
.hamburger {
  position: relative;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 780px) {
  .hamburger {
    display: none;
  }
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: rgb(51, 51, 51);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}

.hamburger__line:nth-of-type(2) {
  top: 23px;
}

.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

.mobile-menu-body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 20;
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #E3E3E3;
  font-size: 1.1rem;
  border-radius: 0 0 1.25rem 1.25rem;
}
.mobile-menu-body a {
  font-weight: 800;
  font-size: 0.9rem;
}

.mobile-menu-footer {
  border-top: 1px solid #E3E3E3;
  padding: 1rem 0.25rem 0.25rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}/*# sourceMappingURL=header.css.map */