/* default settings */
/* reset browser (chrome, safari, firefox, ie, edge)
/* only for new website (remove if you are updating for other website)
@import "reset";
/* =================================================================== */
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/*/
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme*/
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.*/
/* ==========================================================================
 * Base styles: opinionated defaults
 * ==========================================================================*/
html {
  color: #000;
  background: #F5F3F1;
  line-height: 1.75;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
@media (max-width: 750px) {
  html {
    font-size: 3.7333333333vw;
  }
}
@media (min-width: 751px) and (max-width: 1280px) {
  html {
    font-size: 1.0248901903vw;
  }
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, ul, li, ol, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.*/
\::-moz-selection,
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

iframe {
  border: none;
}

img {
  max-width: 100%;
}

/*
 * Remove default fieldset styles.*/
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.*/
textarea {
  resize: vertical;
}

button {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:focus {
  outline: thin dotted;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

/* ==========================================================================
 * Author's custom styles
 * ==========================================================================*/
/* ==========================================================================
 * Helper classes
 * ==========================================================================*/
/*
 * Hide visually and from screen readers*/
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe*/
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1*/
}
.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638*/
/*
 * Hide visually and from screen readers, but maintain layout*/
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.*/
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

/* ==========================================================================
* EXAMPLE Media Queries for Responsive Design.
* These examples override the primary ('mobile first') styles.
* Modify as content requires.
* ==========================================================================*/
@media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition*/ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices*/ }
/* ==========================================================================
 * Print styles.
 * Inlined to avoid the additional HTTP request:
 * https://www.phpied.com/delay-loading-your-print-css/
 * ==========================================================================*/
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    box-shadow: none !important;
    text-shadow: none !important;
  }
  *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    text-decoration: underline;
  }
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol*/
  a[href^="#"]::after, a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables*/
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.text-underline {
  text-decoration: underline;
}
.text-line-through {
  text-decoration: line-through;
}
.text-no-underline {
  text-decoration: none;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-300 {
  font-weight: 300;
}
.text-400 {
  font-weight: 400;
}
.text-500 {
  font-weight: 500;
}
.text-600 {
  font-weight: 600;
}
.text-700 {
  font-weight: 700;
}

.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}

@media (max-width: 750px) {
  .only-pc {
    display: none;
  }
}
@media (min-width: 751px) {
  .only-sp {
    display: none;
  }
}

@media (min-width: 751px) {
  body {
    width: calc(100% - 31.2857142857rem);
    margin: 0 0 0 auto;
    padding: 2.8571428571rem 0;
    position: relative;
  }
  body::before {
    position: fixed;
    content: "";
    background: url("../../img/bg.jpg") no-repeat center bottom, #DBF1C8;
    background-size: 100%;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 31.2857142857rem);
    height: 100vh;
    z-index: -1;
    margin: 0 0 0 auto;
  }
}
body.fixed {
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  padding-left: 2.8571428571rem;
  padding-right: 2.8571428571rem;
  max-width: 38.5714285714rem;
  width: 100%;
}
@media (max-width: 750px) {
  .wrapper {
    padding-left: 1.4285714286rem;
    padding-right: 1.4285714286rem;
    max-width: 100%;
  }
}

.main {
  overflow: hidden;
  background: #F5F3F1;
}
@media (min-width: 751px) {
  .main {
    width: 38.5714285714rem;
    margin: 0 auto;
    border: 1px solid #000;
    border-radius: 3.4285714286rem;
  }
}
@media (max-width: 750px) {
  .main {
    padding-top: 4.5rem;
  }
}

.df {
  display: flex;
  justify-content: space-between;
}

.txt-green {
  color: #6FBA2C;
}

.txt-gray {
  color: #555555;
}

.txt-underline {
  position: relative;
  display: inline-block;
}
.txt-underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1428571429rem;
  border-radius: 0.1428571429rem;
  background: #6FBA2C;
}

.txt-highlight {
  position: relative;
  z-index: 0;
}
.txt-highlight::before {
  position: absolute;
  content: "";
  background: #E7FF70;
  height: 0.7857142857rem;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0.1428571429rem;
  z-index: -1;
}

*:focus-visible, *:focus, *:-webkit-direct-focus {
  outline: none;
}

.slick-slide {
  outline: none;
}
.slick-slide:focus-visible, .slick-slide:focus, .slick-slide:-webkit-direct-focus {
  outline: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  top: 50%;
  width: 2.5714285714rem;
  height: 2.5714285714rem;
  border-radius: 50%;
  padding: 0;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
  background: url("../../common/img/prev.svg") no-repeat center center;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  transition: all ease 0.3s;
}
@media (min-width: 751px) {
  .slick-prev:hover,
  .slick-next:hover {
    opacity: 0.8;
  }
}

.slick-disabled {
  pointer-events: none;
  opacity: 0;
}

.slick-prev:hover,
.slick-next:hover {
  outline: none;
  color: transparent;
}

.slick-prev {
  left: 0.5714285714rem;
}
@media (min-width: 751px) {
  .slick-prev {
    left: 5rem;
  }
}

.slick-next {
  background: url("../../common/img/next.svg") no-repeat center center;
  background-size: 100%;
  right: 0.5714285714rem;
}
@media (min-width: 751px) {
  .slick-next {
    right: 5rem;
  }
}

.slick-dots {
  position: absolute;
  bottom: -2.7142857143rem;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media (max-width: 750px) {
  .slick-dots {
    bottom: -1.9285714286rem;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 1.0714285714rem;
  height: 1.0714285714rem;
  margin: 0 0.25rem;
  background: #000;
  border-radius: 50%;
  transition: all ease 0.3s;
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 750px) {
  .slick-dots li {
    width: 0.7142857143rem;
    height: 0.7142857143rem;
    margin: 0 0.1785714286rem;
  }
}
@media (min-width: 751px) {
  .slick-dots li:not(.slick-active):hover {
    background: #555555;
  }
  .slick-dots li:not(.slick-active):hover::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0.0714285714rem solid #000;
    border-radius: 50%;
  }
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 1.0714285714rem;
  height: 1.0714285714rem;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #000;
  box-sizing: border-box;
  border: none;
  border-radius: 50%;
  transition: all ease 0.3s;
}
@media (max-width: 750px) {
  .slick-dots li button {
    width: 0.7142857143rem;
    height: 0.7142857143rem;
  }
}
.slick-dots li button:hover {
  outline: none;
}
.slick-dots li.slick-active {
  background: #6FBA2C;
}
.slick-dots li.slick-active button {
  background: #6FBA2C;
  border: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fadeInUp {
  opacity: 0;
}

.fadeInUp[style*=visible] {
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeIn {
  opacity: 0;
}

.fadeIn[style*=visible] {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.btn {
  border: none;
}
.btn:disabled {
  cursor: default !important;
}
.btn:not(:disabled) {
  cursor: pointer !important;
}

.btn-cus {
  padding: 0 0.5714285714rem 0 0.2857142857rem;
  width: 11.7142857143rem;
  height: 3.7142857143rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  border-radius: 714.2142857143rem;
  font-size: 1.1428571429rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #000;
  background: #fff;
  box-sizing: border-box;
  border: 0.0714285714rem solid #000;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (min-width: 751px) {
  .btn-cus {
    width: 11.7142857143rem;
  }
  .btn-cus::before {
    position: absolute;
    top: 100%;
    left: -10%;
    width: 120%;
    height: 0;
    padding-bottom: 100%;
    content: "";
    background: #000;
    transition: all 0.3s ease;
    border-radius: 50%;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .btn-cus:hover {
    color: #fff;
  }
  .btn-cus:hover::before {
    transform: translate3d(0, -65%, 0);
  }
  .btn-cus:hover .icon .off {
    opacity: 0;
  }
  .btn-cus:hover .icon .on {
    opacity: 1;
  }
}
.btn-cus span {
  position: relative;
  z-index: 1;
}
.btn-cus .icon {
  display: inline-block;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  margin: 0 0.2857142857rem 0 0;
  position: relative;
  line-height: 0;
}
.btn-cus .icon .off {
  transition: all 0.3s ease;
}
.btn-cus .icon .on {
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.btn-cus02 {
  border: 0.0714285714rem solid #000;
  padding: 0 2.4285714286rem 0 2.4285714286rem;
  width: 15.1428571429rem;
  height: 3.1428571429rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  border-radius: 714.2142857143rem;
  font-size: 1.1428571429rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #fff;
  background: #000;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 751px) and (hover: hover) {
  .btn-cus02:hover {
    color: #000;
    background: #fff;
    transition: all 0.3s ease;
  }
  .btn-cus02:hover::before {
    background: url("../../common/img/arrow-solid.svg") no-repeat center right;
    background-size: 100%;
    transition: all 0.3s ease;
  }
}
.btn-cus02::before {
  position: absolute;
  content: "";
  background: url("../../common/img/arrow.svg") no-repeat center right;
  background-size: 100%;
  top: 0;
  bottom: 0;
  right: 1.1428571429rem;
  width: 1.7142857143rem;
}

.floating-btn {
  padding: 0 0.5714285714rem 0 0.5rem;
  width: 11.7142857143rem;
  height: 4.2857142857rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  font-size: 1.1428571429rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1.1428571429rem);
  border: 0.0714285714rem solid #000;
  border-radius: 1.7142857143rem;
  box-shadow: 0.4285714286rem 0.4285714286rem 0 #238716;
  margin: 0 0.4285714286rem 1.1428571429rem 0.4285714286rem;
  box-sizing: border-box;
}
.floating-btn:first-child .icon {
  margin-right: 0.8571428571rem;
}
@media (min-width: 751px) and (hover: hover) {
  .floating-btn:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
  }
}
.floating-btn .icon {
  display: inline-block;
  width: 1.4285714286rem;
  margin: -0.3571428571rem 0.2857142857rem 0 0;
}

.header {
  padding: 1.4285714286rem 0.8571428571rem 1.4285714286rem 1.7142857143rem;
  width: 100%;
  height: 4.5714285714rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 0.0714285714rem solid #000;
  z-index: 1000;
}
@media (max-width: 750px) {
  .header {
    backdrop-filter: blur(1.1428571429rem);
  }
}
@media (min-width: 751px) {
  .header {
    padding: 4rem 0 2.2857142857rem 0;
    width: 31.2857142857rem;
    height: calc(100vh + 2.2857142857rem);
    overflow: scroll;
    background: #6FBA2C;
    border-bottom: none;
    box-sizing: border-box;
  }
  .header::-webkit-scrollbar {
    width: 0;
  }
  .header::-webkit-scrollbar-track {
    background: transparent;
  }
  .header::-webkit-scrollbar-thumb {
    background: transparent;
  }
  .header::-webkit-scrollbar-thumb:hover {
    background: transparent;
  }
}
@media (min-width: 751px) {
  .header_inner {
    padding: 0 1.7142857143rem 2.2857142857rem 1.7142857143rem;
  }
}
.header_logo {
  width: 11.2142857143rem;
  line-height: 0;
}
@media (min-width: 751px) {
  .header_logo {
    width: 100%;
    text-align: center;
    border-bottom: 0.0714285714rem solid #000;
    padding: 0 0 2.1428571429rem 0;
    margin: 0 0 1.5714285714rem 0;
  }
}
@media (min-width: 751px) {
  .header_logo img {
    width: 15rem;
    height: auto;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .header_logo:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
  }
}
.header_nav {
  margin: 0 0 0 4rem;
}
@media (max-width: 750px) {
  .header_nav {
    margin: 0 0 0 4.4285714286rem;
  }
}
@media (max-width: 750px) {
  .header_nav_list {
    display: block;
  }
}
.header_nav_list li a {
  font-size: 1.2857142857rem;
  font-weight: bold;
  display: block;
  line-height: 1;
  letter-spacing: 0.12em;
  padding: 1.0714285714rem 0 1.0714285714rem 0.7857142857rem;
  position: relative;
}
@media (max-width: 750px) {
  .header_nav_list li a {
    font-size: 1.1428571429rem;
    padding: 1.1428571429rem 0 1.1428571429rem 0.7857142857rem;
  }
}
.header_nav_list li a::before {
  position: absolute;
  content: "";
  width: 0.2142857143rem;
  height: 0.2142857143rem;
  border-radius: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: #000;
}
@media (min-width: 751px) {
  .header_nav_list li a span {
    display: inline-block;
    position: relative;
  }
  .header_nav_list li a span::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: -0.2857142857rem;
    left: 0;
    right: 0;
    background: url("../../common/img/line.png") repeat-x left bottom;
    background-size: auto 0.0714285714rem;
    opacity: 0;
    transition: all ease 0.3s;
  }
  .header_nav_list li a:hover span::before {
    opacity: 1;
  }
}
@media (min-width: 751px) {
  .header_nav_list li + li {
    margin: 0.5714285714rem 0 0 0;
  }
}
@media (min-width: 751px) {
  .header_main {
    border-top: 0.0714285714rem solid #000;
    border-bottom: 0.0714285714rem solid #000;
    padding: 1.7142857143rem 0 2.2857142857rem 0;
  }
}
@media (max-width: 750px) {
  .header_main {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: #6FBA2C;
    padding: 3.5rem 0 0 0;
    z-index: 999;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    border-bottom-left-radius: 4.5714285714rem;
  }
  .header_main.active {
    display: block;
  }
}
.header .btn-menu-open {
  font-family: "Poppins", sans-serif;
  position: fixed;
  top: 1.1428571429rem;
  right: 0.8571428571rem;
  background: #6FBA2C;
  border: 0.0714285714rem solid #000;
  display: flex;
  align-content: center;
  align-items: center;
  width: 6.0714285714rem;
  height: 2.2857142857rem;
  border-radius: 714.2142857143rem;
  padding: 0.7142857143rem 1.9285714286rem 0.7142857143rem 1.3571428571rem;
  font-size: 0.8571428571rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  z-index: 2;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media (min-width: 751px) {
  .header .btn-menu-open {
    display: none;
  }
  .header .btn-menu-open:hover {
    opacity: 0.8;
  }
}
.header .btn-menu-open::before {
  position: absolute;
  content: "";
  background: #000;
  width: 0.2142857143rem;
  height: 0.2142857143rem;
  border-radius: 100%;
  top: -0.0714285714rem;
  right: 0.7857142857rem;
  bottom: 0;
  margin: auto;
}
.header .btn-menu-close {
  position: absolute;
  top: 1.9285714286rem;
  right: 1.6428571429rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 0.7142857143rem;
  height: 0.7142857143rem;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media (min-width: 751px) {
  .header .btn-menu-close {
    display: none;
  }
}
.header .btn-menu-close span {
  display: block;
  width: 0.8571428571rem;
  height: 0.0714285714rem;
  border-radius: 0.8571428571rem;
  background: #000;
}
.header .btn-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}
.header .btn-menu-close span:nth-child(2) {
  transform: rotate(-45deg) translate(0.0428571429rem, -0.0428571429rem);
}
.header .info {
  display: none;
}
@media (min-width: 751px) {
  .header .info {
    display: block;
  }
  .header .info-bg {
    padding: 0 0 1.5714285714rem 0;
  }
  .header .info .reservation {
    padding: 0 0 1.2857142857rem 0;
  }
  .header .info .reservation-ttl {
    margin: 0 auto 0.7857142857rem auto;
    width: 25.5714285714rem;
  }
  .header .info .reservation-steps {
    width: 100%;
  }
  .header .info .reservation-steps-item {
    width: 6.8571428571rem;
  }
  .header .info .reservation-steps-arrow {
    margin: 0 0.4285714286rem;
  }
  .header .info .reservation .group-btn {
    margin: 0 0.5714285714rem;
  }
  .header .info .reservation .group-btn .btn-cus {
    width: 13.0714285714rem;
  }
  .header .info .telephone {
    width: 26.7142857143rem;
    margin: 0 auto;
    padding: 1.0714285714rem 0 0 0;
  }
  .header .info .telephone-ttl {
    margin: 0 auto 0.8571428571rem auto;
  }
  .header .info .box-note {
    margin: 1.7142857143rem 0 0 0;
    padding: 1.1428571429rem 1.7142857143rem 1.7142857143rem 1.7142857143rem;
    border: none;
    border-radius: 2.8571428571rem;
  }
  .header .info .box-note-text {
    width: 18.5714285714rem;
  }
}

.footer {
  padding: 3.1428571429rem 0 0 0;
}
@media (min-width: 751px) {
  .footer {
    padding: 3.4285714286rem 0 0 0;
    width: 38.5714285714rem;
    margin: 0 auto;
  }
}
.footer-suumo-hand {
  width: 20.7142857143rem;
  margin: -1.5rem auto -1.7857142857rem auto;
}
@media (min-width: 751px) {
  .footer-suumo-hand {
    width: 28.9285714286rem;
    margin: -1.9285714286rem auto -2.5rem auto;
  }
}
.footer-bg {
  padding: 2.5rem 0 1.1428571429rem 0;
  border-top-left-radius: 3.4285714286rem;
  border-top-right-radius: 3.4285714286rem;
  background: #6FBA2C;
  color: #fff;
}
@media (min-width: 751px) {
  .footer-bg {
    padding: 2rem 0 1.6428571429rem 0;
  }
}
.footer_logo {
  width: 15.5714285714rem;
  margin: 0 0.2857142857rem;
}
@media (min-width: 751px) {
  .footer_logo {
    margin: 2.3571428571rem 0 0 -1.1428571429rem;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .footer_logo:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
  }
}
.footer_nav_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1.4285714286rem 0 1.4285714286rem;
  line-height: 1;
}
@media (min-width: 751px) {
  .footer_nav_list {
    display: inline-flex;
    margin: 0;
  }
}
.footer_nav_item {
  padding: 0 1.1428571429rem;
  position: relative;
}
.footer_nav_item:after {
  content: "";
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 0.2857142857rem;
  right: 0;
  bottom: 0;
}
.footer_nav_item a {
  font-size: 0.7142857143rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) and (hover: hover) {
  .footer_nav_item a:hover {
    opacity: 0.8;
  }
}
.footer_nav_item:first-child {
  padding-left: 0;
}
.footer_nav_item:last-child {
  padding-right: 0;
}
.footer_nav_item:last-child::after {
  display: none;
}
@media (min-width: 751px) {
  .footer .footer_nav_list:first-child .footer_nav_item:last-child {
    padding-right: 1.1428571429rem;
  }
  .footer .footer_nav_list:first-child .footer_nav_item:last-child::after {
    display: block;
  }
}
@media (min-width: 751px) {
  .footer .footer_nav_list:nth-child(2) .footer_nav_item:first-child {
    padding-left: 1.1428571429rem;
  }
}
.footer .footer_nav_list + .footer_nav_list {
  margin-top: 0.5714285714rem;
}
.footer .list-logo {
  margin: 2.1428571429rem 1.4285714286rem 2.4285714286rem 1.4285714286rem;
}
@media (min-width: 751px) {
  .footer .list-logo {
    margin: 1.7142857143rem 0 0 0;
  }
}
.footer .list-logo-item {
  height: 1.8571428571rem;
  width: auto;
}
.footer .list-logo-item img {
  height: 100%;
  width: auto;
}
.footer .list-logo-item + .list-logo-item {
  height: 1.8214285714rem;
  margin-top: 0.7857142857rem;
}