@charset "UTF-8";
.l-header {
  width: 100%;
  background: #fffcf4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
}
.l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__inner {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 5px 15px;
  }
}
.l-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 1025px) {
  .l-header__top {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-header__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__logo-group {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo-group {
    margin-top: 5px;
  }
}
.l-header__tagline {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3a2205;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__tagline {
    font-size: 12px;
    line-height: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__tagline {
    font-size: 12px;
    line-height: 1rem;
  }
}
.l-header__logo a {
  width: 370px;
  aspect-ratio: 370/80;
  height: auto;
  display: block;
  background: url(../images/common/satsuki_logo.png) no-repeat center/contain;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__logo a {
    width: 220px;
    aspect-ratio: 370/80;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo a {
    width: 220px;
    aspect-ratio: 370/80;
  }
}
.l-header__logo h1 {
  margin: 0;
  line-height: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__info {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__info {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header__nav-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.l-header__nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 50%;
  border-right: 2px dotted #b28850;
}
.l-header__nav-item:last-child::after {
  display: none;
}
.l-header__nav-item > a,
.l-header__nav-item > .info-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  display: block;
  padding: 12px 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header__nav-item > a:hover,
.l-header__nav-item > .info-link:hover {
  opacity: 0.7;
}
.l-header__nav-item > a .ja,
.l-header__nav-item > .info-link .ja {
  display: block;
  font-size: 16px;
  color: #3a2205;
  margin-bottom: 4px;
}
.l-header__nav-item > a .en,
.l-header__nav-item > .info-link .en {
  display: block;
  font-size: 11px;
  color: #ffc600;
}
.l-header__nav-item--has-dropdown:hover .l-header__dropdown, .l-header__nav-item--has-dropdown:focus-within .l-header__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.l-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1003;
  width: 210px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff4d3;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(8px);
          transform: translateX(-50%) translateY(8px);
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-box-shadow: 0 8px 18px rgba(80, 55, 20, 0.08);
          box-shadow: 0 8px 18px rgba(80, 55, 20, 0.08);
}
.l-header__dropdown-item {
  border-bottom: 1px solid #b28850;
}
.l-header__dropdown-item:last-child {
  border-bottom: none;
}
.l-header__dropdown-item a {
  position: relative;
  display: block;
  padding: 14px 18px 14px 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #3a2205;
  text-align: left;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.l-header__dropdown-item a::before {
  content: "▶";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 11px;
  color: #3a2205;
}
.l-header__dropdown-item a:hover {
  background: #ffe9ad;
  color: #b28850;
  opacity: 1;
}
.l-header__dropdown-item a:hover::before {
  color: #b28850;
}

.c-reserve-box {
  display: block;
  max-width: 560px;
  background-color: #ecf8d3;
  overflow: hidden;
  text-decoration: none;
}
.c-reserve-box__title {
  background-color: #90c31f;
  color: #ffffff;
  text-align: center;
  padding: 8px 0;
  margin: 0;
  letter-spacing: 0.05em;
}
.c-reserve-box__title p {
  font-size: 16px;
  font-weight: 500;
  color: #fffcf4;
}
.c-reserve-box__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 10px;
  gap: 20px;
}
.c-reserve-box__tel-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-right: 20px;
  border-right: 2px dotted #b28850;
}
.c-reserve-box__icon {
  display: inline-block;
  width: 15px;
  aspect-ratio: 15/25;
  margin-top: 5px;
  background: url(../../images/top/contact-phone.svg) no-repeat center/contain;
}
.c-reserve-box__tel {
  font-size: 24px;
  font-weight: 700;
  color: #6e9617;
  letter-spacing: 0.02em;
  line-height: 1;
}
.c-reserve-box__hours {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 12px;
  line-height: 1.2;
  color: #b28850;
  margin: 0;
}
.c-reserve-box__hours p {
  font-size: 12px;
  font-weight: 500;
  color: #b28850;
}
.c-reserve-box__holiday span {
  color: #fc6413;
  font-weight: bold;
}
.c-reserve-box__thursday span {
  color: #6e9617;
  font-weight: bold;
}

body.is-menu-open {
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .hamburger__btn,
  .hamburger__nav {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
.hamburger__btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1003;
}
.hamburger__btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #3a2205;
  border-radius: 999px;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.hamburger__btn span:nth-child(1) {
  top: 0;
}
.hamburger__btn span:nth-child(2) {
  top: 14px;
}
.hamburger__btn span:nth-child(3) {
  top: 28px;
}
.hamburger__btn.is-active span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger__btn.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger__btn.is-active span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger__text {
  position: absolute;
  bottom: -22px;
  left: 50%;
  margin: 0;
  color: #ffc600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hamburger__nav {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: #fffcf4;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: visibility 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: visibility 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1000;
}
.hamburger__nav.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hamburger__nav-inner {
  width: 100%;
  height: 100%;
  padding: 92px 18px 40px;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.hamburger__menu {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.hamburger__menu-item {
  border-bottom: 1px solid #b28850;
}
.hamburger__menu-item:first-child {
  border-top: none;
}
.hamburger__menu-item > a {
  display: block;
  padding: 20px 10px;
  color: #3a2205;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hamburger__menu-item > a:hover {
  opacity: 0.7;
}
.hamburger__menu-item:nth-child(2) {
  margin-bottom: 0;
}
.hamburger__menu-item--accordion {
  border-bottom: 1px solid #b28850;
}
.hamburger__accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px 10px 16px;
  color: #3a2205;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger__accordion-icon {
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-right: 2px solid #3a2205;
  border-bottom: 2px solid #3a2205;
  -webkit-transform: translateY(-2px) rotate(45deg);
          transform: translateY(-2px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hamburger__accordion-title.is-open .hamburger__accordion-icon {
  -webkit-transform: translateY(3px) rotate(225deg);
          transform: translateY(3px) rotate(225deg);
}
.hamburger__accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: grid-template-rows 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
  transition: grid-template-rows 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
  transition: grid-template-rows 0.3s ease, visibility 0.3s ease, opacity 0.3s ease, -ms-grid-rows 0.3s ease;
}
.hamburger__accordion-content.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}
.hamburger__accordion-inner {
  min-height: 0;
  overflow: hidden;
}
.hamburger__submenu {
  margin: 0;
  padding: 0 10px 16px;
  list-style: none;
}
.hamburger__submenu-item {
  overflow: hidden;
  margin-top: 12px;
  background-color: #fff5d5;
  border-radius: 10px;
}
.hamburger__submenu-item:first-child {
  margin-top: 0;
}
.hamburger__submenu-item a {
  position: relative;
  display: block;
  padding: 12px 16px 12px 36px;
  color: #3a2205;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hamburger__submenu-item a::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #3a2205;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger__submenu-item a:hover {
  opacity: 0.7;
}

.sp-fix-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  .sp-fix-nav {
    display: none;
  }
}
.sp-fix-nav__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 82%;
  text-decoration: none;
  background-color: #ecf8d3;
}
.sp-fix-nav__tel > span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28%;
  height: 100%;
  background-color: #90c31f;
  color: #fffcf4;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-fix-nav__tel > span {
    font-size: 20px;
  }
}
.sp-fix-nav__tel .tel-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-fix-nav__tel .tel-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sp-fix-nav__tel .tel-info__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6e9617;
  margin-bottom: 5px;
}
.sp-fix-nav__tel .tel-info__tel span {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.sp-fix-nav__tel .tel-info .icon {
  width: 16px;
  height: 25px;
  padding-right: 3px;
  padding-top: 3px;
}
.sp-fix-nav__tel .tel-info .number {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1;
}
.sp-fix-nav__tel .tel-info__body {
  font-size: 10px;
  font-weight: 500;
  color: #b28850;
  text-align: center;
}
.sp-fix-nav__tel .tel-info__hours p {
  font-size: 10px;
  line-height: 1.2;
  color: #b28850;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-fix-nav__tel .tel-info__hours p {
    font-size: 12px;
    text-align: left;
  }
}
.sp-fix-nav__tel .tel-info__holiday span {
  color: #fc6413;
  font-weight: 700;
}
.sp-fix-nav__tel .tel-info__thursday span {
  color: #6e9617;
  font-weight: 700;
}
.sp-fix-nav__pageTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18%;
  background-color: #ffc600;
  text-decoration: none;
}
.sp-fix-nav__pageTop .arrow {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/top/arrow-up.svg) no-repeat center/contain;
  margin-top: -2px;
}