header *,
main *,
footer * {
  color: #74533F;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
body .l-container {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
body .c-button {
  padding: 10px 30px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background: #FE7474;
  border-radius: 50px;
  border: solid 2px #FE7474;
  box-sizing: border-box;
  transition: 0.2s;
  height: -moz-fit-content;
  height: fit-content;
}
body .c-button:hover {
  background: #fff;
}
body .c-button:hover .c-button__text,
body .c-button:hover .c-button__text span {
  color: #FE7474;
}
body .c-button:hover .c-button__icon {
  background: #FE7474;
  color: #fff;
}
body .c-button__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #fff;
  transition: 0.2s;
}
body .c-button__text span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  transition: 0.2s;
}
body .c-button__icon {
  background: #fff;
  color: #FE7474;
  width: 1.3rem;
  min-width: 1.3rem;
  height: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: 0.2s;
}
body .c-opening-hours {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
}
body .c-opening-hours__table {
  width: -moz-fit-content;
  width: fit-content;
  border-collapse: collapse;
  border: solid 1px #f00 inset;
  border-radius: 20px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: solid 1px #74533F;
}
body .c-opening-hours__table th,
body .c-opening-hours__table td {
  border-bottom: solid 1px #74533F;
  border-left: solid 1px #74533F;
  padding: 10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
body .c-opening-hours__table th:first-child,
body .c-opening-hours__table td:first-child {
  border-left: none;
}
body .c-opening-hours__table tr:last-child th,
body .c-opening-hours__table tr:last-child td {
  border-bottom: none;
}
body .c-opening-hours__table th {
  background: rgba(70, 170, 87, 0.2);
}
body .c-opening-hours__note {
  font-size: 0.9rem;
  margin-top: 5px;
  border: none;
  display: flex;
  justify-content: right;
  position: relative;
}

strong {
  font-weight: 600;
}

header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50px;
  background: #fff;
  z-index: 100;
  transition: 0.3s ease-out;
}
header.hidden {
  top: -100px;
}
header .l-header-inner {
  width: calc(100% - 9rem);
  height: 90px;
  padding: 20px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .l-header-inner .p-header-logo {
  height: 90%;
  position: relative;
  z-index: 101;
}
header .l-header-inner .p-header-logo img {
  height: 100%;
}
header .l-header-inner .p-global-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
header .l-header-inner .p-global-nav ul li {
  position: relative;
}
header .l-header-inner .p-global-nav ul li span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
header .l-header-inner .p-global-nav ul li span:hover {
  color: #F8991B;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-pulldown {
  z-index: 11;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-pulldown::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: solid 2px #46AA57;
  border-bottom: solid 2px #46AA57;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
header .l-header-inner .p-global-nav ul li .p-global-nav-pulldown:hover + .p-global-nav-sub {
  opacity: 1;
  display: flex;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-pulldown:hover + .p-global-nav-sub::before {
  display: block;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-sub {
  flex-direction: column;
  gap: 12px;
  width: 12rem;
  background: #fff;
  border: solid 2px #74533F;
  border-radius: 20px;
  box-sizing: border-box;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  opacity: 0;
  display: none;
  z-index: 5;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-sub::before {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  top: -50px;
  display: none;
  z-index: 0;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-sub:hover {
  opacity: 1;
  display: flex;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-sub:hover::before {
  display: block;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-sub li {
  text-align: center;
  position: relative;
  z-index: 1;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-sub li span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
header .l-header-inner .p-global-nav ul li .p-global-nav-sub li span:hover {
  color: #F8991B;
}
header .l-header-inner .p-contact {
  text-align: center;
}
header .l-header-inner .p-contact__label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #FE7474;
  font-size: 0.9rem;
}
header .l-header-inner .p-contact__tel {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  color: #FE7474;
  font-size: 1.8rem;
  margin-top: -0.5rem;
}
header .l-header-inner .p-header-hamburger {
  cursor: pointer;
  padding: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
}
header .l-header-inner .p-header-hamburger .p-header-hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
header .l-header-inner .p-header-hamburger .p-header-hamburger__lines li {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  display: block;
  background: #74533F;
  transition: 0.3s;
}
header .l-header-inner .p-header-hamburger .p-header-hamburger__label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 4px;
}
header .p-reservation {
  padding: 10px 0;
  width: 10rem;
  border-radius: 0 0 20px 20px;
  position: absolute;
  right: 0;
  top: 0;
  border-top: none;
  box-sizing: border-box;
}
header .p-reservation:hover::before {
  background: #fff;
}
header .p-reservation::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  top: -100px;
  left: -2px;
  background: #FE7474;
  transition: 0.2s;
  border-right: solid 2px #FE7474;
  border-left: solid 2px #FE7474;
}

.sp-bottom-menu {
  position: fixed;
  bottom: 0;
  z-index: 99;
  width: 100%;
  display: none;
  grid-template-columns: repeat(3, 1fr);
}
.sp-bottom-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 60px;
  padding-top: 0.1rem;
}
.sp-bottom-menu__item:nth-child(1) {
  background: #399ADF;
}
.sp-bottom-menu__item:nth-child(2) {
  background: #46AA57;
}
.sp-bottom-menu__item:nth-child(3) {
  background: #FE7474;
}
.sp-bottom-menu__item i {
  color: #fff;
  font-size: 1.1rem;
}
.sp-bottom-menu__item span {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.p-section-nav {
  width: 100%;
  height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 109;
  overflow-y: scroll;
  box-sizing: border-box;
  transition: 0.4s;
}
.p-section-nav.active {
  left: 0;
}
.p-section-nav__inner {
  background: #FEF8E8;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100%;
  padding: 30px 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 108;
  box-sizing: border-box;
}
.p-section-nav__inner-header {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.p-section-nav__inner-header-logo {
  width: 200px;
  margin-left: 5px;
}
.p-section-nav__inner-header-logo img {
  width: 100%;
}
.p-section-nav__inner-header .p-header-hamburger {
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
  margin-right: -10px;
}
.p-section-nav__inner-header .p-header-hamburger .p-header-hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-section-nav__inner-header .p-header-hamburger .p-header-hamburger__lines li {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  display: block;
  background: #74533F;
  transition: 0.3s;
}
.p-section-nav__inner-header .p-header-hamburger .p-header-hamburger__lines li:first-child {
  transform: rotate(20deg) translateY(4px);
}
.p-section-nav__inner-header .p-header-hamburger .p-header-hamburger__lines li:last-child {
  transform: rotate(-20deg) translateY(-5px);
}
.p-section-nav__inner-header .p-header-hamburger .p-header-hamburger__label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 4px;
}
.p-section-nav__inner-content {
  width: calc(100% - 120px);
  margin: 20px auto 0;
}
.p-section-nav__inner-content li {
  border-bottom: solid 1px rgba(116, 83, 63, 0.6);
}
.p-section-nav__inner-content li a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  color: #74533F;
  font-size: 1.6rem;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.p-section-nav__inner-content li a.active i {
  transform: rotate(-180deg);
}
.p-section-nav__inner-content li a span {
  font-weight: 500;
  font-size: 1rem;
}
.p-section-nav__inner-content li a i {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: -moz-fit-content;
  height: fit-content;
  transition: 0.2s;
}
.p-section-nav__inner-content ul {
  margin-bottom: 10px;
  display: none;
}
.p-section-nav__inner-content ul li {
  border: none;
}
.p-section-nav__inner-content ul li a {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 0.8rem;
  padding-left: 35px;
  position: relative;
}
.p-section-nav__inner-content ul li a::before {
  content: "";
  width: 5px;
  height: 2px;
  background: #74533F;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.p-section-nav__inner-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.p-section-nav__inner-bottom-contact {
  text-align: center;
}
.p-section-nav__inner-bottom-contact-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #FE7474;
  font-size: 1.1rem;
}
.p-section-nav__inner-bottom-contact-tel {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  color: #FE7474;
  font-size: 2.3rem;
  margin-top: -0.5rem;
}

main,
.editor-styles-wrapper {
  margin: 150px auto 80px;
  width: 100%;
}

footer {
  margin-top: auto;
}
footer .l-about {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 120px;
}
footer .l-about__information .p-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 60px 0 -15px;
}
footer .l-about__information .p-contact__tel-label {
  color: #FE7474;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
footer .l-about__information .p-contact__tel-tel {
  color: #FE7474;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-top: -0.3rem;
}
footer .l-about__information .p-contact__tel-tel i {
  color: #FE7474;
  margin-right: 5px;
}
footer .l-about__information .l-about-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .l-about__information .l-about-logo .p-about-logo__icon {
  width: 100px;
}
footer .l-about__information .l-about-logo .p-about-logo__text h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}
footer .l-about__information .l-about-logo .p-about-logo__text h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: -0.2rem;
  letter-spacing: 0.1rem;
}
footer .l-about__information .l-about-logo .p-about-logo__text-address {
  display: flex;
  gap: 10px;
  margin-top: 0.4rem;
}
footer .l-about__information .l-about-logo .p-about-logo__text-address span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
footer .l-about__map iframe {
  border-radius: 20px;
}
footer .p-scallop-section {
  background-color: #D1EFCF;
  padding: 20px 40px;
  position: relative;
  z-index: 0;
}
footer .p-scallop-section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  -webkit-mask-image: radial-gradient(circle at 30px -5px, transparent 30px, white 10.5px);
  mask-image: radial-gradient(circle at 30px -5px, transparent 30px, white 10.5px);
  -webkit-mask-size: 60px 60px;
  mask-size: 60px 60px;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  transform: rotate(180deg);
}
footer .l-footer {
  background: #D1EFCF;
  width: 100%;
}
footer .l-footer-container {
  padding: 30px 0;
  margin: 0 auto;
}
footer .l-footer-container .p-footer-nav {
  display: flex;
  justify-content: center;
  gap: 80px;
}
footer .l-footer-container .p-footer-nav ul:not(.p-footer-nav__small) li {
  line-height: 2.8rem;
  position: relative;
}
footer .l-footer-container .p-footer-nav ul:not(.p-footer-nav__small) li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #46AA57;
  border-right: solid 3px #46AA57;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25px;
  margin: auto 0;
}
footer .l-footer-container .p-footer-nav ul:not(.p-footer-nav__small) li a, footer .l-footer-container .p-footer-nav ul:not(.p-footer-nav__small) li span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem 0;
  transition: 0.3s;
}
footer .l-footer-container .p-footer-nav ul:not(.p-footer-nav__small) li a:hover {
  color: #46AA57;
}
footer .l-footer-container .p-footer-nav__small {
  margin-left: 20px;
}
footer .l-footer-container .p-footer-nav__small li {
  line-height: 2rem;
  position: relative;
}
footer .l-footer-container .p-footer-nav__small li::before {
  content: "";
  width: 10px;
  height: 2px;
  background: #74533F;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  margin: auto 0;
}
footer .l-footer-container .p-footer-nav__small li a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem 0;
  transition: 0.3s;
}
footer .l-footer-container .p-footer-nav__small li a:hover {
  color: #46AA57;
}
footer .l-footer-container #p-page-scroll {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background: #F8991B;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin-left: auto;
  margin-top: -60px;
  transition: 0.3s;
  cursor: pointer;
}
footer .l-footer-container #p-page-scroll:hover {
  background: #FE7474;
}
footer .p-footer-copyright {
  line-height: 3rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}

@media screen and (max-width: 1200px) {
  body .l-container {
    width: 95%;
  }
  header .l-header-inner {
    width: 100%;
    height: 80px;
    padding-right: 14px;
  }
  header .l-header-inner .p-header-logo {
    height: 100%;
  }
  header .l-header-inner .p-global-nav,
  header .l-header-inner .p-contact {
    display: none;
  }
  header .l-header-inner .p-header-hamburger {
    display: flex;
  }
  header .p-reservation {
    display: none;
  }
  main {
    margin: 120px auto 80px;
  }
  footer .l-about {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  footer .l-about__information .p-contact {
    margin: 20px 0 -20px;
  }
  footer .l-about__information .l-about-logo .p-about-logo__icon {
    width: 80px;
  }
  footer .l-about__information .c-opening-hours {
    margin-bottom: 0;
  }
  footer .l-about__map {
    width: 80%;
  }
  footer .l-about__map iframe {
    width: 100%;
  }
  footer .l-footer-container .p-footer-nav {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    -moz-column-gap: 60px;
         column-gap: 60px;
    row-gap: 0;
  }
  footer .l-footer-container .p-footer-nav__left {
    grid-column: 1;
    grid-row: 1/3;
    justify-self: start;
  }
  footer .l-footer-container .p-footer-nav__center {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }
  footer .l-footer-container .p-footer-nav__right {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }
}
@media screen and (max-width: 820px) {
  body .l-container {
    width: calc(100% - 30px);
  }
  body .c-opening-hours__table th,
  body .c-opening-hours__table td {
    font-size: 0.8rem;
    padding: 10px 8px;
  }
  .sp-bottom-menu {
    display: grid;
  }
  .p-section-nav__inner-content {
    width: calc(100% - 80px);
  }
  .p-section-nav__inner-content li a {
    font-size: 1.4rem;
    padding: 12px 10px 15px;
  }
  .p-section-nav__inner-content li a span {
    font-size: 0.9rem;
  }
  .p-section-nav__inner-bottom {
    margin-top: 30px;
  }
  .p-section-nav__inner-bottom-contact-label {
    font-size: 0.95rem;
  }
  .p-section-nav__inner-bottom-contact-tel {
    font-size: 2rem;
    margin-top: -0.3rem;
  }
  footer .p-scallop-section {
    padding: 10px 40px;
  }
  footer .p-scallop-section::before {
    top: -30px;
    -webkit-mask-image: radial-gradient(circle at 15px -2.5px, transparent 15px, white 5.25px);
    mask-image: radial-gradient(circle at 15px -2.5px, transparent 15px, white 5.25px);
    -webkit-mask-size: 30px 30px;
    mask-size: 30px 30px;
  }
  footer .l-footer-container #p-page-scroll {
    display: none;
  }
  footer .p-footer-copyright {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  header .l-header-inner {
    height: 70px;
  }
  header .l-header-inner .p-header-logo {
    height: 35px;
  }
  .p-section-nav__inner-header-logo {
    width: 180px;
  }
  .p-section-nav__inner-content {
    width: calc(100% - 50px);
    margin-top: 5px;
  }
  .p-section-nav__inner-content li a {
    font-size: 1.1rem;
    padding: 8px 10px 10px;
    gap: 1px;
  }
  .p-section-nav__inner-content li a span {
    font-size: 0.8rem;
  }
  .p-section-nav__inner-bottom {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }
  .p-section-nav__inner-bottom-contact-label {
    font-size: 0.85rem;
  }
  .p-section-nav__inner-bottom-contact-tel {
    font-size: 1.8rem;
    margin-top: -0.3rem;
  }
  footer .l-about__information .p-contact {
    text-align: center;
    justify-content: center;
  }
  footer .l-about__information .p-contact .c-button {
    display: none;
  }
  footer .l-about__information .l-about-logo {
    justify-content: center;
    gap: 15px;
  }
  footer .l-about__information .l-about-logo .p-about-logo__icon {
    width: 70px;
  }
  footer .l-about__information .l-about-logo .p-about-logo__text h3 {
    font-size: 0.9rem;
  }
  footer .l-about__information .l-about-logo .p-about-logo__text h2 {
    font-size: 1.6rem;
  }
  footer .l-about__information .l-about-logo .p-about-logo__text-address {
    flex-direction: column;
    gap: 0;
  }
  footer .l-about__map iframe {
    aspect-ratio: 1/1;
    height: 100%;
  }
  footer .l-footer-container .p-footer-nav {
    display: block;
    margin-left: 40px;
  }
  footer .p-footer-copyright {
    font-size: 0.8rem;
  }
}