@charset "UTF-8";
:root {
  --base_font: "BIZ UDGothic", sans-serif;
  --sub_font-jp: "Noto Sans JP", sans-serif;
  --sub_font-en: "Poppins", sans-serif;
  --mc: #42321c;
  --sc: #b49a64;
  --fc: #333;
  --bc: #eceee1;
  --red: #b10000;
  --hd_mt: 90px;
}
@media screen and (min-width: 768px) {
  :root {
    --hd_mt: 140px;
  }
}

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

strong {
  font-weight: 700;
}

/* リンク */
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-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: 1760px;
}
.cmn {
  /*display:none*/
}
.cmn-display__pcl--block {
  display: none !important;
}
@media screen and (min-width: 1800px) {
  .cmn-display__pcl--block {
    display: block !important;
  }
}
@media screen and (min-width: 1800px) {
  .cmn-display__pcl--none {
    display: none;
  }
}
.cmn-display__pc--block {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .cmn-display__pc--block {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-display__pc--none {
    display: none;
  }
}
.cmn-display__pc-tb--block {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-display__pc-tb--block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .cmn-display__pc-tb--none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cmn-display__sp--block {
    display: none;
  }
}
.cmn-display__sp--none {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-display__sp--none {
    display: block;
  }
}

.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-btn-anc {
  display: block;
  max-width: 350px;
  width: 100%;
  background-color: var(--mc);
  border-radius: clamp(3.5rem, 2.5rem + 2.54vw, 4.5rem);
  text-align: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
}
.cmn-btn-anc::before {
  content: "";
  width: 28px;
  aspect-ratio: 28/14;
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .cmn-btn-anc::before {
    right: 30px;
  }
}
.cmn-btn-anc-str {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 4.375;
  color: #fff;
  transition: all 0.3s;
}
.cmn-btn.--white .cmn-btn-anc {
  background-color: transparent;
  border: solid 1px #fff;
}
.cmn-btn.--type02 .cmn-btn-anc::before {
  content: none;
}
.cmn-btn.--type02 .cmn-btn-anc-str {
  display: inline;
  font-family: var(--sub_font-jp);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 4.286;
  padding-left: 45px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-btn.--type02 .cmn-btn-anc-str {
    font-size: 2.1rem;
  }
}
.cmn-btn.--type02 .cmn-btn-anc-str::before {
  content: "";
  width: 35px;
  aspect-ratio: 35/32;
  background: url(/system_panel/uploads/images/icon_reserve01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cmn-btn--02-anc {
  display: block;
  max-width: 180px;
  width: 100%;
  border: solid 1px #000;
  border-radius: 20px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.cmn-btn--02-anc::before {
  content: "";
  width: 17px;
  aspect-ratio: 17/9;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.cmn-btn--02-anc-str {
  font-family: var(--sub_font-en);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.5;
}

.cmn-ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-ttl__en {
  font-family: var(--sub_font-en);
  font-size: 5rem;
  line-height: 1;
  color: var(--mc);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .cmn-ttl__en {
    font-size: 8rem;
  }
}
.cmn-ttl__jp {
  font-family: var(--sub_font-jp);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--sc);
}
@media screen and (min-width: 768px) {
  .cmn-ttl__jp {
    font-size: 2.1rem;
  }
}
.cmn-ttl.--left {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .cmn-ttl.--vertical {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    margin: 0;
  }
}
@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: 0;
  }
}

.cmn-subttl {
  text-align: center;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.cmn-subttl__jp {
  font-family: var(--sub_font-jp);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .cmn-subttl__jp {
    font-size: 3.6rem;
  }
}
.cmn-subttl__en {
  font-family: var(--sub_font-en);
  letter-spacing: 0.05em;
  color: var(--sc);
}
.cmn-subttl.--left {
  text-align: left;
}
.cmn-subttl.--type02 .cmn-subttl__jp {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--sc);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .cmn-subttl.--type02 .cmn-subttl__jp {
    font-size: 1.8rem;
  }
}
.cmn-subttl.--type02 .cmn-subttl__en {
  font-size: 4rem;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .cmn-subttl.--type02 .cmn-subttl__en {
    font-size: 5rem;
  }
}

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

.reserve-btn {
  width: 160px;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .reserve-btn {
    width: 200px;
    bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-btn {
    width: auto;
  }
}
.gjs-dashed .reserve-btn {
  right: 630px;
  z-index: 10000;
}

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

.subhd {
  position: relative;
}
.subhd__img {
  max-width: 1180px;
  max-height: 540px;
  height: 80vw;
  margin-right: 15px;
}
@media screen and (min-width: 768px) {
  .subhd__img {
    margin-right: 40px;
  }
}
@media screen and (min-width: 1920px) {
  .subhd__img {
    max-width: none;
    width: 61.458%;
  }
}
.subhd__img.ojf::before {
  content: none;
}
.subhd__img img {
  border-radius: 0 0 clamp(10rem, 0.5rem + 25.45vw, 20rem) 0;
}
.subhd__ttl {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding-inline: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .subhd__ttl {
    padding-inline: 40px;
  }
}
.subhd__ttl-inr {
  position: absolute;
  top: 55%;
  right: max(50% - 50vw, -90px);
  z-index: 2;
}
.subhd__ttl-jp {
  font-family: var(--sub_font-jp);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  letter-spacing: 0.05em;
  color: var(--sc);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-jp {
    font-size: 1.8rem;
  }
}
.subhd__ttl-en {
  font-family: var(--sub_font-en);
  font-size: 6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--mc);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .subhd__ttl-en {
    font-size: 8rem;
  }
}
.subhd__ttl-en.--small01 {
  font-size: min(10vw, 6rem);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-en.--small01 {
    font-size: 8rem;
  }
}
.subhd__ttl-icon {
  max-width: max-content;
  width: 85%;
  position: absolute;
  top: 42%;
  right: max(50% - 50vw, -190px);
  z-index: 1;
}

.cmn-2column__cont {
  position: relative;
  z-index: 1;
}
.cmn-2column__cont-icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.cmn-2column__cont-icon-item.--01 {
  width: 35%;
  top: -70px;
  left: max(50% - 50vw, -120px);
}
.cmn-2column__cont-icon-item.--02 {
  width: 30%;
  top: 50%;
  right: max(50% - 50vw, -120px);
  transform: translateY(-50%);
}
.cmn-2column__cont-icon-item.--03 {
  width: 20%;
  bottom: calc(clamp(10rem, 4.3rem + 15.27vw, 16rem) * -1);
  left: 0;
}
.cmn-2column__ttl {
  font-family: var(--sub_font-jp);
  font-size: min(6.5vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .cmn-2column__ttl {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-2column__ttl {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.cmn-2column__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  max-width: 1100px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cmn-2column__item {
    flex-direction: row;
    justify-content: space-between;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-2column__item {
    width: 90%;
  }
}
.cmn-2column__item + .cmn-2column__item {
  margin-top: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
@media screen and (min-width: 768px) {
  .cmn-2column__item-info {
    max-width: 500px;
    flex: 1;
    padding-top: clamp(0rem, -21rem + 27.34vw, 14rem);
  }
}
.cmn-2column__item-info-ttl {
  font-family: var(--sub_font-jp);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .cmn-2column__item-info-ttl {
    font-size: 3rem;
  }
}
.cmn-2column__item-info-txt {
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .cmn-2column__item-info-txt {
    font-size: 1.8rem;
  }
}
.cmn-2column__item-info-btn {
  margin-top: clamp(2.5rem, 1.1rem + 3.82vw, 4rem);
}
@media screen and (min-width: 768px) {
  .cmn-2column__item-info-btn .cmn-btn-anc {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .cmn-2column__item-media {
    max-width: 500px;
    width: 47%;
  }
}
.cmn-2column__item-media-ph {
  max-width: max-content;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cmn-2column__item-media-ph {
    width: auto;
    margin: 0 -40px 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-2column__item-media-ph {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
@media screen and (min-width: 768px) {
  .cmn-2column__item:nth-of-type(2n) {
    flex-direction: row-reverse;
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .cmn-2column__item:nth-of-type(2n) .cmn-2column__item-media-ph {
    margin: 0 0 0 -40px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-2column__item:nth-of-type(2n) .cmn-2column__item-media-ph {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 1;
  transition: all 0.4s;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .hd {
    height: 110px;
  }
}
.hd-cnt {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding-inline: 16px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .hd-cnt {
    padding-inline: 30px 35px;
  }
}
.hd-name {
  width: clamp(9rem, 6.3rem + 7.12vw, 20rem);
  aspect-ratio: 1;
  z-index: 1001;
}
.hd-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 100%;
  padding-block: clamp(12rem, 7.4rem + 4.47vw, 16rem) 30px;
  padding-inline: 30px;
  width: 100%;
  max-width: 600px;
  height: 100svh;
  background: #fff;
  overflow-y: scroll;
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  visibility: hidden;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .hd-nav {
    padding-inline: 30px 68px;
  }
}
.hd-nav__list {
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
}
.hd-nav__item {
  padding: 0;
  line-height: 1;
}
.hd-nav__link {
  display: block;
  padding-block: 8px;
}
@media screen and (min-width: 768px) {
  .hd-nav__link {
    padding-block: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .hd-nav__link {
    padding-block: clamp(0.8rem, 0rem + 0.78vw, 1.5rem);
  }
}
.hd-nav__link-main {
  display: block;
  font-family: var(--sub_font-en);
  font-size: 16px;
  color: #634f34;
  font-weight: 500;
  line-height: 1.665;
}
@media screen and (min-width: 768px) {
  .hd-nav__link-main {
    font-size: 18px;
    line-height: 1.5;
  }
}
.hd-nav__link-sub {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--sc);
}
.hd-nav__sns {
  margin-top: 30px;
}
.hd-nav__anchor {
  max-width: 480px;
  width: 100%;
  margin-top: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}
.hd-nav__anchor .cmn-btn-anc {
  max-width: 480px;
}
.hd-nav__anchor .cmn-btn-anc-str {
  line-height: 60px;
}
@media screen and (min-width: 768px) {
  .hd-nav__anchor .cmn-btn-anc-str {
    line-height: 5.625;
  }
}
.gjs-dashed .hd-nav {
  height: calc(100vh - 130px);
  opacity: 1;
  visibility: visible;
  position: absolute;
  top: 120px;
  right: 0;
  left: auto;
}
.hd-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1.5rem, 0.7rem + 2.21vw, 3.5rem);
}
.hd-sns__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.5rem, 0.1rem + 1.1vw, 1.5rem);
}
.hd-toggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 135px;
  height: 45px;
  background: var(--mc);
  border-radius: 22.5px;
  color: #fff;
  cursor: pointer;
  z-index: 1002;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .hd-toggle {
    width: 180px;
    height: 60px;
    border-radius: 30px;
  }
}
.hd-toggle__list {
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
}
@media screen and (min-width: 1024px) {
  .hd-toggle__list {
    width: 40px;
  }
}
.hd-toggle__line {
  display: block;
  position: absolute;
  right: 0;
  transition: 0.35s ease-in-out;
  width: 30px;
  height: 2px;
  background: #fff;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .hd-toggle__line {
    width: 40px;
  }
}
.hd-toggle__line:nth-child(1) {
  top: 0;
}
.hd-toggle__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hd-toggle__line:last-child {
  bottom: 0;
}
.hd-toggle__txt {
  font-family: var(--sub_font-en);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.hd-toggle__txt.--01 {
  display: block;
}
.hd-toggle__txt.--02 {
  display: none;
}
.hd.fixed {
  backdrop-filter: blur(10px);
}
.hd.open .hd-nav {
  opacity: 1;
  transform: translateX(-100%);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.hd.open .hd-toggle {
  background-color: transparent;
}
.hd.open .hd-toggle__line {
  width: 30px;
  background-color: #000;
}
.hd.open .hd-toggle__line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.hd.open .hd-toggle__line:nth-child(2) {
  display: none;
}
.hd.open .hd-toggle__line:last-child {
  top: 10px;
  bottom: auto;
  transform: rotate(-45deg);
}
.hd.open .hd-toggle__txt {
  color: #000;
}
.hd.open .hd-toggle__txt.--01 {
  display: none;
}
.hd.open .hd-toggle__txt.--02 {
  display: block;
}

/* --- content ---*/
body {
  position: relative;
  background-color: #faf9f9;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 100;
}
body.open::before {
  opacity: 1;
}

.ft-cont {
  background-color: var(--mc);
  padding: clamp(5rem, 3.1rem + 5.09vw, 7rem) 0;
}
.ft-cont__access {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .ft-cont__access {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .ft-cont__access-head {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
}
.ft-cont__access-head-ttl--en {
  font-family: var(--sub_font-en);
  font-size: 4rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .ft-cont__access-head-ttl--en {
    font-size: 5rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.ft-cont__access-head-ttl--jp {
  font-family: var(--sub_font-jp);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .ft-cont__access-head-ttl--jp {
    font-size: 1.8rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.ft-cont__access-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px 50px;
}
@media screen and (min-width: 768px) {
  .ft-cont__access-box {
    max-width: 1000px;
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .ft-cont__access-box {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .ft-cont__access-box-info {
    padding-block: clamp(0rem, -20rem + 19.53vw, 5rem);
  }
}
.ft-cont__access-box-info-ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .ft-cont__access-box-info-ttl {
    font-size: 3rem;
  }
}
.ft-cont__access-box-info-add {
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__access-box-info-desc {
  margin-bottom: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
.ft-cont__access-box-info-desc-item {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.ft-cont__access-box-info-desc-item-label {
  min-width: 75px;
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__access-box-info-desc-item-txt {
  flex: 1;
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__access-box-info-contact {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.ft-cont__access-box-info-contact-ttl {
  font-size: 1.6rem;
  letter-spacing: 0.005em;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .ft-cont__access-box-info-contact-ttl {
    font-size: 1.8rem;
  }
}
.ft-cont__access-box-info-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ft-cont__access-box-info-contact-sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.ft-cont__access-box-info-contact-txt {
  color: #fff;
}
.ft-cont__access-box-info-btn .cmn-btn-anc {
  margin-left: 0;
}
.ft-cont__access-box-map {
  height: 250px;
}
@media screen and (min-width: 768px) {
  .ft-cont__access-box-map {
    height: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .ft-cont__access-box-map {
    max-width: 550px;
    height: auto;
    flex: 1;
  }
}
.ft-cont__access-box-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.footer-nav {
  background-color: var(--bc);
  padding-block: clamp(5rem, 3.1rem + 5.09vw, 7rem) 210px;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    padding-bottom: 250px;
  }
}
.footer-nav__list {
  display: none;
}
@media screen and (min-width: 1300px) {
  .footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
  }
}
.footer-nav__item {
  position: relative;
}
.footer-nav__item-anc-str {
  letter-spacing: 0.05em;
  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;
}
.footer-nav__copyright-str {
  font-family: var(--sub_font-jp);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.ft-contact {
  position: relative;
}
.ft-contact::before {
  content: "";
  width: 100%;
  height: calc(100% - 30px);
  background-color: var(--bc);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -4;
}
@media screen and (min-width: 768px) {
  .ft-contact::before {
    height: calc(100% - 40px);
  }
}
.ft-contact__reservation {
  background-color: #fff;
  border-radius: 30px;
  padding: clamp(3rem, 2rem + 2.54vw, 4rem) 15px;
  position: relative;
}
.ft-contact__reservation::before {
  content: "";
  width: 100vw;
  height: 50%;
  background-color: var(--mc);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -4;
}
.ft-contact__reservation-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .ft-contact__reservation-list {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .ft-contact__reservation-item {
    width: calc((100% - 40px) / 3);
  }
}

.top-fv {
  position: relative;
}
.top-fv__cont {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-fv__cont {
    margin-top: -20%;
  }
}
@media screen and (min-width: 1024px) {
  .top-fv__cont {
    min-height: 100svh;
    padding-block: clamp(10rem, 4.1rem + 15.72vw, 28rem) 0;
    margin: 0;
  }
}
.top-fv__cont-inr {
  max-width: 550px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top-fv__cont-inr {
    width: 70%;
  }
}
@media screen and (min-width: 1024px) {
  .top-fv__cont-inr {
    width: 60%;
  }
}
.top-fv__cont-catch {
  position: relative;
  z-index: 1;
}
.top-fv__cont-catch-ttl {
  font-family: var(--sub_font-jp);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: var(--mc);
  text-shadow: 0 0 rgba(255, 255, 255, 0.2), 0 0 rgba(255, 255, 255, 0.2), 0 0 rgba(255, 255, 255, 0.2);
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
}
@media screen and (min-width: 1024px) {
  .top-fv__cont-catch-ttl {
    font-size: 5rem;
  }
}
.top-fv__cont-catch-en {
  max-width: max-content;
  width: 90%;
  position: absolute;
  top: 0;
  left: -15px;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-fv__cont-catch-en {
    left: calc(clamp(3rem, -0.8rem + 10.18vw, 7rem) * -1);
  }
}
.top-fv__cont-subcatch {
  font-family: var(--sub_font-jp);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
}
@media screen and (min-width: 1024px) {
  .top-fv__cont-subcatch {
    font-size: 2.1rem;
  }
}
.top-fv__cont-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.top-fv__cont-btn .cmn-btn-anc {
  margin-left: 0;
}
.top-fv__cont-icon {
  max-width: max-content;
  width: 40%;
  position: absolute;
  bottom: 0;
  right: 15px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-fv__cont-icon {
    right: 30px;
  }
}
.top-fv__slider {
  width: 95%;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-fv__slider {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .top-fv__slider {
    width: 62%;
    height: 100%;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.top-fv__slider-txt {
  display: none;
  font-family: var(--sub_font-en);
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 70px;
  left: clamp(4rem, -0.6rem + 4.46vw, 8rem);
}
@media screen and (min-width: 1300px) {
  .top-fv__slider-txt {
    display: block;
  }
}
.top-fv__splide {
  height: 100%;
}
.top-fv__splide .splide__track {
  height: 100%;
}
.top-fv__splide .splide__slide img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 clamp(5rem, -3.7rem + 23.11vw, 20rem) 0;
  object-fit: cover;
}

.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);
}
@media screen and (min-width: 768px) {
  .top-concept__cont {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 50%;
    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: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .top-concept__cont {
    grid-template-areas: "top-concept__cont-head top-concept__cont-media01" "top-concept__cont-media02 top-concept__cont-info";
    gap: clamp(3rem, -5rem + 7.81vw, 5rem) clamp(5rem, -15rem + 19.53vw, 10rem);
  }
}
.top-concept__cont-head {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-head {
    grid-area: top-concept__cont-head;
    margin-bottom: 0;
  }
}
.top-concept__cont-head-subttl {
  font-family: var(--sub_font-jp);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .top-concept__cont-head-subttl {
    font-size: min(3.3vw, 4rem);
  }
}
.top-concept__cont-head-en {
  font-family: var(--sub_font-en);
  letter-spacing: 0.05em;
}
.top-concept__cont-media01 {
  width: 80%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-media01 {
    grid-area: top-concept__cont-media01;
    width: auto;
    margin: 0;
  }
}
@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, -100px);
  }
}
.top-concept__cont-media01-img img {
  border-radius: 30px;
}
.top-concept__cont-media02 {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-media02 {
    grid-area: top-concept__cont-media02;
    margin-bottom: 0;
  }
}
.top-concept__cont-media02-inr {
  padding-bottom: clamp(3rem, -1.8rem + 12.72vw, 8rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-media02-inr {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__cont-media02-inr {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}
.top-concept__cont-media02-img.--01 {
  max-width: 550px;
  width: 67%;
  margin-left: auto;
}
.top-concept__cont-media02-img.--02 {
  max-width: 370px;
  width: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-concept__cont-media02-img img {
  border-radius: 30px;
}
.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-concept__box {
  position: relative;
}
.top-concept__box-icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.top-concept__box-icon-item.--01 {
  width: 30%;
  top: -20px;
  right: 15px;
  transform: translateY(-100%);
}
@media screen and (min-width: 1024px) {
  .top-concept__box-icon-item.--01 {
    right: 12.5%;
  }
}
.top-concept__box-icon-item.--02 {
  width: 40%;
  top: 250px;
  left: -15px;
}
@media screen and (min-width: 1280px) {
  .top-concept__box-icon-item.--02 {
    left: max((1200px - 100vw) / 2, -240px);
  }
}
.top-concept__box-icon-item.--03 {
  width: 30%;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
}

.top-quality {
  background: url(/system_panel/uploads/images/bg_top-quality01.jpg) no-repeat center center/cover;
}
.top-quality__cont {
  max-width: 1440px;
  width: calc(100% - 30px);
  background-color: #faf9f9;
  margin: 0 15px;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-quality__cont {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
}
@media screen and (min-width: 1520px) {
  .top-quality__cont {
    margin: 0 auto;
  }
}
.top-quality__cont-icon-item {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.top-quality__cont-icon-item.--01 {
  top: calc(clamp(5rem, 3.1rem + 5.09vw, 7rem) * -1);
  left: 50%;
  transform: translateX(-50%);
}
.top-quality__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1050px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-quality__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-quality__item + .top-quality__item {
  margin-top: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
@media screen and (min-width: 768px) {
  .top-quality__item-info {
    max-width: 400px;
    flex: 1;
  }
}
.top-quality__item-info-head {
  padding-block: 70px 10px;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-quality__item-info-head {
    padding-block: 110px 10px;
  }
}
.top-quality__item-info-head-num {
  font-family: var(--sub_font-en);
  font-size: 14rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bc);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-quality__item-info-head-num {
    font-size: 20rem;
  }
}
.top-quality__item-info-head-ttl {
  font-family: var(--sub_font-jp);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .top-quality__item-info-head-ttl {
    font-size: 3rem;
  }
}
.top-quality__item-info-txt {
  letter-spacing: 0.05em;
}
.top-quality__item-media {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .top-quality__item-media {
    max-width: 540px;
    width: 50%;
  }
}
.top-quality__item-media-img {
  flex: 1;
}
.top-quality__item-media-img img {
  border-radius: 30px;
}
.top-quality__item-media-ttl {
  font-family: var(--sub_font-en);
  font-size: 1.6rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .top-quality__item-media-ttl {
    font-size: 1.8rem;
  }
}
.top-quality__item-icon {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: 0;
  right: -15px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-quality__item-icon {
    right: -40px;
  }
}
@media screen and (min-width: 1130px) {
  .top-quality__item-icon {
    right: max(50% - 50vw, -150px);
  }
}
@media screen and (min-width: 768px) {
  .top-quality__item:nth-of-type(2n) {
    flex-direction: row-reverse;
    margin-left: auto;
  }
}
.top-quality__item:nth-of-type(2n) .top-quality__item-media {
  flex-direction: row-reverse;
}
.top-quality__item:nth-of-type(2n) .top-quality__item-icon {
  right: auto;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .top-quality__item:nth-of-type(2n) .top-quality__item-icon {
    left: -40px;
  }
}
@media screen and (min-width: 1130px) {
  .top-quality__item:nth-of-type(2n) .top-quality__item-icon {
    left: max(50% - 50vw, -150px);
  }
}

.top-style {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-style__cont {
  position: relative;
}
.top-style__cont-icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.top-style__cont-icon-item.--01 {
  width: 30%;
  top: -20px;
  right: 15px;
}
@media screen and (min-width: 1024px) {
  .top-style__cont-icon-item.--01 {
    right: 12.5%;
  }
}
.top-style__box {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "top-style__box-txt" "top-style__box-media" "top-style__box-btn";
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .top-style__box {
    grid-template-columns: 1fr 350px;
    grid-template-areas: "top-style__box-txt top-style__box-btn" "top-style__box-media top-style__box-media";
    justify-content: space-between;
  }
}
.top-style__box-txt {
  grid-area: top-style__box-txt;
}
@media screen and (min-width: 1024px) {
  .top-style__box-txt {
    max-width: 710px;
  }
}
.top-style__box-txt-st {
  letter-spacing: 0.05em;
}
.top-style__box-media {
  grid-area: top-style__box-media;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(4, calc((100% - clamp(1rem, 0rem + 2.54vw, 2rem) * 3) / 4));
  grid-template-areas: "top-style__box-media-item01 top-style__box-media-item01 top-style__box-media-item04 top-style__box-media-item04" "top-style__box-media-item01 top-style__box-media-item01 top-style__box-media-item05 top-style__box-media-item05" "top-style__box-media-item02 top-style__box-media-item03 top-style__box-media-item05 top-style__box-media-item05";
  gap: clamp(1rem, 0rem + 2.54vw, 2rem);
  border-radius: 30px;
  overflow: hidden;
}
.top-style__box-media-item.--01 {
  grid-area: top-style__box-media-item01;
}
.top-style__box-media-item.--02 {
  grid-area: top-style__box-media-item02;
}
.top-style__box-media-item.--03 {
  grid-area: top-style__box-media-item03;
}
.top-style__box-media-item.--04 {
  grid-area: top-style__box-media-item04;
}
.top-style__box-media-item.--05 {
  grid-area: top-style__box-media-item05;
}
.top-style__box-media-item img {
  height: 100%;
  object-fit: cover;
}
.top-style__box-btn {
  grid-area: top-style__box-btn;
}

.top-menu {
  background: url(/system_panel/uploads/images/bg_top-menu01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-menu__cont-head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 1280px) {
  .top-menu__cont-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .top-menu__cont-head-ttl {
    flex: 1;
  }
}
.top-menu__cont-head-ttl.cmn-ttl {
  margin-bottom: 0;
}
@media screen and (min-width: 1280px) {
  .top-menu__cont-head-txt {
    width: 50%;
  }
}
.top-menu__cont-head-txt-st {
  letter-spacing: 0.05em;
}
.top-menu__cont-box {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  padding: clamp(3rem, 1.1rem + 5.09vw, 5rem) 15px;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-menu__cont-box-inr {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.top-menu__cont-box-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-box-list {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-menu__cont-box-item {
  max-width: 520px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-menu__cont-box-item {
    width: calc((100% - 30px) / 2);
  }
}
.top-menu__cont-box-item-table-tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 10px;
  border-top: dashed 1px #a4a4a4;
  padding-block: 15px;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-box-item-table-tr {
    padding-inline: 15px;
  }
}
.top-menu__cont-box-item-table-tr:last-of-type {
  border-bottom: dashed 1px #a4a4a4;
}
.top-menu__cont-box-item-table-th-txt {
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-box-item-table-th-txt {
    font-size: 1.8rem;
  }
}
.top-menu__cont-box-item-table-td {
  text-align: right;
  margin-left: auto;
}
.top-menu__cont-box-item-table-td-txt {
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .top-menu__cont-box-item-table-td-txt {
    font-size: 1.8rem;
  }
}
.top-menu__cont-box-txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--sc);
}

.top-firstvisit {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-firstvisit__box-icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.top-firstvisit__box-icon-item.--01 {
  width: 30%;
  bottom: calc(clamp(6rem, 2.2rem + 10.18vw, 10rem) * -1);
  right: max(50% - 50vw, -240px);
}
.top-firstvisit__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px 40px;
}
@media screen and (min-width: 768px) {
  .top-firstvisit__cont {
    flex-direction: row;
    justify-content: space-between;
  }
}
.top-firstvisit__cont-ttl.cmn-ttl {
  margin: 0;
}
.top-firstvisit__cont-ttl .cmn-ttl__en {
  font-size: 3.6rem;
}
@media screen and (min-width: 768px) {
  .top-firstvisit__cont-ttl .cmn-ttl__en {
    font-size: 5rem;
  }
}
.top-firstvisit__cont-ttl .cmn-ttl__jp {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .top-firstvisit__cont-ttl .cmn-ttl__jp {
    font-size: 1.8rem;
  }
}
.top-firstvisit__cont-info {
  max-width: 1000px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-firstvisit__cont-info {
    flex: 1;
    width: auto;
  }
}
.top-firstvisit__cont-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px clamp(3rem, -5rem + 7.81vw, 5rem);
}
@media screen and (min-width: 768px) {
  .top-firstvisit__cont-list {
    flex-direction: row;
    justify-content: center;
  }
}
.top-firstvisit__cont-item {
  max-width: 300px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  padding: clamp(2rem, 1rem + 2.54vw, 3rem) 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-firstvisit__cont-item {
    width: calc((100% - clamp(3rem, -5rem + 7.81vw, 5rem)) / 2);
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top-firstvisit__cont-item {
    width: calc((100% - clamp(3rem, -5rem + 7.81vw, 5rem) * 2) / 3);
  }
}
.top-firstvisit__cont-item-inr {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}
.top-firstvisit__cont-item-caption {
  font-family: var(--sub_font-en);
  font-size: 1.6rem;
  color: var(--mc);
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .top-firstvisit__cont-item-caption {
    font-size: 1.8rem;
  }
}
.top-firstvisit__cont-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 25px;
}
.top-firstvisit__cont-item-ttl {
  font-family: var(--sub_font-jp);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-firstvisit__cont-item-ttl {
    font-size: 2.1rem;
  }
}
.top-firstvisit__cont-item-txt {
  letter-spacing: 0.05em;
}

.top-owner {
  padding-top: clamp(8rem, 4.2rem + 10.18vw, 12rem);
}
.top-owner__cont-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .top-owner__cont-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .top-owner__cont-item-info {
    max-width: 600px;
    flex: 1;
  }
}
.top-owner__cont-item-info-head {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.top-owner__cont-item-info-head-name {
  font-family: var(--sub_font-jp);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-owner__cont-item-info-head-name {
    font-size: 3.6rem;
  }
}
.top-owner__cont-item-info-head-position {
  font-family: var(--sub_font-en);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--sc);
}
@media screen and (min-width: 768px) {
  .top-owner__cont-item-info-head-position {
    font-size: 1.8rem;
  }
}
.top-owner__cont-item-info-txt {
  letter-spacing: 0.05em;
}
.top-owner__cont-item-media {
  max-width: 500px;
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .top-owner__cont-item-media {
    width: 42%;
  }
}
.top-owner__cont-item-media-img img {
  border-radius: 30px;
}
.top-owner__cont-approach {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  padding: clamp(2rem, 1rem + 2.54vw, 3rem) 15px;
  margin-bottom: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
.top-owner__cont-approach-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-owner__cont-approach-inr {
    flex-direction: row;
  }
}
.top-owner__cont-approach-ttl {
  padding-bottom: 10px;
  border-bottom: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .top-owner__cont-approach-ttl {
    width: 180px;
    border-bottom: none;
    border-right: solid 1px #ccc;
    padding: 15px 15px 15px 0;
  }
}
.top-owner__cont-approach-ttl-st {
  font-family: var(--sub_font-en);
  font-size: 1.6rem;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .top-owner__cont-approach-ttl-st {
    font-size: 1.8rem;
  }
}
.top-owner__cont-approach-txt {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .top-owner__cont-approach-txt {
    flex: 1;
    padding: 15px 0 15px clamp(2rem, -1rem + 3.91vw, 4rem);
  }
}
.top-owner__cont-approach-txt-st {
  display: inline-block;
  font-size: 1.6rem;
  padding-left: 25px;
  margin-right: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-owner__cont-approach-txt-st {
    font-size: 1.8rem;
  }
}
.top-owner__cont-approach-txt-st::before {
  content: "●";
  color: var(--sc);
  position: absolute;
  top: 0;
  left: 0;
}
.top-owner__cont-icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.top-owner__cont-icon-item.--01 {
  width: 30%;
  bottom: calc(clamp(7rem, 3.2rem + 10.18vw, 11rem) * -1);
  right: 15px;
}
@media screen and (min-width: 1024px) {
  .top-owner__cont-icon-item.--01 {
    right: 12.5%;
  }
}

.top-news {
  padding-block: clamp(8rem, 4.2rem + 10.18vw, 12rem);
}
.top-news__cont {
  border: solid 5px var(--bc);
  padding: clamp(3rem, 1.1rem + 5.09vw, 5rem) 15px;
  position: relative;
  z-index: 1;
}
.top-news__cont-inr {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-news__cont-inr {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 180px 1fr;
    grid-template-areas: "top-news__ttl top-news__list" "top-news__btn top-news__list";
    gap: 25px clamp(4rem, 1.1rem + 7.63vw, 7rem);
  }
}
.top-news__cont-ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl {
    grid-area: top-news__ttl;
    margin-bottom: 0;
  }
}
.top-news__cont-ttl .cmn-ttl {
  margin-bottom: 0;
}
.top-news__cont-ttl .cmn-ttl__en {
  font-size: 3.6rem;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl .cmn-ttl__en {
    font-size: 5rem;
  }
}
.top-news__cont-ttl .cmn-ttl__jp {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl .cmn-ttl__jp {
    font-size: 1.8rem;
  }
}
.top-news__cont-list {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-list {
    grid-area: top-news__list;
    margin-bottom: 0;
  }
}
.top-news__cont-list .webgene-item {
  border-top: solid 1px #ccc;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .top-news__cont-list .webgene-item {
    padding: 15px;
  }
}
.top-news__cont-list .webgene-item:last-of-type {
  border-bottom: solid 1px #ccc;
}
.top-news__cont-list-item {
  display: flex;
  flex-wrap: wrap;
}
.top-news__cont-list-item-date {
  font-weight: 700;
  color: var(--mc);
}
.top-news__cont-list-item-cate {
  margin-left: 20px;
}
.top-news__cont-list-item-cate-str {
  display: inline-block;
  min-width: 100px;
  background-color: var(--bc);
  border-radius: 12px;
  font-size: 1.4rem;
  color: var(--mc);
  line-height: 25px;
  text-align: center;
  padding: 0 10px;
}
.top-news__cont-list-item-ttl {
  width: 100%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .top-news__cont-list-item-ttl {
    flex: 1;
    width: auto;
    margin-left: 40px;
  }
}
@media screen and (min-width: 768px) {
  .top-news__cont-btn {
    grid-area: top-news__btn;
  }
}

.top-ironohiroba {
  background-color: #fff;
  border-radius: clamp(2rem, -0.4rem + 6.47vw, 12rem) clamp(2rem, -0.4rem + 6.47vw, 12rem) 0 0;
  padding-block: clamp(8rem, 4.2rem + 10.18vw, 12rem);
  margin-top: calc(clamp(2rem, -0.4rem + 6.47vw, 12rem) * -1);
  position: relative;
  z-index: 1;
}
.top-ironohiroba__cont-ttl .cmn-ttl__en {
  font-size: min(12vw, 5rem);
}
@media screen and (min-width: 768px) {
  .top-ironohiroba__cont-ttl .cmn-ttl__en {
    font-size: 8rem;
  }
}
.top-ironohiroba__cont-subttl {
  font-family: var(--sub_font-jp);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .top-ironohiroba__cont-subttl {
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-ironohiroba__cont-subttl {
    text-align: center;
  }
}
.top-ironohiroba__cont-subttl strong {
  font-weight: 400;
}
.top-ironohiroba__cont-subttl strong br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .top-ironohiroba__cont-subttl strong br {
    display: block;
  }
}
.top-ironohiroba__cont-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .top-ironohiroba__cont-txt {
    text-align: center;
  }
}
.top-ironohiroba__cont-txt strong {
  font-weight: 400;
}
.top-ironohiroba__cont-txt strong br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .top-ironohiroba__cont-txt strong br {
    display: block;
  }
}
.top-ironohiroba__media {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "top-ironohiroba__media-img01 top-ironohiroba__media-img03" "top-ironohiroba__media-img01 top-ironohiroba__media-img02";
  justify-content: center;
  gap: 20px;
  padding-top: clamp(8rem, 4.2rem + 10.18vw, 12rem);
  position: relative;
}
@media screen and (min-width: 1280px) {
  .top-ironohiroba__media {
    display: block;
  }
}
.top-ironohiroba__media-img {
  max-width: max-content;
}
.top-ironohiroba__media-img.--01 {
  grid-area: top-ironohiroba__media-img01;
}
@media screen and (min-width: 1280px) {
  .top-ironohiroba__media-img.--01 {
    width: 25%;
    position: absolute;
    top: -50%;
    left: clamp(0rem, -6rem + 4.69vw, 3rem);
  }
}
.top-ironohiroba__media-img.--02 {
  grid-area: top-ironohiroba__media-img02;
}
@media screen and (min-width: 1280px) {
  .top-ironohiroba__media-img.--02 {
    margin: 0 auto;
  }
}
.top-ironohiroba__media-img.--03 {
  grid-area: top-ironohiroba__media-img03;
}
@media screen and (min-width: 1280px) {
  .top-ironohiroba__media-img.--03 {
    width: 25%;
    position: absolute;
    top: -30%;
    right: clamp(0rem, -6rem + 4.69vw, 3rem);
  }
}
.top-ironohiroba__media-img img {
  border-radius: 30px;
}

.concept-catch {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.concept-catch__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .concept-catch__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .concept-catch__item-info {
    width: 520px;
    padding-top: clamp(0rem, -9.1rem + 8.93vw, 8rem);
  }
}
.concept-catch__item-info-ttl {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.concept-catch__item-info-ttl-jp {
  font-family: var(--sub_font-jp);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .concept-catch__item-info-ttl-jp {
    font-size: 4rem;
  }
}
.concept-catch__item-info-ttl-en {
  font-family: var(--sub_font-en);
  letter-spacing: 0.05em;
  color: var(--sc);
}
.concept-catch__item-info-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .concept-catch__item-info-txt {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .concept-catch__item-media {
    max-width: 600px;
    flex: 1;
    margin: 0;
  }
}
.concept-catch__item-media-inr {
  padding-bottom: clamp(5rem, -2.6rem + 20.36vw, 13rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-catch__item-media-inr {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-catch__item-media-inr {
    margin-left: max((1280px - 100vw) / 2, -240px);
  }
}
.concept-catch__item-media-img {
  max-width: max-content;
}
.concept-catch__item-media-img.--01 {
  width: 65.5%;
  margin-left: auto;
}
.concept-catch__item-media-img.--02 {
  width: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.concept-catch__item-media-img img {
  border-radius: 30px;
}
.concept-catch__icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.concept-catch__icon-item.--01 {
  width: 30%;
  bottom: calc(clamp(12rem, 6.3rem + 15.27vw, 18rem) * -1);
  right: max(50% - 50vw, -140px);
}

.concept-feature {
  background: url(/system_panel/uploads/images/bg_top-quality01.jpg) no-repeat center center/cover;
}
.concept-feature__wrap {
  max-width: 1440px;
  width: calc(100% - 30px);
  background-color: #faf9f9;
  margin: 0 15px;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .concept-feature__wrap {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
}
@media screen and (min-width: 1520px) {
  .concept-feature__wrap {
    margin: 0 auto;
  }
}
.concept-feature__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px 50px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-feature__item {
    flex-direction: row;
    align-items: stretch;
  }
}
.concept-feature__item + .concept-feature__item {
  margin-top: clamp(8rem, 4.2rem + 10.18vw, 12rem);
}
@media screen and (min-width: 1024px) {
  .concept-feature__item-info {
    width: 50%;
  }
}
.concept-feature__item-info-head {
  padding-bottom: clamp(1.5rem, 0.1rem + 3.82vw, 3rem);
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  position: relative;
}
.concept-feature__item-info-head::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--sc);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .concept-feature__item-info-head::before {
    width: 70px;
  }
}
.concept-feature__item-info-head-ttl {
  font-family: var(--sub_font-jp);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .concept-feature__item-info-head-ttl {
    font-size: 3rem;
  }
}
.concept-feature__item-info-box + .concept-feature__item-info-box {
  margin-top: clamp(2.5rem, 1.1rem + 3.82vw, 4rem);
}
.concept-feature__item-info-box-ttl {
  font-family: var(--sub_font-jp);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--mc);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .concept-feature__item-info-box-ttl {
    font-size: 1.8rem;
  }
}
.concept-feature__item-info-box-txt {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .concept-feature__item-media {
    max-width: 550px;
    flex: 1;
  }
}
.concept-feature__item-media img {
  border-radius: 30px;
}
.concept-feature__item-media.--02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 0.1rem + 5.09vw, 4rem) 10px;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .concept-feature__item-media.--02 {
    max-width: none;
    width: auto;
    margin: 0;
  }
}
.concept-feature__item-media-cont {
  max-width: 270px;
  width: calc((100% - 10px) / 2);
}
.concept-feature__item-media-cont-txt {
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 15px;
}
.concept-feature__item-icon {
  max-width: max-content;
  width: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .concept-feature__item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}

.concept-beginner {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.concept-beginner__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .concept-beginner__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.concept-beginner__item {
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  padding: clamp(3rem, 2rem + 2.54vw, 4rem) 15px;
}
@media screen and (min-width: 768px) {
  .concept-beginner__item {
    width: calc((100% - clamp(3rem, 1.1rem + 5.09vw, 5rem)) / 2);
  }
}
.concept-beginner__item-inr {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.concept-beginner__item-head {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  position: relative;
  z-index: 1;
}
.concept-beginner__item-head-num {
  font-family: var(--sub_font-en);
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bc);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .concept-beginner__item-head-num {
    font-size: 14rem;
  }
}
.concept-beginner__item-head-ttl {
  font-family: var(--sub_font-jp);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
  padding: 40px 0 10px;
}
@media screen and (min-width: 768px) {
  .concept-beginner__item-head-ttl {
    font-size: 2.1rem;
    padding: 70px 0 20px;
  }
}
.concept-beginner__item-txt {
  letter-spacing: 0.05em;
}
.concept-beginner__icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.concept-beginner__icon-item.--01 {
  width: 40%;
  top: calc(clamp(6rem, 2.2rem + 10.18vw, 10rem) * -1);
  left: 50%;
  transform: translateX(-50%);
}
.concept-beginner__icon-item.--02 {
  width: 40%;
  top: 30%;
  right: max(50% - 50vw, -120px);
}
.concept-beginner__icon-item.--03 {
  width: 40%;
  bottom: calc(clamp(6rem, 2.2rem + 10.18vw, 10rem) * -1);
  left: max(50% - 50vw, -50px);
}

.iro-catch {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  position: relative;
}
.iro-catch::before {
  content: "";
  width: calc(100% - 20px);
  height: 80%;
  background-color: #f8f8f1;
  position: absolute;
  top: clamp(9rem, 4.2rem + 12.72vw, 14rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .iro-catch::before {
    max-width: 1300px;
    width: calc(100% - 60px);
    height: 70%;
  }
}
.iro-catch__cont {
  position: relative;
}
.iro-catch__cont-ttl {
  font-family: var(--sub_font-jp);
  font-size: min(7.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.1rem + 3.82vw, 4rem);
}
@media screen and (min-width: 768px) {
  .iro-catch__cont-ttl {
    font-size: min(4.5vw, 4rem);
  }
}
.iro-catch__cont-ttl strong {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .iro-catch__cont-ttl strong br {
    display: none;
  }
}
.iro-catch__cont-subttl {
  font-family: var(--sub_font-en);
  font-size: min(3.5vw, 1.4rem);
  letter-spacing: 0.05em;
  color: var(--sc);
  text-align: center;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .iro-catch__cont-subttl {
    font-size: 1.6rem;
  }
}
.iro-catch__cont-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .iro-catch__cont-txt {
    font-size: min(2vw, 1.8rem);
    text-align: center;
  }
}
.iro-catch__cont-icon {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 30px;
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 1440px) {
  .iro-catch__cont-icon {
    display: block;
  }
}
.iro-catch__cont-icon-item {
  max-width: max-content;
}
.iro-catch__cont-icon-item.--01 {
  width: 40%;
  margin-right: -15px;
}
@media screen and (min-width: 768px) {
  .iro-catch__cont-icon-item.--01 {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1440px) {
  .iro-catch__cont-icon-item.--01 {
    width: 23vw;
    margin: 0;
    position: absolute;
    top: 10%;
    right: max(50% - 50vw, -230px);
  }
}
.iro-catch__cont-icon-item-inr {
  max-width: 800px;
  flex: 1;
  padding-top: clamp(10rem, 0.5rem + 25.45vw, 20rem);
  margin-left: -15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .iro-catch__cont-icon-item-inr {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1440px) {
  .iro-catch__cont-icon-item-inr {
    width: clamp(50rem, -70rem + 83.33vw, 80rem);
    margin-top: calc(clamp(10rem, 0.5rem + 25.45vw, 20rem) * -1);
    margin-left: max(50% - 50vw, -360px);
  }
}
.iro-catch__cont-icon-item.--02 {
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .iro-catch__cont-icon-item.--02 {
    width: 63.75%;
  }
}
.iro-catch__cont-icon-item.--03 {
  width: 60%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .iro-catch__cont-icon-item.--03 {
    width: 46.25%;
  }
}
.iro-catch__cont-icon-item img {
  border-radius: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.iro-catch__cont-illust-item {
  max-width: max-content;
  position: absolute;
}
.iro-catch__cont-illust-item.--01 {
  width: 30%;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1440px) {
  .iro-catch__cont-illust-item.--01 {
    right: 200px;
  }
}
.iro-catch__cont-illust-item.--02 {
  top: 10%;
  left: max(50% - 50vw, -180px);
  z-index: -3;
}

.iro-awareness {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.iro-awareness__ttl.cmn-subttl {
  margin-bottom: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
.iro-awareness__ttl .cmn-subttl__en {
  font-size: min(3.5vw, 1.4rem);
}
@media screen and (min-width: 768px) {
  .iro-awareness__ttl .cmn-subttl__en {
    font-size: 1.6rem;
  }
}
.iro-awareness__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .iro-awareness__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.iro-awareness__item {
  max-width: 550px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  padding: 20px 15px;
}
@media screen and (min-width: 1024px) {
  .iro-awareness__item {
    width: calc((100% - 40px) / 2);
  }
}
.iro-awareness__item-inr {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 60px 1fr;
  grid-template-areas: "iro-awareness__item-icon iro-awareness__item-ttl" "iro-awareness__item-txt iro-awareness__item-txt";
  gap: 20px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .iro-awareness__item-inr {
    grid-template-columns: 100px 1fr;
    grid-template-areas: "iro-awareness__item-icon iro-awareness__item-ttl" "iro-awareness__item-icon iro-awareness__item-txt";
  }
}
.iro-awareness__item-icon {
  grid-area: iro-awareness__item-icon;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .iro-awareness__item-icon {
    align-self: center;
  }
}
.iro-awareness__item-ttl {
  grid-area: iro-awareness__item-ttl;
  align-self: center;
}
.iro-awareness__item-ttl-st {
  border-bottom: solid 2px var(--sc);
  font-family: var(--sub_font-jp);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
  padding-bottom: 10px;
}
.iro-awareness__item-txt {
  grid-area: iro-awareness__item-txt;
}
.iro-awareness__item-txt-st {
  letter-spacing: 0.05em;
}
.iro-awareness__icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.iro-awareness__icon-item.--01 {
  top: 10%;
  left: max(50% - 50vw, -140px);
}
.iro-awareness__icon-item.--02 {
  width: 30%;
  bottom: calc(clamp(6rem, 2.2rem + 10.18vw, 10rem) * -1);
  right: max(50% - 50vw, -200px);
}

.iro-activities {
  background: url(/system_panel/uploads/images/bg_iro-activities01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem) clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.iro-activities__item {
  background-color: #fff;
  padding: clamp(2.5rem, 1.1rem + 3.82vw, 4rem) 15px;
}
.iro-activities__item + .iro-activities__item {
  margin-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.iro-activities__item-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px 50px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .iro-activities__item-inr {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .iro-activities__item-info {
    flex: 1;
    padding-top: 20px;
  }
}
.iro-activities__item-info-ttl {
  padding-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  position: relative;
}
.iro-activities__item-info-ttl::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--sc);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .iro-activities__item-info-ttl::before {
    width: 70px;
  }
}
.iro-activities__item-info-ttl-st {
  font-family: var(--sub_font-jp);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .iro-activities__item-info-ttl-st {
    font-size: 3rem;
  }
}
.iro-activities__item-info-txt {
  letter-spacing: 0.05em;
}
.iro-activities__item-media {
  max-width: 550px;
}
@media screen and (min-width: 1024px) {
  .iro-activities__item-media {
    width: 45%;
  }
}
.iro-activities__item-media img {
  border-radius: 30px;
}
@media screen and (min-width: 1024px) {
  .iro-activities__item:nth-of-type(2n) .iro-activities__item-inr {
    flex-direction: row;
  }
}

.iro-contact {
  background: url(/system_panel/uploads/images/bg_iro-contact.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  margin-bottom: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.iro-contact__cont {
  max-width: 1000px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: clamp(5rem, 3.1rem + 5.09vw, 7rem) 15px;
  margin: 0 auto;
}
.iro-contact__cont-ttl {
  font-family: var(--sub_font-jp);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .iro-contact__cont-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .iro-contact__cont-ttl br {
    display: none;
  }
}
.iro-contact__cont-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .iro-contact__cont-txt {
    text-align: center;
  }
}
.iro-contact__cont-txt strong {
  font-weight: 400;
}
.iro-contact__cont-txt strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .iro-contact__cont-txt strong br {
    display: block;
  }
}

.menu-btn {
  padding-top: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.menu-btn__cont {
  background-color: #fff;
  padding: clamp(3rem, 1.1rem + 5.09vw, 5rem) 15px;
}
.menu-btn__cont-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .menu-btn__cont-list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }
}
.menu-btn__cont-item {
  max-width: 350px;
  width: 100%;
  background-color: var(--mc);
  border-radius: 45px;
}
@media screen and (min-width: 768px) {
  .menu-btn__cont-item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .menu-btn__cont-item {
    width: calc((100% - 50px) / 3);
  }
}
.menu-btn__cont-item-anc {
  display: block;
  text-align: center;
}
.menu-btn__cont-item-anc-st {
  font-family: var(--sub_font-jp);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 4.2857;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .menu-btn__cont-item-anc-st {
    font-size: 2.1rem;
  }
}

.menu-tax__txt {
  letter-spacing: 0.05em;
}

.menu-box {
  padding-top: 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;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .menu-box__cont-info {
    max-width: 680px;
    flex: 1;
  }
}
.menu-box__cont-info-block {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  padding: clamp(5rem, 3.1rem + 5.09vw, 7rem) 15px clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.menu-box__cont-info-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
.menu-box__cont-info-head-txt {
  display: inline-block;
  border: solid 1px #ccc;
  letter-spacing: 0.05em;
  color: var(--mc);
  padding: 9px 15px;
}
@media screen and (min-width: 768px) {
  .menu-box__cont-info-head-txt br {
    display: none;
  }
}
.menu-box__cont-info-table-tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 10px;
  border-bottom: solid 1px #ccc;
  padding: 15px 0;
}
@media screen and (min-width: 1024px) {
  .menu-box__cont-info-table-tr {
    padding: 20px 10px;
  }
}
.menu-box__cont-info-table-tr:first-of-type {
  padding-top: 0;
}
.menu-box__cont-info-table-th-st {
  letter-spacing: 0.05em;
}
.menu-box__cont-info-table-th-st.--01 {
  color: var(--mc);
}
.menu-box__cont-info-table-th-st.--02 {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .menu-box__cont-info-table-th-st.--02 {
    font-size: 1.4rem;
  }
}
.menu-box__cont-info-table-th-st.--02::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.menu-box__cont-info-table-td {
  text-align: right;
  margin-left: auto;
}
.menu-box__cont-info-table-td-st {
  font-family: var(--sub_font-en);
  letter-spacing: 0.05em;
  color: var(--mc);
}
.menu-box__cont-info-annotation {
  background-color: #faf9f9;
  padding: 20px 15px;
}
.menu-box__cont-info-annotation-inr {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
.menu-box__cont-info-annotation-campaign + .menu-box__cont-info-annotation-campaign {
  margin-top: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.menu-box__cont-info-annotation-campaign-ttl {
  font-weight: 700;
}
.menu-box__cont-info-annotation-item-txt {
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
}
.menu-box__cont-info-annotation-item-txt::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .menu-box__cont-media {
    max-width: 500px;
    width: 42%;
    padding-top: 25px;
  }
}
.menu-box__cont-media-inr {
  padding-bottom: clamp(10rem, -1.5rem + 30.53vw, 22rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .menu-box__cont-media-inr {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .menu-box__cont-media-inr {
    margin-right: max((1200px - 100vw) / 2, -200px);
  }
}
.menu-box__cont-media-img {
  max-width: max-content;
}
.menu-box__cont-media-img.--01 {
  width: 81%;
}
.menu-box__cont-media-img.--02 {
  width: 55%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.menu-box__cont-media-img img {
  border-radius: 30px;
}
@media screen and (min-width: 1024px) {
  .--reverse .menu-box__cont {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .--reverse .menu-box__cont .menu-box__cont-media-inr {
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .--reverse .menu-box__cont .menu-box__cont-media-inr {
    margin-left: max((1200px - 100vw) / 2, -200px);
  }
}
.--reverse .menu-box__cont .menu-box__cont-media-img.--01 {
  margin-left: auto;
}
.--reverse .menu-box__cont .menu-box__cont-media-img.--02 {
  right: auto;
  left: 0;
}
.menu-box__wrap {
  position: relative;
}
.menu-box__icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.menu-box__icon-item.--01 {
  width: 30%;
  top: 0;
  right: max(50% - 50vw, -200px);
}
.menu-box__icon-item.--02 {
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .menu-box__icon-item.--02 {
    right: 300px;
  }
}
.--reverse .menu-box__icon .menu-box__icon-item.--01 {
  right: auto;
  left: max(50% - 50vw, -200px);
}
.--reverse .menu-box__icon .menu-box__icon-item.--02 {
  right: auto;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .--reverse .menu-box__icon .menu-box__icon-item.--02 {
    left: 300px;
  }
}

.menu-caution {
  padding-block: clamp(5rem, 3.1rem + 5.09vw, 7rem) clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.menu-caution__box {
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  border: solid 5px var(--bc);
  text-align: center;
  padding: clamp(3rem, 2rem + 2.54vw, 4rem) 15px;
  margin: 0 auto;
}
.menu-caution__box-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .menu-caution__box-txt {
    font-size: 1.8rem;
  }
}
.menu-caution__box-txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .menu-caution__box-txt strong br {
    display: none;
  }
}

.staff-box {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.staff-box__cont {
  position: relative;
}
.staff-box__cont + .staff-box__cont {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.staff-box__cont-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .staff-box__cont-item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .staff-box__cont-item-info {
    max-width: 610px;
    flex: 1;
  }
}
.staff-box__cont-item-info-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0 15px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.staff-box__cont-item-info-head-name {
  font-family: var(--sub_font-jp);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .staff-box__cont-item-info-head-name {
    font-size: 3rem;
  }
}
.staff-box__cont-item-info-head-position {
  font-family: var(--sub_font-en);
  letter-spacing: 0.05em;
  color: var(--sc);
}
.staff-box__cont-item-info-head-reserve {
  width: 100%;
  margin-top: 5px;
}
.staff-box__cont-item-info-certification + .staff-box__cont-item-info-certification {
  margin-top: 20px;
}
.staff-box__cont-item-info-certification-ttl {
  font-size: 1.6rem;
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .staff-box__cont-item-info-certification-ttl {
    font-size: 1.8rem;
  }
}
.staff-box__cont-item-info-certification-ttl::before {
  content: "●";
  color: var(--sc);
  position: absolute;
  top: 0;
  left: 0;
}
.staff-box__cont-item-info-certification-txt {
  padding-left: 15px;
  position: relative;
}
.staff-box__cont-item-info-certification-txt::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.staff-box__cont-item-media {
  max-width: 500px;
}
@media screen and (min-width: 1024px) {
  .staff-box__cont-item-media {
    width: 42%;
  }
}
.staff-box__cont-item-media img {
  border-radius: 30px;
}
.staff-box__cont-message {
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  padding: clamp(3rem, 2rem + 2.54vw, 4rem) 15px;
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.staff-box__cont-message-inr {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}
.staff-box__cont-message-ttl {
  font-size: 1.6rem;
  color: var(--mc);
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .staff-box__cont-message-ttl {
    font-size: 1.8rem;
  }
}
.staff-box__cont-icon-item {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: calc(clamp(6rem, 2.2rem + 10.18vw, 10rem) * -1);
  z-index: -1;
}
.staff-box__cont-icon-item.--01 {
  left: max(50% - 50vw, -240px);
}
.staff-box__cont-icon-item.--02 {
  right: max(50% - 50vw, -240px);
}
@media screen and (min-width: 1024px) {
  .staff-box__cont:nth-of-type(2n) .staff-box__cont-item {
    flex-direction: row;
  }
}

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

.contact-booking {
  padding-top: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.contact-booking__btn-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-booking__btn-list {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .contact-booking__btn-item {
    width: calc((100% - 40px) / 3);
  }
}

.contact-mail {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.contact-mail__box {
  background-color: #fff;
  border-radius: 30px;
  padding: clamp(6rem, 4.1rem + 5.09vw, 8rem) 15px;
}
.contact-mail__box-inr {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.contact-mail__box-annotaiton {
  margin-bottom: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
@media screen and (min-width: 768px) {
  .contact-mail__box-annotaiton {
    text-align: center;
  }
}
.contact-mail__box-annotaiton-st {
  letter-spacing: 0.05em;
}
.contact-mail__box-annotaiton-st.--red {
  color: #cc0000;
}

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

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

.recruit .reserve-btn,
.recruit .ft-contact {
  display: none;
}