@charset "UTF-8";
:root {
  --base_font: "Zen Kaku Gothic New", sans-serif;
  --sub_font: "Lato", sans-serif;
  --sub_font02: "EB Garamond", serif;
  --sub_font03: "Zen Old Mincho", serif;
  --mc: #426a4e;
  --sc: #376244;
  --fc: #666;
  --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-wrap.--size02 {
  max-width: 1520px;
}

.cmn-btn__link {
  display: block;
  max-width: 240px;
  width: 100%;
  border-bottom: solid 1px #666;
  padding-bottom: 20px;
  margin: 0 auto;
  position: relative;
}
.cmn-btn__link::before {
  content: "";
  width: 18px;
  aspect-ratio: 18/12;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  transform: translateY(-50%);
}
.cmn-btn__link-st {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.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-ttl {
  text-align: center;
}
.cmn-ttl__main {
  font-family: var(--sub_font);
  font-size: clamp(3.2rem, 2.4rem + 2.16vw, 4.6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--mc);
}
.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-ttl.--type02 .cmn-ttl__main {
  font-family: var(--sub_font02);
  color: #000;
}
.cmn-ttl.--type02 .cmn-ttl__sub {
  font-family: var(--sub_font03);
}
.cmn-ttl.--type02.--white .cmn-ttl__main {
  color: #fff;
}

.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 {
  --before-height: 100%;
  --after-size: 30px;
  --after-bottom: 0px;
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .reserve-btn {
    width: auto;
    padding: clamp(2rem, -1rem + 3.91vw, 3rem) clamp(2rem, -1rem + 3.91vw, 3rem) 0;
    top: 600px;
    transform: translateY(-100%);
    bottom: auto;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-btn {
    top: min(clamp(650px, 52.0833333333vw, 1000px), 90svh);
  }
}
@media screen and (min-width: 768px) {
  .sub-page .reserve-btn {
    top: min(80vw, 750px);
  }
}
.reserve-btn::before {
  content: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff 0%, #fff var(--before-height), transparent var(--before-height), transparent 100%);
  border-radius: 40px 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .reserve-btn::before {
    content: "";
  }
}
.reserve-btn::after {
  content: none;
  width: var(--after-size);
  height: var(--after-size);
  background: url(/system_panel/uploads/images/icon_curve01.png) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}
@media screen and (min-width: 768px) {
  .reserve-btn::after {
    content: "";
    bottom: var(--after-bottom);
  }
}
.reserve-btn__item-link {
  display: block;
  background-color: var(--bc);
}
@media screen and (min-width: 768px) {
  .reserve-btn__item-link {
    border: solid 4px var(--bc);
    border-radius: 50px;
  }
}
.reserve-btn__item-inr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 10px 15px;
}
@media screen and (min-width: 768px) {
  .reserve-btn__item-inr {
    justify-content: space-between;
    gap: 20px;
    border: solid 1px #fff;
    border-radius: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .reserve-btn__item-inr {
    padding: 15px 25px;
  }
}
.reserve-btn__item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reserve-btn__item-txt-main {
  font-size: clamp(1.6rem, 1.3rem + 0.77vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #fff;
}
.reserve-btn__item-txt-sub {
  font-family: var(--sub_font);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #fff;
  margin-bottom: 5px;
}
.reserve-btn__item-arrow {
  width: 18px;
  height: 12px;
}
.reserve-btn__item-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-top {
  position: relative;
}
.page-top__btn {
  display: block;
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-top__btn {
    width: 55px;
    height: 55px;
  }
}
.page-top--fixed.page-top__btn {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 30;
}
.sub-hd {
  position: relative;
}
.sub-hd__img {
  width: 100%;
  max-height: 750px;
  height: 125vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sub-hd__img {
    height: 80vw;
  }
}
.sub-hd__img.ojf::before {
  content: none;
}
.sub-hd__img img {
  border-radius: 0 0 0 clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
.sub-hd__cnt {
  width: calc(100% - 30px);
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-hd__ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.sub-hd__ttl-main {
  font-family: var(--sub_font);
  font-size: clamp(3.8rem, 2.1rem + 5.09vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.sub-hd__ttl-sub {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #fff;
}
.sub-hd__info-catch {
  font-size: min(6vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.39;
  color: #fff;
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3.5rem);
}
@media screen and (min-width: 768px) {
  .sub-hd__info-catch {
    font-size: min(4.3vw, 3.6rem);
  }
}
.sub-hd__info-catch strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .sub-hd__info-catch strong br {
    display: none;
  }
}
.sub-hd__info-txt {
  font-size: min(3.8vw, 1.6rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sub-hd__info-txt {
    font-size: min(2.1vw, 1.8rem);
    text-align: center;
  }
}
.sub-hd__info-txt strong {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .sub-hd__info-txt strong br{
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sub-hd__info-txt strong br {
    display: none;
  }
}

.faq__list {
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.faq__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.faq__item + .faq__item {
  margin-top: clamp(2.5rem, 1.1rem + 3.82vw, 4rem);
}
.faq__item-q {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding-right: 40px;
  cursor: pointer;
  position: relative;
}
.faq__item-q-txt {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding-left: 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__item-q-txt {
    min-height: 50px;
    padding-left: 70px;
  }
}
.faq__item-q-txt::before {
  content: "";
  width: 40px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_Q.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .faq__item-q-txt::before {
    width: 50px;
  }
}
.faq__item-q-txt-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.025em;
}
.faq__item-a {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
}
.faq__item-a-inr {
  padding: 25px 20px;
}
.faq__item-a-txt {
  display: flex;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  padding-left: 35px;
  margin: 0 auto;
  position: relative;
}
.faq__item-a-txt::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/15;
  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;
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-2column__info {
    flex: 1;
    width: auto;
    margin-left: 25px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-2column__info {
    margin-left: 50px;
  }
}
.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__info-txt.--br strong {
  font-weight: 400;
}
.cmn-2column__info-txt.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-2column__info-txt.--br strong br {
    display: block;
  }
}
.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: 20px 0;
  }
}
.cmn-table__th {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    width: 140px;
    padding: 0 15px 0 40px;
    margin-bottom: 0;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    flex: 1;
    padding: 0 10px 0 20px;
  }
  .cmn-table__td-st {
    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;
}

/* --- header ---*/
.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 1;
  transition: all 0.4s;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .hd {
    height: 120px;
  }
}
.hd-cnt {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding-inline: 0 15px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .hd-cnt {
    padding-inline: 0 30px;
  }
}
.hd-cnt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  background: url(/system_panel/uploads/images/bg-header.png) no-repeat bottom center/100% 100%;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .hd-cnt::before {
    background: url(/system_panel/uploads/images/bg-header.png) no-repeat bottom center/100% auto;
    aspect-ratio: 1920/240;
    height: auto;
  }
}
.hd-name {
  z-index: 1000;
}
.hd-logo {
  max-width: max-content;
  width: clamp(10rem, 6.6rem + 9.06vw, 24rem);
  position: absolute;
  top: -20px;
  left: 0;
}
.hd-nav {
  position: fixed;
  top: 0;
  left: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding-block: 90px 50px;
  width: 100%;
  max-width: 460px;
  height: 100svh;
  background: rgba(0, 0, 0, 0.7450980392);
  overflow-y: auto;
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  visibility: hidden;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .hd-nav {
    padding-top: 120px;
  }
}
@media screen and (min-width: 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;
  color: #fff;
  transition: 0.4s;
}
@media screen and (min-width: 1024px) {
  .hd-nav .nav-list__link {
    padding: 0;
  }
}
.hd-nav .nav-list__link-st {
  display: block;
  text-align: center;
  color: #fff;
}
.hd-nav__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 220px;
  aspect-ratio: 220/60;
  border: solid 1px #fff;
  border-radius: 30px;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-link {
    width: 60px;
    aspect-ratio: 1;
    background-color: #333;
    border: none;
    border-radius: 50%;
  }
}
.hd-nav__btn-icon {
  width: 23px;
  aspect-ratio: 23/18;
}
.hd-nav__btn-st {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-st {
    display: none;
  }
}
.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: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hd-toggle__inr {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 24px;
  height: 16px;
}
.hd-toggle__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  color: #fff;
  transition: 0.35s ease-in-out;
}
.hd-toggle__line:nth-child(1) {
  top: 0;
}
.hd-toggle__line:nth-child(2) {
  top: 8px;
}
.hd-toggle__line:nth-child(3) {
  position: relative;
  top: 16px;
}
.hd.open .sp-nav {
  opacity: 1;
  transform: translateX(-100%);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.hd.open .hd-toggle__line:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hd.open .hd-toggle__line:nth-child(2) {
  left: 50%;
  width: 0;
}
.hd.open .hd-toggle__line:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.cmn-cnt {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .cmn-cnt {
    flex-direction: row;
  }
}

.cmn-faq {
  display: none;
  background: url(/system_panel/uploads/images/bg_green01.jpg) no-repeat center center/cover;
  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-contact {
  width: 100%;
  background: url(/system_panel/uploads/images/bg_cmn-reserve01.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;
  }
}
.cmn-contact__info {
  text-align: center;
  margin-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.cmn-contact__info-txt {
  color: #fff;
}
.cmn-contact__info-txt.--01 {
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.cmn-contact__info-txt.--02 {
  display: inline;
  border-bottom: solid 1px #fff;
}
.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);
}
@media screen and (min-width: 1024px) {
  .cmn-contact__btn {
    flex-direction: row;
    justify-content: center;
    gap: clamp(2rem, 1rem + 2.54vw, 3rem) clamp(2rem, -2rem + 3.91vw, 3rem);
  }
}
.cmn-contact__btn-item {
  max-width: 380px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .cmn-contact__btn-item {
    width: calc((100% - clamp(2rem, -2rem + 3.91vw, 3rem) * 2) / 3);
  }
}
.cmn-contact__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  border-radius: clamp(4rem, 3rem + 2.54vw, 5rem);
  margin-inline: auto;
}
.cmn-contact__btn-txt {
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  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: var(--bc);
}
.cmn-contact__btn-item.--web .cmn-contact__btn-icon {
  width: 22px;
  height: 32px;
}
.cmn-contact__btn-item.--bridal .cmn-contact__btn-link {
  background-color: #376244;
}
.cmn-contact__btn-item.--bridal .cmn-contact__btn-icon {
  width: 33px;
  height: 40px;
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-link {
  border: solid 1px #fff;
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-icon {
  width: 22px;
  height: 18px;
}
.cmn-contact__bridal-lead {
  display: none;
}
.cmn-contact__bridal-txt {
  display: none;
}

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

.bridal .cmn-contact {
  background: url(/system_panel/uploads/images/bg_cmn-reserve-bridal01.jpg) no-repeat center center/cover;
}
.bridal .cmn-contact .cmn-ttl__main {
  font-family: var(--sub_font02);
}
.bridal .cmn-contact .cmn-ttl__sub {
  display: none;
}
.bridal .cmn-contact__info {
  display: none;
}
.bridal .cmn-contact__bridal {
  text-align: center;
  margin-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.bridal .cmn-contact__bridal-lead {
  display: block;
  font-family: var(--sub_font03);
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 20px;
}
.bridal .cmn-contact__bridal-txt {
  display: block;
  font-family: var(--sub_font03);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #fff;
}
.bridal .cmn-contact__bridal-txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .bridal .cmn-contact__bridal-txt strong br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .bridal .cmn-contact__btn {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .bridal .cmn-contact__btn-item {
    width: calc((100% - clamp(2rem, 1rem + 2.54vw, 3rem)) / 2);
  }
}
.bridal .cmn-contact__btn-item.--web {
  display: none;
}

.ft-cont {
  background: url(/system_panel/uploads/images/bg_ft01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem) 100px;
}
@media screen and (min-width: 768px) {
  .ft-cont {
    padding-bottom: 150px;
  }
}
.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;
  align-items: center;
  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: 60%;
  }
}
.ft-cont__logo {
  max-width: max-content;
}
@media screen and (min-width: 1024px) {
  .ft-cont__logo {
    width: clamp(13rem, 5rem + 7.81vw, 15rem);
  }
}
.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;
  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.6rem);
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__data-item {
  display: flex;
  gap: 15px;
}
.ft-cont__data-label {
  min-width: 70px;
  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 {
  position: relative;
}
.top-fv__splide .splide__slide {
  max-height: 90svh;
  height: min(120vw, 500px);
}
@media screen and (min-width: 768px) {
  .top-fv__splide .splide__slide {
    height: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .top-fv__splide .splide__slide {
    min-height: 650px;
    height: auto;
  }
}
.top-fv__splide .splide__slide img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 clamp(2rem, 0.1rem + 5.09vw, 4rem);
  object-fit: cover;
}
.top-fv__cont {
  max-width: max-content;
  width: calc(100% - 30px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-fv__cont-catch {
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.top-fv__cont-catch-ttl {
  font-size: min(7vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.52;
  color: #fff;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .top-fv__cont-catch-ttl {
    font-size: 5rem;
  }
}
.top-fv__cont-catch-st {
  font-size: min(3.5vw, 1.6rem);
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-fv__cont-catch-st {
    font-size: 1.8rem;
  }
}
.top-fv__cont-btn .cmn-btn__anc {
  max-width: 330px;
}

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

.top-concept {
  padding-block: clamp(6rem, 3.8rem + 5.83vw, 15rem) clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.top-concept__head {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-concept__head {
    padding-block: 40px clamp(15rem, -2.1rem + 22.32vw, 30rem);
    margin-bottom: clamp(6rem, 4.7rem + 1.74vw, 8rem);
  }
}
.top-concept__head-media-item01 {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-concept__head-media-item01 {
    display: block;
    max-width: max-content;
    width: 31.25%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.top-concept__head-media-item01 img {
  border-radius: 0 15px 15px 0;
}
.top-concept__head-media-item02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-concept__head-media-item02 {
    display: block;
    max-width: 1000px;
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .top-concept__head-media-item02 {
    right: 30px;
  }
}
.top-concept__head-media-item02-inr {
  padding-bottom: clamp(10rem, 4rem + 7.81vw, 19rem);
  position: relative;
}
.top-concept__head-media-item02-img01 {
  max-width: max-content;
  width: 60%;
  margin-left: auto;
}
.top-concept__head-media-item02-img01 img {
  border-radius: 15px;
}
.top-concept__head-media-item02-img02 {
  max-width: max-content;
  width: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-concept__head-media-item02-img02 img {
  border-radius: 15px;
}
.top-concept__catch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  padding-inline: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-concept__catch {
    padding-inline: 40px;
  }
}
.top-concept__catch-logo {
  max-width: max-content;
  width: 30%;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-concept__catch-logo {
    width: 25%;
    margin-right: -40px;
    padding-bottom: 0;
  }
}
.top-concept__catch-ttl {
  margin-left: -20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-concept__catch-ttl {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    padding-bottom: clamp(6rem, 3rem + 3.91vw, 8rem);
    margin-left: 0;
  }
}
.top-concept__catch-ttl-st {
  font-size: clamp(2.4rem, 1.9rem + 1.33vw, 3.6rem);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-concept__catch-ttl-st {
    writing-mode: vertical-rl;
  }
}
@media screen and (min-width: 768px) {
  .top-concept__catch-ttl-st.--02 {
    padding-top: clamp(3rem, -1.5rem + 5.86vw, 6rem);
  }
}
.top-concept__middle {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-concept__middle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: clamp(3rem, -6.3rem + 12.15vw, 17rem);
    margin-bottom: 0;
  }
}
.top-concept__middle-media {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-concept__middle-media {
    display: block;
    max-width: 330px;
    width: 27.5%;
  }
}
@media screen and (min-width: 768px) {
  .top-concept__middle-media-img {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__middle-media-img {
    margin-left: max((1200px - 100vw) / 2, -120px);
  }
}
.top-concept__middle-media-img img {
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .top-concept__middle-info {
    flex: 1;
    padding-top: 30px;
  }
}
.top-concept__middle-info-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-concept__middle-info-st {
    font-size: clamp(1.6rem, 1rem + 0.78vw, 1.8rem);
  }
}
.top-concept__middle-info-st strong {
  font-weight: 400;
}
.top-concept__middle-info-st strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-concept__middle-info-st strong br {
    display: block;
  }
}
.top-concept__middle-info-btn {
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-concept__middle-info-btn .cmn-btn__link {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .top-concept__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: clamp(3rem, -1.7rem + 6.08vw, 10rem);
    margin-top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__bottom {
    margin-top: -60px;
  }
}
.top-concept__bottom-info {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-concept__bottom-info {
    display: block;
    flex: 1;
  }
}
.top-concept__bottom-info-st {
  font-family: var(--sub_font);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--bc);
}
.top-concept__bottom-media {
  max-width: 430px;
}
@media screen and (min-width: 768px) {
  .top-concept__bottom-media {
    width: 36%;
  }
}
@media screen and (min-width: 768px) {
  .top-concept__bottom-media-img {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__bottom-media-img {
    margin-right: max((1200px - 100vw) / 2, -120px);
  }
}
.top-concept__bottom-media-img.--01 {
  max-width: max-content;
  width: 80%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-concept__bottom-media-img.--01 {
    display: none;
  }
}
.top-concept__bottom-media-img.--02 {
  max-width: max-content;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .top-concept__bottom-media-img.--02 {
    width: auto;
  }
}
.top-concept__bottom-media-img img {
  border-radius: 15px;
}

.top-concerns {
  background: url(/system_panel/uploads/images/img_top-foryou01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.top-concerns__catch {
  margin-block: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.top-concerns__catch-st {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.top-concerns__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .top-concerns__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
}
.top-concerns__item {
  max-width: 300px;
  width: 100%;
  border: solid 1px #fff;
  border-radius: 15px;
  padding: 15px 10px;
}
@media screen and (min-width: 768px) {
  .top-concerns__item {
    max-width: 330px;
    width: calc((100% - 30px) / 2);
    padding: 25px 10px;
  }
}
@media screen and (min-width: 1024px) {
  .top-concerns__item {
    width: calc((100% - 60px) / 3);
  }
}
.top-concerns__item-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.top-concerns__item-st.-left{
  text-align: initial;
  width: fit-content;
  margin-inline: auto;
}

.top-concerns__arrow {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.top-concerns__commit-st {
  font-size: clamp(1.8rem, 1.5rem + 0.92vw, 2.4rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-concerns__commit-st.--br-sp br {
    display: none;
  }
}
.top-concerns__commit-st strong {
  display: inline-block;
  background-image: radial-gradient(circle at center, rgb(255, 255, 255) 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1.06em 0.3em;
  font-weight: 400;
  padding-top: 0.4em;
  margin-top: 0.4em;
}

.top-strengths {
  background: url(/system_panel/uploads/images/bg_green01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.top-strengths__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
  margin-top: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
@media screen and (min-width: 768px) {
  .top-strengths__list {
    gap: 30px;
  }
}
.top-strengths__item {
  max-width: 380px;
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px) {
  .top-strengths__item {
    width: calc((100% - 60px) / 3);
  }
}
.top-strengths__media {
  width: 70%;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .top-strengths__media {
    width: 100%;
  }
}
.top-strengths__media img {
  border-radius: 50%;
}
.top-strengths__info-ttl {
  font-size: clamp(1.8rem, 1.2rem + 1.53vw, 2.4rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .top-strengths__info-ttl br {
    display: none;
  }
}
.top-strengths__info-txt {
  letter-spacing: 0.05em;
}

.top-color {
  padding-top: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.top-color__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .top-color__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .top-color__info {
    max-width: 500px;
    flex: 1;
  }
}
.top-color__info-catch {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.top-color__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.top-color__info-btn .cmn-btn__link {
  margin-right: 0;
}
.top-color__media {
  width: 60%;
}
@media screen and (min-width: 1024px) {
  .top-color__media {
    max-width: 600px;
    width: 50%;
  }
}
.top-color__media-inr {
  padding-bottom: clamp(8rem, 6.1rem + 5.18vw, 16rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-color__media-inr {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-color__media-inr {
    margin-left: max((1200px - 100vw) / 2, -120px);
  }
}
.top-color__media-img {
  max-width: max-content;
}
.top-color__media-img.--01 {
  width: 70%;
  margin-left: auto;
}
.top-color__media-img.--02 {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-color__media-img img {
  border-radius: 15px;
}

.top-menu {
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.top-menu__block {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "top-menu__info" "top-menu__cnt" "top-menu__meida";
  gap: 60px 50px;
}
@media screen and (min-width: 1024px) {
  .top-menu__block {
    grid-template-rows: auto;
    grid-template-columns: 1fr 50%;
    grid-template-areas: "top-menu__info top-menu__meida" "top-menu__cnt top-menu__cnt";
  }
}
.top-menu__info {
  grid-area: top-menu__info;
}
.top-menu__info-catch {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.top-menu__info-txt {
  letter-spacing: 0.05em;
}
.top-menu__media {
  grid-area: top-menu__meida;
  max-width: max-content;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-menu__media {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .top-menu__media {
    width: auto;
    margin: 0 -40px 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .top-menu__media {
    margin-right: max((1200px - 100vw) / 2, -120px);
  }
}
.top-menu__media img {
  border-radius: 15px;
}
.top-menu__cnt {
  grid-area: top-menu__cnt;
}
.top-menu__cnt-btn .cmn-btn__link {
  margin-right: 0;
}
.top-menu__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
@media screen and (min-width: 768px) {
  .top-menu__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
}
.top-menu__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  max-width: 380px;
  width: 100%;
  border: solid 1px var(--sc);
  border-radius: 15px;
  padding: 20px 15px;
}
@media screen and (min-width: 768px) {
  .top-menu__item {
    display: block;
    width: calc((100% - 30px) / 2);
    padding: 40px 15px;
  }
}
@media screen and (min-width: 1024px) {
  .top-menu__item {
    width: calc((100% - 60px) / 3);
    padding: clamp(4rem, -4rem + 7.81vw, 6rem) 15px;
  }
}
.top-menu__item-icon {
  height: 40px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-menu__item-icon {
    height: 50px;
  }
}
.top-menu__item-icon img {
  height: 100%;
}
.top-menu__item-icon.--01 img {
  aspect-ratio: 64/50;
}
.top-menu__item-icon.--02 img {
  aspect-ratio: 62/50;
}
.top-menu__item-icon.--03 img {
  aspect-ratio: 49/50;
}
.top-menu__item-ttl {
  flex: 1;
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--sc);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-menu__item-ttl {
    text-align: center;
  }
}
.top-menu__item-txt {
  width: 100%;
  letter-spacing: 0.05em;
}

.top-stylist {
  background: url(/system_panel/uploads/images/bg_green01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.top-stylist__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .top-stylist__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-stylist__info {
  max-width: 650px;
}
@media screen and (min-width: 1024px) {
  .top-stylist__info {
    flex: 1;
  }
}
.top-stylist__info-catch {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.top-stylist__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.top-stylist__info-box {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  padding: clamp(2rem, 1rem + 2.54vw, 3rem) 15px;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.top-stylist__info-box-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  max-width: 580px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 420px) {
  .top-stylist__info-box-inr {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
}
.top-stylist__info-box-txt {
  flex: 1;
}
.top-stylist__info-box-txt-st {
  letter-spacing: 0.05em;
  color: var(--sc);
}
.top-stylist__info-box-txt-name {
  font-size: 1.4rem;
  color: var(--sc);
  text-align: right;
  margin-top: 20px;
}
.top-stylist__info-box-media {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .top-stylist__info-box-media {
    width: auto;
  }
}
.top-stylist__info-box-media-img img {
  border-radius: 50%;
}
.top-stylist__info-btn .cmn-btn__link {
  margin-right: 0;
}
.top-stylist__media {
  max-width: 450px;
  width: 50%;
}
@media screen and (min-width: 1024px) {
  .top-stylist__media {
    width: 37.5%;
  }
}
.top-stylist__media img {
  border-radius: 15px;
}

.top-salon {
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.top-salon__block {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 50% 1fr;
  grid-template-areas: "top-salon__head top-salon__head" "top-salon__media01 top-salon__media01" "top-salon__txt top-salon__txt" "top-salon__media02 top-salon__media03";
  gap: 30px;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 768px) {
  .top-salon__block {
    grid-template-rows: auto;
    grid-template-columns: 280px 1fr 50%;
    grid-template-areas: "top-salon__head top-salon__media01 top-salon__media01" "top-salon__media02 top-salon__media02 top-salon__txt" "top-salon__media02 top-salon__media02 top-salon__media03";
    gap: clamp(5rem, 2rem + 3.91vw, 7rem) clamp(3rem, -6rem + 11.72vw, 9rem);
  }
}
.top-salon__head {
  grid-area: top-salon__head;
}
.top-salon__head-catch {
  padding-left: clamp(3rem, 2rem + 2.54vw, 4rem);
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-salon__head-catch-main {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(1rem, -1.9rem + 7.63vw, 4rem);
}
.top-salon__head-catch-sub {
  font-family: var(--sub_font);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--bc);
}
.top-salon__txt {
  grid-area: top-salon__txt;
}
.top-salon__media01 {
  grid-area: top-salon__media01;
}
@media screen and (min-width: 768px) {
  .top-salon__media01 {
    text-align: right;
  }
}
.top-salon__media01 img {
  border-radius: 15px;
}
.top-salon__media02 {
  grid-area: top-salon__media02;
}
.top-salon__media02 img {
  border-radius: 15px;
}
.top-salon__media03 {
  grid-area: top-salon__media03;
}
@media screen and (min-width: 768px) {
  .top-salon__media03 {
    width: 60%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .top-salon__media03 {
    width: auto;
    text-align: center;
  }
}
.top-salon__media03 img {
  border-radius: 15px;
}
.top-salon__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 768px) {
  .top-salon__list {
    gap: 25px;
    max-width: 790px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .top-salon__list {
    max-width: none;
  }
}
.top-salon__item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 180px;
  width: calc((100% - 20px) / 2);
  aspect-ratio: 14/9;
  border: solid 1px var(--sc);
  border-radius: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-salon__item {
    width: calc((100% - 50px) / 3);
    border-radius: 50%;
    aspect-ratio: 1;
  }
}
@media screen and (min-width: 1024px) {
  .top-salon__item {
    width: calc((100% - 100px) / 5);
  }
}
.top-salon__item-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  color: var(--sc);
}
.top-salon__btn .cmn-btn__link {
  margin-right: 0;
}

.top-bridal {
  padding-block: clamp(6rem, 4.4rem + 4.21vw, 12.5rem) clamp(8rem, 5.6rem + 6.47vw, 18rem);
  position: relative;
}
.top-bridal::before {
  content: "";
  width: 100%;
  height: calc(100% - clamp(6rem, 4.4rem + 4.21vw, 12.5rem));
  background: url(/system_panel/uploads/images/bg_top-bridal01.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-bridal__catch {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 620px;
  margin-bottom: clamp(4rem, 2.8rem + 3.31vw, 7rem);
}
.top-bridal__ttl {
  margin-top: calc(clamp(6rem, 4.7rem + 3.56vw, 11.5rem) * -1);
}
.top-bridal__ttl-st {
  font-family: var(--sub_font02);
  font-size: clamp(6rem, 4.5rem + 3.88vw, 12rem);
  letter-spacing: 0.075em;
  line-height: 1;
  color: #fff;
  writing-mode: vertical-rl;
  overflow-x: hidden;
  width: 1.9em;
}
.top-bridal__ttl-st span {
  font-size: clamp(10rem, 6.7rem + 8.84vw, 18rem);
  vertical-align: bottom;
  position: relative;
  left: -10px;
}
.top-bridal__info {
  flex: 1;
  padding-top: clamp(6rem, 1rem + 13.26vw, 18rem);
}
.top-bridal__info-ttl {
  font-family: var(--sub_font03);
  font-size: clamp(2.4rem, 1.7rem + 1.85vw, 3.6rem);
  color: #fff;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-bridal__info-txt {
  color: #fff;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-bridal__info-btn .cmn-btn__link {
  margin-right: 0;
}
.top-bridal__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.top-bridal__list-txt {
  max-width: max-content;
  width: 60%;
  position: absolute;
  right: -15px;
  bottom: calc(clamp(4rem, 2.1rem + 5.18vw, 12rem) * -1);
}
@media screen and (min-width: 768px) {
  .top-bridal__list-txt {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-bridal__list-txt {
    right: max((1200px - 100vw) / 2, -120px);
  }
}
.top-bridal__item {
  max-width: 395px;
  width: calc((100% - 20px) / 3);
}

.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: 150px 1fr;
    grid-template-areas: "top-news__ttl top-news__list" "top-news__btn top-news__list";
    gap: 25px clamp(4rem, 1.1rem + 7.63vw, 7rem);
  }
}
.top-news__cont-ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl {
    grid-area: top-news__ttl;
    margin-bottom: 0;
  }
}
.top-news__cont-ttl--en {
  font-family: var(--sub_font);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--mc);
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl--en {
    font-size: 3rem;
  }
}
.top-news__cont-ttl--jp {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--mc);
}
@media screen and (min-width: 768px) {
  .top-news__cont-ttl--jp {
    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-cate {
  margin-left: 20px;
}
.top-news__cont-list-item-cate-str {
  display: inline-block;
  min-width: 100px;
  background-color: var(--sc);
  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: 40px;
}
.breadcrumb-cnt__list {
  display: flex;
  gap: 25px;
}
.breadcrumb-cnt__item {
  position: relative;
}
.breadcrumb-cnt__item::before {
  content: ">";
  position: absolute;
  top: 42%;
  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);
  letter-spacing: 0.05em;
}
.breadcrumb-cnt__item-st.--current {
  color: var(--sc);
}

.concept-story {
  padding-block: clamp(4rem, 2.1rem + 5.09vw, 6rem) clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.concept-story__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: clamp(6rem, 4.1rem + 5.09vw, 8rem);
}
@media screen and (min-width: 1024px) {
  .concept-story__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .concept-story__info {
    max-width: 500px;
    flex: 1;
  }
}
.concept-story__info-catch {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.concept-story__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.concept-story__media {
  width: 60%;
}
@media screen and (min-width: 1024px) {
  .concept-story__media {
    max-width: 600px;
    width: 50%;
  }
}
.concept-story__media-inr {
  padding-bottom: clamp(8rem, 6.1rem + 5.18vw, 16rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-story__media-inr {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-story__media-inr {
    margin-left: max((1200px - 100vw) / 2, -120px);
  }
}
.concept-story__media-img {
  max-width: max-content;
}
.concept-story__media-img.--01 {
  width: 70%;
  margin-left: auto;
}
.concept-story__media-img.--02 {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.concept-story__media-img img {
  border-radius: 15px;
}

.concept-promise {
  background: url(/system_panel/uploads/images/bg_green02.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.concept-promise__catch {
  font-size: clamp(2.2rem, 1.4rem + 2.04vw, 3rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin-bottom: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
.concept-promise__list {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.concept-promise__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 40px;
}
@media screen and (min-width: 1024px) {
  .concept-promise__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.concept-promise__item + .concept-promise__item {
  margin-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
@media screen and (min-width: 1024px) {
  .concept-promise__item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.concept-promise__info {
  max-width: 550px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .concept-promise__info {
    flex: 1;
  }
}
.concept-promise__info-head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.concept-promise__info-label {
  margin-bottom: 20px;
}
.concept-promise__info-label-st {
  display: inline-block;
  border: solid 1px var(--sc);
  font-family: var(--sub_font);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.67;
  color: var(--sc);
  text-align: center;
  padding-inline: 10px;
}
.concept-promise__info-ttl {
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
}
.concept-promise__info-txt {
  letter-spacing: 0.05em;
}
.concept-promise__media {
  max-width: 550px;
  width: 70%;
}
@media screen and (min-width: 1024px) {
  .concept-promise__media {
    width: 50%;
  }
}
.concept-promise__media img {
  border-radius: 15px;
}

.concept-cnt {
  margin-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}

.bridal-fv__en {
  font-family: var(--sub_font02);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.bridal-fv__catch {
  font-family: var(--sub_font03);
  font-size: clamp(3.2rem, 2.4rem + 2.16vw, 4.6rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.bridal-fv__txt {
  font-family: var(--sub_font03);
  font-size: clamp(1.6rem, 1.5rem + 0.31vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.bridal-fv__txt strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .bridal-fv__txt strong br {
    display: none;
  }
}

.bridal-about {
  padding-block: clamp(4rem, 2.1rem + 5.09vw, 6rem) clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.bridal-about__cnt {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 50%;
  grid-template-areas: "bridal-about__head bridal-about__head" "bridal-about__info bridal-about__info" "bridal-about__media02 bridal-about__media01";
  gap: clamp(2rem, 0.1rem + 5.09vw, 4rem) 0;
}
@media screen and (min-width: 1024px) {
  .bridal-about__cnt {
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "bridal-about__head bridal-about__media01" "bridal-about__media02 bridal-about__media01" "bridal-about__media02 bridal-about__info";
    gap: clamp(7rem, -13rem + 19.53vw, 12rem) clamp(5rem, -23rem + 27.34vw, 12rem);
  }
}
.bridal-about__head {
  grid-area: bridal-about__head;
}
@media screen and (min-width: 1024px) {
  .bridal-about__head {
    padding-top: clamp(0rem, -6.9rem + 6.7vw, 6rem);
  }
}
.bridal-about__ttl {
  margin-bottom: clamp(2rem, -0.1rem + 5.52vw, 7rem);
}
.bridal-about__catch {
  font-family: var(--sub_font03);
  font-size: clamp(2.2rem, 1.9rem + 0.88vw, 3rem);
  letter-spacing: 0.05em;
}
.bridal-about__info {
  grid-area: bridal-about__info;
}
.bridal-about__info-txt {
  letter-spacing: 0.05em;
}
.bridal-about__media01 {
  grid-area: bridal-about__media01;
  padding-bottom: clamp(5rem, -1.7rem + 17.81vw, 12rem);
  margin-left: -50px;
}
@media screen and (min-width: 1024px) {
  .bridal-about__media01 {
    padding-bottom: 0;
    margin-right: -40px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .bridal-about__media01 {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.bridal-about__media02 {
  grid-area: bridal-about__media02;
  align-self: flex-end;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .bridal-about__media02 {
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .bridal-about__media02 {
    margin-left: max((1200px - 100vw) / 2, -120px);
  }
}

.bridal-pre {
  background: url(/system_panel/uploads/images/bg_bridal-pre01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.bridal-pre__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 1024px) {
  .bridal-pre__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .bridal-pre__info {
    max-width: 500px;
    flex: 1;
    padding-top: clamp(0rem, -6.9rem + 6.7vw, 6rem);
  }
}
.bridal-pre__info-head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.bridal-pre__info-head-ttl {
  font-family: var(--sub_font03);
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.bridal-pre__info-head-txt {
  font-family: var(--sub_font03);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #fff;
}
.bridal-pre__info-item {
  border-bottom: solid 1px #fff;
  padding-block: 15px;
}
.bridal-pre__info-item:first-of-type {
  padding-top: 0;
}
.bridal-pre__info-item-txt {
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bridal-pre__media {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .bridal-pre__media {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .bridal-pre__media-inr {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .bridal-pre__media-inr {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}

.bridal .goverlay {
  background: rgba(0, 0, 0, 0.8);
}

.bridal-style {
  background: url(/system_panel/uploads/images/bg_bridal-style01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.bridal-style__txt {
  font-family: var(--sub_font03);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  margin-block: clamp(4rem, 1.1rem + 7.63vw, 7rem) clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .bridal-style__txt {
    text-align: center;
  }
}
.bridal-style__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-bottom: 7px;
}
.bridal-style__list:last-of-type {
  margin-bottom: 0;
}
.bridal-style__item {
  width: calc((100% - 14px) / 3);
}
.bridal-style__item-img {
  width: 100%;
  aspect-ratio: 395/500;
}
.bridal-style__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bridal-consultation {
  background: url(/system_panel/uploads/images/bg_bridal-consultation01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.bridal-consultation__txt {
  font-family: var(--sub_font03);
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  margin-block: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.bridal-consultation__list {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.bridal-consultation__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 20px;
  padding-block: clamp(2rem, 0.1rem + 5.09vw, 4rem);
  padding-left: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .bridal-consultation__item {
    flex-direction: row;
  }
}
.bridal-consultation__item::before {
  content: "";
  width: 20px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.bridal-consultation__step {
  position: relative;
}
@media screen and (min-width: 768px) {
  .bridal-consultation__step {
    padding-left: 80px;
  }
}
.bridal-consultation__step::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: -35px;
}
.bridal-consultation__step::after {
  content: none;
  width: 90px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 8px;
  left: -30px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .bridal-consultation__step::after {
    content: "";
  }
}
.bridal-consultation__step-txt {
  font-family: var(--sub_font02);
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bridal-consultation__step-txt {
    text-align: center;
  }
}
.bridal-consultation__step-num {
  font-family: var(--sub_font02);
  font-size: clamp(4rem, 3rem + 2.54vw, 5rem);
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bridal-consultation__info {
    flex: 1;
  }
}
.bridal-consultation__info-ttl {
  font-family: var(--sub_font03);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #fff;
}
.bridal-consultation__info-txt {
  letter-spacing: 0.05em;
  color: #fff;
}

.salon-catch {
  padding-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.salon-catch__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .salon-catch__list {
    gap: 15px;
  }
}
.salon-catch__item {
  width: calc((100% - 30px) / 3);
}
.salon-catch__item img {
  border-radius: 15px;
}

.salon-interior {
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.salon-interior__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .salon-interior__cnt {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .salon-interior__info {
    flex: 1;
  }
}
.salon-interior__info-catch {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-block: clamp(4rem, 2.1rem + 5.09vw, 6rem) clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .salon-interior__info-catch {
    font-size: clamp(2.6rem, 1rem + 1.56vw, 3rem);
  }
}
.salon-interior__info-txt {
  letter-spacing: 0.05em;
}
.salon-interior__media {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "salon-interior__media-img01 salon-interior__media-img01" "salon-interior__media-img02 salon-interior__media-img03";
  gap: clamp(1rem, 0rem + 2.54vw, 2rem);
  max-width: 600px;
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .salon-interior__media {
    width: 50%;
  }
}
.salon-interior__media-img01 {
  grid-area: salon-interior__media-img01;
}
.salon-interior__media-img02 {
  grid-area: salon-interior__media-img02;
}
.salon-interior__media-img03 {
  grid-area: salon-interior__media-img03;
}
.salon-interior__media img {
  border-radius: 15px;
}

.salon-facility {
  background: url(/system_panel/uploads/images/bg_green02.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.salon-facility__lead {
  text-align: center;
  margin-block: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.salon-facility__lead-catch {
  font-size: clamp(2rem, 1.3rem + 1.77vw, 3.6rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.salon-facility__lead-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .salon-facility__lead-txt br {
    display: none;
  }
}
.salon-facility__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 50px 15px;
}
@media screen and (min-width: 768px) {
  .salon-facility__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.salon-facility__item {
  max-width: 390px;
}
@media screen and (min-width: 768px) {
  .salon-facility__item {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .salon-facility__item {
    width: calc((100% - 30px) / 3);
  }
}
.salon-facility__item-media {
  width: 80%;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .salon-facility__item-media {
    width: auto;
    margin-inline: 0;
  }
}
.salon-facility__item-media img {
  border-radius: 15px;
}
.salon-facility__item-info{
  padding-inline: 15px;
}
.salon-facility__item-info-ttl {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}
.salon-facility__item-info-ttl::before {
  content: "";
  width: clamp(8rem, 6.1rem + 5.09vw, 10rem);
  height: 1px;
  background-color: var(--sc);
  position: absolute;
  bottom: 0;
  left: 0;
}
.salon-facility__item-info-txt {
  letter-spacing: 0.05em;
}

.salon-overview {
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.salon-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) {
  .salon-overview__cnt {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.salon-overview__info {
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .salon-overview__info {
    width: 50%;
  }
}
.salon-overview__map {
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .salon-overview__map {
    height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .salon-overview__map {
    max-width: 550px;
    flex: 1;
    height: 400px;
  }
}
.salon-overview__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.color-gentle {
  padding-block: clamp(4rem, 2.1rem + 5.09vw, 6rem) clamp(0rem, -42rem + 32.81vw, 21rem);
  position: relative;
}
@media screen and (min-width: 1280px) {
  .color-gentle__cnt {
    padding-top: clamp(8rem, -4rem + 9.38vw, 14rem);
  }
}
.color-gentle__catch {
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.color-gentle__catch-ttl {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.color-gentle__catch-txt {
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .color-gentle__catch-txt {
    text-align: center;
  }
}
.color-gentle__catch-txt strong {
  font-weight: 400;
}
.color-gentle__catch-txt strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .color-gentle__catch-txt strong br {
    display: block;
  }
}
.color-gentle__media {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(1.5rem, -0.5rem + 5.39vw, 5rem);
  max-width: 1000px;
  width: 100%;
  margin-top: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .color-gentle__media {
    display: block;
    margin: 0;
  }
}
.color-gentle__media-item01 {
  flex: 1;
}
@media screen and (min-width: 1280px) {
  .color-gentle__media-item01 {
    width: clamp(34rem, 2rem + 25vw, 50rem);
    position: absolute;
    top: clamp(5rem, -5rem + 7.81vw, 10rem);
    left: max((1280px - 100vw) / 2, -240px);
  }
}
.color-gentle__media-item01 img {
  border-radius: 15px;
}
.color-gentle__media-item02 {
  width: 50%;
}
@media screen and (min-width: 1280px) {
  .color-gentle__media-item02 {
    width: clamp(34rem, -22rem + 43.75vw, 62rem);
    position: absolute;
    top: 0;
    right: max((1280px - 100vw) / 2, -330px);
  }
}
.color-gentle__media-item02-inr {
  padding-bottom: clamp(8rem, 5.3rem + 7.12vw, 19rem);
  position: relative;
}
.color-gentle__media-item02-img {
  max-width: max-content;
}
.color-gentle__media-item02-img.--01 {
  width: 81%;
  margin-left: auto;
}
.color-gentle__media-item02-img.--02 {
  width: 55%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.color-gentle__media-item02-img img {
  border-radius: 15px;
}

.color-2column {
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.color-2column__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .color-2column__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.color-2column__item + .color-2column__item {
  margin-top: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.color-2column__info {
  max-width: 520px;
}
@media screen and (min-width: 1024px) {
  .color-2column__info {
    flex: 1;
  }
}
.color-2column__info-catch {
  font-size: clamp(2rem, 1rem + 2.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-block: clamp(4rem, 2.1rem + 5.09vw, 6rem) clamp(3rem, 2rem + 2.54vw, 4rem);
}
.color-2column__info-txt {
  letter-spacing: 0.05em;
}
.color-2column__media {
  max-width: 600px;
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .color-2column__media {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .color-2column__media-inr {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .color-2column__media-inr {
    margin-right: max((1200px - 100vw) / 2, -120px);
  }
}
.color-2column__media img {
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .color-2column__item:nth-of-type(2n + 1) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .color-2column__item:nth-of-type(2n + 1) .color-2column__media-inr {
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .color-2column__item:nth-of-type(2n + 1) .color-2column__media-inr {
    margin-left: max((1200px - 100vw) / 2, -120px);
  }
}

.color-style {
  background: url(/system_panel/uploads/images/bg_green02.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.color-style__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-block: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .color-style__txt br {
    display: none;
  }
}
.color-style__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.color-style__item {
  max-width: 390px;
  width: calc((100% - clamp(2rem, 1rem + 2.54vw, 3rem)) / 2);
}
@media screen and (min-width: 768px) {
  .color-style__item {
    width: calc((100% - clamp(2rem, 1rem + 2.54vw, 3rem) * 2) / 3);
  }
}
.color-style__item-img {
  width: 100%;
  aspect-ratio: 1;
}
.color-style__item-img img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.color-price {
  padding-block: clamp(6rem, 4.5rem + 3.88vw, 12rem);
}
.color-price__txt {
  letter-spacing: 0.05em;
  text-align: center;
  margin-block: clamp(4rem, 3rem + 2.54vw, 5rem) clamp(3rem, 2rem + 2.54vw, 4rem);
}
.color-price__table {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.color-price__btn {
  max-width: 800px;
  width: 100%;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  margin-inline: auto;
}
.color-price__btn .cmn-btn__link {
  max-width: 290px;
  margin-right: 0;
}

/*online shop btn*/
.ft-cont__btn-item{
    display: none;
}

/*@media screen and (min-width: 1024px) {
  .ft-cont__btn-item {
    display: block;
    text-align: center;
  }
}*/

.ft-cont__btn-txt{
    max-width: 160px;
    width: 100%;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 25px;
    line-height: 2.5;
    margin-top: 12px;
    margin-left: 110px;
}

/*ハンバーガーメニュー online shop btn*/
.nav-list__item.-btn{
  display: block;
}

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

.nav-list__link.-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  border: solid 1px #fff;
  border-radius: 30px;
  margin-top: 10px;
}

.nav-list__link-st.-btn{
  color: #fff;
}

/*bridal splide*/
/*smoooothに表示されるため*/
.gjs-dashed .sub-hd__splide.splide {
  visibility: visible;
}
.gjs-dashed .sub-hd__splide .splide__list {
  display: block;
  height: auto;
}

.nav-list__item.-btn.--none{
  display: none;
}