@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+Maru+Gothic:wght@300;400;500;700;900&display=swap");
:root {
  --base_font: "Zen Maru Gothic", sans-serif;
  --sub_font: "Zen Kaku Gothic New", sans-serif;
  --mc01: #d61118;
  --mc02: #ff8a00;
  --sc: #894b14;
  --fc: #fff;
  --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%;
  background-color: #000;
}
@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.gjs-dashed {
  background-color: #000;
}

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: var(--fc);
  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;
  }
}

.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: 40px;
  height: 40px;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}
@media screen and (min-width: 768px) {
  .cmn-nav-toggle {
    width: 60px;
    height: 60px;
  }
}
.cmn-nav-toggle__btn {
  display: block;
  width: 25px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .cmn-nav-toggle__btn {
    width: 37.5px;
    height: 24px;
  }
}
.cmn-nav-toggle__btn-line {
  display: block;
  position: absolute;
  left: 0;
  transition: 0.35s ease-in-out;
  width: 100%;
  height: 2px;
  background: #fff;
}
.cmn-nav-toggle__btn-line:nth-child(1) {
  top: 0;
}
.cmn-nav-toggle__btn-line:nth-child(2) {
  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: 100px;
  position: relative;
  margin: 0;
  position: absolute;
  top: -20px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header__content-info-logo {
    width: 160px;
    top: -30px;
  }
  .header__content-info-logo--02{
    max-width: max-content;
    width: 70%;
  }
}
@media screen and (min-width: 1024px) {
  .header__content-info-logo {
    width: auto;
  }
  .header__content-info-logo--02{
    width: 40%;
  }
}
.header__content-info-logo a{
  display: flex;
  align-items: center;
  gap: 20px;
}
.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: 100px;
    transform: translateY(-50%);
  }
}
.header__content-info-sns-phone {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  padding-left: 35px;
  position: relative;
}
.header__content-info-sns-phone::before {
  content: "";
  width: 23px;
  height: 23px;
  background: url(/system_panel/uploads/images/icon_phone01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  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: rgba(0, 0, 0, 0.9);
  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;
}
@media screen and (min-width: 1024px) {
  .sp-nav.header__content-menu-nav {
    max-width: 100%;
  }
}
.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-logo {
  display: none;
}
@media screen and (min-width: 1024px) {
  .sp-nav .header__content-menu-nav-logo {
    display: block;
    text-align: center;
    margin-bottom: 40px;
  }
  .sp-nav .header__content-menu-nav-logo-anc{
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.sp-nav .header__content-menu-nav-wrap {
  margin: 0 auto min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .sp-nav .header__content-menu-nav-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(60px, 60 / var(--mq) * 1vw);
    max-width: 900px;
    width: 100%;
  }
}
.sp-nav .header__content-menu-nav-list {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .sp-nav .header__content-menu-nav-list {
    width: calc((100% - min(60px, 60 / var(--mq) * 1vw) * 2) / 3);
  }
}
.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;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .sp-nav .header__content-menu-nav-item-anc-str {
    font-size: 2.4rem;
  }
}
.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%);
}
.footer-map__cont {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .footer-map__cont {
    height: 600px;
  }
}
.footer-map__cont iframe {
  width: 100%;
  height: 100%;
}
.footer-cont {
  background-color: #000;
  padding: min(60px, 60 / var(--mq) * 1vw) 0 min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .footer-cont__inr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(50px, 50 / var(--mq) * 1vw);
  }
}
.footer-cont__info {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer-cont__info {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .footer-cont__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(40px, 40 / var(--mq) * 1vw);
  }
}
.footer-cont__info-logo {
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .footer-cont__info-logo {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer-cont__info-box {
    flex: 1;
  }
}
.footer-cont__info-box-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer-cont__info-box-ttl {
    font-size: 3rem;
  }
}
.footer-cont__info-box-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .footer-cont__info-box-sns {
    justify-content: flex-start;
  }
}
.footer-cont__info-box-txt {
  color: #fff;
}
.footer-cont__nav-wrap {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer-cont__nav-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 30px;
  }
}
.footer-cont__nav-wrap-list-item {
  margin-bottom: 5px;
}
.footer-cont__nav-wrap-list-item:last-of-type {
  margin-bottom: 0;
}
.footer-cont__nav-wrap-list-item-anc-str {
  color: #fff;
}
.footer-cont__copyright {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .footer-cont__copyright {
    text-align: right;
    margin-top: 0;
  }
}

.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 {
  max-width: 500px;
  width: 100%;
  border: solid 5px var(--mc01);
  margin: 0 auto;
}
.cmn-btn-anc {
  display: block;
  width: 100%;
  background-color: var(--mc01);
  border: solid 2px #fff;
  text-align: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
}
.cmn-btn-anc::before {
  content: "";
  width: 35px;
  height: 35px;
  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 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 3.75;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .cmn-btn-anc-str {
    font-size: 2.4rem;
  }
}
.cmn-btn-anc:hover {
  background-color: #fff;
}
.cmn-btn-anc:hover::before {
  background-image: url(/system_panel/uploads/images/icon_arrow02.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-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: 80px;
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 900;
}
@media screen and (min-width: 768px) {
  .reserve-btn {
    width: auto;
  }
}
.gjs-dashed .reserve-btn {
  z-index: 2003;
}

.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-wrap {
  position: relative;
}
.top-fv__img {
  height: 50vh;
}
@media screen and (min-width: 768px) {
  .top-fv__img {
    height: auto;
  }
}
.top-fv__img img {
  width: 100%;
  height: 100%;
}
.top-fv__catch {
  display: flex;
  align-items: center;
  max-width: max-content;
  width: 77%;
  height: 50vh;
  position: absolute;
  top: 0;
  left: 11.5%;
}
@media screen and (min-width: 768px) {
  .top-fv__catch {
    display: block;
    height: auto;
    top: 17%;
  }
}

.top-news {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px 15px;
  margin: 0 auto;
}
.top-news-wrap {
  max-width: min(100% - 30px, 1000px);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-news-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .top-news-wrap {
    bottom: 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: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-news__ttl {
    font-size: 2.4rem;
    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;
  color: #fff;
  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;
  color: #fff;
}
.top-news__anc-item-ttl {
  width: 100%;
  color: #fff;
  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;
  width: 90px;
  text-align: center;
}
.top-news__btn-anc-str {
  background-color: var(--mc01);
  line-height: 25px;
  color: #fff;
}

.top-concept {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-concept::before {
  content: "";
  width: 100%;
  height: calc(100% + 60vw);
  background: url(/system_panel/uploads/images/bg_top-catch01.jpg) no-repeat center center/cover;
  position: absolute;
  top: -60vw;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-concept::before {
    height: calc(100% + 15vw);
    top: -15vw;
  }
}
.top-concept__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 15px;
}
@media screen and (min-width: 1024px) {
  .top-concept__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: min(60px, 60 / var(--mq) * 1vw);
  }
}
.top-concept__cont-info {
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-info {
    flex: 1;
  }
}
.top-concept__cont-info-ttl {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-info-ttl {
    padding-top: min(40px, 40 / var(--mq) * 1vw);
    margin-left: max(-50% - min(60px, 60 / var(--mq) * 1vw), -320px);
  }
}
.top-concept__cont-info-txt {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-info-txt {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-info-txt {
    font-size: min(1.9vw, 2.4rem);
  }
}
.top-concept__cont-img {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-img {
    width: min(60%, 700px);
  }
}

.top-kodawari {
  overflow-x: hidden;
  padding-top: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.top-kodawari::before {
  content: "";
  width: 81.25%;
  aspect-ratio: 1560/2200;
  background: url(/system_panel/uploads/images/bg_top-concept01.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top-kodawari__cont-list {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.top-kodawari__cont-item {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-kodawari__cont-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(50px, 50 / var(--mq) * 1vw);
  }
}
.top-kodawari__cont-item:last-of-type {
  margin-bottom: 0;
}
.top-kodawari__cont-item-info {
  margin-bottom: min(30px, 30 / var(--mq) * 1vw);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .top-kodawari__cont-item-info {
    width: min(55%, 650px);
    margin-bottom: 0;
  }
}
.top-kodawari__cont-item-info-point {
  max-width: max-content;
  width: 70%;
}
@media screen and (min-width: 1024px) {
  .top-kodawari__cont-item-info-point {
    width: auto;
  }
}
.top-kodawari__cont-item-info-ttl {
  margin-top: -10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .top-kodawari__cont-item-info-ttl {
    margin-top: -80px;
    margin-right: max(-50% - min(50px, 50 / var(--mq) * 1vw), -250px);
  }
}
@media screen and (min-width: 1024px) {
  .top-kodawari__cont-item-info-ttl--no3 {
    margin-top: -20px;
  }
}
.top-kodawari__cont-item-info-txt {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-kodawari__cont-item-info-txt {
    font-size: 2.4rem;
  }
}
.top-kodawari__cont-item-img {
  max-width: 600px;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .top-kodawari__cont-item-img {
    max-width: 880px;
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .top-kodawari__cont-item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.top-kodawari__cont-item:nth-of-type(2n) .top-kodawari__cont-item-img {
  margin-right: 0;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 1024px) {
  .top-kodawari__cont-item:nth-of-type(2n) .top-kodawari__cont-item-info-ttl {
    margin-right: 0;
  }
}

.top-charm {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.top-charm::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/bg_top-charm01.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top-charm__cont {
  max-width: 1860px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-charm__cont {
    padding: 0 30px;
  }
}
.top-charm__cont-ttl {
  text-align: center;
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
.top-charm__cont-list {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-charm__cont-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.top-charm__cont-item {
  max-width: 600px;
  width: 100%;
  padding-top: 80px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .top-charm__cont-item {
    padding-top: 140px;
  }
}
@media screen and (min-width: 1024px) {
  .top-charm__cont-item {
    width: calc((100% - 60px) / 3);
    padding-top: min(6vw, 140px);
    margin: 0;
  }
}
.top-charm__cont-item:last-of-type {
  margin-bottom: 0;
}
.top-charm__cont-item-inr {
  background-color: #fff;
  padding: 10px 10px 20px;
  position: relative;
}
.top-charm__cont-item-icon {
  max-width: max-content;
  width: 50%;
  position: absolute;
  top: -80px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .top-charm__cont-item-icon {
    top: -140px;
  }
}
@media screen and (min-width: 1024px) {
  .top-charm__cont-item-icon {
    top: max(-6vw, -140px);
  }
}
.top-charm__cont-item-img {
  margin-bottom: 20px;
}
.top-charm__cont-item-txt {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .top-charm__cont-item-txt {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-charm__cont-item:nth-of-type(2n) {
    margin-top: 50px;
  }
}

.top-reason {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.top-reason__ttl {
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.top-reason__list {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
.top-reason__list::before {
  content: "";
  width: 85%;
  aspect-ratio: 1549/275;
  background: url(/system_panel/uploads/images/bg_top-reason-deco01.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  z-index: -1;
}
.top-reason__list::after {
  content: "";
  width: 85%;
  aspect-ratio: 1549/275;
  background: url(/system_panel/uploads/images/bg_top-reason-deco02.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
}
.top-reason__item {
  margin-bottom: min(30px, 30 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-reason__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
  }
}
.top-reason__item-info {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .top-reason__item-info {
    flex: 1;
    margin-right: max(-27%, -270px);
  }
}
.top-reason__item-info-point {
  max-width: max-content;
  width: 70%;
}
.top-reason__item-img {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .top-reason__item-img {
    width: 66%;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top-reason__item:nth-of-type(2n + 1) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .top-reason__item:nth-of-type(2n + 1) .top-reason__item-info {
    margin-right: 0;
    margin-left: max(-27%, -270px);
  }
}
.top-reason__item:nth-of-type(2n + 1) .top-reason__item-info-point {
  text-align: right;
  margin-left: auto;
}
.top-reason__item:nth-of-type(2n + 1) .top-reason__item-info-ttl {
  text-align: right;
}

.top-menu {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}
.top-menu__cont {
  max-width: 1860px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-menu__cont {
    padding: 0 30px;
  }
}
.top-menu__cont-ttl {
  text-align: center;
  margin-bottom: 50px;
}
.top-menu__cont-list {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.top-menu__cont-item {
  max-width: 600px;
  width: 100%;
  margin: 0 auto min(40px, 40 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-item {
    width: calc((100% - 60px) / 3);
  }
}
.top-menu__cont-item:last-of-type {
  margin-bottom: 0;
}
.top-menu__cont-item--no1 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-item--no1 {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-item--no1 {
    margin-top: 70px;
  }
}
.top-menu__cont-item-img {
  border: solid 5px #fff;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-item-img {
    border: solid 10px #fff;
  }
}
.top-menu__cont-item-info {
  text-align: center;
}
.top-menu__cont-item-icon {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: -40px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-item-icon {
    top: -70px;
  }
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-item:nth-of-type(2) {
    margin-top: calc(min(60px, 60 / var(--mq) * 1vw) + 70px);
  }
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-item:nth-of-type(3) {
    margin-top: calc(min(120px, 120 / var(--mq) * 1vw) + 70px);
  }
}

.top-menu-other {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}
.top-menu-other__cont {
  max-width: 1470px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .top-menu-other__cont-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
  }
}
.top-menu-other__cont-item {
  max-width: 700px;
  width: 100%;
  aspect-ratio: 700/495;
  border: solid 5px #fff;
  margin: 0 auto min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-menu-other__cont-item {
    width: calc((100% - 35px) / 2);
    border: solid 10px #fff;
    margin: 0;
  }
}
.top-menu-other__cont-item:last-of-type {
  margin-bottom: 0;
}
.top-menu-other__cont-item--ippiin {
  background: url(/system_panel/uploads/images/bg_top-othermenu01.jpg) no-repeat center center/cover;
}
.top-menu-other__cont-item--drink {
  background: url(/system_panel/uploads/images/bg_top-othermenu02.jpg) no-repeat center center/cover;
}
.top-menu-other__cont-item-anc {
  display: block;
  height: 100%;
  position: relative;
}
.top-menu-other__cont-item-anc-box {
  width: min(100% - 30px, 350px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-menu-other__cont-item-anc-box-ttl {
  max-width: max-content;
  width: 80%;
  text-align: center;
  margin: 0 auto 30px;
}
@media screen and (min-width: 1024px) {
  .top-menu-other__cont-item-anc-box-ttl {
    width: auto;
  }
}

.top-scene {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-scene::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/960;
  background: url(/system_panel/uploads/images/bg_top-scene01.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-scene::before {
    width: 75%;
  }
}
.top-scene__head {
  max-width: max-content;
  width: 80%;
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-scene__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: min(80px, 80 / var(--mq) * 1vw);
  }
}
.top-scene__cont-img {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .top-scene__cont-img {
    flex: 1;
    text-align: right;
    margin: -120px max(50% - 50vw, -360px) 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .top-scene__cont-info {
    max-width: 550px;
    width: 46%;
  }
}
@media screen and (min-width: 1200px) {
  .top-scene__cont-info {
    padding-left: 40px;
  }
}
.top-scene__cont-info-txt {
  font-weight: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-scene__cont-info-txt {
    font-size: 2.4rem;
  }
}
.top-scene__cont-info-btn .cmn-btn {
  margin-left: 0;
}

.top-shop {
  background: url(/system_panel/uploads/images/bg_top-shop01.jpg) no-repeat center center/cover;
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
}
.top-shop__ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .top-shop__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.top-shop__cont-item {
  max-width: 380px;
  width: 100%;
  margin: 0 auto 40px;
}
@media screen and (min-width: 1024px) {
  .top-shop__cont-item {
    width: calc((100% - 60px) / 3);
    margin: 0;
  }
}
.top-shop__cont-item:last-of-type {
  margin-bottom: 0;
}
.top-shop__cont-item-info {
  background-color: #fff;
  padding: 15px 10%;
}
.top-shop__cont-item-info-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-shop__cont-item-info-ttl {
    font-size: 3rem;
  }
}
.top-shop__cont-item-info-ttl::before {
  content: "";
  width: 35px;
  height: 35px;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.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: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 2.5px 4.33px 10px rgb(0, 0, 0), 2.5px 4.33px 10px rgb(0, 0, 0);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-str {
    font-size: 5.6rem;
  }
}

.contact-cmn-ttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-cmn-ttl {
    font-size: 4rem;
  }
}
.contact-cmn-ttl::before {
  content: "";
  width: 260px;
  aspect-ratio: 351/29;
  background: url(/system_panel/uploads/images/icon_subttl01.png) no-repeat center center/contain;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact-cmn-ttl::before {
    width: 351px;
  }
}
.contact-cmn-ttl--small {
  font-size: min(5.5vw, 3rem);
}
@media screen and (min-width: 768px) {
  .contact-cmn-ttl--small {
    font-size: 4rem;
  }
}

.contact-tel {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}
.contact-tel__phone {
  max-width: 800px;
  width: 100%;
  border: solid 2px #feff09;
  border-radius: 20px;
  text-align: center;
  margin: 0 auto min(40px, 40 / var(--mq) * 1vw);
}
.contact-tel__phone-num {
  display: inline;
  font-size: min(11vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.5;
  color: #feff09;
  padding-left: 40px;
  position: relative;
}
.contact-tel__phone-num a{
  color: #feff09;
}
@media screen and (min-width: 768px) {
  .contact-tel__phone-num {
    font-size: 8rem;
    padding-left: 80px;
  }
}
.contact-tel__phone-num::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_contact-phone01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .contact-tel__phone-num::before {
    width: 54px;
  }
}
.contact-tel__time {
  font-size: min(4.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-tel__time {
    font-size: 2.4rem;
  }
}

.contact-reserve {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}
.contact-reserve__btn {
  text-align: center;
}

.contact-form {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}
.contact-form__desc {
  text-align: center;
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
.contact-form__desc-txt {
  font-size: min(5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .contact-form__desc-txt {
    font-size: 2.4rem;
  }
}
.contact-form__desc-txt strong {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-form__desc-txt strong br {
    display: none;
  }
}
.contact-form__desc-annotation {
  display: inline;
  border-bottom: solid 1px #feff09;
  font-size: min(4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #feff09;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .contact-form__desc-annotation {
    font-size: 2.4rem;
  }
}
.contact-form__desc-annotation strong {
  font-weight: 700;
}
@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;
  }
}

#root {
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
}

.dn {
  display: none;
}

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