@charset "UTF-8";
:root {
  --base_font: "Zen Old Mincho", serif;
  --sub_font: "Hina Mincho", serif;
  --mc: #442405;
  --sc: #894b14;
  --fc: #333;
  --bc: #f5f7f5;
  --red: #b10000;
  --hd_mt: 90px;
}
@media screen and (min-width: 768px) {
  :root {
    --hd_mt: 140px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

br {
  line-height: inherit;
}

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

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

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

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

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

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

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

*:focus {
  outline: none;
}

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

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

strong {
  font-weight: 700;
}

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

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

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

/*class*/
.cmn-wrap {
  max-width: 1280px;
  width: 100%;
  padding-inline: 15px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-wrap {
    padding-inline: 40px;
  }
}
.cmn {
  /*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-anc {
  display: block;
  max-width: 320px;
  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::before {
  content: "";
  width: 41px;
  height: 10px;
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .cmn-btn-anc::before {
    right: 30px;
  }
}
.cmn-btn-anc-str {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 4.375;
  color: #000;
  transition: all 0.3s;
}
.cmn-btn-anc:hover {
  background-color: #000;
}
.cmn-btn-anc:hover::before {
  background-image: url(/system_panel/uploads/images/icon_arrow01-white.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 {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-ttl--jp {
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .cmn-ttl--jp {
    font-size: 4.2rem;
  }
}

.cmn-subttl {
  font-family: var(--sub_font);
  font-size: 3rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
@media screen and (min-width: 768px) {
  .cmn-subttl {
    font-size: 3.6rem;
  }
}
.cmn-subttl.--small01 {
  font-size: min(7.5vw, 3rem);
}
@media screen and (min-width: 768px) {
  .cmn-subttl.--small01 {
    font-size: 3.6rem;
  }
}
.cmn-subttl.--small02 {
  font-size: min(5vw, 3rem);
}
@media screen and (min-width: 768px) {
  .cmn-subttl.--small02 {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .cmn-subttl.--sp-br br {
    display: none;
  }
}

.bg-border {
  text-align: center;
  margin-bottom: clamp(5rem, 3.1rem + 5.09vw, 7rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .bg-border::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
  }
}
.bg-border .cmn-subttl {
  display: inline-block;
  background-color: #fff;
  padding: 0 15px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .bg-border .cmn-subttl {
    padding: 0 30px;
  }
}

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

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

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

.subhd {
  margin-top: var(--hd_mt);
  position: relative;
}
.subhd__img {
  max-height: 490px;
  height: 80vw;
  margin-inline: 15px;
}
@media screen and (min-width: 768px) {
  .subhd__img {
    margin-inline: 30px;
  }
}
.subhd__img.ojf::before {
  content: none;
}
.subhd__ttl {
  width: calc(100% - 30px);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subhd__ttl-jp {
  font-family: var(--sub_font);
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-jp {
    font-size: 4.6rem;
  }
}
.subhd__ttl-jp.--small01{
  font-size: min(7.5vw,3.2rem);
}
@media screen and (min-width: 768px) {
  .subhd__ttl-jp.--small01{
    font-size: 4.6rem;
  }
}

.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: 150px;
    padding: 0 15px;
  }
  .cmn-table__th-st {
    letter-spacing: 0.025em;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    flex: 1;
    padding: 0 10px 0 0;
  }
  .cmn-table__td-st {
    letter-spacing: 0.025em;
  }
}

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

.cmn-catch {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem) 0;
}
.cmn-catch__ttl {
  text-align: center;
}
.cmn-catch__txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cmn-catch__txt {
    font-size: 1.8rem;
    text-align: center;
  }
}
.cmn-catch__txt strong {
  font-weight: 400;
}
.cmn-catch__txt strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-catch__txt strong br {
    display: block;
  }
}
.cmn-catch__cont {
  position: relative;
}
.cmn-catch__cont-icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.cmn-catch__cont-icon-item.--01 {
  width: 40%;
  top: calc(clamp(4rem, 2.1rem + 5.09vw, 6rem) * -1);
  left: clamp(0rem, -6.2rem + 16.57vw, 15rem);
}
.cmn-catch__cont-icon-item.--02 {
  width: 30%;
  bottom: calc(clamp(4rem, 2.1rem + 5.09vw, 6rem) * -1);
  right: clamp(0rem, -5.8rem + 15.47vw, 14rem);
}

.cmn-concerns {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem) 0;
}
.cmn-concerns__box {
  padding-block: clamp(6rem, 3.1rem + 7.63vw, 9rem);
  position: relative;
}
.cmn-concerns__box::before {
  content: "";
  width: min(100vw, 1440px);
  height: 100%;
  background: url(/system_panel/uploads/images/bg_cmn-concerns01_sp.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .cmn-concerns__box::before {
    background: url(/system_panel/uploads/images/bg_cmn-concerns01.png) no-repeat center center/cover;
  }
  .cmn-concerns__box.--02::before{
    background: url(/system_panel/uploads/images/bg_cmn-concerns02.png) no-repeat center center/cover;
  }
}
.cmn-concerns__box-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 25px;
}
@media screen and (min-width: 768px) {
  .cmn-concerns__box-list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.cmn-concerns__box-item {
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  .cmn-concerns__box-item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-concerns__box-item {
    width: calc((100% - 50px) / 3);
  }
}
.cmn-concerns__box-item-media {
  width: 80%;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .cmn-concerns__box-item-media {
    width: auto;
  }
}
.cmn-concerns__box-item-ttl {
  font-family: var(--sub_font);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cmn-concerns__box-item-ttl {
    font-size: 2.1rem;
  }
}
.cmn-concerns__box-item-desc{
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 10px;
  margin-top: 20px;
}
.cmn-concerns__box-item-desc-inr{
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}
.cmn-concerns__box-item-desc-txt{
  font-family: var(--sub_font);
  letter-spacing: 0.05em;
  padding-left: 30px;
  margin-bottom: 5px;
  position: relative;
}
.cmn-concerns__box-item-desc-txt::before{
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_check01.png) no-repeat center center/cover;
  position: absolute;
  top: 5px;
  left: 0;
}
.cmn-concerns__arrow {
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.cmn-concerns__commit.cmn-subttl {
  margin-bottom: 0;
}
.cmn-concerns__commit.--br-sp-tb strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .cmn-concerns__commit.--br-sp-tb strong br {
    display: none;
  }
}
.cmn-concerns__img {
  max-width: max-content;
  width: calc(100% - 30px);
  margin: 0 auto clamp(2rem, 0.1rem + 5.09vw, 4rem);
}

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

.faq__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
  padding-bottom: 30px;
  border-bottom: dashed 1px #999;
}
.faq__item + .faq__item {
  padding-top: 30px;
}
.faq__item-q {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding-right: 40px;
  position: relative;
}
.faq__item-q::before, .faq__item-q::after {
  content: "";
  width: 26px;
  height: 2px;
  background-color: var(--mc);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.faq__item-q::after {
  transform: translateY(-50%) rotate(-90deg);
}
.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-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .faq__item-q-txt-st {
    font-size: 1.8rem;
  }
}
.faq__item-q-border {
  display: none;
  flex: 1;
  border-top: dashed 1px var(--mc);
}
@media screen and (min-width: 768px) {
  .faq__item-q-border {
    display: block;
  }
}
.faq__item-a {
  width: 100%;
  background-color: var(--bc);
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.gjs-dashed .faq__item-a {
  height: auto;
}
.faq__item-a-inr {
  padding: 20px 15px;
}
.faq__item-a-txt {
  display: flex;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  min-height: 40px;
  padding-left: 60px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__item-a-txt {
    min-height: 50px;
    padding-left: 70px;
  }
}
.faq__item-a-txt::before {
  content: "";
  width: 40px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_A.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .faq__item-a-txt::before {
    width: 50px;
  }
}
.faq__item-a-st {
  letter-spacing: 0.025em;
}
.faq__item.active .faq__item-q::after {
  transform: translateY(-50%);
}

.cmn-voice {
  background-color: #f5f5f6;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.cmn-voice__item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  border-top: dashed 1px #999;
  padding: clamp(3rem, 2rem + 2.54vw, 4rem) 10px;
}
@media screen and (min-width: 768px) {
  .cmn-voice__item {
    justify-content: space-between;
    align-items: stretch;
  }
}
.cmn-voice__item:last-of-type {
  border-bottom: dashed 1px #999;
}
.cmn-voice__item-media {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .cmn-voice__item-media {
    width: 150px;
  }
}
@media screen and (min-width: 768px) {
  .cmn-voice__item-info {
    flex: 1;
  }
}
.cmn-voice__item-info-ttl {
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  color: #994d6c;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .cmn-voice__item-info-ttl {
    font-size: 1.8rem;
  }
}
.cmn-voice__item-info-txt {
  letter-spacing: 0.025em;
}

.cmn-nav-toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1002;
}
@media screen and (min-width: 768px) {
  .cmn-nav-toggle {
    width: 60px;
    height: 60px;
  }
}
.cmn-nav-toggle__btn {
  display: block;
  width: 25px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .cmn-nav-toggle__btn {
    width: 37.5px;
    height: 24px;
  }
}
.cmn-nav-toggle__btn-line {
  display: block;
  position: absolute;
  left: 0;
  transition: 0.35s ease-in-out;
  width: 100%;
  height: 2px;
  background: #000;
}
.open .cmn-nav-toggle__btn-line {
  background: #000;
}
.cmn-nav-toggle__btn-line:nth-child(1) {
  top: 0;
}
.cmn-nav-toggle__btn-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.cmn-nav-toggle__btn-line:nth-child(3) {
  bottom: 0;
}

.header.open .cmn-nav-toggle__btn-line:nth-child(1) {
  top: 7px;
  transform: rotate(315deg);
}
.header.open .cmn-nav-toggle__btn-line:nth-child(2) {
  left: 50%;
  width: 0;
}
.header.open .cmn-nav-toggle__btn-line:nth-child(3) {
  top: 7px;
  transform: rotate(-315deg);
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s;
  z-index: 1010;
}
.header__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1830px;
  width: 100%;
  height: 100%;
  padding: 15px 7.5px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__content {
    padding: 30px;
  }
}
.header__content-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.header__content-info-ttl {
  display: none;
}
.header__content-info-logo {
  width: 120px;
  position: relative;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .header__content-info-logo {
    width: auto;
  }
}
.header__content-info-sns {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__content-info-sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
.header__content-menu-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__content-menu-nav-item {
  padding: 0 min(1.1111111111vw, 1.6rem);
}
.header__content-menu-nav-item:first-of-type {
  padding-left: 0;
}
.header__content-menu-nav-item:last-of-type {
  padding-right: 0;
}
.header__content-menu-nav-item-anc {
  display: block;
  padding: 10px;
}
.header__content-menu-nav-item-anc-str {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--fc);
}
@media screen and (min-width: 1024px) {
  .header__content-menu-nav-item-anc-str {
    font-size: 1.8rem;
  }
}
.header.fixed {
  background-color: #fff;
}

.sp-nav.header__content-menu-nav {
  display: block;
  overflow-y: scroll;
  opacity: 0;
  max-width: 500px;
  width: 100%;
  height: 100vh;
  background: #f5f5f5;
  padding: 65px 5%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 100%;
  transform: scale(0.9);
  visibility: hidden;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  z-index: 1000;
}
@media screen and (min-width: 1024px) {
  .sp-nav.header__content-menu-nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: clamp(5rem, -7rem + 11.72vw, 8rem);
    max-width: none;
  }
}
.open .sp-nav.header__content-menu-nav {
  opacity: 1;
  transform: translateX(-100%);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.gjs-dashed .sp-nav.header__content-menu-nav {
  overflow: scroll;
  opacity: 1;
  height: calc(100vh - 130px);
  transform: translate(-100%, 130px);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.sp-nav .header__content-menu-nav-info-logo {
  display: none;
}
@media screen and (min-width: 1024px) {
  .sp-nav .header__content-menu-nav-info-logo {
    display: block;
    text-align: center;
  }
}
.sp-nav .header__content-menu-nav-list {
  display: block;
  width: auto;
}
.sp-nav .header__content-menu-nav-item {
  overflow: hidden;
  padding: 0;
}
.sp-nav .header__content-menu-nav-item-anc {
  display: block;
}
.sp-nav .header__content-menu-nav-item-anc-str {
  font-size: 1.6rem;
}
.sp-nav .header__content-menu-nav-sns-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .sp-nav .header__content-menu-nav-sns-list {
    justify-content: center;
  }
}
.sp-nav .header__content-menu-nav-btn {
  margin-top: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
.sp-nav .header__content-menu-nav-btn-anc {
  display: block;
  width: 320px;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: clamp(2rem, 0.1rem + 5.09vw, 4rem);
  text-align: center;
  transition: all 0.3s;
}
.sp-nav .header__content-menu-nav-btn-anc-str {
  display: inline;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 4.44;
  color: #000;
  padding-left: 40px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .sp-nav .header__content-menu-nav-btn-anc-str {
    font-size: 1.8rem;
  }
}
.sp-nav .header__content-menu-nav-btn-anc-str::before {
  content: "";
  width: 24px;
  height: 17px;
  background: url(/system_panel/uploads/images/icon_mail02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.sp-nav .header__content-menu-nav-btn:hover .header__content-menu-nav-btn-anc {
  background-color: #000;
}
.sp-nav .header__content-menu-nav-btn:hover .header__content-menu-nav-btn-anc-str {
  color: #fff;
}
.sp-nav .header__content-menu-nav-btn:hover .header__content-menu-nav-btn-anc-str::before {
  background: url(/system_panel/uploads/images/icon_mail01.png) no-repeat center center/contain;
}

.ft-cont {
  background-color: #f5f5f5;
  padding: clamp(6rem, 2.2rem + 10.18vw, 10rem) 0 40px;
}
.ft-cont__logo {
  text-align: center;
  padding-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.ft-cont__box {
  background-color: #fff;
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .ft-cont__box {
    padding: 50px 15px;
  }
}
.ft-cont__box-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(4rem, 2.1rem + 5.09vw, 6rem);
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .ft-cont__box-inr {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .ft-cont__box-info {
    flex: 1;
  }
}
.ft-cont__box-info-data {
  margin-bottom: 30px;
}
.ft-cont__box-info-data-add {
  letter-spacing: 0.05em;
}
.ft-cont__box-info-data-add strong {
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .ft-cont__box-info-data-add strong br {
    display: none;
  }
}
.ft-cont__box-info-data-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.ft-cont__box-info-data-item-label {
  width: 80px;
}
.ft-cont__box-info-data-item-label-st {
  letter-spacing: 0.05em;
}
.ft-cont__box-info-data-item-value {
  flex: 1;
}
.ft-cont__box-info-data-item-value-st {
  letter-spacing: 0.05em;
}
.ft-cont__box-info-sns {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.ft-cont__box-info-btn .cmn-btn-anc {
  margin-left: 0;
}
.ft-cont__box-map {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .ft-cont__box-map {
    max-width: 600px;
    width: 53.57%;
    height: 400px;
  }
}
.ft-cont__box-map iframe {
  width: 100%;
  height: 100%;
}

.footer-nav {
  background-color: #f5f5f5;
  padding-bottom: 150px;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    padding-bottom: 250px;
  }
}
.footer-nav__list {
  display: none;
}
@media screen and (min-width: 1300px) {
  .footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
  }
}
.footer-nav__item {
  position: relative;
}
.footer-nav__item-anc-str {
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 10px;
}
.footer-nav__item:first-of-type .footer-nav__item-anc-str {
  padding-left: 0;
}
.footer-nav__item:last-of-type ::before {
  content: none;
}
.footer-nav__item:last-of-type .footer-nav__item-anc-str {
  padding-right: 0;
}
.footer-nav__copyright {
  border-top: solid 1px #ccc;
  text-align: center;
  padding: 20px 0;
}
.footer-nav__copyright-str {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.ft-contact {
  background: url(/system_panel/uploads/images/bg_ft-contact01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.ft-contact__cont-ttl {
  font-family: var(--base_font);
  font-size: clamp(2.2rem, 1.6rem + 1.53vw, 2.8rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 768px) {
  .ft-contact__cont-ttl {
    font-size: clamp(3rem, 1.2rem + 2.34vw, 3.6rem);
  }
}
.ft-contact__cont-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 768px) {
  .ft-contact__cont-txt {
    font-size: 1.8rem;
    text-align: center;
  }
}
.ft-contact__cont-btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.ft-contact__cont-btn-item {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
}
@media screen and (min-width: 1024px) {
  .ft-contact__cont-btn-item {
    width: calc((100% - 40px) / 3);
  }
}

.top-fv {
  margin-top: var(--hd_mt);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-fv__splide .splide__slide {
    width: calc(56% - 20px);
  }
}
.top-fv__splide .splide__slide img {
  width: 100%;
}

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

.top-fv__catch{
  max-width: max-content;
  width: 60%;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px){
  .top-fv__catch{
    width: 50%;
    left: 20%;
  }
}

.top-concept {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.top-concept__cont {
  position: relative;
}
.top-concept__cont-head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto clamp(5rem, 3.1rem + 5.09vw, 7rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-head {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.top-concept__cont-head-icon-item {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.top-concept__cont-head-icon-item.--01 {
  top: calc(clamp(4rem, 2.1rem + 5.09vw, 6rem) * -1);
  right: max(50% - 50vw, -60px);
}
.top-concept__cont-head-icon-item.--02 {
  bottom: calc(clamp(4rem, 2.1rem + 5.09vw, 6rem) * -1);
  left: max(50% - 50vw, -100px);
}
.top-concept__cont-ttl {
  font-family: var(--sub_font);
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-ttl {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-ttl {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.top-concept__cont-txt {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-txt {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-txt {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 3.3;
  }
}
.top-concept__cont-icon-item {
  max-width: max-content;
  width: 30%;
  position: absolute;
  z-index: -1;
}
.top-concept__cont-icon-item.--01 {
  top: clamp(5rem, 3.1rem + 5.09vw, 7rem);
  left: max(50% - 50vw, -200px);
}
.top-concept__cont-icon-item.--02 {
  bottom: clamp(8rem, 2.3rem + 15.27vw, 14rem);
  right: max(50% - 50vw, -200px);
}

.top-reason {
  background: url(/system_panel/uploads/images/bg_top-reason01.png) no-repeat center bottom/cover;
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}

.top-menu {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem) clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.top-menu__cont {
  position: relative;
}
.top-menu__ttl {
  font-family: var(--sub_font);
  font-size: 3rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .top-menu__ttl {
    font-size: 3.6rem;
  }
}
.top-menu__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-menu__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-menu__item + .top-menu__item {
  margin-top: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
@media screen and (min-width: 768px) {
  .top-menu__item-info {
    max-width: 500px;
    flex: 1;
    padding-top: clamp(0rem, -10.5rem + 13.67vw, 7rem);
  }
}
.top-menu__item-info-ttl {
  font-family: var(--sub_font);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  padding-left: 60px;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-menu__item-info-ttl {
    font-size: 3rem;
    padding-left: 80px;
  }
}
.top-menu__item-info-ttl::before {
  content: "";
  width: 40px;
  aspect-ratio: 50/38;
  background: url(/system_panel/uploads/images/icon_top-menu01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .top-menu__item-info-ttl::before {
    width: 50px;
  }
}
.top-menu__item-info-ttl.--02::before {
  width: 25px;
  aspect-ratio: 31/40;
  background: url(/system_panel/uploads/images/icon_top-menu02.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .top-menu__item-info-ttl.--02::before {
    width: 31px;
  }
}
@media screen and (min-width: 768px) {
  .top-menu__item-info-ttl.--small {
    font-size: min(3vw, 3rem);
  }
}
.top-menu__item-info-ttl.--br-sp-pc br {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-menu__item-info-ttl.--br-sp-pc br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .top-menu__item-info-ttl.--br-sp-pc br {
    display: none;
  }
}
.top-menu__item-info-submenu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.top-menu__item-info-submenu-block {
  max-width: 240px;
  width: calc((100% - 20px) / 2);
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 5px 10px;
}
.top-menu__item-info-submenu-block-st {
  text-align: center;
}
.top-menu__item-info-txt {
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .top-menu__item-info-txt {
    font-size: 1.8rem;
  }
}
.top-menu__item-info-btn {
  margin-top: 20px;
}
.top-menu__item-info-btn.cmn-btn--02 {
  text-align: right;
}
.top-menu__item-media {
  max-width: 600px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .top-menu__item-media {
    width: 50%;
  }
}
.top-menu__item-icon {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: 0;
  left: max(50% - 50vw, -120px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-menu__item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
.top-menu__item:nth-of-type(2n) .top-menu__item-icon {
  right: max(50% - 50vw, -120px);
  left: auto;
}

.top-firstvisit {
  background: url(/system_panel/uploads/images/bg_top-firstvisit01.png) no-repeat center bottom/cover;
  padding-block: clamp(8rem, 4.2rem + 10.18vw, 12rem);
}
.top-firstvisit__cont-icon-item.cmn-2column__cont-icon-item.--01 {
  top: auto;
  bottom: calc(clamp(10rem, 4.3rem + 15.27vw, 16rem) * -1);
  left: 50%;
  transform: translateX(-50%);
}

.top-news {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.top-news__cont {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-news__cont {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr auto;
    grid-template-areas: "top-news__ttl  top-news__btn" "top-news__list top-news__list";
    gap: 40px 25px;
  }
}
.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: 100px;
  border: solid 1px var(--mc);
  border-radius: 12px;
  font-size: 1.4rem;
  color: var(--mc);
  line-height: 25px;
  text-align: center;
  padding: 0 10px;
}
.top-news__cont-list-item-ttl {
  width: 100%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .top-news__cont-list-item-ttl {
    flex: 1;
    width: auto;
    margin-left: 40px;
  }
}
.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;
  }
}

.shop-cont {
  position: relative;
}
.shop-cont::before {
  content: "";
  width: 100%;
  height: 58%;
  background: url(/system_panel/uploads/images/bg_shop01.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -5;
}

.shop-greeting {
  padding-top: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.shop-greeting .cmn-2column__cont-icon-item.--03 {
  width: 35%;
  bottom: calc(clamp(6rem, 2.2rem + 10.18vw, 10rem) * -1);
}

.shop-overview {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.shop-overview__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.shop-overview__cont-media {
  max-width: 600px;
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-media {
    width: 50%;
  }
}
.shop-overview__cont-info {
  max-width: 500px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .shop-overview__cont-info {
    flex: 1;
    width: auto;
    padding-top: 40px;
  }
}

.contact-reserve {
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.contact-reserve__txt {
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .contact-reserve__txt {
    font-size: 1.8rem;
    text-align: center;
  }
}
.contact-reserve__btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.contact-reserve__btn-item {
  max-width: 380px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .contact-reserve__btn-item {
    width: calc((100% - 40px) / 3);
  }
}
.contact-reserve__alternative{
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px){
  .contact-reserve__alternative{
    text-align: right;
  }
}
.contact-reserve__alternative a{
  color: #994d6c;
  border-bottom: solid 1px #994d6c;
}
@media screen and (min-width: 768px){
  .contact-reserve__alternative br{
    display: none;
  }
}

.contact-mail {
  background-color: #f5f5f6;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.contact-mail__caution {
  text-align: center;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.contact-mail__caution-st.--01 {
  margin-bottom: 5px;
}
.contact-mail__caution-st.--02 {
  display: inline;
  border-bottom: solid 1px #994d6c;
  font-weight: 700;
  color: #994d6c;
}
@media screen and (min-width: 768px) {
  .contact-mail__caution-st br {
    display: none;
  }
}

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

.concept-catch.top-concept {
  padding-bottom: 0;
}
.concept-catch .top-concept__cont-head {
  margin-bottom: 0;
}
.concept-catch .top-concept__cont-icon-item.--01 {
  top: 0;
}
.concept-catch .top-concept__cont-icon-item.--02 {
  bottom: 0;
}

.concept-feature {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
  position: relative;
}
.concept-feature::before {
  content: "";
  width: 100%;
  height: 87%;
  background: url(/system_panel/uploads/images/bg_concept01.png) no-repeat center center/cover;
  position: absolute;
  bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  left: 0;
  z-index: -5;
}
.concept-feature__2column {
  position: relative;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  z-index: 1;
}
.concept-feature__2column .cmn-2column__item {
  max-width: 1200px;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .concept-feature__2column .cmn-2column__item-info {
    max-width: 570px;
  }
}
.concept-feature__2column-icon-item {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.concept-feature__2column-icon-item.--01 {
  width: 30%;
  top: 0;
  left: max(50% - 50vw, -120px);
}
.concept-feature__2column-icon-item.--02 {
  width: 15%;
  bottom: 0;
  left: max(50% - 50vw, -120px);
}
.concept-feature__item {
  background-color: #fff;
  border-radius: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  box-shadow: 0px 0px 15px 0px rgba(204, 204, 204, 0.1);
  padding: clamp(4rem, 1.1rem + 7.63vw, 7rem) 15px;
  position: relative;
}
.concept-feature__item + .concept-feature__item {
  margin-top: 50px;
}
.concept-feature__item-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 50px;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .concept-feature__item-inr {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-content: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .concept-feature__item-info {
    width: 500px;
  }
}
.concept-feature__item-info-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.concept-feature__item-info-head-num {
  font-family: var(--sub_font);
  font-size: 6rem;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #994d6c;
}
@media screen and (min-width: 768px) {
  .concept-feature__item-info-head-num {
    font-size: 8rem;
  }
}
.concept-feature__item-info-head-ttl {
  font-family: var(--sub_font);
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .concept-feature__item-info-head-ttl {
    font-size: 2.4rem;
  }
}
.concept-feature__item-info-txt {
  letter-spacing: 0.025em;
}
.concept-feature__item-media {
  max-width: 500px;
}
@media screen and (min-width: 1024px) {
  .concept-feature__item-media {
    flex: 1;
  }
}
.concept-feature__item-icon {
  max-width: max-content;
  width: 30%;
  position: absolute;
  top: -40px;
  right: max(50% - 50vw, -120px);
  z-index: -1;
}

.cut-feature {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
  position: relative;
}
.cut-feature::before {
  content: "";
  width: 100%;
  height: 60%;
  background: url(/system_panel/uploads/images/bg_cut-feature01.png) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -5;
}
@media screen and (min-width: 768px) {
  .cut-feature .cmn-2column__item-info-ttl {
    font-size: min(3vw, 3rem);
  }
}
@media screen and (min-width: 768px) {
  .cut-feature .cmn-2column__item-media-ph {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .cut-feature .cmn-2column__item:nth-of-type(2n) {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .cut-feature .cmn-2column__item:nth-of-type(2n) .cmn-2column__item-media-ph {
    margin: 0;
  }
}

.cut-column {
  background-color: #f4ebee;
  padding-block: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.cut-column__box {
  background-color: #fff;
  border-radius: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  padding: clamp(5rem, 3.1rem + 5.09vw, 7rem) 15px clamp(8rem, 4.2rem + 10.18vw, 12rem);
}
.cut-column__box-inr {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cut-column__box-head {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.cut-column__box-head-txt {
  font-family: var(--sub_font);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-block: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cut-column__box-head-txt {
    font-size: 3rem;
    padding-block: 0;
  }
}
@media screen and (min-width: 1024px) {
  .cut-column__box-head-txt {
    padding-block: 32px;
  }
}
.cut-column__box-head-txt span {
  display: inline-block;
  background-color: #f4ebee;
  padding-inline: 10px;
  margin-inline: 10px;
}
.cut-column__box-head-txt strong {
  display: inline-block;
  font-weight: 400;
  color: #994d6c;
  background-image: radial-gradient(circle at center, #994d6c 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1.06em 0.3em;
  padding-top: 0.15em;
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .cut-column__box-head-txt strong {
    padding-top: 0.4em;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .cut-column__box-head-txt.--br-sp-tb br {
    display: none;
  }
}
.cut-column__box-head-txt::before, .cut-column__box-head-txt::after {
  content: "";
  width: 41px;
  aspect-ratio: 41/131;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cut-column__box-head-txt::before {
  background: url(/system_panel/uploads/images/icon_brackets01.png) no-repeat center center/contain;
  left: 0;
}
.cut-column__box-head-txt::after {
  background: url(/system_panel/uploads/images/icon_brackets02.png) no-repeat center center/contain;
  right: 0;
}
.cut-column__box-txt {
  font-family: var(--sub_font);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: clamp(7rem, 5.1rem + 5.09vw, 9rem);
}
@media screen and (min-width: 768px) {
  .cut-column__box-txt {
    font-size: 2.1rem;
    text-align: center;
  }
}
.cut-column__box-txt.--sp-br br {
  display: none;
}
@media screen and (min-width: 768px) {
  .cut-column__box-txt.--sp-br br {
    display: block;
  }
}
.cut-column__box-cont {
  background-color: #fff;
  border: solid 1px #994d6c;
  border-radius: 15px;
  padding: clamp(5rem, 3.1rem + 5.09vw, 7rem) 15px clamp(4rem, 2.1rem + 5.09vw, 6rem);
  position: relative;
  z-index: 1;
}
.cut-column__box-cont-ttl {
  display: inline-block;
  max-width: 600px;
  width: calc(100% - 30px);
  background-color: #994d6c;
  border-radius: 30px;
  font-family: var(--sub_font);
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .cut-column__box-cont-ttl {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
}
.cut-column__box-cont-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .cut-column__box-cont-txt {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .cut-column__box-cont-txt {
    text-align: center;
  }
}
.cut-column__box-cont-txt span {
  border-bottom: solid 1px #994d6c;
}
.cut-column__box-cont-txt.--br-sp strong {
  font-weight: 400;
}
.cut-column__box-cont-txt.--br-sp strong br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .cut-column__box-cont-txt.--br-sp strong br {
    display: block;
  }
}
.cut-column__box-cont-icon-item {
  max-width: max-content;
  position: absolute;
}
.cut-column__box-cont-icon-item.--01 {
  width: 20%;
  bottom: calc(clamp(3rem, 1.1rem + 5.09vw, 5rem) * -1);
  left: max(50% - 50vw, -50px);
  z-index: -1;
}
.cut-column__box-cont-icon-item.--02 {
  width: 18%;
  bottom: calc(clamp(3rem, 1.1rem + 5.09vw, 5rem) * -1);
  right: clamp(0rem, -0.8rem + 2.21vw, 2rem);
  z-index: 1;
}

.firstvisit-feature.cut-feature {
  padding-bottom: 0;
}
.firstvisit-feature.cut-feature::before {
  content: none;
}

.firstvisit-flow {
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem) clamp(6rem, 2.2rem + 10.18vw, 10rem);
  position: relative;
}
.firstvisit-flow::before {
  content: "";
  width: 100%;
  height: calc(100% + 50px);
  background: url(/system_panel/uploads/images/bg_fistvisit-flow01.png) no-repeat center top/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -5;
}
.firstvisit-flow__list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.firstvisit-flow__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .firstvisit-flow__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.firstvisit-flow__item + .firstvisit-flow__item {
  padding-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.firstvisit-flow__item-media {
  max-width: 300px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .firstvisit-flow__item-media {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .firstvisit-flow__item-info {
    flex: 1;
    max-width: 650px;
  }
}
.firstvisit-flow__item-info-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.firstvisit-flow__item-info-head-num {
  font-family: var(--sub_font);
  font-size: 4rem;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #994d6c;
}
@media screen and (min-width: 768px) {
  .firstvisit-flow__item-info-head-num {
    font-size: 5rem;
  }
}
.firstvisit-flow__item-info-head-ttl {
  flex: 1;
  font-family: var(--sub_font);
  font-size: 2rem;
  letter-spacing: 0.025em;
  padding-left: 60px;
  margin-left: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .firstvisit-flow__item-info-head-ttl {
    font-size: 2.4rem;
  }
}
.firstvisit-flow__item-info-head-ttl::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #994d6c;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .firstvisit-flow__item-info-head-ttl.--br-sp br {
    display: none;
  }
}
.firstvisit-flow__item-info-box {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 15px;
}
.firstvisit-flow__item-info-box-inr {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.firstvisit-flow__item-info-box-txt {
  letter-spacing: 0.025em;
}
.firstvisit-flow__item-info-treat {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.firstvisit-flow__item-info-media {
  max-width: 200px;
  width: calc((100% - 10px) / 2);
}
@media screen and (min-width: 768px) {
  .firstvisit-flow__item-info-media {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .firstvisit-flow__item-info-media {
    width: calc((100% - 40px) / 5);
  }
}
.firstvisit-flow__item-info-media-img {
  text-align: center;
  margin-bottom: 10px;
}
.firstvisit-flow__item-info-media-txt {
  font-family: var(--sub_font);
  font-size: min(3.5vw, 1.4rem);
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .firstvisit-flow__item-info-media-txt {
    font-size: min(1.3vw, 1.4rem);
  }
}
.firstvisit-flow__item.--02 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .firstvisit-flow__item.--02 .firstvisit-flow__item-info {
    max-width: none;
  }
}
.kodawari-feature{
  padding-bottom: clamp(5rem, -7rem + 11.72vw, 8rem);
  position: relative;
}
.kodawari-feature__item-info-box-txt{
  border-bottom: dashed 1px #98a793;
  padding-bottom: 15px;
}
.kodawari-feature__item-info-box-txt + .kodawari-feature__item-info-box-txt{
  padding-top: 15px;
}
.kodawari-feature__item-info-box-txt-st{
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding-left: 35px;
  position: relative;
}
.kodawari-feature__item-info-box-txt-st span{
  border-bottom: solid 1px #994d6c;
}
@media screen and (min-width: 768px) {
  .kodawari-feature__item-info-box-txt-st{
    font-size: 2.1rem;
    padding-left: 50px;
  }
}
.kodawari-feature__item-info-box-txt-st::before{
  content: "";
  width: 20px;
  aspect-ratio: 25 / 24;
  background: url(/system_panel/uploads/images/icon_kodawari-feature.png) no-repeat center top/cover;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .kodawari-feature__item-info-box-txt-st::before{
    width: 25px;
  }
}
.kodawari-column{
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.kodawari-column__txt{
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
@media screen and (min-width: 768px){
  .kodawari-column__txt{
    font-size: 2.1rem;
    text-align: center;
  }
}
.kodawari-column__txt.--br-sp strong{
  font-weight: 400;
}
.kodawari-column__txt.--br-sp strong br{
  display: none;
}
@media screen and (min-width: 768px) {
  .kodawari-column__txt.--br-sp strong br{
    display: block;
  }
}
.kodawari-column__list{
  padding-bottom: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  position: relative;
}
.kodawari-column__list::before{
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/bg_kodawari-item01.png) no-repeat center top/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}
.kodawari-column__item{

}
@media screen and (min-width: 768px){
  .kodawari-column__item.cmn-2column__item{
    margin-inline: auto;
  }
  .kodawari-column__item.cmn-2column__item:nth-of-type(2n){
    margin-inline: auto;
  }
}
.kodawari-column__item-info{
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px){
  .kodawari-column__item-info.cmn-2column__item-info{
    max-width: 500px;
    width: auto;
    padding-top: 50px;
    margin: 0;
  }
}
.kodawari-column__item-info-box{
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
}
.kodawari-column__item-info-box-inr{
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
}
.kodawari-column__item-info-box-txt{
  letter-spacing: 0.05em;
  padding-left: 40px;
  position: relative;
}
.kodawari-column__item-info-box-txt + .kodawari-column__item-info-box-txt{
  margin-top: 5px;
}
.kodawari-column__item-info-box-txt::before{
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_check01.png) no-repeat center center/cover;
  position: absolute;
  top: 5px;
  left: 0;
}
.kodawari-column__item-info-txt{
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.kodawari-column__commit{
  padding-top: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
.kodawari-column__commit-head{
  text-align: center;
  margin-bottom: clamp(5rem, -7rem + 11.72vw, 8rem);
}
.kodawari-column__commit-head-txt{
  font-family: var(--sub_font);
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px){
  .kodawari-column__commit-head-txt{
    font-size: 2.4rem;
  }
}
.kodawari-column__commit-head-txt span{
  font-size: 2.2rem;
}
@media screen and (min-width: 768px){
  .kodawari-column__commit-head-txt span{
    font-size: 3rem;
  }
}
.kodawari-column__commit-head-txt strong{
  display: inline-block;
  font-weight: 400;
  color: #994d6c;
  background-image: radial-gradient(circle at center, #994d6c 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1.06em 0.3em;
  padding-top: 0.15em;
  margin-top: 15px;
}
.kodawari-column__commit-head-txt em{
  font-style: normal;
}
.kodawari-column__commit-head-txt em br{
  display: block;
}
@media screen and (min-width: 768px){
  .kodawari-column__commit-head-txt em br{
    display: none;
  }
}
.kodawari-column__commit-reason{
  background-color: #f4ebee;
  border-radius: 15px;
  padding: clamp(5rem, 3.1rem + 5.09vw, 7rem) 15px clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin-bottom: clamp(5rem, 3.1rem + 5.09vw, 7rem);
  position: relative;
}
.kodawari-column__commit-reason-ttl{
  display: inline-block;
  max-width: 600px;
  width: calc(100% - 30px);
  background-color: #994d6c;
  border-radius: 30px;
  font-family: var(--sub_font);
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px){
  .kodawari-column__commit-reason-ttl{
    font-size: 2.4rem;
  }
}
.kodawari-column__commit-reason-txt{
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px){
  .kodawari-column__commit-reason-txt{
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px){
  .kodawari-column__commit-reason-txt{
    font-size: min(1.6vw, 1.8rem);
    text-align: center;
  }
}
.kodawari-column__commit-reason-txt span{
  border-bottom: solid 1px #994d6c;
}
.menu-btn{
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
}
.menu-btn__list{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px){
  .menu-btn__list{
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.menu-btn__item{
  max-width: 380px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .menu-btn__item{
    width: calc((100% - 30px) / 2);
  }
}
.menu-btn__item-anc{
  display: block;
  width: 100%;
  border: solid 1px #000;
  border-radius: 45px;
  text-align: center;
  padding: 15px 0 20px;
  position: relative;
}
@media screen and (min-width: 768px){
  .menu-btn__item-anc{
    padding: 25px 0 30px;
  }
}
.menu-btn__item-anc::before{
  content: "";
  width: 14px;
  aspect-ratio: 14 / 8;
  background: url(/system_panel/uploads/images/icon_menu-arrow01.png) no-repeat center top/cover;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px){
  .menu-btn__item-anc::before{
    bottom: 15px;
  }
}
.menu-btn__item-anc-st{
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .menu-btn__item-anc-st{
    font-size: 1.8rem;
  }
}
.menu-cont{
  padding-block: clamp(10rem, 4.3rem + 15.27vw, 16rem);
}
.menu-cont + .menu-cont{
  border-top: solid 1px #ccc;
}
.menu-cont__ttl-icon{
  text-align: center;
  margin-bottom: 10px;
}
.bg-gray{
  background-color: #f5f5f5;
}
.menu-box{
  padding-block: clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
.menu-box.--pb0{
  padding-bottom: 0;
}
.menu-box__ttl{
  position: relative;
  z-index: 1;
}
.menu-box.bg-gray .menu-box__ttl-st{
  background-color: #f5f5f5;
}
.menu-box__ttl-st.cmn-subttl{
  font-size: 2rem;
}
@media screen and (min-width: 768px){
  .menu-box__ttl-st.cmn-subttl{
    font-size: 2.4rem;
  }
}
.menu-box__ttl-annotation{
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  color: #994d6c;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (min-width: 768px){
  .menu-box__ttl-annotation{
    font-size: 1.8rem;
  }
}
.menu-box__item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px){
  .menu-box__item{
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.menu-box__item-table{
  max-width: 600px;
}
@media screen and (min-width: 768px){
  .menu-box__item-table{
    flex: 1;
  }
}
.menu-box__item-table-tr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10px;
  border-top: dashed 1px #999;
  padding: 15px 0;
}
@media screen and (min-width: 768px){
  .menu-box__item-table-tr{
    padding: 20px;
  }
}
.menu-box__item-table-tr:last-of-type{
  border-bottom: dashed 1px #999;
}
.menu-box__item-table-th-st{
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px){
  .menu-box__item-table-th-st{
    font-size: 1.8rem;
  }
}
.menu-box__item-table-th-st.--02{
  font-size: 1.4rem;
}
@media screen and (min-width: 768px){
  .menu-box__item-table-th-st.--02{
    font-size: 1.6rem;
  }
}
.menu-box__item-table-td{
  margin-left: auto;
}
.menu-box__item-table-td-st{
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  text-align: right;
}
@media screen and (min-width: 768px){
  .menu-box__item-table-td-st{
    font-size: 1.8rem;
  }
}
.menu-box__item-media{
  max-width: 500px;
  width: 80%;
}
@media screen and (min-width: 768px){
  .menu-box__item-media{
    width: 42%;
  }
}
.menu-box__caution{
  background-color: #fff;
  border: solid 3px #cfb6c0;
  padding: 20px 15px;
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.menu-box__caution-txt--01{
  font-size: 1.8rem;
  letter-spacing: 0.025em;
  color: #994d6c;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px){
  .menu-box__caution-txt--01{
    font-size: 2.1rem;
  }
}
.menu-box__caution-txt--01 span{
  border-bottom: solid 1px #994d6c;
}
@media screen and (min-width: 768px){
  .menu-box__caution-txt--01.--br-sp br{
    display: none;
  }
}
.menu-box__caution-txt--02{
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
.menu-box__caution-txt--02 span{
  border-bottom: solid 1px #994d6c;
}
@media screen and (min-width: 768px){
  .menu-box__caution-txt--02{
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px){
  .menu-box__caution-txt--02{
    text-align: center;
  }
}
.menu-box__item-table-cont + .menu-box__item-table-cont{
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.menu-box__item-table-inr.--type02{
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.menu-box__item-table-cont-ttl{
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 20px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px){
  .menu-box__item-table-cont-ttl{
    font-size: 1.8rem;
  }
}
.menu-box__item-table-cont-ttl::before{
  content: "●";
  color: #cfb6c0;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.menu-box__txt{
  margin-top: 20px;
}
@media screen and (min-width: 768px){
  .menu-box__txt{
    text-align: center;
    margin-top: 30px;
  }
}
.menu-box__txt-st{
  display: inline;
  border-bottom: solid 1px #333;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px){
  .menu-box__txt-st{
    font-size: 1.8rem;
    text-align: center;
    margin-top: 30px;
  }
}