@charset "UTF-8";
:root {
  --base_font: "Zen Kaku Gothic New", sans-serif;
  --sub_font: "Zen Old Mincho", serif;
  --sub_font02: "Sen", sans-serif;
  --mc: #506149;
  --sc: #828974;
  --fc: #333;
  --bc: #fff;
}
@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: 340px;
  width: 100%;
  border: solid 1px var(--mc);
  border-radius: 30px;
  text-align: center;
  margin-inline: auto;
  position: relative;
  transition: all 0.3s;
}
.cmn-btn__link::before {
  content: "";
  width: 26px;
  aspect-ratio: 26/11;
  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-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 3.75;
  color: var(--mc);
  transition: all 0.3s;
}
.cmn-btn__link:hover {
  background-color: var(--mc);
}
.cmn-btn__link:hover::before {
  background: url(/system_panel/uploads/images/icon_arrow03.png) no-repeat center center/contain;
}
.cmn-btn__link:hover .cmn-btn__link-st {
  color: #fff;
}
.cmn-btn.--left .cmn-btn__link {
  margin-left: 0;
}
.cmn-btn.--right .cmn-btn__link {
  margin-right: 0;
}
.cmn-btn.--bg-white .cmn-btn__link {
  background-color: rgba(255, 255, 255, 0.5);
}
.cmn-btn.--bg-white .cmn-btn__link:hover {
  background-color: var(--mc);
}

.cmn-btn02__link {
  display: inline-block;
  max-width: 160px;
  width: 100%;
  border: solid 1px var(--mc);
  border-radius: 20px;
  position: relative;
}
.cmn-btn02__link::before {
  content: "";
  width: 6px;
  aspect-ratio: 6/11;
  background: url(/system_panel/uploads/images/icon_arrow02.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.cmn-btn02__link-st {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2.4;
  color: var(--mc);
  text-align: center;
}

.cmn-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 clamp(1rem, 0rem + 2.54vw, 2rem);
}
.cmn-ttl.--column {
  flex-direction: column;
}
.cmn-ttl.--column02 {
  gap: 7px clamp(1rem, 0rem + 2.54vw, 2rem);
  flex-direction: column;
}
@media screen and (min-width: 480px) {
  .cmn-ttl.--column02 {
    gap: 0 clamp(1rem, 0rem + 2.54vw, 2rem);
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-ttl.--column02 {
    gap: 7px clamp(1rem, 0rem + 2.54vw, 2rem);
    flex-direction: column;
  }
}
@media screen and (min-width: 1380px) {
  .cmn-ttl.--column02 {
    gap: 0 clamp(1rem, 0rem + 2.54vw, 2rem);
    flex-direction: row;
  }
}
.cmn-ttl__main {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.3rem + 3.05vw, 3.6rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--mc);
}
.cmn-ttl__sub {
  font-family: var(--sub_font02);
  font-size: clamp(1.4rem, 1rem + 1.02vw, 1.8rem);
  letter-spacing: 0.05em;
  color: #666;
}
.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 .cmn-ttl__main, .cmn-ttl.--vertical .cmn-ttl__sub {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

.cmn-parallax {
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-parallax {
    height: min(600px, 50vw);
  }
}
.cmn-parallax__cont {
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_top-parallax01.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .cmn-parallax__cont {
    background-attachment: fixed;
  }
}

.reserve-btn {
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .reserve-btn {
    width: auto;
    top: 60%;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.reserve-btn__item {
  width: 100%;
  background-color: #506149;
  text-align: center;
}
.reserve-btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .reserve-btn__link {
    flex-direction: column;
    justify-content: flex-start;
    width: 90px;
    min-height: 240px;
    padding: 30px 15px;
  }
}
.reserve-btn__st {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .reserve-btn__st {
    font-size: 1.8rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.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;
}
.faq__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(1.5rem, 1rem + 1.27vw, 2rem);
  border-top: dashed 1px #9f8d73;
  padding: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.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%;
  cursor: pointer;
  position: relative;
}
.faq__item-q-txt {
  display: flex;
  align-items: center;
  padding-left: 40px;
  position: relative;
}
.faq__item-q-txt::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/17;
  background: url(/system_panel/uploads/images/icon_Q.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.faq__item-q-txt-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--mc);
}
.faq__item-a {
  width: 100%;
}
.faq__item-a-txt {
  display: flex;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  padding-left: 40px;
  margin: 0 auto;
  position: relative;
}
.faq__item-a-txt::before {
  content: "";
  width: 18px;
  aspect-ratio: 18/16;
  background: url(/system_panel/uploads/images/icon_A.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.faq__item-a-st {
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}

.sub-hd {
  position: relative;
}
.sub-hd__img {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sub-hd__img {
    height: 600px;
  }
}
.sub-hd__img.ojf::before {
  content: none;
}
.sub-hd__ttl {
  width: calc(100% - 30px);
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .sub-hd__ttl {
    top: 50%;
  }
}
.sub-hd__ttl-en {
  font-family: var(--sub_font);
  font-size: 4rem;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .sub-hd__ttl-en {
    font-size: 5rem;
  }
}
.sub-hd__ttl-jp {
  font-size: 1.8rem;
  letter-spacing: 0.025em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .sub-hd__ttl-jp {
    font-size: 2.1rem;
  }
}

.cmn-table__tr {
  border-top: solid 1px #ccc;
  padding: 10px 0;
}
.cmn-table__tr:last-of-type {
  border-bottom: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .cmn-table__tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 0;
  }
}
.cmn-table__th {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    width: 130px;
    padding: 0 15px 0 40px;
    margin-bottom: 0;
    position: relative;
  }
}
.cmn-table__th-st {
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cmn-table__td {
    flex: 1;
    padding: 0 40px 0 0;
  }
  .cmn-table__td-st {
    letter-spacing: 0.05em;
    line-height: 1.563;
  }
}
.cmn-table .cmn-table02__tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: solid 1px #ccc;
  padding: 10px 10px 10px 0;
}
@media screen and (min-width: 768px) {
  .cmn-table .cmn-table02__tr {
    padding: 10px 20px 10px 0;
  }
}
.cmn-table .cmn-table02__tr:first-of-type {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .cmn-table .cmn-table02__th {
    padding-left: 10px;
  }
}
.cmn-table .cmn-table02__th-st {
  letter-spacing: 0.05em;
}
.cmn-table .cmn-table02__th-st.--01 {
  position: relative;
  padding-left: 20px;
}
.cmn-table .cmn-table02__th-st.--01::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.cmn-table .cmn-table02__td {
  min-width: 90px;
  margin-left: auto;
}
.cmn-table .cmn-table02__td-st {
  letter-spacing: 0.05em;
}

.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;
}
.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 {
  text-align: right;
  margin-left: auto;
}
.cmn-table02__td-st {
  letter-spacing: 0.05em;
}

.subhd {
  position: relative;
  padding-top: 0;
}
.subhd__ttl {
  width: calc(100% - 30px);
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subhd__ttl.--02 {
  top: 55%;
}
.subhd__ttl-main {
  font-family: var(--sub_font);
  font-size: min(8vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  margin-bottom: clamp(2.5rem, 2rem + 1.27vw, 3rem);
}
.subhd__ttl-main.--02 {
  line-height: 1.6;
}
.subhd__ttl-sub {
  font-family: var(--sub_font02);
  font-size: clamp(2rem, 1.6rem + 1.02vw, 2.4rem);
  letter-spacing: 0.05em;
  text-align: center;
}
.subhd__ttl-sub02 {
  font-size: min(4vw, 2.4rem);
  letter-spacing: 0.05em;
  text-align: center;
}
.subhd__txt {
  font-size: min(3.5vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 2.22;
  text-align: center;
  padding-top: clamp(2rem, 0.1rem + 5.09vw, 4rem);
}
.subhd__txt.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .subhd__txt.--br {
    font-size: min(2.1vw, 1.8rem);
  }
  .subhd__txt.--br br {
    display: none;
  }
}
.subhd__img {
  width: 100%;
  max-height: 620px;
  height: 100vw;
}
@media screen and (min-width: 768px) {
  .subhd__img {
    height: 80vw;
  }
}
.subhd__img.ojf::before {
  display: none;
}

.breadcrumb-cnt {
  padding-top: 40px;
}
.breadcrumb-cnt__list {
  display: flex;
  gap: 25px;
}
.breadcrumb-cnt__item {
  position: relative;
}
.breadcrumb-cnt__item::before {
  content: ">";
  position: absolute;
  top: clamp(1.1rem, 0.9rem + 0.51vw, 1.3rem);
  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 {
  color: #4e6743;
  letter-spacing: 0.05em;
  /*&.--current {
  }*/
}

/* --- header ---*/
.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1;
  transition: all 0.4s;
  z-index: 1000;
}
.hd.fixed {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.hd-cnt {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding-block: 10px;
  padding-inline: 15px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .hd-cnt {
    padding-block: 20px;
    padding-inline: 30px;
  }
}
.gjs-dashed .hd-cnt {
  /*background-color: #ccc;*/
}
.hd-name {
  z-index: 1001;
  width: 80px;
}
@media screen and (min-width: 768px) {
  .hd-name {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .hd-name {
    width: auto;
  }
}
.hd-nav {
  position: fixed;
  top: 0;
  left: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding-block: 90px 50px;
  width: 100%;
  max-width: 460px;
  height: 100svh;
  background: rgba(255, 255, 255, 0.9019607843);
  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: 1200px) {
  .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: 1200px) {
  .hd-nav__list {
    flex-direction: column;
  }
}
.hd-nav .nav-list {
  display: block;
}
@media screen and (min-width: 1200px) {
  .hd-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 20px;
  }
}
.hd-nav .nav-list__item {
  padding: 0;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .hd-nav .nav-list__item.pc-none {
    display: none;
  }
}
.hd-nav .nav-list__link {
  position: relative;
  display: block;
  padding: 16px 0;
  transition: 0.4s;
}
@media screen and (min-width: 1200px) {
  .hd-nav .nav-list__link {
    padding: 0;
  }
}
.hd-nav .nav-list__link-st {
  display: block;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hd-nav__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 180px;
  border: solid 1px #333;
  border-radius: 25px;
  color: #333;
  aspect-ratio: 180/50;
}
@media screen and (min-width: 1200px) {
  .hd-nav__btn-link {
    width: min(14.0625vw, 18rem);
  }
}
.hd-nav__btn-icon {
  width: 21px;
  aspect-ratio: 21/15;
}
.hd-nav__btn-st {
  font-weight: 500;
  color: #333;
}
.hd-toggle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1002;
}
@media screen and (min-width: 768px) {
  .hd-toggle {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .hd-toggle {
    display: none;
  }
}
.hd-toggle__txt {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  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;
}
@media screen and (min-width: 768px) {
  .hd-toggle__inr {
    width: 30px;
    height: 20px;
  }
}
.hd-toggle__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
  transition: 0.35s ease-in-out;
}
.hd-toggle__line:nth-child(1) {
  top: 0;
}
.hd-toggle__line:nth-child(2) {
  top: 8px;
}
@media screen and (min-width: 768px) {
  .hd-toggle__line:nth-child(2) {
    top: 10px;
  }
}
.hd-toggle__line:nth-child(3) {
  position: relative;
  top: 16px;
}
@media screen and (min-width: 768px) {
  .hd-toggle__line:nth-child(3) {
    top: 20px;
  }
}
.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;
  border-top: solid 1px #ccc;
}
@media screen and (min-width: 1024px) {
  .cmn-cnt {
    flex-direction: row;
  }
}

.cmn-faq {
  padding-block: clamp(6rem, 5rem + 2.59vw, 10rem);
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-faq {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-faq {
    width: 50%;
  }
}
.cmn-faq__inr {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "cmn-faq__ttl" "cmn-faq__cnt" "cmn-faq__btn";
  gap: clamp(4rem, 3rem + 2.54vw, 5rem) 30px;
  max-width: 660px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cmn-faq__inr {
    grid-template-columns: 1fr 160px;
    grid-template-areas: "cmn-faq__ttl cmn-faq__btn" "cmn-faq__cnt cmn-faq__cnt";
  }
}
.cmn-faq__ttl {
  grid-area: cmn-faq__ttl;
}
.cmn-faq__ttl .cmn-ttl__main {
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .cmn-faq__ttl .cmn-ttl__main {
    font-size: min(3.2vw, 3.6rem);
  }
}
.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: #f2f2ec;
  padding-block: clamp(6rem, 5rem + 2.59vw, 10rem);
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .cmn-contact {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-contact {
    width: 50%;
  }
}
.cmn-contact__inr {
  max-width: 660px;
  width: 100%;
  margin-inline: auto;
}
.cmn-contact .cmn-ttl__main {
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .cmn-contact .cmn-ttl__main {
    font-size: min(3.2vw, 3.6rem);
  }
}
.cmn-contact__txt {
  font-size: min(4vw, 1.6rem);
  letter-spacing: 0.05em;
  margin-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
@media screen and (min-width: 768px) {
  .cmn-contact__txt {
    font-size: 1.8rem;
  }
}
.cmn-contact__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
  margin-top: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.cmn-contact__btn-item {
  max-width: 660px;
  width: 100%;
}
.cmn-contact__btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cmn-contact__btn-inr {
  display: flex;
  align-items: center;
  gap: 25px;
  width: clamp(27rem, 21.3rem + 15.27vw, 33rem);
}
.cmn-contact__btn-icon {
  width: clamp(4rem, 3rem + 2.54vw, 5rem);
  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.--web .cmn-contact__btn-link {
  background-color: var(--mc);
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-link {
  border: solid 2px var(--mc);
}
.cmn-contact__btn-item.--contact .cmn-contact__btn-txt {
  color: var(--mc);
}

.cmn-contact.news-contact .cmn-ttl__main {
  line-height: 1.66;
}

.ft-cont {
  background-color: #312c28;
  padding-block: 50px 100px;
}
@media screen and (min-width: 768px) {
  .ft-cont {
    padding-block: 50px 40px;
  }
}
.ft-cont__inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .ft-cont__inr {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1280px) {
  .ft-cont__inr {
    gap: 50px;
  }
}
.ft-cont__group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 768px) {
  .ft-cont__group {
    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;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .ft-cont__sns {
    padding-top: 10px;
  }
}
.ft-cont__data-item {
  display: flex;
  gap: 15px;
}
.ft-cont__data-label {
  min-width: 80px;
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__data-value {
  flex: 1;
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__menu {
  display: none;
}
@media screen and (min-width: 1024px) {
  .ft-cont__menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 30px;
  }
}
.ft-cont__menu-ttl {
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: solid 1px #fff;
}
.ft-cont__menu-ttl-st {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .ft-cont__menu-ttl-st {
    font-size: 1.8rem;
  }
}
.ft-cont__menu-nav-item + .ft-cont__menu-nav-item {
  margin-top: 5px;
}
.ft-cont__menu-nav-item-st {
  letter-spacing: 0.025em;
  color: #fff;
}
.ft-cont__copyright {
  text-align: right;
}
@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;
  color: #fff;
}

.top-fv {
  position: relative;
}
.top-fv__splide .splide__slide {
  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 {
  max-width: max-content;
  width: calc(100% - 30px);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-fv__cont-ttl {
  font-family: var(--sub_font);
  font-size: clamp(3rem, 1.8rem + 3.08vw, 5rem);
  letter-spacing: 0.05em;
}

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

.top-concept {
  padding-block: clamp(10rem, 7.5rem + 6.63vw, 16rem);
}
.top-concept__cont {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 65%;
  grid-template-areas: "top-concept__cont-head top-concept__cont-head" "top-concept__cont-info top-concept__cont-info" "top-concept__cont-media02 top-concept__cont-media01";
  gap: 40px 20px;
}
@media screen and (min-width: 1024px) {
  .top-concept__cont {
    grid-template-rows: auto auto 1fr;
    grid-template-columns: 1fr min(45%, 500px);
    grid-template-areas: "top-concept__cont-head top-concept__cont-media01" "top-concept__cont-media02 top-concept__cont-media01" "top-concept__cont-media02 top-concept__cont-info";
    gap: clamp(5rem, -3rem + 7.81vw, 7rem) clamp(5rem, -15rem + 19.53vw, 10rem);
  }
}
.top-concept__cont-head {
  grid-area: top-concept__cont-head;
}
.top-concept__cont-head-subttl {
  font-size: 3.6rem;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-head-subttl {
    font-size: min(4vw, 4.6rem);
  }
}
.top-concept__cont-ttl {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.top-concept__cont-catch {
  font-family: var(--sub_font);
  font-size: clamp(2rem, 1.4rem + 1.54vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-catch {
    font-size: clamp(2.6rem, 1rem + 1.56vw, 3rem);
  }
}
.top-concept__cont-lead {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}
.top-concept__cont-media01 {
  grid-area: top-concept__cont-media01;
}
.top-concept__cont-media01-ph {
  margin-right: -15px;
}
@media screen and (min-width: 768px) {
  .top-concept__cont-media01-ph {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__cont-media01-ph {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.top-concept__cont-media02 {
  grid-area: top-concept__cont-media02;
  padding-top: clamp(8rem, -1.8rem + 26.19vw, 25rem);
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-media02 {
    padding-top: 0;
  }
}
.top-concept__cont-media02-ph {
  text-align: center;
}
.top-concept__cont-info {
  grid-area: top-concept__cont-info;
}
.top-concept__cont-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
@media screen and (min-width: 1024px) {
  .top-concept__cont-btn .cmn-btn__link {
    margin-left: 0;
  }
}
.top-concept__logo {
  max-width: max-content;
  width: 26%;
  position: absolute;
  bottom: clamp(8.3rem, -1.9rem + 27.27vw, 26rem);
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-concept__logo {
    bottom: 0;
    left: max(50% - 50vw, -330px);
  }
}
.top-concept__icon {
  max-width: max-content;
  width: 20%;
  position: absolute;
  bottom: calc(clamp(8rem, 6.3rem + 4.42vw, 12rem) * -1);
  right: 25%;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .top-concept__icon {
    right: max(50% - 50vw, -120px);
  }
}

.top-concerns {
  background: url(/system_panel/uploads/images/bg_top-concerns01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 3.5rem + 6.63vw, 12rem);
}
.top-concerns__ttl {
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
  position: relative;
  z-index: 1;
}
.top-concerns__ttl-main {
  font-family: var(--sub_font);
  font-size: clamp(2.2rem, 1.4rem + 2.04vw, 3rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  position: relative;
}
.top-concerns__ttl-main span {
  font-size: clamp(3rem, 2rem + 2.54vw, 4rem);
  padding-inline: 10px;
}
.top-concerns__ttl-main::before {
  content: "";
  width: 71px;
  aspect-ratio: 71/87;
  background: url(/system_panel/uploads/images/icon_top-concerns01.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.top-concerns__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(2rem, -2rem + 3.91vw, 3rem);
}
@media screen and (min-width: 768px) {
  .top-concerns__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.top-concerns__item {
  max-width: 380px;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .top-concerns__item {
    width: calc((100% - clamp(2rem, -2rem + 3.91vw, 3rem)) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .top-concerns__item {
    width: calc((100% - clamp(2rem, -2rem + 3.91vw, 3rem) * 2) / 3);
  }
}
.top-concerns__info {
  width: calc(100% - 30px);
  background-color: rgba(159, 141, 115, 0.9);
  padding: clamp(2rem, 1.5rem + 1.27vw, 2.5rem) 10px;
  margin: -30px auto 0;
  position: relative;
}
.top-concerns__info-inr {
  max-width: 310px;
  width: 100%;
  margin-inline: auto;
}
.top-concerns__info-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  color: #fff;
  padding-left: 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-concerns__info-txt {
    font-size: clamp(1.8rem, 0.6rem + 1.17vw, 2.1rem);
  }
}
.top-concerns__info-txt:before {
  content: "";
  width: 30px;
  aspect-ratio: 30/28;
  background: url(/system_panel/uploads/images/icon_check01.png) no-repeat center center/contain;
  position: absolute;
  top: 12px;
  left: 0;
}

.top-color {
  padding-block: clamp(6rem, 2.7rem + 8.84vw, 14rem) clamp(8rem, 0.5rem + 19.89vw, 26rem);
}
.top-color__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(3rem, -25rem + 27.34vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-color__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-color__item + .top-color__item {
  margin-top: clamp(8rem, 3rem + 13.26vw, 20rem);
}
.top-color__info {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top-color__info {
    flex: 1;
  }
}
.top-color__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-color__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.2rem, 1.4rem + 2.04vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-color__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}
.top-color__btn {
  margin-top: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.top-color__caption {
  max-width: max-content;
  width: 60%;
  position: absolute;
  bottom: calc(clamp(6rem, 3.7rem + 6.16vw, 10rem) * -1);
  left: -15px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-color__caption {
    left: -40px;
  }
}
@media screen and (min-width: 1024px) {
  .top-color__caption {
    width: 85%;
  }
}
@media screen and (min-width: 1280px) {
  .top-color__caption {
    left: max((1200px - 100vw) / 2, -240px);
  }
}
.top-color__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .top-color__media {
    max-width: 600px;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .top-color__media-ph {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-color__media-ph {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.top-color__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
}
.top-color__illust.--01 {
  width: 20%;
  top: calc(clamp(10rem, 33.9rem + -63.61vw, -15rem) * -1);
  right: max(50% - 50vw, -120px);
}
@media screen and (min-width: 1024px) {
  .top-color__illust.--01 {
    top: -200px;
  }
}
.top-color__illust.--02 {
  width: 20%;
  right: 0;
  bottom: calc(clamp(8rem, 4rem + 10.79vw, 15rem) * -1);
}
@media screen and (min-width: 1024px) {
  .top-color__illust.--02 {
    right: auto;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top-color__illust.--03 {
  width: 30%;
  top: calc(clamp(2rem, -0.9rem + 7.63vw, 5rem) * -1);
  right: 0;
}
@media screen and (min-width: 1024px) {
  .top-color__illust.--03 {
    right: calc(50% + 50px);
  }
}
@media screen and (min-width: 1024px) {
  .top-color__item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .top-color__item:nth-of-type(2n) .top-color__caption {
    right: max((1200px - 100vw) / 2, -240px);
    left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .top-color__item:nth-of-type(2n) .top-color__media-ph {
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .top-color__item:nth-of-type(2n) .top-color__media-ph {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}

.top-salon {
  background: url(/system_panel/uploads/images/bg_top-shop01.jpg) no-repeat center center/cover;
  padding-block: clamp(6rem, 3.5rem + 6.63vw, 12rem);
}
.top-salon__ttl {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.top-salon__cnt {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .top-salon__cnt {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
.top-salon__info {
  max-width: 550px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top-salon__info {
    flex: 1;
    width: auto;
  }
}
.top-salon__catch {
  font-family: var(--sub_font);
  font-size: min(5.8vw, 2.2rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
@media screen and (min-width: 768px) {
  .top-salon__catch {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-salon__catch {
    font-size: min(2.8vw, 3rem);
  }
}
.top-salon__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.top-salon__box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
  background-color: #fff;
  border-radius: 10px;
  padding-block: clamp(2rem, 1.5rem + 1.27vw, 2.5rem);
  padding-inline: 15px 10px;
  margin-bottom: clamp(4rem, 3rem + 2.54vw, 5rem);
}
.top-salon__box-info {
  flex: 1;
}
.top-salon__box-logo {
  width: clamp(6rem, 4.6rem + 3.82vw, 7.5rem);
}
@media screen and (min-width: 1024px) {
  .top-salon__box-logo {
    width: clamp(6rem, 0rem + 5.86vw, 7.5rem);
  }
}
.top-salon__box-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .top-salon__box-txt {
    font-size: clamp(1.8rem, 0.6rem + 1.17vw, 2.1rem);
  }
}
@media screen and (min-width: 768px) {
  .top-salon__box-txt br {
    display: none;
  }
}
.top-salon__box-name {
  font-size: min(3.8vw, 1.6rem);
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .top-salon__btn .cmn-btn__link {
    margin-right: 0;
  }
}
.top-salon__media {
  max-width: 550px;
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .top-salon__media {
    width: 46%;
  }
}

.top-news {
  padding-block: clamp(6rem, 3.5rem + 6.63vw, 12rem);
}
.top-news__block {
  position: relative;
}
.top-news__cnt {
  max-width: 1000px;
  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-ttl-st {
  font-family: var(--sub_font);
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-news__cnt-ttl-st {
    font-size: 3.6rem;
  }
}
.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 #9f8d73;
  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 #9f8d73;
}
.top-news__cnt-item {
  display: flex;
  flex-wrap: wrap;
}
.top-news__cnt-item-date {
  color: var(--mc);
}
.top-news__cnt-item-cate {
  margin-left: 20px;
}
.top-news__cnt-item-cate-str {
  display: inline-block;
  min-width: 100px;
  background-color: var(--mc);
  border-radius: 12px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 25px;
  text-align: center;
  padding: 0 10px;
}
.top-news__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;
  }
}
.top-news__illust {
  max-width: max-content;
  width: 30%;
  position: absolute;
  bottom: calc(clamp(4rem, 0.2rem + 10.18vw, 8rem) * -1);
  left: max(50% - 50vw, -120px);
  z-index: -1;
}

.concept-about {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  padding-bottom: clamp(8rem, -0.6rem + 22.9vw, 17rem);
}
.concept-about__ttl {
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.concept-about__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-about__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .concept-about__info {
    flex: 1;
    max-width: 600px;
  }
}
.concept-about__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.concept-about__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.concept-about__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .concept-about__media {
    max-width: 730px;
    width: 45%;
  }
}
.concept-about__media-ph {
  margin-right: -40px;
}
@media screen and (min-width: 1280px) {
  .concept-about__media-ph {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.concept-about__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  left: max(50% - 50vw, -160px);
}
@media screen and (min-width: 1024px) {
  .concept-about__illust {
    bottom: -8px;
  }
}

.concept-com {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  padding-bottom: clamp(7rem, 1.3rem + 15.27vw, 13rem);
  position: relative;
}
.concept-com::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_concept-com-bg.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.concept-com__head {
  margin-bottom: clamp(5rem, 1.2rem + 10.18vw, 9rem);
}
.concept-com__ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.concept-com__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  text-align: center;
}
.concept-com__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 60px 20px;
}
@media screen and (min-width: 768px) {
  .concept-com__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.concept-com__item {
  max-width: 360px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding-top: clamp(5rem, 2.6rem + 6.36vw, 7.5rem);
  padding-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  padding-inline: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .concept-com__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .concept-com__item {
    width: calc((100% - 40px) / 3);
  }
}
.concept-com__item-inr {
  max-width: 310px;
  width: 100%;
  margin-inline: auto;
}
.concept-com__item-num {
  height: 72px;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .concept-com__item-num {
    height: 90px;
  }
}
.concept-com__item-icon {
  height: 105px;
  text-align: center;
  margin-bottom: 30px;
}
.concept-com__item-icon.--01 img {
  aspect-ratio: 113/105;
}
.concept-com__item-icon.--02 img {
  aspect-ratio: 109/105;
}
.concept-com__item-icon.--03 img {
  aspect-ratio: 106/103;
}
.concept-com__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 15px;
}
.concept-com__item-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}

.concept-stylist {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  padding-bottom: clamp(7rem, 1.3rem + 15.27vw, 13rem);
}
.concept-stylist__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.concept-stylist__ttl {
  text-align: center;
}
.concept-stylist__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .concept-stylist__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .concept-stylist__info {
    flex: 1;
    max-width: 600px;
  }
}
.concept-stylist__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.concept-stylist__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.concept-stylist__box {
  border: solid 1px #999;
  border-radius: 10px;
  padding: 25px 20px;
  margin-bottom: 25px;
}
.concept-stylist__box-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.714;
  margin-bottom: 10px;
}
.concept-stylist__box-name {
  text-align: right;
}
.concept-stylist__list02 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.concept-stylist__list02-item {
  background-color: #506149;
  padding: 5px 10px;
}
.concept-stylist__list02-item-txt {
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}
.concept-stylist__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .concept-stylist__media {
    max-width: 740px;
    width: 42%;
  }
}
@media screen and (min-width: 1024px) {
  .concept-stylist__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-stylist__media-ph {
    margin-left: max((1200px - 100vw) / 2, -240px);
  }
}
.concept-stylist__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  right: max(50% - 50vw, -160px);
}
@media screen and (min-width: 1024px) {
  .concept-stylist__illust {
    bottom: -8px;
  }
}

.first-lead {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  padding-bottom: clamp(8rem, -0.6rem + 22.9vw, 17rem);
}
.first-lead__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .first-lead__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .first-lead__info {
    flex: 1;
  }
}
.first-lead__catch {
  font-family: var(--sub_font);
  font-size: min(5.6vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .first-lead__catch {
    font-size: min(2.3vw, 3rem);
  }
}
.first-lead__catch.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .first-lead__catch.--br strong br {
    display: none;
  }
}
.first-lead__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.first-lead__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .first-lead__media {
    max-width: 930px;
    width: 54%;
  }
}
@media screen and (min-width: 1024px) {
  .first-lead__media-ph {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .first-lead__media-ph {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.first-lead__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  left: max(50% - 50vw, -130px);
}
@media screen and (min-width: 1024px) {
  .first-lead__illust {
    bottom: -8px;
  }
}

.cmn-concern {
  padding-top: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  padding-bottom: clamp(7rem, 1.3rem + 15.27vw, 13rem);
  position: relative;
}
.cmn-concern::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_first-concern-bg.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.cmn-concern__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.cmn-concern__ttl {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  text-align: center;
}
.cmn-concern__ttl.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-concern__ttl.--br br {
    display: none;
  }
}
.cmn-concern__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cmn-concern__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-items: stretch;
    max-width: 1120px;
    width: 100%;
  }
}
.cmn-concern__item {
  max-width: 360px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: clamp(3rem, 1.1rem + 5.09vw, 5rem) clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.cmn-concern__item-catch {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.428;
  padding-left: 40px;
  margin-bottom: 20px;
  position: relative;
}
.cmn-concern__item-catch::before {
  content: "";
  position: absolute;
  width: 23px;
  aspect-ratio: 23/21;
  background: url(/system_panel/uploads/images/icon_check02.png) no-repeat center center/contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cmn-concern__item-icon {
  height: 12px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .cmn-concern__item-icon {
    height: 15px;
  }
}
.cmn-concern__item-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
}

.first-csl {
  padding-block: clamp(6rem, -0.7rem + 17.81vw, 13rem);
}
.first-csl__head {
  margin-bottom: clamp(5rem, 1.2rem + 10.18vw, 9rem);
}
.first-csl__ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.first-csl__catch {
  font-family: var(--sub_font);
  font-size: min(6vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .first-csl__catch {
    font-size: 3rem;
  }
}
.first-csl__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 60px 20px;
}
@media screen and (min-width: 768px) {
  .first-csl__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.first-csl__item {
  max-width: 360px;
  width: 100%;
  border: solid 1px #ccc;
  border-radius: 20px;
  padding-top: clamp(5rem, 2.6rem + 6.36vw, 7.5rem);
  padding-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
  padding-inline: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .first-csl__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .first-csl__item {
    width: calc((100% - 40px) / 3);
  }
}
.first-csl__item-inr {
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
}
.first-csl__item-num {
  height: 72px;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .first-csl__item-num {
    height: 90px;
  }
}
.first-csl__item-icon {
  height: 105px;
  text-align: center;
  margin-bottom: 30px;
}
.first-csl__item-icon.--01 img {
  aspect-ratio: 113/106;
}
.first-csl__item-icon.--02 img {
  aspect-ratio: 117/100;
}
.first-csl__item-icon.--03 img {
  aspect-ratio: 86/99;
}
.first-csl__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 15px;
}
.first-csl__item-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}

.first-flow {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  padding-bottom: clamp(7rem, 1.3rem + 15.27vw, 13rem);
  position: relative;
}
.first-flow::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #e8e8de;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.first-flow__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.first-flow__ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.first-flow__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  text-align: center;
}
.first-flow__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px 30px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .first-flow__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 870px;
    width: 100%;
  }
}
.first-flow__item {
  max-width: 360px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding-top: 30px;
  padding-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
  padding-inline: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .first-flow__item {
    width: calc((100% - 60px) / 3);
    padding-inline: clamp(1.5rem, -3rem + 5.86vw, 3rem);
  }
}
.first-flow__item-icon {
  height: 90px;
  text-align: center;
  margin-bottom: 30px;
}
.first-flow__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .first-flow__item-ttl {
    font-size: min(2.4vw, 2.1rem);
  }
}
.first-flow__item-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}

.first-worry {
  padding-top: clamp(7rem, 1.3rem + 15.27vw, 13rem);
  padding-bottom: clamp(8rem, 1.3rem + 17.81vw, 15rem);
}
.first-worry__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) {
  .first-worry__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .first-worry__info {
    flex: 1;
  }
}
.first-worry__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.first-worry__ttl .cmn-ttl__main.--br strong {
  font-weight: 400;
}
.first-worry__ttl .cmn-ttl__main.--br br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .first-worry__ttl .cmn-ttl__main.--br br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .first-worry__ttl .cmn-ttl__main.--br br {
    display: none;
  }
}
.first-worry__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.first-worry__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .first-worry__media {
    max-width: 740px;
    width: 42%;
  }
}
@media screen and (min-width: 1024px) {
  .first-worry__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .first-worry__media-ph {
    margin-left: max((1200px - 100vw) / 2, -240px);
  }
}
.first-worry__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  right: max(50% - 50vw, -130px);
}
@media screen and (min-width: 1024px) {
  .first-worry__illust {
    bottom: -8px;
  }
}

.first-book {
  padding-block: clamp(6rem, -0.7rem + 17.81vw, 13rem);
  position: relative;
}
.first-book::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_first-book-bg.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.first-book__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.first-book__ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.first-book__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  text-align: center;
}
.first-book__catch.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .first-book__catch.--br br {
    display: none;
  }
}
.first-book__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .first-book__list {
    gap: 20px;
  }
}
.first-book__item {
  max-width: 680px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding-inline: clamp(1.5rem, 1rem + 1.27vw, 2rem);
  padding-block: 20px;
}
.first-book__item-st {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  line-height: 1.428;
  padding-left: 45px;
  position: relative;
}
.first-book__item-st::before {
  content: "";
  position: absolute;
  width: 23px;
  aspect-ratio: 23/21;
  background: url(/system_panel/uploads/images/icon_check02.png) no-repeat center center/contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.gray-concept {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  padding-bottom: clamp(8rem, -0.6rem + 22.9vw, 17rem);
}
.gray-concept__list {
  margin-bottom: clamp(6rem, 0.8rem + 13.99vw, 11.5rem);
}
.gray-concept__list:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .gray-concept__list:nth-child(even of .gray-concept__list) .gray-concept__item {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .gray-concept__list:nth-child(even of .gray-concept__list) .gray-concept__media-ph {
    margin-right: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .gray-concept__list:nth-child(even of .gray-concept__list) .gray-concept__media-ph {
    margin-right: 0;
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}
.gray-concept__list:nth-child(even of .gray-concept__list) .gray-concept__illust {
  left: auto;
  right: max(50% - 50vw, -130px);
}
.gray-concept__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, -10rem + 15.63vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .gray-concept__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .gray-concept__info {
    flex: 1;
  }
}
.gray-concept__ttl {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.gray-concept__ttl .cmn-ttl__main.--br strong {
  font-weight: 400;
}
.gray-concept__ttl .cmn-ttl__main.--br br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .gray-concept__ttl .cmn-ttl__main.--br br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .gray-concept__ttl .cmn-ttl__main.--br br {
    display: none;
  }
}
.gray-concept__catch {
  font-family: var(--sub_font);
  font-size: min(5.6vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .gray-concept__catch {
    font-size: min(2.3vw, 3rem);
  }
}
.gray-concept__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.gray-concept__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .gray-concept__media {
    max-width: 930px;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .gray-concept__media-ph {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .gray-concept__media-ph {
    margin-right: max((1200px - 100vw) / 2, -330px);
  }
}
.gray-concept__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  left: max(50% - 50vw, -130px);
}
@media screen and (min-width: 1024px) {
  .gray-concept__illust {
    bottom: -8px;
  }
}
.gray-concept__item:nth-child(even) .gray-concept__illust {
  left: auto;
  right: max(50% - 50vw, -130px);
}

.gray-approach {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  padding-bottom: clamp(7rem, 1.3rem + 15.27vw, 13rem);
  position: relative;
}
.gray-approach::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #e8e8de;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
.gray-approach__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.gray-approach__ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.gray-approach__catch {
  font-family: var(--sub_font);
  font-size: min(6vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .gray-approach__catch {
    font-size: min(3.6vw, 3rem);
  }
}
.gray-approach__catch.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .gray-approach__catch.--br br {
    display: none;
  }
}
.gray-approach__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .gray-approach__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 805px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .gray-approach__list {
    max-width: 1200px;
  }
}
.gray-approach__item {
  max-width: 395px;
  width: 100%;
  border-bottom: solid 1px #fff;
  padding-inline: 15px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.gray-approach__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .gray-approach__item {
    width: 50%;
    padding-inline: clamp(1.5rem, -1.5rem + 3.91vw, 2.5rem);
    padding-bottom: 70px;
    border-bottom: none;
  }
  .gray-approach__item:nth-child(odd) {
    border-right: solid 1px #fff;
  }
  .gray-approach__item:last-of-type {
    border-right: none;
  }
}
@media screen and (min-width: 1024px) {
  .gray-approach__item {
    width: 33.3333333333%;
    border-right: solid 1px #fff;
    margin-bottom: 0px;
  }
  .gray-approach__item:nth-child(3n), .gray-approach__item:last-of-type {
    border-right: none;
  }
}
.gray-approach__item-icon {
  height: 240px;
  text-align: center;
  margin-bottom: 30px;
}
.gray-approach__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
}
.gray-approach__item-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}

.gray-care {
  padding-top: clamp(6rem, -1.2rem + 19.08vw, 13.5rem);
  padding-bottom: clamp(7rem, 0.3rem + 17.81vw, 14rem);
}
.gray-care__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, -10rem + 15.63vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .gray-care__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .gray-care__info {
    flex: 1;
    max-width: 600px;
  }
}
.gray-care__ttl {
  margin-bottom: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}
.gray-care__catch {
  font-family: var(--sub_font);
  font-size: min(5.6vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-bottom: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}
@media screen and (min-width: 1024px) {
  .gray-care__catch {
    font-size: min(2.3vw, 3rem);
  }
}
.gray-care__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.gray-care__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .gray-care__media {
    max-width: 740px;
    width: 42%;
  }
}
@media screen and (min-width: 1024px) {
  .gray-care__media-ph {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .gray-care__media-ph {
    margin-right: max((1200px - 100vw) / 2, -220px);
  }
}
.gray-care__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  left: max(50% - 50vw, -130px);
}
@media screen and (min-width: 1024px) {
  .gray-care__illust {
    bottom: -110px;
  }
}

.contact-reserve {
  padding-top: clamp(4rem, 1.1rem + 7.63vw, 7rem);
  padding-bottom: clamp(6rem, -0.7rem + 17.81vw, 13rem);
  position: relative;
}
.contact-reserve__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.contact-reserve__ttl {
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.contact-reserve__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.3rem + 3.05vw, 3.6rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.contact-reserve__txt {
  font-size: clamp(1.8rem, 1.2rem + 1.53vw, 2.4rem);
  letter-spacing: 0.05em;
  text-align: center;
}
.contact-reserve__txt.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .contact-reserve__txt.--br strong br {
    display: none;
  }
}
.contact-reserve__txt.--small {
  font-size: 1.6rem;
}
.contact-reserve__item {
  max-width: 900px;
  width: 100%;
  border: solid 1px #506149;
  border-radius: 20px;
  padding: clamp(4rem, 2.1rem + 5.09vw, 6rem) 15px clamp(5rem, 3.1rem + 5.09vw, 7rem);
  margin: 0 auto;
}
.contact-reserve__item-ttl {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 2rem + 1.02vw, 2.8rem);
  letter-spacing: 0.05em;
  color: #506149;
  text-align: center;
  margin-bottom: 25px;
}
.contact-reserve__item-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 25px;
}
.contact-reserve__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  left: 0;
}
@media screen and (min-width: 1024px) {
  .contact-reserve__illust {
    bottom: -75px;
  }
}

.contact-mail {
  padding-block: clamp(6rem, 0.3rem + 15.27vw, 12rem);
  position: relative;
}
.contact-mail::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_contact-bg01.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.contact-mail__cnt {
  margin-bottom: clamp(5rem, 1.2rem + 10.18vw, 9rem);
}
.contact-mail__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.contact-mail__ttl {
  text-align: center;
  margin-bottom: clamp(2rem, 1rem + 2.54vw, 3rem);
}
.contact-mail__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.3rem + 3.05vw, 3.6rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  text-align: center;
  margin-bottom: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}
.contact-mail__txt {
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.contact-mail__txt.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-mail__txt.--br strong br {
    display: none;
  }
}
.contact-mail__note {
  font-size: min(4vw, 1.8rem);
  letter-spacing: 0.05em;
  text-align: center;
}
.contact-mail__note.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-mail__note.--br strong br {
    display: none;
  }
}

.contact-privacy__cnt {
  margin-bottom: clamp(5rem, 1.2rem + 10.18vw, 9rem);
}
.contact-privacy__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.contact-privacy__ttl {
  text-align: center;
}

.contact-faq {
  padding-top: clamp(6rem, 0.8rem + 13.99vw, 11.5rem);
  padding-bottom: clamp(6rem, -0.7rem + 17.81vw, 13rem);
}
.contact-faq__cnt {
  margin-bottom: clamp(5rem, 1.2rem + 10.18vw, 9rem);
}
.contact-faq__head {
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
.contact-faq__ttl {
  text-align: center;
}
.contact-faq__item {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
  position: relative;
}
.contact-faq__item:last-of-type {
  margin-bottom: 0;
}
.contact-faq__item-box .contact-faq__item-info:last-of-type {
  border-bottom: dashed 1px #9f8d73;
}
.contact-faq__item-ttl {
  margin-bottom: clamp(1.5rem, 1rem + 1.27vw, 2rem);
}
.contact-faq__item-ttl-st {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.2rem + 1.53vw, 2.4rem);
  letter-spacing: 0.05em;
  color: #506149;
}
.contact-faq__item-info {
  border-top: dashed 1px #9f8d73;
  padding-block: clamp(2rem, 1rem + 2.54vw, 3rem);
  padding-inline: clamp(2rem, 0.6rem + 3.85vw, 4.5rem);
}
.contact-faq__item-info-inr {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}
.contact-faq__item-q {
  width: 100%;
}
.contact-faq__item-q-txt {
  display: flex;
  align-items: center;
  padding-left: 40px;
  position: relative;
}
.contact-faq__item-q-txt::before {
  content: "";
  width: 21px;
  aspect-ratio: 21/19;
  background: url(/system_panel/uploads/images/icon_Q.png) no-repeat center center/contain;
  position: absolute;
  top: 8px;
  left: 0;
}
.contact-faq__item-q-txt-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.025em;
  font-weight: 500;
  color: #506149;
}
.contact-faq__item-a {
  width: 100%;
}
.contact-faq__item-a-txt {
  display: flex;
  align-items: center;
  padding-left: 40px;
  position: relative;
}
.contact-faq__item-a-txt::before {
  content: "";
  width: 19px;
  aspect-ratio: 19/15;
  background: url(/system_panel/uploads/images/icon_A.png) no-repeat center center/contain;
  position: absolute;
  top: 10px;
  left: 0;
}
.contact-faq__item-a-txt-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.025em;
}
.contact-faq__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
}
.contact-faq__illust.--01 {
  top: calc(clamp(10rem, 33.9rem + -63.61vw, -15rem) * -1);
  right: max(50% - 50vw, -160px);
}
@media screen and (min-width: 1024px) {
  .contact-faq__illust.--01 {
    top: -150px;
  }
}
.contact-faq__illust.--02 {
  top: calc(clamp(10rem, 33.9rem + -63.61vw, -15rem) * -1);
  left: max(50% - 50vw, -160px);
}
@media screen and (min-width: 1024px) {
  .contact-faq__illust.--02 {
    top: -35px;
  }
}

.organic-lead {
  padding-top: clamp(4rem, 0.7rem + 8.91vw, 7.5rem);
}
.organic-lead__ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.organic-lead__catch {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.3rem + 3.05vw, 3.6rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .organic-lead__catch {
    font-size: min(4vw, 3.6rem);
  }
}
.organic-lead__catch.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .organic-lead__catch.--br br {
    display: none;
  }
}
.organic-lead__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 2.22;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .organic-lead__txt {
    text-align: center;
  }
}
.organic-lead__txt.--br strong {
  font-weight: 400;
}
.organic-lead__txt.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .organic-lead__txt.--br strong br {
    display: block;
  }
}

.organic-villa {
  padding-block: clamp(7rem, 0.3rem + 17.81vw, 14rem);
}
.organic-villa__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, -10rem + 15.63vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .organic-villa__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .organic-villa__info {
    flex: 1;
  }
}
.organic-villa__ttl {
  margin-bottom: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}
@media screen and (min-width: 1024px) {
  .organic-villa__ttl .cmn-ttl__main {
    font-size: min(3.4vw, 3.6rem);
  }
}
.organic-villa__ttl .cmn-ttl__main.--br strong {
  font-weight: 400;
}
.organic-villa__ttl .cmn-ttl__main.--br br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .organic-villa__ttl .cmn-ttl__main.--br br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .organic-villa__ttl .cmn-ttl__main.--br br {
    display: none;
  }
}
.organic-villa__catch {
  font-family: var(--sub_font);
  font-size: min(5.6vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .organic-villa__catch {
    font-size: min(2.3vw, 3rem);
  }
}
.organic-villa__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
.organic-villa__list02 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
}
.organic-villa__list02-item {
  background-color: #506149;
  padding: 5px 15px;
}
.organic-villa__list02-item-txt {
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}
.organic-villa__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .organic-villa__media {
    max-width: 1160px;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .organic-villa__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .organic-villa__media-ph {
    margin-left: max((1200px - 100vw) / 2, -330px);
  }
}
.organic-villa__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  right: max(50% - 50vw, -110px);
}
@media screen and (min-width: 1024px) {
  .organic-villa__illust {
    bottom: -100px;
  }
}

.cmn-concern02 {
  padding-top: clamp(6rem, 2.2rem + 10.18vw, 10rem);
  padding-bottom: clamp(7rem, 3.2rem + 10.18vw, 11rem);
  position: relative;
}
.cmn-concern02::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_first-concern-bg.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -3;
}
.cmn-concern02__head {
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.cmn-concern02__ttl {
  font-family: var(--sub_font);
  font-size: clamp(2.4rem, 1.8rem + 1.53vw, 3rem);
  letter-spacing: 0.05em;
  text-align: center;
}
.cmn-concern02__ttl.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .cmn-concern02__ttl.--br br {
    display: none;
  }
}
.cmn-concern02__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px 35px;
  margin-inline: auto;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
@media screen and (min-width: 768px) {
  .cmn-concern02__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.cmn-concern02__item {
  max-width: 580px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .cmn-concern02__item {
    width: calc((100% - 35px) / 2);
  }
}
.cmn-concern02__item-txt {
  font-family: var(--sub_font);
  font-size: clamp(1.8rem, 1.5rem + 0.76vw, 2.1rem);
  letter-spacing: 0.05em;
  padding-left: 40px;
  position: relative;
}
.cmn-concern02__item-txt::before {
  content: "";
  position: absolute;
  width: 23px;
  aspect-ratio: 23/21;
  background: url(/system_panel/uploads/images/icon_check02.png) no-repeat center center/contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cmn-concern02__note {
  font-family: var(--sub_font);
  font-size: min(4.3vw, 2.4rem);
  letter-spacing: 0.05em;
  text-align: center;
}
.cmn-concern02__note.--br strong {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .cmn-concern02__note.--br strong br {
    display: none;
  }
}

.organic-why {
  padding-top: clamp(6rem, -1.2rem + 19.08vw, 13.5rem);
  padding-bottom: clamp(7rem, 1.3rem + 15.27vw, 13rem);
}
.organic-why__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, -10rem + 15.63vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .organic-why__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .organic-why__info {
    flex: 1;
    max-width: 600px;
  }
}
.organic-why__ttl {
  margin-bottom: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}
.organic-why__catch {
  font-family: var(--sub_font);
  font-size: min(5.6vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .organic-why__catch {
    font-size: min(2.3vw, 3rem);
  }
}
.organic-why__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.organic-why__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .organic-why__media {
    max-width: 740px;
    width: 42%;
  }
}
@media screen and (min-width: 1024px) {
  .organic-why__media-ph {
    margin-right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .organic-why__media-ph {
    margin-right: max((1200px - 100vw) / 2, -240px);
  }
}
.organic-why__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  left: max(50% - 50vw, -130px);
}
@media screen and (min-width: 1024px) {
  .organic-why__illust {
    bottom: -110px;
  }
}

.organic-care {
  padding-top: clamp(6rem, -1.2rem + 19.08vw, 13.5rem);
  margin-bottom: clamp(6rem, 0.8rem + 13.99vw, 11.5rem);
}
.organic-care__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px clamp(6rem, -10rem + 15.63vw, 10rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .organic-care__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .organic-care__info {
    flex: 1;
    max-width: 600px;
  }
}
.organic-care__ttl {
  margin-bottom: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}
.organic-care__catch {
  font-family: var(--sub_font);
  font-size: min(5.6vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 1024px) {
  .organic-care__catch {
    font-size: min(2.3vw, 3rem);
  }
}
.organic-care__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.organic-care__media {
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .organic-care__media {
    max-width: 740px;
    width: 42%;
  }
}
@media screen and (min-width: 1024px) {
  .organic-care__media-ph {
    margin-left: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .organic-care__media-ph {
    margin-left: max((1200px - 100vw) / 2, -240px);
  }
}
.organic-care__illust {
  max-width: max-content;
  position: absolute;
  z-index: -1;
  width: 30%;
  bottom: calc(clamp(5rem, 3.3rem + 4.62vw, 8rem) * -1);
  right: max(50% - 50vw, -130px);
}
@media screen and (min-width: 1024px) {
  .organic-care__illust {
    bottom: -110px;
  }
}

.organic-concerns {
  padding-bottom: clamp(5rem, 1.2rem + 10.18vw, 9rem);
  position: relative;
}
.organic-concerns__head {
  margin-bottom: clamp(4rem, 1.1rem + 7.63vw, 7rem);
}
.organic-concerns__ttl {
  text-align: center;
  margin-bottom: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}
.organic-concerns__ttl .cmn-ttl__main {
  margin-bottom: 10px;
}
.organic-concerns__txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .organic-concerns__txt {
    text-align: center;
  }
}
.organic-concerns__txt.--br strong {
  font-weight: 400;
}
.organic-concerns__txt.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .organic-concerns__txt.--br strong br {
    display: block;
  }
}
.organic-concerns__item {
  max-width: 900px;
  width: 100%;
  border: solid 1px #506149;
  border-radius: 20px;
  padding: clamp(4rem, 2.1rem + 5.09vw, 6rem) 15px clamp(4.5rem, 2.1rem + 6.36vw, 7rem);
  margin: 0 auto;
}
.organic-concerns__item-txt {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  text-align: left;
  margin-bottom: clamp(3rem, 2rem + 2.54vw, 4rem);
}
@media screen and (min-width: 768px) {
  .organic-concerns__item-txt {
    text-align: center;
  }
}
.organic-concerns__item-txt.--br strong {
  font-weight: 400;
}
.organic-concerns__item-txt.--br strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .organic-concerns__item-txt.--br strong br {
    display: block;
  }
}

.organic-flow {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem);
  padding-bottom: clamp(7rem, 1.3rem + 15.27vw, 13rem);
  position: relative;
}
.organic-flow::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/system_panel/uploads/images/img_contact-bg01.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

.cmn-price {
  padding-block: clamp(7rem, 1.3rem + 15.27vw, 13rem);
}
.cmn-price__cnt {
  background-color: #e8e8de;
  padding-block: clamp(4rem, 0.7rem + 8.91vw, 7.5rem);
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .cmn-price__cnt {
    padding-inline: 15px;
  }
}
.cmn-price__ttl {
  font-family: var(--sub_font);
  font-size: min(6vw, 3rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: clamp(4rem, 2.1rem + 5.09vw, 6rem);
}
.cmn-price__table {
  max-width: 790px;
  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;
}
.cmn-price__table-th {
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .cmn-price__table-th {
    flex: 1;
  }
}
.cmn-price__table-th-st {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
}
.cmn-price__table-th-st.--small {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #828974;
}
.cmn-price__table-td {
  min-width: 80px;
  margin-left: auto;
  display: flex;
  align-items: flex-end;
}
.cmn-price__table-td-st {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cmn-price__table-td-st {
    font-size: 1.6rem;
  }
}
.cmn-price__note {
  font-size: clamp(1.6rem, 1.4rem + 0.51vw, 1.8rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: clamp(3rem, 1.6rem + 3.82vw, 4.5rem);
}

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