@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,600,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,600,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Reggae+One&display=swap");
:root {
  --base_font: "Zen Old Mincho", serif;
  --sub_font: "Zen Kaku Gothic New", sans-serif;
  --mc01: #c80f19;
  --mc02: #ff8a00;
  --sc: #894b14;
  --fc: #333;
  --bc: #f5f7f5;
  --red: #b10000;
}
@media screen and (min-width: 768px) {
  :root {
    --mq: 10.24;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --mq: 7.5;
  }
}

/*リセットCSS
----------------------------------------------------------------*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1;
}

/* 新規追加要素をブロック要素化 */
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
  -webkit-transition: opacity 0.6s ease;
  -moz-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
  /* 追加 */
  backface-visibility: hidden;
  /* 追加 */
}

a:hover,
a:active {
  text-decoration: none;
  opacity: 0.8;
  filter: alpha(opacity=80);
  transition: 0.3s ease-in-out;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  position: relative;
  color: var(--fc);
  font-size: 1.4rem;
  font-family: var(--base_font);
  letter-spacing: 0.05em;
  line-height: 1.875;
  -webkit-text-size-adjust: 100%;
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: var(--base_font);
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

body.fix {
  position: fixed;
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
}

*:focus {
  outline: none;
}

/*-----line-hight-----*/
p,
li,
dl,
tr {
  line-height: 1.875;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.66;
}

/* リンク */
a,
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  transition: opacity 0.6s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

a:hover,
a:active {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/*phone*/
@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*class*/
.cmn {
  /*display:none*/
}
.cmn-content__box {
  position: relative;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.cmn-content__box--size01 {
  max-width: 1230px;
}
.cmn-content__box--full {
  width: 100%;
  padding: 0;
}
.cmn-text--center {
  text-align: center;
}
.cmn-text--right {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .cmn-text--sp-left {
    text-align: center;
  }
}
.cmn-text--vertical {
  writing-mode: vertical-rl;
}
.cmn-text--link {
  position: relative;
  z-index: 1;
}
.cmn-text--link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: black;
  transition: 0.3s;
}
@media screen and (min-width: 1280px) {
  .cmn-text--link:hover:after {
    visibility: hidden;
    opacity: 0;
  }
}
.cmn-bold {
  font-weight: bold !important;
}
.cmn-color {
  color: var(--mc01) !important;
}
.cmn-color--sc {
  color: var(--sc) !important;
}
.cmn-color--w {
  color: white !important;
}
.cmn-color--b {
  color: black !important;
}
.cmn-bg {
  background: var(--mc01);
}
.cmn-bg--sc {
  background: var(--sc);
}
.cmn-bg--bc {
  background: var(--bc);
}
.cmn-bg--w {
  background: white;
}
.cmn-bg--b {
  background: black;
}
.cmn-border-b {
  border-bottom: 1px solid;
}
.cmn-border-b--sc {
  border-bottom: 2px solid var(--sc);
}
.cmn-marker {
  background: linear-gradient(transparent 50%, yellow 50%);
}
.cmn-display__pcl--block {
  display: none !important;
}
@media screen and (min-width: 1800px) {
  .cmn-display__pcl--block {
    display: block !important;
  }
}
@media screen and (min-width: 1800px) {
  .cmn-display__pcl--none {
    display: none;
  }
}
.cmn-display__pc--block {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .cmn-display__pc--block {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-display__pc--none {
    display: none;
  }
}
.cmn-display__pc-tb--block {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-display__pc-tb--block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .cmn-display__pc-tb--none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cmn-display__sp--block {
    display: none;
  }
}
.cmn-display__sp--none {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-display__sp--none {
    display: block;
  }
}
.cmn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cmn-layout__column {
  display: flex;
  flex-wrap: wrap;
}
.cmn-layout__column--just-btw {
  justify-content: space-between;
}
.cmn-layout__column--item-cnt {
  align-items: center;
}
.cmn-layout__column--column {
  flex-direction: column;
}
.cmn-layout__column--reverse {
  flex-direction: row-reverse;
}
.cmn-layout__column--sp-column {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cmn-layout__column--sp-column {
    flex-direction: row;
  }
}

.cmn-table--type02__tr {
  border-top: solid 1px #666;
  padding: 10px 0;
}
.cmn-table--type02__tr:last-of-type {
  border-bottom: solid 1px #666;
}
@media screen and (min-width: 768px) {
  .cmn-table--type02__tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table--type02__th {
    width: 300px;
    padding: 0 20px 0 60px;
  }
}
.cmn-table--type02__th p {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cmn-table--type02__td {
    flex: 1;
    padding: 0 10px 0 0;
  }
}
.cmn-table--type02__td p {
  letter-spacing: 0.05em;
}

.subpage-head__inr {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
  max-width: 1280px;
  height: min(600px, 600 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .subpage-head__inr {
    height: 600px;
    padding-inline: 40px;
  }
}
.subpage-head__ttl {
  line-height: 1;
}
.subpage-head__ttl-st {
  font-size: 3.6rem;
  color: #fff;
  text-shadow: 0px 0px 29.4px rgba(0, 0, 0, 0.004);
}
@media screen and (min-width: 768px) {
  .subpage-head__ttl-st {
    font-size: 4.6rem;
  }
}

.cmn-nav-toggle {
  width: 80px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}
@media screen and (min-width: 768px) {
  .cmn-nav-toggle {
    width: 110px;
    height: 40px;
  }
}
.open .cmn-nav-toggle {
  width: 40px;
}
.cmn-nav-toggle__btn {
  display: block;
  width: 25px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 7.5px;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .cmn-nav-toggle__btn {
    width: 37.5px;
    height: 15px;
    left: 11.25px;
  }
}
.cmn-nav-toggle__btn-line {
  display: block;
  position: absolute;
  left: 0;
  transition: 0.35s ease-in-out;
  width: 100%;
  height: 2px;
  background: #fff;
}
.open .cmn-nav-toggle__btn-line {
  background: #000;
}
.cmn-nav-toggle__btn-line:nth-child(1) {
  top: 0;
}
.cmn-nav-toggle__btn-line:nth-child(2) {
  display: none;
  top: 50%;
  transform: translateY(-50%);
}
.cmn-nav-toggle__btn-line:nth-child(3) {
  bottom: 0;
}
.cmn-nav-toggle-txt {
  color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.open .cmn-nav-toggle-txt {
  visibility: hidden;
  opacity: 0;
}

.header.open .cmn-nav-toggle__btn-line:nth-child(1) {
  top: 7px;
  transform: rotate(315deg);
}
.header.open .cmn-nav-toggle__btn-line:nth-child(2) {
  left: 50%;
  width: 0;
}
.header.open .cmn-nav-toggle__btn-line:nth-child(3) {
  top: 7px;
  transform: rotate(-315deg);
}

.header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1010;
}
.header__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1830px;
  width: 100%;
  height: 100%;
  padding: 20px 7.5px 30px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header__content {
    padding: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .header__content {
    padding: 30px 40px;
  }
}
.header__content-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.header__content-info-ttl {
  display: none;
}
.header__content-info-logo {
  width: 225px;
  position: relative;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .header__content-info-logo {
    width: auto;
  }
}
.header__content-info-sns {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__content-info-sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: absolute;
    top: 50%;
    right: 130px;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
.header__content-menu-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__content-menu-nav-item {
  padding: 0 min(1.1111111111vw, 1.6rem);
}
.header__content-menu-nav-item:first-of-type {
  padding-left: 0;
}
.header__content-menu-nav-item:last-of-type {
  padding-right: 0;
}
.header__content-menu-nav-item-anc {
  display: block;
  padding: 10px;
}
.header__content-menu-nav-item-anc-str {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--fc);
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav-item-anc-str {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav-item--pulldown {
    position: relative;
  }
  .header__content-menu-nav-item--pulldown:hover .header__content-menu-nav-item-submenu {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav-item--pulldown .header__content-menu-nav-item-submenu {
    display: none;
    min-width: 170px;
    width: max-content;
    border-top: solid 15px transparent;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .gjs-dashed .header__content-menu-nav-item--pulldown .header__content-menu-nav-item-submenu {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav-item--pulldown .header__content-menu-nav-item-submenu-inr {
    background-color: #000;
    padding: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav-item--pulldown .header__content-menu-nav-item-submenu-anc {
    display: block;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav-item--pulldown .header__content-menu-nav-item-submenu-anc:last-of-type {
    margin-bottom: 0;
  }
}
.header__content-menu-nav-item--pulldown .header__content-menu-nav-item-submenu-anc-str {
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav-item--pulldown .header__content-menu-nav-item-submenu-anc-str {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
  }
}
.header__content-menu-nav-item--pulldown .header__content-menu-nav-item-submenu-anc-str::before {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sp-nav.header__content-menu-nav {
  display: block;
  overflow-y: scroll;
  opacity: 0;
  max-width: 500px;
  width: 100%;
  height: 100vh;
  background: #f5ece0;
  padding: 65px 5%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 100%;
  transform: scale(0.9);
  visibility: hidden;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  z-index: 1000;
}
.open .sp-nav.header__content-menu-nav {
  opacity: 1;
  transform: translateX(-100%);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.gjs-dashed .sp-nav.header__content-menu-nav {
  overflow: scroll;
  opacity: 1;
  height: calc(100vh - 130px);
  transform: translate(-100%, 130px);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.sp-nav .header__content-menu-nav-list {
  display: block;
  width: 100%;
}
.sp-nav .header__content-menu-nav-item {
  overflow: hidden;
  padding: 0;
}
.sp-nav .header__content-menu-nav-item-anc {
  display: block;
}
.sp-nav .header__content-menu-nav-item-anc-str {
  font-size: 1.6rem;
}
.sp-nav .header__content-menu-nav-item--pulldown .header__content-menu-nav-item-anc {
  padding: 10px 10px 0;
}
.sp-nav .header__content-menu-nav-item-submenu {
  padding: 0 10px 10px;
}
.sp-nav .header__content-menu-nav-sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: min(40px, 40 / var(--mq) * 1vw);
}
.sp-nav .header__content-menu-nav-phone {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: #000;
  padding-left: 35px;
  margin-top: min(40px, 40 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 768px) {
  .sp-nav .header__content-menu-nav-phone {
    font-size: 3rem;
  }
}
.sp-nav .header__content-menu-nav-phone::before {
  content: "";
  width: 22px;
  height: 24px;
  background: url(/system_panel/uploads/images/icon_phone01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sp-nav .header__content-menu-nav-btn {
  margin-top: min(40px, 40 / var(--mq) * 1vw);
}
.sp-nav .header__content-menu-nav-btn-anc {
  display: block;
  max-width: 300px;
  width: 100%;
  background-color: #c80f19;
  border-radius: 5px;
  text-align: center;
}
.sp-nav .header__content-menu-nav-btn-anc-str {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 3.89;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .sp-nav .header__content-menu-nav-btn-anc-str {
    font-size: 1.8rem;
  }
}

.footer {
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-bottom: 0;
  }
}
.footer-cont {
  background: url(/system_panel/uploads/images/bg_ft01.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 1024px) {
  .footer-cont {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.footer-cont__info {
  padding: 40px 10px;
}
@media screen and (min-width: 1024px) {
  .footer-cont__info {
    width: min(50%, 600px);
    padding: 30px 15px;
    margin-left: auto;
  }
}
.footer-cont__info-head {
  margin-bottom: 30px;
}
.footer-cont__info-head-logo {
  width: 300px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer-cont__info-head-logo {
    width: auto;
  }
}
.footer-cont__info-head-sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.footer-cont__info-txt {
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 40px;
}
.footer-cont__info-btn .cmn-btn-anc {
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .footer-cont__map {
    width: 50%;
  }
}
.footer-cont__map-inr {
  padding-top: min(100%, 300px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-cont__map-inr {
    padding-top: min(135%, 600px);
  }
}
.footer-cont__map-inr iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.footer-nav {
  background-color: #000;
}
.footer-nav__list {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
  }
}
.footer-nav__item {
  position: relative;
}
.footer-nav__item ::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.footer-nav__item-anc-str {
  color: #fff;
  line-height: 1;
  padding: 0 10px;
}
.footer-nav__item:first-of-type .footer-nav__item-anc-str {
  padding-left: 0;
}
.footer-nav__item:last-of-type ::before {
  content: none;
}
.footer-nav__item:last-of-type .footer-nav__item-anc-str {
  padding-right: 0;
}
.footer-nav__copyright {
  border-top: solid 1px #333;
  text-align: center;
  padding: 20px 0;
}
.footer-nav__copyright-str {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.ojf {
  position: relative;
  height: auto;
}
.ojf::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.ojf img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.cmn-btn-anc {
  display: block;
  max-width: 340px;
  width: 100%;
  background-color: var(--mc01);
  border: solid 1px var(--mc01);
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
}
.cmn-btn-anc::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .cmn-btn-anc::before {
    right: 30px;
  }
}
.cmn-btn-anc-str {
  letter-spacing: 0.05em;
  line-height: 4.375;
  color: #fff;
  transition: all 0.3s;
}
.cmn-btn-anc:hover {
  background-color: #fff;
}
.cmn-btn-anc:hover::before {
  background-image: url(/system_panel/uploads/images/icon_arrow01_red.png);
}
.cmn-btn-anc:hover .cmn-btn-anc-str {
  color: var(--mc01);
}
.cmn-btn--white .cmn-btn-anc {
  background-color: transparent;
  border: solid 2px #fff;
}
.cmn-btn--white .cmn-btn-anc:hover {
  background-color: #fff;
  border: solid 2px var(--sc);
}
.cmn-btn--black .cmn-btn-anc {
  background-color: #000;
  border: solid 2px #000;
}
.cmn-btn--black .cmn-btn-anc:hover {
  background-color: #fff;
}
.cmn-btn--black .cmn-btn-anc:hover::before {
  background-image: url(/system_panel/uploads/images/icon_arrow03_black.png);
}
.cmn-btn--black .cmn-btn-anc:hover .cmn-btn-anc-str {
  color: #000;
}

.cmn-ttl {
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.cmn-ttl--jp {
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .cmn-ttl--jp {
    font-size: 4.2rem;
  }
}

.cmn-subttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .cmn-subttl {
    font-size: 3.6rem;
  }
}

.cmn-parallax {
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-parallax {
    height: min(500px, 41.6666666667vw);
  }
}
.cmn-parallax__cont {
  width: 100%;
  height: 100%;
  background: no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .cmn-parallax__cont {
    background-attachment: fixed;
  }
}

.reserve-btn {
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .reserve-btn {
    width: auto;
    top: 60%;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.gjs-dashed .reserve-btn {
  right: 500px;
}
.reserve-btn__item {
  width: 100%;
  background-color: #c80f19;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reserve-btn__item {
    border-radius: 5px 0 0 5px;
  }
}
.reserve-btn__item-anc {
  display: block;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .reserve-btn__item-anc {
    padding: 40px 0;
  }
}
.reserve-btn__item-anc-str {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 70px;
}
@media screen and (min-width: 768px) {
  .reserve-btn__item-anc-str {
    width: 100px;
    min-height: 200px;
    font-size: 1.8rem;
    line-height: 100px;
    writing-mode: vertical-rl;
  }
}

.page-top {
  position: relative;
}
.page-top__btn {
  display: block;
  position: relative;
  margin: 0 0 0 auto;
  width: 100vw;
  height: 55px;
  background: #000;
  border-radius: 0;
  color: white;
  font-size: 14px;
  line-height: 55px;
  opacity: 1;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-top__btn {
    width: 55px;
    right: 2%;
  }
}
.page-top__btn img {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .page-top__btn img {
    display: block;
  }
}
.page-top__btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  width: 20px;
  height: 20px;
  border: 0;
  border-top: solid 2px white;
  border-right: solid 2px white;
  transform: rotate(-45deg) translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-top__btn:before {
    content: none;
  }
}
.page-top--fixed.page-top__btn {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 30;
}

.top-fv {
  position: relative;
}
.top-fv__cont-item {
  max-height: 700px;
  height: 60vh;
}
@media screen and (min-width: 768px) {
  .top-fv__cont-item {
    max-height: 900px;
    height: 90vh;
  }
}
@media screen and (min-width: 1024px) {
  .top-fv__cont-item {
    max-height: 1080px;
    height: 90vh;
  }
}
.top-fv__cont-item.ojf::before {
  content: none;
}

.top-news {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 15px;
}
.top-news-wrap {
  max-width: 1000px;
  width: calc(100% - 30px);
  position: absolute;
  bottom: 15px;
  left: 15px;
}
@media screen and (min-width: 768px) {
  .top-news-wrap {
    width: calc(100% - 60px);
    bottom: 30px;
    left: 30px;
  }
}
@media screen and (min-width: 768px) {
  .top-news {
    padding: 20px;
  }
}
.top-news__inr {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-news__inr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.top-news__ttl {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .top-news__ttl {
    font-size: 2.1rem;
    margin-right: min(50px, 50 / var(--mq) * 1vw);
  }
}
@media screen and (min-width: 768px) {
  .top-news .webgene-blog {
    flex: 1;
    align-self: center;
    margin-right: min(20px, 20 / var(--mq) * 1vw);
  }
}
.top-news__anc {
  display: block;
}
.top-news__anc-item {
  display: flex;
  flex-wrap: wrap;
}
.top-news__anc-item-date {
  font-size: 1.4rem;
  padding-right: min(20px, 20 / var(--mq) * 1vw);
  margin-right: min(20px, 20 / var(--mq) * 1vw);
  position: relative;
}
.top-news__anc-item-date::before {
  content: "｜";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .top-news__anc-item-cate {
    margin-right: min(30px, 30 / var(--mq) * 1vw);
  }
}
.top-news__anc-item-cate-str {
  font-size: 1.4rem;
}
.top-news__anc-item-ttl {
  width: 100%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-news__anc-item-ttl {
    flex: 1;
  }
}
.top-news__btn {
  text-align: right;
}
.top-news__btn-anc {
  display: inline-block;
}
.top-news__btn-anc-str {
  border-bottom: solid 1px #333;
}

.top-catch {
  position: relative;
}
.top-catch::before {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco01.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-catch__cont {
  background: url(/system_panel/uploads/images/bg_top-kodawari01.jpg) no-repeat center center/cover;
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-catch__cont-inr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(80px, 80 / var(--mq) * 1vw);
  }
}
.top-catch__cont-ttl {
  max-width: max-content;
  width: 30%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .top-catch__cont-ttl {
    margin: 0;
  }
}
.top-catch__cont-info {
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-catch__cont-info {
    padding-top: min(60px, 60 / var(--mq) * 1vw);
  }
}
.top-catch__cont-info-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 2.78;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-catch__cont-info-txt {
    font-size: 1.8rem;
  }
}
.top-catch__cont-info-txt strong {
  font-weight: 400;
}
.top-catch__cont-info-txt strong br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .top-catch__cont-info-txt strong br {
    display: block;
  }
}
.top-catch__cont-info-btn .cmn-btn-anc {
  margin-left: 0;
}
.top-catch__img {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-catch__img-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 960px;
  width: 100%;
  margin: max(-130px, -130 / var(--mq) * 1vw) max(50% - 50vw, -120px) 0 auto;
}
@media screen and (min-width: 1024px) {
  .top-catch__img-list {
    margin-top: max(-200px, -200 / var(--mq) * 1vw);
  }
}
.top-catch__img-item--01 {
  max-width: 350px;
  width: 36.4583%;
}
.top-catch__img-item--02 {
  max-width: 580px;
  width: 60%;
  padding-bottom: min(50px, 50 / var(--mq) * 1vw);
}

.top-takeout {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-takeout::before {
  content: "";
  width: 100%;
  height: calc(100% - min(130px, 130 / var(--mq) * 1vw));
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .top-takeout::before {
    width: 74%;
    height: 100%;
    right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .top-takeout::before {
    right: 30px;
  }
}
.top-takeout::after {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco02.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
  bottom: max(-80px, -80 / var(--mq) * 1vw);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-takeout__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: min(60px, 60 / var(--mq) * 1vw);
  }
}
.top-takeout__cont-info {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .top-takeout__cont-info {
    max-width: 520px;
    width: 45%;
    padding-top: min(70px, 70 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.top-takeout__cont-info-catch {
  display: inline-block;
  background-color: #f5ece0;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 2.083;
  padding: 0 25px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-takeout__cont-info-catch {
    font-size: 2.4rem;
  }
}
.top-takeout__cont-info-ttl {
  color: #fff;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.top-takeout__cont-info-ttl--01 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-takeout__cont-info-ttl--01 {
    font-size: 3.6rem;
  }
}
.top-takeout__cont-info-ttl--02 {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-takeout__cont-info-ttl--02 {
    font-size: 4.6rem;
  }
}
.top-takeout__cont-info-txt {
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-takeout__cont-info-btn .cmn-btn-anc {
    margin-left: 0;
  }
}
.top-takeout__cont-img {
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .top-takeout__cont-img {
    flex: 1;
    width: auto;
    margin: 0;
    margin-left: max(50% - (50vw - 30px), -330px);
  }
}

.top-menu {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-menu::before {
  content: "";
  width: 100%;
  height: calc(100% - min(200px, 200 / var(--mq) * 1vw));
  background: url(/system_panel/uploads/images/bg_top-menu01.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-menu__cont {
  max-width: 1890px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.top-menu__cont-ttl {
  max-width: max-content;
  width: 30%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-ttl {
    margin-bottom: 0;
  }
}
.top-menu__cont-list {
  margin-bottom: min(140px, 140 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: -100px;
    margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  }
}
.top-menu__cont-item {
  max-width: 610px;
  width: 100%;
  margin: 0 auto 40px;
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-item {
    width: calc((100% - 30px) / 3);
    margin: 0;
  }
}
.top-menu__cont-item:last-of-type {
  margin-bottom: 0;
}
.top-menu__cont-item-inr {
  margin-top: 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-item-inr {
    margin-top: 80px;
  }
}
.top-menu__cont-item-fukidashi {
  width: 120px;
  position: absolute;
  top: -60px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-item-fukidashi {
    width: 160px;
    top: -80px;
    right: 30px;
  }
}
.top-menu__cont-item-ttl {
  width: 100%;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke: 5px black;
  text-stroke: 5px black;
  paint-order: stroke;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
@media screen and (min-width: 768px) {
  .top-menu__cont-item-ttl {
    font-size: min(3.5vw, 5.6rem);
  }
}
.top-menu__cont-item:nth-of-type(2) {
  margin-top: min(70px, 70 / var(--mq) * 1vw);
}
.top-menu__cont-item:nth-of-type(3) {
  margin-top: min(140px, 140 / var(--mq) * 1vw);
}
.top-menu__cont-txt {
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-txt {
    text-align: center;
  }
}

.top-drink {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-drink::before {
  content: "";
  width: 100%;
  height: calc(100% - min(130px, 130 / var(--mq) * 1vw));
  background: url(/system_panel/uploads/images/bg_top-drink01.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .top-drink::before {
    width: 74%;
    height: 100%;
  }
}
.top-drink::after {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: max(-100px, -100 / var(--mq) * 1vw);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-drink__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(60px, 60 / var(--mq) * 1vw);
  }
}
.top-drink__cont-info {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .top-drink__cont-info {
    max-width: 520px;
    width: 45%;
    padding-top: min(70px, 70 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.top-drink__cont-info-catch {
  display: inline-block;
  background-color: #000;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 2.083;
  padding: 0 25px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-drink__cont-info-catch {
    font-size: 2.4rem;
  }
}
.top-drink__cont-info-ttl {
  color: #000;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.top-drink__cont-info-ttl--01 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-drink__cont-info-ttl--01 {
    font-size: 3.6rem;
  }
}
.top-drink__cont-info-ttl--02 {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-drink__cont-info-ttl--02 {
    font-size: 4.6rem;
  }
}
.top-drink__cont-info-txt {
  letter-spacing: 0.05em;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-drink__cont-info-btn .cmn-btn-anc {
    margin-left: 0;
  }
}
.top-drink__cont-img {
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .top-drink__cont-img {
    flex: 1;
    width: auto;
    margin: 0;
    margin-right: max(50% - (50vw - 30px), -330px);
  }
}

.top-course {
  padding: min(160px, 160 / var(--mq) * 1vw) 0 min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.top-course::before {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco02.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.top-course__img {
  display: flex;
  flex-wrap: wrap;
}
.top-course__img-item {
  width: 50%;
}
.top-course__cont {
  padding: min(80px, 80 / var(--mq) * 1vw) 15px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  margin-top: max(-100px, -100 / var(--mq) * 1vw);
}
.top-course__cont-inr {
  position: relative;
  z-index: 2;
}
.top-course__cont-ttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-course__cont-ttl {
    font-size: 4.6rem;
  }
}
.top-course__cont-ttl strong {
  font-weight: 700;
  position: relative;
}
.top-course__cont-ttl strong::before {
  content: "";
  width: 100%;
  aspect-ratio: 188/28;
  background: url(/system_panel/uploads/images/icon_top-course01.png) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-course__cont-ttl br {
    display: none;
  }
}
.top-course__cont-txt {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-course__cont-txt {
    letter-spacing: 0.05em;
    text-align: center;
  }
}
.top-course__cont-list {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-course__cont-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
.top-course__cont-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 160px;
  width: 100%;
  aspect-ratio: 1;
  margin: 0 auto 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-course__cont-item {
    max-width: 230px;
    width: calc((100% - 80px) / 3);
    margin: 0;
  }
}
.top-course__cont-item:last-of-type {
  margin-bottom: 0;
}
.top-course__cont-item::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/icon_top-course02.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
.top-course__cont-item-str {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-course__cont-item-str {
    font-size: 2.4rem;
  }
}

.top-recruit {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.top-recruit__cont {
  padding-bottom: min(100px, 100 / var(--mq) * 1vw);
}
.top-recruit__cont::before {
  content: "";
  width: calc(50% + 50vw);
  height: calc(100% - min(150px, 150 / var(--mq) * 1vw));
  background: url(/system_panel/uploads/images/bg_top-recruit01.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
}
.top-recruit__cont-head {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-recruit__cont-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: min(100px, 100 / var(--mq) * 1vw);
  }
}
.top-recruit__cont-head-ttl-str {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-recruit__cont-head-ttl-str {
    font-size: 4.6rem;
    writing-mode: vertical-rl;
    margin-bottom: 0;
  }
}
.top-recruit__cont-head-img {
  max-width: 1280px;
  width: 95%;
  margin-right: max(50% - 50vw, -360px);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top-recruit__cont-head-img {
    flex: 1;
    width: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .top-recruit__cont-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: min(100px, 100 / var(--mq) * 1vw);
  }
}
.top-recruit__cont-info-img {
  max-width: 450px;
  width: 50%;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-recruit__cont-info-img {
    width: 37.5%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .top-recruit__cont-info-box {
    flex: 1;
  }
}
.top-recruit__cont-info-box-txt {
  letter-spacing: 0.05em;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-recruit__cont-info-box-btn .cmn-btn-anc {
    margin-left: 0;
  }
}

.subhd {
  position: relative;
}
.subhd__img {
  max-height: 600px;
  height: 80vw;
}
.subhd__img.ojf::before {
  content: none;
}
.subhd__ttl {
  width: calc(100% - 30px);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subhd__ttl-str {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .subhd__ttl-str {
    font-size: 4.6rem;
  }
}

.subpage-catch {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.subpage-catch__ttl {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .subpage-catch__ttl {
    font-size: 3rem;
  }
}
.subpage-catch__ttl--br strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .subpage-catch__ttl--br strong br {
    display: none;
  }
}
.subpage-catch__txt {
  text-align: center;
}

.menu-catch__ttl.subpage-catch__ttl {
  font-size: min(5.5vw, 2.4rem);
}
@media screen and (min-width: 1024px) {
  .menu-catch__ttl.subpage-catch__ttl {
    font-size: 3rem;
  }
}

.kodawari-catch-wrap {
  position: relative;
}
.kodawari-catch-wrap::before {
  content: "";
  width: 100%;
  height: 60%;
  background: url(/system_panel/uploads/images/bg_kodawari01.jpg) no-repeat center center/cover;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  z-index: -3;
}

.kodawari-catch {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.kodawari-catch::before {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco01.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.kodawari-catch__cont {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 768px) {
  .kodawari-catch__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: min(70px, 70 / var(--mq) * 1vw);
  }
}
.kodawari-catch__cont::before {
  content: "";
  width: calc(50% + 50vw);
  height: calc(100% - min(70px, 70 / var(--mq) * 1vw));
  background: url(/system_panel/uploads/images/bg_kodawari-catch01.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  z-index: -1;
}
.kodawari-catch__cont-ttl {
  max-width: max-content;
  width: 20%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .kodawari-catch__cont-ttl {
    width: 14%;
    margin: 0;
  }
}
.kodawari-catch__cont-info {
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .kodawari-catch__cont-info {
    flex: 1;
    padding-top: min(50px, 50 / var(--mq) * 1vw);
  }
}
.kodawari-catch__cont-info-txt {
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 2.1875;
  margin-bottom: min(80px, 80 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .kodawari-catch__cont-info-txt {
    text-align: center;
  }
}
.kodawari-catch__cont-info-img {
  text-align: center;
}

.kodawari-recommend {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.kodawari-recommend::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .kodawari-recommend::before {
    width: 72%;
  }
}
@media screen and (min-width: 1024px) {
  .kodawari-recommend__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(70px, 70 / var(--mq) * 1vw);
  }
}
.kodawari-recommend__cont-info {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .kodawari-recommend__cont-info {
    flex: 1;
    margin-bottom: 0;
  }
}
.kodawari-recommend__cont-info-subttl {
  display: inline-block;
  background-color: #C80F19;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.875;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .kodawari-recommend__cont-info-subttl {
    font-size: 2.4rem;
  }
}
.kodawari-recommend__cont-info-ttl {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .kodawari-recommend__cont-info-ttl {
    font-size: 3.6rem;
  }
}
.kodawari-recommend__cont-info-txt {
  letter-spacing: 0.05em;
  color: #fff;
}
.kodawari-recommend__cont-img {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .kodawari-recommend__cont-img {
    width: 55%;
    margin: 0;
  }
}

.kodawari-cont {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.kodawari-cont__item {
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: min(70px, 70 / var(--mq) * 1vw);
  }
}
.kodawari-cont__item:last-of-type {
  margin-bottom: 0;
}
.kodawari-cont__item-info {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__item-info {
    flex: 1;
    margin-bottom: 0;
  }
}
.kodawari-cont__item-info-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .kodawari-cont__item-info-ttl {
    font-size: min(2.5vw, 3rem);
  }
}
.kodawari-cont__item-info-btn {
  margin-top: min(40px, 40 / var(--mq) * 1vw);
}
.kodawari-cont__item-info-btn .cmn-btn-anc {
  margin-left: 0;
}
.kodawari-cont__item-img {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__item-img {
    width: 55%;
  }
}
.kodawari-cont__item-img-inr {
  position: relative;
  z-index: 1;
}
.kodawari-cont__item-img-inr::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/bg_kodawari-cont01.jpg) no-repeat center center/cover;
  position: absolute;
  top: 15px;
  left: -15px;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .kodawari-cont__item-img-inr::before {
    top: 40px;
    left: -40px;
  }
}
.kodawari-cont__item-img--type02::before {
  content: none;
}
.kodawari-cont__item-img--type02 .kodawari-cont__item-img-inr {
  padding-bottom: min(200px, 200 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 1200px) {
  .kodawari-cont__item-img--type02 .kodawari-cont__item-img-inr {
    padding-bottom: 40px;
  }
}
.kodawari-cont__item-img--type02 .kodawari-cont__item-img--02 {
  max-width: 430px;
  width: 65%;
  position: absolute;
  bottom: 0;
  right: -15px;
}
@media screen and (min-width: 1200px) {
  .kodawari-cont__item-img--type02 .kodawari-cont__item-img--02 {
    right: max((1200px - 100vw) / 2, -245px);
  }
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__item--reverse {
    flex-direction: row;
  }
}
.kodawari-cont__item--type02 {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.kodawari-cont__item--type02::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFF6E9;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__item--type02::before {
    width: calc(72% + 50vw - 50%);
  }
}
.kodawari-cont__item--deco01 {
  position: relative;
}
.kodawari-cont__item--deco01::before {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco02.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  right: calc(50% - 50vw);
}
.kodawari-cont__item--deco02 {
  position: relative;
}
.kodawari-cont__item--deco02::after {
  content: "";
  max-width: 416px;
  width: 30%;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_circle01.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: max(50% - 50vw, -220px);
  transform: translateY(-40%);
  z-index: -3;
}

.menu-recommend {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.menu-recommend::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/bg_menu-recommend01.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .menu-recommend::before {
    width: 73.4%;
  }
}
.menu-recommend::after {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco01.png) no-repeat center center/contain;
  position: absolute;
  bottom: max(-50px, -50 / var(--mq) * 1vw);
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .menu-recommend::after {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .menu-recommend__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(100px, 100 / var(--mq) * 1vw);
  }
}
.menu-recommend__item-info {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .menu-recommend__item-info {
    max-width: 450px;
    width: 45%;
    padding-top: min(50px, 50 / var(--mq) * 1vw);
    margin: 0;
  }
}
.menu-recommend__item-info-head {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.menu-recommend__item-info-head-catch {
  display: inline-block;
  background-color: #C80F19;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.875;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .menu-recommend__item-info-head-catch {
    font-size: 2.4rem;
  }
}
.menu-recommend__item-info-head-ttl {
  border-bottom: solid 1px #fff;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .menu-recommend__item-info-head-ttl {
    font-size: 3rem;
  }
}
.menu-recommend__item-info-head-price {
  font-size: 1.8rem;
  color: #fff;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .menu-recommend__item-info-head-price {
    font-size: 2.1rem;
  }
}
.menu-recommend__item-info-txt {
  color: #fff;
}
.menu-recommend__item-img {
  margin-right: max(50% - 50vw, -340px);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .menu-recommend__item-img {
    flex: 1;
  }
}
.menu-recommend--reverse.menu-recommend::before {
  left: auto;
  right: 0;
}
.menu-recommend--reverse.menu-recommend::after {
  background: url(/system_panel/uploads/images/icon_top-deco02.png) no-repeat center center/contain;
  left: auto;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .menu-recommend--reverse.menu-recommend .menu-recommend__item {
    flex-direction: row-reverse;
  }
}
.menu-recommend--reverse.menu-recommend .menu-recommend__item-img {
  margin-right: 0;
  margin-left: max(50% - 50vw, -340px);
}

.menu-recommend--type02 {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.menu-recommend--type02__txt {
  text-align: center;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .menu-recommend--type02__cont-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.menu-recommend--type02__cont-item {
  max-width: 380px;
  width: 100%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 1024px) {
  .menu-recommend--type02__cont-item {
    width: calc((100% - 60px) / 3);
    margin: 0;
  }
}
.menu-recommend--type02__cont-item:last-of-type {
  margin-bottom: 0;
}
.menu-recommend--type02__cont-item-info {
  background-color: #000;
  color: #fff;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .menu-recommend--type02__cont-item-info {
    padding: 20px 15px;
  }
}
.menu-recommend--type02__cont-item-info-inr {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
.menu-recommend--type02__cont-item-info-ttl {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .menu-recommend--type02__cont-item-info-ttl {
    font-size: 2.1rem;
  }
}
.menu-recommend--type02__cont-item-info-price {
  font-size: 1.6rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .menu-recommend--type02__cont-item-info-price {
    font-size: 1.8rem;
  }
}

.menu-box {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.menu-box__head {
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
}
.menu-box__head-tax {
  text-align: center;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.menu-box__head-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.menu-box__head-item-anc-str {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  padding: 0 10px;
  position: relative;
}
.menu-box__head-item-anc-str::before {
  content: "|";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .menu-box__head-item-anc-str {
    font-size: 1.8rem;
    padding: 0 15px;
  }
}
.menu-box__head-item:last-of-type .menu-box__head-item-anc-str::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.menu-box__item {
  padding: min(70px, 70 / var(--mq) * 1vw) 0;
}
.menu-box__item-ttl {
  text-align: center;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.menu-box__item-ttl-str {
  display: inline-block;
  min-width: 120px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc01);
  padding: 0 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .menu-box__item-ttl-str {
    min-width: 290px;
    font-size: 3rem;
  }
}
.menu-box__item-ttl-str strong {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .menu-box__item-ttl-str strong br {
    display: none;
  }
}
.menu-box__item-ttl-str::before, .menu-box__item-ttl-str::after {
  content: "";
  display: block;
  max-width: 150px;
  width: calc(50vw - 15px - 50%);
  height: 1px;
  background-color: var(--mc01);
  position: absolute;
  top: 50%;
}
.menu-box__item-ttl-str::before {
  left: 0;
  transform: translate(-100%, -50%);
}
.menu-box__item-ttl-str::after {
  right: 0;
  transform: translate(100%, -50%);
}
.menu-box__item-ttl-txt {
  text-align: center;
  margin-top: 20px;
}
.menu-box__item-cont {
  margin-bottom: 40px;
}
.menu-box__item-cont:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .menu-box__item-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 40px;
  }
}
.menu-box__item-cont-subttl {
  max-width: 580px;
  width: 100%;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .menu-box__item-cont-subttl {
    max-width: none;
    margin: 0;
  }
}
.menu-box__item-cont-table {
  max-width: 580px;
  width: 100%;
  margin: 0 auto 40px;
}
@media screen and (min-width: 1024px) {
  .menu-box__item-cont-table {
    width: calc((100% - 40px) / 2);
    margin: 0;
  }
}
.menu-box__item-cont-table:last-of-type {
  margin-bottom: 0;
}
.menu-box__item-cont-table-subttl {
  margin-bottom: 20px;
}
.menu-box__item-cont-table-tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: solid 1px #ccc;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .menu-box__item-cont-table-tr {
    padding: 15px 0;
  }
}
.menu-box__item-cont-table-tr:last-of-type {
  border-bottom: solid 1px #ccc;
}
.menu-box__item-cont-table-th {
  padding-right: 10px;
}
.menu-box__item-cont-table-td {
  text-align: right;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .menu-box__item-cont-table--type02.menu-box__item-cont-table {
    max-width: 100%;
    width: 100%;
  }
}
.menu-box__item-annotation {
  border: solid 1px var(--mc01);
  text-align: center;
  margin-top: 40px;
}
.menu-box__item-annotation-txt {
  font-size: 1.6rem;
  color: var(--mc01);
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .menu-box__item-annotation-txt {
    font-size: 1.8rem;
  }
}
.menu-box__item-annotation-txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .menu-box__item-annotation-txt strong br {
    display: none;
  }
}
.menu-box__item:nth-of-type(2n + 1) {
  background-color: #F5ECE0;
}

.drink-recommend {
  background: url(/system_panel/uploads/images/bg_drink-recommend01.jpg) no-repeat center center/cover;
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.drink-recommend::before {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco02.png) no-repeat center center/contain;
  position: absolute;
  bottom: max(-50px, -50 / var(--mq) * 1vw);
  right: 0;
}
@media screen and (min-width: 1024px) {
  .drink-recommend::before {
    width: 50%;
  }
}
.drink-recommend__item {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .drink-recommend__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
  }
}
.drink-recommend__item-info {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .drink-recommend__item-info {
    max-width: 450px;
    width: 40%;
    padding-top: min(50px, 50 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.drink-recommend__item-info-head {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.drink-recommend__item-info-head-catch {
  display: inline-block;
  background-color: #C80F19;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.875;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .drink-recommend__item-info-head-catch {
    font-size: 2.4rem;
  }
}
.drink-recommend__item-info-head-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .drink-recommend__item-info-head-ttl {
    font-size: 3rem;
  }
}
.drink-recommend__item-info-txt {
  color: #fff;
}
.drink-recommend__item-img {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .drink-recommend__item-img {
    max-width: 650px;
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .drink-recommend__item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}

.course-catch__txt.subpage-catch__txt {
  text-align: left;
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .course-catch__txt.subpage-catch__txt {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .course-catch__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
.course-catch__item {
  max-width: 280px;
  width: 100%;
  margin: 0 auto 30px;
}
.course-catch__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .course-catch__item {
    width: calc((100% - 30px) / 3);
    margin: 0;
  }
}
.course-catch__item-img {
  margin-bottom: 2px;
}
.course-catch__item-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .course-catch__item-txt {
    font-size: 1.8rem;
  }
}
.course-catch__item-txt::before {
  content: "";
  max-width: 161px;
  width: 100%;
  aspect-ratio: 161/24;
  background: url(/system_panel/uploads/images/icon_course01.png) no-repeat center center/contain;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.course-menu__item {
  padding: min(60px, 60 / var(--mq) * 1vw) 0;
}
.course-menu__item-cont-top {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .course-menu__item-cont-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .course-menu__item-cont-top-info {
    flex: 1;
    padding-top: min(70px, 70 / var(--mq) * 1vw);
  }
}
.course-menu__item-cont-top-info-head {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.course-menu__item-cont-top-info-head-catch {
  display: inline-block;
  background-color: #C80F19;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.875;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .course-menu__item-cont-top-info-head-catch {
    font-size: 2.4rem;
  }
}
.course-menu__item-cont-top-info-head-ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  margin-bottom: 15px;
  border-bottom: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .course-menu__item-cont-top-info-head-ttl {
    font-size: 2.4rem;
  }
}
.course-menu__item-cont-top-info-head-price {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.course-menu__item-cont-top-info-head-price-str {
  letter-spacing: 0.05em;
  line-height: 1;
}
.course-menu__item-cont-top-info-head-price-str--01 {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .course-menu__item-cont-top-info-head-price-str--01 {
    font-size: 2.1rem;
  }
}
.course-menu__item-cont-top-info-head-price-str--02 {
  font-size: 2.2rem;
  color: var(--mc01);
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .course-menu__item-cont-top-info-head-price-str--02 {
    font-size: 3rem;
  }
}
.course-menu__item-cont-top-img {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .course-menu__item-cont-top-img {
    width: 50%;
    margin: 0;
  }
}
.course-menu__item-cont-desc {
  border: solid 1px #000;
}
@media screen and (min-width: 768px) {
  .course-menu__item-cont-desc {
    display: flex;
    flex-wrap: wrap;
  }
}
.course-menu__item-cont-desc-ttl {
  background-color: #000;
  text-align: center;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .course-menu__item-cont-desc-ttl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 210px;
    width: 25%;
    padding: 0;
  }
}
.course-menu__item-cont-desc-ttl-str {
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .course-menu__item-cont-desc-ttl-str {
    font-size: 2.1rem;
  }
}
.course-menu__item-cont-desc-txt {
  padding: min(40px, 40 / var(--mq) * 1vw) 15px;
}
@media screen and (min-width: 768px) {
  .course-menu__item-cont-desc-txt {
    flex: 1;
  }
}
.course-menu__item-cont-desc-txt-str {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}
.course-menu__item:nth-of-type(2n + 1) {
  background: url(/system_panel/uploads/images/bg_course01.jpg) no-repeat center center/cover;
}

.takeout-catch.subpage-catch {
  padding-bottom: 0;
}
.takeout-catch__txt {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
.takeout-catch__txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .takeout-catch__txt strong br {
    display: none;
  }
}
.takeout-catch__img {
  display: flex;
  flex-wrap: wrap;
}
.takeout-catch__img-item {
  width: 50%;
}

.takeout-order {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.takeout-order__txt {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .takeout-order__txt {
    font-size: 2.1rem;
  }
}
.takeout-order__annotation {
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.takeout-order__info {
  max-width: 650px;
  width: 100%;
  border: solid 1px #666;
  text-align: center;
  padding: 30px 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .takeout-order__info {
    padding: 40px 15px;
  }
}
.takeout-order__info-num {
  display: inline-block;
  font-size: 3rem;
  color: var(--mc01);
  line-height: 1;
  padding-left: 40px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .takeout-order__info-num {
    font-size: 3.6rem;
  }
}
.takeout-order__info-num::before {
  content: "";
  width: 26px;
  height: 28px;
  background: url(/system_panel/uploads/images/icon_phone02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.takeout-order__info-desc-item {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .takeout-order__info-desc-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.takeout-order__info-desc-item-ttl {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .takeout-order__info-desc-item-ttl {
    min-width: 100px;
  }
}
.takeout-order__info-desc-item-txt {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .takeout-order__info-desc-item-txt {
    flex: 1;
  }
}

.takeout-recommend__item-info-head-ttl.menu-recommend__item-info-head-ttl {
  border-bottom: none;
}

.takeout-recommend--type02 {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .takeout-recommend--type02__cont-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.takeout-recommend--type02__cont-item {
  max-width: 580px;
  width: 100%;
  margin: 0 auto 30px;
}
.takeout-recommend--type02__cont-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .takeout-recommend--type02__cont-item {
    width: calc((100% - 30px) / 2);
    margin: 0;
  }
}
.takeout-recommend--type02__cont-item-info {
  background-color: #000;
  color: #fff;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .takeout-recommend--type02__cont-item-info {
    padding: 40px 15px;
  }
}
.takeout-recommend--type02__cont-item-info-ttl {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .takeout-recommend--type02__cont-item-info-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .takeout-recommend--type02__cont-item-info-desc {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .takeout-recommend--type02__cont-item-info-desc {
    font-size: min(1.3vw, 1.6rem);
  }
}
.takeout-recommend--type02__cont-item-info-desc strong {
  font-weight: 400;
}
.takeout-recommend--type02__cont-item-info-desc strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .takeout-recommend--type02__cont-item-info-desc strong br {
    display: block;
  }
}

.recruit-catch__ttl.subpage-catch__ttl {
  font-size: min(4vw, 2.4rem);
}

.recruit-ideal {
  background: url(/system_panel/uploads/images/bg_recruit-ideal.jpg) no-repeat center center/cover;
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.recruit-ideal__ttl {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .recruit-ideal__cont-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(60px, 60 / var(--mq) * 1vw);
  }
}
.recruit-ideal__cont-item {
  max-width: 360px;
  width: 100%;
  margin: 0 auto 40px;
}
@media screen and (min-width: 1024px) {
  .recruit-ideal__cont-item {
    width: calc((100% - min(120px, 120 / var(--mq) * 1vw)) / 3);
    margin: 0;
  }
}
.recruit-ideal__cont-item-img {
  margin-bottom: 30px;
}
.recruit-ideal__cont-item-info-ttl {
  border-bottom: solid 1px #CDAF27;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 5px;
  padding-left: 20px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .recruit-ideal__cont-item-info-ttl {
    font-size: 2.1rem;
  }
}
.recruit-ideal__cont-item-info-ttl::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #CDAF27;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit-ideal__cont-item-info-txt {
  color: #fff;
  letter-spacing: 0.05em;
}

.recruit-job {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.recruit-job::before {
  content: "";
  width: 75%;
  height: calc(100% - min(160px, 160 / var(--mq) * 1vw));
  background-color: #F5ECE0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.recruit-job::after {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco01.png) no-repeat center center/contain;
  position: absolute;
  bottom: min(60px, 60 / var(--mq) * 1vw);
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .recruit-job::after {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .recruit-job__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(100px, 100 / var(--mq) * 1vw);
  }
}
.recruit-job__cont-info {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .recruit-job__cont-info {
    flex: 1;
    padding-top: min(50px, 50 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.recruit-job__cont-info-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .recruit-job__cont-info-ttl {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .recruit-job__cont-img {
    width: 50%;
  }
}
.recruit-job__cont-img-inr {
  padding-bottom: min(145px, 145 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .recruit-job__cont-img-inr {
    margin-right: -15px;
  }
}
@media screen and (min-width: 1230px) {
  .recruit-job__cont-img-inr {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.recruit-job__cont-img-item--01 {
  max-width: 650px;
  width: 65%;
}
.recruit-job__cont-img-item--02 {
  max-width: 400px;
  width: 45%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.recruit-requirements {
  background: url(/system_panel/uploads/images/bg_recruit-requirements.jpg) no-repeat center center/cover;
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.recruit-requirements__cont {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  padding: min(50px, 50 / var(--mq) * 1vw) 15px;
  margin: 0 auto;
}
.recruit-requirements__cont-table {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.recruit-contact {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.recruit-contact__txt {
  font-size: min(1.8rem, 4vw);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .recruit-contact__txt {
    font-size: 2.1rem;
  }
}
.recruit-contact__info {
  max-width: 650px;
  width: 100%;
  border: solid 1px #666;
  text-align: center;
  padding: 30px 15px;
  margin: 0 auto min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .recruit-contact__info {
    padding: 40px 15px;
  }
}
.recruit-contact__info-num {
  display: inline-block;
  font-size: 3rem;
  color: var(--mc01);
  line-height: 1;
  padding-left: 40px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .recruit-contact__info-num {
    font-size: 3.6rem;
  }
}
.recruit-contact__info-num::before {
  content: "";
  width: 26px;
  height: 28px;
  background: url(/system_panel/uploads/images/icon_phone02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.recruit-contact__info-desc-item {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recruit-contact__info-desc-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.recruit-contact__info-desc-item-ttl {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .recruit-contact__info-desc-item-ttl {
    min-width: 100px;
  }
}
.recruit-contact__info-desc-item-txt {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .recruit-contact__info-desc-item-txt {
    flex: 1;
  }
}

.shop-overview {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.shop-overview::before {
  content: "";
  max-width: 960px;
  width: 80%;
  aspect-ratio: 960/450;
  background: url(/system_panel/uploads/images/icon_top-deco02.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
  bottom: max(-80px, -80 / var(--mq) * 1vw);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: min(80px, 80 / var(--mq) * 1vw);
  }
}
.shop-overview__cont-img {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-img {
    max-width: 600px;
    flex: 1;
    margin-bottom: 0;
  }
}
.shop-overview__cont-info {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-info {
    width: 520px;
    margin: 0;
  }
}
.shop-overview__cont-info-table .cmn-table--type02__th {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .shop-overview__cont-info-table .cmn-table--type02__th {
    width: 150px;
  }
}

.shop-seat {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.shop-seat__cont-item {
  margin-bottom: 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .shop-seat__cont-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.shop-seat__cont-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .shop-seat__cont-item {
    margin-bottom: min(100px, 100 / var(--mq) * 1vw);
  }
}
.shop-seat__cont-item--deco01::before {
  content: "";
  max-width: 296px;
  width: 30%;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_shop-seat02.png) no-repeat center center/cover;
  position: absolute;
  top: -15%;
  left: max(50% - 50vw, -200px);
  z-index: -1;
}
.shop-seat__cont-item--deco02::before {
  content: "";
  max-width: 462px;
  width: 35%;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_shop-seat03.png) no-repeat center center/cover;
  position: absolute;
  bottom: -15%;
  right: max(50% - 50vw, -270px);
  z-index: -1;
}
.shop-seat__cont-item-img {
  max-width: 700px;
  width: 90%;
}
@media screen and (min-width: 1024px) {
  .shop-seat__cont-item-img {
    width: 60%;
  }
}
.shop-seat__cont-item-img-inr--deco01 {
  position: relative;
}
.shop-seat__cont-item-img-inr--deco01::before {
  content: "";
  max-width: 510px;
  width: 73%;
  aspect-ratio: 510/335;
  background: url(/system_panel/uploads/images/icon_shop-seat01.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: -15px;
  left: -15px;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .shop-seat__cont-item-img-inr--deco01::before {
    bottom: -40px;
    left: -40px;
  }
}
.shop-seat__cont-item-info {
  max-width: 600px;
  width: 95%;
  margin-top: -40px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .shop-seat__cont-item-info {
    flex: 1;
    width: auto;
    margin: min(50px, 50 / var(--mq) * 1vw) 0 0 calc(min(100px, 100 / var(--mq) * 1vw) * -1);
  }
}
.shop-seat__cont-item-info-inr {
  background-color: #F5ECE0;
  padding: min(70px, 70 / var(--mq) * 1vw) 15px;
}
@media screen and (min-width: 768px) {
  .shop-seat__cont-item-info-inr {
    padding: min(70px, 70 / var(--mq) * 1vw) min(50px, 50 / var(--mq) * 1vw);
  }
}
.shop-seat__cont-item-info-ttl {
  font-size: 2.1rem;
  font-weight: 700;
  padding-left: 20px;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .shop-seat__cont-item-info-ttl {
    font-size: 2.4rem;
  }
}
.shop-seat__cont-item-info-ttl::before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: var(--mc01);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .shop-seat__cont-item:nth-of-type(2n + 1) {
    flex-direction: row-reverse;
  }
}
.shop-seat__cont-item:nth-of-type(2n + 1) .shop-seat__cont-item-img {
  margin-left: auto;
}
.shop-seat__cont-item:nth-of-type(2n + 1) .shop-seat__cont-item-img-inr--deco01::before {
  right: -15px;
  left: auto;
}
@media screen and (min-width: 1280px) {
  .shop-seat__cont-item:nth-of-type(2n + 1) .shop-seat__cont-item-img-inr--deco01::before {
    right: -40px;
  }
}
.shop-seat__cont-item:nth-of-type(2n + 1) .shop-seat__cont-item-info {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .shop-seat__cont-item:nth-of-type(2n + 1) .shop-seat__cont-item-info {
    margin-right: calc(min(50px, 50 / var(--mq) * 1vw) * -1);
  }
}

.contact-tel {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}
.contact-tel__ttl strong {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-tel__ttl strong br {
    display: none;
  }
}
.contact-tel__info {
  max-width: 650px;
  width: 100%;
  border: solid 1px var(--mc01);
  text-align: center;
  padding: 30px 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-tel__info {
    padding: 40px 15px;
  }
}
.contact-tel__info-num {
  display: inline-block;
  font-size: 3rem;
  color: var(--mc01);
  line-height: 1;
  padding-left: 40px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-tel__info-num {
    font-size: 3.6rem;
  }
}
.contact-tel__info-num::before {
  content: "";
  width: 26px;
  height: 28px;
  background: url(/system_panel/uploads/images/icon_phone02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact-tel__info-desc-item {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-tel__info-desc-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.contact-tel__info-desc-item-ttl {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact-tel__info-desc-item-ttl {
    min-width: 100px;
  }
}
.contact-tel__info-desc-item-txt {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact-tel__info-desc-item-txt {
    flex: 1;
  }
}

.contact-reserve {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.contact-reserve__btn .cmn-btn-anc {
  max-width: 500px;
}
.contact-reserve__btn .cmn-btn-anc-str {
  font-size: 1.8rem;
  line-height: 4.762;
}
@media screen and (min-width: 768px) {
  .contact-reserve__btn .cmn-btn-anc-str {
    font-size: 2.1rem;
  }
}

.contact-form {
  background: url(/system_panel/uploads/images/bg_contact-form.jpg) no-repeat center center/cover;
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.contact-form__ttl {
  font-size: min(7vw, 3rem);
}
@media screen and (min-width: 768px) {
  .contact-form__ttl {
    font-size: 3.6rem;
  }
}
.contact-form__desc {
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.contact-form__desc-txt {
  margin-bottom: 10px;
}
.contact-form__desc-txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-form__desc-txt strong br {
    display: none;
  }
}
.contact-form__desc-annotation {
  color: var(--mc01);
}
.contact-form__desc-annotation strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-form__desc-annotation strong br {
    display: none;
  }
}

.contact-privacy {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}

.page-formcomplete {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.page-formcomplete__txt {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-formcomplete__txt {
    text-align: center;
  }
}