@charset "UTF-8";
:root {
  --color-primary: #003e7f;
  --color-secondary: #0a98de;
  --color-green: #168816;
  --color-red: #e51f4e;
  --color-orange: #de6a07;
  --color-gray-900: #333333;
  --color-gray-700: #777777;
  --color-gray-300: #dddddd;
  --color-gray-100: #f0f0f0;
  --color-white: #ffffff;
}

:root {
  --font-size-xxs: calc(10 / 16 * 1rem);
  --font-size-xs: calc(12 / 16 * 1rem);
  --font-size-s: calc(14 / 16 * 1rem);
  --font-size-m: calc(16 / 16 * 1rem);
  --font-size-l: calc(18 / 16 * 1rem);
  --font-size-xl: calc(18 / 16 * 1rem);
  --font-size-xl20: calc(20 / 16 * 1rem);
  --font-size-2xl: calc(24 / 16 * 1rem);
  --font-size-3xl: calc(32 / 16 * 1rem);
  --font-size-4xl: calc(40 / 16 * 1rem);
  --font-size-5xl: calc(48 / 16 * 1rem);
}

@media screen and (max-width: 750px) {
  :root {
    --font-size-l: calc(16 / 16 * 1rem);
    --font-size-xl: calc(20 / 16 * 1rem);
    --font-size-xl20: calc(20 / 16 * 1rem);
    --font-size-2xl: calc(20 / 16 * 1rem);
    --font-size-3xl: calc(24 / 16 * 1rem);
    --font-size-4xl: calc(28 / 16 * 1rem);
    --font-size-5xl: calc(32 / 16 * 1rem);
  }
}
/* ============================================
   Chef Introduction Component
   ============================================ */
.chef-intro {
  width: 100%;
  padding-bottom: 120px;
  /* --- 画像エリア --- */
  /* --- コンテンツエリア --- */
}
@media screen and (max-width: 750px) {
  .chef-intro {
    padding-bottom: 48px;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.chef-intro__inner {
  background-color: var(--color-gray-100); /* 画像から推測した薄いグレー */
  max-width: 1200px; /* デザインに合わせて調整 */
  margin: 0 auto;
  padding: 4vw;
}
@media screen and (min-width: 751px) {
  .chef-intro__inner {
    padding: 24px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 240fr 48px 864fr;
    grid-template-columns: 240fr 864fr;
    gap: 48px;
  }
}
@media screen and (min-width: 751px) {
  .chef-intro__image-area {
    width: 100%; /* 幅の比率 */
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .chef-intro__image-area {
    margin-bottom: 24px;
  }
}
.chef-intro__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1; /* 正方形に近い比率 */
  overflow: hidden;
}
.chef-intro__figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.chef-intro__content {
  width: auto;
  padding-top: 10px; /* 画像との位置微調整 */
}
.chef-intro__pos-en {
  color: var(--color-primary);
  margin-bottom: 10px;
}
.chef-intro__title {
  font-size: var(--font-size-xl);
  margin-bottom: 24px;
}
.chef-intro__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}
.chef-intro__btn-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.chef-intro__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid var(--color-gray-300);
  padding: 16px 24px;
  gap: 40px;
}
@media screen and (max-width: 750px) {
  .chef-intro__btn {
    gap: 16px;
    padding: 16px;
    width: 100%;
  }
}
.chef-intro__btn .ja {
  font-size: var(--font-size-xl);
}
@media screen and (max-width: 750px) {
  .chef-intro__btn .ja {
    font-size: var(--font-size-l);
  }
}

/* --- リンクボックス（白いカード） --- */
.chef-link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  text-decoration: none;
  color: #333;
  -webkit-transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, box-shadow 0.3s;
  transition: opacity 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (min-width: 751px) {
  .chef-link-box {
    padding: 25px 30px;
  }
}
.chef-link-box:hover {
  opacity: 0.8;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.chef-link-box__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.chef-link-box__title {
  font-size: 1rem;
  margin-bottom: 5px;
}
.chef-link-box__sub {
  font-size: 0.8rem;
  color: #888;
  font-family: serif; /* 英字部分を明朝系に */
}
.chef-link-box__icon {
  width: 40px; /* 枠線四角のデザインがあればここにborderを追加 */
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ccc; /* 矢印の枠線 */
  border-radius: 4px;
}
.chef-link-box__icon .arrow {
  width: 16px;
  height: 16px;
  fill: #005694; /* 矢印の色 */
}

/* ============================================
   PC Layout (768px以上)
   ============================================ */
@media (min-width: 768px) {
  /* 左側：画像 */
  /* 右側：コンテンツ */
  /* リンクボックスをPCでは少し大きくする */
  .chef-link-box {
    padding: 25px 30px;
  }
}
.mv {
  background-size: cover;
  background-position: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .mv {
    margin-bottom: 6.3vw;
  }
}
.restaurant .mv {
  height: 450px;
  background-image: url(/img/restaurant/restaurant_index_kv_pc.jpg);
}
@media screen and (max-width: 750px) {
  .restaurant .mv {
    height: 53.2vw;
    background-image: url(/img/restaurant/restaurant_index_kv_sp.jpg);
  }
}
.mv-wrap {
  padding-left: 4vw;
  padding-right: 4vw;
  height: 100%;
}
.mv-in {
  height: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.mv .cmn-ttl {
  color: #fff;
  position: absolute;
  bottom: 40px;
  left: 0;
}
@media screen and (max-width: 750px) {
  .mv .cmn-ttl {
    bottom: 4vw;
  }
}
.mv .cmn-ttl .en {
  font-size: var(--font-size-m);
}
.mv .cmn-ttl .ja {
  font-size: var(--font-size-4xl);
  font-family: serif;
}

.spot .breadcrumb.is-overlay,
.reserve .breadcrumb.is-overlay {
  text-shadow: none;
  color: #333;
}

.l_und_headding {
  padding-top: 10.6vw;
  padding-bottom: 6.6vw;
  padding-left: 65px;
  padding-right: 65px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 751px) {
  .l_und_headding {
    padding-top: 120px;
  }
}
@media screen and (min-width: 751px) {
  .l_und_headding {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 750px) {
  .l_und_headding {
    padding-left: 0;
    padding-right: 0;
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.l_und_contents {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 192px 80px 1fr;
  grid-template-columns: 192px 1fr;
  gap: 80px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: block;
  padding-left: 4vw;
  padding-right: 4vw;
  margin-bottom: 5.3vw;
}
@media screen and (min-width: 751px) {
  .l_und_contents {
    margin-bottom: 110px;
  }
}
@media screen and (min-width: 751px) {
  .l_und_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-left: 65px;
    padding-right: 65px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 751px) {
  .l_und_contentsMain {
    width: auto;
    margin-left: 0px;
  }
}
.l_und_contentsSide {
  position: sticky;
  height: 100%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  top: 130px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .l_und_contentsSide {
    margin-top: 10.6vw;
  }
}
@media screen and (min-width: 751px) {
  .l_und_contentsSide {
    min-width: 220px;
    width: 20%;
    border-top: 1px solid var(--color-gray-300);
  }
}
.l_und_contentsSide .ttl {
  font-size: var(--font-size-m);
  font-weight: normal;
  padding-top: 24px;
  padding-bottom: 24px;
  margin-bottom: 0vw;
}
@media screen and (min-width: 751px) {
  .l_und_contentsSide .ttl {
    margin-bottom: 20px;
  }
}
.l_und_contentsSideNaviSubList {
  margin-top: 0vw;
  border-radius: 4px;
  background: #F0F0F0;
  padding-bottom: 5.3vw;
}
@media screen and (min-width: 751px) {
  .l_und_contentsSideNaviSubList {
    margin-top: 16px;
  }
}
@media screen and (min-width: 751px) {
  .l_und_contentsSideNaviSubList {
    padding: 1em 1em;
  }
}
.l_und_contentsSideNaviSubList li + li {
  margin-top: 0.5vw;
}
@media screen and (min-width: 751px) {
  .l_und_contentsSideNaviSubList li + li {
    margin-top: 10px;
  }
}
.l_und_contentsSideNaviSubList li a {
  font-size: var(--font-size-s);
  position: relative;
  padding-right: 2em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .l_und_contentsSideNaviSubList li a {
    padding-right: 3em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 751px) {
  .l_und_contentsSideNaviSubList li a {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 751px) {
  .l_und_contentsSideNaviSubList li a .ico {
    padding: 3px 9px;
    background: none !important;
    border: none !important;
    position: static;
  }
}
@media screen and (max-width: 750px) {
  .l_und_contentsSideNaviSubList li a .ico {
    position: absolute;
    right: 0;
    padding: 10px 14px;
    background: #fff;
  }
}
.l_und_contentsSideNaviSubList li a .arrow {
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  top: 0.25em;
  right: 0;
  fill: #003e7f;
}
@media screen and (max-width: 750px) {
  .l_und_contentsSideNaviSubList li a .arrow {
    right: 0.5rem;
  }
}
@media screen and (min-width: 751px) {
  .l_und_contentsSideNaviSubList li a:hover .ico svg {
    -webkit-animation: none !important;
            animation: none !important;
    fill: #003e7f !important;
  }
}
@media screen and (min-width: 751px) {
  .l_und_contentsSideNaviSubList li a:hover .arrow {
    fill: #003e7f !important;
  }
}
@media screen and (max-width: 750px) {
  .l_und_contentsSideNaviSubList li.is-current a .arrow {
    fill: #003e7f !important;
  }
}
.l_und_2cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .l_und_2cols {
    margin-left: 3.3vw;
    margin-right: 3.3vw;
  }
}
.l_und_2cola {
  margin-top: 7.9vw;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .l_und_2cola {
    margin-top: 110px;
  }
}
.l_und_2cola.is-head {
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .l_und_2cola.is-head {
    margin-bottom: 7.9vw;
  }
}
@media screen and (min-width: 751px) {
  .l_und_2cola {
    width: 40%;
    margin-right: 40px;
  }
}
.l_und_2colb {
  margin-top: 7.9vw;
  width: 100%;
  word-wrap: break-word;
}
@media screen and (min-width: 751px) {
  .l_und_2colb {
    margin-top: 110px;
  }
}
.l_und_2colb.is-head {
  margin-top: 0;
}
@media screen and (min-width: 751px) {
  .l_und_2colb {
    width: calc(60% - 40px);
  }
}
.l_und_2colb .ttl {
  font-size: var(--font-size-xl);
  margin-bottom: 5.3vw;
  display: block;
}
@media screen and (min-width: 751px) {
  .l_und_2colb .ttl {
    margin-bottom: 25px;
  }
}
.l_und_2colb .text {
  font-size: var(--font-size-m);
  line-height: 1.8;
}
.l_und_2colb .text + .text {
  margin-top: 1em;
}
.l_und_2colb.has-line {
  position: relative;
  border-top: 1px solid #DDDDDD;
  padding-top: 7.9vw;
}
@media screen and (min-width: 751px) {
  .l_und_2colb.has-line {
    padding-top: 30px;
  }
}
.l_und_2colb.has-line:before {
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 62, 127)), color-stop(70%, rgb(0, 62, 127)), color-stop(70%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgb(0, 62, 127) 0%, rgb(0, 62, 127) 70%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  position: absolute;
  top: -1px;
  left: 0;
  content: "";
  display: inline-block;
  width: 16px;
}
@media screen and (max-width: 750px) {
  .l_und_2colb.has-line:before {
    width: 3.1vw;
  }
}

.cmn_und_sttl01 {
  display: block;
}
.cmn_und_sttl01 .en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: var(--font-size-s);
  position: relative;
  display: block;
}
.cmn_und_sttl01 .en .text {
  background: #fff;
  padding-right: 1em;
  display: inline-block;
  z-index: 1;
  position: relative;
}
.cmn_und_sttl01 .en:after {
  content: "";
  height: 1px;
  background: #DDDDDD;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  left: 0;
  width: 100%;
}
.cmn_und_sttl01 .ja {
  display: block;
  margin-top: 80px;
  font-size: var(--font-size-2x1);
  font-weight: 400;
  margin-top: 40px;
}
@media screen and (min-width: 751px) {
  .cmn_und_sttl01 .ja {
    margin-top: 80px;
  }
}
.cmn_und_sttl02 {
  display: block;
}
.cmn_und_sttl02 .en {
  font-size: var(--font-size-xxs);
  color: #003E7F;
  margin-bottom: 1.3vw;
  display: block;
}
@media screen and (min-width: 751px) {
  .cmn_und_sttl02 .en {
    margin-bottom: 10px;
  }
}
.cmn_und_sttl02 .ja {
  display: block;
  font-size: var(--font-size-2x1);
  font-weight: 400;
}
.cmn_und_sec {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .cmn_und_sec {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.fll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.flr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p0 {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.ml1em {
  margin-left: 1em;
}

.mr1em {
  margin-left: 1em;
}

.mb1em {
  margin-bottom: 1em;
}

.mt1em {
  margin-top: 1em;
}

.ml2em {
  margin-left: 2em;
}

.mr2em {
  margin-left: 2em;
}

.mb2em {
  margin-bottom: 2em;
}

.mt2em {
  margin-top: 2em;
}

.ml3em {
  margin-left: 3em;
}

.mr3em {
  margin-left: 3em;
}

.mb3em {
  margin-bottom: 3em;
}

.mt3em {
  margin-top: 3em;
}

.ml4em {
  margin-left: 4em;
}

.mr4em {
  margin-left: 4em;
}

.mb4em {
  margin-bottom: 4em;
}

.mt4em {
  margin-top: 4em;
}

.ml5em {
  margin-left: 5em;
}

.mr5em {
  margin-left: 5em;
}

.mb5em {
  margin-bottom: 5em;
}

.mt5em {
  margin-top: 5em;
}

.ml6em {
  margin-left: 6em;
}

.mr6em {
  margin-left: 6em;
}

.mb6em {
  margin-bottom: 6em;
}

.mt6em {
  margin-top: 6em;
}

.ml7em {
  margin-left: 7em;
}

.mr7em {
  margin-left: 7em;
}

.mb7em {
  margin-bottom: 7em;
}

.mt7em {
  margin-top: 7em;
}

.ml8em {
  margin-left: 8em;
}

.mr8em {
  margin-left: 8em;
}

.mb8em {
  margin-bottom: 8em;
}

.mt8em {
  margin-top: 8em;
}

.ml9em {
  margin-left: 9em;
}

.mr9em {
  margin-left: 9em;
}

.mb9em {
  margin-bottom: 9em;
}

.mt9em {
  margin-top: 9em;
}

.ml10em {
  margin-left: 10em;
}

.mr10em {
  margin-left: 10em;
}

.mb10em {
  margin-bottom: 10em;
}

.mt10em {
  margin-top: 10em;
}

.category-lead {
  padding-left: 4vw;
  padding-right: 4vw;
  margin-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .category-lead {
    margin-bottom: 6.3vw;
  }
}
.category-lead-in {
  height: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-size: var(--font-size-m);
  line-height: var(--font-size-4xl);
}

.restaurant-section {
  margin-left: 4vw;
  margin-right: 4vw;
}
@media screen and (min-width: 1300px) {
  .restaurant-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.restaurant-section-in {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .restaurant-section-in {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.restaurant-section-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.restaurant-section-slide-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 751px) {
  .restaurant-section-slide-list {
    margin-left: auto;
    margin-right: 0;
    width: calc(50% + 599px);
    border-radius: 8px 0 0 8px;
    overflow: hidden;
  }
}
@media screen and (max-width: 1120px) {
  .restaurant-section-slide-list {
    margin-left: 4vw;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
  }
}
@media screen and (max-width: 1300px) {
  .restaurant-section-slide-list {
    width: 96vw;
  }
}
.restaurant-section-main {
  position: relative;
  z-index: 1;
  border-radius: 0 10px 0 0;
  background: #ffffff;
  margin-top: -80px;
  margin-left: 0;
  margin-right: 0;
  padding: 80px;
  padding-left: 0;
  padding-bottom: 120px;
}
.restaurant-section-main:before {
  content: "";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  top: 71px;
  right: -10px;
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/round.svg) no-repeat center center/100% auto;
}
@media screen and (min-width: 1200px) and (max-width: 1220px) {
  .restaurant-section-main:before {
    content: none;
  }
}
.restaurant-section-main::after {
  background: url(../img/round.svg) no-repeat 50%/100% auto;
  top: -9px;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  width: 10px;
}
@media screen and (min-width: 1200px) and (max-width: 1220px) {
  .restaurant-section-main::after {
    content: none;
  }
}
@media screen and (max-width: 1120px) {
  .restaurant-section-main {
    margin-top: 0;
    padding-top: 10.6vw;
    padding-bottom: 15.9vw;
    padding-left: 0;
    padding-right: 0;
  }
  .restaurant-section-main::before {
    content: none;
  }
}
@media screen and (max-width: 750px) {
  .restaurant-section-main {
    margin-left: 0;
    margin-right: 0;
  }
}
.restaurant-section-main .cmn-btn {
  padding: 0;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 1305px) {
  .restaurant-section--reverse .restaurant-section {
    margin-left: 4vw;
  }
}
.restaurant-section--reverse .restaurant-section-in::before {
  left: auto;
  right: -1px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (min-width: 751px) {
  .restaurant-section--reverse .restaurant-section-slide-list {
    margin-left: 0;
    margin-right: auto;
    border-radius: 0 8px 8px 0;
  }
  .restaurant-section--reverse .restaurant-section-slide-list:after {
    right: 12.5vw;
    left: auto;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    display: block;
    width: 10px;
    height: 10px;
    background: url(../img/round.svg) no-repeat center center/100% auto;
  }
}
@media screen and (max-width: 1120px) {
  .restaurant-section--reverse .restaurant-section-slide-list {
    width: 96vw;
    margin-right: 4vw;
    margin-left: 0;
    overflow: hidden;
    border-radius: 0 8px 8px 0;
  }
}
.restaurant-section--reverse .restaurant-section-main {
  border-radius: 10px 0 0 0;
  padding-right: 0;
  padding-left: 80px;
}
.restaurant-section--reverse .restaurant-section-main:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  left: -8px;
  right: auto;
}
.restaurant-section--reverse .restaurant-section-main::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  left: auto;
  right: -1px;
}
@media screen and (max-width: 1120px) {
  .restaurant-section--reverse .restaurant-section-main {
    padding-left: 0;
    padding-right: 0;
  }
}

.restaurant-info {
  width: 100%;
  max-width: 1120px;
  margin-left: 0;
}
.restaurant-info__header {
  margin-bottom: 48px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media screen and (max-width: 1020px) {
  .restaurant-info__header {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.restaurant-info__header .cmn-ttl .en {
  color: var(--color-primary);
}
.restaurant-info__header .cmn-ttl .ja {
  font-size: var(--font-size-2xl);
}
.restaurant-info__specs {
  border-top: 1px solid var(--color-gray-300);
  border-bottom: 1px solid var(--color-gray-300);
  padding: 16px 0;
}
@media screen and (max-width: 1020px) {
  .restaurant-info__specs {
    border-bottom: none;
  }
}

.spec-list {
  display: -ms-grid;
  display: grid;
  gap: 15px 48px;
  margin: 0;
  -ms-grid-columns: 1fr 48px 1fr;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1020px) {
  .spec-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.spec-list-wrapper {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px; /* カラム間の隙間 */
}
@media screen and (max-width: 1020px) {
  .spec-list-wrapper {
    gap: 0; /* カラム間の隙間 */
  }
}
.spec-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  margin-bottom: 16px; /* 行ごとの下の余白 */
}
@media screen and (min-width: 1021px) {
  .spec-list__row:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1020px) {
  .spec-list__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-gray-300);
  }
}
.spec-list__term {
  font-weight: normal;
  color: #666;
  white-space: nowrap;
  margin: 0;
}
.spec-list__dots {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px dashed #999;
  margin: 0 10px;
  position: relative;
  top: -4px;
  min-width: 20px;
}
@media screen and (max-width: 1020px) {
  .spec-list__dots {
    display: none;
  }
}
.spec-list__desc {
  margin: 0;
  color: var(--color-gray-900);
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.spec-list__desc .no-term {
  margin-left: auto;
}
@media screen and (max-width: 1020px) {
  .spec-list__desc {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.spec-list__desc.is-alert {
  color: var(--color-red);
}
.spec-list__text {
  display: block;
}
.spec-list__alert {
  display: block;
  color: var(--color-gray-900);
  font-size: 0.85em;
  margin-top: 4px;
  line-height: 1.4;
}
.spec-list__alert.is-red {
  color: var(--color-red);
}

.spec-col {
  width: calc(50% - 24px);
}
@media screen and (max-width: 1020px) {
  .spec-col {
    width: 100%;
  }
}

.restaurant-info__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.icon-link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.icon-link-arrow:hover {
  background-color: #f5f5f5;
}

.restaurant-lowerpage .breadcrumb.is-overlay {
  text-shadow: none;
  color: #333;
}
.restaurant-lowerpage .l_und_headding {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 4vw;
  padding-right: 4vw;
  max-width: 1600px;
  /*
  margin-left: 24px;
  margin-right: 24px;
  */
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .l_und_headding {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 48px;
    width: 100vw;
  }
}
.restaurant-lowerpage .l_und_headding .ja {
  font-size: 14px;
}
.restaurant-lowerpage .l_und_headding .en {
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .l_und_headding .en {
    font-size: 28px;
  }
}
.restaurant-lowerpage .l_und_contents {
  padding-left: 4vw;
  padding-right: 4vw;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 192px 80px 1fr;
  grid-template-columns: 192px 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .l_und_contents {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.restaurant-lowerpage .l_und_contentsMain {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: auto;
}
.restaurant-lowerpage .l_und_contentsMain .bg-grey {
  position: relative;
}
.restaurant-lowerpage .l_und_contentsMain .bg-grey::before {
  background-color: #F0F0F0;
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin-right: -4vw;
  margin-left: auto;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .l_und_contentsMain {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.restaurant-lowerpage .l_und_contentsSide {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: sticky;
  height: 100%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  top: 130px;
  width: 100%;
  border-top: 1px solid var(--color-gray-300);
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .l_und_contentsSide {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.restaurant-lowerpage .store-image {
  margin-right: -4vw;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .store-image {
    padding-bottom: 48px;
  }
}
.restaurant-lowerpage .store-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 30%;
     object-position: 0% 30%;
  border-radius: 3px 0 0 3px;
  aspect-ratio: 1264/450;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .store-image img {
    aspect-ratio: 351/200;
  }
}
.restaurant-lowerpage .store-info h3 {
  padding-top: 80px;
  padding-bottom: 48px;
  font-size: 24px;
  font-weight: normal;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .store-info h3 {
    padding-top: 40px;
    padding-bottom: 32px;
    font-size: 20px;
  }
}
.restaurant-lowerpage .store-info-in {
  padding-bottom: 48px;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .store-info-in {
    padding-bottom: 32px;
  }
}
.restaurant-lowerpage .store-info-note {
  border: 1px solid #F0F0F0;
  border-radius: 3px;
  padding: 48px;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .store-info-note {
    padding: 24px;
  }
}
.restaurant-lowerpage .store-info-note-ttl {
  border-radius: 3px;
  background-color: #F0F0F0;
  padding: 8px 16px;
  line-height: 1;
  font-size: var(--font-size-l);
}
.restaurant-lowerpage .store-info-note-body {
  padding-top: 24px;
}
.restaurant-lowerpage .store-info-note-text {
  padding-bottom: 16px;
}
.restaurant-lowerpage .store-info-note-deta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.restaurant-lowerpage .store-info-note-deta i {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
.restaurant-lowerpage .store-bnr {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 4vw;
  padding-right: 4vw;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 750px) {
  .restaurant-lowerpage .store-bnr {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 0;
    padding-right: 0;
  }
}

#laputa_lunch.restaurant-lowerpage .l_und_headding .ja {
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  #laputa_lunch.restaurant-lowerpage .l_und_headding .ja {
    font-size: 28px;
  }
}
#laputa_lunch.restaurant-lowerpage .l_und_headding .en {
  font-size: 14px;
}

#ginga.restaurant-lowerpage .l_und_headding .ja {
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  #ginga.restaurant-lowerpage .l_und_headding .ja {
    font-size: 28px;
  }
}
#ginga.restaurant-lowerpage .l_und_headding .en {
  font-size: 14px;
}

#lagoon.restaurant-lowerpage .l_und_headding .ja {
  font-size: 14px;
}
#lagoon.restaurant-lowerpage .l_und_headding .en {
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  #lagoon.restaurant-lowerpage .l_und_headding .en {
    font-size: 28px;
  }
}
#lagoon .bg-grey {
  padding-top: 120px;
}
@media screen and (max-width: 750px) {
  #lagoon .bg-grey {
    padding-top: 48px;
  }
}
#lagoon .store-info-note {
  margin-bottom: 120px;
}
@media screen and (max-width: 750px) {
  #lagoon .store-info-note {
    margin-bottom: 48px;
  }
}
#lagoon .cmn-ttl.line-type1::before {
  background-color: var(--color-gray-300);
}
#lagoon .cmn-ttl.line-type1 .en {
  background-color: var(--color-gray-100);
}
#lagoon .cmn-ttl.line-type1 .en.is-nobgc {
  background-color: transparent;
}

.menu-event {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .menu-event {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.menu-event > .cmn-ttl .ja {
  padding-top: 80px;
  padding-bottom: 48px;
}
@media screen and (max-width: 750px) {
  .menu-event > .cmn-ttl .ja {
    padding-top: 40px;
    padding-bottom: 24px;
  }
}
.menu-event > .cmn-ttl.line-type1::before {
  background-color: var(--color-gray-300);
}
.menu-event > .cmn-ttl.line-type1 .en {
  background-color: var(--color-gray-100);
}

.menu-event-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .menu-event-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.menu-event-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 2. タグ */
}
.menu-event-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 0;
}
.menu-event-card__image {
  margin-bottom: 24px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 576/355;
  border-radius: 3px;
}
@media screen and (max-width: 750px) {
  .menu-event-card__image {
    margin-bottom: 16px;
    aspect-ratio: 327/202;
  }
}
.menu-event-card__image img {
  width: 100%;
}
.menu-event-card__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu-event-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px; /* 8x1 */
}
@media screen and (min-width: 751px) {
  .menu-event-card__tags {
    min-height: 1.6em;
  }
}
.menu-event-card__tags .tag {
  font-size: var(--font-size-xs);
  color: var(--color-white);
  background-color: var(--color-red);
  padding: 4px 10px; /* 少し余裕を持たせる */
  border-radius: 100em;
  display: inline-block;
}
.menu-event-card__ttl {
  padding-bottom: 24px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-300);
}
.menu-event-card__ttl .en {
  color: #003E7F;
  font-size: var(--font-size-xs);
  margin-bottom: 8px;
}
.menu-event-card__ttl .ja {
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .menu-event-card__ttl .ja {
    font-size: 18px;
  }
}
@media screen and (min-width: 751px) {
  .menu-event-card__ttl .text-link-wrap {
    min-height: 4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.menu-event-card .menu-event-spec {
  margin: 0 0 24px; /* 8x3 */
  padding-bottom: 16px; /* 8x2 */
  border-bottom: 1px dotted #ccc; /* リスト下の区切り線 */
}
.menu-event-card .menu-event-spec__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  margin-bottom: 16px; /* 8x2 */
  font-size: 0.875rem; /* 14px */
  line-height: 1.6;
}
.menu-event-card .menu-event-spec__row:last-child {
  margin-bottom: 0;
}
.menu-event-card .menu-event-spec__row .term {
  color: #666;
  white-space: nowrap;
  margin: 0;
}
.menu-event-card .menu-event-spec__row .dots {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px dashed #999;
  margin: 0 8px;
  position: relative;
  top: -5px;
  min-width: 16px;
}
.menu-event-card .menu-event-spec__row .desc {
  margin: 0;
  text-align: right;
  color: #333;
}
.menu-event-card .menu-event-spec__row .alert {
  display: block;
  font-size: 0.85em;
  margin-top: 4px;
  color: #666;
  min-height: 1.5em;
  position: relative;
}
.menu-event-card .menu-event-spec__row .alert .text {
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
}
@media screen and (min-width: 751px) {
  .menu-event-card .menu-event-spec__row .alert .text {
    width: 300%;
  }
}
.menu-event-card .menu-event-spec__row .alert.is-red {
  color: var(--color-red);
}
.menu-event-card__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
}
.menu-event-card__icon {
  margin-top: auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.exchef {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .exchef {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.exchef > .cmn-ttl .ja {
  padding-top: 80px;
  padding-bottom: 48px;
}
@media screen and (max-width: 750px) {
  .exchef > .cmn-ttl .ja {
    padding-top: 40px;
    padding-bottom: 24px;
  }
}
.exchef > .cmn-ttl.line-type1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.exchef > .cmn-ttl.line-type1 .en {
  background: #FFF;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-right: 1em;
}
.exchef > .cmn-ttl.line-type1::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  background-color: var(--color-gray-300);
}
.exchef > .cmn-ttl.line-type2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.exchef > .cmn-ttl.line-type2 .en {
  background: #F0F0F0;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-right: 1em;
}
.exchef > .cmn-ttl.line-type2::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  background-color: var(--color-gray-300);
}
.exchef h3 {
  padding-top: 80px;
  padding-bottom: 48px;
  font-size: 24px;
  font-weight: normal;
}
@media screen and (max-width: 750px) {
  .exchef h3 {
    padding-top: 40px;
    padding-bottom: 32px;
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .exchef .prof-list {
    margin-bottom: 7.9vw;
  }
}
.exchef .prof-text {
  font-size: var(--font-size-m);
  margin-bottom: 7.9vw;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .exchef .prof-text {
    margin-bottom: 35px;
  }
}
.exchef .prof-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-top: 1px solid #DDDDDD;
  padding: 1em 0;
}
@media screen and (min-width: 751px) {
  .exchef .prof-line {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (max-width: 750px) {
  .exchef .prof-line {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.exchef .prof-line:last-child {
  border-bottom: 1px solid #DDDDDD;
}
.exchef .prof-line dt {
  color: #777777;
  width: 100%;
  margin-bottom: 2.6vw;
  font-size: var(--font-size-m);
}
@media screen and (min-width: 751px) {
  .exchef .prof-line dt {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 751px) {
  .exchef .prof-line dt {
    width: 20%;
  }
}
.exchef .prof-line dd {
  width: 100%;
  font-size: var(--font-size-m);
}
@media screen and (min-width: 751px) {
  .exchef .prof-line dd {
    margin-left: 1em;
    width: 80%;
  }
}
.exchef .prof-award {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 7.9vw;
  padding-top: 5.3vw;
  padding-right: 5.3vw;
  padding-bottom: 5.3vw;
  padding-left: 5.3vw;
}
@media screen and (min-width: 751px) {
  .exchef .prof-award {
    margin-top: 50px;
  }
}
@media screen and (min-width: 751px) {
  .exchef .prof-award {
    padding-top: 50px;
  }
}
@media screen and (min-width: 751px) {
  .exchef .prof-award {
    padding-right: 50px;
  }
}
@media screen and (min-width: 751px) {
  .exchef .prof-award {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 751px) {
  .exchef .prof-award {
    padding-left: 50px;
  }
}
.exchef .prof-award_ttl {
  background: #F0F0F0;
  margin-bottom: 5.3vw;
  display: block;
  width: 100%;
  font-size: var(--font-size-l);
  padding: 0.2em 1em;
}
@media screen and (min-width: 751px) {
  .exchef .prof-award_ttl {
    margin-bottom: 20px;
  }
}
.exchef .prof-award_cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 751px) {
  .exchef .prof-award_cols {
    gap: 45px;
  }
}
@media screen and (max-width: 750px) {
  .exchef .prof-award_cols {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.exchef .prof-award_col.is-img {
  width: 100%;
  margin-bottom: 6.6vw;
}
@media screen and (min-width: 751px) {
  .exchef .prof-award_col.is-img {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 751px) {
  .exchef .prof-award_col.is-img {
    width: 45%;
  }
}
.exchef .prof-award_col.is-text {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .exchef .prof-award_col.is-text {
    width: 50%;
  }
}
.exchef .prof_2cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .exchef .prof_2cols {
    margin-left: 5.3vw;
    margin-right: 5.3vw;
  }
}
.exchef .prof_2cola {
  margin-top: 7.9vw;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .exchef .prof_2cola {
    margin-top: 110px;
  }
}
.exchef .prof_2cola.is-head {
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .exchef .prof_2cola.is-head {
    margin-bottom: 7.9vw;
  }
}
@media screen and (min-width: 751px) {
  .exchef .prof_2cola {
    width: 40%;
    margin-right: 40px;
  }
}
.exchef .prof_2colb {
  margin-top: 7.9vw;
  width: 100%;
  word-wrap: break-word;
}
@media screen and (min-width: 751px) {
  .exchef .prof_2colb {
    margin-top: 110px;
  }
}
.exchef .prof_2colb.is-head {
  margin-top: 0;
}
@media screen and (min-width: 751px) {
  .exchef .prof_2colb {
    width: calc(60% - 40px);
  }
}
.exchef .prof_2colb .ttl {
  font-size: var(--font-size-xl);
  margin-bottom: 5.3vw;
  display: block;
}
@media screen and (min-width: 751px) {
  .exchef .prof_2colb .ttl {
    margin-bottom: 25px;
  }
}
.exchef .prof_2colb .text {
  font-size: var(--font-size-m);
  line-height: 1.8;
}
.exchef .prof_2colb .text + .text {
  margin-top: 1em;
}
.exchef .prof_2colb.has-line {
  position: relative;
  border-top: 1px solid #DDDDDD;
  padding-top: 7.9vw;
}
@media screen and (min-width: 751px) {
  .exchef .prof_2colb.has-line {
    padding-top: 30px;
  }
}
.exchef .prof_2colb.has-line:before {
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 62, 127)), color-stop(70%, rgb(0, 62, 127)), color-stop(70%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgb(0, 62, 127) 0%, rgb(0, 62, 127) 70%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  position: absolute;
  top: -1px;
  left: 0;
  content: "";
  display: inline-block;
  width: 16px;
}
@media screen and (max-width: 750px) {
  .exchef .prof_2colb.has-line:before {
    width: 3.1vw;
  }
}

.contents_ttlWrap .ttl_en {
  color: #003e7f;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  font-family: "Marcellus", serif;
  margin-bottom: 8px;
}

@media screen and (max-width: 749px) {
  .contents_ttlWrap .ttl_en {
    margin-bottom: 2.1333333333vw;
  }
}
.contents_ttlWrap h3 {
  font-size: 1.25rem;
  font-weight: 400;
}

@media screen and (max-width: 749px) {
  .contents_ttlWrap h3 {
    font-size: 1.125rem;
  }
}
.otherEvent_wrap {
  padding-top: 60px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .otherEvent_wrap {
    padding-top: 6.4vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8.5333333333vw;
  }
}
.otherEvent_wrap .otherEvent {
  background-color: #F0F0F0;
  border-radius: 3px;
  width: 100%;
}

.otherEvent_wrap .otherEvent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .otherEvent_wrap .otherEvent > a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4vw;
    padding: 6.4vw;
    width: 100%;
  }
}
.otherEvent_wrap .otherEvent .event_img {
  overflow: hidden;
  max-width: 240px;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .otherEvent_wrap .otherEvent .event_img {
    max-width: 100%;
  }
}
.otherEvent_wrap .otherEvent .event_txtWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .otherEvent_wrap .otherEvent .event_txtWrap {
    gap: 4.2666666667vw;
  }
}
.otherEvent_wrap .otherEvent .event_txtWrap .txt {
  line-height: 1.75;
}

.otherEvent_wrap .anm-btn .ico {
  width: 40px;
  margin: 0 0 0 auto;
  padding: 0px 13px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 749px) {
  .otherEvent_wrap .anm-btn .ico {
    width: 10.6666666667vw;
    padding: 0.2666666667vw 3.4666666667vw;
  }
}
.otherEvent_wrap .anm-btn .ico svg {
  width: 12px;
}

@media screen and (max-width: 749px) {
  .otherEvent_wrap .anm-btn .ico svg {
    width: 3.2vw;
  }
}
@media screen and (max-width: 750px) {
  .SidebarNav {
    background-color: #F0F0F0;
    padding: 24px 24px 0;
  }
}
.SidebarNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .SidebarNavList {
    gap: 1px;
  }
}
.SidebarNav h3 {
  font-size: var(--font-size-m);
  font-weight: normal;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .SidebarNav li {
    background-color: #fff;
    padding: 16px 24px;
  }
}
.SidebarNav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0;
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .SidebarNav a {
    font-size: 16px;
  }
}
.SidebarNav a .ico {
  padding: 3px 9px;
}
@media screen and (max-width: 750px) {
  .SidebarNav a .ico {
    padding: 5px 14px;
  }
}
.SidebarNav a .ico svg {
  width: 0.625rem;
  height: 0.625rem;
}
@media screen and (max-width: 750px) {
  .SidebarNav a .ico svg {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media screen and (max-width: 750px) {
  .SidebarNav .is-current {
    background-color: #003E7F;
  }
}
@media screen and (max-width: 750px) {
  .SidebarNav .is-current a {
    color: var(--color-white);
  }
}
@media screen and (min-width: 751px) {
  .SidebarNav .is-current .ico {
    background: #003E7F;
    border: 1px solid var(--color-gray-300);
    color: var(--color-white);
    fill: var(--color-white);
  }
}

/*-------------------------------------------------------------------
お問い合わせフォーム　※ページごとにテキスト変更
/*-------------------------------------------------------------------*/
.contactForm {
  padding-top: 120px;
  padding-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .contactForm {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.contactForm .contactForm_box {
  background-color: #003E7F;
  border: 1px solid #003E7F;
  border-radius: 3px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1200px) {
  .contactForm .contactForm_box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding-left: 24px;
    padding-right: 24px;
  }
}
.contactForm .contactForm_box .contactForm_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #5379a6;
  color: var(--color-white);
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .contactForm .contactForm_box .contactForm_ttl {
    font-size: 22px;
    border-right: none;
    border-bottom: 1px solid #5379a6;
    padding: 24px 0;
  }
}
.contactForm .contactForm_box .contact_info {
  padding: 48px;
  color: var(--color-white);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .contactForm .contactForm_box .contact_info {
    padding: 24px 0;
  }
}
.contactForm .contactForm_box .contact_info .res-btn {
  width: 100%;
  max-width: 360px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .contactForm .contactForm_box .contact_info .res-btn {
    max-width: 100%;
  }
}
.contactForm .contactForm_box .contact_info .faq-btn {
  color: var(--color-white);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .contactForm .contactForm_box .contact_info .faq-btn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.contactForm .contactForm_box .contact_info .faq-btn:hover .ico {
  border-color: var(--color-white);
}
.contactForm .contactForm_box .contact_info .line-white {
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color-white)), to(var(--color-white)));
  background-image: linear-gradient(90deg, var(--color-white), var(--color-white));
}
.contactForm .contactForm_box .contact_info .tel {
  font-size: 30px;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .contactForm .contactForm_box .contact_info .tel {
    font-size: 28px;
  }
}
.contactForm .contactForm_box .contact_info .tel span {
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .contactForm .contactForm_box .contact_info .tel span {
    font-size: 18px;
  }
}
.contactForm .contactForm_box .contact_info .note {
  font-size: 13px;
  text-align: center;
}
.contactForm .contactForm_box .contact_info .note.has-come {
  padding-left: 1em;
  position: relative;
}
.contactForm .contactForm_box .contact_info .note.has-come:before {
  content: "※";
}
.contactForm .contactForm_box .contact_info .note.is-left {
  text-align: left;
}
.contactForm .contactForm_box .contact_info .note.is-left:before {
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================================
   Menu Detail Card (Single Column)
   ============================================ */
.menu-single-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px; /* 8x10 アイテム間の余白 */
  width: 100%;
}
.menu-single-list + .menu-single-list {
  margin-top: 56px; /* 8x10 */
}
@media screen and (max-width: 750px) {
  .menu-single-list {
    gap: 40px;
  }
}

.menu-event-single > .cmn-ttl .ja {
  padding-top: 80px;
  padding-bottom: 48px;
}

.menu-section-ttl {
  background-color: var(--color-gray-300);
  padding: 8px 16px;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 32px;
}

.menu-detail-card {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px; /* 8x5 */
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 472fr 48px 680fr;
  grid-template-columns: 472fr 680fr;
  margin-bottom: 24px;
  /* SP Layout */
  /* --- コンテンツエリア --- */
  /* 1. タグ */
  /* 2. ヘッダー（タイトル類） */
  /* 3. 注釈（赤文字） */
  /* 4. 料金・時間 */
  /* 5. 説明文 */
  /* 6. メニュー詳細（■ Menu...） */
}
@media screen and (max-width: 750px) {
  .menu-detail-card {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.menu-detail-card__header {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.menu-detail-card__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
}
@media screen and (max-width: 750px) {
  .menu-detail-card__image {
    width: 100%;
    margin-bottom: 8px;
  }
}
.menu-detail-card__image img {
  width: 100%;
  -o-object-position: center;
     object-position: center;
}
.menu-detail-card__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 750px) {
  .menu-detail-card__content {
    width: 100%;
  }
}
.menu-detail-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px; /* 8x2 */
}
.menu-detail-card__tags .tag {
  font-size: 0.75rem; /* 12px */
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: bold;
  line-height: 1;
  background-color: var(--color-red);
  /* 要予約 */
  /* 開催中 */
  /* 予約推奨 */
  /* 開催予定 */
}
.menu-detail-card__tags .tag.pink {
  background-color: var(--color-red);
}
.menu-detail-card__tags .tag.blue {
  background-color: #003E7F;
}
.menu-detail-card__tags .tag.orange {
  background-color: #DE6A07;
}
.menu-detail-card__tags .tag.green {
  background-color: #168016;
}
.menu-detail-card__header {
  margin-bottom: 2.5rem; /* 8x3 */
}
.menu-detail-card__header .period {
  font-size: 1.25rem;
  font-weight: normal;
  color: #003E7F;
  margin-bottom: 4px;
}
.menu-detail-card__header .title {
  font-size: 1.375rem;
  font-weight: normal;
  color: #003E7F;
  line-height: 1.4;
  margin-bottom: 4px;
}
.menu-detail-card__header .subtitle {
  font-size: 1.125rem;
  font-weight: normal;
  color: #003E7F;
}
.menu-detail-card .note-red {
  color: #e6005c; /* ピンク/赤 */
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.menu-detail-card__info {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.menu-detail-card__info .info-row {
  margin-bottom: 4px;
}
.menu-detail-card__info .info-row.time {
  display: inline-block;
  text-align: right;
}
.menu-detail-card__desc {
  font-size: 0.9375rem; /* 15px */
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
}
.menu-detail-card__menu-box {
  margin-bottom: 2.5rem;
}
.menu-detail-card__menu-box .menu-body {
  font-size: 1rem;
  /* メニュー内の見出しやリストのスタイル */
}
.menu-detail-card__menu-box .menu-body strong,
.menu-detail-card__menu-box .menu-body b {
  font-weight: bold;
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.menu-detail-card__menu-box .menu-body small {
  font-size: 0.8125rem;
}
.menu-detail-card .res-btn {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: 0;
  padding: 16px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .menu-detail-card .res-btn {
    max-width: 100%;
  }
}