@charset "UTF-8";
:root {
  --base_font: "Zen Kaku Gothic New", sans-serif;
  --sub_font: "Zen Old Mincho", serif;
  --sub_font02: "Cormorant", serif;
  --mc: #426a4e;
  --sc: #376244;
  --fc: #333;
  --bc: #4b616c;
  --red: #b10000;
}
@media screen and (min-width: 768px) {
  :root {
    --mq: 10.24;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --mq: 7.5;
  }
}
:root {
  --hd_mt: 60px;
}
@media screen and (min-width: 1024px) {
  :root {
    --hd_mt: 120px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

br {
  line-height: inherit;
}

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

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

strong {
  font-weight: 700;
}

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

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

body {
  position: relative;
  color: var(--fc);
  font-size: 1.6rem;
  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: 310px;
  width: 100%;
  background-color: #ad9275;
  border-radius: 30px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.cmn-btn__link::before {
  content: "";
  width: 17px;
  aspect-ratio: 17/13;
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.cmn-btn__link-st {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 3.75;
  color: #fff;
}
.cmn-btn.--white .cmn-btn__link {
  border-bottom: solid 1px #fff;
}
.cmn-btn.--white .cmn-btn__link::before {
  background: url(/system_panel/uploads/images/icon_arrow01.png) no-repeat center center/contain;
}
.cmn-btn.--white .cmn-btn__link-st {
  color: #fff;
}

.cmn-btn02__link {
  display: inline-block;
  border-bottom: solid 1px #83592c;
  padding-bottom: 10px;
}
.cmn-btn02__link-st {
  width: 120px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 28px;
  color: #83592c;
  text-align: left;
  position: relative;
}
.cmn-btn02__link-st::before {
  content: "";
  width: 17px;
  aspect-ratio: 17/13;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cmn-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 clamp(1rem, 0rem + 2.54vw, 2rem);
}
.cmn-ttl__main {
  font-family: var(--sub_font02);
  font-size: clamp(4rem, 2.8rem + 3.08vw, 6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #6d593a;
}
.cmn-ttl__sub {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}
.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 {
    display: none;
    width: auto;
    bottom: 40px;
    right: 15px;
    left: auto;
  }
}
.reserve-btn__item-link {
  display: block;
  background-color: #ad9275;
}
@media screen and (min-width: 768px) {
  .reserve-btn__item-link {
    border: solid 5px #bda891;
    border-radius: 60px;
  }
}
.reserve-btn__item-inr {
  padding: 20px 25px;
}
@media screen and (min-width: 1024px) {
  .reserve-btn__item-inr {
    padding: 30px 35px;
  }
}
.reserve-btn__item-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.reserve-btn__item-icon {
  width: 40px;
  aspect-ratio: 1;
}
.reserve-btn__item-txt-main {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.3rem + 0.77vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
}

.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;
  padding-top: 60px;
}
@media screen and (min-width: 1024px) {
  .sub-hd {
    padding-top: 120px;
  }
}
.sub-hd__img {
  width: 100%;
  max-height: 630px;
  height: 100vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sub-hd__img {
    height: 80vw;
  }
}
.sub-hd__img.ojf::before {
  display: none;
}
.sub-hd__catch {
  position: absolute;
  width: calc(100% - 30px);
  top: 58%;
  left: 15px;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .sub-hd__catch {
    width: calc(100% - 80px);
    left: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .sub-hd__catch {
    width: calc(100% - (100vw - 1200px));
    left: calc((100vw - 1200px) / 2);
  }
}
.sub-hd__catch::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 18%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  width: 140%;
  height: 170%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 768px) {
  .sub-hd__catch::before {
    top: 50%;
    left: 25%;
    width: 150%;
    height: 150%;
  }
}
.sub-hd__catch-en {
  font-family: var(--sub_font);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #6d593a;
  margin-bottom: clamp(2rem, 1.5rem + 1.27vw, 2.5rem);
}
.sub-hd__catch-main {
  font-family: var(--sub_font);
  font-size: min(6.8vw, 4.6rem);
  letter-spacing: 0.05em;
  line-height: 1.43;
  margin-bottom: clamp(1rem, 0.5rem + 1.27vw, 1.5rem);
}
.sub-hd__catch-main.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 910px) {
  .sub-hd__catch-main.--br strong br {
    display: none;
  }
}
.sub-hd__catch-main.--br02 strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .sub-hd__catch-main.--br02 strong br {
    display: none;
  }
}
.sub-hd__catch-sub {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .sub-hd__catch-sub {
    font-size: 1.8rem;
  }
}
.sub-hd__catch-sub.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .sub-hd__catch-sub.--br strong br {
    display: none;
  }
}

.sub-hd.menu-subhd .sub-hd__catch-main {
  font-size: min(5.8vw, 4.6rem);
}
@media screen and (min-width: 768px) {
  .sub-hd.menu-subhd .sub-hd__catch-main {
    font-size: min(5.6vw, 4.6rem);
  }
}
.sub-hd.menu-subhd .sub-hd__catch-sub br {
  display: none;
}
@media screen and (min-width: 768px) {
  .sub-hd.menu-subhd .sub-hd__catch-sub br {
    display: block;
  }
}

.sub-hd.first-subhd .sub-hd__catch-main {
  font-size: min(5.8vw, 4.6rem);
}
@media screen and (min-width: 768px) {
  .sub-hd.first-subhd .sub-hd__catch-main {
    font-size: min(5.6vw, 4.6rem);
  }
}

.sub-hd.voice-subhd .sub-hd__catch-main {
  font-size: min(5.8vw, 4.6rem);
}
@media screen and (min-width: 768px) {
  .sub-hd.voice-subhd .sub-hd__catch-main {
    font-size: min(5.6vw, 4.6rem);
  }
}
.sub-hd.voice-subhd .sub-hd__catch-sub {
  font-size: min(4vw, 1.6rem);
}
@media screen and (min-width: 768px) {
  .sub-hd.voice-subhd .sub-hd__catch-sub {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 500px) {
  .sub-hd.shop-subhd .sub-hd__catch-sub strong br {
    display: none;
  }
}

.sub-hd.faq-subhd .sub-hd__catch-sub {
  font-size: min(3.5vw, 1.6rem);
}
@media screen and (min-width: 768px) {
  .sub-hd.faq-subhd .sub-hd__catch-sub {
    font-size: 1.8rem;
  }
}

.sub-hd.concept-subhd .sub-hd__catch-main {
  font-size: min(6.2vw, 4.6rem);
}
.sub-hd.concept-subhd .sub-hd__catch-sub {
  font-size: min(3.8vw, 1.6rem);
}
@media screen and (min-width: 768px) {
  .sub-hd.concept-subhd .sub-hd__catch-sub {
    font-size: 1.8rem;
  }
}

.sub-hd.baby-subhd .sub-hd__catch-main {
  font-size: min(6.4vw, 4.6rem);
}
.sub-hd.baby-subhd .sub-hd__catch-sub br {
  display: none;
}
@media screen and (min-width: 768px) {
  .sub-hd.baby-subhd .sub-hd__catch-sub br {
    display: block;
  }
}

.sub-hd.post-subhd .sub-hd__catch-main {
  font-size: min(5.8vw, 4.6rem);
}
@media screen and (min-width: 768px) {
  .sub-hd.post-subhd .sub-hd__catch-main {
    font-size: min(5.6vw, 4.6rem);
  }
}
.sub-hd.post-subhd .sub-hd__catch-sub br {
  display: none;
}
@media screen and (min-width: 768px) {
  .sub-hd.post-subhd .sub-hd__catch-sub br {
    display: block;
  }
}

.sub-hd.news-subhd .sub-hd__catch-main {
  font-size: min(7.8vw, 4.6rem);
}

.sub-hd.yomogi-subhd .sub-hd__catch-main {
  font-size: min(6.4vw, 4.6rem);
  text-shadow: 0 0 12px rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .sub-hd.yomogi-subhd .sub-hd__catch-main {
    text-shadow: none;
  }
}
.sub-hd.yomogi-subhd .sub-hd__catch-sub {
  text-shadow: 0 0 12px rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .sub-hd.yomogi-subhd .sub-hd__catch-sub {
    text-shadow: none;
  }
}
@media screen and (min-width: 500px) {
  .sub-hd.yomogi-subhd .sub-hd__catch-sub strong br {
    display: none;
  }
}

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

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

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

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

.cmn-table__tr {
  border-top: solid 1px #ccc;
  padding: 10px 0;
}
.cmn-table__tr:last-of-type {
  border-bottom: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .cmn-table__tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
  }
}
.cmn-table__th {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    width: 280px;
    padding: 0 15px 0 120px;
    margin-bottom: 0;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    flex: 1;
    padding: 0 10px 0 0;
  }
  .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;
}

.cmn-table03__tr {
  margin-bottom: 10px;
}
.cmn-table03__tr :last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .cmn-table03__tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table03__th {
    width: 160px;
    padding: 0 15px 0 0;
    margin-bottom: 0;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .cmn-table03__td {
    flex: 1;
    padding: 0 10px 0 0;
  }
  .cmn-table03__td-st {
    letter-spacing: 0.05em;
  }
}

.cmn-price__table {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.cmn-price__table-tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: solid 1px #ccc;
  padding: 15px 25px 15px 10px;
}
.cmn-price__table-tr:first-of-type {
  border-top: solid 1px #ccc;
}
.cmn-price__table-th {
  padding-right: 10px;
  width: 100%;
}
@media screen and (min-width: 450px) {
  .cmn-price__table-th {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .cmn-price__table-th {
    flex: 1;
  }
}
.cmn-price__table-th-st {
  letter-spacing: 0.05em;
}
.cmn-price__table-td {
  min-width: 80px;
  margin-left: auto;
}
.cmn-price__table-td-st {
  letter-spacing: 0.05em;
  text-align: right;
}

/* --- header ---*/
.hd {
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 1;
  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-name {
  z-index: 1000;
}
.hd-logo {
  max-width: max-content;
  width: clamp(10rem, 6.6rem + 9.06vw, 24rem);
  position: absolute;
  top: 0;
  left: 0;
}
.hd-nav {
  position: fixed;
  top: 0;
  left: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  padding-block: 90px 50px;
  width: 100%;
  max-width: 460px;
  height: 100svh;
  background: rgba(255, 255, 255, 0.9);
  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: 25px;
    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: clamp(1.5rem, -0.5rem + 1.95vw, 2rem);
  }
}
.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;
  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;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .hd-nav .nav-list__link-st {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .hd-nav .nav-list__link-st {
    font-size: 1.6rem;
  }
}
.hd-nav__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 220px;
  aspect-ratio: 220/60;
  border: solid 1px #ad9275;
  border-radius: 30px;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-link {
    width: min(19vw, 240px);
    aspect-ratio: 240/60;
    background-color: #ad9275;
  }
}
.hd-nav__btn-icon {
  width: 30px;
  aspect-ratio: 1;
}
.hd-nav__btn-icon img {
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-icon.--01 {
    display: none;
  }
}
.hd-nav__btn-icon.--02 {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-icon.--02 {
    display: block;
  }
}
.hd-nav__btn-st {
  font-size: 1.6rem;
  color: #ad9275;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-st {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .hd-nav__btn-st {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .hd-nav__btn-st {
    color: #fff;
  }
}
.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;
  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: #333;
  color: #333;
  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 {
  width: 100%;
  background-color: #f7f4eb;
  padding-block: clamp(6rem, 5rem + 2.59vw, 10rem);
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-faq {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-faq {
    width: 50%;
  }
}
.cmn-faq__inr {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "cmn-faq__ttl" "cmn-faq__cnt" "cmn-faq__btn";
  gap: 35px 30px;
  max-width: 660px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cmn-faq__inr {
    grid-template-columns: 1fr 160px;
    grid-template-areas: "cmn-faq__ttl cmn-faq__btn" "cmn-faq__cnt cmn-faq__cnt";
  }
}
.cmn-faq__ttl {
  grid-area: cmn-faq__ttl;
}
@media screen and (min-width: 1024px) {
  .cmn-faq__ttl .cmn-ttl {
    flex-direction: column;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-faq__ttl .cmn-ttl {
    flex-direction: row;
  }
}
.cmn-faq .faq__list {
  grid-area: cmn-faq__cnt;
}
.cmn-faq__btn {
  grid-area: cmn-faq__btn;
}
@media screen and (min-width: 768px) {
  .cmn-faq__btn {
    /*align-self: flex-end;*/
  }
}
.cmn-faq__btn .cmn-btn02 {
  text-align: center;
}

.cmn-contact {
  width: 100%;
  background-color: #c3bba7;
  padding-block: clamp(6rem, 5rem + 2.59vw, 10rem);
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-contact {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-contact {
    width: 50%;
  }
}
.cmn-contact__inr {
  max-width: 660px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .cmn-contact__inr .cmn-ttl {
    flex-direction: column;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-contact__inr .cmn-ttl {
    flex-direction: row;
  }
}
.cmn-contact__inr .cmn-ttl__main {
  color: #fff;
}
.cmn-contact__inr .cmn-ttl__sub {
  color: #fff;
}
.cmn-contact__box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 45px;
  max-width: 500px;
  width: 100%;
  margin-top: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
}
@media screen and (min-width: 768px) {
  .cmn-contact__box {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-contact__box {
    gap: clamp(3rem, -3rem + 5.86vw, 4.5rem);
  }
}
.cmn-contact__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .cmn-contact__txt {
    font-size: min(1.5vw, 1.8rem);
  }
}
.cmn-contact__icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-contact__icon {
    display: block;
  }
}
.cmn-contact__icon img {
  height: 100px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .cmn-contact__icon img {
    height: 110px;
  }
}
.cmn-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
  margin-top: 25px;
}
.cmn-contact__btn-item {
  max-width: 660px;
  width: 100%;
}
.cmn-contact__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cmn-contact__btn-inr {
  display: flex;
  align-items: center;
  gap: 25px;
  width: clamp(30rem, 25.2rem + 12.72vw, 35rem);
}
.cmn-contact__btn-inr.--instagram {
  gap: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
.cmn-contact__btn-icon {
  width: clamp(3.5rem, 3rem + 1.27vw, 4rem);
  aspect-ratio: 1;
}
.cmn-contact__btn-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 4;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-contact__btn-txt {
    line-height: 4.762;
  }
}
.cmn-contact__btn-item.--line .cmn-contact__btn-link {
  background-color: #ad9275;
  border-radius: 50px;
}
.cmn-contact__btn-item.--instagram .cmn-contact__btn-link {
  background-color: #f7f4eb;
  border-radius: 50px;
}
.cmn-contact__btn-item.--instagram .cmn-contact__btn-txt {
  color: #6d593a;
}

.ft-cont {
  background-color: #fff;
  padding-block: 50px 100px;
}
@media screen and (min-width: 768px) {
  .ft-cont {
    padding-block: 60px 160px;
  }
}
.ft-cont__inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .ft-cont__inr {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: clamp(2.5rem, -3.5rem + 5.86vw, 4rem);
  }
}
@media screen and (min-width: 1280px) {
  .ft-cont__inr {
    gap: 50px;
  }
}
.ft-cont__group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .ft-cont__group {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.ft-cont__logo {
  max-width: max-content;
  width: clamp(8rem, 6.8rem + 3.31vw, 11rem);
}
.ft-cont__sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .ft-cont__sns {
    justify-content: initial;
    padding-top: 30px;
  }
}
.ft-cont__data-item {
  display: flex;
  gap: 15px;
}
.ft-cont__data-label {
  min-width: 80px;
  letter-spacing: 0.025em;
}
.ft-cont__data-value {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: start;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .ft-cont__data-value {
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .ft-cont__data-value {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (min-width: 1140px) {
  .ft-cont__data-value {
    flex-direction: row;
    gap: 20px;
  }
}
.ft-cont__data-value-st {
  letter-spacing: 0.025em;
}
.ft-cont__data-value-st.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .ft-cont__data-value-st.--br strong br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .ft-cont__data-value-st.--br strong br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .ft-cont__data-value-st.--br strong br {
    display: none;
  }
}
.ft-cont__data-value-link-st {
  position: relative;
  letter-spacing: 0.025em;
  padding-left: 28px;
  border-bottom: solid 1px #ad9275;
}
.ft-cont__data-value-link-st::before {
  content: "";
  position: absolute;
  background: url(/system_panel/uploads/images/icon_insta03.png) no-repeat center center/contain;
  width: 16px;
  aspect-ratio: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.ft-cont__data-txt {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1280px) {
  .ft-cont__data-txt {
    font-size: 1.6rem;
  }
}
.ft-cont__menu {
  display: none;
}
@media screen and (min-width: 1024px) {
  .ft-cont__menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: clamp(2.5rem, -5.5rem + 7.81vw, 4.5rem);
  }
}
.ft-cont__menu-nav-item + .ft-cont__menu-nav-item {
  margin-top: 5px;
}
.ft-cont__menu-nav-item-st {
  letter-spacing: 0.025em;
}
.ft-cont__copyright {
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .ft-cont__copyright {
    margin-top: clamp(3rem, 2rem + 2.54vw, 4rem);
  }
}
.ft-cont__copyright-st {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.top-fv {
  padding-top: 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-fv {
    padding-top: 120px;
  }
}
.top-fv__splide .splide__slide {
  max-height: 71svh;
  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%;
  object-fit: cover;
}
.top-fv__cont {
  position: relative;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 0 0 0;
  max-width: 800px;
  width: 80%;
  padding-top: clamp(2rem, 0.1rem + 5.09vw, 4rem);
  padding-bottom: clamp(0.5rem, -0.9rem + 3.82vw, 2rem);
  padding-left: clamp(3.5rem, -0.8rem + 11.45vw, 8rem);
  padding-right: 10px;
}
@media screen and (min-width: 1024px) {
  .top-fv__cont {
    width: 100%;
  }
}
.top-fv__cont::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_curve01.png) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}
.top-fv__cont-ttl-sub {
  font-family: var(--sub_font);
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  margin-bottom: clamp(0.6rem, 0.2rem + 1.02vw, 1rem);
}
.top-fv__cont-ttl-main {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 0.3rem + 5.6vw, 4.6rem);
  letter-spacing: 0.05em;
  line-height: 1.39;
}

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

.top-msg {
  padding-top: clamp(7rem, 0.3rem + 17.81vw, 14rem);
}
.top-msg__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-msg__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(3rem, 1.3rem + 4.62vw, 6rem) clamp(5rem, -6.4rem + 11.16vw, 15rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-msg__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-msg__info {
  max-width: 550px;
  width: 100%;
}
.top-msg__catch {
  font-family: var(--sub_font);
  font-size: min(6.7vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .top-msg__catch {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-msg__box {
    flex: 1;
  }
}
.top-msg__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 2.22;
}
.top-msg__media {
  width: 80%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top-msg__media {
    width: 70%;
  }
}
@media screen and (min-width: 1024px) {
  .top-msg__media {
    width: 100%;
    text-align: right;
  }
}
.top-msg__media img {
  border-radius: 20px;
}
.top-msg__illust {
  max-width: max-content;
  position: absolute;
}
.top-msg__illust.--01 {
  width: 50%;
  z-index: -1;
  left: max(50% - 50vw, -330px);
  bottom: 140px;
}
@media screen and (min-width: 1024px) {
  .top-msg__illust.--01 {
    width: 42%;
    bottom: 45px;
  }
}
.top-msg__illust.--02 {
  width: 20%;
  z-index: -2;
  left: 14px;
  bottom: calc(clamp(4rem, 1.7rem + 6.16vw, 8rem) * -1);
}
@media screen and (min-width: 1024px) {
  .top-msg__illust.--02 {
    left: 50px;
    bottom: -40px;
  }
}

.top-concern {
  padding-top: clamp(7rem, 0.3rem + 17.81vw, 14rem);
  padding-bottom: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.top-concern__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-concern__ttl {
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
}
.top-concern__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.top-concern__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.6rem, 1.3rem + 3.56vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .top-concern__catch br {
    display: none;
  }
}
.top-concern__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-concern__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 45px;
  }
}
.top-concern__item {
  max-width: 360px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-concern__item {
    width: calc((100% - 45px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-concern__item {
    width: calc((100% - 90px) / 3);
  }
}
.top-concern__item-media {
  width: 80%;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 2rem + 1.27vw, 3rem);
}
@media screen and (min-width: 1024px) {
  .top-concern__item-media {
    width: 100%;
  }
}
.top-concern__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  text-align: center;
  margin-bottom: clamp(2.5rem, 2rem + 1.27vw, 3rem);
}
@media screen and (min-width: 1024px) {
  .top-concern__item-ttl {
    font-size: min(2vw, 2.4rem);
  }
}
.top-concern__item-txt {
  letter-spacing: 0.05em;
}
.top-concern__illust {
  max-width: max-content;
  position: absolute;
}
.top-concern__illust.--01 {
  width: 30%;
  z-index: -1;
  left: max(50% - 50vw, -190px);
  bottom: 140px;
}
@media screen and (min-width: 1024px) {
  .top-concern__illust.--01 {
    bottom: 145px;
  }
}
.top-concern__illust.--02 {
  width: 50%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  top: calc(clamp(1rem, 7.4rem + -16.95vw, -10rem) * -1);
}
@media screen and (min-width: 1024px) {
  .top-concern__illust.--02 {
    width: 44%;
    top: -10px;
  }
}

.top-thoughts {
  position: relative;
}
.top-thoughts__bg {
  background: url(/system_panel/uploads/images/img_top-thoughts-bg.jpg) no-repeat center center/cover;
  padding-top: clamp(5rem, 0.2rem + 12.72vw, 10rem);
  padding-bottom: clamp(14rem, 6.4rem + 20.36vw, 22rem);
}
.top-thoughts__box-inr {
  max-width: 510px;
  width: 100%;
}
.top-thoughts__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-thoughts__catch {
  font-family: var(--sub_font);
  font-size: min(7.2vw, 3.2rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: clamp(2.5rem, 0.6rem + 5.09vw, 4.5rem);
}
@media screen and (min-width: 768px) {
  .top-thoughts__catch {
    font-size: 4rem;
  }
}
.top-thoughts__txt {
  letter-spacing: 0.05em;
}
.top-thoughts__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: calc(clamp(8rem, 1.3rem + 17.81vw, 15rem) * -1);
  margin-bottom: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
@media screen and (min-width: 768px) {
  .top-thoughts__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.top-thoughts__item {
  max-width: 380px;
  width: 100%;
  background-color: #fff;
  border: solid 1px #ad9275;
  border-radius: 20px;
  padding: clamp(3rem, 2.5rem + 1.27vw, 3.5rem) 15px;
}
.top-thoughts__item-icon {
  text-align: center;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.top-thoughts__item-icon img {
  height: 110px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .top-thoughts__item-icon img {
    height: 120px;
  }
}
.top-thoughts__item-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.52;
  color: #6d593a;
  text-align: center;
}
.top-thoughts__illust {
  max-width: max-content;
  position: absolute;
}
.top-thoughts__illust.--01 {
  width: 50%;
  z-index: -1;
  left: max(50% - 50vw, -240px);
  bottom: calc(clamp(-5rem, -2.1rem + -7.7vw, -10rem) * -1);
}
@media screen and (min-width: 1024px) {
  .top-thoughts__illust.--01 {
    width: 44%;
    bottom: -145px;
  }
}
.top-thoughts__illust.--02 {
  width: 22%;
  z-index: -1;
  right: max(50% - 50vw, -200px);
  bottom: calc(clamp(-5rem, -2.1rem + -7.7vw, -10rem) * -1);
}
@media screen and (min-width: 1024px) {
  .top-thoughts__illust.--02 {
    bottom: -145px;
  }
}

.top-care {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.top-care__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-care__ttl {
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
}
.top-care__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.top-care__catch {
  font-family: var(--sub_font);
  font-size: min(5.8vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}
.top-care__list {
  margin-bottom: clamp(6rem, 2.7rem + 8.91vw, 9.5rem);
}
.top-care__list:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .top-care__list:nth-child(even of .top-care__list) .top-care__item {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .top-care__list:nth-child(even of .top-care__list) .top-care__media-ph {
    margin-left: 0;
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-care__list:nth-child(even of .top-care__list) .top-care__media-ph {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.top-care__list:nth-child(even of .top-care__list) .top-care__illust {
  right: auto;
  left: max(50% - 50vw, -280px);
}
.top-care__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, 1.4rem + 4.46vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-care__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-care__info {
  max-width: 790px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-care__info {
    flex: 1;
    padding-top: clamp(2.5rem, -4.9rem + 7.25vw, 9rem);
  }
}
.top-care__info .cmn-btn__link {
  margin-inline: 0;
}
.top-care__info-ttl {
  margin-bottom: clamp(2.5rem, 0.6rem + 5.09vw, 4.5rem);
}
.top-care__info-ttl-en {
  font-family: var(--sub_font02);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  padding-left: 40px;
  color: #6d593a;
  margin-bottom: 5px;
  position: relative;
}
.top-care__info-ttl-en::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_care-illust01.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .top-care__info-ttl-en::before {
    top: 5px;
  }
}
.top-care__info-ttl-jp {
  font-family: var(--sub_font);
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
  letter-spacing: 0.05em;
}
.top-care__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
.top-care__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .top-care__media {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .top-care__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-care__media-ph {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}
.top-care__media img {
  border-radius: 20px;
}
.top-care__illust {
  max-width: max-content;
  position: absolute;
}
.top-care__illust.--01 {
  width: 40%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .top-care__illust.--01 {
    width: 36%;
  }
}
.top-care__illust.--02 {
  width: 30%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}
.top-care__cnt-btn {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .top-care__cnt-btn {
    justify-content: flex-start;
  }
}

.top-profile {
  padding-block: clamp(7rem, 0.3rem + 17.81vw, 14rem);
}
.top-profile__ttl {
  margin-bottom: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
.top-profile__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.5rem, 0.6rem + 5.09vw, 4.5rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-profile__txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
.top-profile__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, 1.4rem + 4.46vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-profile__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-profile__info {
  max-width: 790px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-profile__info {
    flex: 1;
  }
}
.top-profile__info .cmn-btn__link {
  margin-inline: 0;
}
.top-profile__media {
  width: 60%;
}
@media screen and (min-width: 1024px) {
  .top-profile__media {
    width: 46%;
  }
}
.top-profile__media img {
  border-radius: 20px;
}
.top-profile__illust {
  max-width: max-content;
  position: absolute;
  width: 22%;
  z-index: -1;
  left: max(50% - 50vw, -280px);
  bottom: 0;
}
.top-profile__cnt-btn {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .top-profile__cnt-btn {
    justify-content: flex-start;
  }
}

.top-voice {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
.top-voice::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img-top-voice-bg.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.top-voice__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-voice__ttl {
  text-align: center;
}
.top-voice__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
@media screen and (min-width: 768px) {
  .top-voice__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.top-voice__item {
  max-width: 380px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding-top: clamp(3rem, 2rem + 2.54vw, 4rem);
  padding-bottom: clamp(3.5rem, 4.5rem + -2.54vw, 2.5rem);
  padding-inline: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .top-voice__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-voice__item {
    width: calc((100% - 70px) / 3);
  }
}
.top-voice__item-icon {
  text-align: center;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.top-voice__item-icon img {
  height: 110px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .top-voice__item-icon img {
    height: 120px;
  }
}
.top-voice__item-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.top-voice__item-name {
  letter-spacing: 0.05em;
  text-align: center;
}

.top-first {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.top-first__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-first__txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
.top-first__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, 1.4rem + 4.46vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-first__item {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.top-first__info {
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-first__info {
    flex: 1;
  }
}
.top-first__info .cmn-btn__link {
  margin-inline: 0;
}
.top-first__media {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .top-first__media {
    width: 65%;
  }
}
@media screen and (min-width: 1024px) {
  .top-first__media {
    width: 50%;
  }
}
.top-first__media img {
  border-radius: 20px;
}
.top-first__illust {
  max-width: max-content;
  position: absolute;
  width: 40%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}
.top-first__cnt-btn {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .top-first__cnt-btn {
    justify-content: flex-start;
  }
}

.top-news {
  padding-block: clamp(6rem, 3.5rem + 6.63vw, 12rem);
}
.top-news__block {
  position: relative;
}
.top-news__cnt {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-news__cnt {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 160px;
    grid-template-areas: "top-news__ttl  top-news__btn" "top-news__list top-news__list";
    gap: 40px 25px;
  }
}
.top-news__cnt-ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-news__cnt-ttl {
    grid-area: top-news__ttl;
    margin-bottom: 0;
  }
}
.top-news__cnt-list {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-news__cnt-list {
    grid-area: top-news__list;
    margin-bottom: 0;
  }
}
.top-news__cnt-list .webgene-item {
  border-top: dashed 1px #ad9275;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .top-news__cnt-list .webgene-item {
    padding: 15px;
  }
}
.top-news__cnt-list .webgene-item:last-of-type {
  border-bottom: dashed 1px #ad9275;
}
.top-news__cnt-item {
  display: flex;
  flex-wrap: wrap;
}
.top-news__cnt-item-cate {
  margin-left: 20px;
}
.top-news__cnt-item-cate-str {
  display: inline-block;
  min-width: 100px;
  background-color: #f7f4eb;
  border-radius: 12px;
  font-size: 1.4rem;
  color: #83592c;
  line-height: 25px;
  text-align: center;
  padding: 0 10px;
}
.top-news__cnt-item-ttl {
  font-size: 1.6rem;
  width: 100%;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .top-news__cnt-item-ttl {
    flex: 1;
    width: auto;
    margin-left: 40px;
  }
}
.top-news__cnt-btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-news__cnt-btn {
    grid-area: top-news__btn;
    align-self: flex-end;
    text-align: right;
  }
}

.breadcrumb-cnt {
  padding-top: 45px;
}
.breadcrumb-cnt__list {
  display: flex;
  gap: 25px;
}
.breadcrumb-cnt__item {
  position: relative;
}
.breadcrumb-cnt__item::before {
  content: ">";
  position: absolute;
  top: 40%;
  right: -12.5px;
  transform: translate(50%, -50%);
}
.breadcrumb-cnt__item:last-of-type::before {
  content: none;
}
.breadcrumb-cnt__item-link {
  display: block;
}
.breadcrumb-cnt__item-st {
  font-size: min(3.4vw, 1.6rem);
  letter-spacing: 0.05em;
}
.shop-about {
  padding-top: clamp(5rem, 2.1rem + 7.63vw, 8rem);
  padding-bottom: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.shop-about__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.shop-about__txt {
  letter-spacing: 0.05em;
  line-height: 2.22;
}
.shop-about__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, 1.4rem + 4.46vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .shop-about__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.shop-about__info {
  max-width: 500px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .shop-about__info {
    flex: 1;
  }
}
.shop-about__info .cmn-btn__link {
  margin-inline: 0;
}
.shop-about__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .shop-about__media {
    width: 50%;
  }
}
.shop-about__media img {
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .shop-about__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-about__media-ph {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}
.shop-about__illust {
  max-width: max-content;
  position: absolute;
  width: 22%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}

.shop-overview {
  padding-top: clamp(5rem, 1.2rem + 10.18vw, 9rem);
  padding-bottom: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  background-color: #f7f4eb;
}
.shop-overview__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.shop-overview__ttl {
  text-align: center;
}
.shop-overview__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.shop-overview__cnt {
  max-width: 890px;
  width: 100%;
  margin: 0 auto;
}
.shop-overview__table-td-st.--instagram {
  position: relative;
  padding-left: 30px;
}
.shop-overview__table-td-st.--instagram::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_insta04.png) no-repeat center center/contain;
  position: absolute;
  top: 5px;
  left: 0;
}
.shop-overview__table-td-st.--line {
  position: relative;
}
.shop-overview__table-td-st.--line::after {
  content: "";
  width: 47px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_QR.png) no-repeat center center/contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.shop-overview__table-td-st.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .shop-overview__table-td-st.--br strong br {
    display: none;
  }
}

.shop-access {
  padding-top: clamp(5rem, 1.2rem + 10.18vw, 9rem);
  padding-bottom: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.shop-access__head {
  margin-bottom: clamp(2.5rem, 2rem + 1.27vw, 3rem);
}
.shop-access__ttl {
  text-align: center;
}
.shop-access__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.shop-access__cnt {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.shop-access__map {
  width: 100%;
  height: 260px;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .shop-access__map {
    height: 360px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-access__map {
    max-width: 1000px;
    height: 460px;
  }
}
.shop-access__map iframe {
  width: 100%;
  height: 100%;
}
.shop-access__table-th-st {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .shop-access__table-th-st {
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .shop-access__table-td-st br {
    display: none;
  }
}

.shop-faq {
  padding-top: clamp(5rem, 2.1rem + 7.63vw, 8rem);
  padding-bottom: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.shop-faq__btn-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 20px;
}
@media screen and (min-width: 768px) {
  .shop-faq__btn-list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.shop-faq__btn-item {
  max-width: 230px;
  width: 100%;
  border: solid 1px #6d593a;
  color: #6d593a;
  transition: background-color 0.15s ease-out;
}
@media screen and (min-width: 768px) {
  .shop-faq__btn-item {
    width: calc((100% - 40px) / 3);
  }
}
.shop-faq__btn-item:hover {
  background-color: #6d593a;
}
.shop-faq__btn-item:hover .shop-faq__btn-item-link-st {
  color: #fff;
}
.shop-faq__btn-item-link {
  text-align: center;
}
.shop-faq__btn-item-link-st {
  font-size: clamp(1.4rem, 1.2rem + 0.51vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 4;
  color: #6d593a;
  transition: color 0.15s ease-out;
}
.shop-faq__list {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  margin-top: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
.shop-faq__item {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.shop-faq__item:last-of-type {
  margin-bottom: 0;
}
.shop-faq__item-ttl {
  margin-bottom: clamp(2rem, 1.5rem + 1.27vw, 2.5rem);
}
.shop-faq__item-ttl-st {
  font-family: var(--sub_font);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .shop-faq__item-ttl-st {
    padding-left: 40px;
  }
}
.shop-faq__item-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  border-top: dashed 1px #9f8d73;
  padding: 35px 25px;
}
@media screen and (min-width: 768px) {
  .shop-faq__item-info {
    padding: 35px 45px;
  }
}
.shop-faq__item-info:last-of-type {
  border-bottom: dashed 1px #9f8d73;
}
.shop-faq__item-q-txt {
  display: flex;
  align-items: center;
  padding-left: 40px;
  position: relative;
}
.shop-faq__item-q-txt::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/18;
  background: url(/system_panel/uploads/images/icon_Q.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.shop-faq__item-q-txt-st {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.025em;
  color: #6d593a;
}
.shop-faq__item-a {
  width: 100%;
}
.shop-faq__item-a-txt {
  display: flex;
  align-items: center;
  max-width: 910px;
  width: 100%;
  padding-left: 40px;
  position: relative;
}
.shop-faq__item-a-txt::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/18;
  background: url(/system_panel/uploads/images/icon_A.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.shop-faq__item-a-txt-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.025em;
}

.shop-contact {
  padding-top: clamp(5rem, 2.1rem + 7.63vw, 8rem);
  padding-bottom: clamp(6rem, 3.1rem + 7.63vw, 9rem);
  background-color: #c3bba7;
}
.shop-contact__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.shop-contact__ttl {
  text-align: center;
}
.shop-contact__ttl .cmn-ttl__main {
  color: #fff;
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.shop-contact__ttl .cmn-ttl__sub {
  color: #fff;
}
.shop-contact__cnt {
  max-width: 1030px;
  margin: 0 auto;
}
.shop-contact__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-contact__txt br {
    display: none;
  }
}
.shop-contact__icon {
  text-align: center;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.shop-contact__icon img {
  height: 100px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .shop-contact__icon img {
    height: 110px;
  }
}
.shop-contact__btn {
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .shop-contact__btn {
    flex-direction: row;
  }
}
.shop-contact__btn .cmn-contact__btn-item {
  max-width: 500px;
}

.voice-care {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  margin-bottom: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.voice-care__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.voice-care__ttl {
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
}
.voice-care__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.voice-care__catch {
  font-family: var(--sub_font);
  font-size: min(7vw, 3.4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: left;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.voice-care__catch br {
  display: none;
}
@media screen and (min-width: 768px) {
  .voice-care__catch br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .voice-care__catch {
    font-size: min(4.4vw, 4rem);
    text-align: center;
  }
}
.voice-care__note {
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice-care__note br {
    display: none;
  }
}
.voice-care__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .voice-care__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.voice-care__item {
  max-width: 580px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .voice-care__item {
    width: calc((100% - 40px) / 2);
  }
}
.voice-care__media {
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.voice-care__media img {
  border-radius: 20px;
}
.voice-care__info-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  padding-left: 10px;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 1024px) {
  .voice-care__info-ttl {
    font-size: min(1.7vw, 2.1rem);
  }
}
@media screen and (min-width: 768px) {
  .voice-care__info-ttl br {
    display: none;
  }
}
.voice-care__table-tr {
  border-top: solid 1px #ccc;
  padding: 10px 0;
}
.voice-care__table-tr:last-of-type {
  border-bottom: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .voice-care__table-tr {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0;
  }
}
@media screen and (min-width: 1024px) {
  .voice-care__table-tr {
    min-height: 92px;
  }
}
@media screen and (min-width: 1280px) {
  .voice-care__table-tr {
    min-height: 0;
  }
}
.voice-care__table-th {
  width: 205px;
  padding: 0 15px 0 20px;
}
@media screen and (min-width: 768px) {
  .voice-care__table-th {
    padding: 0 15px 0 25px;
  }
}
.voice-care__table-th-st {
  letter-spacing: 0.05em;
  color: #6d593a;
}
.voice-care__table-td {
  flex: 1;
  padding: 0 15px 0 20px;
}
@media screen and (min-width: 768px) {
  .voice-care__table-td {
    padding: 0 15px 0 0;
  }
}
.voice-care__table-td-st {
  letter-spacing: 0.05em;
}
.voice-care__table-td-st br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .voice-care__table-td-st br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .voice-care__table-td-st br {
    display: none;
  }
}
.voice-care__illust {
  max-width: max-content;
  position: absolute;
}
.voice-care__illust.--01 {
  width: 40%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  top: 0;
}
@media screen and (min-width: 1024px) {
  .voice-care__illust.--01 {
    width: 45%;
  }
}
.voice-care__illust.--02 {
  width: 30%;
  z-index: -1;
  left: max(50% - 50vw, -280px);
  bottom: 0;
}

.voice-client {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
.voice-client::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img-top-voice-bg.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.voice-client__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.voice-client__ttl {
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.voice-client__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.voice-client__note {
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice-client__note br {
    display: none;
  }
}
.voice-client__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 768px) {
  .voice-client__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.voice-client__item {
  max-width: 380px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding-top: clamp(3rem, 2rem + 2.54vw, 4rem);
  padding-bottom: clamp(3.5rem, 4.5rem + -2.54vw, 2.5rem);
  padding-inline: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .voice-client__item {
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .voice-client__item {
    width: calc((100% - 70px) / 3);
  }
}
.voice-client__item-icon {
  text-align: center;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.voice-client__item-icon img {
  height: 110px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .voice-client__item-icon img {
    height: 120px;
  }
}
.voice-client__item-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.voice-client__item-name {
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: auto;
}
.voice-client__box-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  padding-left: 24px;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
  position: relative;
}
.voice-client__box-ttl::before {
  content: "";
  width: 18px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_check01.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.first-case {
  padding-top: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
.first-case__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.first-case__ttl {
  text-align: center;
}
.first-case__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.first-case__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .first-case__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 790px;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .first-case__list {
    max-width: 1170px;
    margin-inline: 0;
  }
}
.first-case__item {
  max-width: 380px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .first-case__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .first-case__item {
    width: calc((100% - 60px) / 3);
  }
}
.first-case__item-media {
  max-width: 380px;
  width: 100%;
}
.first-case__item-media img {
  border-radius: 20px 20px 0 0;
}
.first-case__item-info {
  padding: clamp(2rem, 1.5rem + 1.27vw, 2.5rem) 15px clamp(2.5rem, 2rem + 1.27vw, 3rem);
  border-left: solid 1px #ad9275;
  border-right: solid 1px #ad9275;
  border-bottom: solid 1px #ad9275;
  border-radius: 0 0 20px 20px;
}
.first-case__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.714;
  color: #6d593a;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .first-case__item-ttl {
    font-size: min(1.8vw, 2.1rem);
  }
}
.first-case__illust {
  max-width: max-content;
  position: absolute;
}
.first-case__illust.--01 {
  width: 40%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  top: 0;
}
@media screen and (min-width: 1024px) {
  .first-case__illust.--01 {
    width: 45%;
  }
}
.first-case__illust.--02 {
  width: 38%;
  z-index: -1;
  left: max(50% - 50vw, -280px);
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .first-case__illust.--02 {
    width: 44%;
  }
}

.first-guide {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.first-guide__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.first-guide__ttl {
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
}
.first-guide__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.first-guide__catch {
  font-family: var(--sub_font);
  font-size: min(5.8vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .first-guide__catch {
    text-align: center;
  }
}
.first-guide__catch br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .first-guide__catch br {
    display: block;
  }
}
.first-guide__list {
  margin-bottom: clamp(6rem, 2.7rem + 8.91vw, 9.5rem);
}
.first-guide__list:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .first-guide__list:nth-child(even of .first-guide__list) .first-guide__item {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .first-guide__list:nth-child(even of .first-guide__list) .first-guide__media-ph {
    margin-left: 0;
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .first-guide__list:nth-child(even of .first-guide__list) .first-guide__media-ph {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.first-guide__list:nth-child(even of .first-guide__list) .first-guide__illust {
  right: auto;
  left: max(50% - 50vw, -280px);
}
.first-guide__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 35px clamp(6rem, 1.4rem + 4.46vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .first-guide__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.first-guide__info {
  max-width: 790px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .first-guide__info {
    flex: 1;
    padding-top: clamp(2.5rem, -4.9rem + 7.25vw, 9rem);
  }
}
.first-guide__info .cmn-btn__link {
  margin-inline: 0;
}
.first-guide__info-ttl {
  margin-bottom: clamp(2.5rem, 0.6rem + 5.09vw, 4.5rem);
}
.first-guide__info-ttl-en {
  font-family: var(--sub_font02);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  padding-left: 40px;
  color: #6d593a;
  margin-bottom: 6px;
  position: relative;
}
.first-guide__info-ttl-en::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_care-illust01.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .first-guide__info-ttl-en::before {
    top: 5px;
  }
}
.first-guide__info-ttl-jp {
  font-family: var(--sub_font);
  font-size: clamp(2.6rem, 1.6rem + 2.54vw, 3.6rem);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .first-guide__info-ttl-jp {
    font-size: min(3.1vw, 3.6rem);
  }
}
.first-guide__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
.first-guide__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .first-guide__media {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .first-guide__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .first-guide__media-ph {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}
.first-guide__media img {
  border-radius: 20px;
}
.first-guide__illust {
  max-width: max-content;
  position: absolute;
}
.first-guide__illust.--01 {
  width: 40%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .first-guide__illust.--01 {
    width: 36%;
  }
}
.first-guide__illust.--02 {
  width: 22%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}
.first-guide__cnt-btn {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .first-guide__cnt-btn {
    justify-content: flex-start;
  }
}

.first-book {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.first-book__cnt {
  max-width: 1000px;
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 20px;
  margin: 0 auto;
  padding-block: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  padding-inline: 15px;
}
.first-book__cnt-btn {
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.first-book__head {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.first-book__ttl {
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.first-book__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.first-book__txt {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .first-book__txt {
    font-size: min(2.2vw, 1.8rem);
    text-align: center;
  }
}
.first-book__txt br {
  display: none;
}
@media screen and (min-width: 768px) {
  .first-book__txt br {
    display: block;
  }
}
.first-book__item {
  max-width: 610px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: clamp(3rem, 2rem + 2.54vw, 4rem) 15px clamp(3.5rem, 2.5rem + 2.54vw, 4.5rem);
}
.first-book__item-icon {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.first-book__item-icon img {
  height: 100px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .first-book__item-icon img {
    height: 110px;
  }
}
.first-book__item-txt {
  font-size: min(3.4vw, 1.6rem);
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: center;
}

.first-flow {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.first-flow__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.first-flow__ttl {
  text-align: center;
}
.first-flow__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.first-flow__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 55px 35px;
}
@media screen and (min-width: 768px) {
  .first-flow__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 575px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .first-flow__list {
    max-width: 880px;
  }
}
.first-flow__item {
  max-width: 270px;
  width: 100%;
  background-color: #fff;
  border: solid 1px #ad9275;
  border-radius: 20px;
  padding: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem) clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem) clamp(3.5rem, 2.5rem + 2.54vw, 4.5rem);
}
@media screen and (min-width: 768px) {
  .first-flow__item {
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .first-flow__item {
    width: calc((100% - 70px) / 3);
  }
  .first-flow__item:nth-child(3) .first-flow__item-ttl {
    min-height: 3.428em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.first-flow__item-inr {
  max-width: 225px;
  width: 100%;
  margin: 0 auto;
}
.first-flow__item-icon {
  text-align: center;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.first-flow__item-icon img {
  height: 80px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .first-flow__item-icon img {
    height: 90px;
  }
}
.first-flow__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.714;
  color: #6d593a;
  text-align: center;
  margin-bottom: 15px;
}
.first-flow__item-txt {
  letter-spacing: 0.05em;
}
.first-flow__illust {
  max-width: max-content;
  position: absolute;
  width: 40%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  top: 0;
}
@media screen and (min-width: 1024px) {
  .first-flow__illust {
    width: 45%;
  }
}

.first-visit {
  padding-top: clamp(8rem, 1.3rem + 17.81vw, 15rem);
  padding-bottom: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.first-visit__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.first-visit__ttl {
  text-align: center;
}
.first-visit__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.first-visit__list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.first-visit__item {
  padding: clamp(2rem, 1.5rem + 1.27vw, 2.5rem) clamp(3rem, 2rem + 2.54vw, 4rem) clamp(3rem, 2.5rem + 1.27vw, 3.5rem);
  border-bottom: dashed 1px #ad9275;
}
.first-visit__item:first-of-type {
  padding-top: 0;
}
.first-visit__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  margin-bottom: clamp(1rem, 0.5rem + 1.27vw, 1.5rem);
}
.first-visit__item-txt {
  letter-spacing: 0.025em;
  line-height: 1.5;
}
.first-visit__illust {
  max-width: max-content;
  position: absolute;
  width: 40%;
  z-index: -1;
  left: max(50% - 50vw, -280px);
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .first-visit__illust {
    width: 45%;
  }
}

.menu-concern {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.menu-concern__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.menu-concern__ttl {
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
}
.menu-concern__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.menu-concern__catch {
  font-family: var(--sub_font);
  font-size: min(6.6vw, 3.4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}
.menu-concern__catch br {
  display: none;
}
@media screen and (min-width: 768px) {
  .menu-concern__catch br {
    display: block;
  }
}
.menu-concern__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .menu-concern__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 85px 40px;
  }
}
.menu-concern__item {
  max-width: 580px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .menu-concern__item {
    width: calc((100% - 40px) / 2);
  }
}
.menu-concern__media {
  width: 100%;
  margin-bottom: clamp(3.5rem, 2.5rem + 2.54vw, 4.5rem);
}
.menu-concern__media img {
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .menu-concern__info {
    padding-inline: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
  }
}
.menu-concern__info-ttl {
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.menu-concern__info-ttl-en {
  font-family: var(--sub_font02);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #6d593a;
  padding-left: 40px;
  margin-bottom: 12px;
  position: relative;
}
.menu-concern__info-ttl-en::before {
  content: "";
  width: 30px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_care-illust01.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .menu-concern__info-ttl-en::before {
    top: 5px;
  }
}
.menu-concern__info-ttl-jp {
  font-family: var(--sub_font);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  color: #6d593a;
}
@media screen and (min-width: 1024px) {
  .menu-concern__info-ttl-jp {
    font-size: min(2.1vw, 2.4rem);
  }
}
@media screen and (min-width: 768px) {
  .menu-concern__info-ttl-jp br {
    display: none;
  }
}
.menu-concern__info-txt {
  letter-spacing: 0.05em;
  margin-bottom: clamp(2.5rem, 2rem + 1.27vw, 3rem);
}
.menu-concern__check {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.menu-concern__check-item {
  border: solid 1px #ad9275;
  border-radius: 10px;
  padding: 10px clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .menu-concern__check-item {
    padding: 10px clamp(2rem, -25.4rem + 26.79vw, 3.5rem);
  }
}
.menu-concern__check-item:last-of-type {
  margin-bottom: 0;
}
.menu-concern__check-txt {
  letter-spacing: 0.05em;
  padding-left: 30px;
  position: relative;
}
.menu-concern__check-txt::before {
  content: "";
  width: 15px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_round.png) no-repeat center center/contain;
  position: absolute;
  top: 9px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .menu-concern__check-txt::before {
    width: 16px;
    top: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .menu-concern__cnt-btn .cmn-btn__link {
    margin-inline: 0;
  }
}
.menu-concern__illust {
  max-width: max-content;
  position: absolute;
}
.menu-concern__illust.--01 {
  width: 40%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  top: 0;
}
@media screen and (min-width: 1024px) {
  .menu-concern__illust.--01 {
    width: 45%;
  }
}
.menu-concern__illust.--02 {
  width: 30%;
  z-index: -1;
  left: max(50% - 50vw, -280px);
  bottom: 0;
}

.menu-help {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  padding-bottom: clamp(6rem, 0.3rem + 15.27vw, 12rem);
}
.menu-help__cnt {
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: clamp(4rem, 2.1rem + 5.09vw, 6rem) 15px clamp(5rem, 3.1rem + 5.09vw, 7rem);
}
.menu-help__head {
  margin-bottom: clamp(4rem, 2.6rem + 3.82vw, 5.5rem);
}
.menu-help__ttl {
  text-align: center;
  margin-bottom: clamp(2rem, 1.5rem + 1.27vw, 2.5rem);
}
.menu-help__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.menu-help__txt {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  text-align: left;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
@media screen and (min-width: 768px) {
  .menu-help__txt {
    text-align: center;
  }
}
.menu-help__txt.--br strong {
  font-weight: 400;
}
.menu-help__txt.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .menu-help__txt.--br strong br {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .menu-help__txt.--br strong br {
    display: none;
  }
}
.menu-help__note {
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .menu-help__note {
    text-align: center;
  }
}
.menu-help__note.--br strong {
  font-weight: 400;
}
.menu-help__note.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .menu-help__note.--br strong br {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .menu-help__note.--br strong br {
    display: none;
  }
}

.concept-thoughts {
  padding-block: clamp(6rem, 4.1rem + 5.09vw, 8rem);
}
.concept-thoughts__ttl {
  margin-bottom: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
.concept-thoughts__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.5rem, 1.1rem + 3.82vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .concept-thoughts__catch {
    font-size: min(3.4vw, 4rem);
  }
}
.concept-thoughts__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 2.22;
}
.concept-thoughts__txt.--br strong {
  font-weight: 400;
}
.concept-thoughts__txt.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .concept-thoughts__txt.--br strong br {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .concept-thoughts__txt.--br strong br {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .concept-thoughts__txt.--br strong br {
    display: block;
  }
}
.concept-thoughts__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(5rem, 0.4rem + 4.46vw, 9rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-thoughts__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.concept-thoughts__info {
  max-width: 560px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .concept-thoughts__info {
    flex: 1;
  }
}
.concept-thoughts__info .cmn-btn__link {
  margin-inline: 0;
}
.concept-thoughts__media {
  width: 80%;
  margin-left: -15px;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .concept-thoughts__media {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-thoughts__media {
    width: 45%;
    margin-left: 0;
    margin-right: 0;
  }
}
.concept-thoughts__media img {
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 1024px) {
  .concept-thoughts__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-thoughts__media-ph {
    margin-left: max((1200px - 100vw) / 2, -360px);
  }
}
.concept-thoughts__illust {
  max-width: max-content;
  position: absolute;
  width: 45%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .concept-thoughts__illust {
    width: 50%;
  }
}

.concept-story {
  position: relative;
}
.concept-story__bg {
  background: url(/system_panel/uploads/images/img_concept-story.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 0.8rem + 13.99vw, 11.5rem);
}
.concept-story__box-inr {
  max-width: 590px;
  width: 100%;
  position: relative;
}
.concept-story__box-inr::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  width: 105%;
  height: 150%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 1024px) {
  .concept-story__box-inr::before {
    display: none;
  }
}
.concept-story__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.concept-story__catch {
  font-family: var(--sub_font);
  font-size: min(6.2vw, 3.2rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: clamp(2.5rem, 0.6rem + 5.09vw, 4.5rem);
}
@media screen and (min-width: 768px) {
  .concept-story__catch {
    font-size: 4rem;
  }
}
.concept-story__catch.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .concept-story__catch.--br strong br {
    display: none;
  }
}
.concept-story__txt {
  letter-spacing: 0.05em;
}

.concept-profile {
  padding-block: clamp(7rem, 0.3rem + 17.81vw, 14rem);
}
.concept-profile__ttl {
  margin-bottom: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
.concept-profile__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.5rem, 1.1rem + 3.82vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.concept-profile__txt {
  letter-spacing: 0.05em;
}
.concept-profile__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, 1.4rem + 4.46vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-profile__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.concept-profile__info {
  max-width: 790px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .concept-profile__info {
    flex: 1;
  }
}
.concept-profile__info .cmn-btn__link {
  margin-inline: 0;
}
.concept-profile__media {
  width: 60%;
}
@media screen and (min-width: 1024px) {
  .concept-profile__media {
    width: 46%;
  }
}
.concept-profile__media img {
  border-radius: 20px;
}
.concept-profile__illust {
  max-width: max-content;
  position: absolute;
  width: 22%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}

.cmn-concern {
  padding-block: clamp(5rem, 2.1rem + 7.63vw, 8rem);
}
.cmn-concern__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.cmn-concern__ttl {
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
}
.cmn-concern__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.cmn-concern__catch {
  font-family: var(--sub_font);
  font-size: min(7vw, 3.4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}
.cmn-concern__catch br {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-concern__catch br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .cmn-concern__catch {
    font-size: min(4.4vw, 4rem);
  }
}
.cmn-concern__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .cmn-concern__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 45px;
  }
}
.cmn-concern__item {
  max-width: 270px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cmn-concern__item {
    width: calc((100% - 45px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-concern__item {
    width: calc((100% - 90px) / 3);
  }
}
.cmn-concern__item-media {
  width: 85%;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem);
}
@media screen and (min-width: 768px) {
  .cmn-concern__item-media {
    width: 100%;
  }
}
.cmn-concern__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  text-align: center;
}
.cmn-concern__illust {
  max-width: max-content;
  position: absolute;
}
.cmn-concern__illust.--01 {
  width: 40%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  top: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-concern__illust.--01 {
    width: 45%;
  }
}
.cmn-concern__illust.--02 {
  width: 30%;
  z-index: -1;
  left: max(50% - 50vw, -280px);
  bottom: 0;
}

.cmn-appro {
  position: relative;
}
.cmn-appro__bg {
  background: url(/system_panel/uploads/images/img_baby-appro.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 0.8rem + 13.99vw, 11.5rem);
}
.cmn-appro__box-inr {
  max-width: 590px;
  width: 100%;
}
.cmn-appro__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.cmn-appro__catch {
  font-family: var(--sub_font);
  font-size: clamp(3.2rem, 2.4rem + 2.04vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: clamp(2.5rem, 0.6rem + 5.09vw, 4.5rem);
}
.cmn-appro__catch.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-appro__catch.--br strong br {
    display: none;
  }
}
.cmn-appro__txt {
  letter-spacing: 0.05em;
}

.cmn-appro.baby-appro .cmn-appro__box-inr {
  position: relative;
}
.cmn-appro.baby-appro .cmn-appro__box-inr::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  width: 105%;
  height: 150%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 1024px) {
  .cmn-appro.baby-appro .cmn-appro__box-inr::before {
    display: none;
  }
}

.cmn-flow {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
}
.cmn-flow__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.cmn-flow__ttl {
  text-align: center;
}
.cmn-flow__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.cmn-flow__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 55px 35px;
}
@media screen and (min-width: 768px) {
  .cmn-flow__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 575px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-flow__list {
    max-width: none;
  }
}
.cmn-flow__item {
  max-width: 270px;
  width: 100%;
  background-color: #fff;
  border: solid 1px #ad9275;
  border-radius: 20px;
  padding: clamp(2.5rem, 1.5rem + 2.54vw, 3.5rem) clamp(1.5rem, 0.7rem + 2.04vw, 2.3rem) clamp(3.5rem, 2.5rem + 2.54vw, 4.5rem);
}
@media screen and (min-width: 768px) {
  .cmn-flow__item {
    width: calc((100% - 35px) / 2);
  }
  .cmn-flow__item:nth-child(3) .cmn-flow__item-ttl {
    min-height: 3.428em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-flow__item {
    width: calc((100% - 105px) / 4);
  }
}
.cmn-flow__item-inr {
  max-width: 225px;
  width: 100%;
  margin: 0 auto;
}
.cmn-flow__item-icon {
  text-align: center;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.cmn-flow__item-icon img {
  height: 80px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .cmn-flow__item-icon img {
    height: 90px;
  }
}
.cmn-flow__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.714;
  color: #6d593a;
  text-align: center;
  margin-bottom: 15px;
}
.cmn-flow__item-txt {
  letter-spacing: 0.05em;
}

.cmn-price {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  padding-bottom: clamp(6rem, 0.8rem + 13.99vw, 11.5rem);
}
.cmn-price__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.cmn-price__ttl {
  text-align: center;
}
.cmn-price__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.cmn-price__box {
  max-width: 800px;
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding-top: clamp(3.5rem, 1.6rem + 5.09vw, 5.5rem);
  padding-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  margin-inline: auto;
  padding-inline: 15px;
}
.cmn-price__box-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  padding-left: 24px;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.cmn-price__box-ttl::before {
  content: "";
  width: 18px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_check01.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.cmn-price__box-txt {
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}
.cmn-price__box-txt.--br strong {
  font-weight: 400;
}
.cmn-price__box-txt.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-price__box-txt.--br strong br {
    display: block;
  }
}
.cmn-price__illust {
  max-width: max-content;
  position: absolute;
  width: 38%;
  z-index: -1;
  left: max(50% - 50vw, -280px);
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-price__illust {
    width: 44%;
  }
}

.cmn-voice {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
.cmn-voice::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img-top-voice-bg.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.cmn-voice__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.cmn-voice__ttl {
  text-align: center;
}
.cmn-voice__ttl .cmn-ttl__main {
  margin-bottom: clamp(1rem, 0.2rem + 2.04vw, 1.8rem);
}
.cmn-voice__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
@media screen and (min-width: 768px) {
  .cmn-voice__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.cmn-voice__item {
  max-width: 380px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding-top: clamp(3rem, 2rem + 2.54vw, 4rem);
  padding-bottom: clamp(3.5rem, 4.5rem + -2.54vw, 2.5rem);
  padding-inline: clamp(1.5rem, 0.5rem + 2.54vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .cmn-voice__item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-voice__item {
    width: calc((100% - 60px) / 3);
  }
}
.cmn-voice__item-icon {
  text-align: center;
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.cmn-voice__item-icon img {
  height: 110px;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .cmn-voice__item-icon img {
    height: 120px;
  }
}
.cmn-voice__item-txt {
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .cmn-concern.maternity-concern .cmn-concern__list {
    gap: 45px 35px;
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-concern.maternity-concern .cmn-concern__list {
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .cmn-concern.maternity-concern .cmn-concern__item {
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .cmn-concern.maternity-concern .cmn-concern__item {
    width: calc((100% - 105px) / 4);
  }
}

.cmn-appro.maternity-appro .cmn-appro__bg {
  background: url(/system_panel/uploads/images/img_maternity-apro.jpg) no-repeat center center/cover;
}
.cmn-appro.maternity-appro .cmn-appro__catch {
  font-size: min(6.7vw, 4rem);
}
.cmn-appro.maternity-appro .cmn-appro__box-inr {
  position: relative;
}
.cmn-appro.maternity-appro .cmn-appro__box-inr::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  width: 105%;
  height: 150%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 1024px) {
  .cmn-appro.maternity-appro .cmn-appro__box-inr::before {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .cmn-flow.maternity-flow .cmn-flow__list {
    max-width: 880px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-flow.maternity-flow .cmn-flow__list {
    max-width: 880px;
  }
}
@media screen and (min-width: 768px) {
  .cmn-flow.maternity-flow .cmn-flow__item:first-child {
    max-width: 575px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-flow.maternity-flow .cmn-flow__item:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-flow.maternity-flow .cmn-flow__item:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .cmn-flow.maternity-flow .cmn-flow__item:first-child .cmn-flow__item-inr {
    max-width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .cmn-flow.maternity-flow .cmn-flow__item:first-child .cmn-flow__item-ttl br {
    display: none;
  }
}
.cmn-flow.maternity-flow .cmn-flow__item:first-child .cmn-flow__item-txt-st {
  letter-spacing: 0.05em;
  padding-left: 16px;
  position: relative;
}
.cmn-flow.maternity-flow .cmn-flow__item:first-child .cmn-flow__item-txt-st::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .cmn-flow.maternity-flow .cmn-flow__item:nth-child(2) .cmn-flow__item-ttl {
    min-height: 3.428em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cmn-flow.maternity-flow .cmn-flow__item:nth-child(3) .cmn-flow__item-ttl {
    min-height: auto;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-flow.maternity-flow .cmn-flow__item {
    width: calc((100% - 70px) / 3);
  }
  .cmn-flow.maternity-flow .cmn-flow__item:nth-child(2) .cmn-flow__item-ttl {
    min-height: auto;
    display: block;
  }
  .cmn-flow.maternity-flow .cmn-flow__item:nth-child(4) .cmn-flow__item-ttl {
    min-height: 3.428em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cmn-flow.maternity-flow .cmn-flow__item:nth-child(5) .cmn-flow__item-ttl {
    min-height: 3.428em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-flow.maternity-flow .cmn-flow__item {
    width: calc((100% - 70px) / 3);
  }
}

@media screen and (min-width: 768px) {
  .cmn-concern.post-concern .cmn-concern__list {
    gap: 45px 35px;
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-concern.post-concern .cmn-concern__list {
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .cmn-concern.post-concern .cmn-concern__item {
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .cmn-concern.post-concern .cmn-concern__item {
    width: calc((100% - 105px) / 4);
  }
}

.cmn-appro.post-appro .cmn-appro__bg {
  background: url(/system_panel/uploads/images/img_post-apro.jpg) no-repeat center center/cover;
}

@media screen and (min-width: 1024px) {
  .cmn-flow.post-flow .cmn-flow__list {
    max-width: 880px;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-flow.post-flow .cmn-flow__list {
    max-width: 880px;
  }
}
@media screen and (min-width: 768px) {
  .cmn-flow.post-flow .cmn-flow__item:nth-child(3) .cmn-flow__item-ttl {
    min-height: 3.428em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-flow.post-flow .cmn-flow__item {
    width: calc((100% - 70px) / 3);
  }
  .cmn-flow.post-flow .cmn-flow__item:nth-child(3) .cmn-flow__item-ttl {
    min-height: auto;
    display: block;
  }
  .cmn-flow.post-flow .cmn-flow__item:nth-child(5) .cmn-flow__item-ttl {
    min-height: 3.428em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .cmn-flow.post-flow .cmn-flow__item {
    width: calc((100% - 70px) / 3);
  }
}

.cmn-appro.yomogi-about .cmn-appro__bg {
  background: url(/system_panel/uploads/images/img_yomogi-appro.jpg) no-repeat center center/cover;
  padding-top: clamp(6rem, 0.8rem + 13.99vw, 11.5rem);
  padding-bottom: clamp(9rem, 0.4rem + 22.9vw, 18rem);
  margin-bottom: clamp(4.5rem, 2.6rem + 5.09vw, 6.5rem);
}
.cmn-appro.yomogi-about .cmn-appro__catch {
  font-size: min(6.7vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .cmn-appro.yomogi-about .cmn-appro__catch {
    font-size: min(3.8vw, 4rem);
  }
}
.cmn-appro.yomogi-about .cmn-appro__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .cmn-appro.yomogi-about .cmn-appro__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
  }
}
.cmn-appro.yomogi-about .cmn-appro__item {
  max-width: 370px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cmn-appro.yomogi-about .cmn-appro__item {
    width: calc((100% - 60px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .cmn-appro.yomogi-about .cmn-appro__item {
    width: calc((100% - 120px) / 3);
  }
}
.cmn-appro.yomogi-about .cmn-appro__item-media {
  width: 80%;
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .cmn-appro.yomogi-about .cmn-appro__item-media {
    width: 100%;
  }
}
.cmn-appro.yomogi-about .cmn-appro__item-txt {
  letter-spacing: 0.05em;
}
.cmn-appro.yomogi-about .cmn-appro__illust {
  max-width: max-content;
  position: absolute;
  width: 22%;
  z-index: -1;
  right: max(50% - 50vw, -280px);
  bottom: 0;
}

.yomogi-about__bg {
  background-color: #fcfcfc;
  padding-block: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  margin-bottom: clamp(4.5rem, 2.6rem + 5.09vw, 6.5rem);
}
.yomogi-about__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 35px clamp(5rem, -15rem + 19.53vw, 10rem);
}
@media screen and (min-width: 1024px) {
  .yomogi-about__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.yomogi-about__item-info {
  max-width: 590px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .yomogi-about__item-info {
    flex: 1;
  }
}
.yomogi-about__item-media {
  width: 75%;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .yomogi-about__item-media {
    width: 42%;
  }
}
.yomogi-about__guide {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 35px clamp(5rem, -15rem + 19.53vw, 10rem);
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: clamp(4rem, 2.1rem + 5.09vw, 6rem) clamp(2rem, 1rem + 2.54vw, 3rem);
  margin-top: clamp(4rem, 1.6rem + 6.36vw, 6.5rem);
}
@media screen and (min-width: 1024px) {
  .yomogi-about__guide {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.yomogi-about__guide-info {
  max-width: 590px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .yomogi-about__guide-info {
    flex: 1;
  }
}
.yomogi-about__guide-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .yomogi-about__guide-ttl {
    margin-inline: 0;
  }
}
.yomogi-about__guide-ttl::before {
  content: "";
  width: 31px;
  aspect-ratio: 31/51;
  background: url(/system_panel/uploads/images/icon__.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.yomogi-about__guide-txt {
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.yomogi-about__guide-txt.--br strong {
  font-weight: 400;
}
.yomogi-about__guide-txt.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .yomogi-about__guide-txt.--br strong br {
    display: block;
  }
}
.yomogi-about__guide-note {
  letter-spacing: 0.05em;
  font-weight: 500;
}
.yomogi-about__guide-media {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .yomogi-about__guide-media {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .yomogi-about__guide-media {
    width: 34%;
  }
}

@media screen and (min-width: 768px) {
  .cmn-flow.yomogi-flow .cmn-flow__item:nth-child(3) .cmn-flow__item-ttl {
    min-height: auto;
    display: block;
  }
}
.cmn-flow.yomogi-flow .cmn-flow__illust {
  max-width: max-content;
  position: absolute;
  width: 38%;
  z-index: -1;
  left: max(50% - 50vw, -280px);
  bottom: 0;
}
@media screen and (min-width: 1024px) {
  .cmn-flow.yomogi-flow .cmn-flow__illust {
    width: 44%;
  }
}

.cmn-voice.yomogi-voice .cmn-voice__box {
  max-width: 800px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding-top: clamp(3.5rem, 1.6rem + 5.09vw, 5.5rem);
  padding-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  margin-inline: auto;
  padding-inline: 15px;
}
.cmn-voice.yomogi-voice .cmn-voice__box-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #6d593a;
  padding-left: 24px;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.cmn-voice.yomogi-voice .cmn-voice__box-ttl::before {
  content: "";
  width: 18px;
  aspect-ratio: 1;
  background: url(/system_panel/uploads/images/icon_check01.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.cmn-voice.yomogi-voice .cmn-voice__box-txt {
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

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

.none {
  display: none !important;
}