@charset "UTF-8";
:root {
  --base_font: "Zen Kaku Gothic New", sans-serif;
  --sub_font: "Roboto Slab", serif;
  --mc01: #e46b00;
  --mc02: #ede8de;
  --sc: #894b14;
  --fc: #333;
  --bc: #f5f7f5;
  --red: #b10000;
  --hd_mt: 80px;
}
@media screen and (min-width: 768px) {
  :root {
    --mq: 10.24;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --mq: 7.5;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --hd_mt: 110px;
  }
}
@media screen and (min-width: 1300px) {
  :root {
    --hd_mt: 130px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

br {
  line-height: inherit;
}

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

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

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

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

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

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

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

*:focus {
  outline: none;
}

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

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

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

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

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

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

.cmn-table__tr {
  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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    width: 300px;
    padding: 0 20px 0 60px;
  }
}
.cmn-table__th p {
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    flex: 1;
    padding: 0 10px 0 0;
  }
}
.cmn-table__td p {
  letter-spacing: 0.05em;
}

.page-wrap {
  width: 100%;
  overflow-x: hidden;
}

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

.subpage-ttl01 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .subpage-ttl01 {
    font-size: 3rem;
  }
}
.subpage-ttl01--small01 {
  font-size: min(4.5vw, 2.2rem);
}
@media screen and (min-width: 768px) {
  .subpage-ttl01--small01 {
    font-size: 3rem;
  }
}
.subpage-ttl01--small02 {
  font-size: min(4.5vw, 2.2rem);
}
@media screen and (min-width: 768px) {
  .subpage-ttl01--small02 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .subpage-ttl01--small02 {
    font-size: min(2.8vw, 3rem);
  }
}
.subpage-ttl01--br strong {
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .subpage-ttl01--br strong br {
    display: none;
  }
}
.subpage-ttl02 {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .subpage-ttl02 {
    font-size: 4rem;
  }
}
.subpage-ttl03 {
  font-family: var(--sub_font);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--mc02);
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .subpage-ttl03 {
    font-size: min(14vw, 26rem);
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
}
.subpage-ttl04 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .subpage-ttl04 {
    font-size: 2.1rem;
  }
}

.subhd {
  margin-top: var(--hd_mt);
  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-family: var(--sub_font);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0px 0px 11.96px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-str {
    font-size: 6rem;
  }
}
.subhd__ttl-str--small.subhd__ttl-str {
  font-size: min(7vw, 5rem);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-str--small.subhd__ttl-str {
    font-size: 6rem;
  }
}
.subhd__ttl-jp {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0px 0px 11.96px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-jp {
    font-size: 2.1rem;
  }
}

.subpage-catch {
  padding-top: min(120px, 120 / var(--mq) * 1vw);
  position: relative;
}
.subpage-catch__txt {
  margin-bottom: min(180px, 180 / var(--mq) * 1vw);
  position: relative;
}
.subpage-catch__txt-str {
  text-align: center;
}
.subpage-catch__txt-img {
  max-width: max-content;
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
}
.subpage-catch__cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 6%;
}
.subpage-catch__cont-left {
  max-width: 960px;
  width: 50%;
}
.subpage-catch__cont-left-img--bg {
  padding: min(70px, 70 / var(--mq) * 1vw) 0;
  position: relative;
}
.subpage-catch__cont-left-img--bg::before {
  content: "";
  width: 75.5%;
  height: 100%;
  background-color: var(--mc01);
  border-radius: 0 20px 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.subpage-catch__cont-left-img img {
  border-radius: 0 20px 20px 0;
}
.subpage-catch__cont-right {
  max-width: 850px;
  width: 44%;
  margin-top: max(-140px, -140 / var(--mq) * 1vw);
}
.subpage-catch__cont-right-inr {
  padding-bottom: 35%;
  position: relative;
}
.subpage-catch__cont-right-img--01 {
  max-width: 530px;
  width: 62.35%;
  margin-left: auto;
}
.subpage-catch__cont-right-img--01 img {
  border-radius: 20px 0 0 20px;
}
.subpage-catch__cont-right-img--02 {
  max-width: 470px;
  width: 55.3%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.subpage-catch__cont-right-img--02 img {
  border-radius: 20px;
}
.subpage-catch__deco {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

.cmn-box01 {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}

.cmn-box02 {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}

.cmn-deco__item {
  max-width: max-content;
  width: 40%;
  position: absolute;
  z-index: -2;
}
.cmn-deco__item--01 {
  top: 0;
  left: 0;
}
.cmn-deco__item--02 {
  right: 0;
  bottom: 0;
}

.cmn-2column__item {
  margin-bottom: min(200px, 200 / var(--mq) * 1vw);
}
.cmn-2column__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
}
.cmn-2column__item-info {
  position: relative;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .cmn-2column__item-info {
    max-width: 500px;
    flex: 1;
    padding-top: min(100px, 100 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.cmn-2column__item-info-txt {
  letter-spacing: 0.05em;
}
.cmn-2column__item-info-deco {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 0;
  left: -15px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__item-info-deco {
    width: 90%;
  }
}
@media screen and (min-width: 1230px) {
  .cmn-2column__item-info-deco {
    left: max((1200px - 100vw) / 2, -150px);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-2column__item-img {
    width: 50%;
  }
}
.cmn-2column__item-img-inr {
  max-width: 960px;
  width: 100%;
  margin: 0 -15px 0 auto;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__item-img-inr {
    max-width: none;
    width: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 1230px) {
  .cmn-2column__item-img-inr {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.cmn-2column__item-img-inr--bg {
  padding: min(70px, 70 / var(--mq) * 1vw) 0;
  position: relative;
}
.cmn-2column__item-img-inr--bg::before {
  content: "";
  width: 75.5%;
  height: 100%;
  background-color: var(--mc01);
  border-radius: 20px 0 0 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.cmn-2column__item-img img {
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.cmn-2column__item:nth-of-type(2n) .cmn-2column__item-info-deco {
  left: auto;
  right: -15px;
}
@media screen and (min-width: 1230px) {
  .cmn-2column__item:nth-of-type(2n) .cmn-2column__item-info-deco {
    right: max((1200px - 100vw) / 2, -150px);
  }
}
.cmn-2column__item:nth-of-type(2n) .cmn-2column__item-img-inr {
  margin: 0 auto 0 -15px;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__item:nth-of-type(2n) .cmn-2column__item-img-inr {
    margin-right: 0;
  }
}
@media screen and (min-width: 1230px) {
  .cmn-2column__item:nth-of-type(2n) .cmn-2column__item-img-inr {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.cmn-2column__item:nth-of-type(2n) .cmn-2column__item-img-inr--bg::before {
  border-radius: 0 20px 40px 0;
  right: auto;
  left: 0;
}
.cmn-2column__item:nth-of-type(2n) .cmn-2column__item-img img {
  border-radius: 0 20px 20px 0;
}

.cmn-3column__cont {
  max-width: 1850px;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .cmn-3column__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(50px, 50 / var(--mq) * 1vw);
  }
}
.cmn-3column__cont-item {
  max-width: 470px;
  width: 100%;
  margin: 0 auto 40px;
}
.cmn-3column__cont-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .cmn-3column__cont-item {
    max-width: 570px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-3column__cont-item {
    width: calc((100% - min(50px, 50 / var(--mq) * 1vw) * 2) / 3);
    margin: 0;
  }
}
.cmn-3column__cont-item-img.ojf::before {
  padding-top: 100%;
}
.cmn-3column__cont-item-img img {
  border-radius: 40px;
}
.cmn-3column__cont-item-info {
  max-width: 470px;
  width: calc(100% - 30px);
  background-color: #fff;
  border-radius: 40px;
  padding: 40px 15px;
  margin: max(-80px, -80 / var(--mq) * 1vw) auto 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .cmn-3column__cont-item-info {
    padding: 40px 15px;
  }
}
.cmn-3column__cont-item-info-ttl {
  text-align: center;
  margin-bottom: min(30px, 30 / var(--mq) * 1vw);
}
.cmn-3column__cont-item-info-ttl.subpage-ttl02 {
  font-weight: 700;
}
.cmn-3column__cont-item-info-txt {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cmn-3column__cont-item-info-txt {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-3column__cont-item:nth-of-type(2) {
    margin-top: min(70px, 70 / var(--mq) * 1vw);
  }
  .cmn-3column__cont-item:nth-of-type(3) {
    margin-top: max(-70px, -70 / var(--mq) * 1vw);
  }
}

.cmn-menu {
  padding: min(120px, 120 / var(--mq) * 1vw) 0;
}
.cmn-menu__head {
  border-radius: 20px;
  padding: min(120px, 120 / var(--mq) * 1vw) 15px min(140px, 140 / var(--mq) * 1vw);
  margin: 0 max(50% - 50vw, -120px);
}
.cmn-menu__head-txt {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .cmn-menu__head-txt {
    font-size: min(2vw, 1.8rem);
    text-align: center;
  }
}
.cmn-menu__rec {
  margin: max(-60px, -60 / var(--mq) * 1vw) 0 min(60px, 60 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .cmn-menu__rec {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 25px;
  }
}
.cmn-menu__rec-item {
  max-width: 380px;
  width: 100%;
  margin: 0 auto 30px;
}
.cmn-menu__rec-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-menu__rec-item {
    width: calc((100% - 50px) / 3);
    margin: 0;
  }
}
.cmn-menu__rec-item-img img {
  border-radius: 20px 20px 0 0;
}
.cmn-menu__rec-item-info {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 30px 15px;
}
.cmn-menu__rec-item-info-ttl {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-menu__rec-item-info-ttl {
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}
.cmn-menu__rec-item-info-ttl::before {
  content: "";
  width: 90px;
  height: 2px;
  background-color: var(--mc01);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cmn-menu__rec-item-info-txt {
  letter-spacing: 0.05em;
}
.cmn-menu__box {
  background-color: #fff;
  border-radius: 20px;
  padding: min(70px, 70 / var(--mq) * 1vw) 15px;
}
.cmn-menu__box-inr {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cmn-menu__box-inr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 50px;
  }
}
.cmn-menu__box-table {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .cmn-menu__box-table {
    flex: 1;
    margin-bottom: 0;
  }
}
.cmn-menu__box-table-ttl {
  margin-bottom: 20px;
}
.cmn-menu__box-table-ttl-en {
  font-family: var(--sub_font);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .cmn-menu__box-table-ttl-en {
    font-size: 4rem;
  }
}
.cmn-menu__box-table-ttl-jp {
  letter-spacing: 0.05em;
}
.cmn-menu__box-table-ttl-str {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cmn-menu__box-table-ttl-str {
    font-size: 2.1rem;
  }
}
.cmn-menu__box-table-str {
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.cmn-menu__box-table-str:last-of-type {
  margin-bottom: 0;
}
.cmn-menu__box-table-str--02 {
  font-size: 1.6rem;
  color: var(--mc01);
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-menu__box-table-str--02 {
    font-size: 1.8rem;
  }
}
.cmn-menu__box-img {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cmn-menu__box-img {
    width: 45%;
    margin: 0;
  }
}
.cmn-menu__box-img-item {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.cmn-menu__box-img-item:last-of-type {
  margin-bottom: 0;
}
.cmn-menu__box-img-item img {
  border-radius: 20px;
}
.cmn-menu__box--type02 {
  margin-top: min(50px, 50 / var(--mq) * 1vw);
}
.cmn-menu__box--type02-ttl-str {
  text-align: center;
  margin-bottom: min(30px, 30 / var(--mq) * 1vw);
}

.cmn-contact-box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .cmn-contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 40px;
  }
}
.cmn-contact-box__item {
  max-width: 480px;
  width: 100%;
  border: solid 2px #00416d;
  border-radius: 40px;
  padding: 20px 15px 40px;
  margin: 0 auto 40px;
}
.cmn-contact-box__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-contact-box__item {
    width: calc((100% - 40px) / 2);
    margin: 0;
  }
}
.cmn-contact-box__item-inr {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.cmn-contact-box__item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.cmn-contact-box__item-tel {
  text-align: center;
  margin-bottom: 20px;
}
.cmn-contact-box__item-tel-txt {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.cmn-contact-box__item-tel-num {
  display: inline;
  line-height: 1;
  padding-left: 40px;
  position: relative;
}
.cmn-contact-box__item-tel-num::before {
  content: "";
  width: 25px;
  height: 27px;
  background: url(/system_panel/uploads/images/icon_phone01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cmn-contact-box__item-info {
  margin-bottom: 20px;
}
.cmn-contact-box__item-info-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cmn-contact-box__item-info-cont:last-of-type {
  margin-bottom: 0;
}
.cmn-contact-box__item-info-cont-ttl-str {
  width: 90px;
  background-color: #00416d;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #fff;
  text-align: center;
}
.cmn-contact-box__item-info-cont-txt {
  flex: 1;
}
.cmn-contact-box__item-info-cont-txt-str {
  font-weight: 500;
}
.cmn-contact-box__item-info-cont-txt-str--br strong {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .cmn-contact-box__item-info-cont-txt-str--br strong br {
    display: none;
  }
}
.cmn-contact-box__item-holiday {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.page-formcomplete__txt {
  text-align: center;
  margin-bottom: 30px;
}

.access-map {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .access-map {
    height: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .access-map {
    height: 520px;
  }
}
.access-map iframe {
  width: 100%;
  height: 100%;
}

.cmn-nav-toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}
@media screen and (min-width: 768px) {
  .cmn-nav-toggle {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .cmn-nav-toggle {
    display: none;
  }
}
.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: #000;
}
.open .cmn-nav-toggle__btn-line {
  background: #000;
}
.cmn-nav-toggle__btn-line:nth-child(1) {
  top: 0;
}
.cmn-nav-toggle__btn-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.cmn-nav-toggle__btn-line:nth-child(3) {
  bottom: 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: rgba(255, 255, 255, 0.8);
  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;
  width: 100%;
  height: 100%;
  padding: 15px 7.5px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header__content {
    padding: 25px;
  }
}
.header__content-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1300px) {
  .header__content-info {
    width: auto;
  }
}
.header__content-info-ttl {
  display: none;
}
.header__content-info-logo {
  width: 160px;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__content-info-logo {
    width: 192px;
  }
}
@media screen and (min-width: 1300px) {
  .header__content-info-logo {
    width: min(13.5416666667vw, 26rem);
  }
}
@media screen and (min-width: 1300px) {
  .header__content-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
  }
}
@media screen and (min-width: 1300px) {
  .header__content-menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }
}
.header__content-menu-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__content-menu-nav-item {
  padding: 0 min(0.6944444444vw, 1rem);
}
.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;
}
@media screen and (min-width: 1300px) {
  .header__content-menu-nav-item-anc {
    padding: 0;
  }
}
.header__content-menu-nav-item-anc-str {
  font-family: var(--sub_font);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fc);
}
.header__content-menu-nav-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 1300px) {
  .header__content-menu-nav-sns {
    margin-top: 0;
  }
}
.header__content-menu-nav-contact {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 1300px) {
  .header__content-menu-nav-contact {
    margin-top: 0;
  }
}
.header__content-menu-nav-contact-anc {
  display: inline-block;
}

.sp-nav.header__content-menu-nav {
  display: block;
  overflow-y: scroll;
  opacity: 0;
  max-width: 500px;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  padding: 65px 5%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 100%;
  transform: scale(0.9);
  visibility: hidden;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  z-index: 1000;
}
.open .sp-nav.header__content-menu-nav {
  opacity: 1;
  transform: translateX(-100%);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.sp-nav .header__content-menu-nav-list {
  display: block;
  width: 100%;
}
.sp-nav .header__content-menu-nav-item {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  padding: 0;
}
.sp-nav .header__content-menu-nav-item-anc {
  display: block;
}
.sp-nav .header__content-menu-nav-item-anc-str {
  font-size: 1.6rem;
}
.sp-nav .header__content-menu-nav-item--pulldown .header__content-menu-nav-item-anc {
  padding: 10px 10px 0;
}
.sp-nav .header__content-menu-nav-item-submenu {
  padding: 0 10px 10px;
}

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

.dn {
  display: none;
}

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

.cmn-btn-anc {
  display: block;
  max-width: 300px;
  width: 100%;
  background-color: var(--mc01);
  border: solid 3px var(--mc01);
  border-radius: 35px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
}
.cmn-btn-anc::before {
  content: "";
  width: 17px;
  height: 9px;
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.cmn-btn-anc-str {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 4.375;
  color: #fff;
  transition: all 0.3s;
}
.cmn-btn-anc:hover {
  background-color: #fff;
}
.cmn-btn-anc:hover::before {
  background-image: url(/system_panel/uploads/images/icon_arrow02.png);
}
.cmn-btn-anc:hover .cmn-btn-anc-str {
  color: var(--mc01);
}
.cmn-btn--white .cmn-btn-anc {
  border: solid 3px #fff;
}
.cmn-btn--white .cmn-btn-anc:hover {
  background-color: #fff;
}
.cmn-btn--white .cmn-btn-anc:hover .cmn-btn-anc-str {
  color: var(--mc01);
}
.cmn-btn--white .cmn-btn-anc-str {
  color: #fff;
}
.cmn-btn--white02 .cmn-btn-anc {
  background-color: #fff;
  border: solid 3px var(--mc01);
}
.cmn-btn--white02 .cmn-btn-anc::before {
  background-image: url(/system_panel/uploads/images/icon_arrow02.png);
}
.cmn-btn--white02 .cmn-btn-anc:hover {
  background-color: var(--mc01);
}
.cmn-btn--white02 .cmn-btn-anc:hover::before {
  background-image: url(/system_panel/uploads/images/icon_arrow01.png);
}
.cmn-btn--white02 .cmn-btn-anc:hover .cmn-btn-anc-str {
  color: #fff;
}
.cmn-btn--white02 .cmn-btn-anc-str {
  color: var(--mc01);
}
.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--en {
  font-family: var(--sub_font);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .cmn-ttl--en {
    font-size: 6rem;
  }
}
.cmn-ttl--en--small {
  font-size: min(6vw, 5rem);
}
@media screen and (min-width: 768px) {
  .cmn-ttl--en--small {
    font-size: 6rem;
  }
}
.cmn-ttl--en--small01 {
  font-size: min(11vw, 5rem);
}
@media screen and (min-width: 768px) {
  .cmn-ttl--en--small01 {
    font-size: 6rem;
  }
}
.cmn-ttl--en--small02 {
  font-size: min(9vw, 5rem);
}
@media screen and (min-width: 768px) {
  .cmn-ttl--en--small02 {
    font-size: 6rem;
  }
}
.cmn-ttl--en--small03 {
  font-size: min(7vw, 5rem);
}
@media screen and (min-width: 768px) {
  .cmn-ttl--en--small03 {
    font-size: 6rem;
  }
}
.cmn-ttl--jp {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cmn-ttl--jp {
    font-size: 2.1rem;
  }
}
.cmn-ttl--left {
  text-align: left;
}
.cmn-ttl--white .cmn-ttl--jp {
  color: #fff;
}
.cmn-ttl--white .cmn-ttl--en {
  color: #fff;
}
.cmn-ttl--mb0.cmn-ttl {
  margin-bottom: 0;
}

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

.follow-cont {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .follow-cont {
    display: flex;
  }
}
@media screen and (min-width: 1460px) {
  .follow-cont {
    left: min((100vw - 1460px) / 2, 230px);
  }
}

.page-top {
  position: relative;
}
.page-top__btn {
  display: block;
  position: relative;
  margin: 0 0 0 auto;
  width: 100vw;
  height: 55px;
  background-color: #00416d;
  border-radius: 0;
  border-bottom: solid 1px #fff;
  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;
}

.top-fv {
  margin-top: var(--hd_mt);
  position: relative;
}
.top-fv__cont {
  position: relative;
}
.top-fv__cont-item {
  max-height: 700px;
  height: 60vh;
}
@media screen and (min-width: 768px) {
  .top-fv__cont-item {
    max-height: 900px;
    height: 90vh;
  }
}
@media screen and (min-width: 1300px) {
  .top-fv__cont-item {
    max-height: 1080px;
    height: 90vh;
  }
}
.top-fv__cont-item.ojf::before {
  content: none;
}
.top-fv__cont-catch {
  max-width: max-content;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-news {
  border-block: solid 1px #000;
}
.top-news__cont {
  max-width: 1000px;
  width: 100%;
  padding: 25px 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-news__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.top-news__cont-ttl {
  font-family: var(--sub_font);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl {
    font-size: 3rem;
    margin-right: min(30px, 30 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.top-news__cont .webgene-blog {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-news__cont .webgene-blog {
    flex: 1;
    align-self: center;
    margin-right: min(20px, 20 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.top-news__cont-item {
  display: flex;
  flex-wrap: wrap;
}
.top-news__cont-item-date {
  font-weight: 700;
  color: #666;
}
.top-news__cont-item-cate {
  margin-left: 20px;
}
.top-news__cont-item-cate-str {
  display: inline-block;
  min-width: 90px;
  border: solid 1px #000;
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  line-height: 23px;
  text-align: center;
  padding: 0 10px;
}
.top-news__cont-item-ttl {
  width: 100%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .top-news__cont-item-ttl {
    flex: 1;
    width: auto;
    margin-left: 40px;
  }
}
.top-news__cont-btn {
  text-align: right;
}
.top-news__cont-btn-anc {
  display: inline-block;
}
.top-news__cont-btn-anc-str {
  border-bottom: solid 1px #333;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.top-concept {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-concept__head {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
.top-concept__head-txt-str {
  font-size: min(5.5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .top-concept__head-txt-str {
    font-size: 4rem;
  }
}
.top-concept__head-en {
  max-width: max-content;
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;
}
.top-concept__txt {
  font-size: min(5.5vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 2.78;
  text-align: center;
  margin-bottom: min(80px, 80 / var(--mq) * 1vw);
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .top-concept__txt {
    font-size: 1.8rem;
  }
}
.top-concept__img {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 45% 1fr;
  grid-template-areas: "top-concept__img--01 top-concept__img--03" "top-concept__img--02 top-concept__img--03";
  gap: min(50px, 50 / var(--mq) * 1vw);
  max-width: 1100px;
  width: 100%;
  margin: min(70px, 70 / var(--mq) * 1vw) auto 0;
}
@media screen and (min-width: 1300px) {
  .top-concept__img {
    display: block;
    max-width: none;
    width: auto;
    margin: 0;
  }
}
.top-concept__img-item {
  max-width: max-content;
}
@media screen and (min-width: 1300px) {
  .top-concept__img-item {
    position: absolute;
  }
}
.top-concept__img-item--01 {
  grid-area: top-concept__img--01;
}
@media screen and (min-width: 1300px) {
  .top-concept__img-item--01 {
    width: 22%;
    top: min(150px, 150 / var(--mq) * 1vw);
    left: 15px;
  }
}
@media screen and (min-width: 1500px) {
  .top-concept__img-item--01 {
    width: 26%;
  }
}
.top-concept__img-item--02 {
  grid-area: top-concept__img--02;
  width: 85%;
}
@media screen and (min-width: 1300px) {
  .top-concept__img-item--02 {
    width: 22%;
    bottom: min(150px, 150 / var(--mq) * 1vw);
    left: 15px;
  }
}
@media screen and (min-width: 1450px) {
  .top-concept__img-item--02 {
    left: calc((100vw - 1450px) / 2);
  }
}
.top-concept__img-item--03 {
  grid-area: top-concept__img--03;
  padding-top: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 1300px) {
  .top-concept__img-item--03 {
    width: 22%;
    padding-top: 0;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1500px) {
  .top-concept__img-item--03 {
    width: 29%;
  }
}
.top-concept__img-item img {
  border-radius: 20px;
}
.top-concept__deco-item {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -3;
}

.top-scene {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.top-scene__ttl-str {
  font-family: var(--sub_font);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--mc02);
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 768px) {
  .top-scene__ttl-str {
    font-size: min(14vw, 26rem);
    writing-mode: vertical-rl;
    position: absolute;
    top: min(100px, 100 / var(--mq) * 1vw);
    left: 0;
    z-index: -2;
  }
}
.top-scene__cont-list {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
.top-scene__cont-item-info-head {
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
.top-scene__cont-item-info-head-ttl {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-align: left;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .top-scene__cont-item-info-head-ttl {
    font-size: 3.6rem;
  }
}
.top-scene__cont-item-info-head-en {
  max-width: max-content;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.top-scene__deco {
  max-width: max-content;
  width: 40%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(50%);
  z-index: -3;
}

.top-menu {
  padding-top: min(150px, 150 / var(--mq) * 1vw);
}
.top-menu__cont {
  max-width: 1890px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .top-menu__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
}
.top-menu__cont-item {
  max-width: 910px;
  width: 100%;
  margin: 0 auto min(70px, 70 / var(--mq) * 1vw);
}
.top-menu__cont-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-item {
    width: calc((100% - 40px) / 2);
    margin: 0;
  }
}
.top-menu__cont-item-head {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
.top-menu__cont-item-head-img img {
  border-radius: 20px;
}
.top-menu__cont-item-head-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px;
  max-width: 790px;
  width: calc(100% - 30px);
  padding-bottom: min(40px, 40 / var(--mq) * 1vw);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-menu__cont-item-head-ttl-jp {
  font-family: var(--sub_font);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-item-head-ttl-jp {
    font-size: min(3.5vw, 4.6rem);
  }
}
.top-menu__cont-item-head-ttl-en {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-item-head-ttl-en {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1300px) {
  .top-menu__cont-item-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(50px, 50 / var(--mq) * 1vw);
  }
}
.top-menu__cont-item-info-txt {
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (min-width: 1300px) {
  .top-menu__cont-item-info-txt {
    flex: 1;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1300px) {
  .top-menu__cont-item-info-btn {
    width: 300px;
    align-self: flex-end;
  }
  .top-menu__cont-item-info-btn .cmn-btn-anc {
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-item:nth-of-type(2n) {
    padding-top: min(150px, 150 / var(--mq) * 1vw);
  }
}

.top-facility {
  padding: min(100px, 100 / var(--mq) * 1vw) 0;
  position: relative;
}
.top-facility::before {
  content: "";
  width: 100%;
  height: 30%;
  background-color: var(--mc02);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
.top-facility__cont-item {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
.top-facility__cont-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .top-facility__cont-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(50px, 50 / var(--mq) * 1vw);
  }
}
.top-facility__cont-item-info {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-facility__cont-item-info {
    max-width: 500px;
    flex: 1;
    padding-top: min(40px, 40 / var(--mq) * 1vw);
    margin: 0;
  }
}
.top-facility__cont-item-info-ttl {
  margin-bottom: 30px;
}
.top-facility__cont-item-info-ttl-en {
  font-family: var(--sub_font);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #666;
}
.top-facility__cont-item-info-ttl-jp {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-facility__cont-item-info-ttl-jp {
    font-size: 3rem;
  }
}
.top-facility__cont-item-info-txt {
  letter-spacing: 0.05em;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.top-facility__cont-item-info-btn .cmn-btn-anc {
  margin-left: 0;
}
.top-facility__cont-item-img {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .top-facility__cont-item-img {
    width: 50%;
    margin: 0;
  }
}
.top-facility__cont-item-img img {
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .top-facility__cont-item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.top-facility__deco {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 0;
  left: 5%;
  z-index: -3;
}

.top-recruit {
  padding: min(120px, 120 / var(--mq) * 1vw) 0 min(200px, 200 / var(--mq) * 1vw);
  position: relative;
}
.top-recruit::before {
  content: "";
  width: 100%;
  height: calc(100% - min(100px, 100 / var(--mq) * 1vw));
  background-color: var(--mc01);
  border-radius: 0 0 0 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -3;
}
@media screen and (min-width: 1260px) {
  .top-recruit::before {
    width: calc(100% - 15px);
  }
}
@media screen and (min-width: 1470px) {
  .top-recruit::before {
    width: calc(100% - (100% - 1440px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-recruit__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(40px, 40 / var(--mq) * 1vw);
  }
}
.top-recruit__cont-info {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 40px;
}
@media screen and (min-width: 1024px) {
  .top-recruit__cont-info {
    flex: 1;
    padding-top: min(100px, 100 / var(--mq) * 1vw);
    margin: 0;
  }
}
.top-recruit__cont-info-ttl {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .top-recruit__cont-info-ttl {
    font-size: 4rem;
  }
}
.top-recruit__cont-info-txt {
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.top-recruit__cont-info-txt strong {
  font-weight: 400;
}
.top-recruit__cont-info-txt strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-recruit__cont-info-txt strong br {
    display: block;
  }
}
.top-recruit__cont-info-btn .cmn-btn-anc {
  margin-left: 0;
}
.top-recruit__cont-info-img {
  max-width: max-content;
  width: 60%;
  margin-top: 30px;
  margin-left: auto;
}
.top-recruit__cont-img {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-recruit__cont-img {
    width: 50%;
  }
}
.top-recruit__cont-img-inr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .top-recruit__cont-img-inr {
    margin-right: -15px;
  }
}
@media screen and (min-width: 1230px) {
  .top-recruit__cont-img-inr {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.top-recruit__cont-img-wrap {
  width: calc((100% - 30px) / 2);
}
.top-recruit__cont-img-wrap img {
  border-radius: 20px;
}
.top-recruit__cont-img-wrap--02 {
  margin-top: min(150px, 150 / var(--mq) * 1vw);
}
.top-recruit__deco {
  max-width: max-content;
  width: 40%;
  position: absolute;
  bottom: min(50px, 50 / var(--mq) * 1vw);
  left: 0;
  z-index: -2;
}

.kodawari-cont {
  padding: min(100px, 100 / var(--mq) * 1vw) 0 min(200px, 200 / var(--mq) * 1vw);
  position: relative;
}
.kodawari-cont__box {
  margin-bottom: min(100px, 100 / var(--mq) * 1vw);
  position: relative;
}
.kodawari-cont__box :last-of-type {
  margin-bottom: 0;
}
.kodawari-cont__box-list--mt70 {
  margin-top: min(70px, 70 / var(--mq) * 1vw);
}
.kodawari-cont__box-item {
  margin-bottom: 70px;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__box-item {
    margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  }
}
.kodawari-cont__box-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__box-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
  }
}
.kodawari-cont__box-item-info {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__box-item-info {
    max-width: 500px;
    flex: 1;
    padding-top: min(160px, 160 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.kodawari-cont__box-item-info-ttl {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.kodawari-cont__box-item-info-txt {
  letter-spacing: 0.05em;
}
.kodawari-cont__box-item-info-img {
  max-width: max-content;
  width: 80%;
  margin-top: min(50px, 50 / var(--mq) * 1vw);
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__box-item-img {
    width: 50%;
  }
}
.kodawari-cont__box-item-img-inr {
  max-width: 960px;
  width: 100%;
  margin: 0 -15px 0 auto;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__box-item-img-inr {
    max-width: none;
    width: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 1230px) {
  .kodawari-cont__box-item-img-inr {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.kodawari-cont__box-item-img img {
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__box-item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.kodawari-cont__box-item:nth-of-type(2n) .kodawari-cont__box-item-info::before {
  content: "";
  width: calc(50% + 15px);
  height: 150%;
  background-color: #fff4e7;
  border-radius: 20px 0 0 20px;
  position: absolute;
  right: -15px;
  bottom: max(-40px, -40 / var(--mq) * 1vw);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__box-item:nth-of-type(2n) .kodawari-cont__box-item-info::before {
    height: 90%;
  }
}
@media screen and (min-width: 1230px) {
  .kodawari-cont__box-item:nth-of-type(2n) .kodawari-cont__box-item-info::before {
    width: calc(50% + min((100vw - 1200px) / 2, 360px));
    right: max((1200px - 100vw) / 2, -360px);
  }
}
.kodawari-cont__box-item:nth-of-type(2n) .kodawari-cont__box-item-img-inr {
  margin: 0 auto 0 -15px;
}
@media screen and (min-width: 1024px) {
  .kodawari-cont__box-item:nth-of-type(2n) .kodawari-cont__box-item-img-inr {
    margin: 0 0 0 -15px;
  }
}
@media screen and (min-width: 1230px) {
  .kodawari-cont__box-item:nth-of-type(2n) .kodawari-cont__box-item-img-inr {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.kodawari-cont__box-item:nth-of-type(2n) .kodawari-cont__box-item-img img {
  border-radius: 0 20px 20px 0;
}

@media screen and (min-width: 768px) {
  .facility-catch__btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
  }
}
.facility-catch__btn-item {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 20px;
}
.facility-catch__btn-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .facility-catch__btn-item {
    width: calc((100% - 20px) / 2);
    margin: 0;
  }
}
.facility-catch__head {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
  margin-bottom: min(180px, 180 / var(--mq) * 1vw);
}
.facility-catch__head--pt0 {
  padding-top: 0;
}
.facility-catch__head--mb60 {
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
.facility-catch__head-ttl--en.cmn-ttl--en {
  font-size: min(6vw, 5rem);
}
@media screen and (min-width: 768px) {
  .facility-catch__head-ttl--en.cmn-ttl--en {
    font-size: min(6vw, 6rem);
  }
}
.facility-catch__head-txt {
  text-align: center;
}
.facility-catch__head-txt--br strong {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .facility-catch__head-txt--br strong br {
    display: none;
  }
}

.facilityi-cont {
  padding: min(100px, 100 / var(--mq) * 1vw) 0 min(200px, 200 / var(--mq) * 1vw);
  position: relative;
}
.facilityi-cont__box {
  position: relative;
}
.facilityi-cont__box :last-of-type {
  margin-bottom: 0;
}
.facilityi-cont__box-item {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  position: relative;
}
.facilityi-cont__box-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .facilityi-cont__box-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
  }
}
.facilityi-cont__box-item-info {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .facilityi-cont__box-item-info {
    max-width: 500px;
    flex: 1;
    padding-top: min(160px, 160 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.facilityi-cont__box-item-info-ttl {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.facilityi-cont__box-item-info-txt {
  letter-spacing: 0.05em;
}
.facilityi-cont__box-item-info-img {
  max-width: max-content;
  width: 80%;
  margin-top: min(50px, 50 / var(--mq) * 1vw);
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .facilityi-cont__box-item-img {
    width: 50%;
  }
}
.facilityi-cont__box-item-img-inr {
  max-width: 960px;
  width: 100%;
  padding: 0 0 min(100px, 9.765625vw) min(100px, 9.765625vw);
  margin: 0 -15px 0 auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .facilityi-cont__box-item-img-inr {
    max-width: none;
    width: auto;
    padding: 0 0 min(100px, 5.2083333333vw) min(100px, 5.2083333333vw);
    margin-left: 0;
  }
}
@media screen and (min-width: 1230px) {
  .facilityi-cont__box-item-img-inr {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.facilityi-cont__box-item-img-inr::before {
  content: "";
  max-width: 680px;
  width: 80%;
  aspect-ratio: 680/570;
  background-color: var(--mc02);
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.facilityi-cont__box-item-img img {
  border-radius: 20px 0 0 20px;
}
.facilityi-cont__box-item-deco {
  max-width: max-content;
  width: 40%;
  position: absolute;
  top: 0;
  left: max(50% - 50vw, -360px);
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .facilityi-cont__box-item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.facilityi-cont__box-item:nth-of-type(2n) .facilityi-cont__box-item-img-inr {
  padding: 0 min(100px, 9.765625vw) min(100px, 9.765625vw) 0;
  margin: 0 auto 0 -15px;
}
@media screen and (min-width: 1024px) {
  .facilityi-cont__box-item:nth-of-type(2n) .facilityi-cont__box-item-img-inr {
    padding: 0 min(100px, 5.2083333333vw) min(100px, 5.2083333333vw) 0;
    margin: 0 0 0 -15px;
  }
}
@media screen and (min-width: 1230px) {
  .facilityi-cont__box-item:nth-of-type(2n) .facilityi-cont__box-item-img-inr {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.facilityi-cont__box-item:nth-of-type(2n) .facilityi-cont__box-item-img-inr::before {
  right: 0;
  left: auto;
}
.facilityi-cont__box-item:nth-of-type(2n) .facilityi-cont__box-item-img img {
  border-radius: 0 20px 20px 0;
}
.facilityi-cont__box-item:nth-of-type(2n) .facilityi-cont__box-item-deco {
  top: auto;
  right: max(50% - 50vw, -360px);
  bottom: 0;
  left: auto;
}

.facility-rental-store {
  border-top: solid 2px #000;
}
.facility-rental-store__cont.facilityi-cont {
  padding-bottom: 0;
}

.facility-box {
  border: solid 2px var(--mc01);
  border-radius: 20px;
  padding: min(70px, 70 / var(--mq) * 1vw) 15px;
}
.facility-box__ttl {
  text-align: center;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.facility-box__ttl-en {
  font-family: var(--sub_font);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #666;
}
@media screen and (min-width: 1024px) {
  .facility-box__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 50px;
  }
}
.facility-box__details-item {
  max-width: 380px;
  width: 100%;
  background-color: #fff4e7;
  border-radius: 20px;
  text-align: center;
  padding: min(40px, 40 / var(--mq) * 1vw) 15px;
  margin: 0 auto 40px;
}
.facility-box__details-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .facility-box__details-item {
    width: calc((100% - 50px) / 2);
    margin: 0;
  }
}
.facility-box__details-item-head {
  margin-bottom: 20px;
}
.facility-box__details-item-head-icon {
  margin-bottom: 20px;
}
.facility-box__details-item-head-txt {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--mc01);
}
@media screen and (min-width: 768px) {
  .facility-box__details-item-head-txt {
    font-size: 2.1rem;
  }
}
.facility-box__details-item-txt {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .facility-box__details-item-txt {
    font-size: 1.8rem;
  }
}
.facility-box__use {
  max-width: 780px;
  width: 100%;
  background-color: #fff4e7;
  border-radius: 20px;
  padding: min(40px, 40 / var(--mq) * 1vw) 15px;
  margin: 0 auto;
}
.facility-box__use-tel {
  text-align: center;
  margin-bottom: 30px;
}
.facility-box__use-tel-txt {
  letter-spacing: 0.05em;
}
.facility-box__use-tel-num {
  display: inline;
  font-family: var(--sub_font);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  padding-left: 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .facility-box__use-tel-num {
    font-size: 3.6rem;
  }
}
.facility-box__use-tel-num::before {
  content: "";
  width: 22px;
  height: 24px;
  background: url(/system_panel/uploads/images/icon_phone01.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.facility-box__use-info {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.facility-box__use-info-item {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .facility-box__use-info-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 5px;
  }
}
.facility-box__use-info-item:last-of-type {
  margin-bottom: 0;
}
.facility-box__use-info-item-ttl {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .facility-box__use-info-item-ttl {
    margin-bottom: 0;
  }
}
.facility-box__use-info-item-ttl-str {
  width: 110px;
  background-color: var(--mc01);
  border-radius: 15px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .facility-box__use-info-item-ttl-str {
    min-width: 110px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .facility-box__use-info-item-txt {
    flex: 1;
  }
}
.facility-box__use-info-item-txt-str {
  letter-spacing: 0.05em;
}

.menu-catch.subpage-catch {
  padding: min(120px, 120 / var(--mq) * 1vw) 0;
}
@media screen and (min-width: 768px) {
  .menu-catch__btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
  }
}
.menu-catch__btn-item {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 20px;
}
.menu-catch__btn-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .menu-catch__btn-item {
    width: calc((100% - 40px) / 3);
    margin: 0;
  }
}

.menu-local {
  background: url(/system_panel/uploads/images/bg_menu-local.jpg) no-repeat center center/cover;
}
.menu-local__head {
  background: url(/system_panel/uploads/images/fv_menu-local.jpg) no-repeat center center/cover;
}

.menu-american {
  background: url(/system_panel/uploads/images/bg_menu-american.jpg) no-repeat center center/cover;
}
.menu-american__head {
  background: url(/system_panel/uploads/images/fv_menu-american.jpg) no-repeat center center/cover;
}

.menu-hawaiian {
  background: url(/system_panel/uploads/images/bg_menu-hawaiian.jpg) no-repeat center center/cover;
}
.menu-hawaiian__head {
  background: url(/system_panel/uploads/images/fv_menu-hawaiian.jpg) no-repeat center center/cover;
}

.menu-thai {
  background: url(/system_panel/uploads/images/bg_menu-thai.jpg) no-repeat center center/cover;
}
.menu-thai__head {
  background: url(/system_panel/uploads/images/fv_menu-thai.jpg) no-repeat center center/cover;
}

.menu-grand {
  background-color: var(--mc02);
}
.menu-grand__head {
  background: url(/system_panel/uploads/images/fv_menu-grand.jpg) no-repeat center center/cover;
  margin-bottom: min(80px, 80 / var(--mq) * 1vw);
}

.menu-box__cate {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.menu-box__cate-item-anc-str {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  padding: 0 10px;
  position: relative;
}
.menu-box__cate-item-anc-str::before {
  content: "|";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .menu-box__cate-item-anc-str {
    font-size: 1.8rem;
    padding: 0 15px;
  }
}
.menu-box__cate-item:first-of-type .menu-box__cate-item-anc-str::before {
  content: none;
}

.dessert-catch__annotaion {
  text-align: center;
}
.dessert-catch__annotaion-str {
  display: inline-block;
  border: solid 1px var(--mc01);
  border-radius: 35px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--mc01);
  padding: 10px 15px;
}
@media screen and (min-width: 768px) {
  .dessert-catch__annotaion-str {
    min-width: 740px;
    font-size: 2.4rem;
    margin: 0 auto;
  }
}
.dessert-catch__annotaion--mb {
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}

.dessert-menu {
  position: relative;
}
.dessert-menu::before {
  content: "";
  width: 100%;
  height: 80%;
  background-color: var(--mc01);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .dessert-menu::before {
    height: 50%;
  }
}
.dessert-menu__rec.cmn-menu__rec {
  margin-top: 0;
}

.dessert-cont {
  background-color: #f8f6f2;
}
.dessert-cont__item {
  margin-bottom: min(80px, 80 / var(--mq) * 1vw);
}

.recruit-catch__txt.subpage-catch__txt {
  margin-bottom: min(80px, 80 / var(--mq) * 1vw);
}
.recruit-catch__annotation {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-catch__annotation {
    font-size: 2.4rem;
  }
}

.recruit-merit {
  position: relative;
}
.recruit-merit::before {
  content: "";
  width: 100%;
  height: 80%;
  background-color: #f8f6f2;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .recruit-merit::before {
    height: 55%;
  }
}
@media screen and (min-width: 1024px) {
  .recruit-merit__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 30px;
  }
}
.recruit-merit__item {
  max-width: 380px;
  width: 100%;
  padding-top: 40px;
  margin: 0 auto 50px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .recruit-merit__item {
    width: calc((100% - 60px) / 3);
    padding-top: 60px;
    margin: 0;
  }
}
.recruit-merit__item-num {
  font-family: var(--sub_font);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--mc01);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .recruit-merit__item-num {
    font-size: 8rem;
  }
}
.recruit-merit__item-img img {
  border-radius: 20px;
}
.recruit-merit__item-info {
  max-width: 350px;
  width: calc(100% - 30px);
  background-color: #fff;
  border-radius: 20px;
  padding: min(40px, 40 / var(--mq) * 1vw) 15px;
  margin: max(-100px, -100 / var(--mq) * 1vw) auto 0;
  position: relative;
  z-index: 1;
}
.recruit-merit__item-info-ttl {
  color: var(--mc01);
  text-align: center;
  margin-bottom: 20px;
}
.recruit-merit__item-info-txt {
  letter-spacing: 0.05em;
}

.recruit-works__cont-item {
  margin-bottom: min(70px, 70 / var(--mq) * 1vw);
  position: relative;
}
.recruit-works__cont-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .recruit-works__cont-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
}
.recruit-works__cont-item-info {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .recruit-works__cont-item-info {
    max-width: 500px;
    flex: 1;
    padding-top: min(140px, 140 / var(--mq) * 1vw);
    margin-bottom: 0;
  }
}
.recruit-works__cont-item-info-ttl {
  margin-bottom: min(40px, 40 / var(--mq) * 1vw);
}
.recruit-works__cont-item-info-txt {
  letter-spacing: 0.05em;
}
.recruit-works__cont-item-info--bg::before {
  content: "";
  max-width: 440px;
  width: 50%;
  aspect-ratio: 1/1;
  background-color: #fff4e7;
  position: absolute;
  top: 0;
  left: -15px;
  z-index: -2;
}
@media screen and (min-width: 1024px) {
  .recruit-works__cont-item-info--bg::before {
    width: 88%;
  }
}
@media screen and (min-width: 1230px) {
  .recruit-works__cont-item-info--bg::before {
    left: max((1200px - 100vw) / 2, -330px);
  }
}
@media screen and (min-width: 1024px) {
  .recruit-works__cont-item-img {
    width: 50%;
  }
}
.recruit-works__cont-item-img-inr {
  max-width: 960px;
  width: 100%;
  margin: 0 -15px 0 auto;
}
@media screen and (min-width: 1024px) {
  .recruit-works__cont-item-img-inr {
    max-width: none;
    width: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 1230px) {
  .recruit-works__cont-item-img-inr {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.recruit-works__cont-item-img-inr--bg {
  padding: min(70px, 70 / var(--mq) * 1vw) 0;
  position: relative;
}
.recruit-works__cont-item-img-inr--bg::before {
  content: "";
  width: 75.5%;
  height: 100%;
  background-color: var(--mc01);
  border-radius: 20px 0 0 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.recruit-works__cont-item-img img {
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .recruit-works__cont-item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-info-deco {
  left: auto;
  right: -15px;
}
@media screen and (min-width: 1230px) {
  .recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-info-deco {
    right: max((1200px - 100vw) / 2, -150px);
  }
}
.recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-info--bg::before {
  top: auto;
  right: -15px;
  bottom: 0;
  left: auto;
}
@media screen and (min-width: 1230px) {
  .recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-info--bg::before {
    right: max((1200px - 100vw) / 2, -330px);
  }
}
.recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-img-inr {
  margin: 0 auto 0 -15px;
}
@media screen and (min-width: 1024px) {
  .recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-img-inr {
    margin-right: 0;
  }
}
@media screen and (min-width: 1230px) {
  .recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-img-inr {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-img-inr--bg::before {
  border-radius: 0 20px 40px 0;
  right: auto;
  left: 0;
}
.recruit-works__cont-item:nth-of-type(2n) .recruit-works__cont-item-img img {
  border-radius: 0 20px 20px 0;
}

.recruit-job {
  background-color: #f8f6f2;
}
.recruit-job__cont-table {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto min(60px, 60 / var(--mq) * 1vw);
}
.recruit-job__cont-txt {
  text-align: center;
  margin-bottom: 40px;
}
.recruit-job__cont-txt.subpage-ttl04 {
  font-size: min(4vw, 1.8rem);
}
@media screen and (min-width: 768px) {
  .recruit-job__cont-txt.subpage-ttl04 {
    font-size: 2.1rem;
  }
}
.recruit-job__cont-btn {
  margin-top: 40px;
}

.contact-ttl {
  text-align: center;
  margin-bottom: min(50px, 50 / var(--mq) * 1vw);
}
.contact-ttl__en {
  font-family: var(--sub_font);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #666;
}
.contact-ttl__jp {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .contact-ttl__jp {
    font-size: 3rem;
  }
}

.cmn-tel-box {
  max-width: 780px;
  width: 100%;
  border: solid 2px var(--mc01);
  border-radius: 20px;
  padding: min(70px, 70 / var(--mq) * 1vw) 15px;
  margin: 0 auto;
}
.cmn-tel-box__num {
  text-align: center;
  margin-bottom: 30px;
}
.cmn-tel-box__num-str {
  display: inline;
  font-family: var(--sub_font);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000;
  padding-left: 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-tel-box__num-str {
    font-size: 3.6rem;
  }
}
.cmn-tel-box__num-str::before {
  content: "";
  width: 22px;
  height: 24px;
  background: url(/system_panel/uploads/images/icon_phone01.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cmn-tel-box__info {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.cmn-tel-box__info-item {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .cmn-tel-box__info-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 5px;
  }
}
.cmn-tel-box__info-item:last-of-type {
  margin-bottom: 0;
}
.cmn-tel-box__info-item-ttl {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .cmn-tel-box__info-item-ttl {
    margin-bottom: 0;
  }
}
.cmn-tel-box__info-item-ttl-str {
  width: 110px;
  background-color: var(--mc01);
  border-radius: 15px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cmn-tel-box__info-item-ttl-str {
    min-width: 110px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .cmn-tel-box__info-item-txt {
    flex: 1;
  }
}
.cmn-tel-box__info-item-txt-str {
  letter-spacing: 0.05em;
}

.contact-mail {
  background-color: var(--mc02);
}
.contact-mail__txt {
  text-align: center;
  margin-bottom: min(60px, 60 / var(--mq) * 1vw);
}
.contact-mail__txt-str {
  letter-spacing: 0.05em;
}
.contact-mail__txt-str strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-mail__txt-str strong br {
    display: none;
  }
}
.contact-mail__txt-str--annotation {
  display: inline;
  border-bottom: solid 1px var(--mc01);
  font-weight: 700;
  color: var(--mc01);
}
.contact-mail__txt-str--annotation strong {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-mail__txt-str--annotation strong br {
    display: none;
  }
}

.scene-cafe {
  padding-top: min(100px, 100 / var(--mq) * 1vw);
}

.scene-cont__box.kodawari-cont__box:last-of-type {
  margin-bottom: 0;
}
.scene-cont__box-item-info-ttl--small.subpage-ttl02 {
  font-size: min(6.5vw, 2.8rem);
}
@media screen and (min-width: 768px) {
  .scene-cont__box-item-info-ttl--small.subpage-ttl02 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .scene-cont__box-item-info-ttl--small.subpage-ttl02 {
    font-size: min(2vw, 4rem);
  }
}

.scene-facility-cont.kodawari-cont {
  padding-top: 0;
}

.shop-overview {
  padding: min(120px, 120 / var(--mq) * 1vw) 0;
  position: relative;
}
.shop-overview::before {
  content: "";
  width: 100%;
  height: 65%;
  background-color: var(--mc02);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
.shop-overview__cont {
  margin-bottom: min(80px, 80 / var(--mq) * 1vw);
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: min(50px, 50 / var(--mq) * 1vw);
  }
}
.shop-overview__cont-table {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-table {
    flex: 1;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .shop-overview__cont-table-th.cmn-table__th {
    width: 160px;
    padding-left: 30px;
  }
}
.shop-overview__cont-img {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-img {
    width: 45%;
    margin-bottom: 0;
  }
}
.shop-overview__cont-img-inr {
  max-width: 960px;
  width: 100%;
  margin: 0 -15px 0 auto;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-img-inr {
    max-width: none;
    width: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 1230px) {
  .shop-overview__cont-img-inr {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.shop-overview__map {
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  padding: min(60px, 60 / var(--mq) * 1vw) 15px;
}