@charset "UTF-8";
:root {
  --base_font: "Zen Kaku Gothic New", sans-serif;
  --sub_font: "Sen", sans-serif;
  --sub_font02: "Zen Old Mincho", serif;
  --mc: #5c6150;
  --sc: #78746d;
  --fc: #333;
  --bc: #ccc;
  --red: #b10000;
  --hd_mt: 80px;
}
@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;
}

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

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

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

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

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

*:focus {
  outline: none;
}

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

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

strong {
  font-weight: 700;
}

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

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

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

/*class*/
.cmn-wrap {
  max-width: 1280px;
  width: 100%;
  padding-inline: 15px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-wrap {
    padding-inline: 40px;
  }
}
.cmn {
  /*display:none*/
}
.cmn-display__pcl--block {
  display: none !important;
}
@media screen and (min-width: 1800px) {
  .cmn-display__pcl--block {
    display: block !important;
  }
}
@media screen and (min-width: 1800px) {
  .cmn-display__pcl--none {
    display: none;
  }
}
.cmn-display__pc--block {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .cmn-display__pc--block {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-display__pc--none {
    display: none;
  }
}
.cmn-display__pc-tb--block {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-display__pc-tb--block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .cmn-display__pc-tb--none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cmn-display__sp--block {
    display: none;
  }
}
.cmn-display__sp--none {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-display__sp--none {
    display: block;
  }
}

.ojf {
  position: relative;
  height: auto;
}
.ojf::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.ojf img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.cmn-btn.--faq {
  max-width: 160px;
  width: 100%;
}
.cmn-btn-anc {
  display: block;
  max-width: 240px;
  width: 100%;
  background-color: transparent;
  border: solid 1px #000;
  /*border-radius: 35px;*/
  text-align: center;
  /*margin: 0 auto;*/
  position: relative;
  transition: all 0.3s;
}
.cmn-btn-anc.--small {
  max-width: 160px;
}
.cmn-btn-anc.--center {
  margin-top: 30px;
  margin-inline: auto;
}
.cmn-btn-anc::before {
  content: "";
  width: 41px;
  height: 10px;
  background: url(/system_panel/uploads/images/arrow_icon01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.cmn-btn-anc-str {
  font-family: "Sen", sans-serif; /*効かない理由聞く*/
  font-size: 1.6rem;
  /*font-weight: 500;*/
  letter-spacing: 0.05em;
  line-height: 3.725;
  color: #000;
  transition: all 0.3s;
}
.cmn-btn-anc-str.--small {
  line-height: 2.7;
}
.cmn-btn-anc:hover {
  background-color: #000;
}
.cmn-btn-anc:hover::before {
  background-image: url(/system_panel/uploads/images/arrow_icon02.png);
}
.cmn-btn-anc:hover .cmn-btn-anc-str {
  color: #fff;
}

.cmn-btn--02-anc {
  display: inline;
}
.cmn-btn--02-anc-str {
  display: inline-block;
  border-bottom: solid 2px #000;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding-right: 40px;
  padding-bottom: 5px;
  position: relative;
}
.cmn-btn--02-anc-str::before {
  content: "";
  width: 21px;
  aspect-ratio: 21/11;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cmn-btn--02-anc:hover .cmn-btn--02-anc-str::before {
  right: 0;
}

.cmn-ttl-main {
  font-family: var(--sub_font);
  font-size: clamp(5rem, 2.1rem + 7.63vw, 8rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: #000;
  margin-bottom: clamp(3rem, -0.8rem + 10.18vw, 7rem);
}
.cmn-ttl-main.--small {
  font-size: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.cmn-ttl-main.--small02 {
  font-size: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin-bottom: 0;
}
.cmn-ttl-main.--small03 {
  font-size: clamp(3.6rem, 2.6rem + 2.54vw, 4.6rem);
}
.cmn-ttl-main.--small04 {
  font-size: clamp(3.6rem, 2.6rem + 2.54vw, 4.6rem);
  margin-bottom: 0;
}
.cmn-ttl-main.--center {
  text-align: center;
}
.cmn-ttl-main.--center02 {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cmn-ttl-main.--center02 {
    text-align: left;
  }
}
.cmn-ttl-sub {
  font-family: var(--sub_font02);
  font-size: min(5.8vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  color: #000;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-ttl-sub.--shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.cmn-ttl__en {
  font-family: var(--sub_font);
  font-size: clamp(3.6rem, 2.6rem + 2.54vw, 4.6rem);
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
}
.cmn-ttl__en.--price {
  font-family: var(--sub_font02);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.cmn-ttl__en.--eyelash {
  font-size: min(5.6vw, 4.2rem);
}
@media screen and (min-width: 768px) {
  .cmn-ttl__en.--eyelash {
    font-size: clamp(4.2rem, 3rem + 1.56vw, 4.6rem);
  }
}
.cmn-ttl__jp {
  font-family: var(--sub_font02);
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-ttl__jp.--01 {
  margin-top: 0;
}

.cmn-txt {
  font-size: min(3.5vw, 1.4rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .cmn-txt {
    font-size: 1.6rem;
  }
}
.cmn-txt.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-txt.--br strong {
    font-size: min(1.9vw, 1.6rem);
  }
  .cmn-txt.--br strong br {
    display: none;
  }
}
.cmn-txt.--br02 {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .cmn-txt.--br02 {
    text-align: center;
  }
}
.cmn-txt.--br02 strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-txt.--br02 strong {
    font-size: min(1.9vw, 1.6rem);
  }
}
.cmn-txt.--02 {
  margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.cmn-txt.--left {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .cmn-txt.--left {
    text-align: center;
  }
}
.cmn-txt.--left strong {
  font-weight: 400;
}
.cmn-txt.--left strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-txt.--left strong br {
    display: inline;
  }
}

.cmn-note {
  font-size: min(3.3vw, 1.4rem);
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .cmn-note {
    font-size: 1.6rem;
    padding-left: 20px;
  }
}
.cmn-note strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-note br {
    display: none;
  }
}
.cmn-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.cmn-note.--left {
  padding-left: 20px;
}

.cmn-subttl {
  font-family: var(--sub_font02);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(2rem, 1.5rem + 1.27vw, 2.5rem);
}

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

.subhd {
  position: relative;
  padding-top: clamp(8rem, 6.8rem + 3.08vw, 10rem);
}
@media screen and (min-width: 1024px) {
  .subhd {
    padding-top: 120px;
  }
}
.subhd__cnt {
  width: calc(100% - 30px);
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subhd__ttl {
  text-align: center;
}
.subhd__ttl-main {
  font-family: var(--sub_font);
  font-size: min(8vw, 6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  margin-bottom: 10px;
}
.subhd__ttl-sub {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #000;
}
.subhd__txt {
  font-size: min(3.5vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 2.22;
  text-align: center;
  padding-top: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
.subhd__txt.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .subhd__txt.--br {
    font-size: min(2.1vw, 1.8rem);
  }
  .subhd__txt.--br br {
    display: none;
  }
}
.subhd__img {
  width: 100%;
  max-height: 613px;
  height: 125vw;
}
@media screen and (min-width: 768px) {
  .subhd__img {
    height: 80vw;
  }
}
.subhd__img.ojf::before {
  display: none;
}

.cmn-table__tr {
  border-top: solid 1px #ccc;
  padding: 10px 0;
}
.cmn-table__tr:last-of-type {
  border-bottom: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .cmn-table__tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    width: 230px;
    padding: 0 15px 0 40px;
  }
  .cmn-table__th-st {
    font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    flex: 1;
  }
  .cmn-table__td-st {
    font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
    letter-spacing: 0.05em;
  }
}

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

.cmn-column__head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0 40px;
  margin-bottom: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.cmn-column__head:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-column__head {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .cmn-column__head:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.cmn-column__head-media {
  max-width: 960px;
  width: 100%;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .cmn-column__head-media {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-media {
    max-width: 600px;
    width: 100%;
    padding-top: 160px;
    flex: 1;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-media.--pt {
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-media.--pt02 {
    padding-top: 130px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-media-img {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-column__head-media-img {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-media-img.--reverse {
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-column__head-media-img.--reverse {
    margin-left: max((1200px - 100vw) / 2, -240px);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-media-img.--reverse02 {
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-column__head-media-img.--reverse02 {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-media-img.--reverse03 {
    margin-left: 0;
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-column__head-media-img.--reverse03 {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.cmn-column__head-info {
  max-width: 960px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-column__head-info {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-info {
    max-width: 500px;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-info.--02 {
    max-width: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-info.--03 {
    max-width: 550px;
  }
}
.cmn-column__head-info-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 2.5;
  text-align: left;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-column__head-info-media {
  display: none;
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-info-media {
    display: block;
    width: 80%;
    max-width: 380px;
    padding-top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column__head-info-media-img {
    margin-left: max((1200px - 100vw) / 2, -140px);
  }
}
.cmn-column__head-info-staff {
  background-color: #fff;
  padding: 20px 40px;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-column__head-info-staff-txt {
  font-weight: 500;
  color: var(--mc);
  margin-bottom: 10px;
}
.cmn-column__head-info-staff-name {
  font-weight: 500;
  color: var(--mc);
  text-align: right;
}
.cmn-column__head-info-label {
  font-family: var(--sub_font);
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-column__head-info-com {
  background: #fff;
  padding: 35px;
}
.cmn-column__head-info-com-txt {
  border-bottom: solid 1px #ccc;
  padding: 10px 0;
}
.cmn-column__head-info-com-txt:first-child {
  padding-top: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-column.--reverse .cmn-column__head {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-column.--reverse .cmn-column__head:nth-child(even) {
    flex-direction: row;
  }
}

body {
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0; /*透明度(1＝100%)*/
  pointer-events: none;
  transform: 0.4s;
  z-index: 100;
}

body.open::before {
  opacity: 1;
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 60px;*/
  line-height: 1;
  transition: all 0.4s;
  z-index: 1000;
  padding-block: 20px;
}
@media screen and (min-width: 1024px) {
  .hd {
    padding-block: 0;
    height: 120px;
  }
}
.hd.fixed {
  background: #fff;
}
.hd-cnt {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding-inline: 20px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .hd-cnt {
    padding-inline: 30px;
  }
}
.hd-name {
  z-index: 1000;
}
.hd-logo {
  max-width: max-content;
  width: clamp(10rem, 6.6rem + 9.06vw, 24rem);
}
.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: #ffffff;
  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: 20px;
    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;
  }
}
.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: 20px;
  }
}
.hd-nav .nav-list__item {
  padding: 0;
  line-height: 1;
  text-align: center;
}
.hd-nav .nav-list__item.--phone {
  padding-right: 7px;
}
.hd-nav .nav-list__item.--phone .nav-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.hd-nav .nav-list__item.--phone .nav-list__link-icon {
  width: 19px;
  aspect-ratio: 1;
}
.hd-nav .nav-list__item.--phone .nav-list__link-st {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.13em;
}
.hd-nav .nav-list__item.--sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.hd-nav .nav-list__item.--sns .nav-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hd-nav .nav-list__item.--sns .nav-list__link-icon {
  width: 30px;
  aspect-ratio: 1;
}
@media screen and (min-width: 1024px) {
  .hd-nav .nav-list__item.--sns .nav-list__link-icon {
    width: 40px;
  }
}
@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 {
  font-family: var(--sub_font);
  display: block;
  text-align: center;
}
.hd-nav__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 150px;
  border: solid 1px var(--fc);
  aspect-ratio: 150/40;
}
.hd-nav__btn-icon {
  width: 15px;
  aspect-ratio: 15/11;
}
.hd-nav__btn-st {
  font-family: var(--sub_font);
}
.hd-toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  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;
  color: var(--fc);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.hd-toggle__inr {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 24px;
  height: 16px;
}
.hd-toggle__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--fc);
  color: var(--fc);
  transition: 0.35s ease-in-out;
}
.hd-toggle__line:nth-child(1) {
  top: 0;
}
.hd-toggle__line:nth-child(2) {
  top: 8px;
}
.hd-toggle__line:nth-child(3) {
  position: relative;
  top: 16px;
}
.hd.open .sp-nav {
  opacity: 1;
  transform: translateX(-100%);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.hd.open .hd-toggle__line:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hd.open .hd-toggle__line:nth-child(2) {
  left: 50%;
  width: 0;
}
.hd.open .hd-toggle__line:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1024px) {
  .nav-list__item.--drawer {
    display: none;
  }
}

.cmn-faq {
  padding-block: clamp(6rem, 4.8rem + 3.24vw, 11rem);
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-faq {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-faq {
    width: 50%;
    padding-inline: clamp(3rem, -9.6rem + 12.28vw, 14rem);
  }
}
.cmn-faq.--center {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .cmn-faq.--center {
    padding-inline: 40px;
  }
}
.cmn-faq.--shop {
  position: relative;
}
.cmn-faq.--shop::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: url(/system_panel/uploads/images/img_shop-faq-bg.jpg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.cmn-faq__head {
  display: flex;
  justify-content: space-between;
}

.faq-cate {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px 0;
}
@media screen and (min-width: 768px) {
  .faq-cate {
    flex-direction: row;
  }
}
.faq-cate__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.faq-cate__item:first-child .faq-cate__item-link-st::before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--mc);
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .faq-cate__item:first-child .faq-cate__item-link-st::before {
    display: none; /* これでしっかり消えます */
  }
}
.faq-cate__item-link {
  text-align: center;
}
.faq-cate__item-link-st {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  padding: 0 20px;
}
.faq-cate__item-link-st::after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--mc);
  position: absolute;
  right: 0;
}
.faq__list.--center {
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.faq__list-box {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.faq__list-box:last-of-type {
  margin-bottom: 0;
}
.faq__list-box-ttl {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: clamp(2.5rem, 2rem + 1.27vw, 3rem);
  position: relative;
  padding-left: 55px;
}
.faq__list-box-ttl::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 15px;
  left: 0;
}
.faq__list-info {
  background-color: #f5f5f5;
  padding: 35px 30px;
  margin-bottom: 20px;
}
.faq__list-info:last-of-type {
  margin-bottom: 0;
}
.faq__list-info.--shop {
  background-color: #fff;
}
.faq__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(2rem, 1.5rem + 1.27vw, 2.5rem);
}
.faq__item-q {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
  position: relative;
  border-bottom: solid 1px #ccc;
  padding-bottom: 24px;
}
.faq__item-q-txt {
  display: flex;
  align-items: center;
  padding-left: 35px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__item-q-txt {
    padding-left: 45px;
  }
}
.faq__item-q-txt::before {
  content: "";
  width: 21px;
  aspect-ratio: 21/19;
  background: url(/system_panel/uploads/images/img_top-faq01.png) no-repeat center center/contain;
  position: absolute;
  top: 9px;
  left: 0;
}
.faq__item-q-txt-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.025em;
}
.faq__item-a {
  width: 100%;
}
.faq__item-a-txt {
  display: flex;
  align-items: center;
  max-width: 660px;
  width: 100%;
  padding-left: 35px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__item-a-txt {
    padding-left: 45px;
  }
}
.faq__item-a-txt.--center {
  max-width: 1140px;
}
.faq__item-a-txt::before {
  content: "";
  width: 19px;
  aspect-ratio: 19/15;
  background: url(/system_panel/uploads/images/img_top-faq02.png) no-repeat center center/contain;
  position: absolute;
  top: 9px;
  left: 0;
}
.faq__item-a-txt::before-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.025;
}

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

.cmn-contact {
  padding-block: clamp(6rem, 4.8rem + 3.24vw, 11rem);
  padding-inline: 15px;
  position: relative;
}
.cmn-contact::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_top-footer-bg02.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .cmn-contact {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-contact {
    width: 50%;
    padding-inline: clamp(3rem, -9.6rem + 12.28vw, 14rem);
  }
}
.cmn-contact.--center {
  width: 100%;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-contact.--center {
    padding-inline: 40px;
  }
}
.cmn-contact__txt {
  font-size: min(3.5vw, 1.4rem);
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cmn-contact__txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-contact__txt.--center02 {
    text-align: left;
  }
}
.cmn-contact__btn {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
  margin-top: clamp(5rem, 3.1rem + 5.09vw, 7rem);
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .cmn-contact__btn.--center02 {
    align-items: stretch;
  }
}
.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;
  padding-block: clamp(3rem, 2.5rem + 1.27vw, 3.5rem);
}
.cmn-contact__btn-link.--02 {
  flex-direction: column;
  gap: 0;
}
.cmn-contact__btn-txt {
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
.cmn-contact__btn-txt.--note {
  font-size: 1.4rem;
  margin-top: 10px;
}
.cmn-contact__btn-item.--web .cmn-contact__btn-link {
  background-color: var(--mc);
}
.cmn-contact__btn-item.--web .cmn-contact__btn-icon {
  width: 22px;
  height: 32px;
}
.cmn-contact__btn-item.--hot .cmn-contact__btn-link {
  background-color: #78746d;
}
.cmn-contact__btn-item.--hot .cmn-contact__btn-icon {
  width: 33px;
  height: 40px;
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-link {
  border: solid 1px #5c6150;
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-icon {
  width: 25px;
  height: 18px;
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-txt {
  color: #5c6150;
}
.cmn-contact__btn-item.--center {
  padding-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin: 0 auto;
}

.cmn-contact__btn-icon-img.--web {
  height: 32px;
}
.cmn-contact__btn-icon-img.--contact {
  width: 25px;
  height: 18px;
}

.home .cmn-faq {
  display: block;
}
@media screen and (min-width: 1024px) {
  .home .cmn-contact {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .home .cmn-contact__btn {
    flex-direction: column;
  }
}
.home .cmn-contact__btn-item {
  max-width: 660px;
}
@media screen and (min-width: 1024px) {
  .home .cmn-contact__btn-item {
    width: 100%;
  }
}

.h1-dn {
  display: none;
}

.reserve-btn__img {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.ft-cont {
  background: #222;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem) 270px;
}
.ft-cont__inr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .ft-cont__inr {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .ft-cont__inr {
    gap: 50px;
  }
}
.ft-cont__group {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, -9rem + 11.72vw, 6rem);
  max-width: 620px;
}
@media screen and (min-width: 768px) {
  .ft-cont__group {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .ft-cont__group {
    width: 55%;
  }
}
.ft-cont__left {
  display: flex;
  flex-direction: column;
}
.ft-cont__logo {
  max-width: max-content;
}
@media screen and (min-width: 1024px) {
  .ft-cont__logo {
    width: clamp(15rem, 7rem + 7.81vw, 17rem);
  }
}
.ft-cont__wrap {
  display: flex;
  align-items: center;
  gap: 10px; /*仮*/
  margin-top: 20px;
}
.ft-cont__wrap-account-st {
  font-family: var(--sub_font);
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__info {
  flex: 1;
}
.ft-cont__info-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.ft-cont__info-reserve-st {
  min-width: 120px;
  border: solid 1px #fff;
  color: #fff;
  letter-spacing: 0.025em;
  line-height: 2.8;
  text-align: center;
  padding-inline: 10px;
}
.ft-cont__info-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.ft-cont__data-add-st {
  font-size: clamp(1.35rem, 1.1rem + 0.67vw, 1.4rem);
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__data-item {
  display: flex;
  gap: 15px;
}
.ft-cont__data-label {
  min-width: 88px;
  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: 60px;
  }
}
.ft-cont__menu-ttl {
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: solid 1px #fff;
}
.ft-cont__menu-ttl-st {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .ft-cont__menu-ttl-st {
    font-size: 1.8rem;
  }
}
.ft-cont__menu-nav-item + .ft-cont__menu-nav-item {
  margin-top: 5px;
}
.ft-cont__menu-nav-item-st {
  font-family: var(--sub_font);
  font-weight: 300;
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__copyright {
  text-align: right;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.ft-cont__copyright-st {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.top-fv {
  padding-top: clamp(8rem, 6.8rem + 3.08vw, 10rem);
  padding-bottom: clamp(4rem, -1.7rem + 15.27vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-fv {
    padding-top: 120px;
  }
}
.top-fv::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_top-bg01.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: -11%;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-fv::before {
    left: -12%;
  }
}
.top-fv__splide .splide__slide {
  /*@include mq(min, tb) {
    width: calc(56% - 20px);
  }*/
}
.top-fv__splide .splide__slide img {
  width: 100%;
}
.top-fv__ttl {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.top-fv__ttl-jp {
  font-family: var(--sub_font02);
  font-size: min(6.3vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #000;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .top-fv__ttl-jp {
    font-size: 4rem;
  }
}
.top-fv__ttl-jp strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .top-fv__ttl-jp strong br {
    display: none;
  }
}
.top-fv__ttl-en {
  font-family: var(--sub_font);
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.1em;
  color: #5f675c;
}

.top-slider {
  position: relative;
  overflow: hidden;
}
.top-slider .top-slider__splide {
  margin-left: 20px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-slider .top-slider__splide {
    margin-left: 15%;
    width: 85%;
  }
}
.top-slider .splide__slide {
  width: clamp(25rem, 1.1rem + 63.61vw, 50rem);
}
@media screen and (min-width: 768px) {
  .top-slider .splide__slide {
    width: clamp(50rem, -100rem + 195.31vw, 100rem);
  }
}
@media screen and (min-width: 1024px) {
  .top-slider .splide__slide {
    width: 1000px;
  }
}
.top-slider .splide__slide img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: clamp(34rem, -68rem + 132.81vw, 68rem);
}
@media screen and (min-width: 1024px) {
  .top-slider .splide__slide img {
    height: 680px;
  }
}

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

.scrolldown {
  display: none;
  position: absolute;
  height: 120px;
  left: 1.5%;
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .scrolldown {
    display: block;
    height: 150px;
    left: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .scrolldown {
    left: min((100% - 1200px) / 2, 130px);
  }
}
.scrolldown::before {
  content: "";
  background: #ccc;
  width: 1px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .scrolldown::before {
    height: 150px;
  }
}
.scrolldown__p {
  font-family: var(--sub_font);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 4px;
}
.scrolldown::after {
  width: 1px;
  height: 37.5px;
  content: "";
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  animation: pathmove 2.5s ease-in-out infinite;
}
@media screen and (min-width: 1024px) {
  .scrolldown::after {
    height: 50px;
  }
}

@keyframes pathmove {
  100% {
    transform: translateY(300%);
  }
}
.breadcrumb-cnt {
  padding-top: 40px;
}
.breadcrumb-cnt__list {
  display: flex;
  gap: 25px;
}
.breadcrumb-cnt__item {
  position: relative;
}
.breadcrumb-cnt__item::before {
  content: ">";
  position: absolute;
  top: clamp(0.9rem, 0.7rem + 0.51vw, 1.1rem);
  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-family: var(--sub_font);
  color: var(--mc);
  letter-spacing: 0.05em;
  /*&.--current {
  }*/
}

.top-about {
  padding-top: clamp(7rem, 2.2rem + 12.72vw, 12rem);
  position: relative;
}
.top-about__head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .top-about__head {
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: space-between;
  }
}
.top-about__head-info {
  max-width: 910px;
  width: 100%;
  position: relative;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .top-about__head-info {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .top-about__head-info {
    max-width: 550px;
    width: auto;
    flex: 1;
    padding-top: 90px;
  }
}
.top-about__head-info-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 2.5;
  text-align: left;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-about__head-info-caption {
  max-width: max-content;
  width: 100%;
  max-width: 1026px;
  position: absolute;
  left: 0;
  margin-right: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-about__head-info-caption {
    width: 95vw;
    top: 79%;
    right: 0;
    left: auto;
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-about__head-info-caption {
    margin-right: max((1200px - 100vw) / 2, -360px);
  }
}
.top-about__head-media {
  max-width: 910px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-about__head-media {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .top-about__head-media {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  .top-about__head-media-img {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-about__head-media-img {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.top-about__head-media-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.1em;
  color: #5f675c;
  padding-top: clamp(5rem, 1.2rem + 10.18vw, 9rem);
}

.top-conserns {
  position: relative;
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.top-conserns::before {
  content: "";
  width: 960px;
  height: 600px;
  background: url(/system_panel/uploads/images/img_top-bg02.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.top-conserns__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .top-conserns__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.top-conserns__item {
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  .top-conserns__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-conserns__item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .top-conserns__item.--middle {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .top-conserns__item.--back {
    margin-top: 60px;
  }
}
.top-conserns__media {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 20px;
}
.top-conserns__info-txt {
  position: relative;
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #000;
  padding-left: 50px;
}
.top-conserns__info-txt::before {
  content: "";
  width: 26px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/img_top-icon02.png) no-repeat center center/contain;
  position: absolute;
  top: 5px;
  left: 0;
  z-index: -1;
}
.top-conserns__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #000;
  text-align: left;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .top-conserns__txt {
    text-align: center;
  }
}
.top-conserns__txt.--br strong {
  font-weight: 400;
}
.top-conserns__txt.--br br {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-conserns__txt.--br br {
    display: block;
  }
}

.top-hair {
  position: relative;
  overflow: hidden;
  padding-top: clamp(8rem, 1.3rem + 17.81vw, 15rem);
  padding-bottom: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.top-hair::before {
  content: "";
  width: 22%;
  max-width: 210px;
  height: auto;
  aspect-ratio: 210/1380;
  background: url(/system_panel/uploads/images/img_top-bg02.png) no-repeat center center/contain;
  position: absolute;
  z-index: -1;
  top: 2%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top-hair::before {
    width: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .top-hair::before {
    width: 100%;
  }
}
.top-hair__ttl-main {
  max-width: 960px;
  width: 100%;
  font-family: var(--sub_font);
  font-size: min(11vw, 8rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: #000;
  margin-bottom: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
@media screen and (min-width: 768px) {
  .top-hair__ttl-main {
    width: 80%;
    font-size: min(7vw, 8rem);
  }
}
@media screen and (min-width: 1280px) {
  .top-hair__ttl-main {
    max-width: none;
  }
}
.top-hair__ttl-main.--small {
  font-size: min(8vw, 8rem);
}
@media screen and (min-width: 768px) {
  .top-hair__ttl-main.--small {
    font-size: min(7vw, 8rem);
  }
}
.top-hair__bg01 {
  position: absolute;
  max-width: max-content;
  width: 40%;
  top: 70%;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .top-hair__bg01 {
    top: 60%;
    right: max((1200px - 100vw) / 2, -320px);
  }
}
.top-hair__bg02 {
  position: absolute;
  max-width: max-content;
  width: 30%;
  top: 93%;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1280px) {
  .top-hair__bg02 {
    top: 91%;
    left: max((1200px - 100vw) / 2, -320px);
  }
}

.top-staff {
  position: relative;
  padding-block: clamp(8rem, 3.2rem + 12.72vw, 13rem);
}
.top-staff::before {
  content: "";
  width: 1440px;
  height: 100%;
  background: url(/system_panel/uploads/images/img_top-bg05.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.top-news {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.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-columns: 200px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "top-news__ttl top-news__list" "top-news__btn top-news__list";
    gap: clamp(2rem, 1rem + 2.54vw, 3rem) clamp(4rem, 2.1rem + 5.1vw, 6rem);
  }
}
.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-st {
  font-family: var(--sub_font);
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl-st {
    font-size: 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;
}
.top-news__cont-list-item-cate {
  margin-left: 20px;
}
.top-news__cont-list-item-cate-str {
  display: inline-block;
  min-width: 120px;
  /*border: solid 1px $mc;*/
  /*border-radius: 12px;*/
  background-color: #5c6150;
  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;
  }
}
.top-news__cont-btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-news__cont-btn {
    grid-area: top-news__btn;
    align-self: flex-end;
    text-align: right;
  }
}

.top-recruit {
  position: relative;
  padding-block: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.top-recruit::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_top-recruit.jpg) no-repeat center center/cover;
  position: absolute;
  z-index: -1;
  top: 0;
}

.shop-overview {
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.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;
    justify-content: space-between;
    align-items: stretch;
  }
}
.shop-overview__info {
  max-width: 540px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .shop-overview__info {
    width: 50%;
  }
}
.shop-overview__map {
  width: 100%;
  height: 280px;
}
@media screen and (min-width: 768px) {
  .shop-overview__map {
    height: 380px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-overview__map {
    max-width: 550px;
    flex: 1;
    height: 480px;
  }
}
.shop-overview__map iframe {
  width: 100%;
  height: 100%;
}
@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-overview .cmn-table__th-st.--medium {
  font-weight: 500;
}

.shop-voice {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.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;
  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.025em;
  font-weight: 500;
  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.025em;
  font-weight: 500;
  text-align: right;
  margin-top: auto;
}
@media screen and (min-width: 1024px) {
  .shop-voice__item-info-name {
    font-size: min(1.5vw, 1.6rem);
  }
}

.contact-reserve {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.contact-reserve__cnt {
  max-width: 950px;
  width: 100%;
  border: solid 1px #000;
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  padding-inline: clamp(3rem, -3.7rem + 17.81vw, 10rem);
  padding-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin-inline: auto;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.contact-reserve__btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px 30px;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .contact-reserve__btn {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.contact-reserve__btn-item {
  max-width: 350px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-reserve__btn-item {
    width: calc(100% - 30px - 2);
  }
}
.contact-reserve__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  margin-inline: auto;
}
.contact-reserve__btn-txt {
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 4;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .contact-reserve__btn-txt {
    line-height: 4.762;
  }
}
.contact-reserve__btn-txt.--small {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
}
.contact-reserve__btn-item.--web .contact-reserve__btn-link {
  background-color: var(--mc);
}
.contact-reserve__btn-item.--web .contact-reserve__btn-icon {
  width: 22px;
  height: 32px;
}
.contact-reserve__btn-item.--hot .contact-reserve__btn-link {
  background-color: #78746d;
}
.contact-reserve__btn-item.--hot .contact-reserve__btn-icon {
  width: 33px;
  height: 40px;
}

.contact-mail {
  position: relative;
  padding-block: clamp(8rem, 4.2rem + 10.18vw, 12rem);
}
.contact-mail::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_contact-inquiry-bg.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  z-index: -1;
}
.contact-mail__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}

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

.shaving-catch {
  padding-top: clamp(6rem, 4.1rem + 5.09vw, 8rem);
  padding-bottom: clamp(8rem, 5.1rem + 7.63vw, 11rem);
  position: relative;
}
.shaving-catch::before {
  content: "";
  width: 100%;
  height: 87%;
  background: url(/system_panel/uploads/images/img_shaving-catch-bg.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .shaving-catch::before {
    height: 1640px;
  }
}

.shaving-price {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.shaving-price__table {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
}

.recruit-message {
  position: relative;
  padding-top: clamp(6rem, 4.1rem + 5.09vw, 8rem);
  padding-bottom: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.recruit-message::before {
  content: "";
  width: 1440px;
  height: 620px;
  background: url(/system_panel/uploads/images/img_recruit-message-bg.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.recruit-work {
  padding-top: clamp(7rem, 1.3rem + 15.27vw, 13rem);
  padding-bottom: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.recruit-work__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
@media screen and (min-width: 1024px) {
  .recruit-work__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.recruit-work__item {
  max-width: 380px;
  width: 80%;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.recruit-work__item-info {
  padding-top: clamp(1rem, -0.4rem + 3.82vw, 2.5rem);
  padding-inline: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
  padding-bottom: clamp(3.5rem, 2.5rem + 2.54vw, 4.5rem);
}
.recruit-work__item-info-ttl {
  position: relative;
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #000;
  padding-left: 50px;
  margin-bottom: 20px;
}
.recruit-work__item-info-ttl::before {
  content: "";
  width: 26px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/img_top-icon02.png) no-repeat center center/contain;
  position: absolute;
  top: 5px;
  left: 0;
}
.recruit-work__item-info-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #000;
}

.recruit-style {
  position: relative;
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.recruit-style::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_recruit-style-bg.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  z-index: -1;
}

.recruit-job {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  padding-bottom: clamp(4rem, -1.7rem + 15.27vw, 10rem);
}
.recruit-job__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.recruit-job__table {
  max-width: 800px;
  width: 100%;
}

.recruit-contact {
  padding-bottom: clamp(8rem, 1.3rem + 17.81vw, 15rem);
}
.recruit-contact__cnt {
  max-width: 1200px;
  width: 100%;
  border: solid 1px #ccc;
  padding: clamp(4rem, 2.1rem + 5.09vw, 6rem) 15px;
}

.eyelash-btn {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.eyelash-btn__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .eyelash-btn__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
}
.eyelash-btn__item {
  max-width: 380px;
  width: 100%;
  border: solid 1px #333;
}
@media screen and (min-width: 768px) {
  .eyelash-btn__item {
    max-width: none;
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .eyelash-btn__item {
    width: calc((100% - 90px) / 4);
  }
}
.eyelash-btn__item-link {
  text-align: center;
}
.eyelash-btn__item-link-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 3.475;
}
@media screen and (min-width: 1024px) {
  .eyelash-btn__item-link-st {
    font-size: min(1.3vw, 1.6rem);
  }
}

.cmn-eyelash {
  position: relative;
  padding-top: clamp(7rem, 1.3rem + 15.27vw, 13rem);
  padding-bottom: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.cmn-eyelash::before {
  content: "";
  width: 100%;
  height: 74%;
  background: url(/system_panel/uploads/images/img_eyelash-bg.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash::before {
    height: 49%;
  }
}
.cmn-eyelash.--02::before {
  height: 68%;
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash.--02::before {
    height: 55%;
  }
}
.cmn-eyelash.--03::before {
  height: 66%;
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash.--03::before {
    height: 50%;
  }
}
.cmn-eyelash.--04::before {
  height: 75%;
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash.--04::before {
    height: 56%;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash.--reverse .cmn-eyelash__item {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash.--reverse .cmn-eyelash__item .cmn-eyelash__item-media-img {
    margin-right: 0;
    margin-left: -120px;
  }
}
.cmn-eyelash__list {
  margin-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.cmn-eyelash__item-info {
  margin-top: -40px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash__item-info {
    width: 50%;
    margin-top: 0;
  }
}
.cmn-eyelash__item-info-inr {
  max-width: 600px;
  margin-left: auto;
  background-color: #fff;
  padding: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.cmn-eyelash__item-info-txt {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  border-bottom: solid 1px #ccc;
  padding: 10px 0;
}
.cmn-eyelash__item-info-txt:first-child {
  padding-top: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash__item-media {
    flex: 1;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash__item-media-img {
    margin-right: -120px;
  }
}
.cmn-eyelash__item-media-img {
  /*&.--reverse {
    @include mq(min, tb) {
      margin-right: 0;
      margin-left: -120px;
    }
  }*/
}
.cmn-eyelash__ttl {
  font-family: var(--sub_font02);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
.cmn-eyelash__ttl.--02 {
  margin-top: 0;
  line-height: 1;
}
.cmn-eyelash__media {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .cmn-eyelash__media {
    flex-direction: row;
    justify-content: center;
  }
}
.cmn-eyelash__media-img {
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  .cmn-eyelash__media-img {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-eyelash__media-img {
    width: calc((100% - 60px) / 3);
  }
}

.eyelash-price {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.eyelash-price__table {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
}

.eyelash-price02 {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.eyelash-price02__table {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.eyelash-price02__list {
  margin-top: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
.eyelash-price02__list:first-of-type {
  margin-top: 0;
}
.eyelash-price02__list .cmn-price__ttl01-st::after {
  content: none;
}
.eyelash-price02__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .eyelash-price02__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.eyelash-price02__info {
  max-width: 600px;
}
@media screen and (min-width: 1024px) {
  .eyelash-price02__info {
    flex: 1;
  }
}

.contact-formcomplete {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.contact-formcomplete__ttl {
  font-family: var(--sub_font02);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
.contact-formcomplete__txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}

/*
----------------------------------------------------------------*/
#inquiry,
#reserve,
#treatment01,
#treatment02,
#treatment03,
#treatment04,
#faq00,
#faq01,
#faq02,
#faq03,
#faq04,
#faq05 {
  scroll-margin-top: var(--hd_mt);
}

.--none {
  display: none;
}