@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;
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/**
 * 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: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* 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: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * 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;
}

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;
  border: 1px solid #000;
  font-size: 1rem;
  color: #000;
  transition: 0.3s;
  position: relative;
}

.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: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 40%;
  left: 83%;
}












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

  .btn-link::before {
    top: 42%;
    left: 23%;
  }

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

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

		#header

-----------------------------------------*/
/* 20191129 */
#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;
  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; */
  padding: 18px 0;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-sp-navlink {
  position: relative;
  text-decoration: none;
  /* color: #fff; */
  font-size: 1.1rem;
}

@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;
  }
}

p.top-kitsuen {
  margin: 40px auto;
  text-align: center;
  width: 60%;
}

@media screen and (max-width: 1070px) {
  p.top-kitsuen {
    width: 90%;
  }
}

/* 媒体リンク追加 */

.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%;
  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: translateX(-50%) rotate(-45deg);
}

.footer-wrap {
  padding-left: 4px;
  padding-right: 4px;
}

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

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

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

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

.footer-sns-wrap {
  text-align: center;
  padding-bottom: 20px;
}

.footer-sns-link img {
  width: 50px;
}

/* 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;
}

.footer-link-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: clamp(36px, 5%, 54px);
}

.footer-link-external {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
}

.footer-link-external i {
  padding-left: 4px;
}

.footer-copyright {
  text-align: center;
  padding-bottom: 2%;
  font-size: 0.9em;
  line-height: 1.25;
}

.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%;
}

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

  .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;
  }
}

/* セクション */
.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: 5%;
}

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

.section-title-en {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  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;
  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: 70px;
  }
}

@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;
}

.m-pager_prev a:hover,
.m-pager_next a:hover {
  background-color: #ffc800;
}

.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: 11px;
  left: 6px;
  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: 14px;
  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.m-pager_item .page-numbers {
  border: solid 1px #f0f0f0;
  padding: 0.8em 1em;
  display: inline-block;
  background: #fff;
}

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

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

  .m-pager {
    margin-top: 25px;
  }

  .m-pager_item a,
  .m-pager_item span {
    padding-top: 2px;
    /*margin: 0 3px;*/
    /*width: 30px;*/
    /*height: 30px;*/
  }

  .m-pager_prev a,
  .m-pager_next a,
  .m-pager_prev span,
  .m-pager_next span {
    width: 30px;
    height: 30px;
  }

  .m-pager_prev a:after,
  .m-pager_next a:after,
  .m-pager_prev span:after,
  .m-pager_next span:after {
    width: 12px;
    height: 12px;
    top: 7px;
    left: 4px;
  }

  .m-pager_prev a:after,
  .m-pager_prev span:after {
    left: 11px;
  }
}

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

.topic-path-item {
  font-size: 0.9rem;
  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: 40px auto;
}

.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;
}

.coupon-howto__head {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 1em;
  color: #900000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.coupon-list-link {
  display: block;
  background-color: #e6e6e6;
  width: 40%;
  margin: 30px auto 0;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border: solid 1px #000000;
}

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

  .coupon-wrapper {
    padding: 0;
  }

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

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

  .coupon-howto__head {
    font-size: 1.4rem;
  }

  .coupon-list-link {
    width: 100%;
  }
}

.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);
}

/* 下層　コースページ */
.banner-wrapper {
  margin-top: clamp(40px, 5%, 84px);
}

.banner-wrapper a {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.course-wrapper {
  margin-top: clamp(40px, 5%, 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: 20px;
  padding-bottom: 20px;
}

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;
}

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

.banner_pc {
  display: none;
}

.banner_sp {
  display: block;
}

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

@media only screen and (min-width: 754px) {
  .owl-carousel .banner {
    width: 70vw;
  }
}

@media only screen and (min-width: 1024px) {
  .owl-carousel .banner {
    width: 100vw;
  }

  .banner_pc {
    display: block;
  }

  .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;
  }
}

@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: 500;
  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; */
  text-align: center;
  margin-right: 25px;
  min-width: 70px;
}

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

.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: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px 37px;
  margin-top: 84px;
}

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

.menu-food-inner.grid-text {
  padding-top: 16px;
}

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

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

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

  .menu-wrapper {
    display: block;
  }

  .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;
  }

  .menu-food-inner.grid-text {
    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.9rem;
  }
}

/* メニューブック */

.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.9rem;
  }
}

.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) {
  .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;
}

@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: 0 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%;
  height: 400px;
}

/* 店舗までの道順 */

.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-image: 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;
}

.shop-list {
  width: 48%;
  padding-bottom: 70px;
}

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

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

.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: 2px solid #000000;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  color: #fff;
  background: #333;
  border-radius: 0.6rem;
}

.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: 760px) {
  .access-list-info {
    width: 100%;
  }

  .shop-wrapper {
    display: block;
  }

  .shop-list {
    width: 100%;
  }

  .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;
  }
}

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

/* 追従バナー */

.m-mv_fixbnr_close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  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;
}

.m-mv_fixbnr--shop_top {
  position: fixed;
  right: 90px;
  bottom: 30px;
  z-index: 999;
  display: block;
  width: 360px;
  z-index: 3333;
}

@media screen and (max-width: 750px) {
  .m-mv_fixbnr--shop_top {
    width: 280px;
    right: 50%;
    bottom: 72px;
    transform: translateX(50%);
  }
}

/*
	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: 1220.777778vh;
  height: 66.25vw;
  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: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  text-shadow: 0 0 15px #666;
  font-size: 1.8rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", 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 .mv-movie-title img {
  max-width: 500px !important;
}

.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-movie .mv-movie-title img {
    max-width: 120px !important;
  }
}

/*
	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-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;
  }

  section.carousel {
    margin-top: 109px;
  }
}

/*
	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: 100%;
  height: 60px;
}

.footer-navigation-listlink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 100%;
  height: 100%;
  padding-bottom: 4px;
  border: solid #D30000;
  border-width: 2px 1px;
  background-color: #fff;
}

.footer-navigation-listlink span {
  font-size: 10px;
  font-weight: 600;
}

.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 {
  color: #000000 !important;
}

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

#calender .section-title-en::after {
  border-bottom: 4px solid #000000 !important;
}

.calender-btn {
  display: block;
  width: 268px;
  margin: 40px auto 0;
  background-color: #ebc42f;
  /* 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;
}

@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: normal !important;
}

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

@media screen and (max-width: 760px) {
  .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: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: 1.2rem;
  }
}


/* /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;
}

@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 {
    padding: 0 1em;
  }

  .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;
  }
}


/* ---
メニューPDF導入
---------------------------------------- */

.menu-pdf {
  width: 90%;
  margin: 80px auto 0;
}

.pdf-modal a {
  position: relative;
}

.pdf_btn {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 10px 15px;
  margin: 0;
  width: 88px;
}

.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) {
  .menu-pdf {
    margin: 40px auto;
  }

  .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: 150px;
  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: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", 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: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", 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: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  text-align: center;
  font-weight: 500;
}

.search_head span {
  display: block;
  padding-top: 10px;
  margin-bottom: 77px;
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", 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: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", 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: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", 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 screen and (max-width: 450px) {
  .sp-only {
    display: none !important;
  }
}

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

  .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 {
    justify-content: center;
  }
}

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

@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;
}

/* ---
インバウンドページ
---------------------------------------- */

.inbound-link-top {
  margin-bottom: 80px;
}

.inbound-link-bottom {
  margin-top: 80px;
}

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

  .inbound-link-top>.btn-link,
  .inbound-link-bottom>.btn-link {
    display: inline-block;
    width: 100%;
    padding: 18px;
  }

  .inbound-link-top>.btn-link::before,
  .inbound-link-bottom>.btn-link::before {
    left: auto;
    right: 16%;
  }
}

/* =========================
   shop list button layout
   ========================= */
.shop-wrapper {
  align-items: flex-start;
}

.shop-list {
  width: calc(48% - 10px);
  padding-bottom: 70px;
}

.shop-list .btn-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}

.shop-list .btn-more-grid .btn-link {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: opacity 0.2s ease;
}

.shop-list .btn-more-grid .btn-link::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  position: static;
  top: auto;
  left: auto;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  border: none;
}

.shop-list .btn-more-grid .btn-link::after {
  content: none;
}

.shop-list .btn-more-grid .btn-link__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: auto;
  margin: 0;
  padding: 0;
  color: inherit;
  text-align: center;
  overflow-wrap: anywhere;
}

.btn-more-grid .btn-link--shop:hover {
  color: #fff !important;
}

.shop-list .btn-more-grid .btn-link--shop::before {
  content: none;
}

.shop-list .btn-more-grid .btn-link--tel {
  background: #fff !important;
  color: #333 !important;
  border-color: #333 !important;
}

.shop-list .btn-more-grid .btn-link--tel .btn-link__label {
  gap: 4px;
}

.shop-list .btn-more-grid .btn-link--tel::before {
  content: "📞";
}

.shop-list .btn-more-grid .btn-link--reserve {
  background: #b00 !important;
  color: #fff;
  border-color: #b00 !important;
}

.shop-list .btn-more-grid .btn-link--reserve:hover {
  color: #fff !important;
}

.shop-list .btn-more-grid .btn-link--reserve .btn-link__label {
  gap: 4px;
  color: #fff
}

.shop-list .btn-more-grid .btn-link--reserve::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='5' width='16' height='15' rx='2' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16M8.5 14l2.2 2.2 4.8-5.2' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.shop-list .btn-more-grid .btn-link--line {
  background: #06c755 !important;
  color: #fff;
  border-color: #06c755 !important;
}

.shop-list .btn-more-grid .btn-link--line:hover {
  color: #fff !important;
}

.shop-list .btn-more-grid .btn-link--line .btn-link__label {
  gap: 4px;
  color: #fff;
}

.shop-list .btn-more-grid .btn-link--line::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4C7.03 4 3 7.36 3 11.5c0 2.38 1.33 4.49 3.4 5.86L5.5 21l3.64-1.99c.9.21 1.86.32 2.86.32 4.97 0 9-3.36 9-7.5S16.97 4 12 4z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.shop-list .btn-more-grid .btn-link:hover {
  opacity: unset !important;
}

.shop-list .btn-more-grid .btn-link:focus-visible {
  outline: 2px solid #333;
  outline-offset: 2px;
}

@media screen and (max-width: 1280px) {
  .shop-wrapper {
    gap: 24px 16px;
  }

  .shop-list {
    width: calc(50% - 8px);
  }

  .shop-list .btn-more-grid {
    gap: 12px;
  }

  .shop-list .btn-more-grid .btn-link {
    padding: 14px 12px;
    font-size: 14px;
  }
}

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

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

@media screen and (max-width: 767px) {
  .shop-list .btn-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .shop-list .btn-more-grid .btn-link {
    min-height: 54px;
    padding: 14px 12px;
    font-size: 14px;
    border-radius: 12px;
    gap: 4px;
  }

  .shop-list .btn-more-grid .btn-link::before {
    width: 14px;
    min-width: 14px;
    height: 14px;
    margin-right: 4px;
  }
}

/* =========================
   shop list 高さ揃え調整
   ========================= */
.shop-wrapper {
  align-items: stretch;
}

.shop-list {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  height: auto;
}

.shop-list .access-list-info {
  flex: 1;
}

.shop-list .access-list-wrapper {
  width: 100%;
  height: 100%;
}

.shop-list .shop-list-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shop-list .btn-more-grid {
  margin-top: auto;
  margin-bottom: 0;
  align-content: start;
}

/* テーブル行の見た目を安定させる */
.shop-list .shop-list-item tr {
  display: flex;
  align-items: baseline;
}

.shop-list .shop-list-item th {
  flex: 0 0 90px;
}

.shop-list .shop-list-item td {
  flex: 1;
  min-width: 0;
}

/* 営業時間の情報量差が大きいので少し余白を安定化 */
.shop-list .shop-list-item tr:nth-child(2) td>div:empty {
  display: none;
}

/* 1カラム時は高さ揃え不要 */
@media screen and (max-width: 980px) {
  .shop-wrapper {
    align-items: initial;
  }

  .shop-list {
    display: block;
  }

  .shop-list .access-list-info {
    flex: none;
  }

  .shop-list .shop-list-item {
    display: table-row-group;
    height: auto;
  }

  .shop-list .btn-more-grid {
    margin-top: 16px;
  }
}

/* カード同士の上下余白を広げる */
.shop-wrapper {
  row-gap: 70px;
  /* 今より広げたい量に調整 */
}

/* もし gap を使っていない場合の保険 */
.shop-list {
  margin-bottom: 8px;
}

/* 店名の高さを揃える */
.shop-name {
  display: flex;
  align-items: center;
  min-height: 110px;
  /* 2行タイトルを基準に調整 */
  line-height: 1.4;
  margin-bottom: 24px;
  box-sizing: border-box;
}

/* 2カラム時だけ高さを揃える */
@media screen and (max-width: 980px) {
  .shop-name {
    min-height: auto;
  }
}

/* 基本の2列グリッド */
.btn-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* ボタンが2個しかない時は、その2個を1段目に置く */
.btn-more-grid>.btn-link:first-child:nth-last-child(2) {
  grid-column: 1;
  grid-row: 1;
}

.btn-more-grid>.btn-link:first-child:nth-last-child(2)+.btn-link {
  grid-column: 2;
  grid-row: 1;
}

/* =========================
   shop list 2個ボタン時の位置調整
   ========================= */

/* ボタン2個のカードでも、4個ボタン時の1段目と同じ高さに置く */
.shop-list .btn-more-grid:has(> .btn-link:nth-of-type(2):last-of-type) {
  min-height: calc(58px * 2 + 16px);
  align-content: start;
}

/* 2個のときは必ず1段目の左・右に置く */
.shop-list .btn-more-grid:has(> .btn-link:nth-of-type(2):last-of-type)>.btn-link:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}

.shop-list .btn-more-grid:has(> .btn-link:nth-of-type(2):last-of-type)>.btn-link:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

/* ボタンが1個だけの時も、2段分（4個時と同じ）の土台を確保する */
.shop-list .btn-more-grid:has(> .btn-link:only-child) {
  min-height: calc(58px * 2 + 16px);
  align-content: start;
}

/* 1個のボタンを左上に固定 */
.shop-list .btn-more-grid:has(> .btn-link:only-child)>.btn-link {
  grid-column: 1;
  grid-row: 1;
}

/* これを既存の場所に上書き、または追加 */
.shop-list .shop-list-item {
  height: auto !important;
  /* 無理な引き伸ばしを強制停止 */
}

@media screen and (max-width: 760px) {
  .under-menu-course-desc {
    font-size: 0.9rem;
  }
}

.under-menu-course-desc.--black {
  color: #000 !important;
  padding-right: 20px;

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

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

		#chimney-column
		（コーポレートサイトのコラム記事／記事下に表示）

-----------------------------------------*/
.chimney-column {
  /* 記事本文と左右の幅を揃える。既存の本文ラッパーの width に合わせて調整すること */
  width: 60%;
  margin: 0 auto;
  padding-top: 60px;
}

.chimney-column-head {
  padding-bottom: 40px;
}

.chimney-column-ttl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 11px;
}

.chimney-column-ttl-en {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  position: relative;
}

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

.chimney-column-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 6rem;
}

.chimney-column-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.6rem;
  overflow: hidden;
  color: #000;
  transition: 0.3s;
}

.chimney-column-item:hover {
  opacity: 0.8;
}

.chimney-column-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f2f2f2;
}

.chimney-column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chimney-column-body {
  background-color: #fff;
  padding: 16px 16px 20px;
  flex: 1;
}

.chimney-column-date {
  font-weight: 600;
  color: #000;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.chimney-column-title {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.5em;
}

@media screen and (max-width: 760px) {
  .chimney-column {
    width: 90%;
    padding-top: 40px;
  }

  .chimney-column-list {
    gap: 14px;
  }

  .chimney-column-ttl {
    font-size: 1.6rem;
  }

  .chimney-column-body {
    padding: 12px 12px 16px;
  }

  .chimney-column-title {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .chimney-column-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 4rem;
  }

  .chimney-column-image {
    aspect-ratio: 16 / 9;
  }

  .chimney-column-title {
    font-size: 0.95rem;
  }
}