@charset "UTF-8";
:root {
  --base_font: "Noto Sans JP", sans-serif;
  --sub_font: "Jost", sans-serif;
  --mc: #716667;
  --sc: #894b14;
  --fc: #716667;
  --bc: #2a4362;
  --red: #b10000;
}
@media screen and (min-width: 768px) {
  :root {
    --mq: 10.24;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --mq: 7.5;
  }
}
:root {
  --hd_mt: 60px;
}
@media screen and (min-width: 1024px) {
  :root {
    --hd_mt: 120px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

br {
  line-height: inherit;
}

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

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

strong {
  font-weight: 700;
}

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

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

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

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

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

*:focus {
  outline: none;
}

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

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

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

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

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

.h1-dn {
  display: none;
}

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

.dn {
  display: none;
}

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

.cmn-wrap {
  max-width: 1280px;
  width: 100%;
  padding-inline: 15px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-wrap {
    padding-inline: 40px;
  }
}
.cmn-wrap.--size02 {
  max-width: 1520px;
}

.cmn-btn__anc {
  display: block;
  max-width: 300px;
  width: 100%;
  border: solid 1px #333;
  border-radius: 30px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
}
.cmn-btn__anc::before {
  content: "";
  width: 30px;
  aspect-ratio: 30/14;
  background: url(/system_panel/uploads/images/icon_arrow03.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.cmn-btn__anc-str {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 3.75;
  transition: all 0.3s;
}
.cmn-btn.--white .cmn-btn__anc {
  border: solid 1px #fff;
}
.cmn-btn.--white .cmn-btn__anc::before {
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
}
.cmn-btn.--white .cmn-btn__anc-str {
  color: #fff;
}
.cmn-btn.--type02 .cmn-btn__anc::before {
  width: 17px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_other.png) no-repeat center center/contain;
}
.cmn-btn.--type03 .cmn-btn__anc::before {
  width: 18px;
  aspect-ratio: 18/23;
  background: url(/system_panel/uploads/images/icon_pdf01.png) no-repeat center center/contain;
}

.cmn-ttl {
  text-align: center;
  padding-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  position: relative;
}
.cmn-ttl::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--fc);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cmn-ttl__en {
  font-family: var(--sub_font);
  font-size: 3.2rem;
  letter-spacing: 0.075em;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .cmn-ttl__en {
    font-size: 4rem;
  }
}
.cmn-ttl__jp {
  letter-spacing: 0.025em;
}
.cmn-ttl.--left {
  text-align: left;
}
.cmn-ttl.--left::before {
  left: 0;
  transform: translateX(0);
}
.cmn-ttl.--white::before {
  background-color: #fff;
}
.cmn-ttl.--white .cmn-ttl__en, .cmn-ttl.--white .cmn-ttl__jp {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .cmn-ttl.--vertical {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    padding-bottom: 0;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .cmn-ttl.--vertical::before {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .cmn-ttl.--vertical .cmn-ttl__en, .cmn-ttl.--vertical .cmn-ttl__jp {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
@media screen and (min-width: 768px) {
  .cmn-ttl.--vertical .cmn-ttl__en {
    margin-bottom: 0;
  }
}
.cmn-ttl.--type02 .cmn-ttl__jp {
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .cmn-ttl.--type02 .cmn-ttl__jp {
    font-size: 3rem;
  }
}

.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 {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 10px;
  position: fixed;
  bottom: 0;
  right: 75px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .reserve-btn {
    flex-direction: column;
    top: 50%;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.reserve-btn__item {
  width: 70px;
}
@media screen and (min-width: 768px) {
  .reserve-btn__item {
    width: auto;
  }
}
.gjs-dashed .reserve-btn {
  right: 0;
  z-index: 10000;
}

.page-top {
  position: relative;
}
.page-top__btn {
  display: block;
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-top__btn {
    width: 55px;
    height: 55px;
  }
}
.page-top--fixed.page-top__btn {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 30;
}
.sub-hd {
  position: relative;
}
.sub-hd__img {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sub-hd__img {
    height: 600px;
  }
}
.sub-hd__img.ojf::before {
  content: none;
}
.sub-hd__ttl {
  width: calc(100% - 30px);
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .sub-hd__ttl {
    top: 50%;
  }
}
.sub-hd__ttl-en {
  font-family: var(--sub_font);
  font-size: 4rem;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .sub-hd__ttl-en {
    font-size: 5rem;
  }
}
.sub-hd__ttl-jp {
  font-size: 1.8rem;
  letter-spacing: 0.025em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .sub-hd__ttl-jp {
    font-size: 2.1rem;
  }
}

.cmn-table__tr {
  border-top: solid 1px #ccc;
  padding: 10px 0;
}
.cmn-table__tr:last-of-type {
  border-bottom: solid 1px #ccc;
}
@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__tr:last-of-type .cmn-table__th::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--bc);
    position: absolute;
    left: 0;
    bottom: -21px;
  }
}
.cmn-table__th {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    width: 170px;
    padding: 0 15px 0 20px;
    margin-bottom: 0;
    position: relative;
  }
  .cmn-table__th::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--bc);
    position: absolute;
    left: 0;
  }
  .cmn-table__th::before {
    top: -21px;
  }
}
.cmn-table__th-st {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    flex: 1;
    padding: 0 10px 0 20px;
  }
  .cmn-table__td-st {
    letter-spacing: 0.025em;
  }
}
.cmn-table__td-sns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cmn-table02__tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: solid 1px #ccc;
  padding: 10px 10px 10px 0;
}
@media screen and (min-width: 768px) {
  .cmn-table02__tr {
    padding: 10px 20px 10px 0;
  }
}
.cmn-table02__tr:first-of-type {
  padding-top: 0;
}
.cmn-table02__th-st {
  letter-spacing: 0.05em;
}
.cmn-table02__th-st.--01 {
  position: relative;
  padding-left: 20px;
}
.cmn-table02__th-st.--01::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.cmn-table02__td {
  text-align: right;
  margin-left: auto;
}
.cmn-table02__td-st {
  letter-spacing: 0.05em;
}

/* --- header ---*/
.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 1;
  transition: all 0.4s;
  z-index: 1000;
}
@media screen and (min-width: 1200px) {
  .hd {
    height: 120px;
  }
}
@media screen and (min-width: 1441px) {
  .hd {
    height: 150px;
  }
}
.hd-cnt {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding-inline: 15px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .hd-cnt {
    padding-inline: 30px;
  }
}
.hd-cnt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  background: url(/system_panel/uploads/images/bg-header.png) no-repeat bottom center/100% 100%;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .hd-cnt::before {
    background: url(/system_panel/uploads/images/bg-header.png) no-repeat bottom center/100% auto;
    aspect-ratio: 1920/210;
    height: auto;
  }
}
.hd-name {
  z-index: 1001;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .hd-name {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .hd-name {
    width: 210px;
  }
}
@media screen and (min-width: 1280px) {
  .hd-name {
    width: auto;
  }
}
.hd-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  line-height: 1;
  gap: 12px;
  width: auto;
  line-height: 1;
  z-index: 1001;
}
@media screen and (min-width: 1200px) {
  .hd-logo {
    gap: 5px;
    flex-direction: column;
  }
}
@media screen and (min-width: 1360px) {
  .hd-logo {
    gap: 16px;
  }
}
.hd-logo__ph {
  width: 100px;
  aspect-ratio: 270/92;
}
@media screen and (min-width: 1200px) {
  .hd-logo__ph {
    width: 135px;
  }
}
.hd-nav {
  position: fixed;
  top: 0;
  left: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding-block: 90px 50px;
  width: 100%;
  max-width: 460px;
  height: 100svh;
  background: rgba(0, 0, 0, 0.7450980392);
  overflow-y: auto;
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  visibility: hidden;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .hd-nav {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .hd-nav {
    position: relative;
    left: 0;
    justify-content: flex-end;
    flex-direction: row;
    gap: 16px;
    padding: 0;
    max-width: none;
    height: 100%;
    background: transparent;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 1360px) {
  .hd-nav {
    gap: 30px;
  }
}
.hd-nav__list {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-direction: column-reverse;
  gap: 6px;
}
@media screen and (min-width: 1200px) {
  .hd-nav__list {
    flex-direction: column;
  }
}
.hd-nav .nav-list {
  display: block;
}
@media screen and (min-width: 1200px) {
  .hd-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 16px;
  }
}
@media screen and (min-width: 1360px) {
  .hd-nav .nav-list {
    gap: 24px;
  }
}
.hd-nav .nav-list__item {
  padding: 0;
  line-height: 1;
  text-align: center;
}
.hd-nav .nav-list__item.--phone {
  padding-right: 7px;
}
.hd-nav .nav-list__item.--phone .nav-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.hd-nav .nav-list__item.--phone .nav-list__link-icon {
  width: 19px;
  aspect-ratio: 1;
}
.hd-nav .nav-list__item.--phone .nav-list__link-st {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.13em;
}
.hd-nav .nav-list__item.--sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.hd-nav .nav-list__item.--sns .nav-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hd-nav .nav-list__item.--sns .nav-list__link-icon {
  width: 30px;
  aspect-ratio: 1;
}
@media screen and (min-width: 1200px) {
  .hd-nav .nav-list__item.--sns .nav-list__link-icon {
    width: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .hd-nav .nav-list__item.pc-none {
    display: none;
  }
}
.hd-nav .nav-list__link {
  position: relative;
  display: block;
  padding: 16px 0;
  color: #fff;
  transition: 0.4s;
}
@media screen and (min-width: 1200px) {
  .hd-nav .nav-list__link {
    padding: 0;
  }
}
.hd-nav .nav-list__link-st {
  display: block;
  text-align: center;
  color: #fff;
}
.hd-nav__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 220px;
  border: solid 1px #fff;
  border-radius: 30px;
  color: #fff;
  aspect-ratio: 220/60;
}
@media screen and (min-width: 1200px) {
  .hd-nav__btn-link {
    width: min(17.1875vw, 22rem);
  }
}
.hd-nav__btn-icon {
  width: 23px;
  aspect-ratio: 23/18;
}
.hd-nav__btn-st {
  color: #fff;
}
.hd-toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1002;
}
@media screen and (min-width: 1200px) {
  .hd-toggle {
    display: none;
  }
}
.hd-toggle__txt {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hd-toggle__inr {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 24px;
  height: 16px;
}
.hd-toggle__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  color: #fff;
  transition: 0.35s ease-in-out;
}
.hd-toggle__line:nth-child(1) {
  top: 0;
}
.hd-toggle__line:nth-child(2) {
  top: 8px;
}
.hd-toggle__line:nth-child(3) {
  position: relative;
  top: 16px;
}
.hd.open .sp-nav {
  opacity: 1;
  transform: translateX(-100%);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.hd.open .hd-toggle__line:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hd.open .hd-toggle__line:nth-child(2) {
  left: 50%;
  width: 0;
}
.hd.open .hd-toggle__line:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.cmn-contact {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  position: relative;
}
.cmn-contact::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--bc);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.cmn-contact::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/bg_ft01.png) no-repeat center center/cover;
  clip-path: ellipse(150% 100% at 50% 0%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .cmn-contact::after {
    clip-path: ellipse(90% 100% at 50% 0%);
  }
}
.cmn-contact__txt {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-contact__txt-st {
  color: #fff;
  text-align: center;
}
.cmn-contact__txt-st.--01 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .cmn-contact__txt-st.--01 {
    font-size: 2.1rem;
  }
}
.cmn-contact__txt-st.--02 {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cmn-contact__txt-st br {
    display: none;
  }
}
.cmn-contact__reseravation-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cmn-contact__reseravation-list {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .cmn-contact__reseravation-item {
    width: calc((100% - 50px) / 3);
  }
}

.ft-cont {
  background-color: var(--bc);
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem) 110px;
}
@media screen and (min-width: 768px) {
  .ft-cont {
    padding-bottom: 40px;
  }
}
.ft-cont__inr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .ft-cont__inr {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .ft-cont__inr {
    gap: 50px;
  }
}
.ft-cont__info-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 1024px) {
  .ft-cont__info-sns {
    justify-content: flex-start;
  }
}
.ft-cont__info-logo {
  max-width: max-content;
  width: 80%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .ft-cont__info-logo {
    width: auto;
  }
}
.ft-cont__info-add {
  letter-spacing: 0.025em;
  color: #fff;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.ft-cont__menu {
  display: none;
}
@media screen and (min-width: 1024px) {
  .ft-cont__menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 60px;
  }
}
.ft-cont__menu-ttl {
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: solid 1px #fff;
}
.ft-cont__menu-ttl-st {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .ft-cont__menu-ttl-st {
    font-size: 1.8rem;
  }
}
.ft-cont__menu-nav-item-anc-st {
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__menu-nav-item-anc-st.--type02 {
  padding-left: 15px;
  position: relative;
}
.ft-cont__menu-nav-item-anc-st.--type02::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.ft-cont__copyright {
  text-align: center;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.ft-cont__copyright-st {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.top-fv {
  position: relative;
}
.top-fv__splide .splide__slide {
  height: min(120vw, 500px);
}
@media screen and (min-width: 768px) {
  .top-fv__splide .splide__slide {
    height: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .top-fv__splide .splide__slide {
    min-height: 650px;
    height: auto;
  }
}
.top-fv__splide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-fv__splide .splide__pagination {
  gap: 10px;
  font-size: 0;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .top-fv__splide .splide__pagination {
    bottom: 40px;
  }
}
.top-fv__splide .splide__pagination__page {
  width: 40px;
  height: 5px;
  background-color: #ccc;
  border: none;
  transition: all 0.3s;
}
.top-fv__splide .splide__pagination__page.is-active {
  background-color: var(--bc);
}
.top-fv__cont {
  max-width: max-content;
  width: calc(100% - 30px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-fv__cont-catch {
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.top-fv__cont-catch-ttl {
  font-size: min(7vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.52;
  color: #fff;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .top-fv__cont-catch-ttl {
    font-size: 5rem;
  }
}
.top-fv__cont-catch-st {
  font-size: min(3.5vw, 1.6rem);
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-fv__cont-catch-st {
    font-size: 1.8rem;
  }
}
.top-fv__cont-btn .cmn-btn__anc {
  max-width: 330px;
}

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

.top-concept {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.top-concept__cont {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 60%;
  grid-template-areas: "top-concept__cont-head top-concept__cont-head" "top-concept__cont-media02 top-concept__cont-media01" "top-concept__cont-info top-concept__cont-info";
  gap: 40px 20px;
}
@media screen and (min-width: 1024px) {
  .top-concept__cont {
    grid-template-rows: auto auto 1fr;
    grid-template-columns: 1fr 50%;
    grid-template-areas: "top-concept__cont-head top-concept__cont-media01" "top-concept__cont-media02 top-concept__cont-media01" "top-concept__cont-media02 top-concept__cont-info";
    gap: clamp(5rem, -3rem + 7.81vw, 7rem) 70px;
  }
}
.top-concept__cont-head {
  grid-area: top-concept__cont-head;
}
.top-concept__cont-head-subttl {
  font-size: 3.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-head-subttl {
    font-size: min(4vw, 4.6rem);
  }
}
.top-concept__cont-media01 {
  grid-area: top-concept__cont-media01;
}
.top-concept__cont-media01-img {
  margin-right: -15px;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-media01-img {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__cont-media01-img {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.top-concept__cont-media02 {
  grid-area: top-concept__cont-media02;
}
.top-concept__cont-info {
  grid-area: top-concept__cont-info;
}
.top-concept__cont-info-txt {
  margin-bottom: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-info-btn .cmn-btn__anc {
    margin-left: 0;
  }
}

.top-seminar {
  background: url(/system_panel/uploads/images/bg_top-seminar01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-seminar__lead {
  letter-spacing: 0.025em;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .top-seminar__lead {
    text-align: center;
  }
}
.top-seminar__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 768px) {
  .top-seminar__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.top-seminar__item {
  max-width: 380px;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .top-seminar__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-seminar__item {
    width: calc((100% - 60px) / 3);
  }
}
.top-seminar__item-media {
  position: relative;
}
.top-seminar__item-media-cate {
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  font-family: var(--sub_font);
  letter-spacing: 0.075em;
  text-align: center;
  padding: 3px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.top-seminar__item-info {
  padding: 25px 15px;
}
.top-seminar__item-info-inr {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}
.top-seminar__item-info-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-seminar__item-info-ttl {
    font-size: 2.1rem;
  }
}
.top-seminar__item-info-txt {
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.top-seminar__item-info-btn {
  text-align: right;
}
.top-seminar__item-info-btn-txt {
  display: inline-block;
  border-bottom: solid 1px var(--fc);
  font-family: var(--sub_font);
  letter-spacing: 0.1em;
  padding-bottom: 5px;
  padding-right: 40px;
  position: relative;
}
.top-seminar__item-info-btn-txt::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/12;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.top-event {
  background-color: var(--bc);
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-event__cont {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "top-event__cont-ttl" "top-event__cont-list" "top-event__cont-btn";
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-event__cont {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 300px;
    grid-template-areas: "top-event__cont-ttl top-event__cont-btn" "top-event__cont-list top-event__cont-list";
  }
}
.top-event__cont-ttl {
  grid-area: top-event__cont-ttl;
}
.top-event__cont-ttl .cmn-ttl {
  margin-bottom: 0;
}
.top-event__cont-list {
  grid-area: top-event__cont-list;
}
.top-event__cont-list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 25px 30px;
}
@media screen and (min-width: 1024px) {
  .top-event__cont-list .webgene-blog {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.top-event__cont-list .webgene-item {
  max-width: 585px;
  width: 100%;
  background-color: #405672;
  padding: 30px 15px;
}
@media screen and (min-width: 1024px) {
  .top-event__cont-list .webgene-item {
    width: calc((100% - 30px) / 2);
  }
}
.top-event__cont-item-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px 30px;
  max-width: 525px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-event__cont-item-inr {
    flex-direction: row;
    align-items: stretch;
  }
}
.top-event__cont-item-media {
  width: 150px;
  aspect-ratio: 1;
}
.top-event__cont-item-media-img {
  width: 100%;
  height: 100%;
}
.top-event__cont-item-media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .top-event__cont-item-info {
    flex: 1;
    padding-top: 20px;
  }
}
.top-event__cont-item-info-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-event__cont-item-info-ttl {
    font-size: 1.8rem;
  }
}
.top-event__cont-item-info-txt {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.025em;
}
.top-event__cont-item-info-more {
  display: inline-block;
  border-bottom: solid 1px #fff;
  font-size: 1.4rem;
  color: #fff;
}
.top-event__cont-btn {
  grid-area: top-event__cont-btn;
}

.top-flow {
  position: relative;
}
.top-flow::before {
  content: "";
  background-color: var(--bc);
  width: 50%;
  height: 30%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.top-flow__cont {
  background-color: #fff;
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-flow__cont-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 25px;
}
@media screen and (min-width: 768px) {
  .top-flow__cont-list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.top-flow__cont-item {
  max-width: 280px;
  width: 100%;
  border: solid 1px var(--fc);
  border-radius: 10px;
  padding: 50px 15px 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-flow__cont-item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-flow__cont-item {
    width: calc((100% - 75px) / 4);
  }
}
.top-flow__cont-item-inr {
  max-width: 230px;
  width: 100%;
  margin: 0 auto;
}
.top-flow__cont-item-head {
  background-color: #fff;
  text-align: center;
  padding: 0 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-flow__cont-item-head-en {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-flow__cont-item-head-en {
    font-size: 1.8rem;
  }
}
.top-flow__cont-item-head-num {
  font-family: var(--sub_font);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-flow__cont-item-head-num {
    font-size: 3.6rem;
  }
}
.top-flow__cont-item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 20px;
}
.top-flow__cont-item-info-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-flow__cont-item-info-ttl {
    font-size: 1.8rem;
  }
}
.top-flow__cont-item-info-txt {
  letter-spacing: 0.025em;
}

.top-voice {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  position: relative;
}
.top-voice::before {
  content: "";
  width: 100%;
  height: calc(100% - clamp(6rem, 2.2rem + 10.18vw, 10rem) - clamp(7rem, -0.6rem + 20.36vw, 15rem));
  background-color: #f3f1ee;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-voice::before {
    height: calc(100% - 100px - clamp(2.5rem, -0.8rem + 4.34vw, 7.5rem));
  }
}
.top-voice__head {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
@media screen and (min-width: 768px) {
  .top-voice__head {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .top-voice__head-media {
    max-width: 920px;
    flex: 1;
  }
}
.top-voice__head-media-img {
  margin-right: -15px;
}
@media screen and (min-width: 768px) {
  .top-voice__head-media-img {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-voice__head-media-img {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.top-voice__head-ttl.cmn-ttl {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .top-voice__head-ttl {
    padding-top: clamp(5rem, -1.7rem + 8.68vw, 15rem);
  }
}
.top-voice__list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.top-voice__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 15px;
}
.top-voice__item + .top-voice__item {
  margin-top: 20px;
}
.top-voice__item-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-voice__item-inr {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .top-voice__item-info {
    max-width: 740px;
    flex: 1;
    padding-top: 20px;
  }
}
.top-voice__item-info-cate {
  margin-bottom: 10px;
}
.top-voice__item-info-cate-st {
  display: inline-block;
  border: solid 1px #ccc;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.14;
  padding: 0 10px;
}
.top-voice__item-info-txt {
  letter-spacing: 0.025em;
  margin-bottom: 10px;
}
.top-voice__item-info-name {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  text-align: right;
}
.top-voice__btn {
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}

.top-news {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-news__cont {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "top-news__cont-ttl" "top-news__cont-list" "top-news__cont-btn";
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-news__cont {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 300px;
    grid-template-areas: "top-news__cont-ttl top-news__cont-btn" "top-news__cont-list top-news__cont-list";
  }
}
.top-news__cont-ttl {
  grid-area: top-news__cont-ttl;
}
.top-news__cont-ttl .cmn-ttl {
  margin-bottom: 0;
}
.top-news__cont-list {
  grid-area: top-news__cont-list;
}
@media screen and (min-width: 768px) {
  .top-news__cont-list .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 15px;
  }
}
@media screen and (min-width: 1024px) {
  .top-news__cont-list .webgene-blog {
    gap: 30px;
  }
}
.top-news__cont-list .webgene-item {
  max-width: 380px;
  width: 80%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-list .webgene-item {
    width: calc((100% - 30px) / 3);
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top-news__cont-list .webgene-item {
    width: calc((100% - 60px) / 3);
  }
}
.top-news__cont-list .webgene-item:last-of-type {
  margin-bottom: 0;
}
.top-news__cont-list .webgene-item .news-img {
  margin-bottom: 20px;
  position: relative;
}
.top-news__cont-list .webgene-item .news-img .cate {
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 0 10px;
  line-height: 2.25;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}
.top-news__cont-list .webgene-item .news-img figure.ojf::before {
  padding-top: 77.2%;
  background: no-repeat center center/cover;
  background-image: url(/system_panel/uploads/images/img_no.jpg);
}
.top-news__cont-list .webgene-item .blogdate {
  font-family: var(--sub_font);
  font-weight: 600;
}
.top-news__cont-btn {
  grid-area: top-news__cont-btn;
}

.top-insert__cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(1rem, -0.4rem + 3.82vw, 2.5rem);
  max-width: 1860px;
  width: 100%;
  margin: 0 auto;
}
.top-insert__cont-media {
  width: calc((100% - clamp(1rem, -0.4rem + 3.82vw, 2.5rem)) / 2);
}
.top-insert__cont-media.--01 {
  padding-top: clamp(2rem, -2.6rem + 12.33vw, 10rem);
}

.shop-info {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.shop-info__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .shop-info__cont {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.shop-info__cont-info {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .shop-info__cont-info {
    max-width: 550px;
    flex: 1;
    padding-block: clamp(0rem, -28rem + 27.34vw, 7rem);
  }
}
.shop-info__cont-map {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .shop-info__cont-map {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-info__cont-map {
    width: 46%;
    height: auto;
  }
}
.shop-info__cont-map-inr {
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .shop-info__cont-map-inr {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-info__cont-map-inr {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.shop-info__cont-map iframe {
  width: 100%;
  height: 100%;
}

.voice-btn {
  background-color: #f3f1ee;
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}

.voice-cont {
  background-color: #f3f1ee;
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.voice-cont:last-of-type {
  padding-bottom: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.voice-cont__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .voice-cont__list {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.voice-cont__item {
  max-width: 580px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 15px;
}
@media screen and (min-width: 1024px) {
  .voice-cont__item {
    width: calc((100% - 30px) / 2);
  }
}
.voice-cont__item-inr {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "voice-cont__item-media" "voice-cont__item-head" "voice-cont__item-info";
  gap: 20px;
  max-width: 530px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .voice-cont__item-inr {
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-template-areas: "voice-cont__item-media voice-cont__item-head" "voice-cont__item-info voice-cont__item-info";
    gap: 30px;
  }
}
.voice-cont__item-media {
  grid-area: voice-cont__item-media;
  text-align: center;
}
.voice-cont__item-head {
  grid-area: voice-cont__item-head;
}
.voice-cont__item-head-cate {
  margin-bottom: 15px;
}
.voice-cont__item-head-cate-st {
  display: inline-block;
  border: solid 1px #ccc;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2.14;
  padding: 0 10px;
}
.voice-cont__item-head-ttl {
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .voice-cont__item-head-ttl {
    font-size: 1.8rem;
  }
}
.voice-cont__item-head-name {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  text-align: right;
}
.voice-cont__item-info {
  grid-area: voice-cont__item-info;
}
.voice-cont__item-info-txt {
  letter-spacing: 0.025em;
}

.menu-btn {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.menu-btn__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .menu-btn__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }
}
.menu-btn__item {
  max-width: 330px;
  width: 100%;
  border: solid 1px #333;
  border-radius: 40px;
}
@media screen and (min-width: 768px) {
  .menu-btn__item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .menu-btn__item {
    width: calc((100% - 50px) / 3);
  }
}
.menu-btn__item-anc {
  display: block;
  text-align: center;
}
.menu-btn__item-anc-st {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 5;
}

.menu-box {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.menu-box__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .menu-box__cont {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .menu-box__cont-info {
    max-width: 600px;
    width: 50%;
  }
}
.menu-box__cont-info-head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.menu-box__cont-info-head-lead {
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}
.menu-box__cont-info-head-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.menu-box__cont-info-head-item {
  border: solid 1px #ccc;
  padding: 0 10px;
}
.menu-box__cont-info-head-item-txt {
  letter-spacing: 0.05em;
  line-height: 2.5;
}
.menu-box__cont-info-item + .menu-box__cont-info-item {
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.menu-box__cont-info-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.menu-box__cont-info-item-head-label {
  background-color: var(--fc);
  border-radius: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  color: #fff;
  padding: 0 10px;
}
.menu-box__cont-info-item-head-time {
  letter-spacing: 0.05em;
}
.menu-box__cont-media {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 30px 20px;
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .menu-box__cont-media {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 450px;
    flex: 1;
  }
}
.menu-box__cont-media-img {
  max-width: 450px;
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 1024px) {
  .menu-box__cont-media-img {
    width: 100%;
  }
}
.menu-box:nth-of-type(2n + 1) {
  background-color: #f3f1ee;
}
@media screen and (min-width: 1024px) {
  .menu-box:nth-of-type(2n) .menu-box__cont {
    flex-direction: row-reverse;
  }
}

.seminar-btn {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .seminar-btn .menu-btn__list {
    max-width: 685px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .seminar-btn .menu-btn__item {
    width: calc((100% - 25px) / 2);
  }
}

.seminar-box {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  position: relative;
}
.seminar-box::before {
  content: "";
  width: 100%;
  height: 76%;
  background-color: #f3f1ee;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.seminar-box__head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 1024px) {
  .seminar-box__head {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .seminar-box__head-info {
    max-width: 560px;
    flex: 1;
    padding-top: 20px;
  }
}
.seminar-box__head-info-txt {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .seminar-box__head-media {
    max-width: 550px;
    width: 46%;
  }
}
.seminar-box__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px 30px;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 768px) {
  .seminar-box__list {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
.seminar-box__item {
  max-width: 380px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .seminar-box__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .seminar-box__item {
    width: calc((100% - 60px) / 3);
  }
}
.seminar-box__item-inr {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}
.seminar-box__item-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .seminar-box__item-ttl {
    font-size: 2.1rem;
  }
}
.seminar-box__item-txt-st {
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
}
.seminar-box__item-txt-st::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.seminar-box__flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .seminar-box__flow {
    max-width: 585px;
    width: 100%;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 1024px) {
  .seminar-box__flow {
    max-width: none;
    width: auto;
    margin: 0 0 30px;
  }
}
.seminar-box__flow-item {
  max-width: 280px;
  width: calc((100% - 25px) / 2);
}
@media screen and (min-width: 1024px) {
  .seminar-box__flow-item {
    width: calc((100% - 75px) / 4);
  }
}
.seminar-box__flow-item-head {
  text-align: center;
  margin-bottom: 25px;
}
.seminar-box__flow-item-head-en {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  color: var(--bc);
}
@media screen and (min-width: 768px) {
  .seminar-box__flow-item-head-en {
    font-size: 1.8rem;
  }
}
.seminar-box__flow-item-head-num {
  font-family: var(--sub_font);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: var(--bc);
}
@media screen and (min-width: 768px) {
  .seminar-box__flow-item-head-num {
    font-size: 3.6rem;
  }
}
.seminar-box__flow-item-head-line {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  position: relative;
}
.seminar-box__flow-item-head-line::before {
  content: "";
  width: calc(100% + 25px);
  height: 1px;
  background-color: var(--bc);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.seminar-box__flow-item-head-line-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--bc);
  border-radius: 50%;
}
.seminar-box__flow-item-info-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: var(--bc);
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .seminar-box__flow-item-info-ttl {
    font-size: 1.8rem;
  }
}
.seminar-box__flow-item-info-txt {
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .seminar-box__flow-item-info-txt br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .seminar-box__flow-item-info-txt br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .seminar-box__flow-item-info-txt br {
    display: none;
  }
}
.seminar-box__flow-item:first-of-type .seminar-box__flow-item-head-line::before {
  width: calc(50% + 25px);
  left: 50%;
}
.seminar-box__flow-item:last-of-type .seminar-box__flow-item-head-line::before {
  width: 50%;
  left: auto;
  right: 50%;
}
.seminar-box__info {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 15px;
}
.seminar-box__info-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .seminar-box__info-inr {
    flex-direction: row;
    justify-content: space-between;
  }
}
.seminar-box__info-cont {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .seminar-box__info-cont {
    max-width: 750px;
    flex: 1;
  }
}
.seminar-box__info-cont-table {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .seminar-box__info-cont-table {
    flex-direction: row;
    max-width: 750px;
  }
}
@media screen and (min-width: 768px) {
  .seminar-box__info-cont-table-tr {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .seminar-box__info-cont-table-tr:last-of-type .seminar-box__info-cont-table-th {
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .seminar-box__info-cont-table-tr:last-of-type .seminar-box__info-cont-table-td {
    border-right: solid 1px #ccc;
  }
}
.seminar-box__info-cont-table-th {
  background-color: var(--fc);
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .seminar-box__info-cont-table-th {
    border-right: solid 1px #ccc;
  }
}
.seminar-box__info-cont-table-th-st {
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
}
.seminar-box__info-cont-table-td {
  text-align: center;
  padding: 10px;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  border-left: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .seminar-box__info-cont-table-td {
    border-right: none;
  }
}
.seminar-box__info-cont-table-td-st {
  letter-spacing: 0.025em;
}
.seminar-box__info-btn {
  width: 300px;
}
.seminar-box__info-btn .cmn-btn + .cmn-btn {
  margin-top: 15px;
}

.shop-catch {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.shop-catch__ttl {
  font-size: min(6.5vw, 3rem);
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .shop-catch__ttl {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .shop-catch__ttl br {
    display: none;
  }
}
.shop-catch__txt {
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .shop-catch__txt {
    text-align: center;
  }
}
.shop-catch__txt strong {
  font-weight: 400;
}
.shop-catch__txt strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .shop-catch__txt strong br {
    display: block;
  }
}

.shop-access {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.shop-access__map {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .shop-access__map {
    height: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-access__map {
    height: 640px;
  }
}
.shop-access__map iframe {
  width: 100%;
  height: 100%;
}

.shop-overview {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.shop-overview__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.shop-overview__cont-info {
  max-width: 550px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-info {
    width: auto;
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-media {
    max-width: 550px;
    width: 46%;
  }
}

.staff-greeting {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.staff-greeting__cont {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.staff-greeting__cont-txt {
  letter-spacing: 0.05em;
}
.staff-greeting__cont-name {
  text-align: right;
  margin-top: 20px;
}

.staff-box {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.staff-box__cont + .staff-box__cont {
  padding-top: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
.staff-box__cont-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .staff-box__cont-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    max-width: none;
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .staff-box__cont-item.--reverse {
    flex-direction: row-reverse;
  }
}
.staff-box__cont-item-media {
  max-width: 500px;
}
@media screen and (min-width: 1024px) {
  .staff-box__cont-item-media {
    width: 42%;
  }
}
@media screen and (min-width: 1024px) {
  .staff-box__cont-item-info {
    max-width: 600px;
    flex: 1;
  }
}
.staff-box__cont-item-info-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.staff-box__cont-item-info-head-position {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .staff-box__cont-item-info-head-position {
    font-size: 1.8rem;
  }
}
.staff-box__cont-item-info-head-jp {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .staff-box__cont-item-info-head-jp {
    font-size: 3rem;
  }
}
.staff-box__cont-item-info-head-en {
  font-family: var(--sub_font);
  letter-spacing: 0.05em;
  line-height: 1;
}
.staff-box__cont-item-info-message + .staff-box__cont-item-info-message {
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.staff-box__cont-item-info-message-ttl {
  display: inline-block;
  min-width: 140px;
  background-color: #f3f1ee;
  border-radius: 15px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.67;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .staff-box__cont-item-info-message-ttl {
    font-size: 1.8rem;
  }
}
.staff-box__cont-item-info-message-txt {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .staff-box__cont:nth-of-type(2n) .staff-box__cont-item {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .staff-box__cont:nth-of-type(2n) .staff-box__cont-item.--reverse {
    flex-direction: row;
  }
}

.contact-booking {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.contact-booking__txt {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .contact-booking__txt br {
    display: none;
  }
}
.contact-booking__btn-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-booking__btn-list {
    flex-direction: row;
    justify-content: center;
  }
}
.contact-booking__btn-item {
  max-width: 330px;
}
@media screen and (min-width: 768px) {
  .contact-booking__btn-item {
    width: calc((100% - 50px) / 3);
  }
}

.contact-mail {
  background-color: #f3f1ee;
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.contact-mail__txt {
  font-size: min(3.5vw, 1.4rem);
  text-align: center;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
@media screen and (min-width: 768px) {
  .contact-mail__txt {
    font-size: 1.6rem;
  }
}
.contact-mail__txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-mail__txt strong br {
    display: none;
  }
}

.contact-privacy {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}

.contact-formcomplete {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.contact-formcomplete__txt {
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .contact-formcomplete__txt {
    text-align: center;
  }
}

.news-box {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}

#content,
#seminar01,
#seminar02,
#seminar03,
#seminar04 {
  scroll-margin-top: var(--hd_mt);
}