@charset "UTF-8";
:root {
  --base_font: "Shippori Mincho", serif;
  --sub_font: "Shippori Mincho", serif;
  --mc01: #5a6d18;
  --mc02: #556b5b;
  --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;
  }
}
:root {
  --hd_mt: 90px;
}
@media screen and (min-width: 768px) {
  :root {
    --hd_mt: 121px;
  }
}

/*リセット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;
}

strong {
  font-weight: 700;
}

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-content__box {
  position: relative;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.cmn-content__box--size01 {
  max-width: 1230px;
}
.cmn-content__box--size02 {
  max-width: 1280px;
}
@media screen and (min-width: 768px) {
  .cmn-content__box--size02 {
    padding: 0 4rem;
  }
}
.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:none*/
}
.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__tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: solid 1px #666;
  padding: 10px 0;
}
.cmn-table__tr:last-of-type {
  border-bottom: solid 1px #666;
}
@media screen and (min-width: 768px) {
  .cmn-table__tr {
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    flex: 1;
    padding: 0 20px 0 20px;
  }
}
.cmn-table__th p {
  letter-spacing: 0.05em;
}
.cmn-table__td {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    padding: 0 20px 0 0;
  }
}
.cmn-table__td p {
  letter-spacing: 0.05em;
}
.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;
}

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

.subhd {
  position: relative;
}
.subhd__img {
  width: 100%;
  height: min(60svh, 620px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .subhd__img {
    height: 620px;
  }
}
.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%);
}
@media screen and (min-width: 768px) {
  .subhd__ttl {
    top: 60%;
  }
}
.subhd__ttl.--type02 {
  top: 40%;
}
@media screen and (min-width: 768px) {
  .subhd__ttl.--type02 {
    top: 60%;
  }
}
.subhd__ttl-str {
  font-family: var(--sub_font);
  font-size: 6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-str {
    font-size: 10rem;
  }
}
.subhd__ttl-jp {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-jp {
    font-size: 2.8rem;
  }
}

.cmn-box01 {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
}

.cmn-box02 {
  padding-block: min(130px, 130 / var(--mq) * 1vw);
}

.catch-cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: min(100px, 100 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .catch-cont {
    flex-direction: row;
    padding-right: 30px;
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (min-width: 1024px) {
  .catch-cont__info {
    width: 500px;
    padding-top: clamp(7rem, -21rem + 27.34vw, 14rem);
  }
}
.catch-cont__info-ttl--jp {
  margin-top: 30px;
}
.catch-cont__info-txt {
  letter-spacing: 0.05em;
  margin-top: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .catch-cont__media {
    flex: 1;
  }
}

.cmn-2column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: min(80px, 80 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .cmn-2column {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-right: max(50% - 50vw, -300px);
  }
}
.cmn-2column + .cmn-2column {
  margin-top: min(120px, 120 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .cmn-2column__media {
    flex: 1;
  }
}
.cmn-2column__media-ph {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__media-ph {
    text-align: right;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-2column__info {
    max-width: 550px;
    width: 45%;
    padding-top: clamp(5rem, -3rem + 7.81vw, 7rem);
  }
}
.cmn-2column__info-ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__info-ttl {
    margin-bottom: 40px;
  }
}
.cmn-2column__info-ttl-str.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-2column__info-ttl-str.--br strong br {
    display: none;
  }
}
.cmn-2column__info-txt {
  letter-spacing: 0.05em;
}
.cmn-2column__wrap {
  position: relative;
}
.cmn-2column__wrap.--mb70 {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
.cmn-2column__icon-item01 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  bottom: 105%;
  left: max(50% - 50vw, -200px);
  z-index: -1;
}
.cmn-2column__icon-item02 {
  max-width: max-content;
  width: 80vw;
  position: absolute;
  bottom: -60px;
  left: max(50% - 50vw, -200px);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__icon-item02 {
    width: 30vw;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-2column__icon-item02 {
    width: 50vw;
  }
}
.cmn-2column__icon-item03 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  bottom: 105%;
  right: max(50% - 50vw, -200px);
  z-index: -1;
}
.cmn-2column__icon-item04 {
  max-width: max-content;
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .cmn-2column.--reverse {
    flex-direction: row;
    margin-right: 0;
    margin-left: max(50% - 50vw, -300px);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-2column.--reverse .cmn-2column__media-ph {
    text-align: left;
  }
}

.cmn-point__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(50px, 50 / var(--mq) * 1vw);
}
.cmn-point__item {
  max-width: 260px;
  width: calc((100% - min(50px, 50 / var(--mq) * 1vw)) / 2);
}
@media screen and (min-width: 1024px) {
  .cmn-point__item {
    width: calc((100% - min(150px, 150 / var(--mq) * 1vw)) / 4);
  }
}
.cmn-point__item-img {
  text-align: center;
}
.cmn-point__item-txt {
  letter-spacing: 0.05em;
  margin-top: min(40px, 40 / var(--mq) * 1vw);
}
.cmn-point.--mb100 {
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
}

.txt-tax {
  letter-spacing: 0.05em;
  text-align: center;
}
.txt-tax.--mb60 {
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}

.txt-time {
  letter-spacing: 0.05em;
  text-align: center;
}

.order-cont + .order-cont {
  margin-top: min(100px, 100 / var(--mq) * 1vw);
}

.order-txt {
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.order-txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .order-txt strong br {
    display: none;
  }
}

.order-btn-anc {
  display: block;
  max-width: 350px;
  width: 100%;
  background: url(/system_panel/uploads/images/bg-order-btn.jpg) no-repeat center center/cover;
  margin: 0 auto;
}
.order-btn-anc-str {
  letter-spacing: 0.05em;
  line-height: 5;
  text-align: center;
}

.dn {
  display: none;
}

.gjs-dashed .dn {
  display: block;
}

.page-top {
  position: relative;
}
.page-top__btn {
  display: block;
  position: relative;
  margin: 0 0 0 auto;
  width: 100vw;
  height: 55px;
  background-color: #332318;
  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;
    background-color: transparent;
    border-bottom: none;
    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;
}

.c-title--01 {
  text-align: center;
}
.c-title--01-str {
  font-size: 3rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title--01-str {
    font-size: 4rem;
  }
}
.c-title--01-str.--underline {
  padding-bottom: min(30px, 30 / var(--mq) * 1vw);
  position: relative;
}
.c-title--01-str.--underline::before {
  content: "";
  width: 100px;
  height: 1px;
  border-bottom: dashed 1px var(--mc01);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-title--01-str.--underline::before {
    width: 150px;
  }
}
.c-title--01.--left {
  text-align: left;
}
.c-title--01.--left .c-title--01-str {
  text-align: left;
}
.c-title--01.--left .c-title--01-str.--underline::before {
  left: 0;
  transform: translateX(0);
}
.c-title--01.--mb100 {
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
}
.c-title--02 {
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-title--02 {
    font-size: 2.4rem;
  }
}
.c-title--02.--underline {
  border-bottom: dashed 1px var(--mc01);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.c-title--03 {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-title--03 {
    font-size: 2.1rem;
  }
}

.top-news {
  background: url(/system_panel/uploads/images/bg_tel-order.jpg) no-repeat center center/cover;
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-news__cont-inr {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-news__cont-inr {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 150px 1fr;
    grid-template-areas: "top-news__ttl top-news__list" "top-news__btn top-news__list";
    gap: 25px min(70px, 70 / var(--mq) * 1vw);
  }
}
.top-news__cont-ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl {
    grid-area: top-news__ttl;
    margin-bottom: 0;
  }
}
.top-news__cont-ttl-str.c-title--01-str {
  font-size: 2.6rem;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl-str.c-title--01-str {
    font-size: 3rem;
  }
}
.top-news__cont-list {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-list {
    grid-area: top-news__list;
    margin-bottom: 0;
  }
}
.top-news__cont-list .webgene-item {
  border-top: solid 1px #ccc;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .top-news__cont-list .webgene-item {
    padding: 15px;
  }
}
.top-news__cont-list .webgene-item:last-of-type {
  border-bottom: solid 1px #ccc;
}
.top-news__cont-list-item {
  display: flex;
  flex-wrap: wrap;
}
.top-news__cont-list-item-date {
  color: #666;
}
.top-news__cont-list-item-cate {
  margin-left: 20px;
}
.top-news__cont-list-item-cate-str {
  min-width: 100px;
  background-color: #dcd159;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: center;
  margin-top: 5px;
  position: relative;
}
.top-news__cont-list-item-ttl {
  width: 100%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .top-news__cont-list-item-ttl {
    flex: 1;
    width: auto;
    margin-left: 40px;
  }
}
@media screen and (min-width: 768px) {
  .top-news__cont-btn {
    grid-area: top-news__btn;
  }
}
.top-news__cont-btn-anc {
  display: block;
  max-width: 120px;
  width: 100%;
  border-bottom: solid 1px #000;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-news__cont-btn-anc {
    margin: 0;
  }
}
.top-news__cont-btn-anc-str {
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  position: relative;
}
.top-news__cont-btn-anc-str::before {
  content: "»";
  position: absolute;
  top: 0;
  right: 15px;
  transition: all 0.3s;
}
.top-news__cont-btn-anc:hover .top-news__cont-btn-anc-str::before {
  right: 0;
}
.top-news__cont-img {
  display: none;
  max-width: 150px;
  width: 30%;
  position: absolute;
  bottom: max(-100px, -100 / var(--mq) * 1vw);
  left: max(50% - 50vw, -100px);
}
@media screen and (min-width: 1024px) {
  .top-news__cont-img {
    display: block;
  }
}
@media screen and (min-width: 1230px) {
  .top-news__cont-img {
    max-width: max-content;
  }
}
.top-news__bg {
  max-width: max-content;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -5;
}
.top-news__bg img {
  height: 100%;
}

.about-catch {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
  position: relative;
}
.about-catch__ttl {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .about-catch__ttl-str.c-title--01-str {
    font-size: min(4.2vw, 4rem);
  }
}
@media screen and (min-width: 768px) {
  .about-catch__ttl-str.--br br {
    display: none;
  }
}
.about-catch__txt {
  font-size: min(3.5vw, 1.6rem);
  line-height: 2.78;
  text-align: center;
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .about-catch__txt {
    font-size: 1.8rem;
  }
}
.about-catch__img {
  text-align: center;
}
.about-catch__icon-item {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.about-catch__icon-item--01 {
  top: 10px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .about-catch__icon-item--01 {
    top: 200px;
  }
}
.about-catch__icon-item--02 {
  top: 520px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .about-catch__icon-item--02 {
    top: 250px;
  }
}

.about-overview {
  padding-block: min(130px, 130 / var(--mq) * 1vw);
  position: relative;
}
.about-overview__ttl {
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .about-overview__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row-reverse;
    gap: min(80px, 80 / var(--mq) * 1vw);
  }
}
.about-overview__cont-img {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .about-overview__cont-img {
    max-width: 600px;
    flex: 1;
    margin-bottom: 0;
  }
}
.about-overview__cont-info {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .about-overview__cont-info {
    max-width: 800px;
    width: 100%;
    margin: 0;
  }
}
.about-overview__cont-info-table .cmn-table--type02__th {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .about-overview__cont-info-table .cmn-table--type02__th {
    width: 200px;
    padding-left: 40px;
  }
}
.about-overview__icon-item {
  max-width: max-content;
  width: 45%;
  position: absolute;
  z-index: -1;
}
.about-overview__icon-item--01 {
  bottom: 0;
  left: max(50% - 50vw, -170px);
  transform: translateY(95%);
}

.access-cont {
  padding-block: min(130px, 130 / var(--mq) * 1vw);
  position: relative;
}
.access-cont__item {
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
}
.access-cont__item:last-of-type {
  margin-bottom: 0;
}
.access-cont__item-ttl {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.access-cont__item-ttl-str {
  font-size: 2rem;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .access-cont__item-ttl-str {
    font-size: 2.4rem;
  }
}
.access-cont__item-ttl-str::after {
  content: "";
  display: block;
  width: 150px;
  border-bottom: dashed 1px var(--mc01);
  padding-top: 10px;
}
.access-cont__item-graph {
  overflow-x: scroll;
  position: relative;
}
@media screen and (min-width: 768px) {
  .access-cont__item-graph {
    overflow-x: auto;
  }
}
.access-cont__item-graph::before {
  content: "横スクロールでご確認いただけます";
  display: block;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .access-cont__item-graph::before {
    content: none;
  }
}
.access-cont__item-graph-inr {
  width: 600px;
}
@media screen and (min-width: 768px) {
  .access-cont__item-graph-inr {
    width: auto;
  }
}
.access-cont__item-txt {
  letter-spacing: 0.05em;
  margin-top: min(60px, 60 / var(--mq) * 1vw);
}
.access-cont__icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.access-cont__icon-item--01 {
  width: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.access-cont__icon-item--02 {
  width: 40%;
  bottom: max(-90px, -90 / var(--mq) * 1vw);
  right: max(50% - 50vw, -250px);
}

.access-box {
  position: relative;
}
.access-box__map {
  max-width: 800px;
  width: 100%;
  height: 250px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .access-box__map {
    height: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .access-box__map {
    height: 500px;
  }
}
.access-box__map iframe {
  width: 100%;
  height: 100%;
}

.menu-catch {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
  position: relative;
}
.menu-catch__icon-item01 {
  max-width: max-content;
  width: 60%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.menu-catch__icon-item02 {
  max-width: max-content;
  width: 30%;
  position: absolute;
  top: 100%;
  right: 10px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .menu-catch__icon-item02 {
    top: 95%;
    right: 50%;
  }
}

.menu-btn {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
}
.menu-btn__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .menu-btn__list {
    gap: clamp(4rem, -12rem + 15.63vw, 8rem);
    max-width: none;
    margin: 0;
  }
}
.menu-btn__item {
  max-width: 240px;
  width: calc((100% - 20px) / 2);
  border: solid 1px #000;
}
@media screen and (min-width: 1024px) {
  .menu-btn__item {
    width: calc((100% - clamp(4rem, -12rem + 15.63vw, 8rem) * 3) / 4);
  }
}
.menu-btn__item-anc-txt {
  letter-spacing: 0.05em;
  line-height: 4.375;
  text-align: center;
  position: relative;
}
.menu-btn__item-anc-txt::before {
  content: "";
  width: 20px;
  aspect-ratio: 30/12;
  background: url(/system_panel/uploads/images/icon-arw.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .menu-btn__item-anc-txt::before {
    width: 30px;
    right: 20px;
  }
}

.menu-food {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
}
.menu-food__ttl {
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
.menu-food-rec {
  padding-top: min(80px, 80 / var(--mq) * 1vw);
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.menu-food-rec.--pt0 {
  padding-top: 0;
}
.menu-food-rec.--mb0 {
  margin-bottom: 0;
}
.menu-food-rec.--mb60 {
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
.menu-food-rec__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: min(80px, 80 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .menu-food-rec__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .menu-food-rec__item.--reverse {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .menu-food-rec__item-media {
    max-width: 600px;
    flex: 1;
  }
}
.menu-food-rec__item-info {
  max-width: 600px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .menu-food-rec__item-info {
    width: 500px;
    padding-top: 70px;
  }
}
.menu-food-rec__item-info-ttl {
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
.menu-food-rec__item-info-ttl-price {
  text-align: right;
}
.menu-food-rec__icon-item01 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 0;
  left: max(50% - 50vw, -200px);
  z-index: -1;
}
.menu-food-rec__icon-item01.--small {
  max-width: 360px;
}
.menu-food-rec__icon-item02 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 100%;
  right: max(50% - 50vw, -200px);
  z-index: -1;
}
.menu-food-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: min(60px, 60 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 768px) {
  .menu-food-list {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.menu-food-list__media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .menu-food-list__media {
    max-width: 480px;
    flex: 1;
    flex-direction: column;
    justify-content: stretch;
  }
}
.menu-food-list__media-ph {
  max-width: 480px;
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px) {
  .menu-food-list__media-ph {
    width: 100%;
  }
}
.menu-food-list__table {
  max-width: 500px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .menu-food-list__table {
    width: 60%;
  }
}
.menu-food-list__anchor {
  margin-top: clamp(2.5rem, 1.5rem + 2.76vw, 5rem);
  margin-inline: auto;
  width: 100%;
  max-width: 354px;
  height: 60px;
}
@media screen and (min-width: 1024px) {
  .menu-food-list__anchor {
    height: 84px;
  }
}
.menu-food-list__icon {
  max-width: max-content;
  width: 85%;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
}

.menu-somen {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
}
.menu-somen__icon {
  max-width: 280px;
  width: 40%;
  position: absolute;
  bottom: 105%;
  right: max(50% - 50vw, -150px);
  z-index: -1;
}

.menu-nijimasu {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
}
.menu-nijimasu__cont {
  padding-block: min(50px, 50 / var(--mq) * 1vw);
  background: url(/system_panel/uploads/images/bg_tel-order) no-repeat center center/cover;
}
.menu-nijimasu__cont-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .menu-nijimasu__cont-list {
    gap: 40px;
  }
}
.menu-nijimasu__cont-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  max-width: 580px;
  width: 100%;
  background-color: #fff;
  padding: 15px 10px;
}
@media screen and (min-width: 768px) {
  .menu-nijimasu__cont-item {
    flex-direction: row;
    padding: 25px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .menu-nijimasu__cont-item {
    width: calc((100% - 40px) / 2);
  }
}
.menu-nijimasu__cont-item-ttl-inr {
  display: inline-block;
  border: solid 5px var(--mc01);
  background-color: var(--mc01);
}
.menu-nijimasu__cont-item-ttl-str {
  min-width: 130px;
  border: solid 1px #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 2.083;
  color: #fff;
  text-align: center;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .menu-nijimasu__cont-item-ttl-str {
    font-size: 2.4rem;
    padding-inline: 15px;
  }
}
.menu-nijimasu__cont-item-info {
  flex: 1;
}
.menu-nijimasu__cont-item-info-str {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .menu-nijimasu__cont-item-info.--type02 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }
}
.menu-nijimasu__cont-item-info-str.--dot {
  display: flex;
  gap: 5px;
  position: relative;
}
.menu-nijimasu__cont-item-info-str.--dot::before {
  content: "・";
}
.menu-nijimasu__cont-item.--column {
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .menu-nijimasu__cont-item.--column {
    max-width: 700px;
    width: 100%;
  }
}

.menu-takeout {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
}
.menu-takeout__delivery {
  border: solid 2px var(--mc01);
  padding: min(50px, 50 / var(--mq) * 1vw) 15px;
}
.menu-takeout__delivery-ttl {
  text-align: center;
  margin-bottom: min(30px, 30 / var(--mq) * 1vw);
}
.menu-takeout__delivery-ttl-str {
  display: inline-block;
  border-bottom: dashed 1px var(--mc01);
  padding-bottom: 5px;
}
.menu-takeout__delivery-txt {
  text-align: center;
  letter-spacing: 0.05em;
}
.menu-takeout__delivery-txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .menu-takeout__delivery-txt strong br {
    display: none;
  }
}
.menu-takeout-order {
  padding-block: min(130px, 130 / var(--mq) * 1vw);
  position: relative;
}
.menu-takeout-order__ttl-str {
  font-size: min(7vw, 3rem);
}
@media screen and (min-width: 768px) {
  .menu-takeout-order__ttl-str {
    font-size: 4rem;
  }
}
.menu-takeout-order__icon {
  max-width: max-content;
  width: 70%;
  position: absolute;
  top: 50%;
  left: calc(50% - 50vw);
  transform: translateY(-50%);
  z-index: -1;
}
.menu-takeout-tel {
  background: url(/system_panel/uploads/images/bg_tel-order.jpg) no-repeat center center/cover;
  padding-block: min(80px, 80 / var(--mq) * 1vw);
}
.menu-takeout-tel__ttl {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.menu-takeout-tel__num {
  margin-bottom: 40px;
}
.menu-takeout-tel__num-str {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  position: relative;
}
@media screen and (min-width: 768px) {
  .menu-takeout-tel__num-str {
    font-size: 3.6rem;
  }
}
.menu-takeout-tel__num-str::before {
  content: "";
  width: 22px;
  height: 24px;
  background: url(/system_panel/uploads/images/icon_phone02.png) no-repeat center center/contain;
}
.menu-takeout-tel__num-str.--fax::before {
  width: 50px;
  aspect-ratio: 4/3;
  height: auto;
  background: url(/system_panel/uploads/images/icon_fax.png) no-repeat center center/contain;
}
.menu-takeout-tel__info {
  display: flex;
  justify-content: center;
}
.menu-takeout-tel__info-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.menu-takeout-tel__info-item:last-of-type {
  margin-bottom: 0;
}
.menu-takeout-tel__info-item-ttl-str {
  min-width: 100px;
  background-color: var(--mc01);
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #fff;
  text-align: center;
  padding-inline: 10px;
}
.menu-takeout-tel__info-item-txt-str {
  letter-spacing: 0.05em;
}
.menu-takeout-form {
  padding-block: min(80px, 80 / var(--mq) * 1vw) min(130px, 130 / var(--mq) * 1vw);
}
.menu-takeout-form__ttl.c-title--01-str {
  font-size: min(7.5vw, 3rem);
}
@media screen and (min-width: 768px) {
  .menu-takeout-form__ttl.c-title--01-str {
    font-size: 4rem;
  }
}
.menu-takeout-form__txt {
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: min(80px, 80 / var(--mq) * 1vw);
}
.menu-takeout-form__txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .menu-takeout-form__txt strong br {
    display: none;
  }
}

.meyamadaki-catch {
  padding-top: min(130px, 130 / var(--mq) * 1vw);
}
.meyamadaki-catch__cont {
  position: relative;
}
.meyamadaki-catch__cont-ttl {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .meyamadaki-catch__cont-ttl.cmn-ttl {
    text-align: center;
  }
}
.meyamadaki-catch__cont-ttl--jp strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .meyamadaki-catch__cont-ttl--jp strong br {
    display: none;
  }
}
.meyamadaki-catch__cont-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2.78;
  margin-bottom: min(80px, 80 / var(--mq) * 1vw);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .meyamadaki-catch__cont-txt {
    font-size: 1.8rem;
    text-align: center;
  }
}
.meyamadaki-catch__cont-img {
  text-align: center;
  position: relative;
}
.meyamadaki-catch__cont-icon {
  width: 100vw;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.meyamadaki-rec__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-bottom: min(70px, 70 / var(--mq) * 1vw);
  margin-inline: max((100% + 30px - 100vw) / 2, -130px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .meyamadaki-rec__cont {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }
}
.meyamadaki-rec__cont::before {
  content: "";
  width: 100vw;
  height: 60%;
  background: url(/system_panel/uploads/images/bg_tel-order.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.meyamadaki-rec__cont-item {
  max-width: 480px;
}
@media screen and (min-width: 768px) {
  .meyamadaki-rec__cont-item {
    width: calc((100% - 50px) / 3);
  }
}
.meyamadaki-rec__cont-item-info {
  max-width: 260px;
  width: 60%;
  margin: max(-90px, -90 / var(--mq) * 1vw) auto 0;
}

.meyamadaki-flow__cont {
  position: relative;
}
.meyamadaki-flow__cont-icon-item01 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  bottom: 105%;
  right: max(50% - 50vw, -200px);
  z-index: -1;
}
.meyamadaki-flow__cont-icon-item02 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 105%;
  left: max(50% - 50vw, -200px);
  z-index: -1;
}
.meyamadaki-flow__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .meyamadaki-flow__list {
    gap: 50px;
  }
}
.meyamadaki-flow__list::before {
  content: "";
  width: 1px;
  height: 75%;
  border-left: dashed 1px var(--mc01);
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .meyamadaki-flow__list::before {
    left: 35px;
  }
}
.meyamadaki-flow__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .meyamadaki-flow__item {
    gap: 30px;
  }
}
.meyamadaki-flow__item-num {
  display: flex;
  align-items: center;
  width: 60px;
}
@media screen and (min-width: 768px) {
  .meyamadaki-flow__item-num {
    width: auto;
  }
}
.meyamadaki-flow__item-info {
  flex: 1;
  background-color: #f4f4f0;
  padding: 25px 15px;
}
@media screen and (min-width: 768px) {
  .meyamadaki-flow__item-info {
    padding: 40px 30px;
  }
}
.meyamadaki-flow__item-info-ttl {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .meyamadaki-flow__item-info-ttl {
    margin-bottom: 20px;
  }
}
.meyamadaki-flow__item-info-txt {
  letter-spacing: 0.05em;
}

.meyamadaki-onsen__cont {
  position: relative;
}
.meyamadaki-onsen__cont-icon-item01 {
  max-width: max-content;
  width: 45%;
  position: absolute;
  bottom: max(-150px, -150 / var(--mq) * 1vw);
  left: max(50% - 50vw, -320px);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .meyamadaki-onsen__info-ttl-str.c-title--01-str {
    font-size: min(3vw, 4rem);
  }
}

.meyamadaki-plan__cont {
  position: relative;
}
.meyamadaki-plan__cont-list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.meyamadaki-plan__cont-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .meyamadaki-plan__cont-item {
    flex-direction: row;
    justify-content: space-between;
    gap: min(80px, 80 / var(--mq) * 1vw);
  }
}
.meyamadaki-plan__cont-item + .meyamadaki-plan__cont-item {
  margin-top: min(80px, 80 / var(--mq) * 1vw);
}
.meyamadaki-plan__cont-item-ttl-inr {
  display: inline-block;
  background-color: var(--mc01);
  padding: 5px;
}
.meyamadaki-plan__cont-item-ttl-str {
  min-width: 200px;
  border: solid 1px #fff;
  line-height: 2.5;
  color: #fff;
  text-align: center;
  padding: 0 15px;
}
@media screen and (min-width: 1024px) {
  .meyamadaki-plan__cont-item-ttl-str {
    min-width: 280px;
  }
}
@media screen and (min-width: 768px) {
  .meyamadaki-plan__cont-item-info {
    flex: 1;
  }
}
.meyamadaki-plan__cont-item-info-txt {
  letter-spacing: 0.05em;
}
.meyamadaki-plan__cont-icon-item01 {
  max-width: max-content;
  width: 50%;
  position: absolute;
  top: 50px;
  right: calc(50% - 50vw);
  z-index: -1;
}
.meyamadaki-plan__cont-icon-item02 {
  max-width: max-content;
  width: 35%;
  position: absolute;
  bottom: 50px;
  left: max(50% - 50vw, -280px);
  z-index: -1;
}

.stay-catch {
  position: relative;
}
.stay-catch__cont-ttl {
  font-size: min(7vw, 3rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .stay-catch__cont-ttl {
    font-size: min(3.5vw, 4rem);
  }
}
.stay-catch__cont-ttl strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .stay-catch__cont-ttl strong br {
    display: none;
  }
}
.stay-catch__cont-txt {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .stay-catch__cont-txt {
    text-align: center;
  }
}
.stay-catch__icon-item01 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: -20%;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .stay-catch__icon-item01 {
    top: -60%;
  }
}
@media screen and (min-width: 1024px) {
  .stay-catch__icon-item01 {
    top: -60%;
  }
}
.stay-catch__icon-item02 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  bottom: -10%;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .stay-catch__icon-item02 {
    bottom: -30%;
  }
}

.stay-reason__cont-item {
  position: relative;
}
.stay-reason__cont-item-icon01 {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: max(-40px, -40 / var(--mq) * 1vw);
  left: max(50% - 50vw, -70px);
  z-index: -1;
}
.stay-reason__cont-item.--reverse .stay-reason__cont-item-icon01 {
  left: auto;
  right: max(50% - 50vw, -70px);
}

.stay-facility__cont {
  padding-bottom: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.stay-facility__cont::before {
  content: "";
  width: 100vw;
  height: 90%;
  background: url(/system_panel/uploads/images/bg_tel-order.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .stay-facility__cont::before {
    height: 80%;
  }
}
.stay-facility__cont-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .stay-facility__cont-list {
    flex-direction: row;
    justify-content: center;
  }
}
.stay-facility__cont-item {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .stay-facility__cont-item {
    width: calc((100% - 30px) / 2);
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .stay-facility__cont-item {
    width: calc((100% - 60px) / 3);
  }
}
.stay-facility__cont-item-info {
  border: solid 2px var(--mc01);
  padding: 20px 15px;
}
@media screen and (min-width: 768px) {
  .stay-facility__cont-item-info {
    padding: 40px 15px;
  }
}
.stay-facility__cont-item-info-inr {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
.stay-facility__cont-item-info-ttl {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .stay-facility__cont-item-info-ttl.c-title--03 {
    font-size: min(2.5vw, 2.1rem);
  }
}
@media screen and (min-width: 1024px) {
  .stay-facility__cont-item-info-ttl.c-title--03 {
    font-size: min(1.6vw, 2.1rem);
  }
}
.stay-facility__cont-item-info-access {
  display: inline-block;
  min-width: 100px;
  border: solid 1px var(--mc01);
  line-height: 2.1875;
  color: var(--mc01);
  padding: 0 10px;
  margin-bottom: 10px;
}
.stay-facility__cont-item-info-txt {
  letter-spacing: 0.05em;
}

.onsen-catch {
  padding-block: min(130px, 130 / var(--mq) * 1vw) min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.onsen-catch::before {
  content: "";
  width: 100%;
  height: 50%;
  background: url(/system_panel/uploads/images/bg_tel-order.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.onsen-catch__cont {
  position: relative;
}
.onsen-catch__cont-icon-item01 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: -30px;
  left: max(50% - 50vw, -200px);
  z-index: -1;
}
.onsen-catch__cont-icon-item02 {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .onsen-catch__cont-icon-item02 {
    right: 50%;
  }
}

.onsen-cont {
  position: relative;
}
.onsen-cont__icon-item01 {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: 0;
  left: max(50% - 50vw, -200px);
  z-index: -1;
}
.onsen-cont__icon.--reverse .onsen-cont__icon-item01 {
  left: auto;
  right: max(50% - 50vw, -200px);
}

.onsen-slider__cont .splide__slide {
  max-width: 520px;
}
.onsen-slider__cont .splide__slide:nth-of-type(2n) {
  margin-top: 50px;
}

.gjs-dashed .onsen-slider__cont.splide {
  visibility: visible;
}
.gjs-dashed .onsen-slider__cont .splide__list {
  display: block;
  height: auto;
}

.onsen-manner__txt {
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.onsen-manner__txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .onsen-manner__txt strong br {
    display: none;
  }
}
.onsen-manner__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .onsen-manner__list {
    gap: 40px;
    max-width: 680px;
  }
}
@media screen and (min-width: 1024px) {
  .onsen-manner__list {
    gap: 80px;
    max-width: 850px;
  }
}
.onsen-manner__item {
  max-width: 240px;
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px) {
  .onsen-manner__item {
    width: calc((100% - 80px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .onsen-manner__item {
    width: calc((100% - 160px) / 3);
  }
}
.onsen-manner__item-media {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .onsen-manner__item-media {
    height: 150px;
  }
}
.onsen-manner__item-media-icon {
  width: 100px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .onsen-manner__item-media-icon {
    width: auto;
  }
}
.onsen-manner__item-txt {
  letter-spacing: 0.05em;
  text-align: center;
}
.onsen-manner__item-txt strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .onsen-manner__item-txt strong br {
    display: none;
  }
}

.onsen-flow__cont-icon-item01 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 0;
  right: max(50% - 50vw, -320px);
  z-index: -1;
}
.onsen-flow__list {
  max-width: 855px;
  width: 100%;
  margin: 0 auto;
}
.onsen-flow__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0 25px;
}
@media screen and (min-width: 768px) {
  .onsen-flow__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.onsen-flow__item + .onsen-flow__item {
  margin-top: min(50px, 50 / var(--mq) * 1vw);
}
.onsen-flow__item-info {
  max-width: 230px;
  background-color: #f4f4f0;
  padding: min(40px, 40 / var(--mq) * 1vw) 15px;
}
@media screen and (min-width: 768px) {
  .onsen-flow__item-info {
    flex: 1;
    max-width: none;
  }
}
.onsen-flow__item-info-inr {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
.onsen-flow__item-info-head {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .onsen-flow__item-info-head {
    margin-bottom: 40px;
  }
}
.onsen-flow__item-info-head-num-str {
  width: 40px;
  background-color: var(--mc01);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 40px;
  color: #fff;
  text-align: center;
}
.onsen-flow__item-info-head-ttl {
  flex: 1;
}
.onsen-flow__item-info-txt {
  letter-spacing: 0.05em;
}

.onsen-after {
  padding-block: min(130px, 130 / var(--mq) * 1vw) min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.onsen-after::before {
  content: "";
  width: 100%;
  height: 35%;
  background: url(/system_panel/uploads/images/bg_tel-order.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.onsen-after__wrap {
  position: relative;
}
.onsen-after__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 40px min(80px, 80 / var(--mq) * 1vw);
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .onsen-after__cont {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .onsen-after__cont-info {
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .onsen-after__cont-info {
    padding-top: clamp(4rem, -8rem + 11.72vw, 7rem);
  }
}
.onsen-after__cont-info-ttl {
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .onsen-after__cont-info-ttl-str.c-title--01-str {
    font-size: min(4.5vw, 4rem);
  }
}
.onsen-after__cont-info-txt {
  letter-spacing: 0.05em;
}
.onsen-after__cont-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}
.onsen-after__cont-media-ph {
  width: calc((100% - 30px) / 2);
}
.onsen-after__icon-item01 {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: max(-50px, -50 / var(--mq) * 1vw);
  left: max(50% - 50vw, -300px);
  z-index: -1;
}

.recruit-catch__cont-txt {
  letter-spacing: 0.05em;
  text-align: center;
}

.recruit-job__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .recruit-job__item {
    flex-direction: row;
    justify-content: space-between;
    margin-right: max(50% - 50vw, -80px);
  }
}
@media screen and (min-width: 1024px) {
  .recruit-job__item-info {
    max-width: 550px;
    width: 45%;
    padding-top: clamp(5rem, -3rem + 7.81vw, 7rem);
  }
}
.recruit-job__item-info-ttl {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  padding-left: 40px;
  position: relative;
}
.recruit-job__item-info-ttl::before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: #dcd159;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.recruit-job__item-info-txt {
  letter-spacing: 0.05em;
}
.recruit-job__item-img {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .recruit-job__item-img {
    flex: 1;
    text-align: right;
  }
}
.recruit-job__item-icon {
  max-width: max-content;
  width: 35%;
  position: absolute;
  bottom: max(-30px, -30 / var(--mq) * 1vw);
  left: max(50% - 50vw, -200px);
  z-index: -1;
}
.recruit-job__item + .recruit-job__item {
  margin-top: min(100px, 100 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .recruit-job__item.--reverse {
    flex-direction: row-reverse;
    margin-right: 0;
    margin-left: max(50% - 50vw, -80px);
  }
}
@media screen and (min-width: 1024px) {
  .recruit-job__item.--reverse .recruit-job__item-img {
    text-align: left;
  }
}
.recruit-job__item.--reverse .recruit-job__item-icon {
  left: auto;
  right: max(50% - 50vw, -200px);
}

.recruit-contact-tel__txt {
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
}
.recruit-contact-tel__txt.c-title--03 {
  font-size: min(4vw, 1.8rem);
}
@media screen and (min-width: 768px) {
  .recruit-contact-tel__txt.c-title--03 {
    font-size: 2.1rem;
  }
}

.recruit-contact__btn {
  margin-top: min(70px, 70 / var(--mq) * 1vw);
  margin-inline: auto;
  width: 100%;
  max-width: 354px;
  height: 60px;
}
@media screen and (min-width: 1024px) {
  .recruit-contact__btn {
    height: 84px;
  }
}

@media screen and (min-width: 768px) {
  .subhd-contact .subhd__img.ojf img {
    object-position: 20%;
  }
}

.contact-tel__ttl {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .contact-tel__ttl {
    font-size: 3rem;
  }
}

.contact-form__ttl {
  font-size: min(6.5vw, 3rem);
  text-align: center;
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .contact-form__ttl {
    font-size: 3.6rem;
  }
}
.contact-form__txt {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  text-align: center;
}
.contact-form__txt.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-form__txt.--br strong br {
    display: none;
  }
}
.contact-form__btn {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.contact-form__btn-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .contact-form__btn-list {
    flex-direction: row;
  }
}
.contact-form__btn-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 350px;
  width: 100%;
  aspect-ratio: 350/80;
  background: url(/system_panel/uploads/images/bg-contact-list.jpg) no-repeat center center/cover;
}
.contact-form__btn-item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form__btn-item-str {
  font-size: 1.8rem;
  line-height: 0.025wm;
}
@media screen and (min-width: 768px) {
  .contact-form__btn-item-str {
    font-size: 2.1rem;
  }
}

@media screen and (min-width: 768px) {
  .page-formcomplete__txt {
    text-align: center;
  }
}
.page-formcomplete__btn {
  margin-top: min(50px, 50 / var(--mq) * 1vw);
  margin-inline: auto;
  width: 100%;
  max-width: 354px;
  height: 60px;
}
@media screen and (min-width: 1024px) {
  .page-formcomplete__btn {
    height: 84px;
  }
}

.menu-takeout-form .d-block {
  display: inline-block !important;
}

.stay-form__date {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-extra {
  position: relative;
}
.form-extra__label {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}