@charset "UTF-8";

a {
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 750px) {

  /* SP */
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }
}

@media screen and (min-width: 751px) and (max-width: 1070px) {
  .size_tb {
    display: block;
  }

  .sp_only {
    display: none;
  }
}

@media screen and (min-width: 1071px) {

  /* PC */
  .sp_only {
    display: none !important;
  }

  .size_tb {
    display: none;
  }

  .pc_only {
    display: block !important;
  }

}

/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
  width: 100%;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* ボタン */
.btn-more {
  text-align: center;
  margin: 41px 0;
}

.btn-link {
  padding: 20px 85px;
  font-size: 1rem;
  color: #000;
  transition: 0.3s;
  position: relative;
  font-weight: 700;
}

.btn-link::before {
  content: "";
  width: 13px;
  height: 13px;
  transform: rotate(45deg) scale(1);
  -webkit-transform: rotate(45deg) scale(1);
  -moz-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg scale(1));
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  top: 40%;
  left: 83%;
}

@media screen and (max-width: 760px) {
  .btn-link {
    padding: 18px 48px;
  }

  .mb-0 {
    margin-bottom: 0 !important;
  }
}

/*-----------------------------------------

		#header

-----------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 5;
}

#header.open {
  height: 100vh;
  transition: 0.5s;
}

.header-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 0 17px;
}

.header-wrapper-logo {
  display: flex;
  align-items: center;
}

.header-logo {
  margin: 0 auto 0 20px;
  position: absolute;
  width: 120px;
  z-index: 1;
  top: 12px;
}

.header-text {
  font-weight: bold;
  font-size: 1rem;
}

.header-shop-text {
  z-index: 2;
  position: absolute;
  width: calc(100% - 171px - 396px);
  left: 171px;
  padding: 20px;
  font-weight: bold;
  top: 26px;
  font-size: 1.5rem;
}

.header-sp-shop-text {
  display: none;
}

.header-textmini {
  font-size: 0.75rem;
}

.header-button {
  display: flex;
}

.header-coupon {
  line-height: 35px;
  margin-right: 33px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
}

.header-button-image {
  width: 20px;
  height: 20px;
  margin-left: 12px;
}

.header-button-box {
  width: 186px;
  height: 75px;
  text-align: center;
  line-height: 20px;
  transition: 0.5s;
  padding: 10px 4px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #888;
}

.header-button-box-text {
  transition: 0.5s;
}

.header-sp-logo {
  display: none;
}

/* ハンバーガーメニュー */
.header-navbar {
  background: #fff;
}

.header-nav-container {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  width: 1256px;
  margin: 0 auto;
  margin: 0 0 0 140px;
}

.header-nav-list {
  display: flex;
  justify-content: flex-start;
}

.header-nav-item {
  width: 13%;
}

.header-nav-link {
  /* padding: 12px; */
  padding: 8px;
  display: block;
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 1rem;
  transition: 0.5s;
  text-decoration: none;
}

.header-sp-navmenu {
  display: none;
}

.header-sp-navitem {
  /* background: #837756; */
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-sp-navlink {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
  /* color: #fff; */
  font-size: 1.1rem;
  padding: 18px 16px;
}

@media screen and (max-width: 1070px) {
  #header {
    padding: 15px;
  }

  .header-container {
    position: initial;
    width: 100%;
  }

  .header-wrapper {
    display: none;
  }

  .header-navmenu {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50px;
    right: 20px;
    margin-top: -25px;
    cursor: pointer;
  }

  .header-navmenu span {
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
  }

  .header-navmenu span:before,
  .header-navmenu span:after {
    content: " ";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
  }

  .header-navmenu span:before {
    top: -12px;
  }

  .header-navmenu span:after {
    top: 12px;
  }

  .header-navmenu.close span {
    background: none;
  }

  .header-navmenu.close span:before {
    top: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
  }

  .header-navmenu.close span:after {
    top: 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
  }

  .header-nav-list {
    display: block;
  }

  .header-nav-item {
    margin-bottom: 12px;
    width: 100%;
  }

  .header-navbar {
    display: none;
    background: none;
  }

  .header-sp-navmenu {
    display: block;
  }

  .header-nav-container {
    width: 100%;
    margin: 0 auto;
  }

  .header-sp-logo {
    display: block;
    position: relative;
    width: 63px;
    height: 63px;
  }

  .header-sp-logo img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .header-sp-shop-text {
    max-width: 255px;
    display: block;
    z-index: 2;
    position: absolute;
    left: 70px;
    padding: 20px;
    font-weight: bold;
    top: 1%;
    line-height: 1.2;
    font-size: 1rem;
  }

  .header-takeout-button {
    padding: 18px 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* 媒体リンク追加 */

.form-link {
  padding: 50px 0;
  background-color: #fff;
}

.spform-link {
  display: none;
}

.form-link p {
  text-align: center;
  color: #b81c22;
  font-weight: bold;
}

.form-text1 {
  font-size: 30px;
}

.form-text2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.reserve-form {
  display: flex;
  justify-content: center;
}

.reserve-form-container {
  /* padding: 23px 26px; */
  /* border: 1px solid #d7000e; */
  /* display: flex;
  justify-content: center; */
  margin-top: 20px;
  background-color: #fff;
  z-index: 1;
  position: relative;
}

.reserve-form-item {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 0 auto 30px;
  /* padding-left: 1%; */
  /* border-left: 1px solid #d7000e; */
  justify-content: center;
}

.reserve-form-container .reserve-form-link {
  background-color: #b81c22;
  text-decoration: none;
  color: #fff;
  /* width: 28%; */
  width: 333px;
  height: 60px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  /* margin-right: 2%; */
  margin: auto;
  position: relative;
}

/* .reserve-form-link::before {
  content: "";
  right: 9%;
  width: 26px;
  height: 2px;
  background: #fff;
  position: absolute;
}
.reserve-form-link::after {
  content: "";
  right: 9%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
} */

.reserve-form-item-desc {
  font-size: 12px;
  text-align: center;
  color: #d7000e;
}

.reserve-form-item-wrapper {
  display: flex;
  align-items: flex-end;
  width: 80%;
  justify-content: flex-start;
}

.reserve-form-item-wrapper a {
  cursor: pointer;
  text-decoration: none;
  padding-left: 10px;
}

.reserve-form-item-wrapper a:first-child {
  padding-left: 0;
}

@media screen and (max-width: 1070px) {
  .form-link {
    padding: 50px 20px;
  }

  .reserve-form-container {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .reserve-form-item-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .reserve-form-item {
    width: 100%;
    margin: 25px 0 30px;
    justify-content: center;
    padding-left: 0;
  }

  .reserve-form-container .reserve-form-link {
    width: 300px;
  }

  .reserve-form-item-wrapper a:nth-child(2n+1) {
    padding-right: 10px;
  }

  .reserve-form-item-wrapper a {
    width: 50%;
    padding-left: 0;
  }

  .form-text1 {
    font-size: 27px;
  }

  .form-text2 {
    font-size: 20px;
    margin: 15px 0;
  }
}

@media screen and (max-width: 1070px) {
  .spform-link {
    display: block;
  }

  .spform-link p {
    text-align: center;
    color: #b81c22;
    font-weight: bold;
    font-size: 14px;
  }

  .reserve-spform-container {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .reserve-spform-item-wrapper {
    flex-wrap: wrap;
    text-align: center;
    background-color: #fff;
    padding: 3px;
  }

  .reserve-spform-item {
    width: 100%;
    /* margin: 25px 0 30px; */
    justify-content: center;
    padding-left: 0;
  }

  .reserve-spform-container .reserve-spform-link {
    background-color: #b81c22;
    text-decoration: none;
    color: #fff;
    width: 206px;
    height: 39px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    margin: auto;
  }

  /* .reserve-spform-item-wrapper a:nth-child(2n+1) {
    padding-right: 10px;
  } */
  .reserve-spform-item-wrapper a {
    width: 50%;
    padding-left: 0;
  }

  .reserve-spform-item-wrapper img {
    width: 22%;
  }

  .spform-text1 {
    font-size: 27px;
  }

  .spform-text2 {
    font-size: 20px;
    margin: 12px 0;
  }
}

/*-----------------------------------------

		#footer

-----------------------------------------*/
.footer-pagetop {
  background: #89794e;
  text-align: center;
}

.footer-pagetop-link {
  color: #fff;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 24px 0;
  cursor: pointer;
}

.footer-pagetop-link:after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

/* .footer-box {
  padding: 20px;
  position: relative; } */

.footer-box-logo {
  max-width: 130px;
  margin-top: 30px;
  margin-left: 130px;
}

.footer-box-logo-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1470px;
  width: calc(100% - 20px);
  margin: 40px auto 20px;
  justify-content: center;
}

.footer-box-logo-top a {
  display: block;
  width: 160px;
}

.footer-box-logo-top a img {
  width: 100%;
}

#footer-sns-area,
.footer-copyright {
  text-align: center;
  padding-bottom: 20px;
  font-size: 14px;
}

@media screen and (min-width: 751px) and (max-width: 1070px) {
  #footer-sns-area {
    padding-bottom: 40px;
  }
}

/* footer end */
/* sp footer */
.footer-button {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /* background-color: #a5986f; */
}

.footer-item {
  width: 50%;
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-item-image {
  width: 20px;
  height: 20px;
  padding-right: 13px;
}

.footer-item-text {
  font-size: 1rem;
  font-weight: bold;
  color: #111;
}

.modal-container {
  padding: 20px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.modal-title {
  /* padding: 50px 0 15px; */
  padding: 0 0 15px;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}

.modal-box {
  border-bottom: 1px solid #ddd4b5;
  border-top: 1px solid #ddd4b5;
  padding: 10px;
}

.modal-text {
  margin-bottom: 5px;
}

.modal-button {
  display: flex;
}

.modal-button-list {
  width: 50%;
  text-align: center;
  padding: 20px 8px 20px;
}

.modal-button-list .footer-item {
  width: 100%;
}

.footer_link {
  text-align: center;
  font-size: 0.9rem;
  padding-bottom: 5%;
}

@media screen and (max-width: 760px) {
  .footer-box {
    padding: 0;
  }

  .footer-box-logo {
    max-width: 90px;
    margin: 0 auto;
    padding: 35px 0;
  }

  .footer-item-text {
    font-size: 0.9rem;
  }

  .modal-container {
    padding: 10px 15px 0 15px;
    width: 80%;
  }

  .modal-title {
    padding: 20px 0 8px;
    margin-bottom: 10px;
    font-size: 18px;
    background-size: 28px auto;
  }

  .modal-text {
    margin-bottom: 3px;
    line-height: 1.3;
  }

  .footer-nav-list {
    flex-direction: column;
    align-items: center;
  }

}

@media screen and (max-width: 1070px) {
  .footer-item-image {
    width: 25px;
    height: 25px;
    margin-right: 9px;
    padding-right: 0px;
  }
}

/* 下層heroセクション */
.hero {
  height: 270px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-title {
  font-size: 3rem;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  letter-spacing: 0.1em;
  color: #fff;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 760px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero {
    height: 168px;
    background-size: cover;
    background-position: top;
  }
}

@media screen and (max-width: 751px) {
  #content {
    margin-top: 93px !important;
  }
}

@media screen and (max-width: 500px) {
  #content {
    margin-top: 109px !important;
  }
}

/* セクション */
.section {
  padding: 57px 0 97px;
}

.container {
  max-width: 1250px;
  position: relative;
  margin: 0 auto;
}

.section-icon {
  text-align: center;
  padding-bottom: 16px;
}

.section-icon-image {
  width: 4%;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 11px;
}

.section-title-en {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  position: relative;
}

.section-title-en::after {
  content: "";
  border-bottom: 4px solid #c60d18;
  left: 0;
  right: 0;
  bottom: -15px;
  position: absolute;
  width: 70px;
  margin: 0 auto;
}

.white::after {
  content: "";
  border-bottom: 4px solid #FFF;
  left: 0;
  right: 0;
  bottom: -15px;
  position: absolute;
  width: 70px;
  margin: 0 auto;
}

.section-wrapper {
  padding: 47px 0 62px;
  width: 95%;
  margin: 0 auto;
}

.shop-wrapper {
  flex-wrap: wrap;
  display: flex;
  gap: 20px;
  row-gap: 80px;
  justify-content: space-between;
}

@media screen and (max-width: 1280px) {
  .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 980px) {
  .concept-image {
    padding-bottom: 47px;
  }
}

@media screen and (max-width: 760px) {
  .section {
    padding: 39px 0 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-wrapper {
    padding: 30px 0 0;
    width: 100%;
  }

  .container {
    max-width: 720px;
  }

  .section-icon-image {
    width: 10%;
  }

  .section-container {
    padding-top: 21px;
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  .section-icon-image {
    width: 14%;
  }
}

.m-pager_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.m-pager {
  margin-top: 40px;
  text-align: center;
}

.m-pager li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
}

.m-pager_prev a,
.m-pager_next a,
.m-pager_prev span,
.m-pager_next span {
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -1000px;
  position: relative;
  transition: all ease 0.3s;
}

.m-pager_prev a:hover,
.m-pager_next a:hover {
  background-color: #b48c42 !important;
  border-color: #b48c42 !important;
}

.m-pager_prev a:after,
.m-pager_next a:after,
.m-pager_prev span:after,
.m-pager_next span:after {
  content: " ";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 13px;
  left: 10px;
  border-top: 3px solid #d20212;
  border-right: 3px solid #d20212;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

.m-pager_prev a:after,
.m-pager_prev span:after {
  left: 18px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
}

.m-pager_prev span:after,
.m-pager_next span:after {
  border-color: #e6dfc9;
}

.m-pager li.m-pager_off {
  display: none;
}

.m-pager li.m-pager_prev span {
  display: none;
}

.m-pager li.m-pager_next span {
  display: none;
}

.m-pager li .page-numbers,
.m-pager li span {
  border: solid 1px #f0f0f0;
  padding: 0.8em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: max-content;
  min-width: 3em;
  height: 3em;
  box-sizing: border-box;
  text-decoration: none;
  line-height: 1;
}

.m-pager li.m-pager_item .page-numbers.current {
  background: none;
  border: solid 1px transparent;
}

.m-pager li.m-pager_dot {
  display: flex;
  align-items: center;
  padding: 0 0.5em;
  color: #666;
}

@media screen and (max-width: 750px) {
  .m-pager {
    margin-top: 25px;
  }

  .m-pager_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }

  .m-pager li .page-numbers,
  .m-pager li span {
    width: 34px;
    height: 34px;
    padding: 0;
    font-size: 14px;
  }

  .m-pager_prev a,
  .m-pager_next a,
  .m-pager_prev span,
  .m-pager_next span {
    position: relative;
    text-indent: -9999px;
  }

  .m-pager_prev a:after,
  .m-pager_next a:after,
  .m-pager_prev span:after,
  .m-pager_next span:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    top: 50%;
    left: 50%;
    text-indent: 0;
  }

  .m-pager_prev a:after,
  .m-pager_prev span:after {
    transform: translate(-30%, -50%) rotate(-135deg);
  }

  .m-pager_next a:after,
  .m-pager_next span:after {
    transform: translate(-70%, -50%) rotate(45deg);
  }
}

/* パンくずリスト */
.topic-path {
  display: flex;
  margin-bottom: 36px;
}

.topic-path-item {
  font-size: 0.8rem;
  margin-right: 36px;
}

.topic-path-link {
  position: relative;
}

.topic-path-link::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -25px;
  margin-top: -6px;
  border-top: 1px solid #000;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  border-right: 1px solid #000;
}

.arrow-white::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -25px;
  margin-top: -6px;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  border-right: 1px solid #fff;
}

@media screen and (max-width: 980px) {
  .topic-path {
    /* width: 90%; */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.8;
  }
}

@media screen and (max-width: 480px) {
  .topic-path-item {
    font-size: 0.5rem;
    margin-right: 23px;
  }

  .topic-path-link::after {
    width: 5px;
    height: 5px;
    right: -12px;
    margin-top: -3px;
  }
}

.coupon-wrapper {
  max-width: 800px;
  margin: 0 auto;
  /* padding-top: 47px; */
}

.coupon-list {
  padding: 40px 37px;
  background-color: #fff;
  margin-bottom: 40px;
}

.coupon-list-title {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee9da;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: bold;
  color: #89794e;
}

.coupon-list-desc {
  line-height: 1.6em;
}

@media screen and (max-width: 760px) {
  .coupon-list {
    width: 95%;
    margin: 40px auto;
  }

  .coupon-wrapper {
    padding: 0;
  }

  .coupon-list-title {
    font-size: 1.2rem;
  }

  .coupon-list-desc {
    font-size: 0.8rem;
  }
}

.menu-nav-list {
  margin-bottom: 30px;
  display: flex;
  padding-top: 50px;
}

.menu-nav-item {
  width: 25%;
}

.menu-nav-link {
  position: relative;
  display: block;
  padding: 12px 5px;
  text-align: center;
  font-weight: bold;
  color: #000;
  z-index: 2;
}

.menu-nav-link.cur {
  background-color: #63542b;
  color: #fff;
}

.menu-nav-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #a5986f;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
  transform-origin: 0 50%;
}

.menu-nav-link:hover::before {
  transform: scaleX(1);
}

/* 下層　コースページ */
.course-wrapper {
  margin-top: 84px;
}

.course-outline tr {
  border-bottom: 2px solid #e5e5e6;
  padding: 8px 0;
  display: inline-table;
  width: 100%;
}

.course-outline th {
  width: 20%;
  vertical-align: baseline;
}

.course-outline td {
  width: 60%;
  padding: 14px;
  line-height: 1.5em;
}

.course-menu dt {
  padding: 2px 10px;
  background: #e5e5e6;
  color: #fff;
  font-weight: bold;
}

.course-menu dd {
  border: 2px solid #e5e5e6;
  padding: 16px 8px;
  line-height: 1.8em;
  font-size: 0.9em;
}

/* 下層　お食事ページ */
.food-list {
  padding: 25px 25px 17px;
  margin-bottom: 40px;
  background-color: #fff;
}

.food-list-title {
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 2rem;
  line-height: 1.3;
  border-left: 8px solid #e13c0a;
}

.food-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.food-menu-item {
  width: 48%;
  padding: 8px 0;
  border-bottom: 1px solid #eee9da;
  line-height: 1.5;
}

.food-menu-name {
  font-size: 18px;
  font-weight: bold;
}

.food-menu-price {
  margin-top: 2px;
  font-size: 14px;
}

/* ニュース single.php */
.news-detail-wrapper {
  width: 60%;
  margin: 0 auto;
}

.news-detail-category {
  padding: 10px;
  background: #a5986f;
  color: #fff;
}

.news-title-box {
  display: flex;
  /* justify-content: space-between; */
  flex-direction: column-reverse;
  margin: 25px 0;
}

.news-title-date {
  margin-top: 15px;
  width: 20%;
}

.news-detail-date {
  color: #c60d18;
  font-size: 1.5rem;
}

.news-detail-image {
  margin: 0 auto;
  margin: 50px auto;
  text-align: center;
}

.news-detail-text {
  padding-bottom: 42px;
}

.news-detail-text>p {
  font-size: 1.2rem;
  line-height: 1.6em;
}

@media screen and (max-width: 760px) {
  .news-detail-wrapper {
    width: 90%;
  }

  .food-menu-item {
    width: 100%;
    height: auto !important;
  }

  .course-outline th,
  .course-outline td {
    padding: 8px 4px;
  }
}

@media screen and (max-width: 480px) {
  .news-title-date {
    width: 34%;
  }
}

/*-----------------------------------------

		#mv

-----------------------------------------*/
.mv-main-image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
}

.slide-show {
  position: relative;
  height: 68vh;
}

.mv-image {
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 57vh;
}

.video {
  max-width: 100%;
  width: 100%;
  height: 848px;
  object-fit: cover;
  vertical-align: bottom;
}

@media screen and (max-width: 1280px) {
  .video {
    height: auto;
    object-fit: unset;
  }
}

@media screen and (max-width: 760px) {
  .slide-show {
    height: 100vh;
  }
}

/*
	topにあるスライダー owl-carousel
	=======================================================================
*/
section.carousel {
  /* margin-top: 64px; */
  padding-bottom: 20px;
  padding-top: 0;
}

section.carousel .nav-header {
  color: #A6232A;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  margin-top: 30px;
}

section.carousel .carousel-nav {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  margin-top: 20px;
}

section.carousel .carousel-nav .carousel-nav-item {
  margin: 0 2px;
}

section.carousel .carousel-nav .carousel-nav-item.active a img {
  border-color: #A6232A;
}

section.carousel .carousel-nav .carousel-nav-item a {
  display: inline-block;
}

section.carousel .carousel-nav .carousel-nav-item a img {
  width: 100%;
  max-width: 78px;
  border-radius: 8px;
  border: solid 3px;
  border-color: #eeedeb;
  aspect-ratio: 78 / 131;
  object-fit: cover;
}

.owl-carousel .banner {
  /* height:545px;
  width:375px; */
  width: 100vw;
  background-color: #ffffff;
}

.banner_pc {
  display: none;
}

.banner_sp {
  display: block;
}

.banner_sp img {
  aspect-ratio: 375 / 650;
  object-fit: cover;
}

body.top .main {
  padding-top: 64px;
}

@media only screen and (min-width: 754px) {
  /* section.carousel {
    margin-top: 64px;
  } */

  .owl-carousel .banner {
    width: 70vw;
  }
}

@media only screen and (min-width: 1024px) {
  /* section.carousel {
    margin-top: 64px;
  } */

  .owl-carousel .banner {
    width: 100vw;
  }

  .banner_pc {
    display: block;
  }

  .banner_pc img {
    aspect-ratio: 960 / 366;
    object-fit: cover;
  }

  .banner_sp {
    display: none;
  }

  section.carousel .carousel-nav .carousel-nav-item {
    margin: 0 5px;
  }

  section.carousel .carousel-nav .carousel-nav-item a img {
    max-width: 178px;
    aspect-ratio: 178 / 72;
    object-fit: cover;
  }
}

@media only screen and (min-width: 1071px) {
  /* section.carousel {
    margin-top: 148px;
  } */

}

@media only screen and (min-width: 1500px) {
  .owl-carousel .banner {
    height: 366px;
    width: 960px;
  }
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
  display: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 180px;
}

.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-next:focus {
  outline: none;
}

.owl-carousel .owl-nav button.owl-prev {
  background: url("../owlcarousel/btn_prev.png") no-repeat center top;
  left: calc(50vw - 530px);
}

.owl-carousel .owl-nav button.owl-next {
  /* background: url("../owlcarousel/btn_prev.png") no-repeat center top; */
  background: url("../owlcarousel/btn_next.png") no-repeat center top;
  right: calc(50vw - 530px);
}

/*-----------------------------------------

		#menu

-----------------------------------------*/
.menu-course {
  width: 90%;
  margin: 0 auto;
}


.menu-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  padding: 20px 0 10px;
  width: 97%;
  margin: 0 auto 50px;
}

.menu-course-title {
  font-size: 1.8rem;
  line-height: 1.6;
  padding-bottom: 30px;
}

.menu-course-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.menu-course-text {
  /* background: #000; */
  color: #fff;
  /* width: 24%;
  padding: 16px 0; */
  margin-right: 25px;
  min-width: 70px;
}

.menu-price {
  padding: 15px 0;
  font-size: 1.3rem;
  font-weight: 900;
}

.menu-course-desc {
  line-height: 1.6em;
}

/* .menu-course-num {
  width: 60%; } */

.menu-food-name {
  font-size: 1.2rem;
  line-height: 1.6;
  padding-bottom: 5px;
}

.menu-food-price {
  font-size: 1rem;
  padding-bottom: 15px;
}

.menu-wrapper {
  display: flex;
  justify-content: space-around;
  padding-bottom: 37px;
  margin-top: 84px;
}

.menu-food-list {
  width: 30%;
}

.menu-food-inner {
  padding-top: 28px;
  width: 86%;
  margin: 0 auto;
}

.takeout-banner {
  text-align: center;
}

@media screen and (max-width: 760px) {
  .menu-title {
    font-size: 1.5rem;
  }

  .menu-course-title {
    font-size: 1.5rem;
  }

  .menu-wrapper {
    display: block;
    padding: 0 1em;
    margin-top: 54px;
  }

  .menu-food-list {
    width: 100%;
    justify-content: space-around;
    display: flex;
    padding-bottom: 35px;
  }

  .menu-food-image {
    width: 30%;
    height: 30%;
  }

  .menu-food-inner {
    width: 63%;
    padding-top: 0;
  }

  .takeout-banner {
    text-align: center;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 478px) {
  .menu-course {
    width: 100%;
  }
}

/*-----------------------------------------

		#space

-----------------------------------------*/
.space-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 30px 0px 50px;
}

.space-item {
  width: 40%;
  margin: 26px 0;
}

.space-item-title {
  font-size: 1.8rem;
  padding: 16px 0 8px;
  line-height: 1.6;
}

@media screen and (max-width: 760px) {
  .space-list {
    display: block;
  }

  .space-item {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .space-item-title {
    font-size: 1.2rem;
  }

  .space-item-text {
    font-size: 0.8rem;
  }
}

/* メニューブック */

.top-menu a:hover {
  opacity: 0.8;
}

.menu-popup-container {
  margin: 0 5px;
  display: flex;
  justify-content: center;
}

.menu-popup-container a {
  display: block;
  cursor: zoom-in;
  position: relative;
}

.menu-popup-container .cover {
  width: 100%;
  object-fit: cover;
  object-position: 100% 0;
}

.popup {
  margin: 0 20px;
  width: 100%;
}

.top-menu .attention {
  margin-top: 10px;
  color: #333;
  font-size: 12px;
}

.popup .zoom {
  position: absolute;
  bottom: -5%;
  left: 25%;
  width: 50%;
  padding: 25px 20px;
  text-align: center;
  background-color: #b01d22;
  color: #fff;
}

.zoom p {
  position: relative;
}

.zoom p::after {
  content: url("../img/glass.png");
  position: absolute;
  right: 0;
  bottom: -7px;
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 760px) {
  .menu-popup-container {
    flex-direction: column;
  }

  .popup {
    margin: 40px auto;
    width: 90%;
  }

  .popup .zoom {
    padding: 16px;
  }

  .zoom p::after {
    display: none;
  }
}

/*-----------------------------------------

		#concept

-----------------------------------------*/
.concept-list {
  display: flex;
  margin-bottom: 70px;
  justify-content: space-around;
}

.concept-image {
  width: 45%;
}

.concept-list-image {
  width: 100%;
}

.concept-item {
  width: 40%;
}

.concept-title {
  font-size: 1.9rem;
  line-height: 1.2em;
  padding-bottom: 17px;
}

.concept-desc {
  /* font-size: 1.2rem; */
  line-height: 1.8;
}

.top-message {
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

@media screen and (max-width: 980px) {
  .concept-list {
    display: block;
  }

  .concept-image {
    width: 90%;
    margin: 0 auto;
  }

  .concept-item {
    width: 90%;
    margin: 0 auto;
  }

  .concept-title {
    font-size: 1.5rem;
  }

  .concept-image {
    padding-bottom: 31px;
  }
}

@media screen and (max-width: 760px) {
  .concept-title {
    font-size: 1.2rem;
  }

  .concept-desc {
    font-size: 0.8rem;
  }
}

.top-banner-container {
  display: flex;
  justify-content: center;
  margin: 40px 0 70px;
}

.top-banner {
  margin: 0 10px;
}

.banner-pc {
  display: inline-block;
}

.banner-sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .footer-box {
    padding-bottom: 80px;
  }

  .top-banner-container {
    display: block;
    margin: 30px 0;
  }

  .top-banner {
    text-align: center;
    margin-bottom: 20px;
  }

  .banner-pc {
    display: none;
  }

  .banner-sp {
    display: inline-block;
    width: 90%;
  }
}

/*-----------------------------------------

		#news

-----------------------------------------*/
.news-list {
  padding: 50px 0;
  /*display: flex;*/
  justify-content: center;
}

.news-list-link {
  display: flex;
  /* justify-content: space-around; */
  align-items: normal;
  /*flex-direction: column;*/
  margin: 37px 20px;
}

.news-list-image {
  max-width: 100%;
  width: 280px;
  /*width: 320px;*/
  height: auto;
}

.news-list-box {
  /*width: 77%;*/
  width: 74%;
  margin-left: 3%;
}

.news-list-category {
  background-color: #000;
  padding: 11px;
  color: #fff;
  margin-bottom: 15px;
}

.news-list-date {
  margin: 20px 0;
  font-weight: 600;
  color: #000;
}

.news-list-title {
  color: #000;
}

@media screen and (max-width: 1070px) {
  .news-list {
    padding: 0 0 1px;
    flex-direction: column;
  }

  .news-list-image {
    /*width: 70%;*/
    height: auto;
  }

  .news-list-box {
    width: 70%;
  }

  .news-list-link {
    margin: 37px auto;
    width: 96%;
  }
}

@media screen and (max-width: 480px) {
  .news-list-image {
    width: 31%;
    height: 31%;
  }

  .news-list-box {
    /*width: 59%;*/
    width: 100%;
    margin-left: 4%;
  }
}

/*-----------------------------------------

		#concept

-----------------------------------------*/
.news-list-date {
  margin: 0 0 20px;
}

.coupon-list-desc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 760px) {
  .coupon-list-desc-container {
    flex-direction: column;
  }

  .coupon-list-desc-container .header-button-box {
    margin: 20px auto 0;
  }
}

/* 店長コメント */

.recommendation-wrap {
  margin-top: 60px;
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
}

.manager-image {
  width: 30%;
  margin: 0 auto;
}

.store_manager-comment h2 {
  margin-bottom: 30px;
}

.store_manager-comment {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 760px) {
  .recommendation-wrap {
    flex-direction: column;
  }

  .manager-image {
    width: 100%;
    margin-bottom: 30px;
  }

  .store_manager-comment {
    width: 90%;
  }
}

/*-----------------------------------------

		#sns　ウィジット

-----------------------------------------*/

.sns-field {
  display: flex;
  justify-content: center;
}

/*-----------------------------------------

		#access

-----------------------------------------*/
.access-list-title {
  font-size: 2rem;
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
  margin-bottom: 73px;
  text-align: center;
}

.access-list-wrapper {
  display: block;
  margin-top: 20px;
  table-layout: fixed;
}

.access-list-item {
  width: 50%;
}

.access-list-item tr {
  display: flex;
  line-height: 2em;
  padding-bottom: 26px;
  display: -ms-flexbox;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.access-list-item th {
  /* width: 26%; */
  width: 200px;
  font-size: 1.2rem;
  text-align: left;
}

.access-list-item td {
  width: 75%;
  font-size: 1.2rem;
}

.m-access {
  text-align: center;
}

.m-access_map {
  /* margin: 2%; */
  margin: 4% 2%;
  height: 400px;
}

.m-access_map iframe {
  width: 100%;
  height: 100%;
}

/* 店舗までの道順 */

.access-direction-container {
  width: 80%;
  flex-wrap: wrap;
  margin: auto;
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}

.access-direction-container::after {
  width: 47%;
  content: "";
  display: block;
}

.direction-box {
  width: 47%;
  margin-bottom: 20px;
}

.direction-box img {
  width: 100%;
  height: auto;
}

.direction-box p {
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
  margin-top: 10px;
}

.access-direction-title {
  font-size: 2rem;
  margin-top: 50px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 760px) {
  .access-direction-container {
    width: 95%;
  }

  .access-direction-title {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 760px) {
  .access-list-title {
    font-size: 1.6rem;
    margin-bottom: 9px;
  }

  .access-list-wrapper {
    table-layout: fixed;
    display: block;
    width: 100%;
    margin: 0;
  }

  .m-access_map {
    width: 90%;
    margin: 40px auto;
  }

  .access-list {
    width: 90%;
    margin: 0 auto;
  }

  .access-list-item tr {
    display: flex;
    justify-content: space-around;
    display: -ms-flexbox;
    -ms-flex-pack: distribute;
    padding-bottom: 16px;
  }

  .access-list-item th {
    /* width: 28%; */
    width: 200px;
    font-size: 1rem;
  }

  .access-list-item td {
    width: 66%;
    font-size: 1rem;
  }
}

.gmap-info-window {
  position: relative;
  width: 290px !important;
  padding: 15px 20px;
  border: 2px solid #ff941f;
  background-color: #fff;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.gmap-info-window:before {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 20px;
  height: 10px;
  transform: translate(-50%, 0);
  background: url("../img/gmap-info-window-frame-point.png") no-repeat 0 0;
  content: "";
}

.gmap-info-window-title {
  color: #ff941f;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.gmap-info-window-shop {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.gmap-info-window img {
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
}

.s-checkbox_label span {
  padding-left: 27px;
  position: relative;
}

.s-checkbox_label span:before {
  content: " ";
  border: 2px solid #837756;
  width: 16px;
  height: 16px;
  background-color: #fff;
  box-sizing: border-box;
  position: absolute;
  top: 5px;
  left: 0;
}

.error-wrapper {
  text-align: center;
}

.error-title {
  padding: 50px;
  font-size: 2em;
}

.shop-logo {
  text-align: center;
}

.shop-image {
  width: 300px;
  max-width: 100%;
  background-color: #fff;
  padding: 36px;
}

.shop-list {
  width: 48%;
  padding: 44px;
  background-color: #fff;
}

.shop-list-item {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.shop-list-item tr {
  padding: 13px 0;
  display: flex;
  align-items: baseline;
}

.shop-list-item th {
  width: 17%;
  text-align: left;
}

.shop-list-item td {
  width: 83%;
  line-height: 1.5em;
}


.shop-name {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #CCC;
  padding: 20px 10px;
  margin-top: 20px;
}

.access-list-info {
  /* padding: 20px 0px 41px;  */
  margin: 0 auto;
  width: 100%;
}

.shop-copyright {
  text-align: center;
  padding: 46px 0;
}

@media screen and (max-width: 1023px) {
  .shop-list {
    padding-inline: 15px;
  }
}

@media screen and (max-width: 760px) {
  .access-list-info {
    width: 100%;
  }

  .shop-wrapper {
    display: block;
  }

  .shop-image {
    width: 200px;
    padding: 16px;
  }

  .shop-list {
    width: 100%;
    padding: 16px;
  }

  .shop-name {
    width: 100%;
  }
}

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


/*
	topにあるスライダー owl-carousel
	=======================================================================
*/

.media-box {
  padding-top: 50px;
  text-align: center;
}

.media-box p {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.media-box img {
  width: 90%;
}

@media screen and (max-width: 760px) {
  .media-box p {
    font-size: 20px;
  }
}

/*
	お客様の声
	=======================================================================
*/

.box-scroll {
  background-color: #fff;
  padding: 14px;
  height: 600px;
  overflow-y: scroll;
  border: 1px solid #C7C7C7;
}

.box-scroll__inner {}

@media print,
screen and (min-width: 900px) {
  .box-scroll {
    height: 595px;
    padding: 40px;
    box-sizing: content-box;
    overflow-y: scroll;
    margin-top: 70px;
  }
}

.box-voice {
  background-color: #fff;
  padding: 24px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.box-voice__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.box-voice__heading .average-point {
  font-family: helvetica;
  font-weight: bold;
  font-size: 57px;
  line-height: 1.05;
}

.box-voice__heading .average-star img {
  width: 80px;
  border: #fff 1px solid;
}

.box-voice__heading .total {
  font-size: 14px;
}

.box-voice__content {
  padding: 0 17.5%;
}

@media print,
screen and (min-width: 900px) {
  .box-voice {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 15%;
    margin-bottom: 40px;
    padding: 25px 0;
  }

  .box-voice__heading {
    margin: 0;
  }

  .box-voice__heading .average-point {
    font-size: 74px;
  }

  .box-voice__heading .average-star img {
    width: 127px;
  }

  .box-voice__content {
    padding: 0;
  }
}

.lst-evaluation {
  font-family: "Noto Sans JP", sans-serif;
}

.lst-evaluation__item {
  display: flex;
}

.lst-evaluation__item {
  display: flex;
  justify-content: space-between;
}

.lst-evaluation__item .name {
  min-width: 88px;
  font-size: 14px;
}

.lst-evaluation__item .num {
  min-width: 18px;
  font-size: 14px;
}

.lst-evaluation__item .star img {
  width: 109px;
  border: #fff 1px solid;
}

@media print,
screen and (min-width: 900px) {
  .lst-evaluation__item .name {
    min-width: 128px;
  }

  .lst-evaluation__item .num {
    min-width: 32px;
  }

  .lst-evaluation__item .star img {
    width: 127px;
  }
}

.lst-border--dashed {
  /* margin-top: 8px;
  padding-top: 16px;
  border-top: #2C2C2C 1px solid; */
}

.lst-border--dashed__item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: #C7C7C7 1px dashed;
}

.lst-border--dashed__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.article-voice {
  font-family: "Noto Sans JP", sans-serif;
}

.article-voice__heading {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.article-voice__heading .voice-star {
  display: flex;
  align-items: center;
  margin-right: 1em;
}

.article-voice__heading .voice-star img {
  width: 70px;
  border: #fff 1px solid;
}

.article-voice__heading .voice-point {
  display: inline-block;
  margin-right: 1em;
  font-size: 14px;
}

.article-voice__heading .voice-date,
.article-voice__heading .voice-age {
  display: inline-block;
  margin-right: 1em;
  font-size: 12px;
}

.article-voice__content {
  font-size: 16px;
  line-height: 1.5;
}

@media print,
screen and (min-width: 900px) {
  .article-voice__heading .voice-star img {
    width: 70px;
    border: #fff 1px solid;
  }

  .article-voice__heading .voice-point {
    font-size: 16px;
  }

  .article-voice__heading .voice-date,
  .article-voice__heading .voice-age {
    font-size: 14px;
  }
}

/*
	追従バナー
	=======================================================================
*/

/* 追従バナー */
/* .m-mv_fixbnr_wrap_ {
  position: fixed;
  bottom: 2%;
  right: 1%;
  z-index: 1000000;
} */

.m-mv_fixbnr_sp {
  display: none;
}

.m-mv_fixbnr_pc {
  position: fixed;
  bottom: 2%;
  right: 1%;
  z-index: 1000000;
  display: block;
  /* box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
  background-color: #fff; */
}

/* .m-mv_fixbnr.fixed {
  position: fixed;
  z-index: 10;
  right: 15px;
} */

.m-mv_fixbnr_close {
  position: absolute;
  top: 7%;
  right: 4%;
  cursor: pointer;
  border-radius: 50%;
  /* box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5); */
  line-height: 0;
}

.m-mv_fixbnr_close img {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 1070px) {
  /* .m-mv_fixbnr_wrap {
    top: inherit;
    bottom: 10px;
    right: 50%;
    max-width: 360px;
    margin-right: -180px;
  } */

  .m-mv_fixbnr_pc {
    display: none;
  }

  .m-mv_fixbnr_sp {
    display: block;
    width: 17rem;
    position: fixed;
    bottom: 0 !important;
    right: 0;
    /* left: 0; */
    /* margin: auto; */
    z-index: 1000000;
    box-shadow: none;
  }

  .m-mv_fixbnr_sp img {
    width: 100%;
    vertical-align: bottom;
  }

  .m-mv_fixbnr_close {
    /* top: 1%;
    right: 0.5%; */
    top: 8%;
    right: 3.5%;
    box-shadow: none;
  }
}

/*
	MV動画
	=======================================================================
*/
.mv-movie {
  position: relative;
  /*ローディング画像などを表示す際の基点とするため指定*/
  height: calc(100vh - 149px);
  /*高さを全画面-ヘッダーの高さにあわせる*/
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* youtube設定 */
.mv-movie #youtubeMV {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 248vh;
  height: 75vw;
  min-height: 100%;
  min-width: 100%;
  z-index: 1;
}

/*youtubeがクリックされないためのマスク*/
.mv-movie #youtube-mask {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
}

/*youtube 上のロゴ */
.mv-movie .mv-movie-title {
  position: absolute;
  z-index: 2;
  width: 90%;
  top: 40%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  text-shadow: 0 0 15px #666;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  text-shadow: 0 0 20px rgba(51, 51, 51, .8), 0 0 20px rgba(51, 51, 51, .8), 0 0 20px rgba(51, 51, 51, .8);
}

.mv-movie+section.carousel {
  margin-top: 20px;
}

@media screen and (max-width: 760px) {
  .mv-movie {
    height: calc(100vh - 93px);
    /*高さを全画面-ヘッダーの高さにあわせる*/
  }

  .mv-movie .mv-movie-title {
    font-size: 1.6rem;
  }
}


/*
	MV動画（MP4）
	=======================================================================
*/
.mv-movie-local01 {
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: #000;
}

.mv-movie-local01 .mv-movie-video-local01 {
  width: 100%;
  vertical-align: bottom;
}

.mv-movie-local01+section.carousel {
  margin-top: 20px;
}

@media screen and (max-width: 1070px) {
  .mv-movie-local01 .mv-movie-video-local01 {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1070px) {
  .mv-movie-local01+section.carousel {
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  #header {
    padding: 7px;
  }

  .mv-movie {
    height: calc(100vh - 220px);
  }

  .mv-movie-local01 {
    padding-top: 29px;
  }

  .header-sp-shop-text {
    width: 67%;
    padding: 20px 10px;
    font-size: 0.9375rem;
  }

  .header-navmenu {
    top: 45px;
    right: 10px;
    width: 35px;
    height: 35px;
  }

  .mv-movie .mv-movie-title {
    top: 58%;
  }

  #header {
    top: 32px;
  }
}

/*
	SP フッターナビゲーション
	=======================================================================
*/

.footer-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
}

.footer-navigation-list {
  display: flex;
  justify-content: space-between;
}

.footer-navigation-listitem {
  width: 24.734%;
  height: 60px;
}

.footer-navigation-listlink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #F9F9F8;
  opacity: .9;
}

.footer-navigation-listlink.is-nothing {
  background-color: #b9b9b9;
}

.footer-navigation-listimg {
  height: 80%;
}

/* ---
カレンダー・追従サイドバー追加 2024/09/20
---------------------------------------- */
/* --- カレンダー
-------------------------- */
#calender {
  margin: 54px 0;
  padding: 67px 93px 47px 69px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: #EFEFEF;
  border-radius: 32px;
}

.calender-head {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.calender-subhead {
  display: block;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

#calender .section-icon-image {
  width: 25%;
}

#calender .section-title-en {
  display: block;
  margin-bottom: 30px;
  margin-top: 10px;
}

.calender-btn {
  display: block;
  width: 268px;
  margin: 40px auto 0;
  background-color: #e1c21a;
  /* border-radius: 50px; */
}

.calender-btn p {
  padding: 23px 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

#calender .calender-right .totto-calendar-wrap {
  background: #ffffff;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
}

#calender .calender-right .totto-calendar-2month.d-none.d-xl-block {
  display: none;
}

#calender .calender-right .totto-calendar-legend.row {
  display: none;
}

#calender .calender-right .totto-calendar-head {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

#calender .calender-right .totto-calendar-table {
  /* width: 522px; */
  width: 800px;
  max-width: 100%;
  border-collapse: collapse;
}

#calender .calender-right tr.totto-calendar-label:first-child {
  border-bottom: 2px solid #480000;
}

#calender .calender-right .totto-calendar-label th,
td {
  width: 40px;
  height: 40px;
  text-align: center;
  /*text-align: left;	250304*/
  font-weight: bold;
}

#calender .calender-right .totto-calendar-week.saturday {
  color: #3D80DD;
}

#calender .calender-right .totto-calendar-week.sunday {
  color: #D7000F;
}

#calender .calender-right .totto-calendar-btn {
  background-color: unset;
  border: none;
}

#calender .calender-right .totto-calendar-btn img {
  /* cursor: pointer; */
}

#calender .calender-right .totto-calendar-datetext {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 16px;
}

.m-mv_fixbnr_wrap {
  display: none;
}

@media (max-width: 1080px) {
  #calender {
    display: block;
    padding: 30px;
  }

  #calender .section-icon-image {
    width: 5%;
  }

  .calender-btn {
    margin: 30px auto 0;
  }

  #calender .calender-right .totto-calendar-table {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  #calender .section-icon-image {
    width: 10%;
  }
}

@media (max-width: 520px) {
  #calender .calender-right .totto-calendar {
    /* display: none; */
  }

  #calender {
    padding: 30px 10px;
  }

  .calender-head {
    font-size: 1.5rem;
  }

  .calender-subhead {
    font-size: 0.9rem;
    padding-top: 1em;
  }

  #calender .calender-right .totto-calendar-datetext {
    font-size: 14px;
  }

  #calender .calender-right .totto-calendar-btn {
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #calender .section-icon-image {
    width: 14%;
  }
}

@media screen and (max-width: 460px) {
  #calender .calender-right {
    width: 100%;
  }

  #calender .calender-right .totto-calendar {
    width: 100%;
  }

  #calender .calender-right .totto-calendar .totto-calendar-wrap {
    width: 100%;
  }

  #calender .calender-right .totto-calendar-table {
    width: 100%;
  }

  #calender .calender-right tr.totto-calendar-label {
    width: 100%;
  }

  #calender .calender-right .totto-calendar-label th,
  td {
    width: auto;
    height: auto;
  }
}

/* --- 上記指定が影響を及ぼす範囲の解除 --- */
.access-list-item td {
  width: 75% !important;
  height: auto !important;
  font-size: 1.2rem !important;
  text-align: left !important;
  font-weight: 500 !important;
}

.shop-list-item td {
  padding-left: 20px;
  width: 83% !important;
  height: auto !important;
  line-height: 1.5em;
  text-align: left !important;
  font-weight: 500 !important;
}

@media screen and (max-width: 760px) {
  .shop-list-item th {
    width: 22%;
  }

  .access-list-item td {
    width: 66% !important;
    font-size: 1rem !important;
  }
}

/* --- 追従サイドバー
-------------------------- */
.store_icon {
  position: fixed;
  right: 1%;
  bottom: 30px;
  z-index: 100;
}

.store_icon .store_icon-li {
  margin-bottom: 10px;
}

.store_icon .store_icon-li {
  margin-bottom: 10px;
  margin-inline: auto;
  width: fit-content;
}

.store_icon .store_icon-li img {
  width: 65px;
}

.store_icon .store_icon-li:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .store_icon {
    display: none;
  }
}

/* ---
メニュー - コースページの改修 2024/11/28
---------------------------------------- */
/* --- SP表示で画像と説明文を横並びに
-------------------------- */

/* /menu/
---------------------------------*/

.recommend-wrapper .btn-link::before {
  border-color: #fff;
}

@media screen and (max-width: 980px) {
  .recommend-wrapper {
    width: 90%;
  }

  .recommend-wrapper>.concept-list {
    width: 100%;
    font-size: 0.9em;
    letter-spacing: -0.4px;
    line-height: 1;
  }

  .recommend-wrapper>.concept-list.course-amendment {
    display: none;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 760px) {
  .recommend-wrapper .menu-course-title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 478px) {
  .recommend-wrapper {
    width: 100%;
  }

  .recommend-wrapper .menu-course-title {
    font-size: 1rem;
  }
}


/* /menu/course/
---------------------------------*/

.course-accordion__wrap {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: none;
  margin-bottom: 50px;
  margin-top: -40px;
  transition: all 0.3s;
}

/* --- アコーディオンボタン
-------------------------- */

.btn-link.course-accordion__btn {
  padding: 10px 85px;
}

.btn-link.course-accordion__btn::before {
  top: 30%;
  border-color: #ffffff;
  transform: rotate(136deg) scale(1);
  -webkit-transform: rotate(136deg) scale(1);
  -moz-transform: rotate(136deg) scale(1);
  -ms-transform: rotate(136deg scale(1));
}


@media screen and (max-width: 980px) {
  .course-accordion__wrap {
    display: block;
  }

  .course-wrapper {
    padding: 0 15px;
  }

  .course-wrapper>.concept-list {
    width: 100%;
    justify-content: space-around;
    display: flex;
    gap: 1.25em;
    font-size: 0.9em;
    letter-spacing: -0.4px;
  }

  .course-wrapper>.concept-list.course-amendment {
    display: none;
    font-size: 0.9em;
  }

  .course-wrapper>.concept-list.course-amendment>.concept-image {
    width: 100%;
  }

  .course-wrapper>.concept-list.course-amendment.js-accordion--open {
    display: block;
  }

  .course-accordion__wrap.js-accordion--open>.btn-link.course-accordion__btn::before {
    transform: rotate(-45deg) scale(1);
    -webkit-transform: rotate(-45deg) scale(1);
    -moz-transform: rotate(-45deg) scale(1);
    -ms-transform: rotate(-45deg scale(1));
    top: 43%;
  }
}

@media screen and (max-width: 760px) {
  .course-wrapper .menu-course-title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 478px) {
  .course-wrapper {
    padding: 0;
  }

  .course-wrapper .menu-course-title {
    font-size: 1rem;
  }
}

/* --- moddal.js（sp表示のみ）
-------------------------- */
.modaal-close {
  top: 50px;
  right: 10px;
}

/* --- gridレイアウトに変更
-------------------------- */
.grid-list {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
}

.menu-wrapper>.grid-list {
  display: block;
}

.grid-list>.grid-image {
  grid-row: 1 / 3;
  width: 100%;
  height: auto;
}

.grid-list>.grid-title {
  grid-row: 1 / 2;
  width: 100%;
  padding-left: 40px;
}

.grid-list>.grid-text {
  grid-row: 2 / 5;
  width: 100%;
  padding-left: 40px;
}

.menu-wrapper>.menu-food-list.grid-list>.grid-title,
.menu-wrapper>.menu-food-list.grid-list>.grid-text {
  padding-left: 0;
}

.grid-title>.menu-course-title {
  padding-bottom: 10px;
}

.under-menu-price,
.grid-text .under-menu-price {
  font-weight: bold;
  line-height: 1.5;
}

.under-menu-course-text {
  min-width: 80px;
  text-align: center;
  padding: 3px 8px;
}

@media screen and (max-width: 980px) {
  .course-wrapper>.grid-list {
    display: grid;
  }

  .grid-list>.grid-title,
  .grid-list>.grid-text {
    padding-left: 20px;
  }

  .menu-wrapper>.grid-list {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 760px) {

  .menu-wrapper>.grid-list {
    display: grid;
  }
}

@media screen and (max-width: 478px) {

  .grid-list,
  .menu-wrapper>.grid-list {
    grid-template-columns: 2fr 5fr;
    margin-bottom: 50px;
  }

  .grid-list>.grid-image {
    grid-row: 1;
    grid-column: 1 / 2;
    padding-bottom: 10px;
  }

  .grid-list>.grid-title {
    grid-row: 1;
    grid-column: 2 / 3;
  }

  .grid-list>.grid-text {
    grid-column: 1 / 3;
    margin-bottom: 30px;
  }

  .grid-title>.menu-course-title {
    padding-bottom: 4px;
  }

  .grid-text .under-menu-price {
    text-align: right;
  }

  .grid-list>.grid-title,
  .grid-list>.grid-text {
    padding-left: 0;
  }

  .menu-wrapper {
    padding: 0;
  }
}

.lst-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -10px;
  gap: 20px;
}

.lst-col__item.is-xs {
  width: 23%;
}

@media print,
screen and (max-width: 768px) {
  .lst-col {
    justify-content: center;
    gap: 10px;
  }

  .lst-col__item.is-xs {
    width: 32%;
  }

  .pdf_btn {
    font-size: 0.8em;
    width: 74px;
  }
}

@media print,
screen and (min-width: 600px) {
  .lst-col__item.is-xs {
    width: 25%;
  }
}

.chimney_bg01 {
  padding: 40px 0 50px;
  background: #c4a260;
}

.top_logo {
  position: absolute;
  top: 30px;
  left: 40px;
  display: block;
  width: 100%;
  max-width: 100px;
  height: auto;
  margin: 0px auto 0px;
  z-index: 99;
}

.concept_bg {
  padding: 113px 0 120px;
  background: url("/assets/img/concept_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.top_head {
  display: flex;
  justify-content: center;
  padding: 0px 0 116px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
}

.top_concept {
  max-width: 1000px;
  width: calc(100% - 20px);
  margin: 0 auto 0px;
}

.concept_flex {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 80px;
}

.concept_flex:last-of-type {
  margin-bottom: 0px
}

.concept_img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.concept_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  max-width: 520px;
}

.search_bk {
  padding: 97px 0 141px;
  background: #F5EEE5;
}

.search_head {
  font-size: 48px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: 500;
}

.search_head span {
  display: block;
  padding-top: 10px;
  margin-bottom: 77px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.filter-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  width: calc(100% - 20px);
  margin: 0 auto 0px;
}

.nearby_btn {
  position: relative;
  padding: 33px 40px 35px 48px;
  width: 480px;
  height: 100px;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: #fff;
  background: #A40001;
  border: unset;
  cursor: pointer;
}

.nearby_btn span img {
  position: absolute;
  right: 40px;
  width: 34px;
  height: 34px;
}

.search {
  position: relative;
  width: 480px;
  height: 100px;
}

.prefecture {
  width: 100%;
  height: 100px;
  padding: 33px 40px 35px 48px;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: #A40001;
  background: #fff;
  border: unset;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.search::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  border-right: 2px solid #A40001;
  border-bottom: 2px solid #A40001;
  pointer-events: none;
}

@media print,
screen and (max-width: 767px) {
  .filter-wrapper {
    flex-direction: column;
  }

  .concept_flex {
    flex-direction: column;
    gap: 30px;
  }

  .concept_img {
    margin: 0 auto;
  }

  .concept_txt {
    text-align: left;
    margin: 0 auto;
  }
}

@media print,
screen and (max-width: 560px) {
  .top_logo {
    max-width: 80px;
  }

  .top_head {
    font-size: 24px;
    margin: 60px 10px 60px;
    text-align: left;
  }

  .concept_txt {
    font-size: 16px;
    text-align: left;
    margin: unset;
  }

  .concept_img {
    max-width: 100%;
  }

  .search_head {
    font-size: 24px;
  }

  .search_head span {
    font-size: 14px;
  }

  .nearby_btn {
    width: 100%;
    max-width: 370px;
    height: 64px;
    font-size: 14px;
    padding: 15px 40px 15px 48px;
    font-weight: 500;
  }

  .nearby_btn span img {
    width: 20px;
    height: 20px;
  }

  .search {
    font-size: 14px;
    height: 64px;
    width: 100%;
    max-width: 370px;
  }

  .search::after {
    top: 40%;
    width: 15px;
    height: 15px;
    right: 42px;
    border-right: 1px solid #A40001;
    border-bottom: 1px solid #A40001;
  }

  .prefecture {
    padding: 15px 40px 15px 48px;
    font-size: 14px;
    height: 64px;
    font-weight: 500;
  }

  .search_bk {
    padding: 50px 0 80px;
  }

  .search_head span {
    margin-bottom: 45px;
  }

  .top_concept {
    margin: 0 auto 70px;
  }

  .footer-box-logo-top {
    flex-direction: column;
    justify-content: center;
  }
}

@media print,
screen and (max-width: 500px) {
  .top_logo {
    top: 50px;
    left: 15px;
  }
}

@media screen and (max-width: 450px) {
  .sp-only {
    display: none;
  }
}

@media print,
screen and (max-width: 420px) {
  .search::after {
    top: 45%;
    width: 12px;
    height: 12px;
  }
}

#route-button {
  display: inline-block;
  padding: 20px 85px;
  background-color: rgb(64, 139, 209);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

@media screen and (max-width: 760px) {
  #route-button {
    padding: 20px 40px;
  }
}

.map-link {
  display: flex;
  margin: 20px auto 80px;
  align-items: center;
  justify-content: center;
}