@charset "UTF-8";
/* 変数 */
:root {
  --text-base-color: #000;
  --primary-color: #d35833;
  --secondary-color:#f7931e;
  --light-background: #fff9f0;
  --yellow-green:#7ac943;
  --light-green:#84c68e;
  --light-green-2: #6FBC7B;
}

a {
  color: inherit;
}

@media (min-width: 992px) {
  .btns-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 32px;
  }
}
[class*=btn-] {
  transition: 0.3s filter;
  max-width: 700px;
  margin-inline: auto;
}

[class*=btn-] a:hover {
  text-decoration: none;
  color: inherit;
}

[class*=btn-] a {
  display: block;
  width: 100%;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary-color);
  border: var(--primary-color);
  border-radius: 0;
  text-align: center;
}

.btn-primary a {
  padding: 1em;
  font-size: 0.85em;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-indent: -0.1em;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: var(--primary-color) !important;
  border: var(--primary-color);
  filter: brightness(1.2);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(228, 49, 49, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 2em;
  text-align: center;
}

.btn-secondary a {
  padding: 1em;
  letter-spacing: 0.1em;
  text-indent: -0.1em;
  font-size: 0.85em;
  font-weight: bold;
}

.btn-secondary:hover,
.btn-secondary:active {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  filter: brightness(1.1);
}

.btn-cta {
  color: #fff;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 0;
  text-align: center;
  width: 100%;
}

.btn-cta a {
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.5em;
}

.btn-cta:hover {
  filter: brightness(1.1);
}

.btn-floating {
  color: #fff;
  background-color: var(--secondary-color);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-radius: 5px 0 0 5px;
  padding: 10px;
  transition: 0.3s filter;
  writing-mode: vertical-lr;
  white-space: nowrap;
}

[class*=btn-].has-border {
  border: 1px solid #fff;
}

[class*=btn-].is-thin a {
  padding: 0.25em 1em;
  font-weight: 500;
}

.buttons-inner-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.buttons-inner-link a {
  border: 2px solid var(--primary-color);
  background-color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.buttons-inner-link a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.buttons-inner-link a::after {
  content: "";
  width: 25px;
  height: 33px;
  background: url("/system_panel/uploads/images/arrow-down-solid.png");
  background-size: cover;
  display: block;
  margin-top: auto;
}

@media (min-width: 768px) {
  .buttons-inner-link {
    gap: 32px;
  }
  .buttons-inner-link a {
    border-radius: 60px;
    padding: 36px;
    border: 5px solid var(--primary-color);
  }
  .buttons-inner-link a::after {
    position: absolute;
    right: 32px;
    top: calc(50% - 14px);
  }
}
.in-page-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
  margin-top: -30px;
  width: 100%;
}

.in-page-link {
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.in-page-link a {
  display: block;
  background: #FFFFFF;
  border: 1px solid #D35833;
  padding: 5px;
  text-align: center;
  background-image: url("/system_panel/uploads/images/arrow-black-down.png");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: calc(100% - 10px) center;
}

.in-page-link a:hover {
  text-decoration: none;
  color: #D35833;
}

@media (min-width: 768px) {
  .in-page-links {
    flex-direction: row;
    justify-content: start;
    max-width: 610px;
  }
  .in-page-link {
    width: 300px;
    margin: 0;
  }
}
/* 基本 */
html {
  font-size: 16px;
  /* max-width: 1920px;
  margin: auto;
  background-color: #000; */
  --leading-trim: calc((1em - 1lh) / 2);
}

body {
  font-family: "Noto Serif JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  line-height: 1.7;
}

.vertical-txt {
  writing-mode: vertical-rl;
}

.has-marker-text strong {
  background: linear-gradient(rgba(255, 255, 0, 0) 0%, rgba(255, 255, 0, 0) 62.5%, rgb(255, 255, 0) 62.5%, rgb(255, 255, 0));
}

.has-primary-color-text strong {
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .br-sp br {
    display: none;
  }
}
@media (max-width: 767px) {
  .br-sp br {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-pc br {
    display: block;
  }
}
@media (max-width: 767px) {
  .br-pc br {
    display: none;
  }
}

.content-heading {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
  border-left: 3px solid var(--primary-color);
  color: var(--primary-color);
  padding-left: 10px;
}

.content-heading.primary-color {
  color: var(--primary-color);
}

.content-heading.primary-color::before {
  background-color: var(--primary-color);
}

.bg-light-green .content-heading::before {
  background-color: #fff;
}

.text-underline {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.2rem;
  }
  .text-lead {
    font-size: 1.4rem;
  }
  .text-lead.font-big {
    font-size: 1.8rem;
  }
  .content-heading::before {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 16px;
  }
}
@media (min-width: 1400px) {
  .text-lead {
    font-size: 1.6rem;
  }
}
a:hover {
  color: inherit;
}

.text-box--baloon {
  background-color: #fff;
  border-radius: 1em;
  text-align: center;
  padding: 0.25em 2em;
  margin: auto auto 1.5em auto;
  font-weight: bolder;
  width: fit-content;
  position: relative;
}

.text-box--baloon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 22px;
  border-top: 11px solid #fff;
  border-right: 7px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 7px solid transparent;
  left: 0;
  right: 0;
  bottom: -22px;
  margin-inline: auto;
}

.text-box--baloon.text-box--color {
  background-color: var(--yellow-green);
  color: #fff;
}
.text-box--baloon.text-box--color::after {
  border-top-color: var(--yellow-green);
}

@media (min-width: 768px) {
  .text-box--baloon {
    font-size: 1.7rem;
  }
  .text-box--baloon::after {
    width: 2.4rem;
    height: 3rem;
    border-top: 1.5rem solid #fff;
    border-right: 1.2rem solid transparent;
    border-bottom: 1.5rem solid transparent;
    border-left: 1.2rem solid transparent;
    left: 0;
    right: 0;
    bottom: -3rem;
    margin-inline: auto;
  }
}
.about-section {
  position: relative;
  overflow: hidden;
  background: url("/system_panel/uploads/images/top-about.png");
  background-size: 100%;
  background-repeat: repeat-y;
}

.news-section,
.faq-section {
  background: url("/system_panel/uploads/images/top-news.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.rankings-section,
.recommend-section {
  background: url("/system_panel/uploads/images/top-ranking.png"), url("/system_panel/uploads/images/top-ranking-back.jpg");
  background-size: 100%;
  background-repeat: no-repeat, repeat-y;
}

.section.coupon-section {
  background-image: url("/system_panel/uploads/images/coupon-header.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  background-color: #FEFFF3;
}

.section.interior-section {
  background-image: url("/system_panel/uploads/images/interior-back.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

.section.store-section.honten {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("/system_panel/uploads/images/honten_tennai0.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

.section.store-section.ekiura {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("/system_panel/uploads/images/ekiura_tennai0-pc.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.menu-page,
.reserve-page,
.post-page {
  background: url("/system_panel/uploads/images/top-about-pc.jpg");
  background-size: 100%;
  background-repeat: repeat;
  background-position: center center;
}

.menu-page .section:not(:last-of-type) {
  padding-bottom: 0;
}

.about-section {
  background-image: url("/system_panel/uploads/images/top-about-section-bg2.png"), url("/system_panel/uploads/images/top-about-section-bg1.jpg");
  background-repeat: no-repeat;
  background-size: 100% cover;
}

.aboutmenu-section {
  background-image: url("/system_panel/uploads/images/top-menu-section-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.bg-store {
  background-image: url("/system_panel/uploads/images/store-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.bg-normal {
  background-image: url("/system_panel/uploads/images/normal-bg.jpg");
  background-size: cover;
  background-repeat: repeat-y;
  background-position: bottom center;
}

.bg-menu {
  background-image: url("/system_panel/uploads/images/menu-bg-sp.jpg");
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: top center;
}

.bg-recommend {
  background-image: url("/system_panel/uploads/images/recommend-bg-sp.jpg"), url("/system_panel/uploads/images/recommend-bg2-sp.jpg");
  background-size: 100%;
  background-repeat: no-repeat, repeat-y;
  background-position: top center;
}

.bg-kodawari1 {
  background-image: url("/system_panel/uploads/images/kodawari-bg1-sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.bg-kodawari2 {
  background-image: url("/system_panel/uploads/images/kodawari-bg2-sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

@media (max-width: 768px) {
  .about-section {
    background-image: url("/system_panel/uploads/images/top-about-section-bg2-sp.png"), url("/system_panel/uploads/images/top-about-section-bg1.jpg");
    background-size: 100%;
    background-repeat: no-repeat, repeat-y;
    background-position: right bottom, top center;
  }
}
@media (min-width: 768px) {
  .aboutmenu-section {
    background-position: top center;
  }
  .bg-menu {
    background-image: url("/system_panel/uploads/images/menu-bg-pc.jpg");
  }
  .bg-recommend {
    background-image: url("/system_panel/uploads/images/recommend-bg-pc.jpg"), url("/system_panel/uploads/images/normal-bg.jpg");
  }
  .bg-kodawari1 {
    background-image: url("/system_panel/uploads/images/kodawari-bg1-pc.jpg");
  }
  .bg-kodawari2 {
    background-image: url("/system_panel/uploads/images/kodawari-bg2-pc.jpg");
  }
  .section.store-section.honten {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("/system_panel/uploads/images/honten_tennai0-pc.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .section.store-section.ekiura {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("/system_panel/uploads/images/ekiura_tennai0-pc.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .rankings-section,
  .section.about-section.child-page,
  .recommend-section {
    background: url("/system_panel/uploads/images/top-ranking.png"), url("/system_panel/uploads/images/back20-1.jpg");
    background-size: 50%, cover;
    background-repeat: no-repeat;
    background-position: top left, center center;
  }
  .section.coupon-section {
    background-image: url("/system_panel/uploads/images/coupon-header-pc.png");
  }
  .section.interior-section {
    background-image: url("/system_panel/uploads/images/interior-back.jpg");
    background-repeat: repeat;
    background-position: center top;
    background-size: 780px;
  }
}
/* bootstrapスタイル上書き */
@media (min-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1200px;
  }
}
.d-grid {
  display: grid;
}

@media (min-width: 768px) {
  .br-cancel-tab br {
    display: none;
  }
}
@media (min-width: 992px) {
  .br-cancel-pc br {
    display: none;
  }
}
.br-cancel-only-sp br {
  display: none;
}

@media (min-width: 768px) {
  .br-cancel-only-sp br {
    display: unset;
  }
}
.list--check-mark > * {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 0.5em;
  align-items: baseline;
  font-size: 16px;
}

.list--check-mark > *::before {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background-image: url("/system_panel/uploads/images/check-mark.png");
  background-size: cover;
}

.list--awards > * {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 1em;
  align-items: baseline;
}

.list--awards > *::before {
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  background-image: url("/system_panel/uploads/images/check-mark.png");
  background-size: cover;
}

.list--question__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5em;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.list--question__heading::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background-image: url("/system_panel/uploads/images/question-mark.png");
  background-size: cover;
}

.primary-color ~ .list--question .list--question__heading::before {
  background-image: url("/system_panel/uploads/images/circle-question-solid-primary-color.png");
}

.list--question__body {
  padding-left: calc(40px + 0.5em);
}
.list--question__body strong {
  color: yellow;
}

.list--question {
  margin-block: 32px;
}

.primary-color ~ .list--question:not(:last-child) {
  border-bottom: 1px solid #999;
  padding-bottom: 32px;
}

.flow-baloon__wrapper {
  margin-block: 32px;
}

.flow-baloon__wrapper > .flow-baloon__block:not(:last-child) {
  margin-bottom: 48px;
}

.flow-baloon__wrapper > .flow-baloon__block:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-top: 25px solid #fff;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid transparent;
  bottom: -50px;
  left: 0;
  right: 0;
  margin-inline: auto;
}

.flow-baloon__block {
  background: #fff;
  border-radius: 10px;
  padding: 1em;
  color: var(--text-base-color);
  position: relative;
}

.flow-baloon__wrapper.primary-color > .flow-baloon__block:not(:last-child)::after {
  border-top-color: var(--primary-color);
}

.flow-baloon__wrapper.primary-color .flow-baloon__block {
  background: var(--primary-color);
  color: #fff;
}

.flow-baloon__heading {
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .list--check-mark > * {
    font-size: 1rem;
  }
  .flow-baloon__block {
    display: grid;
    grid-template-columns: 33% 1fr;
    align-items: center;
    gap: 32px;
    padding: 40px 96px;
    border-radius: 10em;
  }
  .flow-baloon__block .flow-baloon__heading {
    font-size: 1.8rem;
    margin: 0;
    text-align: left;
  }
  .flow-baloon__block .flow-baloon__body {
    min-height: 3lh;
    display: flex;
    align-items: center;
  }
  .flow-baloon__block .flow-baloon__body br {
    display: none;
  }
  .flow-baloon__block .flow-baloon__body p {
    margin: 0;
    font-size: 1rem;
  }
  .list--question__heading {
    font-size: 1.8rem;
  }
  .list--question__heading::before {
    width: 60px;
    height: 60px;
  }
  .list--question__body {
    padding-left: 75px;
  }
}
@media (min-width: 992px) {
  #root {
    width: calc(100% - 250px);
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .pc-header-menu {
    z-index: 0;
    width: 245px;
  }
  .pc-header-menu .header-nav .site-logo a {
    width: 150px;
    height: 238px;
    display: block;
    background-image: url("/system_panel/uploads/images/logo.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
}
.site-logo {
  mix-blend-mode: multiply;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  color: #FFF;
  border-radius: 0 0 0 5px;
  width: 45px;
  height: 47px;
  position: relative;
  z-index: 100;
}

.menu-btn .btn-label {
  font-size: 8px;
  white-space: nowrap;
  margin: 0 0 auto 0;
}

.menu-btn__icon {
  width: 22px;
  height: 14px;
  position: relative;
}

.menu-btn__icon > .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFF;
  border-radius: 4px;
  position: absolute;
  transition: 0.3s;
}

.menu-btn__icon > .bar:nth-child(1) {
  top: 0;
}

.menu-btn__icon > .bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn__icon > .bar:nth-child(3) {
  bottom: 0;
}

#spHeaderMenu.is-open {
  z-index: 999999999;
}

html:has(#spHeaderMenu.is-open) {
  overflow: hidden;
}

.is-open .menu-btn .bar:nth-child(1) {
  top: calc(50% - 2px);
  transform: rotate(45deg);
}

.is-open .menu-btn .bar:nth-child(2) {
  opacity: 0;
}

.is-open .menu-btn .bar:nth-child(3) {
  top: calc(50% - 2px);
  transform: rotate(-45deg);
}

.header {
  background-image: url("/system_panel/uploads/images/nav-bk-sp.jpg");
  background-size: 100%;
  padding: 9px 0 7px 0;
}
.header .site-logo {
  width: 47px;
  height: 75px;
  display: block;
  background-image: url("/system_panel/uploads/images/logo.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}

.sp-header-nav {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: calc(env(safe-area-inset-bottom) + env(safe-area-inset-top) + 100vh);
  overflow-y: auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1em;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity;
  padding: 9px 20px 20px;
  background-image: url("/system_panel/uploads/images/nav-bk-sp.jpg");
  background-position: center;
  background-size: 100%;
}

.sp-header-nav > .nav-item {
  padding-left: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.sp-header-nav a {
  font-weight: bold;
  font-size: 1.2rem;
}

.sp-header-nav .icon-dark {
  filter: brightness(0);
  width: 32px;
  margin-top: 2rem;
}

.header-nav__logo {
  display: block;
  width: 47px;
  height: 66px;
  mix-blend-mode: multiply;
}

.is-open .sp-header-nav {
  opacity: 1;
  pointer-events: unset;
}

.sp-header-menu {
  display: flex;
  flex-direction: column-reverse;
  align-items: end;
  gap: 20px;
  position: fixed;
  top: 23px;
  right: 0;
  z-index: 1000;
  background-color: #949292;
}

@media (min-width: 992px) {
  .sp-header-menu {
    display: none;
  }
}
.header-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  background-image: url("/system_panel/uploads/images/nav-bk-sp.jpg");
  background-repeat: repeat-y;
  background-size: cover;
}

@media (min-width: 768px) {
  .header-nav {
    background-image: url("/system_panel/uploads/images/nav-bk.jpg");
    height: 100vh;
    overflow-y: auto;
    flex-direction: row;
    align-content: flex-start;
    flex-wrap: wrap;
  }
}
.nav-item {
  margin: 0;
}

.nav-item a {
  color: #FFF;
  font-size: 1.1rem;
}

.nav-item a::before {
  content: "—";
  margin-right: 20px;
}

.sns-icon {
  margin-left: 3.7em;
  margin-top: -5px;
  margin-bottom: 0;
}
.sns-icon a {
  margin: 0 20px 0 0;
  padding: 0;
}
.sns-icon a img {
  width: 40px;
}
.sns-icon a::before {
  content: "";
}

.nav-item a:hover {
  text-decoration: none;
}

.nav-item.icon img {
  width: 1.9em;
}

.nav-cta {
  margin-top: 10px;
}
.nav-cta a {
  display: flex;
  justify-content: center;
  font-size: 14px;
  background-color: #BE3E3E;
  padding: 16px 0;
  color: #FFF;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.7);
}
.nav-cta a:hover {
  text-decoration: none;
  background-color: #eb6717;
}

@media (min-width: 768px) {
  .nav-item a {
    font-size: 14px;
  }
  .nav-cta a {
    width: 180px;
  }
  .sns-icon {
    margin-left: 2.5em;
    margin-top: -20px;
  }
  .sns-icon a {
    margin: 0 10px 0 0;
  }
  .sns-icon a img {
    width: 21px;
  }
}
/* ページヘッダー */
.page-content-header {
  position: relative;
  overflow: hidden;
  background-color: #000;
  max-height: 500px;
}

.page-content-header__text {
  line-height: 1.4;
  color: #fff;
  position: absolute;
  top: -30px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 3;
  width: fit-content;
  height: fit-content;
  padding: 1em;
  text-align: center;
}
.page-content-header__text h1 {
  font-size: 30px;
  font-weight: 700;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  line-height: 150%;
}
.page-content-header__text::after {
  content: "";
  display: block;
  position: absolute;
  top: 90%;
  bottom: 0%;
  left: 50%;
  right: 50%;
  height: 100%;
  width: 1px;
  background-color: #FFF;
}

.page-content-header__img {
  width: 100%;
  aspect-ratio: 390/424;
  object-fit: cover;
}

.page-content-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {
  .page-content-header__text h1 {
    font-size: 50px;
  }
  .page-content-header__text::after {
    top: 100%;
    height: 140%;
    max-height: 160px;
  }
  .page-content-header__text .page-heading {
    font-size: 3rem;
  }
  .page-content-header__text .small {
    font-size: 2rem;
  }
  .page-content-header__img {
    aspect-ratio: 1190/550;
  }
}
.text-copyright {
  font-size: 10px;
}

@media (min-width: 1200px) {
  .text-copyright {
    font-size: 15px;
    white-space: nowrap;
  }
  .footer-nav {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.25em 1em;
    font-size: 0.8rem;
  }
  .footer-nav p {
    margin: 0;
  }
}
.slider-upper-layer {
  position: absolute;
  z-index: 2;
  padding: 32px 0 0 0;
  text-align: center;
  width: 100%;
}
.slider-upper-layer img {
  width: 100%;
}

.slider-upper-layer {
  aspect-ratio: 390/621;
}

.slider-upper-layer .is-pc {
  display: none;
}

@media (min-width: 768px) {
  .slider-upper-layer {
    aspect-ratio: 1920/880;
    padding: 0;
    display: flex;
    align-items: end;
    justify-content: center;
  }
  .slider-upper-layer .is-pc {
    display: unset;
  }
  .slider-upper-layer .is-sp {
    display: none;
  }
}
#topSlider {
  width: calc(100% + 28px + 28px);
  margin-left: -28px;
}

#topSlider .swiper {
  width: 100%;
}

.swiper.mySwiper {
  aspect-ratio: 390/424;
  width: 100%;
  object-fit: cover;
  border-bottom: 5px solid #FFF;
}
.swiper.mySwiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #FFF;
  margin: 0 8px;
}

@media (min-width: 768px) {
  .swiper.mySwiper {
    aspect-ratio: 1189/700;
  }
}
.swiper.aboutmenu-slide .swiper-pagination .swiper-pagination-bullet {
  background-color: #B9B9B9;
  margin: 0 8px;
}

.swiper.aboutmenu-slide .slides-per-view {
  padding-bottom: 3em;
  margin-bottom: 1em;
}

.recommend-slide .swiper-slide,
.menu_slider .swiper-slide {
  position: relative;
}
.recommend-slide .caption,
.menu_slider .caption {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0;
  padding: 5px 0;
  font-weight: 700;
}

.menu_slider .swiper-wrapper {
  padding-bottom: 40px;
}
.menu_slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #B9B9B9;
  margin: 0 8px;
}

.slide-style--card {
  padding-bottom: 48px;
  display: grid;
  grid-auto-flow: column;
}

.slide-style--card .swiper-slide {
  border: 1px solid #999;
  padding: 20px;
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  height: 100%;
}
.slide-style--card .swiper-slide h3 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
}

@media (min-width: 768px) {
  .slide-style--card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: unset;
    gap: 32px;
    max-width: 960px;
    width: calc(100% - 32px);
    margin-inline: auto;
  }
  .slide-style--card .swiper-slide {
    border: none;
    padding: 0;
    gap: 32px;
  }
  .slide-style--card .swiper-slide img {
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
    object-fit: cover;
  }
  .slide-style--card .swiper-slide h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
  }
}
/* パンクズリスト */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 1em;
  white-space: nowrap;
  overflow-x: auto;
  font-size: 12px;
}

.breadcrumbs__item {
  display: flex;
}

.breadcrumbs__item:not(:last-child)::after {
  content: ">";
  margin-left: 1em;
}

.breadcrumbs__item p {
  margin: 0;
}

@media (min-width: 768px) {
  .breadcrumbs {
    font-size: 16px;
  }
}
.block-columns {
  display: grid;
  justify-content: baseline;
  gap: 30px;
}

.card-block--green-border {
  border: 5px solid var(--yellow-green);
  border-radius: 1.5rem;
  background-color: #fff;
  padding: 1rem;
  display: grid;
  justify-items: center;
  align-content: baseline;
}

.card-block--green-border .card-block__title {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.card-block--green-border .card-block__icon {
  width: auto;
  height: 100px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .block-columns {
    grid-auto-flow: column;
    gap: 1rem;
  }
  .block-columns.columns--2 {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .block-columns {
    gap: 1.8rem;
  }
  .card-block--green-border {
    padding: 1.5rem;
  }
  .card-block--green-border .card-block__title {
    font-size: 1.4rem;
  }
}
.numbering-block {
  counter-reset: number 0;
}

.numbering-block > div {
  counter-increment: item;
}

.numbering-block__lead {
  display: flex;
  gap: 0.5em;
  align-items: baseline;
  font-size: 16px;
  padding: 20px;
  margin: 0;
}

.numbering-block__lead::before {
  content: counter(item);
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.5em;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  top: -20px;
  left: -10px;
}

.step-block {
  background-color: #fff;
  border: 1px solid #999;
  margin-block: 30px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 130px;
  align-items: center;
  grid-auto-rows: min-content;
}
.step-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .numbering-block {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 3rem;
  }
  .numbering-block__lead {
    order: 2;
    padding: 0;
    font-size: 1.2rem;
    margin-top: 1em;
  }
  .numbering-block__lead::before {
    font-size: 40px;
    left: calc(50% - 36px);
    top: 0;
    border-radius: 36px;
    width: 72px;
    height: 72px;
    line-height: 0.7;
  }
  .step-block {
    background-color: unset;
    border: none;
    grid-template-columns: 1fr;
    padding-top: 112px;
  }
  .step-block img {
    order: 1;
    aspect-ratio: 1/1;
    object-fit: cover;
    height: auto;
  }
}
.label-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 10px;
}

@media (min-width: 768px) {
  .works-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto auto auto 1fr;
    gap: 0 68px;
  }
  .works-block .text-lead {
    grid-column: 2/3;
    grid-row: 2;
  }
  .works-block .label-group {
    grid-column: 2/3;
    grid-row: 3;
  }
  .works-block .works-img {
    grid-column: 1/2;
    grid-row: 1/6;
  }
  .works-block .works-text {
    grid-column: 2/3;
    grid-row: 4;
  }
}
.works-block-detail {
  border: 3px solid var(--light-green-2);
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.works-block-detail .text-lead {
  padding: 20px;
}
.works-block-detail .works-img {
  padding: 20px;
}
.works-block-detail .works-text {
  padding: 20px;
}

.works-block-detail__header {
  background-color: var(--light-green-2);
  color: #fff;
  padding: 20px;
  text-align: center;
}
.works-block-detail__header .label {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  background-color: #fff;
  color: var(--text-base-color);
}

@media (min-width: 992px) {
  .works-block-detail__inner {
    display: grid;
    align-items: center;
    grid-template-columns: 45% 1fr;
    grid-template-rows: 1fr auto auto auto 1fr;
    padding: 50px;
  }
  .works-block-detail__inner .text-lead {
    grid-column: 2/3;
    grid-row: 2;
    padding: 0;
    font-size: 1.4rem;
    margin: 0 0 0.25em 0;
  }
  .works-block-detail__inner .works-detail__list {
    grid-column: 2/3;
    grid-row: 3;
  }
  .works-block-detail__inner .works-text {
    grid-column: 2/3;
    grid-row: 4;
  }
  .works-block-detail__inner .works-img {
    grid-column: 1/2;
    grid-row: 1/6;
  }
  .works-block-detail__inner .works-detail__list__row {
    grid-template-columns: 8em 1fr;
  }
}
.works-detail__list {
  padding-inline: 20px;
}

.works-detail__list__row {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 8px;
  align-items: baseline;
}
.works-detail__list__row .dt {
  color: var(--primary-color);
  display: flex;
  align-items: baseline;
}

.works-detail__list__icon {
  width: 25px;
  height: 25px;
  object-fit: cover;
  margin-right: 0.5em;
}

.works-detail__list__interview {
  border: 3px solid var(--light-green-2);
  width: fit-content;
  background-color: #fff;
  color: var(--light-green-2);
  border-radius: 40px;
  text-align: center;
  margin: 20px auto;
  padding: 0.5em 2em;
  font-weight: bold;
  position: relative;
}
.works-detail__list__interview::after, .works-detail__list__interview::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 30px;
  border-right: 14px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 14px solid transparent;
  left: calc(50% - 14px);
}
.works-detail__list__interview::after {
  z-index: 1;
  border-top: 15px solid var(--light-green-2);
  bottom: -30px;
}
.works-detail__list__interview::before {
  z-index: 2;
  border-top: 15px solid #fff;
  bottom: -25px;
}

.works-block-detail .youtube {
  padding: 5px 20px 20px 20px;
}

.works-block-detail .youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

@media (min-width: 992px) {
  .works-block-detail .youtube {
    padding: 5px 70px 70px 70px;
    margin-inline: auto;
  }
}
.dl {
  display: grid;
}
.dl p {
  margin: 0;
}

.dl-row {
  border-bottom: 1px solid #999;
  padding-block: 16px;
}
.dl-row .dt {
  text-align: center;
}
.dl-row .dd {
  font-weight: normal;
  text-align: center;
}

@media (min-width: 768px) {
  .dl-row {
    border-bottom: 1px solid #999;
    display: grid;
    grid-template-columns: 8em 1fr;
    padding-block: 45px;
  }
  .dl-row .dd {
    text-align: left;
  }
}
.flex-gap-3 {
  gap: 1.5rem;
}

.content-block p {
  margin: 0;
}

.content-block .font-big {
  font-size: 25px;
}

.scroll-x {
  overflow-x: auto;
}

.spec-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
  margin-bottom: 16px;
  text-align: center;
}

.spec-table p {
  margin: 0;
}

.spec-table-row {
  display: table-row;
  border-bottom: 1px solid #999;
}
.spec-table-row:first-child {
  border-bottom: 2px solid #999;
}

.spec-table-row > div {
  display: table-cell;
  vertical-align: middle;
  padding: 16px;
  width: 160px;
}
.spec-table-row > div:first-child {
  width: 120px;
  box-sizing: border-box;
}

.spec-table-th {
  font-weight: bold;
}

@media (min-width: 992px) {
  .spec-table-row > div {
    width: unset;
  }
  .spec-table-row > div:first-child {
    width: 120px;
  }
}
html {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  scroll-behavior: smooth;
}

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

a {
  transition: 0.3s;
}

.section-title {
  letter-spacing: 0.1em;
  margin: 0 0 30px 0;
  font-size: 38px;
  font-weight: 700;
}
.section-title h2 {
  font-size: 16px;
}

.section-label {
  font-weight: 500;
  color: #d35833;
  line-height: 1rem;
  white-space: nowrap;
  text-indent: 2px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
    margin: 0 0 30px 0;
  }
  .section-label {
    font-size: 17px;
  }
}
.text-lead {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.7;
  margin: 0;
}

.text-header {
  width: 100%;
  max-width: 880px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto 50px;
}
.text-header .notice {
  font-size: 12px;
  text-align: left;
}
.text-header.left-sp {
  text-align: left;
}
.text-header h2 {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

@media (min-width: 768px) {
  .text-header {
    text-align: center;
  }
}
.section {
  padding: 70px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  overflow: hidden;
}

.section-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-container__inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .text-lead {
    font-size: 25px;
  }
  .text-header {
    font-size: 16px;
  }
  .text-header.left-sp {
    text-align: center;
  }
  .section {
    padding: 50px 28px 95px 28px;
  }
  .section-100 {
    padding: 95px 28px;
  }
  .section-container {
    width: 100%;
    max-width: 1135px;
    margin-inline: auto;
  }
}
.reserve-btn--vert {
  display: block;
  position: fixed;
  right: -1px;
  top: 13vh;
  z-index: 2;
  width: 45px;
  transition: opacity 0.3s;
}

.reserve-btn--vert.is-scroll-end {
  pointer-events: none;
  opacity: 0;
}

.reserve-btn--vert a {
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  letter-spacing: 4px;
  background-color: #C1272D;
  border: 1px solid #FFF;
  color: #fff;
  padding: 20px 6px 20px 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px 0 0 5px;
  text-align: center;
}

.reserve-btn--vert a:hover {
  color: #fff;
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
  .reserve-btn--vert {
    display: none;
  }
}
/* CTA Button Styles */
.cta-button,
.store-button {
  border: none;
  border-radius: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  position: relative;
  aspect-ratio: 664/101;
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  margin-top: auto;
}

.cta-button a,
.store-button a {
  color: white;
  font-size: 15px;
  background-image: url("/system_panel/uploads/images/arrow-white.svg"), url("/system_panel/uploads/images/btn-bg.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center, 50% 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  padding: 12px;
  aspect-ratio: 664/101;
}

.cta-button a:hover,
.store-button a:hover {
  opacity: 0.9;
  text-decoration: none;
}

@media (min-width: 768px) {
  .cta-button,
  .store-button {
    margin-inline: auto;
  }
  .cta-button a,
  .store-button a {
    font-size: 15px;
    padding: 15px;
  }
}
.shop-area-section .logo {
  display: none;
}

.shop-card {
  background-color: #ccc;
  background-size: cover;
  background-position: center;
}
.shop-card a {
  width: 100%;
  height: 75px;
  display: block;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  position: relative;
}
.shop-card a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  bottom: 50%;
  display: block;
  width: 15%;
  height: 10px;
  background-size: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url("/system_panel/uploads/images/top-shop-card-arrow.svg");
}
.shop-card a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.shop-card a h2 {
  margin: 0;
  padding: 0;
  font-weight: 700;
}
.shop-card.kichijyouji {
  background-image: url("/system_panel/uploads/images/top-shop-area-kichijyouji.jpg");
  border-right: 5px solid #FFF;
}
.shop-card.mitaka {
  background-image: url("/system_panel/uploads/images/top-shop-area-mitaka.jpg");
}

.shop-title {
  color: #000;
  text-align: center;
  font-size: 14px;
  width: 100%;
  margin: 0;
}

@media (min-width: 768px) {
  .shop-area-section {
    padding-top: 0;
    position: relative;
  }
  .shop-area-section .logo {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    width: auto;
    height: 38%;
  }
  .shop-card {
    align-items: center;
    justify-content: end;
  }
  .shop-card a {
    height: 155px;
  }
  .shop-card a::after {
    content: "";
    width: 80px;
    right: 20px;
  }
  .shop-title {
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 1200px) {
  .shop-card a::after {
    top: auto;
    bottom: 20%;
  }
}
.about-section .section-container {
  gap: 40px;
}
.about-section .about-text {
  align-content: center;
}
.about-section .about-text {
  margin: 0;
}
.about-section .about-text a {
  text-decoration: underline;
}
.about-section .store-images {
  display: grid;
  grid-auto-flow: column;
  gap: 20px;
}
.about-section .about-images1 {
  aspect-ratio: 140/169;
  object-fit: cover;
}
.about-section .about-images2 {
  aspect-ratio: 170/117;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-section .section-header {
    gap: 20px;
  }
  .about-section .section-header .section-title {
    max-width: 170px;
    margin: 0 auto;
  }
  .about-section .about-header-images {
    width: 100%;
  }
  .about-section .section-container__inner {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    gap: 20px 40px;
  }
  .about-section .section-container__inner .about-text {
    width: 100%;
    line-height: 180%;
    font-size: 16px;
  }
  .about-section .section-container__inner .about-images1 {
    margin-top: 40px;
    width: calc(50% - 20px);
  }
  .about-section .section-container__inner .about-images2 {
    width: calc(50% - 20px);
  }
}
@media (min-width: 768px) {
  .about-section .section-header {
    gap: 40px;
  }
  .about-section .section-header .section-title {
    margin: 0 auto 0 auto;
  }
  .section-container__inner .about-text {
    width: 31%;
    line-height: 170%;
    font-size: 18px;
  }
  .section-container__inner .about-images1 {
    width: 31%;
  }
  .section-container__inner .about-images2 {
    width: 31%;
  }
}
.aboutmenu-section {
  padding-bottom: 0;
}
.aboutmenu-section .section-header {
  flex-direction: row-reverse;
  margin-bottom: 30px;
}
.aboutmenu-section .section-header p {
  font-size: 16px;
  margin-top: 4em;
  margin-bottom: 0;
  margin-left: 0;
}
.aboutmenu-section .aboutmenu-images {
  gap: 20px;
}
.aboutmenu-section .aboutmenu-images .aboutmenu-image1 {
  margin-top: 40px;
}
.aboutmenu-section .aboutmenu-images .aboutmenu-image2 {
  margin-top: 20px;
}
.aboutmenu-section .aboutmenu-text {
  max-width: 160px;
  margin: 0 auto 40px;
}
.aboutmenu-section .aboutmenu-slide {
  position: relative;
}
.aboutmenu-section .aboutmenu-slide img {
  width: 100%;
  aspect-ratio: 22/13;
  object-fit: cover;
}
.aboutmenu-section .aboutmenu-slide .swiper-wrapper {
  padding-bottom: 35px;
}
.aboutmenu-section .aboutmenu-slide p {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  width: 100%;
  height: 2em;
  text-align: center;
  bottom: 0;
  left: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
.aboutmenu-section .aboutmenu-images2 {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .section-header {
    justify-content: center;
  }
  .aboutmenu-images {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .aboutmenu-image4 {
    aspect-ratio: 110/91;
    object-fit: cover;
  }
  .section-aboutmenu-area2 {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .aboutmenu-section .section-header-area {
    display: flex;
    flex-direction: row-reverse;
  }
  .aboutmenu-section .aboutmenu-images {
    margin-right: auto;
  }
  .aboutmenu-section .section-title img {
    width: auto;
  }
  .aboutmenu-section .section-header p {
    font-size: 18px;
    margin: 1em 0 0 0;
  }
  .aboutmenu-section .aboutmenu-slide-area {
    width: 65%;
    max-width: 745px;
  }
  .aboutmenu-section .section-aboutmenu-area {
    display: flex;
  }
  .aboutmenu-section .aboutmenu-text {
    max-width: 202px;
    margin-right: 30px;
    width: 30%;
  }
  .aboutmenu-section .section-title p {
    font-size: 18px;
    margin: 0;
    line-height: 180%;
  }
  .aboutmenu-section .aboutmenu-images {
    gap: 30px;
  }
  .aboutmenu-section .aboutmenu-images .aboutmenu-image1 {
    margin-top: 60px;
  }
  .aboutmenu-section .aboutmenu-images .aboutmenu-image2 {
    margin-top: 30px;
  }
  .aboutmenu-section .section-header-1 {
    align-items: center;
    flex-direction: column !important;
    margin-left: 50px;
    margin-right: 50px;
  }
  .aboutmenu-section .section-header-2 {
    justify-content: space-between;
  }
  .aboutmenu-section .section-header-2 .section-title {
    margin-left: 20px;
    margin-right: 40px;
    width: 50px;
  }
  .aboutmenu-section .section-aboutmenu-area2 {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    margin-bottom: 95px;
    margin-top: 50px;
  }
  .aboutmenu-section .section-header-area2 {
    width: 380px;
    align-content: flex-end;
  }
  .aboutmenu-section .aboutmenu-images2 {
    margin-top: 0;
  }
}
.stores-section {
  background: url("/system_panel/uploads/images/top-stores-section-bg.jpg");
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: top center;
}
.stores-section .section-header {
  padding: 0 2.5em;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.stores-section .section-title {
  font-weight: 700;
  font-size: 37px;
}

.store-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

.store-card {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
}

.store-name {
  width: 334px;
  margin-top: -1px;
  font-weight: 500;
  color: #d35833;
  font-size: 18px;
  text-align: center;
  line-height: 30.6px;
}

.store-photo {
  width: 100%;
  aspect-ratio: 110/71;
  object-fit: contain;
}

.store-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.detail-row img {
  width: 32px;
}

.detail-label {
  display: flex;
  width: 90px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 2px;
  background-color: #7E7E7E;
  color: #FFF;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 0;
}

.detail-value {
  flex: 1;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0;
}

.store-images {
  display: grid;
  grid-auto-flow: row;
  gap: 20px;
}

@media (min-width: 768px) {
  .store-card {
    flex-direction: row-reverse;
  }
  .store-photo {
    width: 50%;
  }
}
/* Footer */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 0;
}

.footer-copyright {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #4E4E4E;
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .section .section-container__inner.is-center {
    max-width: 680px;
    margin-inline: auto;
  }
}
.kodawari-group .kodawari-list-img1 {
  gap: 10px;
}
.kodawari-group .kodawari-list-img1 div:nth-child(3) {
  margin-top: 15px;
}
.kodawari-group .kodawari-list-img1 div:nth-child(2) {
  margin-top: 30px;
}
.kodawari-group .kodawari-list-img1 div:nth-child(1) {
  margin-top: 45px;
}
.kodawari-group .kodawari-list-img2 {
  flex-direction: column;
}
.kodawari-group .kodawari-list-img2 div:nth-child(1) {
  margin-right: 100px;
  margin-bottom: 20px;
}
.kodawari-group .kodawari-list-img2 div:nth-child(2) {
  margin-left: 100px;
  margin-bottom: 20px;
}
.kodawari-group .kodawari-header h2 {
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 140%;
  position: relative;
}
.kodawari-group .kodawari-header h2::before, .kodawari-group .kodawari-header h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 46px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(/system_panel/uploads/images/kodawari-header-bg.png);
}
.kodawari-group .kodawari-header h2::before {
  bottom: 0%;
  right: 110%;
}
.kodawari-group .kodawari-header h2::after {
  top: -2%;
  left: 110%;
}

@media (min-width: 768px) {
  .kodawari-group .kodawari-list-img1 {
    gap: 20px;
    justify-content: center;
  }
  .kodawari-list-img2 {
    flex-direction: row !important;
    margin-bottom: 50px;
    margin-top: 40px;
    gap: 30px;
  }
  .kodawari-list-img2 div:nth-child(1) {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
  .kodawari-list-img2 div:nth-child(2) {
    margin-top: 40px;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
  }
  .kodawari-header-title {
    width: 390px;
    margin-top: 40px;
  }
  .kodawari-header-right {
    display: flex;
  }
  .kodawari-header-right .kodawari-header-title {
    margin-left: 8%;
  }
  .kodawari-header-left {
    display: flex;
    flex-direction: row-reverse;
  }
  .kodawari-header-left .kodawari-header-title {
    margin-right: 8%;
  }
  .kodawari-header h2::before, .kodawari-header h2::after {
    width: 138px !important;
    height: 80px !important;
  }
}
@media (max-width: 767px) {
  .width-max {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.store-details.store-page .detail-row {
  border-bottom: 1px solid #666666;
}
.store-details.store-page .detail-label {
  background-color: transparent;
  color: #000;
  justify-content: flex-start;
  margin-bottom: 1rem;
  font-weight: 700;
}
.store-details.store-page .detail-value {
  margin-bottom: 1rem;
}
.store-details.store-page .store-images {
  grid-auto-flow: row;
}
.store-details.store-page .store-images {
  display: grid;
  grid-auto-flow: column;
  gap: 20px;
}

.googlemaps,
.googlemaps iframe {
  width: 100%;
  aspect-ratio: 530/581;
  height: auto;
  border: none;
}

.font-small {
  font-size: 2.1em;
}

@media (min-width: 768px) {
  .font-small {
    font-size: 40px;
  }
}
.menu-list {
  display: grid;
  gap: 15px;
  margin-block: 15px;
}
.menu-list h2:not(h3:first-child),
.menu-list h3:not(h3:first-child) {
  margin-top: 40px;
}
.menu-list > .text-lead {
  font-size: 16px;
}

@media (min-width: 768px) {
  .menu-list .text-lead {
    font-size: 25px;
  }
}
.menu-title {
  background-color: #d35833;
  color: #fff;
  font-size: 1rem;
  padding: 10px;
  line-height: 1.7;
}

.menu-list__group {
  display: grid;
}

.menu-list__item {
  font-size: 15px;
  display: grid;
  align-items: baseline;
  gap: 5px 10px;
  border-bottom: 1px solid #666;
  padding: 1rem 0;
  grid-template-columns: auto 4.8em;
}
.menu-list__item p {
  margin: 0;
}
.menu-list__item .menu-icon {
  text-align: center;
}
.menu-list__item .menu-icon p {
  display: block;
  padding: 2px;
  letter-spacing: 1px;
  background-color: #BE3E3E;
  color: #FFF;
  font-size: 10px;
}
.menu-list__item .menu-name.menu-sub-text p {
  font-size: 0.9em;
}
.menu-list__item .menu-price {
  text-align: right;
}

.menu-photo {
  margin-bottom: 8px;
}

.menu-caption {
  text-align: center;
}

.text-lead.toggle-after {
  position: relative;
  border-bottom: 1px solid #949292;
  padding-bottom: 10px;
  padding-inline: 20px;
  cursor: pointer;
}

.text-lead.toggle-after::before {
  content: "+";
  font-size: 25px;
  line-height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  color: #949292;
}

.text-lead.toggle-after.is-open::before {
  content: "−";
}

.text-lead.toggle-after + .menu-list__group {
  display: none;
}

.text-lead.toggle-after.is-open + .menu-list__group {
  display: grid;
}

.gjs-dashed .text-lead.toggle-after + .menu-list__group {
  display: grid;
}

.menu_slider_area {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.menu_slider {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .menu-list__item .menu-icon {
    grid-area: 1/1/2/3;
  }
  .menu-list__item .menu-name.menu-sub-text {
    grid-area: 3/1/4/3 !important;
  }
  .menu-list__item .menu-icon {
    text-align: left;
  }
  .menu-list__item .menu-icon p {
    display: inline;
    padding: 2px 10px;
    letter-spacing: 1px;
    background-color: #BE3E3E;
    color: #FFF;
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  .banquet-section .menu-list {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
  }
  .menu-list__item {
    grid-template-columns: 4.5em auto 5.1em;
  }
  .menu-list__item .menu-price {
    width: 5.1em;
  }
  .menu-list__item .menu-name.menu-sub-text {
    padding-left: calc(4.5em + 10px);
    grid-area: 2/1/3/4 !important;
  }
  .text-lead.toggle-after::before {
    content: "+";
    font-size: 35px;
    line-height: 40px;
  }
  .menu-list__group {
    grid-template-columns: 1fr 1fr;
    gap: 5px 50px;
  }
  .menu-list__item.is-collapse {
    grid-column: 1/3;
  }
  .menu-list__item.is-collapse .menu-photo,
  .menu-list__item.is-collapse .menu-caption {
    width: calc(50% - 25px);
  }
  .menu_slider {
    margin-bottom: 100px;
  }
}
.season-details .season-detail {
  margin-bottom: 30px;
}
.season-details .season-title {
  text-align: center;
}
.season-details .season-title img {
  width: auto;
}
.season-details .season-list p {
  border-bottom: 1px solid #666;
  padding: 1rem 0;
  margin: 0;
}

@media (min-width: 768px) {
  .season-details .season-title {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .menu-page .menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
  }
  .menu-page .menu-items .menu-item:nth-child(1) {
    grid-column: 1/3;
    max-width: 680px;
    margin-inline: auto;
  }
  .menu-page .menu-items .menu-item:not(:nth-child(1)) {
    width: 100%;
  }
  .menu-page .menu-items .menu-item:nth-child(1) .has-icon {
    padding-left: 113px;
    background-size: 93px;
    min-height: 120px;
    font-size: 16px;
  }
}
.recommend-list__group .recommend-list__item {
  max-width: 890px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}
.recommend-list__group h3 {
  font-weight: 700;
  font-size: 16px;
}
.recommend-list__group .notice {
  border-top: 1px solid #666;
  font-size: 12px;
  padding-top: 10px;
}

@media (min-width: 768px) {
  .recommend-list__group .recommend-list__item {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
  }
  .recommend-list__group .recommend-detail {
    display: flex;
    flex-direction: column;
  }
  .recommend-list__group .notice {
    margin-bottom: 0;
    margin-top: auto !important;
  }
}/*# sourceMappingURL=index.css.map */