@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho+B1:wght@400;500;600&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap");

:root {
  --color-primary: #111111;
  --color-secondary: #333;
  --color-accent: #df3200;
  --color-accent-light: #f8eff1;
  --color-txt-wh: #eee;
  --color-txt-light-gray: #aaa;
  --color-link: #df3200;
  --color-hover: #ca0404;
  --color-bg: #d3d8dc;
  --color-wh: #fff;
  --color-border: #333;
  --font-serif: "Shippori Mincho B1", serif;
  --font-sansserif: "Jost", "Zen Kaku Gothic New", sans-serif;
}

/* Global    
==================================================== */
* {
  margin: 0;
  padding: 0;
}
*::after,
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
address {
  font-style: normal;
}
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html,
body {
  overflow-x: hidden;
}
html {
  height: -webkit-fill-available; /* iOS */
  --11px: 0.6875rem;
  --12px: 0.75rem;
  --13px: 0.8125rem;
  --14px: 0.875rem;
  --15px: 0.9375rem;
  --16px: 1rem;
  --17px: 1.0625rem;
  --18px: 1.125rem;
  --19px: 1.1875rem;
  --20px: 1.25rem;
  --21px: 1.3125rem;
  --22px: 1.375rem;
  --23px: 1.4375rem;
  --24px: 1.5rem;
  --25px: 1.5625rem;
  --26px: 1.625rem;
  --28px: 1.75rem;
  --29px: 1.8125rem;
  --30px: 1.875rem;
  --32px: 2rem;
  --34px: 2.125em;
  --38px: 2.375rem;
  --40px: 2.5rem;
}
body {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 100vh;
  min-height: -webkit-fill-available; /* iOS */
  width: 100%;
  font-family: var(--font-serif);
  color: var(--color-primary);
  font-size: var(--15px);
  line-height: 1.9;
  letter-spacing: 0.03rem;
  font-weight: 400;
  background-image: url(../images/common/bg_washi01.jpg);
  background-repeat: repeat;
}
main {
  padding: 80px 0 0;
}
@media (min-width: 1024px) {
  main {
    padding: 100px 0 0;
  }
}

/* ie object fit
------------------------------- */
.ie_fit {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ie_fit.true img {
  display: none;
}
/* anchor
------------------------------- */
a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  text-underline-position: under;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
a:link {
  color: var(--color-link);
}
a:visited {
  text-decoration-color: inherit;
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration-color: inherit;
  text-decoration: none;
  color: var(--color-primary);
}
a:active {
  color: var(--color-link);
}

a.secondary:link {
  color: inherit;
}
a.secondary:visited {
  text-decoration-color: inherit;
  text-decoration: none;
  color: var(--color-primary);
}
a.secondary:hover {
  text-decoration-color: inherit;
  text-decoration: none;
  color: var(--color-link);
}
a.secondary:active {
  color: var(--color-link);
}

a.red:link {
  color: var(--color-link);
}
a.red:visited {
  text-decoration-color: inherit;
  text-decoration: none;
  color: var(--color-link);
}
a.red:hover {
  text-decoration-color: inherit;
  text-decoration: none;
  color: var(--color-primary);
}
a.red:active {
  color: var(--color-primary);
}

a img {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0.8;
  background: none;
}
a.underline {
  padding-bottom: 2px;
  text-decoration: none;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
a.underline-red {
  padding-bottom: 2px;
  text-decoration: none;
  color: var(--color-link);
  border-bottom: 1px solid var(--color-link);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
a.underline:hover,
a.underline-wh:hover {
  color: var(--color-hover);
  border-bottom: 1px solid var(--color-hover);
}
a.underline-red:hover {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
/* tel:スマホのみ有効 */
@media (pointer: fine), (hover: hover) {
  a:where([href^="tel:"]) {
    pointer-events: none;
  }
}

/* typography
------------------------------- */
/* heading */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 400;
  line-height: 1.5;
}
h1,
.h1 {
  font-size: var(--25px);
}
h2,
.h2 {
  font-size: var(--22px);
}
h3,
.h3 {
  font-size: var(--18px);
}
h4,
.h4 {
  font-size: var(--17px);
}
h5,
.h5 {
  font-size: var(--16px);
}

.bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
p {
  text-justify: inter-ideograph;
  text-align: justify;
}
ruby rt {
  font-weight: 500;
}
.x-small {
  font-size: var(--12px);
  color: #666;
  margin-top: 5px;
  line-height: 1.6;
}
small,
.small {
  font-size: var(--13px);
}
.large {
  font-size: var(--30px);
}
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}
.tate {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  display: block;
}
.att {
  padding-left: 1em;
  text-indent: -1em;
}
.strikethrough {
  text-decoration: line-through;
}
.serif {
  font-family: "Shippori Mincho B1", serif;
}
.sansserif {
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: var(--29px);
  }
  h2,
  .h2 {
    font-size: var(--22px);
  }
  h3,
  .h3 {
    font-size: var(--20px);
  }
  h4,
  .h4 {
    font-size: var(--18px);
  }
  h5,
  .h5 {
    font-size: var(--17px);
  }
  .large {
    font-size: var(--32px);
  }
}
@media (min-width: 1024px) {
  h1,
  .h1 {
    font-size: var(--32px);
  }
  h2,
  .h2 {
    font-size: var(--25px);
  }
  h3,
  .h3 {
    font-size: var(--23px);
  }
  h4,
  .h4 {
    font-size: var(--20px);
  }
  h5,
  .h5 {
    font-size: var(--17px);
  }
  .large {
    font-size: var(--34px);
  }
}

/* image
------------------------------- */
img {
  border: 0;
  display: block;
  max-width: 100%;
  height: auto;
}

/* ol
------------------------------- */
ol {
  list-style-type: decimal;
  list-style-position: inside;
}
ol li {
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
/* border
------------------------------- */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--color-accent);
  margin: 1em auto;
  padding: 0;
}

/* other
------------------------------- */
/* clearfix */
.cf::after {
  content: "";
  display: block;
  clear: both;
}
/* width */
.w50 {
  width: 60%;
  margin: 30px auto;
}
.w60 {
  width: 70%;
  margin: 30px auto;
}
.w80 {
  width: 90%;
  margin: 30px auto;
}
@media (min-width: 768px) {
  .w50 {
    width: 50%;
    margin: 40px auto;
  }
  .w60 {
    width: 60%;
    margin: 40px auto;
  }
  .w80 {
    width: 80%;
    margin: 40px auto;
  }
}
/* flex */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* float */
.f-right {
  float: right;
}
.f-left {
  float: left;
}

/* display-none */
.display-none {
  display: none;
}

.visible-xs,
.visible-s,
.visible-m,
.visible-l {
  display: none !important;
}

@media (max-width: 480px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .hidden-s {
    display: none !important;
  }
  .visible-s {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-m {
    display: none !important;
  }
  .visible-m {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .hidden-l {
    display: none !important;
  }
  .visible-l {
    display: block !important;
  }
}

/* ベタ背景 */
.bg-r-w-90 {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  border-radius: 6px 0 0 6px;
}
.bg-l-w-90 {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  border-radius: 0 6px 6px 0;
}
.bg-l-pk-90 {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background: rgba(249, 234, 239, 0.6);
  z-index: 1;
  border-radius: 0 6px 6px 0;
}
/* form
------------------------------- */
/* input, textarea */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  border: 0;
  padding: 15px 10px;
  border: solid 1px #fff;
  margin: 0 0 50px;
  background-color: #fff;
  border-radius: 3px;
  width: 100%;
  font-family: var(--font-sansserif);
  font-size: var(--16px); /* iOS focus時に拡大させないため */
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1px solid var(--color-primary);
}

input[type="submit"] {
  font-size: var(--16px);
  line-height: 2;
  letter-spacing: 0.2rem;
  font-style: normal;
  position: relative;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 40px auto;
  font-family: var(--font-serif);
}

/* checkbox */
.checkbox {
  position: relative;
  margin: 1em 0;
  padding-left: 40px;
  cursor: pointer;
  user-select: none;
}
.checkbox {
  display: block;
}
.checkbox-ib {
  display: inline-block;
}
.checkbox input {
  display: none;
}
.checkmark {
  position: absolute;
  top: 5px; /* 上からの位置 */
  left: 0;
  height: 24px;
  width: 24px;
  border: solid 2px var(--color-primary);
  border-radius: 3px;
  box-sizing: border-box;
  background: #fff;
}
/* ✓ */
.checkmark:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
.checkbox input:checked + .checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.checkbox input:checked + .checkmark:after {
  opacity: 1;
}

/* placeholder */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ccc;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ccc;
}
::placeholder {
  /* Others */
  color: #ccc;
}

/* button
------------------------------- */
.btn-wrap {
  margin: 50px auto 0;
  text-align: center;
}
.btn-wrap-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-wrap-two a {
  margin: 10px 20px;
}

/* button 基本 */
.btn {
  display: inline-block;
  width: auto;
  text-align: center;
  padding: 14px 30px;
  cursor: pointer;
  font-size: var(--15px);
  line-height: 1;
  font-weight: 400;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
  position: relative;
  border-radius: 3px;
}
.btn {
  color: var(--color-accent) !important;
  border: 1px solid var(--color-accent);
  background: #fff;
}
.btn:hover,
.btn:focus,
.btn-s:hover,
.btn-s:focus {
  color: var(--color-txt-wh) !important;
  background: var(--color-primary);
}

/* button カラー反転 */
.btn-invert {
  color: var(--color-txt-wh) !important;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn-invert:hover,
.btn-invert:focus {
  color: var(--color-link) !important;
  background: var(--color-wh);
}

/* button ライン */
a.btn-line,
a.btn-line-tate {
  display: inline-block;
  text-decoration: none;
  outline: none;
  color: var(--color-link);
  position: relative;
}
a.btn-line:hover,
a.btn-line-tate:hover {
  color: var(--color-link);
}
a.btn-line {
  border-bottom: 1px;
}
a.btn-line::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-link);
  bottom: -6px;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.5s;
}
a.btn-line:hover::after {
  transform: scale(0, 1);
  transform-origin: right top;
}
/* button ライン縦 */
.btn-line-tate-wrap {
  text-align: left;
}
.btn-line-tate {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  border-right: 1px;
}

a.btn-line-tate::after {
  position: absolute;
  left: auto;
  right: 0px;
  top: 0;
  bottom: auto;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--color-link);
  transform: scale(1, 1);
  transform-origin: top right;
  transition: transform 0.5s;
}
a.btn-line-tate:hover::after {
  transform: scale(1, 0);
  transform-origin: bottom right;
}

/* button arrow */
.btn-arrow {
  display: inline-block;
  width: auto;
  margin: 10px 0;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  padding: 8px 60px;
  border: 1px solid var(--color-accent);
  text-align: center;
  background: var(--color-wh);
  color: var(--color-link) !important;
  border-radius: 3px;
}
.btn-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  width: 25px;
  height: 5px;
  border: none;
  transition: 0.3s;
  right: 30px;
  transform: skew(45deg);
  border-bottom: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
}
.btn-arrow:hover {
  color: var(--color-wh) !important;
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  transition: 0.3s;
}
.btn-arrow:hover::after {
  width: 35px;
  right: 15px;
  border-bottom: 1px solid var(--color-wh);
  border-right: 1px solid var(--color-wh);
}

@media (max-width: 480px) {
  .btn,
  .btn-s,
  .btn-arrow {
    width: 90%;
    padding: 8px 40px;
  }
  .btn-arrow::after {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .btn-wrap {
    margin: 70px auto 0;
  }
  .btn {
    padding: 14px 80px;
  }
  .btn-s {
    padding: 0.8rem 1rem;
    font-size: var(--14px);
  }
}

/* animation
------------------------------- */
.slide-left {
  position: relative;
  left: 80px;
  transition: left 2s ease-in-out;
}
.slide-left.is-show {
  left: 0;
}
.slide-left2 {
  position: relative;
  left: 140px;
  transition: left 2.5s ease-in-out;
}
.slide-left2.is-show {
  left: 0;
}
.slide-right {
  position: relative;
  right: 80px;
  transition: right 1.5s ease-in-out;
}
.slide-right.is-show {
  right: 0;
}
.slide-right2 {
  position: relative;
  right: 140px;
  transition: right 2.5s ease-in-out;
}
.slide-right2.is-show {
  right: 0;
}
.slide-up {
  position: relative;
  top: 80px;
  opacity: 0;
  transition: top 1.5s, opacity 1s;
}
.slide-up.is-show {
  top: 0;
  opacity: 1;
}
.slide-up2 {
  position: relative;
  top: 80px;
  opacity: 0;
  transition: top 2.5s, opacity 1s;
}
.slide-up2.is-show {
  top: 0;
  opacity: 1;
}

.animation {
  animation: 1.5s ease-in-out infinite alternate;
}
.sway {
  animation-name: anim_sway;
  transform: rotate(1deg);
  animation-duration: 2.5s;
}
.sway2 {
  animation-name: anim_sway;
  transform: rotate(1deg);
  animation-duration: 3.5s;
}
@keyframes anim_sway {
  50% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(1deg);
  }
}

.fadein {
  animation-name: anim_fadein;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes anim_fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* margin, padding
------------------------------- */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-right {
  margin-left: auto;
}
.img-left {
  margin-right: auto;
}

/* margin */
.mt5 {
  margin-top: 5px;
}
.mb5 {
  margin-bottom: 5px;
}
.ml5 {
  margin-left: 5px;
}
.mr5 {
  margin-right: 5px;
}

.mt10 {
  margin-top: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.ml10 {
  margin-left: 10px;
}
.mr10 {
  margin-right: 10px;
}

.mt20 {
  margin-top: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.ml20 {
  margin-left: 20px;
}
.mr20 {
  margin-right: 20px;
}

.mt30 {
  margin-top: 30px;
}
.mb30 {
  margin-bottom: 30px;
}
.ml30 {
  margin-left: 30px;
}
.mr30 {
  margin-right: 30px;
}

.mt40 {
  margin-top: 40px;
}
.mb40 {
  margin-bottom: 40px;
}
.ml40 {
  margin-left: 40px;
}
.mr40 {
  margin-right: 40px;
}

.mt50 {
  margin-top: 50px;
}
.mb50 {
  margin-bottom: 50px;
}
.ml50 {
  margin-left: 50px;
}
.mr50 {
  margin-right: 50px;
}

.mt60 {
  margin-top: 60px;
}
.mb60 {
  margin-bottom: 60px;
}
.ml60 {
  margin-left: 60px;
}
.mr60 {
  margin-right: 60px;
}

.mt80 {
  margin-top: 80px;
}
.mb80 {
  margin-bottom: 80px;
}
.ml80 {
  margin-left: 80px;
}
.mr80 {
  margin-right: 80px;
}

.mt100 {
  margin-top: 100px;
}
.mb100 {
  margin-bottom: 100px;
}
.ml100 {
  margin-left: 100px;
}
.mr100 {
  margin-right: 100px;
}

.mtb10 {
  margin: 10px 0;
}
.mlr10 {
  margin: 0 10px;
}

.mtb20 {
  margin: 20px 0;
}
.mlr20 {
  margin: 0 20px;
}

.mtb30 {
  margin: 30px 0;
}
.mlr30 {
  margin: 0 30px;
}

/* container
------------------------------- */
.container,
.container-xs,
.container-s,
.container-fluid {
  margin-right: auto;
  margin-left: auto;
}
.container-xs {
  width: calc(100% - 30px);
}
.container-s {
  width: calc(100% - 60px);
}
.container {
  width: calc(100% - 40px);
}
.container-fluid {
  width: 100%;
}
@media (min-width: 481px) {
  .container {
    width: calc(100% - 80px);
  }
  .container-xs {
    width: calc(100% - 60px);
  }
}
@media (min-width: 768px) {
  .container-xs {
    width: calc(100% - 120px);
  }
  .container-s {
    width: calc(100% - 100px);
  }
}
@media (min-width: 1024px) {
  .container-xs {
    max-width: 767px;
  }
  .container-s {
    max-width: 900px;
  }
  .container {
    width: calc(100% - 100px);
    max-width: 1200px;
  }
}
/* #content 
==================================================== */
#content {
  flex: 1;
}

/* カード型 レイアウト
==================================================== */
.grid,
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
}
.grid {
  gap: 40px 40px;
}
.grid-2 {
  gap: 10px 10px;
  grid-template-columns: 1fr;
}
.card-header {
  position: relative;
}
.card-body {
  margin: 12px 5px 0;
}
.card-title {
  font-size: var(--22px);
  letter-spacing: 0.04rem;
  margin: 0 auto 10px;
}
.card-body .price {
  font-size: var(--20px);
  color: var(--color-accent);
}
.card-body .description {
}
.card-body-list .menu-list .menu-list-title {
  margin: 10px auto;
  align-items: center;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
.card-body-list .menu-list .menu-list-title::before {
  margin-right: 20px;
}
.card-body-list .menu-list .menu-list-title::after {
  margin-left: 20px;
}
.card-body-list .menu-list .menu-list-title::before,
.card-body-list .menu-list .menu-list-title::after {
  background-color: #38b1c2;
  content: "";
  height: 1px;
  width: 100%;
}
.card-body-list .menu-list {
  background-image: url(../images/common/bg_nami.png);
  background-repeat: repeat;
  background-size: cover;
  padding: 15px 10px 10px;
  width: 100%;
}
.card-body-list .menu-list ul {
  margin: 0 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.card-body-list .menu-list ul li {
  padding-left: 17px;
  text-indent: -17px;
  margin: 3px 10px;
}
.card-body-list .menu-list ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: 1px;
  margin-right: 5px;
  border: 1px solid #222;
}

.card-body .period {
  font-size: var(--16px);
  color: var(--color-accent);
  background-image: url(../images/common/bg_washi_pink.jpg);
  padding: 4px;
  border-radius: 2px;
  margin-bottom: 10px;
  font-family: var(--font-sansserif);
  text-align: center;
}
.card-thumbnail {
  margin: 0;
}
.card-thumbnail img {
  margin: 0;
  border-radius: 4px;
}

/* wpで異なるサイズの画像を投稿した際に同じサイズに統一させる
------------------------------- */
#menu .card {
  background: #fff;
  padding: 10px 10px 10px;
  border-radius: 4px;
}
#menu .card-thumbnail {
  position: relative;
}
#menu .card-thumbnail > img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
/* 画像がない時に画像の高さを消すために、以下の設定はやめる
#menu .card-thumbnail::before {
  content: "";
  display: block;
  padding-top: 66.66%;
}
#menu .card-thumbnail > img {
  position: absolute;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
*/

/* お料理ページ：横長タイプ
------------------------------- */
#menu .card-side {
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#menu .card-side-header {
  position: relative;
  max-width: 50%;
  flex-grow: 0;
}
#menu .card-side-body {
  padding: 10px 20px 10px 10px;
  flex: 1;
  white-space: normal;
}
#menu .card-side-title {
  font-size: var(--22px);
  letter-spacing: 0.04rem;
  margin: 0 auto 10px;
}
#menu .card-side-body .price {
  font-size: var(--18px);
  color: var(--color-accent);
}
#menu .card-side-thumbnail {
  position: relative;
  flex-grow: 0;
}
#menu .card-side-thumbnail img {
  border-radius: 4px;
}

/* gridではなくflexタイプ
------------------------------- */
#menu .menu-flexbox {
  margin-left: 0%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
#menu .menu-flexbox-item {
  width: 100%;
  padding-left: 0%;
  margin-bottom: 20px;
}
#menu .menu-flexbox-item .card {
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#menu .menu-flexbox-item .card .card-header {
  flex-grow: 0;
}
#menu .menu-flexbox-item .card .card-body-list {
  display: flex;
  flex-grow: 1;
}

@media (min-width: 481px) {
  .grid {
    gap: 10px 10px;
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 {
    gap: 10px 10px;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .grid {
    gap: 10px 10px;
  }
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .card-title {
    font-size: var(--20px);
  }
  .card-body .price {
    font-size: var(--18px);
  }
  .card-thumbnail img {
    margin: 0;
    border-radius: 4px;
  }
  #menu .menu-flexbox {
    margin-left: -2%;
  }
  #menu .menu-flexbox-item {
    width: 50%;
    padding-left: 2%;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .grid {
    gap: 50px 70px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .card-body {
    margin: 12px 8px 0;
  }
  .card-title {
    font-size: var(--22px);
  }
  .card-body .price {
    font-size: var(--20px);
  }
  #menu .grid {
    gap: 50px 30px;
  }
  #menu .menu-flexbox {
    margin-left: -3%;
  }
  #menu .menu-flexbox-item {
    width: 33.333%;
    padding-left: 3%;
    margin-bottom: 30px;
  }
}

/* header 
==================================================== */
/*#header上部固定 */
#header {
  position: fixed;
  top: 0;
  transition: 0.4s;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
}
#header.hide {
  transform: translateY(-100%);
}
@media (max-width: 1023px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*bottom: 0;*/
    transition: 0.4s;
    width: 100%;
    z-index: 999;
    overflow-y: auto;
    margin-bottom: 2%;
  }
  #header.open {
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  #header {
    height: 100px;
  }
}
/* smartmenus css 
------------------------------- */
.main-nav {
  width: 100%;
  margin: 0px auto;
}
.main-nav::after {
  clear: both;
  content: "\00a0";
  display: block;
  height: 0;
  font: 0px/0 serif;
  overflow: hidden;
}
.nav-brand {
  max-width: 60px;
  margin-left: 20px;
}
.nav-brand a {
  display: block;
  text-decoration: none;
}
#main-menu {
  clear: both;
}
/* Mobile menu toggle button */
.main-menu-btn {
  float: right;
  margin: 10px 20px 6px;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  text-indent: 0;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 9999;
}

/* hamburger icon */
.main-menu-btn-icon,
.main-menu-btn-icon::before,
.main-menu-btn-icon::after {
  position: absolute;
  top: 30%;
  left: 7px;
  height: 2px;
  width: 45px;
  background: var(--color-primary);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.main-menu-btn-icon::before {
  content: "";
  top: -12px;
  left: 0;
}
.main-menu-btn-icon::after {
  content: "";
  top: 12px;
  left: 0;
}

/* hamburger text */
.main-menu-btn-text,
.main-menu-btn-text::before,
.main-menu-btn-text::after {
  position: absolute;
  top: 80%;
  width: 100%;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  font-size: var(--12px);
  text-align: center;
}
.main-menu-btn-text::before {
  content: "MENU";
  top: -12px;
  left: 0;
  color: var(--color-primary);
}

/* x icon */
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon::after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-text::before {
  content: "閉じる";
}

/* hide menu state checkbox (keep it visible to screen readers) */
#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* hide the menu in mobile view */
#main-menu-state:not(:checked) ~ #main-nav-inner .header-nav {
  display: none;
}
#main-menu-state:checked ~ #main-nav-inner .header-navu {
  display: block;
}
@media (min-width: 1024px) {
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-nav-inner .header-nav {
    display: block;
    margin-right: 20px;
  }
}

/* メニュー追加css 
------------------------------- */
@media (max-width: 1023px) {
  #main-nav-inner {
    position: relative;
    height: 80px;
  }
  .nav-brand {
    position: absolute;
    top: 10px;
    left: 20px;
    margin: auto;
    z-index: 10000;
  }
  .header-nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-color: var(--color-wh);
    overflow: auto;
  }
  #main-menu {
    padding: 80px 0 0;
    max-width: 800px;
    margin: 0 auto;
  }
  .sm-clean ul a:link {
    color: var(--color-txt-wh);
  }
  .sm-clean ul a,
  .sm-clean ul a:hover,
  .sm-clean ul a:focus,
  .sm-clean ul a:active,
  .sm-clean ul a.highlighted {
    color: var(--color-txt-wh) !important;
  }
  .sm-clean ul a:hover,
  .sm-clean ul a:focus,
  .sm-clean ul a:active,
  .sm-clean ul a.highlighted {
    color: var(--color-txt-light-gray) !important;
  }
  .sm-clean a,
  .sm-clean a:hover,
  .sm-clean a:focus,
  .sm-clean a:active,
  .sm-clean ul a,
  .sm-clean ul a:hover,
  .sm-clean ul a:focus,
  .sm-clean ul a:active {
    font-size: var(--17px);
  }
  .sm-clean li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.header-nav a:link {
  color: inherit;
}
.header-nav a:active {
  color: var(--color-link);
}
.header-nav a:hover {
  color: var(--color-link);
}

#upper-menu {
  display: none;
}

#upper-menu li {
  font-size: var(--15px);
}
#upper-menu li:last-child {
  margin-right: 0;
}

.sm::after {
  content: none;
}
.sm-clean {
  background: none;
}
.sm-clean ul {
  background: var(--color-primary);
}
.sm-clean ul li {
  border-bottom: 1px solid var(--color-txt-light-gray);
}

.sm-clean li.sns a {
  text-align: center;
  font-size: var(--20px);
  margin-top: 10px;
  padding-right: 0;
}

/* @media */
@media (min-width: 1024px) {
  .header-nav {
    width: 86%;
    margin-left: auto;
  }
  .nav-brand {
    max-width: 70px;
  }
  #upper-menu,
  #main-nav-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #upper-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    column-gap: 30px;
    margin-bottom: 5px;
  }
  #main-nav-inner {
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0px auto;
    height: 100px;
  }

  .sp-s-menu a,
  .sp-s-menu {
    display: none !important;
  }
  .sm {
    text-align: right;
  }
  .sm > li {
    text-align: right;
  }
  .sm ul,
  .sm ul li ul {
    text-align: left;
    padding: 0;
  }
  .sm-clean {
    padding: 0 0;
  }
  #main-menu {
    font-size: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    align-items: center;
    column-gap: 0;
    padding: 0;
    margin-left: auto;
    margin-right: -1rem;
  }
  #main-menu li,
  #main-menu li a {
    font-size: var(--15px);
  }
  #main-menu > li > a {
    line-height: 2px;
    position: relative;
  }

  #main-menu li.current a {
    color: var(--color-accent);
  }
  .sm-clean ul {
    border: none;
    padding: 0;
    background: var(--color-primary);
    border-radius: 2px !important;
    box-shadow: none;
  }
  .sm-clean ul a,
  .sm-clean ul a:hover,
  .sm-clean ul a:focus,
  .sm-clean ul a:active,
  .sm-clean ul a.highlighted {
    border: 0 !important;
    padding: 14px 20px;
    color: var(--color-txt-wh) !important;
  }
  .sm-clean ul a:hover,
  .sm-clean ul a:focus,
  .sm-clean ul a:active,
  .sm-clean ul a.highlighted {
    background: var(--color-primary);
    color: var(--color-txt-light-gray) !important;
  }
  .sm-clean > li > ul::before,
  .sm-clean > li > ul::after {
    content: none;
  }
  .sm-clean a,
  .sm-clean a:hover,
  .sm-clean a:focus,
  .sm-clean a:active,
  .sm-clean a.highlighted {
    padding: 12px 18px;
  }
  .sm-clean a.has-submenu {
    padding-right: 18px;
  }
  .sm-clean li.sns a {
    display: none;
  }
  .sub-arrow {
    display: none;
  }
}

/*  footer
==================================================== */
footer {
  margin: 0 auto;
  width: 100%;
  color: var(--color-txt-wh);
  background-image: url(../images/common/bg_washi_red.jpg);
  background-repeat: repeat;
}

.add-wrap .tel {
  font-size: var(--20px);
  margin-left: 10px;
}
#footer-nav {
  border-bottom: 1px solid #f15b42;
}
#footer-nav-wrap {
  margin: 0 auto;
}
#footer-nav-wrap a:link {
  color: var(--color-txt-wh);
}
#footer-nav-wrap a:active {
  color: var(--color-primary);
}
#footer-nav-wrap a:hover {
  color: var(--color-primary);
}
.footer-nav-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: var(--13px);
  gap: 40px;
  padding: 30px 0 10px;
  border-top: 1px solid #b50000;
}
#footer-nav .add-wrap h1 {
  margin-bottom: 30px;
}
#footer-nav .add-wrap .add-item {
  margin-bottom: 30px;
}

/* copyright */
#copyright-wrap {
  background-image: url(../images/common/bg_washi01.jpg);
}
#copyright {
  text-align: center;
  padding: 10px 0;
  font-size: var(--11px);
  letter-spacing: 0.05rem;
  font-family: var(--font-sansserif);
  font-weight: 300;
  color: var(--color-primary);
}

/* 予約ボタン */
footer .reserve {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}
footer .reserve a {
  padding: 6px 20px 2px;
  color: #fff;
  background: #000;
  height: 50px;
  font-size: var(--18px);
  display: block;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  border-radius: 4px 0 0 0;
}

footer .reserve a:hover {
  color: #000;
  background: #fff;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

/* page top */
#page-top,
#page-top img {
  display: inline-block;
  width: 25px;
}
#page-top img {
  transition: transform 0.5s;
}
#page-top img:hover {
  transform: rotate(180deg);
}
#page-top {
  position: fixed;
  bottom: 60px;
  right: 0;
  z-index: 100;
  height: auto;
}
#page-top a {
  line-height: 1;
  text-align: center;
  display: block;
  padding: 10px 18px 10px 5px;
  transition: 0.6s ease-in-out;
  font-size: var(--13px);
  font-family: var(--font-sansserif);
  font-weight: 300;
  letter-spacing: 0.15rem;
}
#page-top a:hover {
  text-decoration: none;
  color: var(--color-hover);
}

@media (max-width: 480px) {
  footer .reserve a {
    padding: 6px 10px 2px;
    height: 40px;
    font-size: 1.7rem;
  }
  #page-top a {
    padding: 10px 15px 10px 5px;
  }
  footer .reserve a {
    padding: 6px 10px 2px;
    height: 40px;
    font-size: var(--17px);
  }
  #footer-nav-wrap {
    padding: 30px 0 20px;
  }
}
@media (max-width: 1024px) {
  #footer-nav-wrap {
    padding: 30px 0 20px;
  }
  #footer-nav .nav-wrap {
    display: none;
  }
  #footer-nav .add-wrap {
    margin: 0 auto;
  }
  #footer-nav .add-wrap img {
    text-align: center;
    margin: 0 auto;
  }
  #footer-nav .add-wrap .add-item {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #footer-nav .add-wrap .add-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 80px;
  }
}
@media (min-width: 481px) {
  #page-top,
  #page-top img {
    width: 30px;
  }
}
@media (min-width: 1024px) {
  #footer-nav-wrap {
    padding: 50px 40px 20px;
    max-width: 1400px;
  }
  #footer-nav,
  #footer-nav .nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  #footer-nav,
  #footer-nav .nav-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0 40px;
  }
  #footer-nav .nav-wrap {
    flex-grow: 2;
    padding-left: 60px;
  }
  .footer-nav-item li {
    font-size: var(--15px);
    padding-bottom: 10px;
  }
  .footer-nav-item li h2 {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-txt-wh);
  }
  #footer-nav li:last-child {
    padding-right: 0;
  }
}

/*  top page
==================================================== */
/* kv 
------------------------------- */
#top #kv {
  position: relative;
  overflow: hidden;
  margin: 0px auto;
}
#top #kv .kv-logo-wrap {
  width: 18%;
  position: relative;
}
#top #kv .kv-logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
#top #kv .kv-logo img {
  max-width: 96px;
  margin: 0 auto;
}
#top #kv .kv-movie-wrap {
  width: 82%;
  margin-left: auto;
  position: relative;
}
#top #kv .kv-movie {
  z-index: 1;
}
#top #kv .kv-movie #video {
  width: 100%;
  height: 100vh;
  padding-bottom: 2%;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

#top #kv .copy-wrap {
  position: absolute;
  bottom: 8%;
  right: 7%;
  z-index: 2;
}
#top #kv .copy {
  width: 100%;
  display: block;
  line-height: 1.2;
}
#top #kv .copy-item1,
#top #kv .copy-item2,
#top #kv .copy-item3,
#top #kv .copy-item4,
#top #kv .copy-item5 {
  display: inline-block;
  padding: 10px 4px;
  background-color: var(--color-primary);
  color: var(--color-txt-wh);
  letter-spacing: 0.3rem;
  margin-left: 10px;
}
@media (max-width: 480px) {
  #top #kv {
    width: calc(100%);
    height: calc(100vh - 80px);
  }
  #top #kv .kv-logo-wrap {
    width: 100%;
    z-index: 2;
  }
  #top #kv .kv-logo {
    position: absolute;
    top: 70px;
    left: 15%;
  }
  #top #kv .kv-logo img {
    max-width: 60px;
    filter: invert(100%);
  }
  #top #kv .kv-movie-wrap {
    width: 100%;
    z-index: 1;
  }
  #top #kv .copy {
    font-size: var(--15px);
  }
  #top #kv .copy-item1,
  #top #kv .copy-item2,
  #top #kv .copy-item3,
  #top #kv .copy-item4,
  #top #kv .copy-item5 {
    padding: 10px 2px;
    margin-left: 5px;
  }
}
@media (min-width: 481px) {
  #top #kv {
    width: calc(100%);
    height: calc(100vh - 80px);
  }
  #top #kv .kv-logo-wrap {
    width: 18%;
  }
  #top #kv .kv-logo img {
    max-width: 70px;
  }
  #top #kv .kv-movie-wrap {
    width: 82%;
  }
}
@media (min-width: 768px) {
  #top #kv {
    width: calc(100%);
    height: calc(100vh - 80px);
  }
  #top #kv .kv-logo img {
    max-width: 80px;
  }
  #top #kv .copy {
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  #top #kv {
    height: calc(100vh - 100px);
  }
  #top #kv .kv-logo img {
    max-width: 96px;
  }
}

/* scroll
------------------------------- */
/* スクロールダウンの位置 */
#top #kv .scroll-wrap {
  position: absolute;
  width: calc(100% - 82%);
  bottom: 115px;
  left: 0;
  z-index: 2;
}
.scroll-item {
  position: relative;
}
.scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: var(--12px);
  font-family: var(--font-sansserif);
  font-weight: 300;
  letter-spacing: 0.15rem;
}
.scroll a span {
  color: var(--color-txt-wh);
}
/* 線のアニメーション */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: var(--color-accent);
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
/* 線の背景色 */
.scroll::after {
  background-color: #ccc;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}
@media (min-width: 481px) {
  .scroll a span {
    color: inherit;
  }
}

/* common
------------------------------- */
#top section {
  margin: 0 auto;
  padding: 50px 0;
}
/* section title */
.sec-ttl {
  text-align: left;
  display: block;
  position: relative;
}
.sec-ttl .logo {
  position: absolute;
  top: -8px;
  left: -4px;
  z-index: 1;
  width: 60px;
  opacity: 0.15;
}
.sec-ttl .logo-tate {
  top: -28px;
  left: 2px;
  right: auto;
}
.sec-ttl .logo-2row {
  top: 10px;
  left: -8px;
}
.sec-ttl .logo-s {
  top: -12px;
  left: -10px;
  right: auto;
}
.sec-ttl h1 {
  z-index: 2;
  line-height: 1.5;
  margin-left: 15px;
}
.sec-ttl-yoko {
  margin-bottom: 35px;
  text-align: center;
}
.sec-ttl-yoko h1 {
  z-index: 2;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}
.sec-ttl-yoko h1 .small-ttl {
  font-weight: 300;
  font-size: 60%;
}
.sec-ttl-yoko .logo {
  position: absolute;
  top: -8px;
  left: -40px;
  z-index: 1;
  width: 60px;
  opacity: 0.2;
}
.sub-ttl {
  text-align: center;
  position: relative;
  display: inline-block;
}
.sub-ttl:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  border-bottom: solid 1px var(--color-primary);
  transform: translateX(-50%);
  animation: border_anim 0.7s linear forwards;
}
.midashi-wrap .midashi-yoko {
  font-size: var(--15px);
  line-height: 1.6;
}
@media (min-width: 768px) {
  #top section {
    padding: 100px 0;
  }
  .sec-ttl {
    text-align: left;
    position: relative;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-feature-settings: "pkna";
    display: block;
  }
  .sec-ttl .logo {
    top: -40px;
    right: -10px;
    left: auto;
    width: 70px;
  }
  .sec-ttl .logo-2row {
    top: -40px;
    right: 6px;
    left: auto;
    width: 70px;
  }
  .sec-ttl .logo-s {
    top: -25px;
    right: -10px;
    left: auto;
    width: 60px;
  }
  .sec-ttl h1 {
    line-height: 1.5;
    margin-left: 0;
  }
  .sec-ttl-yoko {
    margin-bottom: 60px;
  }
  .sec-ttl-yoko .logo {
    top: -14px;
    left: -50px;
    width: 70px;
  }
  .midashi-wrap .midashi-yoko {
    font-size: var(--17px);
    line-height: 1.9;
  }
}
@media (min-width: 1024px) {
  #top section {
    margin: 0 auto;
    padding: 140px 0;
  }
  .sec-ttl .logo {
    top: -50px;
    right: -10px;
  }
  .sec-ttl .logo-2row {
    top: -50px;
    right: 10px;
  }
  .sec-ttl .logo-s {
    top: -25px;
    right: -10px;
  }
  .sec-ttl h1 {
    line-height: 1.6;
  }
}

/* section - omotenashi 
------------------------------- */
#top #omotenashi,
#top #food {
  background: rgba(255, 255, 255, 0.7);
  position: relative;
}
#top #omotenashi {
  padding: 30px 0 320px;
}
#top .omotenashi-wrap,
#about .story-wrap {
  text-align: center;
}

#top .omotenashi-copy,
#about .story-intro,
#about .story-outro {
  margin: 20px auto 0;
  font-size: var(--15px);
  letter-spacing: 0.2rem;
  display: inline-block;
}
#top .omotenashi-copy .sec-ttl h1,
#about .story-intro .sec-ttl h1 {
  margin-left: 34px;
}
#top .omotenashi-copy .midashi-wrap,
#top .banquet-copy .midashi-wrap,
#about .story-intro .midashi-wrap,
#about .story-outro .midashi-wrap {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  display: inline-block;
}

#top .omotenashi-copy .midashi-wrap {
  white-space: nowrap;
  margin: 30px auto 0;
}
#top .omotenashi-copy .midashi,
#top .banquet-copy .midashi {
  line-height: 1.8;
  font-size: var(--15px);
  margin-right: 10px;
}

#top #omotenashi img {
  border-radius: 3px;
}
#top .omotenashi-image1,
#top .omotenashi-image2 {
  position: absolute;
}

#top .omotenashi-image1 {
  left: 0;
  bottom: 140px;
  width: 220px;
}
#top .omotenashi-image2 {
  left: 120px;
  bottom: 35px;
  width: 180px;
}

#top #omotenashi .btn-line-tate-wrap,
#top #banquet .btn-line-tate-wrap {
  margin-right: 15px;
}
@media (max-width: 480px) {
  #top .omotenashi-copy {
    width: 100%;
  }
}
@media (min-width: 481px) {
  #top #omotenashi {
    padding: 50px 0 330px;
  }
  #top .omotenashi-copy .midashi,
  #top .banquet-copy .midashi,
  #about .story-intro .midashi,
  #about .story-outro .midashi {
    line-height: 2.2;
    font-size: var(--16px);
  }
  #top .omotenashi-image1 {
    left: 0;
    bottom: 90px;
    width: 270px;
  }
  #top .omotenashi-image2 {
    left: 250px;
    bottom: 10px;
    width: 200px;
  }
}
@media (min-width: 768px) {
  #top #omotenashi {
    padding: 100px 0 270px;
  }
  #top .omotenashi-copy,
  #about .story-intro,
  #about .story-outro {
    margin: 50px auto 0;
    font-size: var(--17px);
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-feature-settings: "pkna";
    display: block;
  }
  #top .omotenashi-wrap .sec-ttl,
  #about .story-wrap .sec-ttl {
    margin: 0 auto 0;
  }
  #top .omotenashi-copy .midashi,
  #top .banquet-copy .midashi,
  #about .story-wrap .midashi {
    line-height: 2.6;
    font-size: var(--18px);
    margin-right: 30px;
  }
  #top .omotenashi-image1 {
    left: 0;
    bottom: 35px;
    width: 300px;
  }
  #top .omotenashi-image2 {
    left: 270px;
    bottom: -10px;
    width: 230px;
  }
  #top #omotenashi .btn-line-tate-wrap,
  #top #banquet .btn-line-tate-wrap {
    margin: 0 20px;
  }
}
@media (min-width: 1024px) {
  #top #omotenashi {
    padding: 100px 0 360px;
  }
  #top .omotenashi-copy,
  #about .story-intro {
    margin: 50px auto 0;
  }
  #top .omotenashi-copy .midashi,
  #top .banquet-copy .midashi,
  #about .story-wrap .midashi {
    margin-right: 40px;
  }
  #top .omotenashi-image1 {
    left: 0;
    bottom: 70px;
    width: 360px;
  }
  #top .omotenashi-image2 {
    left: 290px;
    bottom: -30px;
    width: 240px;
  }
}

/* section - 季節のお料理
------------------------------- */
#seasonal-menu {
  background-image: url(../images/common/bg_washi_gold.jpg);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  background-repeat: repeat;
}
.seasonal-menu .txt-wrap {
  width: 100%;
  order: 2;
  max-width: 680px;
  margin: 0 auto;
}
.seasonal-menu .ph-wrap {
  width: 100%;
  order: 1;
  margin-bottom: 30px;
}
.seasonal-menu .ph-wrap img {
  margin: 0 auto;
  max-height: 500px;
  border-radius: 4px;
}
.seasonal-menu .txt-wrap h2 {
  margin-bottom: 10px;
  text-align: center;
}
.seasonal-menu .txt-wrap .price {
  margin-bottom: 40px;
  text-align: center;
}
.seasonal-menu .txt-wrap .period,
.seasonal .period {
  font-size: var(--16px);
  color: var(--color-accent);
  background-color: #fff;
  padding: 10px 4px;
  border-radius: 2px;
  border: 1px solid var(--color-accent);
  margin-bottom: 10px;
  font-family: var(--font-serif);
  text-align: center;
}
.seasonal-menu .txt-wrap .yoyaku {
  margin: 24px 0;
}
@media (min-width: 1024px) {
  .seasonal-menu .txt-wrap {
    width: 50%;
    order: 1;
    padding-right: 60px;
  }
  .seasonal-menu .ph-wrap {
    width: 50%;
    order: 2;
    margin-bottom: 0;
  }
  .seasonal-menu .ph-wrap img {
    margin: 0 0 0 auto;
    max-height: 500px;
  }
  .seasonal-menu .txt-wrap h2,
  .seasonal-menu .txt-wrap .price {
    text-align: left;
  }
}

/* section - お料理メニュー
------------------------------- */
#top section#food {
  padding: 70px 0;
  position: relative;
}

/* もみじアニメーション */
#top #food .momiji-wrap {
  position: relative;
}
#top #food .momiji01 img,
#top #food .momiji02 img,
#top #food .momiji03 img,
#top #food .momiji04 img {
  position: absolute;
  opacity: 0.5;
}
#top #food .momiji01 img {
  top: -130px;
  right: 0;
  max-width: 200px;
}

@keyframes fall {
  to {
    top: 120%;
  }
}
@keyframes sway1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-45deg);
  }
}
@keyframes sway2 {
  from {
    transform: translateX(300px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes sway3 {
  from {
    transform: translateX(0px) rotate(-45deg);
  }
  to {
    transform: translateX(140px) rotate(0deg);
  }
}
#top #food .momiji02 img {
  top: 0;
  right: 25%;
  width: 30px;
  animation: fall 85s linear infinite, sway1 3s ease-in-out infinite alternate;
  animation-delay: 3s;
  opacity: 0.3;
}
#top #food .momiji03 img {
  top: 20px;
  right: 45%;
  width: 26px;
  animation: fall 95s linear infinite, sway2 4s ease-in-out infinite alternate;
  animation-delay: 7s;
}
#top #food .momiji04 img {
  top: 20px;
  right: 15%;
  width: 40px;
  animation: fall 85s linear infinite, sway3 4s ease-in-out infinite alternate;
  animation-delay: 3s;
}

#top .food-copy {
  margin: 0 auto;
  max-width: 680px;
  align-items: flex-start;
}
#top .food-copy .sec-ttl {
  margin: 0 auto;
}
#top .food-copy .midashi-wrap {
  width: 85%;
  padding: 0 20px;
}
#top .food-wrap {
  margin: 30px auto;
}
#top .food-wrap .card-thumbnail {
  border-radius: 6px;
  overflow: hidden;
}
#top .food-wrap .zoom {
  overflow: hidden;
  display: block;
}
#top .food-wrap .zoom img {
  transform: scale(1.3);
}
#top .food-wrap .zoom img:hover {
  transform: scale(1);
  transition: transform 1s ease;
}

@media (max-width: 480px) {
  #top .food-copy .sec-ttl {
    width: 15%;
  }
}
@media (min-width: 481px) {
  #top section#food {
    padding: 90px 0;
  }
  #top #food .momiji01 img {
    position: absolute;
    top: -160px;
    max-width: 280px;
  }
  #top #food .momiji02 img {
    right: 15%;
    width: 40px;
    animation: fall 48s linear infinite, sway1 3s ease-in-out infinite alternate;
  }
  #top #food .momiji03 img {
    right: 35%;
    width: 30px;
    animation: fall 60s linear infinite, sway2 4s ease-in-out infinite alternate;
  }
}
@media (min-width: 768px) {
  #top section#food {
    padding: 120px 0;
  }
  #top #food .momiji01 img {
    top: -200px;
    max-width: 380px;
  }
  #top .food-wrap {
    margin: 60px auto;
  }
  #top .food-copy .midashi-wrap {
    padding: 0 30px;
  }
  #top .food-copy {
    align-items: flex-end;
  }
  #top #food .momiji02 img {
    right: 15%;
    width: 50px;
    animation: fall 25s linear infinite, sway1 3s ease-in-out infinite alternate;
  }
  #top #food .momiji03 img {
    right: 35%;
    width: 40px;
    animation: fall 38s linear infinite, sway2 4s ease-in-out infinite alternate;
  }
}
@media (min-width: 1024px) {
  #top #food .momiji01 img {
    top: -200px;
    max-width: 400px;
  }
}

/* section - shidashi
------------------------------- */
/* 竹アニメーション */
#top .bamboo-wrap {
  position: relative;
}
#top .bamboo01 img,
#top .bamboo02 img {
  position: absolute;
}
#top #shidashi .bamboo01 img {
  top: -100px;
  left: -70px;
  max-width: 200px;
  opacity: 0.5;
}
#top #shidashi .bamboo02 img {
  top: -90px;
  left: -120px;
  max-width: 200px;
  opacity: 0.7;
}
@media (min-width: 481px) {
  #top #shidashi .bamboo01 img {
    top: -140px;
    left: -70px;
    max-width: 220px;
  }
  #top #shidashi .bamboo02 img {
    top: -120px;
    left: -120px;
    max-width: 220px;
  }
}
@media (min-width: 768px) {
  #top #shidashi .container {
    margin-left: auto;
    margin-right: 0;
  }
  #top #shidashi .bamboo01 img {
    top: -200px;
    left: -90px;
    max-width: 300px;
  }
  #top #shidashi .bamboo02 img {
    top: -180px;
    left: -140px;
    max-width: 300px;
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  #top #shidashi .bamboo01 img {
    max-width: 340px;
  }
  #top #shidashi .bamboo02 img {
    max-width: 340px;
  }
}

/* section - banquet
------------------------------- */
#top #banquet {
  background: rgba(255, 224, 232, 0.4);
  position: relative;
}
#top #banquet .sec-ttl-wrap {
  margin: 0 auto;
}
#top #banquet　.sec-ttl h1 {
  margin-left: 0;
}
#top #banquet .sec-ttl .logo,
#top #restaurant .sec-ttl .logo {
  right: 50%;
  transform: translateX(50%);
}
#top #banquet .banquet-wrap {
  margin: 0 auto 30px;
  position: relative;
}
#top #banquet .banquet-circle {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
#top #banquet .banquet-l,
#top #banquet .banquet-r {
  width: 50%;
}

#top #banquet .banquet-l,
#top #banquet .banquet-r,
#top #banquet .sec-ttl-wrap {
  z-index: 2;
  position: relative;
}

#top .banquet-copy .midashi-wrap {
  margin: 0 auto;
  background-image: none;
}
#top .banquet-copy {
  margin: 0 auto 30px;
  font-size: var(--15px);
  letter-spacing: 0.2rem;
  padding: 0 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
}
#top .banquet-copy-item {
  margin: 0 auto 40px;
  width: 100%;
}
#top .banquet-copy .midashi-wrap {
  margin: 10px auto 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  display: block;
  background-color: transparent;
}
#top .banquet-copy .midashi {
  font-size: var(--17px);
  line-height: 2;
  white-space: nowrap;
}
#top #banquet img {
  border-radius: 4px;
}
#top .banquet-image01 {
  max-width: 420px;
  margin: 0 auto;
}
#top .banquet-image02 {
  max-width: 600px;
}
#top .banquet-image03 {
  max-width: 230px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  #top #banquet .banquet-l,
  #top #banquet .banquet-r {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #top .banquet-copy .midashi {
    font-size: var(--17px);
    line-height: 2;
  }
  #top #banquet .banquet-wrap {
    margin: 60px auto;
    position: relative;
  }
}
@media (min-width: 1024px) {
  #top .banquet-copy .midashi-wrap {
    margin: 50px auto 0;
  }
  #top .banquet-copy .midashi {
    font-size: var(--17px);
    line-height: 2.2;
  }
  #top .banquet-image01 {
    max-width: 520px;
    margin: 0 auto;
  }
  #top .banquet-image02 {
    max-width: 700px;
  }
  #top .banquet-image03 {
    max-width: 300px;
    margin-top: 40px;
  }
}

/* section - restaurant
------------------------------- */
/* 竹アニメーション */
#top #restaurant .bamboo-wrap {
  z-index: 1;
}
#top #restaurant .bamboo01 img {
  top: -100px;
  right: -70px;
  max-width: 230px;
  opacity: 0.5;
}
#top #restaurant .bamboo02 img {
  top: -90px;
  right: -120px;
  max-width: 230px;
  opacity: 0.7;
}
@media (min-width: 481px) {
  #top #restaurant .bamboo01 img {
    top: -130px;
    right: -70px;
    max-width: 280px;
  }
  #top #restaurant .bamboo02 img {
    top: -110px;
    right: -120px;
    max-width: 280px;
  }
}
@media (min-width: 768px) {
  #top #restaurant .bamboo01 img {
    top: -90px;
    right: -90px;
    max-width: 300px;
  }
  #top #restaurant .bamboo02 img {
    top: -70px;
    right: -140px;
    max-width: 300px;
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  #top #restaurant .bamboo01 img {
    top: -200px;
    right: -90px;
    max-width: 350px;
  }
  #top #restaurant .bamboo02 img {
    top: -180px;
    right: -140px;
    max-width: 350px;
  }
}

/* restaurant-wrap */
#top #restaurant .restaurant-wrap {
  position: relative;
  z-index: 2;
}
.restaurant-info,
.restaurant-info .ph-wrap,
.restaurant-info .info-wrap {
  width: 100%;
}
#top #restaurant .restaurant-wrap .sec-ttl-wrap {
  margin: 0 auto 40px;
}
#top #restaurant .restaurant-info .info-wrap-2 {
  order: 4;
}
#top #restaurant .restaurant-info .ph-wrap-2 {
  order: 3;
}
#top #restaurant .restaurant-info .info-wrap {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
}
#top #restaurant .restaurant-info {
  align-items: stretch !important;
}
#top #restaurant .restaurant-info .info-wrap p {
  margin: 30px 0 !important;
  line-height: 1.7;
}
.restaurant-info .info-wrap dl {
  font-family: var(--font-sansserif);
  line-height: 1.5;
  font-weight: 300;
}
.restaurant-info .info-wrap dt {
  width: 28%;
  padding: 10px 4px;
  border-bottom: 1px dotted #ec8e8e;
}
.restaurant-info .info-wrap dd {
  width: 72%;
  padding: 10px 6px;
  border-bottom: 1px dotted #ec8e8e;
}

@media (min-width: 768px) {
  .restaurant-info .ph-wrap,
  .restaurant-info .info-wrap {
    width: 50%;
  }
  #top #restaurant .restaurant-wrap .sec-ttl-wrap {
    margin: 0 auto 60px;
  }
  #top #restaurant .restaurant-info .info-wrap-2 {
    order: 3;
  }
  #top #restaurant .restaurant-info .ph-wrap-2 {
    order: 4;
  }
}

@media (min-width: 1024px) {
  #top #restaurant .restaurant-wrap .sec-ttl-wrap {
    width: 15%;
    padding-right: 50px;
  }
  #top #restaurant .restaurant-wrap .restaurant-info {
    width: 85%;
  }
}

/* section - instagram 
------------------------------- */
#instagram {
  background-image: url(../images/common/bg_washi_green.jpg);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  background-repeat: repeat;
}
#insta-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
#insta-list img {
  border-radius: 3px;
}
@media (min-width: 768px) {
  #insta-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  #insta-list {
    gap: 20px;
  }
}

/* Page common
==================================================== */
/* main-img
------------------------------- */
#main-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-end;
}
#main-img .main-title h1 .jp {
  white-space: nowrap;
}
#main-img .main-title h1 .en {
  display: block;
  text-align: center;
  font-size: var(--12px);
  font-family: var(--font-sansserif);
  font-weight: 300;
  letter-spacing: 0.05rem;
}
#main-img .main-img-wrap {
  width: 100%;
  order: 1;
}

@media (max-width: 599px) {
  #main-img {
    margin-bottom: 80px;
  }
  #main-img .main-title-wrap {
    width: 100%;
    margin: 0 auto;
    order: 2;
    position: relative;
  }
  #main-img .main-title {
    background: #fff;
    padding: 4px 20px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    border-radius: 4px 4px 0 0;
  }
  #main-img .main-title h1 .jp {
    display: block;
    text-align: center;
    margin: 0 auto 0.5rem;
  }
}

@media (min-width: 600px) {
  #main-img {
    margin-bottom: 85px;
  }
  #main-img .main-title-wrap {
    width: 18%;
    order: 1;
  }
  #main-img .main-title h1 {
    position: relative;
  }
  #main-img .main-title h1::before {
    position: absolute;
    content: "";
    top: -90px;
    left: 50%;
    width: 1px;
    height: 80px;
    background-color: var(--color-accent);
  }
  #main-img .main-title h1 .jp {
    margin: 0 auto 1rem;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-feature-settings: "pkna";
    display: block;
  }
  #main-img .main-title h1 .en {
    display: block;
    text-align: center;
    font-size: var(--12px);
    font-family: var(--font-sansserif);
    font-weight: 300;
    letter-spacing: 0.05rem;
  }
  #main-img .main-img-wrap {
    width: 82%;
    order: 2;
  }
  #main-img .main-img-wrap img {
    margin-left: auto;
    border-radius: 6px 0 0 6px;
  }
}
@media (min-width: 1024px) {
  #main-img .main-title h1::before {
    top: -110px;
    height: 100px;
  }
}

/*  銀ちろについてページ 
==================================================== */
#about section,
#guide section {
  margin: 50px auto;
}
#about section#main-img {
  margin: 0 auto 50px;
}
#about .story-wrap {
  margin-top: 100px;
}

/* 銀ちろストーリー
------------------------------- */
/* イントロ・アウトロ */
#about .story-intro-wrap,
#about .story-outro-wrap {
  background: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
#about .story-outro-wrap {
  padding: 0 0 30px;
}
#about .story-intro-wrap .ill-ebi,
#about .story-intro-wrap .ill-shishito,
#about .story-intro-wrap .ill-pumpkin {
  position: absolute;
}
#about .story-intro-wrap .ill-ebi {
  max-width: 74px;
  bottom: 70px;
  left: -5%;
}
#about .story-intro-wrap .ill-shishito {
  max-width: 45px;
  top: -15px;
  right: 4%;
}
#about .story-intro-wrap .ill-pumpkin {
  max-width: 60px;
  bottom: -15px;
  right: 15%;
}

#about .story-intro-wrap .midashi-wrap {
  white-space: nowrap;
}

#about .story-intro .midashi {
  font-size: var(--16px);
}
#about .story-outro .midashi-wrap {
  text-align: right;
  padding-top: 40px;
  white-space: nowrap;
}
#about .story-outro-wrap .midashi {
  margin-right: 0;
  margin-left: 30px;
  font-size: var(--17px);
}
#about .story-outro-wrap .signature {
  vertical-align: bottom;
  display: inline-block;
}
#about .story-outro-wrap .story-mv {
  margin: 50px 0 0;
  width: 100%;
}
#about .story-outro-wrap .story-mv .video {
  margin: 0 auto;
  max-width: 400px;
  border-radius: 6px;
}
#about .story-outro-wrap .story-mv img {
  margin: 0 auto;
  max-width: 400px;
  border-radius: 6px;
  border-radius: 6px;
}

/* コンテンツ */
#about .story-contents {
  margin: 60px auto 60px;
  font-size: var(--16px);
  line-height: 2;
  letter-spacing: 0rem;
}
#about .story-contents-item {
  margin-bottom: 40px;
}
#about .story-contents-item .ill-1 {
  width: 160px;
  float: right;
  margin: -30px 0 0 10px;
}
#about .story-contents-item .ill-2 {
  width: 180px;
  float: left;
  margin: -10px 10px 0 -10px;
}
#about .story-contents-item .ill-3 {
  width: 130px;
  float: right;
  margin: -30px 0 0 10px;
}
@media (max-width: 480px) {
  #about .story-outro {
    width: 100%;
  }
}

@media (min-width: 481px) {
  #about .story-intro-wrap .ill-ebi {
    max-width: 88px;
    bottom: 70px;
    left: -7%;
  }
  #about .story-intro-wrap .ill-shishito {
    max-width: 52px;
    top: 10px;
    right: 4%;
  }
  #about .story-intro-wrap .ill-pumpkin {
    max-width: 70px;
  }
  #about .story-contents {
    margin: 60px auto 70px;
  }
  #about .story-contents-item {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  #about section,
  #guide section {
    margin: 80px auto;
  }
  #about section#main-img {
    margin: 0 auto 80px;
  }

  #about .story-outro-wrap {
    width: 90%;
    margin: 0 0 0 auto;
  }
  #about .story-intro-wrap .ill-ebi {
    max-width: 100px;
    bottom: 70px;
    left: -6%;
  }
  #about .story-intro-wrap .ill-shishito {
    max-width: 60px;
    top: -10px;
    right: 5%;
  }
  #about .story-contents {
    margin: 100px auto 200px;
    font-size: var(--17px);
    line-height: 2.2;
  }
  #about .story-contents-item {
    margin-bottom: 80px;
  }
  #about .story-contents-item .ill-1 {
    width: 200px;
    margin: -20px 0 20px 20px;
  }
  #about .story-contents-item .ill-2 {
    width: 260px;
    margin: -30px 20px 20px 0;
  }
  #about .story-contents-item .ill-3 {
    width: 180px;
    margin: -20px 0 20px 20px;
  }
  #about .story-outro .midashi-wrap {
    padding-top: 0;
    width: 50%;
  }
  #about .story-outro-wrap .midashi {
    margin-left: 40px;
  }
  #about .story-outro-wrap .story-mv {
    margin: -80px 0 0 0;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  #about section,
  #guide section {
    margin: 100px auto;
  }
  #about section#main-img {
    margin: 0 auto 100px;
  }
  #about .story-intro-wrap .ill-ebi {
    max-width: 120px;
    bottom: 70px;
    left: -30px;
  }
  #about .story-intro-wrap .ill-shishito {
    top: 20px;
    right: 8%;
  }
  #about .story-intro-wrap .ill-pumpkin {
    bottom: -30px;
    right: 4%;
  }
}
/* 歴史
------------------------------- */
#about .ttl-wrap .midashi-wrap {
  max-width: 850px;
  margin: 0 auto 100px;
}

.cbp_tmtimeline {
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.tmtimeline-wrap {
  margin: 0 auto;
}

/* The line */
.cbp_tmtimeline:before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 0;
  width: 3px;
  background: #ccc;
  left: 20%;
  margin-left: -6px;
}

.cbp_tmtimeline > li {
  position: relative;
}

/* The date/time */
.cbp_tmtimeline > li .cbp_tmtime {
  display: block;
  width: 25%;
  padding-right: 110px;
  position: absolute;
  top: 0;
}

.cbp_tmtimeline > li .cbp_tmtime {
  text-align: right;
  font-size: var(--40px);
  font-family: var(--font-sansserif);
  line-height: 1;
  letter-spacing: 0.1rem;
  font-weight: 200;
  color: var(--color-accent);
}
.cbp_tmtimeline > li .cbp_tmtime .jp {
  font-size: var(--13px);
  display: block;
  color: var(--color-primary);
  font-family: var(--font-serif);
  margin-top: 15px;
}

/* Right content */
.cbp_tmtimeline > li .cbp_tmlabel {
  margin: 0 0 50px 23%;
  padding: 0 0 2em;
  position: relative;
}
.cbp_tmtimeline > li .cbp_tmlabel h2 {
  -moz-font-feature-settings: "palt" !important;
  -webkit-font-feature-settings: "palt" !important;
  font-feature-settings: "palt" !important;
  letter-spacing: 0.2rem !important;
  margin-bottom: 12px;
}
.cbp_tmtimeline > li .cbp_tmlabel .cbp_ph2,
.cbp_tmtimeline > li .cbp_tmlabel .cbp_ph3 {
  display: grid;
  gap: 20px 20px;
  margin: 20px 0;
}
.cbp_tmtimeline > li .cbp_tmlabel .cbp_ph2 {
  grid-template-columns: 1fr 1fr;
}
.cbp_tmtimeline > li .cbp_tmlabel .cbp_ph3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.cbp_tmtimeline > li .cbp_tmlabel img {
  border-radius: 4px;
}

/* The icons */
.cbp_tmtimeline > li .cbp_tmicon {
  width: 15px;
  height: 15px;
  line-height: 15px;
  position: absolute;
  color: #fff;
  background: var(--color-accent);
  border-radius: 50%;
  text-align: center;
  left: 20%;
  top: 10px;
  margin: 0 0 0 -12px;
}

/* Example Media Queries */
@media screen and (max-width: 896px) {
  .cbp_tmtimeline > li .cbp_tmtime {
    padding-right: 70px;
  }
}
@media screen and (max-width: 767px) {
  .cbp_tmtimeline > li .cbp_tmtime {
    padding-right: 70px;
    font-size: var(--38px);
  }
  .cbp_tmtimeline:before {
    display: none;
  }

  .cbp_tmtimeline > li .cbp_tmtime {
    width: 100%;
    position: relative;
    padding: 0 0 5px 0;
    text-align: left;
  }

  .cbp_tmtimeline > li .cbp_tmtime span {
    text-align: left;
  }

  .cbp_tmtimeline > li .cbp_tmlabel {
    margin: 0 0 50px 0;
    padding: 1em 0 1em 1.5em;
    font-weight: 400;
    border-left: 1px solid #222;
  }

  .cbp_tmtimeline > li .cbp_tmlabel:after {
    right: auto;
    left: 20px;
    border-right-color: transparent;
    border-bottom-color: #3594cb;
    top: -20px;
  }

  .cbp_tmtimeline > li .cbp_tmicon {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .cbp_tmtimeline > li .cbp_tmlabel .cbp_ph2,
  .cbp_tmtimeline > li .cbp_tmlabel .cbp_ph3 {
    display: grid;
    gap: 10px 10px;
    margin: 20px 0;
  }
  .cbp_tmtimeline > li .cbp_tmlabel .cbp_ph2 {
    grid-template-columns: 1fr;
  }
  .cbp_tmtimeline > li .cbp_tmlabel .cbp_ph3 {
    grid-template-columns: 1fr 1fr;
  }
  .cbp_tmtimeline > li .cbp_tmlabel img {
    border-radius: 4px;
  }
}
/*  会社概要ページ 
==================================================== */
/* common
------------------------------- */
#company section {
  margin: 40px auto;
}
#company section:last-child {
  margin: 40px auto 60px;
}
#company section#main-img {
  margin: 0 auto 50px;
}

#company .contents-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

/* box */
.white-box {
  background: rgba(255, 255, 255, 0.7);
  padding: 40px 20px;
  border-radius: 6px;
}

/* list */
#company ul.one li {
  list-style-type: none;
  margin-left: 2em;
}
#company ul.one li:before {
  content: "一、";
  margin-left: -2em;
}
#company ul.one li {
  padding: 12px 0;
  letter-spacing: 0.05rem;
}

#company ol.cjk {
  margin-top: 40px;
  font-size: var(--16px);
}
#company ol.cjk li {
  list-style-type: cjk-ideographic;
  text-indent: -2em;
  padding: 5px 3px;
  line-height: 1.6;
}
#company ol.cjk li.first {
  list-style-type: none;
}

/* @media */
@media (min-width: 481px) {
  .white-box {
    padding: 50px 20px;
  }
  #company ol.cjk {
    margin-top: 60px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-feature-settings: "pkna";
    display: block;
  }
  #company ol.cjk li {
    list-style-type: cjk-ideographic;
    padding: 5px 10px;
    line-height: 1.7;
  }
  #company ol.cjk {
    margin-top: 50px;
    font-size: var(--17px);
  }
  #company ol.cjk li {
    padding: 5px 6px;
    line-height: 1.7;
  }
}
@media (min-width: 768px) {
  #company section {
    margin: 50px auto;
  }
  #company section:last-child {
    margin: 50px auto 120px;
  }
  .white-box {
    padding: 70px 30px;
  }
  #company ol.cjk {
    margin-top: 60px;
    font-size: var(--19px);
  }
  #company ol.cjk li {
    padding: 5px 10px;
  }
}
@media (min-width: 1024px) {
  .white-box {
    padding: 100px 30px;
  }
  #company ol.cjk li {
    padding: 5px 7px;
  }
  #company ol.cjk {
    font-size: var(--22px);
  }
  #company ol.cjk li {
    padding: 5px 19px;
  }
}

/* スローガン
------------------------------- */
#company .circle-1 {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(250, 222, 216, 0.5);
  text-align: center;
  line-height: 70px;
  margin: -8px -8px;
  color: var(--color-accent);
  font-size: var(--15px);
}

@media (min-width: 481px) {
  #company .circle-1 {
    width: 84px;
    height: 84px;
    line-height: 84px;
    margin: -9px -9px;
    font-size: var(--16px);
  }
}
@media (min-width: 600px) {
  #company .circle-1 {
    width: 94px;
    height: 94px;
    line-height: 94px;
    margin: -10px -10px;
    font-size: var(--18px);
  }
}

@media (min-width: 768px) {
  #company .circle-1 {
    width: 130px;
    height: 130px;
    line-height: 130px;
    margin: 0 -10px;
  }
}
@media (min-width: 1024px) {
  #company .circle-1 {
    width: 180px;
    height: 180px;
    line-height: 180px;
    margin: 0 -14px;
    font-size: var(--22px);
  }
}

/* ph
------------------------------- */
#company .ph-wrap {
  width: 100%;
  margin: 30px 0;
}
#company .ph-wrap .ph-wrap-item {
  width: 80%;
}
#company .ph-wrap .ph-wrap-item-1 {
  margin: 0 auto 60px 0;
}
#company .ph-wrap .ph-wrap-item-3 {
  margin: 0 auto 60px;
}
#company .ph-wrap .ph-wrap-item-2 {
  margin: 0 0 60px auto;
}

@media (min-width: 481px) {
  #company .ph-wrap {
    margin: 50px 0;
  }
  #company .ph-wrap .ph-wrap-item {
    width: 60%;
  }
}
@media (min-width: 768px) {
  #company .ph-wrap {
    width: 90%;
    justify-content: flex-start;
    margin: 100px 0;
  }
  #company .ph-wrap .ph-wrap-item {
    width: 33.3%;
  }
  #company .ph-wrap .ph-wrap-item-1,
  #company .ph-wrap .ph-wrap-item-2,
  #company .ph-wrap .ph-wrap-item-3 {
    margin: 0;
  }
}

/* 会社概要
------------------------------- */
#company .spec-list {
  max-width: 700px;
  margin: 0 auto;
}
#company .spec-list dl {
  font-family: var(--font-serif);
  font-size: var(--16px);
}
.spec-list dt,
.spec-list dd {
  padding: 16px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  #company .spec-list dt,
  #company .spec-list dd {
    background-color: transparent;
  }
}

/*  お料理ページ 
==================================================== */
/* pagination・pagelink
------------------------------- */
.pagination {
  margin: 40px auto 0;
  padding-bottom: 50px;
}
.pagination h2.screen-reader-text {
  display: none;
}
.page-numbers {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 10px;
}
.nav-links li a,
.nav-links li span,
.nav-links li.arrow a,
.pagelink-items li.arrow a {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  line-height: 1;
  border-radius: 50%;
  background-color: rgba(250, 222, 216, 0.5);
  color: var(--color-primary);
  opacity: 1;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  font-family: var(--font-sansserif);
  font-size: var(--14px);
}

.nav-links li span.current,
.pagelink-items li span.current {
  color: #fff;
  background-color: var(--color-accent);
}

.nav-links li a:hover,
.nav-links li.arrow a:hover,
.pagelink-items li.arrow a:hover {
  color: #fff;
  background-color: var(--color-accent);
  opacity: 0.9;
}

.nav-links li a.prev::before,
.nav-links li a.next::after,
.nav-links li a.older::before,
.nav-links li a.newer::after,
.pagelink-items li a.older::before,
.pagelink-items li a.newer::after {
  font-family: "Font Awesome 5 Free";
  font-size: 0.6rem;
  padding-right: 0;
  font-weight: 900;
}
.nav-links li a.prev::before,
.nav-links li a.older::before,
.pagelink-items li a.prev::before,
.pagelink-items li a.older::before {
  content: "\f053";
}

.nav-links li a.next::after,
.nav-links li a.newer::after,
.pagelink-items li a.next::after,
.pagelink-items li a.newer::after {
  content: "\f054";
}

@media (min-width: 768px) {
  .pagination {
    margin: 40px auto 0;
    padding-bottom: 100px;
  }
  .nav-links li a,
  .nav-links li span,
  .nav-links li.arrow a,
  .pagelink-items li.arrow a {
    width: 38px;
    height: 38px;
  }
}

/* 店舗選択ボタン
------------------------------- */
#menu #choose {
  margin: 0 auto 55px;
}

/* main-contents
------------------------------- */
#menu #main-contents {
  background-image: url(../images/common/bg_washi02.jpg);
  background-repeat: repeat;
  padding: 50px 0;
}
.seasonal #main-contents {
  background-image: url(../images/common/back_gold_l-min.jpg) !important;
  background-repeat: repeat;
}
#menu section,
#catering section,
#guide section {
  margin-bottom: 70px;
}
@media (min-width: 481px) {
  #menu section,
  #catering section,
  #guide section {
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  #menu section,
  #catering section,
  #guide section {
    margin-bottom: 90px;
  }
  #menu #main-contents {
    padding: 80px 0;
  }
}
@media (min-width: 1024px) {
  #menu section,
  #catering section,
  #guide section {
    margin-bottom: 120px;
  }
}

/* カテゴリ
------------------------------- */
#menu .toc {
  margin: 0 auto 20px;
}
.cate-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cate-list li {
  margin-bottom: 35px;
  border-left: 1px solid var(--color-accent);
}
.cate-list li:first-child {
  border-left: none;
}
.cate-list li a {
  font-size: var(--16px);
  line-height: 1;
  display: block;
  padding: 0 20px;
  text-decoration: none;
  position: relative;
}
.cate-list li a:hover {
  color: var(--color-primary) !important;
}
.cate-list li a:visited {
  color: var(--color-accent);
}

.cate-list li a::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 1px;
  background: var(--color-accent);
  transition: all 0.4s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.cate-list li.current a::after,
.cate-list li a:hover::after {
  transform: scale(1, 1);
}

@media (min-width: 768px) {
  #menu .toc {
    margin: 0 auto 55px;
  }
  .cate-list li a {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .widget {
    margin: 0 auto 63px;
  }
  .cate-list li {
    font-size: var(--16px);
    margin-bottom: 40px;
  }
  .cate-list li a::after {
    bottom: -17px;
    left: 20%;
    width: 60%;
  }
}

/* 各section
------------------------------- */
/* 区切り線 */
.section-line {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 30px auto;
}
.section-line::before,
.section-line::after {
  background-color: var(--color-accent);
  content: "";
  height: 1px;
  width: 100%;
}
.section-line::before {
  margin-right: 20px;
}
.section-line::after {
  margin-left: 20px;
}
/* イラストアニメ */
.chopsticks {
  position: relative;
  width: 80px;
}
.chopsticks-1 {
  width: 75px;
}
.chopsticks-2 {
  width: 75px;
  position: absolute;
  top: -4px;
  left: -4px;
}
.keyframe-chopsticks {
  animation-name: anim_chopsticks;
  transform: rotate(7deg);
  animation-duration: 3s;
}
@keyframes anim_chopsticks {
  50% {
    transform: rotate(-7deg);
  }
  100% {
    transform: rotate(7deg);
  }
}

.glass {
  position: relative;
  width: 130px;
  height: 35px;
}
.glass-1 {
  width: 22px;
  position: absolute;
  top: -12px;
  right: 4%;
}
.glass-2 {
  width: 22px;
  position: absolute;
  top: -12px;
  left: 4%;
}
.keyframe-glass {
  animation-name: anim_glass;
  transform: rotate(0deg);
  animation-duration: 3s;
}
@keyframes anim_glass {
  50% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.keyframe-glass-2 {
  animation-name: anim_glass-2;
  transform: rotate(0deg);
  animation-duration: 3s;
}
@keyframes anim_glass-2 {
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.sushiori {
  position: relative;
  width: 130px;
  height: 35px;
}
.sushiori-1 {
  width: 80px;
  position: absolute;
  top: -10px;
  left: 0;
}
@media (min-width: 481px) {
  .glass-1 {
    width: 23px;
    top: -16px;
    right: 3%;
  }
  .glass-2 {
    width: 23px;
    top: -16px;
    left: 3%;
  }
}
@media (min-width: 600px) {
  .glass-1 {
    width: 23px;
    top: -16px;
    right: 5.5%;
  }
  .glass-2 {
    width: 23px;
    top: -16px;
    left: 5.5%;
  }
}
@media (min-width: 768px) {
  .section-line {
    margin: 40px auto;
  }
  .glass-1 {
    width: 24px;
    top: -16px;
    right: 3px;
  }
  .glass-2 {
    width: 24px;
    top: -16px;
    left: 3px;
  }
}
@media (min-width: 1024px) {
  .glass-1 {
    width: 26px;
    top: -18px;
    right: 3px;
  }
  .glass-2 {
    width: 26px;
    top: -18px;
    left: 3px;
  }
}

/* タイトル
------------------------------- */
#menu .ttl-wrap,
#catering .ttl-wrap {
  margin: 0 auto;
}
#menu .ttl-wrap .sec-ttl-yoko,
#catering .ttl-wrap .sec-ttl-yoko {
  margin-bottom: 30px;
}
#menu .ttl-wrap .midashi-wrap,
#catering .ttl-wrap .midashi-wrap,
#guide .ttl-wrap .midashi-wrap {
  max-width: 750px;
  margin: 0 auto 50px;
}

/* 料理一覧
------------------------------- */
#menu .menu-wrap,
#catering .menu-wrap {
  margin: 40px auto;
}
#menu #monthly {
  padding: 40px 0;
}
#menu #monthly {
  padding: 40px 0;
}
#menu #monthly .seasonal-menu {
  margin: 60px auto 30px;
}

@media (min-width: 768px) {
  #menu .menu-wrap,
  #catering .menu-wrap {
    margin: 60px auto;
  }
}
@media (min-width: 1024px) {
  #menu .menu-wrap,
  #catering .menu-wrap {
    margin: 70px auto;
  }
}

/* お料理　Singleページ
==================================================== */
/* content */
.menu-single {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 60px;
}
.menu-single.seasonal {
  background-image: url(../images/common/back_gold_l-min.jpg);
  background-repeat: repeat;
}

.menu-single .post-wrap {
  margin: 40px auto 30px;
  padding: 50px 15px 30px;
  background: rgba(255, 255, 255, 0.6);
}
#menu section.post {
  margin-bottom: 0;
}

.menu-single .post-wrap #page-title {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 35px;
}
.menu-single .post-wrap #page-title h1 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 2px 2px;
  font-family: var(--font-sansserif);
  font-weight: 300;
}
.menu-single .post-wrap #page-title h1:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  border-bottom: solid 1px var(--color-primary);
  transform: translateX(-50%);
  animation: border_anim 0.7s linear forwards;
}

.menu-single .post-wrap .post img {
  max-height: 600px;
  margin: 0 auto 50px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .menu-single .post-wrap #page-title {
    margin-bottom: 65px;
  }
}
/* post
------------------------------- */
/* post-info */
.menu-single .post ul.post-info {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu-single .post ul.post-info li {
  font-size: var(--14px);
  font-family: var(--font-sansserif);
  font-weight: 300;
  line-height: 1;
  padding: 0 20px;
  margin-bottom: 10px;
  border-left: 1px solid var(--color-link);
  color: var(--color-link);
}
.menu-single .post ul.post-info li:first-child {
  border-left: none;
}

/* post */
.menu-single .post .menu-cate {
  text-align: center;
  margin-bottom: 30px;
}

.menu-single .post .menu-name {
  text-align: center;
  font-weight: normal;
  margin-bottom: 20px;
}
.menu-single .post h2 {
  text-align: center;
  font-weight: normal;
  margin: 20px 0 30px;
}
.menu-single .post-content {
  max-width: 650px;
  margin: 0 auto;
}
.menu-single .post p {
  line-height: 2.1;
  margin: 20px auto;
}

/* pagelink */
.menu-single .pagelink-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu-single .pagelink {
  max-width: 820px;
  border-top: 1px dotted var(--color-txt-light);
  padding: 30px 0 0;
  margin: 10px auto;
  font-family: var(--font-sansserif);
  font-weight: 400;
  font-size: var(--14px);
}
.pagelink-items li.arrow a {
  background: var(--color-primary);
  color: var(--color-txt-wh);
}
.pagelink-items li.arrow a:hover {
  background-color: var(--color-link);
  color: var(--color-txt-wh);
}

.menu-single .pagelink .index {
  line-height: 32px;
}

@media (min-width: 768px) {
  .menu-single .pagelink .index {
    line-height: 38px;
  }
  .menu-single .post p {
    line-height: 2.5;
    margin: 30px auto;
  }
}

/* @media
------------------------------- */
@media (min-width: 481px) {
  .menu-single .post-wrap {
    padding: 50px 20px 30px;
  }
  .menu-single .pagelink {
    font-size: var(--15px);
  }
}
@media (min-width: 768px) {
  .menu-single .post-wrap {
    margin: 80px auto 50px;
    padding: 50px 40px;
  }
  .menu-single {
    padding-bottom: 140px;
  }
}

/*  仕出しページ 
==================================================== */
#catering #main-contents {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 50px 0;
}
/* 見出し部分
------------------------------- */
.deco-ill-goya,
.deco-ill-fish {
  position: absolute;
  transform: scale(-1, 1);
  opacity: 1;
  z-index: 2;
  mix-blend-mode: multiply;
}

@media (min-width: 481px) {
  .deco-ill-fish {
    bottom: -60px;
    left: 3px;
    width: 180px;
  }
  .deco-ill-goya {
    top: -50px;
    right: 3px;
    width: 220px;
  }
}
@media (min-width: 768px) {
  .deco-ill-fish {
    bottom: -60px;
    left: 10px;
    width: 210px;
  }
  .deco-ill-goya {
    top: -60px;
    right: 10px;
    width: 270px;
  }
}
@media (min-width: 1024px) {
  .deco-ill-fish {
    bottom: -70px;
    left: 20px;
    width: 120px;
  }
  .deco-ill-goya {
    top: -60px;
    right: 10px;
    width: 100px;
  }
}

/*  ご宴会・お食事会ページ 
==================================================== */
/* 見出し部分
------------------------------- */
#banquet .midashi-wrap {
  position: relative;
  margin: 50px auto;
  padding: 10px 0px 50px;
  background-image: url(../images/common/bg_washi_green.jpg);
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
  background-repeat: repeat;
}
#banquet .midashi-wrap h2 {
  white-space: nowrap;
}
#banquet .midashi-yoko {
  max-width: 700px;
  margin: 0 auto;
}

.deco-ill-matsu,
.deco-ill-bamboo {
  position: absolute;
  transform: scale(-1, 1);
  opacity: 1;
  z-index: 2;
  mix-blend-mode: multiply;
}
.deco-ill-bamboo {
  bottom: -40px;
  left: 3px;
  width: 140px;
}
.deco-ill-matsu {
  top: -40px;
  right: 3px;
  width: 184px;
}
@media (min-width: 481px) {
  #banquet .midashi-wrap {
    margin: 50px auto;
    padding: 10px 20px 50px;
  }
  .deco-ill-bamboo {
    bottom: -60px;
    left: 3px;
    width: 180px;
  }
  .deco-ill-matsu {
    top: -50px;
    right: 3px;
    width: 220px;
  }
}
@media (min-width: 768px) {
  #banquet .midashi-wrap {
    margin: 80px auto;
    padding: 20px 30px 60px;
  }
  .deco-ill-bamboo {
    bottom: -60px;
    left: 10px;
    width: 210px;
  }
  .deco-ill-matsu {
    top: -60px;
    right: 10px;
    width: 270px;
  }
}
@media (min-width: 1024px) {
  #banquet .midashi-wrap {
    margin: 100px auto;
    padding: 40px 60px 80px;
  }
  .deco-ill-bamboo {
    bottom: -70px;
    left: 20px;
    width: 250px;
  }
  .deco-ill-matsu {
    top: -60px;
    right: 10px;
    width: 320px;
  }
}

/* 各宴会場
------------------------------- */
#banquet .hall {
  padding: 40px 0;
  position: relative;
  margin-bottom: 50px;
}
#banquet .restaurant-wrap {
  position: relative;
  z-index: 3;
}
#banquet #medium .info-wrap {
  order: 2;
}
#banquet #medium .ph-wrap {
  order: 1;
}

@media (min-width: 768px) {
  #banquet .hall {
    padding: 80px 0;
    position: relative;
  }
  #banquet .restaurant-wrap {
    position: relative;
    z-index: 3;
  }
  #banquet .sec-ttl-yoko {
    margin-bottom: 30px;
  }
  #banquet #medium .info-wrap {
    order: 1;
  }
  #banquet #medium .ph-wrap {
    order: 2;
  }
}
@media (min-width: 1024px) {
}
/*  店舗案内ページ 
==================================================== */
#restaurant #honten,
#restaurant #tonouchi,
#en #honten {
  padding: 50px 0;
}
#restaurant .restaurant-info,
#banquet .restaurant-info {
  align-items: flex-start;
}
#restaurant #honten,
#en #honten {
  background-color: rgba(255, 255, 255, 0.9);
}
#restaurant .restaurant-info .info-wrap,
#banquet .restaurant-info .info-wrap,
#en .restaurant-info .info-wrap {
  padding: 50px 0 0 0;
  background-color: transparent;
}
#restaurant .restaurant-info .info-wrap p,
#banquet .restaurant-info .info-wrap p {
  margin: 0 0 30px;
  line-height: 1.6;
  letter-spacing: 0.02rem;
}

/* slider 上書き
------------------------------- */
.slick-dots {
  bottom: -45px;
}
.slick-list {
  border-radius: 6px;
}
@media (min-width: 768px) and (max-width: 790px) {
  #en .slick-dots {
    bottom: 70px;
  }
}
@media (min-width: 791px) and (max-width: 860px) {
  #en .slick-dots {
    bottom: 10px;
  }
}

/* map
------------------------------- */
.map {
  width: 100%;
  margin: 40px auto;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

@media (min-width: 768px) {
  #restaurant #honten,
  #restaurant #tonouchi,
  #en #honten {
    padding: 100px 0;
  }
  #restaurant .restaurant-info .info-wrap,
  #banquet .restaurant-info .info-wrap,
  #en .restaurant-info .info-wrap {
    padding: 0 0 0 0;
  }
  #restaurant .restaurant-info .info-wrap-l,
  #banquet .restaurant-info .info-wrap-l {
    padding-right: 30px;
  }
  #restaurant .restaurant-info .info-wrap-r,
  #banquet .restaurant-info .info-wrap-r,
  #en .restaurant-info .info-wrap-r {
    padding-left: 30px;
  }
  #restaurant .restaurant-info .info-wrap p,
  #banquet .restaurant-info .info-wrap p,
  #en .restaurant-info .info-wrap p {
    line-height: 1.7;
    letter-spacing: 0.03rem;
  }
  .map {
    padding-top: 56.25%;
    margin: 60px auto;
  }
}
@media (min-width: 1024px) {
  #restaurant .restaurant-info .info-wrap,
  #banquet .restaurant-info .info-wrap {
    padding: 20px 0 0 0;
  }
  #restaurant .restaurant-info .info-wrap-l,
  #banquet .restaurant-info .info-wrap-l {
    padding-right: 50px;
  }
  #restaurant .restaurant-info .info-wrap-r,
  #banquet .restaurant-info .info-wrap-r {
    padding-left: 50px;
  }
}

/*  ご予約・ご利用ページ 
==================================================== */
#guide section#main-img {
  margin: 0 auto 100px;
}
#guide #reservation {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 50px 0;
}
#guide .reservation {
  margin: 50px auto;
  max-width: 900px;
  position: relative;
}
ul.reservation-wrap,
li.reservation-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.reservation-wrap {
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #ccc;
  background-image: url(../images/common/bg_washi_green.jpg);
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
  background-repeat: repeat;
  border-radius: 4px;
}
ul.reservation-wrap:before {
  content: "";
  border: 1px solid #ccc;
  align-self: stretch;
}
li.reservation-item {
  padding: 20px;
  align-items: center;
  justify-content: space-around;
  flex: 1;
}
li.reservation-item-start {
  order: -1;
}
.reservation-header {
  font-size: var(--20px);
  white-space: nowrap;
  margin: 0 1em;
  width: 4em;
}
.reservation-content .tel {
  font-size: var(--30px);
  margin-bottom: 10px;
}
.reservation-content .tel .icon {
  font-size: var(--15px);
  margin-right: 10px;
}
.reservation-content .txt {
  font-family: var(--font-sansserif);
  font-weight: 300;
}
#guide .deco-ill-01,
#guide .deco-ill-02 {
  position: absolute;
  opacity: 1;
  z-index: 2;
}
#guide .deco-ill-01 {
  bottom: -40px;
  left: 3px;
  width: 140px;
  transform: scale(-1, 1);
}
#guide .deco-ill-02 {
  top: -40px;
  right: 3px;
  width: 184px;
}
#guide #howto dl {
  line-height: 2.3;
}
@media (min-width: 481px) {
  #guide .deco-ill-01 {
    bottom: -60px;
    left: 3px;
    width: 180px;
  }
  #guide .deco-ill-02 {
    top: -50px;
    right: 3px;
    width: 220px;
  }
  .reservation-header {
    margin-right: 2em;
  }
}
@media (min-width: 768px) {
  ul.reservation-wrap {
    align-items: center;
    flex-direction: row;
  }
  ul.reservation-wrap:before {
    border: 0.5px solid #ccc;
  }
  .reservation-header {
    margin-right: 1.4em;
  }
  #guide .deco-ill-01 {
    bottom: -60px;
    left: -20px;
    width: 80px;
  }
  #guide .deco-ill-02 {
    top: -60px;
    right: -30px;
    width: 70px;
  }
}

.spec-list dl {
  margin: 50px auto;
  width: 94%;
  font-family: var(--font-sansserif);
}
.spec-list dt {
  flex-basis: 25%;
  padding: 20px;
  background-color: rgba(250, 222, 216, 0.5);
  border-bottom: 1px solid #ccc;
}
.spec-list dd {
  flex-basis: 75%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #ccc;
}
.spec-list dt:first-child {
  border-top: 1px solid #ccc;
}
.spec-list dd:nth-child(2) {
  border-top: 1px solid #ccc;
}
@media (max-width: 767px) {
  .spec-list dl {
    flex-flow: column;
    width: 100%;
    padding: 0 0;
    border: 0;
  }
  .spec-list dt,
  .spec-list dd {
    padding: 16px;
    border-bottom: 1px solid #ccc;
  }
  .spec-list dd:nth-child(2) {
    border-top: 0;
  }
}
@media (max-width: 480px) {
  .spec-list dl {
    padding: 0 5px;
  }
  .spec-list dt,
  .spec-list dd {
    padding: 12px;
  }
}

/*  個人情報の取り扱いページ
==================================================== */
#pp #main-contents {
  margin-bottom: 40px;
  padding-top: 40px;
}
#pp h2 {
  border-left: 4px solid var(--color-primary);
  padding: 10px;
  line-height: 1;
  margin: 50px 0 10px;
}
@media (min-width: 768px) {
  #pp #main-contents {
    margin-bottom: 100px;
    padding-top: 80px;
  }
}
