@charset "UTF-8";
:root {
  --base_font: "Zen Kaku Gothic New", sans-serif;
  --sub_font: "Shippori Mincho", serif;
  --sub_font02: "Cormorant", serif;
  --mc: #828974;
  --sc: #376244;
  --fc: #333;
  --bc: #4b616c;
  --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-btn__link {
  display: block;
  max-width: 300px;
  width: 100%;
  background-color: var(--mc);
  border-radius: 30px;
  position: relative;
}
.cmn-btn__link::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/12;
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.cmn-btn__link.--center {
  margin-inline: auto;
}
.cmn-btn__link-st {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 3.75;
  color: #fff;
  text-align: center;
}
.cmn-btn.--center .cmn-btn__link {
  margin-inline: auto;
}
.cmn-btn.--white .cmn-btn__link {
  border-bottom: solid 1px #fff;
}
.cmn-btn.--white .cmn-btn__link::before {
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
}
.cmn-btn.--white .cmn-btn__link-st {
  color: #fff;
}

.cmn-btn02__link {
  display: inline-block;
  border-bottom: solid 1px var(--mc);
  padding-bottom: 10px;
}
.cmn-btn02__link-st {
  width: 160px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 26px;
  color: var(--mc);
  position: relative;
}
.cmn-btn02__link-st::before {
  content: "";
  width: 26px;
  height: 26px;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.cmn-btn02.--center {
  text-align: center;
}
.cmn-btn02.--center .cmn-btn02__link {
  text-align: left;
}

.cmn-btn03 {
  width: 230px;
}
.cmn-btn03__st {
  border-bottom: solid 1px var(--mc);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--mc);
  padding-bottom: 10px;
  padding-right: 35px;
  position: relative;
}
.cmn-btn03__st::before {
  content: "";
  width: 26px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  transform: translateY(-50%);
}
.cmn-btn03.--right {
  margin-left: auto;
}
.cmn-btn03.--02 {
  width: 280px;
}

.cmn-ttl {
  text-align: center;
}
.cmn-ttl__main {
  font-family: var(--sub_font);
  font-size: min(7.3vw, 3.2rem);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .cmn-ttl__main {
    font-size: 4.2rem;
  }
}
.cmn-ttl__main.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-ttl__main.--br strong br {
    display: none;
  }
}
.cmn-ttl__sub {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.cmn-ttl.--left {
  text-align: left;
}
.cmn-ttl.--white .cmn-ttl__main, .cmn-ttl.--white .cmn-ttl__sub {
  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__main, .cmn-ttl.--vertical .cmn-ttl__sub {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

.cmn-ttl02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}
.cmn-ttl02__en {
  font-family: var(--sub_font02);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  color: var(--mc);
}
.cmn-ttl02__en.--bottom {
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
}
.cmn-ttl02__st {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: var(--mc);
}
.cmn-ttl02.--center {
  justify-content: center;
}

.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: 100%;
  background-color: #c97c5d;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .reserve-btn {
    width: auto;
    background-color: transparent;
    bottom: 50px;
    right: 15px;
    left: auto;
  }
}
.gjs-dashed .reserve-btn {
  z-index: 10000;
}
.reserve-btn__link {
  display: block;
  text-align: center;
}
.reserve-btn img {
  display: none;
}
@media screen and (min-width: 768px) {
  .reserve-btn img {
    display: block;
  }
}
.reserve-btn__txt {
  display: inline;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 4.286;
  color: #fff;
  padding-left: 45px;
  position: relative;
}
.reserve-btn__txt::before {
  content: "";
  width: 36px;
  height: 31px;
  background: url(/system_panel/uploads/images/icon_reserve01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .reserve-btn__txt {
    display: none;
  }
}

body.contact .reserve-btn {
  display: none !important;
}

.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;
}
.subhd {
  position: relative;
  padding-top: 0;
}
.subhd__img {
  width: 100%;
  max-height: 752px;
  height: 100vw;
  border-radius: 0 0 20px 20px;
}
@media screen and (min-width: 768px) {
  .subhd__img {
    width: 66.7%;
    height: 80vw;
    margin-right: clamp(5rem, -0.3rem + 6.94vw, 13rem);
    margin-top: 0;
    margin-left: auto;
  }
}
.subhd__img.ojf::before {
  display: none;
}
.subhd__img img {
  border-radius: 0 0 20px 20px;
}
.subhd__catch {
  padding: 40px 15px;
  margin-top: 65px;
  position: relative;
  z-index: 1;
}
.subhd__catch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .subhd__catch {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 1;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .subhd__catch {
    left: clamp(1.5rem, -67.5rem + 53.91vw, 36rem);
  }
}
.subhd__catch-en {
  font-family: var(--sub_font02);
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.075em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  /*text-shadow:
    0 0 5px #fff,
    0 0 15px rgba(255, 255, 255, 0.9),
    0 0 30px rgba(255, 255, 255, 0.7),
    0 0 50px rgba(255, 255, 255, 0.4);*/
}
.subhd__catch-main {
  font-family: var(--sub_font);
  font-size: min(7vw, 4.6rem);
  letter-spacing: 0.05em;
  line-height: 1.304;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  /*text-shadow:
    0 0 5px #fff,
    0 0 15px rgba(255, 255, 255, 0.9),
    0 0 30px rgba(255, 255, 255, 0.7),
    0 0 50px rgba(255, 255, 255, 0.4);*/
}
.subhd__catch-main.--small {
  font-size: min(6.2vw, 4.6rem);
}
.subhd__catch-sub {
  font-family: var(--sub_font);
  font-size: min(3.6vw, 1.6rem);
  letter-spacing: 0.05em;
  /*text-shadow:
    0 0 5px #fff,
    0 0 15px rgba(255, 255, 255, 0.9),
    0 0 30px rgba(255, 255, 255, 0.7),
    0 0 50px rgba(255, 255, 255, 0.4);*/
}
@media screen and (min-width: 768px) {
  .subhd__catch-sub {
    font-size: 1.8rem;
  }
}
.subhd__line {
  max-width: max-content;
  width: 100%;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .subhd__line {
    top: 75px;
  }
}
@media screen and (min-width: 1024px) {
  .subhd__line {
    top: 85px;
  }
}
.subhd__line02 {
  max-width: max-content;
  width: 100%;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .subhd__line02 {
    top: 210px;
  }
}
@media screen and (min-width: 1024px) {
  .subhd__line02 {
    top: 165px;
  }
}

.faq__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(1.5rem, 1rem + 1.27vw, 2rem);
  border-top: solid 1px #ccc;
  padding: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.faq__item:last-of-type {
  border-bottom: solid 1px #ccc;
}
.faq__item-q {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
  position: relative;
}
.faq__item-q-txt {
  display: flex;
  align-items: center;
  padding-left: 40px;
  position: relative;
}
.faq__item-q-txt::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/17;
  background: url(/system_panel/uploads/images/icon_Q.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.faq__item-q-txt-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #828974;
}
.faq__item-a {
  width: 100%;
}
.faq__item-a-txt {
  display: flex;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  padding-left: 40px;
  margin: 0 auto;
  position: relative;
}
.faq__item-a-txt::before {
  content: "";
  width: 18px;
  aspect-ratio: 18/16;
  background: url(/system_panel/uploads/images/icon_A.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.faq__item-a-st {
  letter-spacing: 0.025em;
}

.cmn-cnt01 {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.cmn-cnt01:nth-of-type(2n) {
  background: url(/system_panel/uploads/images/bg_green02.jpg) no-repeat center center/cover;
}

.cmn-2column {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .cmn-2column {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.cmn-2column__info {
  max-width: 500px;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__info {
    flex: 1;
  }
}
.cmn-2column__info-ttl {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.cmn-2column__info-txt {
  letter-spacing: 0.05em;
}
.cmn-2column__media {
  max-width: 600px;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__media {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-2column__media-inr {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-2column__media-inr {
    margin-right: calc((1200px - 100vw) / 2);
  }
}
.cmn-2column__media img {
  border-radius: 15px;
}

@media screen and (min-width: 1024px) {
  .cmn-cnt01:nth-of-type(2n + 1) .cmn-2column {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-cnt01:nth-of-type(2n + 1) .cmn-2column__media-inr {
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-cnt01:nth-of-type(2n + 1) .cmn-2column__media-inr {
    margin-left: calc((1200px - 100vw) / 2);
  }
}

.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: 15px 0;
  }
}
.cmn-table__th {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    width: 130px;
    padding: 0 15px 0 40px;
    margin-bottom: 0;
    position: relative;
  }
}
.cmn-table__th-st {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    flex: 1;
    padding: 0 40px 0 0;
  }
  .cmn-table__td-st {
    letter-spacing: 0.05em;
    line-height: 1.563;
  }
}
.cmn-table .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-table .cmn-table02__tr {
    padding: 10px 20px 10px 0;
  }
}
.cmn-table .cmn-table02__tr:first-of-type {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .cmn-table .cmn-table02__th {
    padding-left: 10px;
  }
}
.cmn-table .cmn-table02__th-st {
  letter-spacing: 0.05em;
}
.cmn-table .cmn-table02__th-st.--01 {
  position: relative;
  padding-left: 20px;
}
.cmn-table .cmn-table02__th-st.--01::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.cmn-table .cmn-table02__td {
  min-width: 90px;
  margin-left: auto;
}
.cmn-table .cmn-table02__td-st {
  letter-spacing: 0.05em;
}

/* --- header ---*/
.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1;
  transition: all 0.4s;
  z-index: 1000;
}
.hd.fixed {
  backdrop-filter: blur(10px);
}
.hd-cnt {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding: 20px 10px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .hd-cnt {
    padding: 30px;
  }
}
.hd-name {
  z-index: 1000;
}
.hd-logo {
  max-width: max-content;
  width: clamp(20rem, 18.2rem + 4.92vw, 27.6rem);
}
.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: #fff;
  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: 1024px) {
  .hd-nav {
    position: relative;
    left: 0;
    justify-content: flex-end;
    flex-direction: row;
    gap: clamp(2rem, -3.7rem + 5.58vw, 7rem);
    padding: 0;
    max-width: none;
    height: 100%;
    background: transparent;
    opacity: 1;
    visibility: visible;
  }
}
.hd-nav__list {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-direction: column-reverse;
  gap: 6px;
}
@media screen and (min-width: 1024px) {
  .hd-nav__list {
    flex-direction: column;
    background-color: #fff;
    border-radius: 25px;
    padding: 10px clamp(3.5rem, -4.5rem + 7.81vw, 5.5rem);
  }
}
.hd-nav .nav-list {
  display: block;
}
@media screen and (min-width: 1024px) {
  .hd-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(1rem, -3rem + 3.91vw, 2rem);
  }
}
.hd-nav .nav-list__item {
  padding: 0;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .hd-nav .nav-list__item.pc-none {
    display: none;
  }
}
.hd-nav .nav-list__link {
  position: relative;
  display: block;
  padding: 16px 0;
  transition: 0.4s;
}
@media screen and (min-width: 1024px) {
  .hd-nav .nav-list__link {
    padding: 0;
  }
}
.hd-nav .nav-list__link-st {
  display: block;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .hd-nav .nav-list__link-st {
    font-size: min(1.4vw, 1.6rem);
  }
}
.hd-nav__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 220px;
  aspect-ratio: 220/60;
  border: solid 1px var(--mc);
  border-radius: 30px;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-link {
    width: 60px;
    aspect-ratio: 1;
    border: none;
    background-color: var(--mc);
    border-radius: 50%;
  }
}
.hd-nav__btn-icon {
  width: 22px;
  aspect-ratio: 22/16;
}
.hd-nav__btn-icon.--01 {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-icon.--01 {
    display: block;
  }
}
.hd-nav__btn-icon.--02 {
  display: block;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-icon.--02 {
    display: none;
  }
}
.hd-nav__btn-st {
  color: var(--mc);
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-st {
    display: none;
  }
}
.hd-toggle {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: var(--mc);
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  z-index: 1002;
}
@media screen and (min-width: 1024px) {
  .hd-toggle {
    display: none;
  }
}
.hd-toggle__txt {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hd-toggle__inr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -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: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hd.open .hd-toggle__line:nth-child(2) {
  left: 50%;
  width: 0;
}
.hd.open .hd-toggle__line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.cmn-cnt {
  display: flex;
  flex-direction: column;
  border-top: solid 1px #ccc;
}
@media screen and (min-width: 1024px) {
  .cmn-cnt {
    flex-direction: row;
  }
}

.cmn-faq {
  padding-block: clamp(6rem, 5rem + 2.59vw, 10rem);
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-faq {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-faq {
    width: 50%;
  }
}
.cmn-faq__inr {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "cmn-faq__ttl" "cmn-faq__cnt" "cmn-faq__btn";
  gap: clamp(4rem, 3rem + 2.54vw, 5rem) 30px;
  max-width: 660px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cmn-faq__inr {
    grid-template-columns: 1fr 160px;
    grid-template-areas: "cmn-faq__ttl cmn-faq__btn" "cmn-faq__cnt cmn-faq__cnt";
  }
}
.cmn-faq .cmn-ttl {
  grid-area: cmn-faq__ttl;
}
@media screen and (min-width: 1024px) {
  .cmn-faq .cmn-ttl__main {
    font-size: clamp(3rem, -1.8rem + 4.69vw, 4.2rem);
  }
}
.cmn-faq .faq__list {
  grid-area: cmn-faq__cnt;
}
.cmn-faq__btn {
  grid-area: cmn-faq__btn;
}
@media screen and (min-width: 768px) {
  .cmn-faq__btn {
    align-self: flex-end;
  }
}
.cmn-faq__btn .cmn-btn02 {
  text-align: center;
}
.cmn-faq__btn .cmn-btn02__link-st {
  text-align: left;
}

.cmn-contact {
  width: 100%;
  background: url(/system_panel/uploads/images/bg_ft-contact01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 5rem + 2.59vw, 10rem);
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-contact {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-contact {
    width: 50%;
  }
}
.cmn-contact__inr {
  max-width: 660px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .cmn-contact .cmn-ttl__main {
    font-size: clamp(3rem, -1.8rem + 4.69vw, 4.2rem);
  }
}
.cmn-contact__txt {
  letter-spacing: 0.05em;
  margin-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.cmn-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
  margin-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.cmn-contact__btn-item {
  max-width: 660px;
  width: 100%;
}
.cmn-contact__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  margin-inline: auto;
}
.cmn-contact__btn-txt {
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 4;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .cmn-contact__btn-txt {
    line-height: 4.762;
  }
}
.cmn-contact__btn-item.--web .cmn-contact__btn-link {
  background-color: #c97c5d;
}
.cmn-contact__btn-item.--web .cmn-contact__btn-icon {
  width: 36px;
  height: 31px;
}
.cmn-contact__btn-item.--web .cmn-contact__btn-txt {
  position: relative;
}
.cmn-contact__btn-item.--web .cmn-contact__btn-txt::before {
  content: "";
  width: 36px;
  height: 31px;
  background: url(/system_panel/uploads/images/icon_reserve01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: -85px;
  transform: translateY(-50%);
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-link {
  border: solid 2px var(--mc);
  background-color: #fff;
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-icon {
  width: 22px;
  height: 18px;
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-txt {
  color: var(--mc);
  position: relative;
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-txt::before {
  content: "";
  width: 30px;
  height: 22px;
  background: url(/system_panel/uploads/images/icon_mail02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: -55px;
  transform: translateY(-50%);
}

.ft-cont {
  background-color: var(--mc);
  padding-block: 50px 100px;
}
@media screen and (min-width: 768px) {
  .ft-cont {
    padding-bottom: 270px;
  }
}
.ft-cont__inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .ft-cont__inr {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1280px) {
  .ft-cont__inr {
    gap: 50px;
  }
}
.ft-cont__group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .ft-cont__group {
    align-items: stretch;
  }
}
.ft-cont__head {
  display: flex;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.ft-cont__logo {
  max-width: max-content;
  width: clamp(22rem, 19.7rem + 6.19vw, 27.6rem);
}
.ft-cont__sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  position: relative;
  top: -4px;
}
@media screen and (min-width: 768px) {
  .ft-cont__sns {
    top: -2px;
  }
}
.ft-cont__data-item {
  display: flex;
  gap: 15px;
}
.ft-cont__data-label {
  min-width: 80px;
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__data-value {
  flex: 1;
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__menu {
  display: none;
}
@media screen and (min-width: 1024px) {
  .ft-cont__menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 50px;
  }
}
.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 + .ft-cont__menu-nav-item {
  margin-top: 5px;
}
.ft-cont__menu-nav-item-st {
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__copyright {
  text-align: right;
  margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.ft-cont__copyright-st {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.top-fv {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-fv__splide {
    width: 66.7%;
    margin-right: clamp(5rem, -0.3rem + 6.94vw, 13rem);
    margin-top: 0;
    margin-left: auto;
  }
}
.top-fv__splide .splide__slide {
  max-height: 90svh;
  height: min(90vw, 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%;
  border-radius: 0 0 20px 20px;
  object-fit: cover;
}
.top-fv__catch {
  padding: 40px 15px;
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .top-fv__catch {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 1;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .top-fv__catch {
    left: clamp(1.5rem, -43.5rem + 35.16vw, 24rem);
  }
}
.top-fv__catch-main {
  font-family: var(--sub_font);
  font-size: clamp(4.5rem, 3.7rem + 2.27vw, 8rem);
  letter-spacing: 0.05em;
  line-height: 1.375;
}
.top-fv__catch-sub {
  font-family: var(--sub_font);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.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;
}
.top-fv__line {
  max-width: max-content;
  width: 100%;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .top-fv__line {
    top: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .top-fv__line {
    top: 120px;
  }
}

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

.top-concept {
  padding-top: clamp(6rem, 2.7rem + 8.84vw, 14rem);
}
.top-concept__cnt {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "top-concept__info" "top-concept__btn" "top-concept__media";
  gap: 30px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-concept__cnt {
    grid-template-rows: auto 1fr;
    grid-template-columns: min(40%, 340px) 1fr;
    grid-template-areas: "top-concept__media top-concept__info" "top-concept__media top-concept__btn";
    gap: 30px clamp(3rem, -5rem + 7.81vw, 10rem);
  }
}
.top-concept__info {
  grid-area: top-concept__info;
}
@media screen and (min-width: 1024px) {
  .top-concept__info {
    padding-top: clamp(0rem, -11.4rem + 11.16vw, 10rem);
  }
}
.top-concept__ttl {
  font-family: var(--sub_font);
  font-size: min(7vw, 4rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 1024px) {
  .top-concept__ttl {
    font-size: clamp(4rem, -4rem + 7.81vw, 6rem);
  }
}
.top-concept__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}
.top-concept__media {
  grid-area: top-concept__media;
  max-width: max-content;
  width: 70%;
}
@media screen and (min-width: 1024px) {
  .top-concept__media {
    width: auto;
  }
}
.top-concept__media-ph {
  margin-left: -15px;
}
@media screen and (min-width: 768px) {
  .top-concept__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__media-ph {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.top-concept__media-ph img {
  border-radius: 0 20px 20px 0;
}
.top-concept__btn {
  grid-area: top-concept__btn;
}
.top-concept__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: 0;
  right: -15px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-concept__illust {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__illust {
    right: max(50% - 50vw, -120px);
  }
}

.top-concerns {
  padding-top: clamp(6rem, 3.1rem + 7.73vw, 13rem);
  position: relative;
}
.top-concerns::before {
  content: "";
  width: 100%;
  height: 135%;
  background: url(/system_panel/uploads/images/bg_top-concerns01.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.top-concerns__ttl {
  text-align: center;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-concerns__ttl-st {
  font-family: var(--sub_font);
  font-size: min(6vw, 3rem);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-concerns__ttl-st {
    font-size: clamp(3rem, 0rem + 3.91vw, 4rem);
  }
}
.top-concerns__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .top-concerns__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.top-concerns__item {
  max-width: 380px;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .top-concerns__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-concerns__item {
    width: calc((100% - 60px) / 3);
  }
}
.top-concerns__media img {
  border-radius: 20px;
}
.top-concerns__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 380/160;
  background: url(/system_panel/uploads/images/bg_top-concerns02.png) no-repeat center center/contain;
  margin-top: -30px;
  position: relative;
  z-index: 1;
}
.top-concerns__info::before {
  content: "";
  width: clamp(2.5rem, -3.5rem + 5.86vw, 4rem);
  aspect-ratio: 40/60;
  background: url(/system_panel/uploads/images/icon_top-concerns01.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 20px;
}
.top-concerns__info-txt {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .top-concerns__info-txt {
    font-size: clamp(1.4rem, -0.2rem + 1.56vw, 1.8rem);
  }
}

.top-counseling {
  padding-top: clamp(6rem, 3.1rem + 7.73vw, 13rem);
  position: relative;
}
.top-counseling__ttl {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-counseling__cnt {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "top-counseling__info" "top-counseling__btn" "top-counseling__media";
  gap: 30px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-counseling__cnt {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr min(47%, 550px);
    grid-template-areas: "top-counseling__info top-counseling__media" "top-counseling__btn top-counseling__media";
    gap: 50px clamp(3rem, -5rem + 7.81vw, 10rem);
  }
}
.top-counseling__info {
  grid-area: top-counseling__info;
}
.top-counseling__info-ttl {
  font-family: var(--sub_font);
  font-size: min(9.5vw, 4rem);
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .top-counseling__info-ttl {
    font-size: clamp(4rem, -4rem + 7.81vw, 6rem);
  }
}
.top-counseling__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-counseling__list {
  display: flex;
  flex-wrap: wrap;
}
.top-counseling__item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 190px;
  width: calc((100% + 20px) / 3);
  aspect-ratio: 1;
  border: solid 1px #c97c5d;
  border-radius: 50%;
}
.top-counseling__item:not(:first-of-type) {
  margin-left: -10px;
}
.top-counseling__item-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.3rem, 0.8rem + 1.27vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #c97c5d;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .top-counseling__item-txt {
    font-size: clamp(1.6rem, 0.8rem + 0.78vw, 1.8rem);
  }
}
.top-counseling__media {
  grid-area: top-counseling__media;
  max-width: max-content;
  width: 80%;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .top-counseling__media {
    width: auto;
    margin: 0;
  }
}
.top-counseling__media-ph {
  margin-right: -15px;
}
@media screen and (min-width: 768px) {
  .top-counseling__media-ph {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-counseling__media-ph {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.top-counseling__media-ph img {
  border-radius: 20px 0 0 20px;
}
.top-counseling__btn {
  grid-area: top-counseling__btn;
}
.top-counseling__line {
  max-width: max-content;
  width: 100%;
  position: absolute;
  top: calc(57px + clamp(4rem, 2.1rem + 5.09vw, 6rem) + clamp(6rem, 3.1rem + 7.73vw, 13rem));
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .top-counseling__line {
    top: calc(35px + clamp(4rem, 2.1rem + 5.09vw, 6rem) + clamp(6rem, 3.1rem + 7.73vw, 13rem));
  }
}

.top-shop {
  padding-top: clamp(6rem, -1rem + 18.78vw, 23rem);
  position: relative;
  z-index: 2;
}
.top-shop__cnt {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "top-shop__info" "top-shop__btn" "top-shop__media";
  gap: 30px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-shop__cnt {
    grid-template-rows: auto 1fr;
    grid-template-columns: min(50%, 600px) 1fr;
    grid-template-areas: "top-shop__media top-shop__info" "top-shop__media top-shop__btn";
    gap: 50px clamp(3rem, -25rem + 27.34vw, 10rem);
  }
}
.top-shop__info {
  grid-area: top-shop__info;
}
.top-shop__ttl {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.top-shop__catch {
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.top-shop__catch .cmn-ttl__main {
  font-size: clamp(2.8rem, 2rem + 2.16vw, 4.2rem);
}
@media screen and (min-width: 1024px) {
  .top-shop__catch .cmn-ttl__main {
    font-size: clamp(3.6rem, 1.2rem + 2.34vw, 4.2rem);
  }
}
.top-shop__txt {
  letter-spacing: 0.05em;
}
.top-shop__media {
  grid-area: top-shop__media;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .top-shop__media {
    width: auto;
    margin: 0;
  }
}
.top-shop__media-inr {
  padding-bottom: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-shop__media-inr {
    padding-bottom: clamp(8rem, 3.4rem + 4.46vw, 12rem);
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-shop__media-inr {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}
.top-shop__media-ph {
  max-width: max-content;
}
.top-shop__media-ph.--01 {
  width: 75%;
  margin-left: auto;
}
.top-shop__media-ph.--02 {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top-shop__media-ph.--02 {
    width: 40%;
  }
}
.top-shop__media-ph img {
  border-radius: 20px;
}
.top-shop__btn {
  grid-area: top-shop__btn;
}

.top-menu {
  background: url(/system_panel/uploads/images/bg_top-menu01.png) no-repeat top center/cover;
  padding-block: clamp(6rem, 3.5rem + 6.63vw, 12rem);
  position: relative;
  z-index: 1;
}
.top-menu__cnt {
  position: relative;
  z-index: 1;
}
.top-menu__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-menu__head .cmn-ttl__main {
  font-size: clamp(2.4rem, 1.4rem + 2.77vw, 4.2rem);
}
.top-menu__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .top-menu__list {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
.top-menu__item {
  max-width: 580px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-menu__item {
    width: calc((100% - 40px) / 2);
  }
}
.top-menu__media {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-menu__media img {
  border-radius: 20px;
}
.top-menu__info-ttl {
  font-family: var(--sub_font);
  font-size: clamp(2.2rem, 1.4rem + 2.04vw, 3rem);
  letter-spacing: 0.05em;
  padding-left: 45px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-menu__info-ttl {
    font-size: min(2.6vw, 3rem);
  }
}
.top-menu__info-ttl::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background-color: var(--mc);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top-menu__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.top-menu__icon {
  max-width: max-content;
  width: 30%;
  position: absolute;
  top: calc(clamp(4rem, 1.9rem + 5.52vw, 9rem) * -1);
  left: 0;
  z-index: -1;
}
.top-menu__ribbon {
  max-width: max-content;
  width: 70%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(50%);
  z-index: -1;
}

.top-news {
  background-color: #fff;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-news__cont {
  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: 160px 1fr;
    grid-template-areas: "top-news__ttl top-news__list" "top-news__btn top-news__list";
    gap: 40px clamp(4rem, 1.5rem + 6.63vw, 10rem);
  }
}
.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__main {
  font-size: clamp(2.4rem, 1.7rem + 1.85vw, 3.6rem);
}
.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(--mc);
  border-radius: 12px;
  font-size: 1.4rem;
  color: #fff;
  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-news__cont-btn .cmn-btn__link {
  max-width: 120px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-btn .cmn-btn__link {
    margin-left: 0;
  }
}
.top-news__cont-btn .cmn-btn__link::before {
  top: calc(50% - 5px);
}

.breadcrumb-cnt {
  padding-top: 45px;
}
.breadcrumb-cnt__list {
  display: flex;
  gap: 25px;
}
.breadcrumb-cnt__item {
  position: relative;
}
.breadcrumb-cnt__item::before {
  content: ">";
  position: absolute;
  top: 40%;
  right: -12.5px;
  transform: translate(50%, -50%);
}
.breadcrumb-cnt__item:last-of-type::before {
  content: none;
}
.breadcrumb-cnt__item-link {
  display: block;
}
.breadcrumb-cnt__item-st {
  font-size: min(3.4vw, 1.6rem);
  letter-spacing: 0.05em;
  color: #5c6150;
}
.breadcrumb-cnt__item-st.--current {
  color: #5c6150;
}

.concept-msg {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.concept-msg__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 90px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-msg__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .concept-msg__info {
    max-width: 490px;
    flex: 1;
    padding-top: 40px;
  }
}
.concept-msg__ttl {
  margin-bottom: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
}
.concept-msg__catch {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.concept-msg__catch.--left {
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .concept-msg__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.concept-msg__txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.concept-msg__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .concept-msg__media {
    max-width: 600px;
    width: 50%;
  }
}
.concept-msg__media-inr {
  position: relative;
  padding-bottom: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
@media screen and (min-width: 1024px) {
  .concept-msg__media-inr {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-msg__media-inr {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}
.concept-msg__media-ph {
  max-width: max-content;
}
.concept-msg__media-ph img {
  border-radius: 20px;
}
.concept-msg__media-ph.--01 {
  width: 75%;
  margin-left: auto;
}
.concept-msg__media-ph.--02 {
  position: absolute;
  width: 50%;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .concept-msg__media-ph.--02 {
    width: 40%;
  }
}
.concept-msg__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: 21%;
  right: -15px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .concept-msg__illust {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-msg__illust {
    right: max(50% - 50vw, -120px);
  }
}

.concept-story {
  padding-top: clamp(8rem, 0.4rem + 20.36vw, 16rem);
  padding-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
  position: relative;
}
.concept-story::before {
  content: "";
  width: 100%;
  height: 102%;
  background: url(/system_panel/uploads/images/img_concept-bg01.jpg) no-repeat center center/cover;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
.concept-story__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 90px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-story__cnt {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .concept-story__info {
    max-width: 490px;
    flex: 1;
    padding-top: 40px;
  }
}
.concept-story__ttl {
  margin-bottom: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
  text-align: center;
}
.concept-story__ttl.--left {
  text-align: left;
}
.concept-story__catch {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
  text-align: center;
}
.concept-story__catch.--left {
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .concept-story__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.concept-story__txt {
  text-align: center;
}
.concept-story__txt.--left {
  text-align: left;
}
.concept-story__txt-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.concept-story__media {
  width: 80%;
  margin-right: -15px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .concept-story__media {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-story__media {
    max-width: 600px;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .concept-story__media-ph {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-story__media-ph {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.concept-story__media-ph img {
  border-radius: 20px 0 0 20px;
}

.concept-qual {
  padding-top: clamp(6rem, 3.1rem + 7.63vw, 9rem);
}
.concept-qual__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.concept-qual__ttl {
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
  text-align: center;
}
.concept-qual__catch {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .concept-qual__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.concept-qual__txt {
  text-align: center;
}
.concept-qual__txt-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.concept-qual__txt-st.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .concept-qual__txt-st.--br strong br {
    display: none;
  }
}
.concept-qual__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 40px;
}
@media screen and (min-width: 768px) {
  .concept-qual__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 580px;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .concept-qual__list {
    max-width: none;
    margin-inline: 0;
  }
}
.concept-qual__item {
  max-width: 270px;
  width: 100%;
  position: relative;
  border: solid 1px #c97c5d;
  border-radius: 20px;
  padding: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .concept-qual__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .concept-qual__item {
    width: calc((100% - 120px) / 4);
  }
}
.concept-qual__item-icon {
  text-align: center;
  margin-bottom: 15px;
}
.concept-qual__item-icon.--01 {
  height: 52px;
}
.concept-qual__item-icon.--01 img {
  aspect-ratio: 59/52;
}
.concept-qual__item-icon.--02 {
  height: 51px;
}
.concept-qual__item-icon.--02 img {
  aspect-ratio: 59/51;
}
.concept-qual__item-icon.--03 {
  height: 52px;
}
.concept-qual__item-icon.--03 img {
  aspect-ratio: 1;
}
.concept-qual__item-icon.--04 {
  height: 58px;
}
.concept-qual__item-icon.--04 img {
  aspect-ratio: 50/58;
}
.concept-qual__item-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.714;
  font-weight: 500;
  text-align: center;
}

.concept-profile {
  padding-top: clamp(8rem, 0.4rem + 20.36vw, 16rem);
  padding-bottom: clamp(10rem, 1.4rem + 22.9vw, 19rem);
  position: relative;
}
.concept-profile::before {
  content: "";
  width: 100%;
  height: 96%;
  background: url(/system_panel/uploads/images/img_concept-bg02.jpg) no-repeat center center/cover;
  bottom: 0;
  position: absolute;
  z-index: -1;
}
.concept-profile__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 90px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-profile__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .concept-profile__info {
    max-width: 600px;
    flex: 1;
  }
}
.concept-profile__ttl {
  margin-bottom: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
  text-align: center;
}
.concept-profile__ttl.--left {
  text-align: left;
}
.concept-profile__catch {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  text-align: center;
}
.concept-profile__catch.--left {
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .concept-profile__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.concept-profile__table {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.concept-profile__msg {
  background-color: #fff;
  padding: 20px;
}
.concept-profile__msg-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #828974;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.concept-profile__msg-name {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #828974;
  text-align: right;
}
.concept-profile__media {
  width: 80%;
  margin-left: -15px;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .concept-profile__media {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-profile__media {
    max-width: 600px;
    width: 42%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .concept-profile__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-profile__media-ph {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.concept-profile__media-ph img {
  border-radius: 0 20px 20px 0;
}

.concept-profile__table-tr:first-child {
  border-top: none;
}

.menu-sleep {
  padding-top: clamp(4rem, 2.8rem + 3.31vw, 7rem);
  position: relative;
}
.menu-sleep__ttl {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.menu-sleep__cnt {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "menu-sleep__info" "menu-sleep__btn" "menu-sleep__media";
  gap: 30px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .menu-sleep__cnt {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr min(47%, 550px);
    grid-template-areas: "menu-sleep__media menu-sleep__info" "menu-sleep__media menu-sleep__btn";
    gap: 55px clamp(3rem, -5rem + 7.81vw, 10rem);
  }
}
.menu-sleep__info {
  grid-area: menu-sleep__info;
}
@media screen and (min-width: 1024px) {
  .menu-sleep__info {
    padding-top: 40px;
  }
}
.menu-sleep__info-ttl {
  font-family: var(--sub_font);
  font-size: clamp(3rem, 1.9rem + 3.05vw, 4.2rem);
  line-height: 1.5;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .menu-sleep__info-ttl {
    /*font-size: cl(40, 60, 1024, 1280);*/
  }
}
.menu-sleep__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 2.6rem + 3.82vw, 5.5rem);
}
.menu-sleep__list {
  display: flex;
  flex-wrap: wrap;
}
.menu-sleep__item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 190px;
  width: calc((100% + 20px) / 3);
  aspect-ratio: 1;
  border: solid 1px #c97c5d;
  border-radius: 50%;
}
.menu-sleep__item:not(:first-of-type) {
  margin-left: -10px;
}
.menu-sleep__item-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.3rem, 0.8rem + 1.27vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #c97c5d;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .menu-sleep__item-txt {
    font-size: clamp(1.6rem, 0.8rem + 0.78vw, 1.8rem);
  }
}
.menu-sleep__media {
  grid-area: menu-sleep__media;
  max-width: max-content;
  width: 80%;
  margin-right: auto;
}
@media screen and (min-width: 1024px) {
  .menu-sleep__media {
    width: auto;
    margin: 0;
  }
}
.menu-sleep__media-ph {
  margin-left: -15px;
}
@media screen and (min-width: 768px) {
  .menu-sleep__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .menu-sleep__media-ph {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.menu-sleep__media-ph img {
  border-radius: 0 20px 20px 0;
}
.menu-sleep__btn {
  grid-area: menu-sleep__btn;
}
.menu-sleep__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: 21%;
  right: -15px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .menu-sleep__illust {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .menu-sleep__illust {
    right: max(50% - 50vw, -120px);
  }
}

.cmn-price {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  padding-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.cmn-price__cnt {
  border: solid 1px #828974;
  border-radius: 20px;
  padding-block: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  padding-inline: 15px;
}
.cmn-price__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-price__ttl-en {
  font-family: var(--sub_font02);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(1rem, 0.5rem + 1.27vw, 1.5rem);
  text-align: center;
}
.cmn-price__ttl-jp {
  font-family: var(--sub_font);
  font-size: min(7vw, 3.2rem);
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cmn-price__ttl-jp {
    font-size: 3.6rem;
  }
}
.cmn-price__table {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.cmn-price__table-tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: solid 1px #ccc;
  padding: 15px;
}
.cmn-price__table-th {
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .cmn-price__table-th {
    flex: 1;
  }
}
.cmn-price__table-th-st {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.cmn-price__table-th-st.--small {
  font-size: 1.4rem;
  color: #828974;
}
.cmn-price__table-td {
  min-width: 80px;
  margin-left: auto;
  display: flex;
}
.cmn-price__table-td-st {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.cmn-price__annotation {
  max-width: 800px;
  width: 100%;
  text-align: left;
  margin-top: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cmn-price__annotation {
    text-align: center;
  }
}
.cmn-price__annotation-st {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.cmn-menu {
  background: url(/system_panel/uploads/images/bg_top-menu01.png) no-repeat top center/cover;
  padding-block: clamp(6rem, 3.5rem + 6.63vw, 12rem);
  position: relative;
  z-index: 1;
}
.cmn-menu__cnt {
  position: relative;
  z-index: 1;
}
.cmn-menu__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 1024px) {
  .cmn-menu__head .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.cmn-menu__txt {
  text-align: center;
  margin-top: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.cmn-menu__txt-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.cmn-menu__txt-st.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-menu__txt-st.--br strong br {
    display: none;
  }
}
.cmn-menu__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .cmn-menu__list {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
.cmn-menu__item {
  max-width: 580px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .cmn-menu__item {
    width: calc((100% - 40px) / 2);
  }
}
.cmn-menu__media {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-menu__media img {
  border-radius: 20px;
}
.cmn-menu__info-ttl {
  font-family: var(--sub_font);
  font-size: clamp(2.2rem, 1.4rem + 2.04vw, 3rem);
  letter-spacing: 0.05em;
  padding-left: 45px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .cmn-menu__info-ttl {
    font-size: min(2.6vw, 3rem);
  }
}
.cmn-menu__info-ttl::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background-color: var(--mc);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cmn-menu__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.cmn-menu__icon {
  max-width: max-content;
  width: 30%;
  position: absolute;
  top: calc(clamp(4rem, 1.9rem + 5.52vw, 9rem) * -1);
  left: 0;
  z-index: -1;
}
.cmn-menu__ribbon {
  max-width: max-content;
  width: 70%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(50%);
  z-index: -1;
}

.menu-first {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
  position: relative;
}
.menu-first::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_menu-first.jpg) no-repeat center center/cover;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
.menu-first__cnt {
  padding-block: clamp(4rem, 0.2rem + 10.18vw, 8rem);
  background-color: rgba(255, 255, 255, 0.8);
  padding-inline: 15px;
}
.menu-first__ttl {
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
}
.menu-first__ttl-en {
  font-family: var(--sub_font02);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  color: var(--mc);
  text-align: center;
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
}
.menu-first__ttl-jp {
  font-family: var(--sub_font);
  font-size: min(6.5vw, 3.2rem);
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .menu-first__ttl-jp {
    font-size: min(4.4vw, 3.6rem);
  }
}
.menu-first__ttl-jp.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .menu-first__ttl-jp.--br strong br {
    display: none;
  }
}
.menu-first__txt {
  font-size: min(4vw, 1.6rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .menu-first__txt {
    font-size: 1.8rem;
  }
}
.menu-first__txt.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .menu-first__txt.--br strong br {
    display: none;
  }
}
.menu-first__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-first__btn-link {
  max-width: 300px;
  width: 100%;
  background-color: var(--mc);
  border-radius: 30px;
  position: relative;
}
.menu-first__btn-link::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/12;
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.menu-first__btn-link-st {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 3.75;
  color: #fff;
  text-align: center;
}

.contact-reserve {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.contact-reserve.--bottom {
  padding-bottom: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.contact-reserve__head {
  margin-bottom: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
.contact-reserve__ttl {
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
  text-align: center;
}
.contact-reserve__catch {
  text-align: center;
}
.contact-reserve__btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .contact-reserve__btn {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.contact-reserve__btn-item {
  max-width: 380px;
  width: 100%;
  border: solid 1px #828974;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .contact-reserve__btn-item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .contact-reserve__btn-item {
    /*width: calc((100% - 60px) / 3);*/
  }
}
.contact-reserve__btn-item-link {
  display: block;
  text-align: center;
  padding-block: clamp(2.5rem, 2rem + 1.27vw, 3rem);
}
.contact-reserve__btn-item-link-st {
  display: inline-block;
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  color: #828974;
  padding-left: 50px;
  margin-bottom: 15px;
  position: relative;
}
.contact-reserve__btn-item-link-st::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact-reserve__btn-item-link-st.--instagram::before {
  width: 30px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/img_contact-icon01.png) no-repeat center center/contain;
}
.contact-reserve__btn-item-link-st.--line::before {
  width: 28px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/img_contact-icon02.png) no-repeat center center/contain;
}
.contact-reserve__btn-item-link-st.--contact::before {
  width: 30px;
  aspect-ratio: 30/22;
  background: url(/system_panel/uploads/images/img_contact-icon03.png) no-repeat center center/contain;
}
.contact-reserve__btn-item-link-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.contact-reserve__txt {
  text-align: center;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.contact-reserve__txt-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.contact-reserve__txt-st.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-reserve__txt-st.--br strong br {
    display: none;
  }
}

.contact-mail {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
.contact-mail::before {
  content: "";
  position: absolute;
  background: url(/system_panel/uploads/images/img_contact-bg01.png) no-repeat center top/cover;
  width: 100%;
  height: 95%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.contact-mail__txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  padding-left: 20px;
  position: relative;
}
.contact-mail__txt::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.contact-privacy {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  background: #f0eee9;
}

.counseling-sleep {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.counseling-sleep__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 90px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .counseling-sleep__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .counseling-sleep__info {
    max-width: 560px;
    flex: 1;
  }
}
.counseling-sleep__ttl {
  margin-bottom: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
}
.counseling-sleep__catch {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .counseling-sleep__catch .cmn-ttl__main {
    font-size: min(3.5vw, 4.2rem);
  }
}
.counseling-sleep__catch.--left {
  text-align: left;
}
.counseling-sleep__txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.counseling-sleep__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .counseling-sleep__media {
    max-width: 600px;
    width: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .counseling-sleep__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .counseling-sleep__media-ph {
    margin-left: max((1200px - 100vw) / 2, -120px);
  }
}
.counseling-sleep__media-ph img {
  border-radius: 20px;
}

.counseling-reason {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.counseling-reason__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.counseling-reason__ttl {
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
  text-align: center;
}
.counseling-reason__catch {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .counseling-reason__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.counseling-reason__txt {
  text-align: center;
}
.counseling-reason__txt-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.counseling-reason__txt-st.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .counseling-reason__txt-st.--br strong br {
    display: none;
  }
}
.counseling-reason__list {
  border: solid 1px #828974;
  border-radius: 20px;
  padding-block: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
  padding-inline: 15px;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.counseling-reason__list:last-of-type {
  margin-bottom: 0;
}
.counseling-reason__item {
  max-width: 1060px;
  width: 100%;
  margin-inline: auto;
}
.counseling-reason__item-q {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
}
.counseling-reason__item-q::before {
  content: "";
  width: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/img_counseling-reason-icon.png) no-repeat center center/contain;
  position: absolute;
  top: clamp(1.05rem, 0.9rem + 0.51vw, 1.25rem);
  left: 0;
}
.counseling-reason__item-a {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}

.counseling-approach {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.counseling-approach__head {
  margin-bottom: clamp(4rem, 0.2rem + 10.18vw, 8rem);
}
.counseling-approach__ttl {
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
  text-align: center;
}
.counseling-approach__catch {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .counseling-approach__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.counseling-approach__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px 50px;
}
@media screen and (min-width: 768px) {
  .counseling-approach__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.counseling-approach__item {
  max-width: 340px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .counseling-approach__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .counseling-approach__item {
    width: calc((100% - 80px) / 3);
  }
}
.counseling-approach__item-icon {
  max-width: 220px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.counseling-approach__item-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}

.counseling-gene {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
.counseling-gene__line {
  max-width: max-content;
  width: 100%;
  position: absolute;
  bottom: 75%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .counseling-gene__line {
    bottom: 38%;
  }
}
@media screen and (min-width: 1280px) {
  .counseling-gene__line {
    bottom: -20%;
  }
}
.counseling-gene__head {
  margin-bottom: clamp(4rem, 0.2rem + 10.18vw, 8rem);
}
.counseling-gene__ttl {
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
  text-align: center;
}
.counseling-gene__catch {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .counseling-gene__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.counseling-gene__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 15px;
}
@media screen and (min-width: 768px) {
  .counseling-gene__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.counseling-gene__item {
  max-width: 390px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .counseling-gene__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .counseling-gene__item {
    width: calc((100% - 20px) / 3);
  }
}
.counseling-gene__item-media {
  max-width: 390px;
  width: 100%;
  margin-bottom: clamp(2rem, 0.6rem + 3.82vw, 3.5rem);
}
.counseling-gene__item-media img {
  border-radius: 20px;
}
.counseling-gene__item-info {
  padding-inline: 15px;
}
.counseling-gene__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
}
.counseling-gene__item-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}

.counseling-qual {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  padding-bottom: clamp(8rem, 2.3rem + 15.27vw, 14rem);
  position: relative;
}
.counseling-qual::before {
  content: "";
  position: absolute;
  background: url(/system_panel/uploads/images/icon_counseling-bg01.png) no-repeat center center/cover;
  width: 100%;
  height: 91%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .counseling-qual::before {
    height: 77%;
  }
}
.counseling-qual__head {
  margin-bottom: clamp(4rem, 0.2rem + 10.18vw, 8rem);
}
.counseling-qual__ttl {
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
  text-align: center;
}
.counseling-qual__catch {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  text-align: center;
}
.counseling-qual__txt {
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .counseling-qual__txt {
    text-align: center;
  }
}
.counseling-qual__txt-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .counseling-qual__txt-st {
    font-size: min(2vw, 1.6rem);
  }
}
.counseling-qual__txt-st.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .counseling-qual__txt-st.--br strong br {
    display: none;
  }
}
.counseling-qual__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 45px 60px;
}
@media screen and (min-width: 768px) {
  .counseling-qual__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.counseling-qual__item {
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .counseling-qual__item {
    width: calc((100% - 60px) / 2);
  }
}
.counseling-qual__item-media {
  max-width: 500px;
  width: 100%;
}
.counseling-qual__item-media img {
  border-radius: 20px 20px 0 0;
}
.counseling-qual__item-info {
  padding-top: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
  padding-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
  padding-inline: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.counseling-qual__item-ttl {
  font-family: var(--sub_font);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: clamp(1rem, 0.5rem + 1.27vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .counseling-qual__item-ttl {
    font-size: min(2.5vw, 2.1rem);
  }
}
.counseling-qual__item-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}

.hydrogen-about {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.hydrogen-about__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 90px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .hydrogen-about__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .hydrogen-about__info {
    max-width: 560px;
    flex: 1;
  }
}
.hydrogen-about__ttl {
  margin-bottom: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
}
.hydrogen-about__catch {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .hydrogen-about__catch .cmn-ttl__main {
    font-size: min(3.8vw, 4.2rem);
  }
}
.hydrogen-about__catch.--left {
  text-align: left;
}
.hydrogen-about__txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.hydrogen-about__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .hydrogen-about__media {
    max-width: 600px;
    width: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .hydrogen-about__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-about__media-ph {
    margin-left: max((1200px - 100vw) / 2, -120px);
  }
}
.hydrogen-about__media-ph img {
  border-radius: 20px;
}
.hydrogen-about__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.hydrogen-about__illust.--01 {
  top: -7%;
  right: -15px;
}
@media screen and (min-width: 768px) {
  .hydrogen-about__illust.--01 {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-about__illust.--01 {
    right: max(50% - 50vw, -200px);
  }
}
.hydrogen-about__illust.--02 {
  bottom: -25%;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .hydrogen-about__illust.--02 {
    left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-about__illust.--02 {
    left: max(50% - 50vw, -200px);
  }
}

.hydrogen-effects {
  padding-top: clamp(8rem, 3.2rem + 12.72vw, 13rem);
  padding-bottom: clamp(8rem, -4.4rem + 33.08vw, 21rem);
  position: relative;
}
.hydrogen-effects::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_hydrogen-bg01.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.hydrogen-effects__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.hydrogen-effects__ttl {
  margin-bottom: 1.2rem;
  text-align: center;
}
.hydrogen-effects__catch {
  text-align: center;
}
.hydrogen-effects__catch .cmn-ttl__main {
  font-size: min(6.4vw, 3.2rem);
}
@media screen and (min-width: 1024px) {
  .hydrogen-effects__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.hydrogen-effects__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 10px;
}
@media screen and (min-width: 768px) {
  .hydrogen-effects__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.hydrogen-effects__item {
  max-width: 390px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hydrogen-effects__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-effects__item {
    width: calc((100% - 20px) / 3);
  }
}
.hydrogen-effects__item-media {
  max-width: 390px;
  width: 100%;
  margin-bottom: clamp(2rem, 0.6rem + 3.82vw, 3.5rem);
}
.hydrogen-effects__item-media img {
  border-radius: 20px;
}
.hydrogen-effects__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  text-align: center;
}
.hydrogen-effects__note {
  margin-top: clamp(2rem, 1rem + 2.54vw, 3rem);
  text-align: center;
}
.hydrogen-effects__note-st {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.hydrogen-target {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.hydrogen-target__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.hydrogen-target__ttl {
  margin-bottom: 1.2rem;
  text-align: center;
}
.hydrogen-target__catch {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .hydrogen-target__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.hydrogen-target__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 35px 45px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .hydrogen-target__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.hydrogen-target__item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  width: 55%;
  aspect-ratio: 1;
  border: solid 1px #c97c5d;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .hydrogen-target__item {
    width: calc((100% - 45px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-target__item {
    width: calc((100% - 90px) / 3);
  }
}
.hydrogen-target__item-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #c97c5d;
  text-align: center;
}
.hydrogen-target__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.hydrogen-target__illust.--01 {
  top: 0%;
  right: -15px;
}
@media screen and (min-width: 768px) {
  .hydrogen-target__illust.--01 {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-target__illust.--01 {
    right: max(50% - 50vw, -120px);
  }
}
.hydrogen-target__illust.--02 {
  bottom: 0;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .hydrogen-target__illust.--02 {
    left: -40px;
    bottom: -35%;
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-target__illust.--02 {
    left: 50px;
  }
}

.hydrogen-menu {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  padding-bottom: clamp(8rem, 2.3rem + 15.27vw, 14rem);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.hydrogen-menu::before {
  content: "";
  width: 100%;
  height: 98%;
  background: url(/system_panel/uploads/images/img_hydrogen-bg02.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.hydrogen-menu__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.hydrogen-menu__ttl {
  margin-bottom: 1.2rem;
  text-align: center;
}
.hydrogen-menu__catch {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .hydrogen-menu__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.hydrogen-menu__item {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.hydrogen-menu__media {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.hydrogen-menu__media img {
  border-radius: 20px;
}
.hydrogen-menu__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px 60px;
}
.hydrogen-menu__info-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.2rem + 1.53vw, 2.4rem);
  letter-spacing: 0.05em;
  padding-left: 40px;
  position: relative;
}
.hydrogen-menu__info-ttl::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background-color: #828974;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hydrogen-menu__info-btn {
  width: 230px;
}
.hydrogen-menu__info-btn-st {
  border-bottom: solid 1px #828974;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #828974;
  padding-bottom: 10px;
  position: relative;
}
.hydrogen-menu__info-btn-st::before {
  content: "";
  width: 26px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  transform: translateY(-50%);
}

.headspa-service {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.headspa-service::before {
  content: "";
  width: 100%;
  height: 62%;
  background: url(/system_panel/uploads/images/img_headspa-bg01.png) no-repeat center center/cover;
  position: absolute;
  bottom: -3%;
  left: 0;
  z-index: -3;
}
.headspa-service__wrap {
  position: relative;
}
.headspa-service__wrap:not(:first-child) {
  margin-top: clamp(6rem, -0.7rem + 17.81vw, 13rem);
}
@media screen and (min-width: 1024px) {
  .headspa-service__wrap:nth-child(even) .headspa-service__cnt {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .headspa-service__wrap:nth-child(even) .headspa-service__media-ph {
    margin-left: 0;
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .headspa-service__wrap:nth-child(even) .headspa-service__media-ph {
    margin-left: 0;
    margin-right: max((1200px - 100vw) / 2, -120px);
  }
}
.headspa-service__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 90px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .headspa-service__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .headspa-service__info {
    max-width: 500px;
    flex: 1;
  }
}
.headspa-service__ttl {
  margin-bottom: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
}
.headspa-service__catch {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.headspa-service__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.headspa-service__catch.--left {
  text-align: left;
}
.headspa-service__txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.headspa-service__menu {
  margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.headspa-service__menu-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
  margin-bottom: clamp(1rem, 0rem + 2.54vw, 2rem);
}
.headspa-service__menu-ttl-jp {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.2rem + 1.53vw, 2.4rem);
  letter-spacing: 0.05em;
  padding-left: 40px;
  position: relative;
}
.headspa-service__menu-ttl-jp::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background-color: #828974;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.headspa-service__menu-ttl-en {
  font-family: var(--sub_font);
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  color: #828974;
  align-self: flex-end;
}
.headspa-service__table {
  max-width: 500px;
  width: 100%;
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .headspa-service__table {
    margin-inline: auto;
  }
}
.headspa-service__table-td {
  min-width: auto;
}
.headspa-service__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .headspa-service__media {
    max-width: 600px;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .headspa-service__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .headspa-service__media-ph {
    margin-left: max((1200px - 100vw) / 2, -120px);
  }
}
.headspa-service__media-ph img {
  border-radius: 20px;
}
.headspa-service__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.headspa-service__illust.--01 {
  top: 0;
  right: -15px;
}
@media screen and (min-width: 768px) {
  .headspa-service__illust.--01 {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .headspa-service__illust.--01 {
    right: max(50% - 50vw, -185px);
  }
}
.headspa-service__illust.--02 {
  bottom: -10%;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .headspa-service__illust.--02 {
    left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .headspa-service__illust.--02 {
    left: max(50% - 50vw, -185px);
  }
}
.headspa-service__illust.--03 {
  bottom: -3%;
  right: -15px;
}
@media screen and (min-width: 768px) {
  .headspa-service__illust.--03 {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .headspa-service__illust.--03 {
    right: max(50% - 50vw, -220px);
  }
}

.headspa-care {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
.headspa-care__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.headspa-care__ttl {
  margin-bottom: 1.2rem;
  text-align: center;
}
.headspa-care__catch {
  text-align: center;
}
.headspa-care__catch .cmn-ttl__main {
  font-size: min(6.4vw, 3.2rem);
}
@media screen and (min-width: 1024px) {
  .headspa-care__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.headspa-care__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 15px;
}
@media screen and (min-width: 768px) {
  .headspa-care__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.headspa-care__item {
  max-width: 390px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .headspa-care__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .headspa-care__item {
    width: calc((100% - 20px) / 3);
  }
}
.headspa-care__item-media {
  max-width: 390px;
  width: 100%;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.headspa-care__item-media img {
  border-radius: 20px;
}
.headspa-care__item-info {
  padding-inline: 15px;
}
.headspa-care__item-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.headspa-care__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.headspa-care__illust.--01 {
  top: 18%;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .headspa-care__illust.--01 {
    left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .headspa-care__illust.--01 {
    left: max(50% - 50vw, -120px);
  }
}

.hydrogen-target02 {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.hydrogen-target02__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.hydrogen-target02__ttl {
  margin-bottom: 1.2rem;
  text-align: center;
}
.hydrogen-target02__catch {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .hydrogen-target02__catch .cmn-ttl__main {
    font-size: 3.6rem;
  }
}
.hydrogen-target02__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 35px 45px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .hydrogen-target02__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 475px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-target02__list {
    max-width: none;
  }
}
.hydrogen-target02__item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  width: 55%;
  aspect-ratio: 1;
  border: solid 1px #c97c5d;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .hydrogen-target02__item {
    width: calc((100% - 45px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-target02__item {
    width: calc((100% - 135px) / 4);
  }
}
.hydrogen-target02__item-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #c97c5d;
  text-align: center;
}
.hydrogen-target02__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.hydrogen-target02__illust.--02 {
  bottom: -8%;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .hydrogen-target02__illust.--02 {
    left: -40px;
    bottom: -35%;
  }
}
@media screen and (min-width: 1280px) {
  .hydrogen-target02__illust.--02 {
    left: max(50% - 50vw, -180px);
  }
}

.first-care {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  position: relative;
}
.first-care__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.first-care__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.first-care__catch {
  text-align: center;
}
.first-care__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.first-care__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 15px;
}
@media screen and (min-width: 768px) {
  .first-care__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.first-care__item {
  max-width: 390px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .first-care__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .first-care__item {
    width: calc((100% - 20px) / 3);
  }
}
.first-care__item-media {
  max-width: 390px;
  width: 100%;
  margin-bottom: clamp(2rem, 0.6rem + 3.82vw, 3.5rem);
}
.first-care__item-media img {
  border-radius: 20px;
}
.first-care__item-info {
  padding-inline: 10px;
}
.first-care__item-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}
.first-care__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.first-care__illust.--01 {
  top: 18%;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .first-care__illust.--01 {
    left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .first-care__illust.--01 {
    left: max(50% - 50vw, -120px);
  }
}

.first-flow {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  padding-bottom: clamp(8rem, -4.4rem + 33.08vw, 21rem);
  position: relative;
}
.first-flow::before {
  content: "";
  width: 100%;
  height: 90%;
  background: url(/system_panel/uploads/images/icon_first-bg01.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.first-flow__head {
  margin-bottom: clamp(4rem, 0.2rem + 10.18vw, 8rem);
}
.first-flow__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.first-flow__catch {
  text-align: center;
}
.first-flow__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.first-flow__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 25px;
}
@media screen and (min-width: 768px) {
  .first-flow__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 610px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .first-flow__list {
    max-width: none;
    gap: 25px;
  }
}
.first-flow__item {
  max-width: 280px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  padding-bottom: clamp(3rem, 0.6rem + 6.36vw, 5.5rem);
  padding-inline: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .first-flow__item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .first-flow__item {
    width: calc((100% - 75px) / 4);
  }
}
.first-flow__item-inr {
  max-width: 230px;
  width: 100%;
  margin-inline: auto;
}
.first-flow__item-num {
  height: 60px;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .first-flow__item-num {
    height: 66px;
  }
}
.first-flow__item-icon {
  height: 70px;
  text-align: center;
  margin-bottom: 25px;
}
.first-flow__item-icon.--01 img {
  aspect-ratio: 68/70;
}
.first-flow__item-icon.--02 img {
  aspect-ratio: 71/70;
}
.first-flow__item-icon.--03 img {
  aspect-ratio: 77/70;
}
.first-flow__item-icon.--04 img {
  aspect-ratio: 77/68;
}
.first-flow__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}
.first-flow__item-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}

.first-voice {
  margin-top: calc(clamp(6rem, 1.2rem + 12.72vw, 11rem) * -1);
  padding-bottom: clamp(8rem, 2.3rem + 15.27vw, 14rem);
  position: relative;
  z-index: 1;
}
.first-voice__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.first-voice__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.first-voice__catch {
  text-align: center;
}
.first-voice__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.first-voice__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 40px;
}
@media screen and (min-width: 1024px) {
  .first-voice__list {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.first-voice__item {
  max-width: 580px;
  width: 100%;
  border: solid 1px #ccc;
  border-radius: 20px;
  padding: clamp(3rem, 2rem + 2.54vw, 4rem) 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .first-voice__item {
    width: calc((100% - 40px) / 2);
  }
}
.first-voice__item-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  gap: 30px 50px;
  max-width: 515px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .first-voice__item-inr {
    flex-direction: row;
    justify-content: space-between;
  }
}
.first-voice__item-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .first-voice__item-info {
    flex: 1;
    width: auto;
  }
}
.first-voice__item-info-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(2rem, 1.5rem + 1.27vw, 2.5rem);
}
.first-voice__item-info-name {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: auto;
}
.first-voice__item-media {
  max-width: 120px;
  width: 36%;
  aspect-ratio: 1;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .first-voice__item-media {
    width: auto;
  }
}

.shop-overview {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  position: relative;
}
.shop-overview__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.shop-overview__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.shop-overview__catch {
  text-align: center;
}
.shop-overview__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.shop-overview__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 1024px) {
  .shop-overview__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
    gap: 70px;
  }
}
.shop-overview__info {
  max-width: 500px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .shop-overview__info {
    width: auto;
    flex: 1;
  }
}
.shop-overview__media {
  max-width: 600px;
}
@media screen and (min-width: 1024px) {
  .shop-overview__media {
    width: 50%;
  }
}
.shop-overview__media img {
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .shop-overview__table-th {
    width: 170px;
    padding: 0 15px 0 50px;
  }
}
.shop-overview__table-td-st.--icon {
  position: relative;
  padding-left: 35px;
}
.shop-overview__table-td-st.--icon::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/img_shop-icon05.png) no-repeat center center/contain;
  position: absolute;
  top: 5px;
  left: 0;
  z-index: -1;
}

.shop-mood {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  padding-bottom: clamp(10rem, -8.1rem + 48.35vw, 29rem);
  position: relative;
}
.shop-mood::before {
  content: "";
  width: 100%;
  height: 92%;
  background: url(/system_panel/uploads/images/img_shop-bg01.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.shop-mood__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.shop-mood__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.shop-mood__catch {
  text-align: center;
}
.shop-mood__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}

.shop-slider {
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.shop-slider .itemlist-slider__splide .splide__slide img {
  display: block;
  max-height: 420px;
  width: auto;
  height: calc((40svh - var(--hd_mt)) / 2);
}
@media screen and (min-width: 768px) {
  .shop-slider .itemlist-slider__splide .splide__slide img {
    height: calc((95svh - var(--hd_mt)) / 2);
  }
}

.gjs-dashed .itemlist-slider__splide.splide {
  visibility: visible; /*smooooth画面で表示*/
}
.gjs-dashed .splide__list {
  display: block;
  height: auto;
}

.shop-access {
  margin-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  /*margin-top: calc(cl(80, 140, 375, 768) * -1);*/
}
.shop-access__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 90px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .shop-access__cnt {
    flex-direction: row;
    /*flex-direction: row-reverse;*/
    justify-content: space-between;
    align-items: stretch;
  }
}
.shop-access__info {
  max-width: 460px;
  flex: 1;
}
.shop-access__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.shop-access__ttl.--left {
  text-align: left;
}
.shop-access__catch {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
  text-align: center;
}
.shop-access__catch.--left {
  text-align: left;
}
.shop-access__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.shop-access__txt {
  text-align: center;
}
.shop-access__txt.--left {
  text-align: left;
}
.shop-access__txt-st {
  font-size: clamp(1.4rem, 1.7rem + -0.12vw, 1.6rem);
  letter-spacing: 0.05em;
}
.shop-access__map {
  width: 100%;
  height: 280px;
}
@media screen and (min-width: 768px) {
  .shop-access__map {
    height: 380px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-access__map {
    max-width: 600px;
    height: 480px;
  }
}
.shop-access__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.shop-faq {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.shop-faq__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.shop-faq__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.shop-faq__catch {
  text-align: center;
}
.shop-faq__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.shop-faq__btn-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .shop-faq__btn-list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.shop-faq__btn-item {
  max-width: 220px;
  width: 100%;
  border: solid 1px #333;
}
@media screen and (min-width: 768px) {
  .shop-faq__btn-item {
    width: calc((100% - 60px) / 3);
  }
}
.shop-faq__btn-item-link {
  text-align: center;
}
.shop-faq__btn-item-link-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 4;
}
.shop-faq__list {
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.shop-faq__item {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.shop-faq__item:last-of-type {
  margin-bottom: 0;
}
.shop-faq__item-info {
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 30px;
}
.shop-faq__item-info:last-of-type {
  margin-bottom: 0;
}
.shop-faq__item-info-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
.shop-faq__item-ttl {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.shop-faq__item-ttl-st {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  padding-left: 20px;
  position: relative;
}
.shop-faq__item-ttl-st::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background-color: #828974;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.shop-faq__item-q {
  border-bottom: solid 1px #ccc;
  padding-bottom: 20px;
}
.shop-faq__item-q-txt {
  display: flex;
  align-items: center;
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .shop-faq__item-q-txt {
    padding-left: 40px;
  }
}
.shop-faq__item-q-txt::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/17;
  background: url(/system_panel/uploads/images/img_sub-faq01.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.shop-faq__item-q-txt-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.025em;
  font-weight: 500;
  color: #828974;
}
.shop-faq__item-a {
  width: 100%;
}
.shop-faq__item-a-txt {
  display: flex;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .shop-faq__item-a-txt {
    padding-left: 40px;
  }
}
.shop-faq__item-a-txt::before {
  content: "";
  width: 18px;
  aspect-ratio: 18/16;
  background: url(/system_panel/uploads/images/img_sub-faq02.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.shop-faq__item-a-txt-st {
  letter-spacing: 0.025em;
}

.shop-voice {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
.shop-voice__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.shop-voice__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.shop-voice__catch {
  text-align: center;
}
.shop-voice__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.shop-voice__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 40px;
}
@media screen and (min-width: 1024px) {
  .shop-voice__list {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.shop-voice__item {
  max-width: 580px;
  width: 100%;
  border: solid 1px #ccc;
  border-radius: 20px;
  padding: clamp(3rem, 2rem + 2.54vw, 4rem) 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .shop-voice__item {
    width: calc((100% - 40px) / 2);
  }
}
.shop-voice__item-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  gap: 30px 50px;
  max-width: 515px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .shop-voice__item-inr {
    flex-direction: row;
    justify-content: space-between;
  }
}
.shop-voice__item-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .shop-voice__item-info {
    flex: 1;
    width: auto;
  }
}
.shop-voice__item-info-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(2rem, 1.5rem + 1.27vw, 2.5rem);
}
.shop-voice__item-info-name {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: auto;
}
.shop-voice__item-media {
  max-width: 120px;
  width: 36%;
  aspect-ratio: 1;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-voice__item-media {
    width: auto;
  }
}

.shop-reserve {
  padding-top: clamp(8rem, 0.4rem + 20.36vw, 16rem);
  padding-bottom: clamp(8rem, 2.3rem + 15.27vw, 14rem);
  position: relative;
}
.shop-reserve::before {
  content: "";
  width: 100%;
  height: 90%;
  background: url(/system_panel/uploads/images/img_shop-bg02.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.shop-reserve__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.shop-reserve__ttl {
  margin-bottom: 10px;
  text-align: center;
}
.shop-reserve__catch {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.shop-reserve__catch .cmn-ttl__main {
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
}
.shop-reserve__txt {
  text-align: center;
}
.shop-reserve__txt-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
}
.shop-reserve__txt-st.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .shop-reserve__txt-st.--br br {
    display: none;
  }
}

/*
----------------------------------------------------------------*/
#faq00,
#faq01,
#faq02,
#faq03,
#form {
  scroll-margin-top: var(--hd_mt);
}

.none {
  display: none !important;
}