@charset "UTF-8";
/* =====================================================
  0.0 - Foundation
===================================================== */
/*
index
-----------------------------------------------------*/
/*
i-functions
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
  Base
-----------------------------------------------------*/
*,
:before,
:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-family: "Noto Sans JP", serif;
  background: #F8F5EF;
  width: 100vw;
}
html.mobile {
  overflow-x: hidden;
}

body {
  overflow-x: hidden; /* 横スクロールを防止 */
  width: 100%;
  max-width: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-optical-sizing: auto;
  font-display: swap;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  background: #F8F5EF;
  color: #6A5246;
  position: relative;
  margin: 0;
  padding: 0;
  padding-top: 125px;
}

.-overflow {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

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

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:active,
  a:hover {
    fill: #934849;
  }
}

ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  p {
    line-height: 2;
  }
}
p a {
  text-decoration: underline !important;
  color: #934849;
}

p + p {
  margin-top: 2rem;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

img {
  width: 100%;
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
  display: block;
}
img.-center {
  margin: auto;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
  color: #6A5246 !important;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.-center {
  text-align: center;
}

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

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

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 #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

em {
  font-weight: normal;
}

/* =====================================================
  1.0 - inc
===================================================== */
/* =====================================================
  2.0 - Layout
===================================================== */
/*
 container
-----------------------------------------------------*/
.l-container {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.l-container--primary {
  margin-left: auto;
  margin-right: auto;
  width: 86vw;
}
@media screen and (min-width: 960px) {
  .l-container--primary {
    max-width: 100%;
    padding: 0 48px;
    width: 100%;
    max-width: 1096px;
  }
}
.l-container--primary.-container {
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 960px) {
  .l-container--primary.-container {
    background: none;
    max-width: 100%;
    padding: 0 48px;
    width: 100%;
    max-width: 1096px;
  }
}
.l-container--primary.-container2 {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .l-container--primary.-container2 {
    background: none;
    max-width: 100%;
    padding: 0 48px;
    width: 100%;
    max-width: 1096px;
  }
}
.l-container--primary.-container3 {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .l-container--primary.-container3 {
    max-width: 100%;
    padding: 0 48px;
    width: 100%;
    max-width: 896px;
  }
}
.l-container--large {
  margin-left: auto;
  margin-right: auto;
  width: 86vw;
}
@media screen and (min-width: 960px) {
  .l-container--large {
    max-width: 100%;
    padding: 0 48px;
    width: 100%;
    max-width: 1344px;
  }
}
@media screen and (min-width: 1080px) {
  .l-container--large .-L {
    padding-left: 9.78%;
  }
}
.l-container--large .-R.-homeMethod {
  display: none;
}
@media screen and (min-width: 1080px) {
  .l-container--large .-R.-homeMethod {
    display: block;
  }
}

/*
contents
-----------------------------------------------------*/
/*
footer
-----------------------------------------------------*/
.l-footer {
  margin-top: clamp(180px, 1.53vw + 175.1px, 200px);
  padding-bottom: 2rem;
}
.l-footer--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem 0;
  border-bottom: 1px solid #BBB0AB;
  padding: 0 0 100px;
}
.l-footer--nav .-L {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer--nav .-L {
    width: 50%;
  }
}
.l-footer--nav .-L .-logo {
  display: block;
  aspect-ratio: 289/102;
  width: 280px;
  width: clamp(15rem, 25.52vw + 2.75rem, 18.0625rem);
  height: auto;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 960px) {
  .l-footer--nav .-L .-logo {
    width: 289px;
  }
}
.l-footer--nav .-R {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-footer--nav .-R {
    width: 50%;
  }
}
.l-footer--nav_dl {
  width: 100%;
}
@media screen and (min-width: 520px) {
  .l-footer--nav_dl {
    width: 48%;
  }
}
@media screen and (min-width: 520px) {
  .l-footer--nav_dl.-noFlex {
    display: block;
  }
}
.l-footer--nav_dl.-noFlex ul {
  margin-top: 0.4rem;
  width: 100%;
}
@media screen and (min-width: 520px) {
  .l-footer--nav_dl.-noFlex ul {
    margin-top: 1.2rem;
    width: auto;
  }
}
.l-footer--nav_dl + .l-footer--nav_dl {
  width: 100%;
}
@media screen and (min-width: 520px) {
  .l-footer--nav_dl + .l-footer--nav_dl {
    width: 48%;
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-footer--nav_dl + .l-footer--nav_dl {
    width: 40%;
  }
}
.l-footer--nav_dl dl + ul {
  margin-top: 1.5rem;
}
@media screen and (min-width: 520px) {
  .l-footer--nav_dl dl + ul {
    margin-top: 0;
  }
}
.l-footer-copyright {
  margin-top: clamp(24px, 0.61vw + 22.1px, 32px);
  text-align: center;
  font-size: 10px;
  font-size: clamp(0.625rem, 0.15vw + 0.6rem, 0.75rem);
}

/*
 header
-----------------------------------------------------*/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  padding: 0 6%;
  height: 85px;
}
@media screen and (min-width: 1080px) {
  .l-header {
    padding: 0 48px;
    height: 125px;
    left: 0px;
  }
}
.l-header-wrapper {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header-logoA {
  display: block;
  aspect-ratio: 188/55;
  width: 188px;
  width: clamp(9.125rem, 5.53vw + 8.01875rem, 11.75rem);
  height: auto;
}
.l-header.-fixed {
  position: fixed;
  top: -250px;
  left: 0;
  z-index: 9999;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  visibility: hidden;
  background: #F8F5EF;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 245, 239)), color-stop(45%, rgb(248, 245, 239)), to(rgba(248, 245, 239, 0)));
  background: linear-gradient(rgb(248, 245, 239), rgb(248, 245, 239) 45%, rgba(248, 245, 239, 0));
  height: 100px;
}
.l-header.-fixed .l-header-logo a {
  width: 146px;
  width: clamp(9.125rem, 0vw + 9.125rem, 9.125rem);
  height: auto;
  margin-top: -10px;
}
.l-header.-fixed.-scroll {
  top: 0;
  visibility: visible;
}

/*
main
-----------------------------------------------------*/
.l-main + .c-cta {
  margin-top: clamp(156px, 5.95vw + 137px, 234px);
}

#home .l-main {
  margin-top: clamp(64px, 12.11vw + 25.2px, 156px);
}

/*
spacer
-----------------------------------------------------*/
/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
breadcrumb
-----------------------------------------------------*/
.c-breadcrumb {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
  color: #BBB0AB;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 12px;
}
@media screen and (min-width: 1080px) {
  .c-breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 5px;
  }
}
.c-breadcrumb ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
}
.c-breadcrumb ul li {
  font-size: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-breadcrumb ul li a {
  color: #6A5246;
}
.c-breadcrumb ul li + li:before {
  content: "";
  background: url(../img/common/icon_breadcrumb.svg) no-repeat 0 0/contain;
  width: 5px;
  height: 9px;
  display: block;
  font-size: 10px;
  position: absolute;
  top: 44%;
  left: -0.7rem;
  margin-top: -1px;
}

.l-header.-open .c-breadcrumb {
  visibility: hidden;
}

/*
button
-----------------------------------------------------*/
.-btn.-radius {
  border: 1px solid #BBB0AB;
  border-radius: 9999px;
  height: 70px;
  width: 100%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-btn.-radius.-spaceL {
  margin-top: clamp(4rem, 3.51vw + 3.3rem, 6.875rem);
}
.-btn.-radius.-spaceM {
  margin-top: clamp(2rem, 1.68vw + 1.6625rem, 3.375rem);
}
.-btn.-radius.-spaceS {
  margin-top: clamp(1.25rem, 0.92vw + 1.0625rem, 2rem);
}
.-btn.-radius.-spaceSS {
  margin-top: clamp(1rem, 0.61vw + 0.88125rem, 1.5rem);
  margin-bottom: clamp(1rem, 0.61vw + 0.88125rem, 1.5rem);
}
.-btn.-radius span {
  position: relative;
  padding-right: 2rem;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
}
.-btn.-radius span i {
  position: absolute;
  right: 0rem;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  background-color: #6A5246;
  background-image: url(../img/common/icon_arrowW.svg);
  background-repeat: no-repeat;
  background-position: 60% 50%;
  background-size: 6px 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-btn.-radius span i.-blank {
  background-color: unset !important;
  border-radius: unset;
  background-image: url(../img/common/icon_blank.svg);
  background-size: 12px;
  background-position: 55% 50%;
}
.-btn.-radius span i.-rotate {
  background-image: url(../img/common/icon_arrowW_down.svg);
  background-size: 8px 6px;
  background-position: 50% 55%;
}
@media (hover: hover) and (pointer: fine) {
  .-btn.-radius:hover {
    border: 1px solid #934849;
    background: #fff;
    color: #934849;
  }
  .-btn.-radius:hover i {
    background-color: #934849;
  }
}
.-btn.-more {
  text-align: center;
  margin-top: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-btn.-more span {
  position: relative;
  text-align: center;
  padding-right: 2rem;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
}
.-btn.-more span i {
  position: absolute;
  right: 0rem;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  background-color: #6A5246;
  background-image: url(../img/common/icon_arrowW.svg);
  background-repeat: no-repeat;
  background-position: 60% 50%;
  background-size: 6px 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-btn.-more.-down span i {
  background-image: url(../img/common/icon_arrowW_down.svg);
  background-position: 51% 56%;
  background-size: 8px 6px;
}
.-btn.-map {
  font-size: clamp(0.75rem, 0.45vw + 0.65625rem, 0.875rem);
  color: #fff;
  line-height: 1;
  background: #934849;
  border: 1px solid #934849;
  padding: 0.05rem 0.7rem 0.15rem 0.6rem;
  border-radius: 0.25rem;
  margin: 0 0 0 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .-btn.-map {
    font-size: clamp(0.75rem, 0.23vw + 0.64375rem, 0.875rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .-btn.-map {
    cursor: pointer;
  }
}
@media (hover: hover) and (pointer: fine) {
  .-btn.-map:hover {
    background: #fff;
    color: #934849;
  }
}
.-btn.-submit {
  background: none;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  color: #6A5246;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  background-image: url(../img/common/icon_arw.svg);
  background-repeat: no-repeat;
  background-position: calc(50% + 2.5rem) 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-size: 22px !important;
}
@media (hover: hover) and (pointer: fine) {
  .-btn.-submit:hover {
    background-color: #fff;
    background-image: url(../img/common/icon_arw_on.svg);
    background-repeat: no-repeat;
    background-position: calc(50% + 2.5rem) 50%;
    background-size: 22px !important;
    cursor: pointer;
  }
}

.-floating_pc {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 112px;
  width: clamp(7rem, 4.18vw + 4.99375rem, 9.25rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #934849;
  position: fixed;
  right: 2dvw;
  bottom: 2.5dvh;
  z-index: 9999999;
}
@media screen and (min-width: 768px) {
  .-floating_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.-floating_pc span {
  font-size: 12px;
  font-size: clamp(0.75rem, 0.23vw + 0.64375rem, 0.875rem);
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
  background: url(../img/common/icon_arrowW.svg) no-repeat 50% 100%/8px;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .-floating_pc:hover {
    background: #C34A4A;
  }
}

.-floating_sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  width: calc(100% - 20px);
  height: 60px;
  background: #934849;
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 9999999;
}
@media screen and (min-width: 768px) {
  .-floating_sp {
    display: none;
  }
}
.-floating_sp span {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: url(../img/common/icon_arrowW.svg) no-repeat 100% 50%/8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 92%;
  margin: 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  .-floating_sp:hover {
    background: #C34A4A;
  }
}

/*
cta
-----------------------------------------------------*/
.c-cta {
  position: relative;
}
.c-cta-outer {
  position: relative;
}
.c-cta-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 0;
}
.c-cta-flex .-L {
  width: 100%;
}
.c-cta-flex .-L img {
  width: 100%;
  height: auto;
}
.c-cta-flex .-R {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .c-cta-flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .c-cta-flex .-L {
    width: 50%;
  }
  .c-cta-flex .-R {
    width: 43%;
  }
}
.c-cta-nav {
  position: relative;
  margin-top: clamp(148px, 6.26vw + 128px, 230px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 0;
}
.c-cta-nav .-C {
  width: 100%;
  font-weight: 600;
}
.c-cta-nav .-C span {
  font-weight: 400;
}
.c-cta-nav .-L {
  width: 100%;
  font-weight: 600;
}
.c-cta-nav .-L span {
  font-weight: 400;
}
.c-cta-nav .-R {
  width: 100%;
  font-weight: 600;
}
.c-cta-nav .-R span {
  font-weight: 400;
}
@media screen and (min-width: 1080px) {
  .c-cta-nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .c-cta-nav .-L {
    width: 47%;
  }
  .c-cta-nav .-R {
    width: 47%;
  }
}
.c-cta-nav a {
  height: clamp(130px, 0.76vw + 127.6px, 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  padding: 1rem 2.5rem;
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  line-height: 1.5;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-cta-nav a {
    cursor: pointer;
  }
}
.c-cta-nav a span {
  font-size: clamp(14px, 0.08vw + 13.7px, 15px);
  font-family: "Bellefair", serif;
  display: block;
}
.c-cta-nav a i {
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  background-color: #6A5246;
  background-image: url(../img/common/icon_arrowW.svg);
  background-repeat: no-repeat;
  background-position: 60% 50%;
  background-size: 6px 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .c-cta-nav a:hover {
    border: 1px solid #934849;
    color: #934849;
  }
  .c-cta-nav a:hover i {
    background-color: #934849;
  }
}

/*
layout
-----------------------------------------------------*/
.c-distance {
  position: relative;
}

.c-distance + .c-distance {
  margin-top: clamp(40px, 1.83vw + 34.2px, 64px);
}

.c-distance + .c-distance.-middle {
  margin-top: clamp(40px, 2.67vw + 31.5px, 75px);
}

.c-distance + .c-distance.-short {
  margin-top: clamp(30px, 1.53vw + 25.1px, 50px);
}

.c-distance + .c-distance.-zero {
  margin-top: clamp(0px, 0vw + 0px, 0px);
}

.c-distance + .c-distance.-d30 {
  margin-top: clamp(30px, 0vw + 30px, 30px);
}

.c-distance + .c-distance.-d120 {
  margin-top: clamp(80px, 3.05vw + 70.3px, 120px);
}

.c-distance + .c-distance.-d240 {
  margin-top: clamp(160px, 6.11vw + 140.4px, 240px);
}

.c-distance + .c-distance.-large {
  margin-top: clamp(156px, 3.16vw + 145.9px, 180px);
}
@media screen and (min-width: 1080px) {
  .c-distance + .c-distance.-large {
    margin-top: clamp(180px, 10.91vw + 62.2px, 240px);
  }
}

#column.-post .c-distance + .c-distance.-large {
  margin-top: clamp(80px, 1.53vw + 75.1px, 100px);
}
@media screen and (min-width: 1080px) {
  #column.-post .c-distance + .c-distance.-large {
    margin-top: clamp(80px, 1.53vw + 75.1px, 100px);
  }
}

#home .c-distance + .c-distance {
  margin-top: clamp(156px, 3.16vw + 145.9px, 180px);
}
@media screen and (min-width: 1080px) {
  #home .c-distance + .c-distance {
    margin-top: clamp(180px, 10.91vw + 62.2px, 240px);
  }
}

/*
gmenu
-----------------------------------------------------*/
.c-gmenu {
  position: relative;
  width: 72px;
}
@media screen and (min-width: 1080px) {
  .c-gmenu {
    width: clamp(750px, 38.55vw + 333.6px, 962px);
  }
}
@media screen and (min-width: 1080px) {
  .c-gmenu.-pre {
    width: clamp(447px, 0vw + 447px, 447px);
  }
}
.c-gmenu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding-top: 25px;
  padding-top: clamp(25px, 1.96vw + 14.8px, 36px);
}
@media screen and (min-width: 1080px) {
  .c-gmenu-wrapper {
    padding-top: 36px;
  }
}
.c-gmenu--primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .c-gmenu--primary {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.c-gmenu--primary > li {
  position: relative;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-gmenu--primary > li > a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  line-height: 1;
  font-size: clamp(13px, 0.3vw + 10.1px, 15px);
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .c-gmenu--primary > li > a:hover {
    cursor: pointer;
    color: #934849;
  }
}
.c-gmenu--primary > li > span {
  width: 1px;
  height: 100%;
  background: #B3A49C;
  display: block;
}
.c-gmenu--primary > li:not(.c-gmenu-sp) {
  display: none;
}
@media screen and (min-width: 1080px) {
  .c-gmenu--primary > li:not(.c-gmenu-sp) {
    display: block;
  }
}
.c-gmenu--secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media screen and (min-width: 620px) {
  .c-gmenu--secondary {
    gap: 5vw;
  }
}
@media screen and (min-width: 960px) {
  .c-gmenu--secondary {
    gap: 5vw;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media screen and (min-width: 1160px) {
  .c-gmenu--secondary {
    gap: clamp(80px, 15vw - 64px, 128px);
  }
}
@media screen and (min-width: 1280px) {
  .c-gmenu--secondary {
    gap: clamp(80px, 7.16vw + 11.3px, 128px);
  }
}
.c-gmenu--secondary .-S {
  display: none;
  height: calc(100vh - 125px);
  background: #ccc;
  width: clamp(400px, 15.52vw + 251px, 504px);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .c-gmenu--secondary .-S {
    display: block;
  }
}
.c-gmenu--secondary .-S .ticker-container {
  position: sticky;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.c-gmenu--secondary .-S .ticker-container .ticker-wrapper {
  height: 100%;
}
.c-gmenu--secondary .-S .ticker-container .ticker {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-gmenu--secondary .-S .ticker-container .ticker-track {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: ticker 45s linear infinite;
          animation: ticker 45s linear infinite;
}
.c-gmenu--secondary .-S .ticker-container .ticker-item {
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  aspect-ratio: 3456/1132;
  width: 2112px;
}
.c-gmenu--secondary .-S .ticker-container .ticker-item img {
  width: auto;
  aspect-ratio: 3456/1132;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.c-gmenu--secondary .-L {
  width: 88%;
  margin: 0 auto;
}
@media screen and (min-width: 620px) {
  .c-gmenu--secondary .-L {
    width: 200px;
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  .c-gmenu--secondary .-L {
    width: clamp(160px, 20.9vw - 40.7px, 300px);
  }
}
.c-gmenu--secondary .-R {
  width: 88%;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media screen and (min-width: 620px) {
  .c-gmenu--secondary .-R {
    width: 220px;
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .c-gmenu--secondary .-R {
    width: clamp(240px, 8.96vw + 154px, 300px);
  }
}
.c-gmenu--secondary dl div {
  border-bottom: 1px solid #BBB0AB;
  padding: 1.2rem 0 1rem;
}
@media screen and (min-width: 960px) {
  .c-gmenu--secondary dl div {
    border: none;
  }
}
.c-gmenu--secondary ul {
  border-bottom: 1px solid #BBB0AB;
  padding: 0 0 2rem;
}
.c-gmenu--secondary dl div + div, .c-gmenu--secondary dl div + ul {
  margin: 0;
}
.c-gmenu--secondary .c-menu dd {
  padding-left: 1.6rem;
}
@media screen and (min-width: 960px) {
  .c-gmenu--secondary .c-menu dd {
    padding-left: 0;
  }
}
.c-gmenu-sp {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (hover: hover) and (pointer: fine) {
  .c-gmenu-sp {
    cursor: pointer;
  }
}
.c-gmenu--hamburger {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (hover: hover) and (pointer: fine) {
  .c-gmenu--hamburger {
    cursor: pointer;
  }
}
.c-gmenu--hamburger > i {
  display: block;
  width: 20px;
  height: 11px;
  position: relative;
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .c-gmenu--hamburger > i {
    cursor: pointer;
  }
}
.c-gmenu--hamburger > i a {
  padding: 0.2rem 0 0.25rem;
}
.c-gmenu--hamburger > i span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  width: 20px;
  height: 1px;
  background: #6A5246;
}
.c-gmenu--hamburger > i:before, .c-gmenu--hamburger > i:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  display: block;
  width: 100%;
  height: 1px;
  background: #6A5246;
}
.c-gmenu--hamburger > i:after {
  top: unset;
  bottom: 0;
}
.c-gmenu--hamburger.-open i span {
  background: none;
}
.c-gmenu--hamburger.-open i:before {
  top: 6px;
  left: 10px;
  -webkit-transform: translate(-50%, -50%) rotate(18deg);
          transform: translate(-50%, -50%) rotate(18deg);
}
.c-gmenu--hamburger.-open i:after {
  bottom: 4px;
  left: 10px;
  -webkit-transform: translate(-50%, -50%) rotate(-18deg);
          transform: translate(-50%, -50%) rotate(-18deg);
}
.c-gmenu--hamburger--bg {
  display: none;
  pointer-events: none;
  background: rgba(248, 245, 239, 0.45);
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-gmenu--hamburger--bg.-open {
  pointer-events: unset;
}
.c-gmenu--hamburger--nav {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #F8F5EF;
  position: fixed;
  z-index: 999;
  width: 100vw;
  top: 0;
  right: -3000px;
  height: 100%;
  padding-top: clamp(85px, 6.25vw + 65px, 125px);
  overflow-x: auto;
}
@media screen and (min-width: 960px) {
  .c-gmenu--hamburger--nav {
    padding-top: 125px;
  }
}
.c-gmenu.-open .c-gmenu--primary li:not(.c-gmenu-sp) {
  opacity: 0;
}
.c-gmenu.-open .c-gmenu--primary li:not(.c-gmenu-sp) a {
  pointer-events: none;
}

#about .c-gmenu--about a,
#menu .c-gmenu--menu a,
#trial .c-gmenu--trial a,
#voice .c-gmenu--voice a,
#faq .c-gmenu--faq a,
#salon .c-gmenu--salon a {
  color: #934849;
}

/*
distance
-----------------------------------------------------*/
.-flexFigureR {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.-flexFigureR.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.-flexFigureR .-L {
  width: 100%;
}
.-flexFigureR .-R {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .-flexFigureR .-L {
    width: 50%;
  }
  .-flexFigureR .-R {
    width: 44%;
  }
}

* + .-flex {
  margin-top: 2rem;
}

.-scrollV {
  z-index: 100;
  position: fixed;
  left: 1%;
  display: none;
  top: calc(100dvh - 150px);
  font-family: "Bellefair", serif;
  font-size: clamp(12px, 0.36vw + 8.1px, 14px);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 線のアニメーション */
}
@media screen and (min-width: 1080px) {
  .-scrollV {
    display: block;
    left: 1%;
    left: clamp(6px, 33vw - 350.4px, 72px);
  }
}
@media screen and (min-width: 1280px) {
  .-scrollV {
    left: 4%;
    left: clamp(6px, 18.86vw - 235.4px, 72px);
  }
}
.-scrollV::before {
  -webkit-animation: scrollV 2s infinite;
          animation: scrollV 2s infinite;
  background-color: #6A5246;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@-webkit-keyframes scrollV {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scrollV {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

/*
list
-----------------------------------------------------*/
.c-list-dl {
  counter-reset: number 0;
}
.c-list-dl div + div {
  margin-top: 2.6rem;
}
.c-list-dl dt {
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  counter-increment: number;
  font-weight: 600;
}
.c-list-dl dd {
  margin-top: 1rem;
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.c-list-dl.-counter dt::before {
  content: counter(number) ".";
  padding-right: 0.6rem;
}
.c-list-dl.-counter dd {
  padding-left: 1.6rem;
}
.c-list-dl_table > div {
  padding: 0;
  padding-bottom: clamp(18px, 1.07vw + 14.6px, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 1rem;
  border-bottom: 1px solid #BBB0AB;
}
.c-list-dl_table > div + div {
  padding-top: clamp(18px, 1.07vw + 14.6px, 32px);
}
.c-list-dl_table > div > dt {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-list-dl_table > div > dt {
    width: 20%;
  }
}
.c-list-dl_table > div > dd {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-list-dl_table > div > dd {
    width: calc(100% - (20% + 1rem));
  }
}
.c-list-dl_table > div > dd span {
  font-size: clamp(12px, 0.15vw + 11.6px, 14px);
  display: block;
}
.c-list-dl_table + * {
  margin-top: 1.5rem;
}
.c-list-dl_contact div {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #BBB0AB;
}
@media screen and (min-width: 1080px) {
  .c-list-dl_contact div {
    padding: 2rem 0;
  }
}
.c-list-dl_contact dt {
  width: 100%;
  padding-bottom: 0.6rem;
}
@media screen and (min-width: 1080px) {
  .c-list-dl_contact dt {
    width: 23%;
    padding-bottom: 0;
  }
}
.c-list-dl_contact dd {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .c-list-dl_contact dd {
    width: 70.67%;
  }
}
.c-list-dl_contact dd span {
  font-size: clamp(12px, 0.15vw + 11.6px, 14px);
}
.c-list-dot {
  padding-left: 2em;
}
.c-list-dot.-bgW {
  background: #fff;
  padding: 2rem 2rem 2rem 4rem;
  border-radius: 0.5rem;
}
.c-list-dot li {
  line-height: 1.6;
  position: relative;
  list-style-type: disc;
}
.c-list-dot li + li {
  margin-top: 0.5rem;
}
.c-list-num {
  padding-left: 2em;
}
.c-list-num li {
  line-height: 1.6;
  position: relative;
  list-style-type: decimal;
}
.c-list-num li + li {
  margin-top: 0.5rem;
}

p + .c-list-dot,
.c-list-dot + p,
p + .c-list-num,
.c-list-num + p {
  margin-top: 0.5rem;
}

/*
menu
-----------------------------------------------------*/
.c-menu div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 2rem;
  width: 100%;
}
.c-menu div + div, .c-menu div + ul {
  margin-top: 1.5rem;
}
.c-menu dt {
  width: 100%;
}
.c-menu dt a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  line-height: 1;
  display: block;
  width: 100%;
  padding: 0 0 0 24px;
  position: relative;
  margin-bottom: 0.5rem;
}
@media (hover: hover) and (pointer: fine) {
  .c-menu dt a:hover {
    color: #934849;
  }
}
@media screen and (min-width: 960px) {
  .c-menu dt a {
    font-size: clamp(0.8125rem, 0.35vw + 0.64375rem, 1rem);
  }
}
.c-menu dt a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_rose.svg) no-repeat 50% 50%/14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  margin-top: 2px;
}
.c-menu dd {
  width: auto;
}
@media screen and (min-width: 520px) {
  .c-menu dd {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .c-menu dd {
    width: auto;
  }
}
.c-menu dd a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  line-height: 1;
  display: inline-block;
  padding: 0 0 0 18px;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .c-menu dd a:hover {
    color: #934849;
  }
}
@media screen and (min-width: 960px) {
  .c-menu dd a {
    font-size: clamp(0.8125rem, 0.35vw + 0.64375rem, 1rem);
  }
}
.c-menu dd a::after {
  content: "";
  display: block;
  width: 6px;
  height: 8px;
  background: url(../img/common/icon_arrow.svg) no-repeat 50% 50%/contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  margin-top: 2px;
}
.c-menu.-secondary dt a {
  font-size: clamp(1rem, 0.45vw + 0.90625rem, 1.125rem);
}
@media screen and (min-width: 960px) {
  .c-menu.-secondary dt a {
    font-size: clamp(1.125rem, 0.23vw + 1.01875rem, 1.25rem);
  }
}
.c-menu.-secondary dd a {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
}
@media screen and (min-width: 960px) {
  .c-menu.-secondary dd a {
    font-size: clamp(1rem, 0vw + 1rem, 1rem);
  }
}
.c-menu ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  display: inline-block;
  padding: 0 0 0 18px;
  position: relative;
  font-size: 16px;
}
@media (hover: hover) and (pointer: fine) {
  .c-menu ul li a:hover {
    color: #934849;
  }
}
.c-menu ul li a::after {
  content: "";
  display: block;
  width: 6px;
  height: 8px;
  background: url(../img/common/icon_arrowR.svg) no-repeat 50% 50%/contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  margin-top: 1px;
}
.c-menu ul li + li {
  margin-top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .c-menu ul li + li {
    margin-top: 0.6rem;
  }
}
.c-menu.-secondary ul li a {
  font-size: clamp(0.875rem, 0.45vw + 0.78125rem, 1rem);
}
@media screen and (min-width: 960px) {
  .c-menu.-secondary ul li a {
    font-size: clamp(1rem, 0vw + 1rem, 1rem);
  }
}
.c-menu ul + address {
  margin-top: 1.5rem;
}
.c-menu address {
  font-style: normal;
  line-height: 2;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
}
.c-menu.-secondary address {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
}
@media screen and (min-width: 768px) {
  .c-menu.-secondary address {
    font-size: clamp(1rem, 0vw + 1rem, 1rem);
  }
}
.c-menu .-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 0.5rem;
}
.c-menu .-sns a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 50px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  fill: #6A5246;
}
.c-menu .-sns a.-insta svg {
  width: 19px;
  height: 22px;
}
.c-menu .-sns a.-line svg {
  width: 23px;
  height: 19px;
}
.c-menu .-sns a.-x svg {
  width: 17px;
  height: 19px;
}
@media (hover: hover) and (pointer: fine) {
  .c-menu .-sns a:hover {
    border: 1px solid #934849;
    fill: #934849;
  }
}

/*
post
-----------------------------------------------------*/
.c-post.-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 6%;
}
.c-post.-list .-item {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .c-post.-list .-item {
    width: 47%;
  }
}
.c-post.-list .-item .-ph img {
  border-radius: 5px;
  aspect-ratio: 325/216;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post.-list .-item .-txt {
  margin-top: clamp(1rem, 0vw + 1rem, 1rem);
}
.c-post.-list .-item .-txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 1rem;
}
.c-post.-list .-item .-txt ul li {
  font-size: clamp(0.8125rem, 0vw + 0.8125rem, 0.8125rem);
  color: #934849;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2px;
}
.c-post.-list .-item .-txt ul .-date {
  color: #934849;
  font-size: clamp(0.875rem, 0vw + 0.875rem, 0.875rem);
  font-family: "Bellefair", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 0.4rem;
  padding: 0 0 0 1.5rem;
  position: relative;
}
.c-post.-list .-item .-txt ul .-date i {
  width: 14px;
  height: 14px;
  display: block;
  background: url(../img/common/icon_calendar.svg) no-repeat 0 0;
  background-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-post.-list .-item .-txt .-title {
  margin-top: clamp(0.625rem, 0.15vw + 0.6rem, 0.75rem);
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  font-weight: 600;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-post.-list .-item a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .c-post.-list .-item:hover .-txt .-title {
    color: #934849;
  }
}
.c-post.-head ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 1rem;
}
.c-post.-head ul li {
  font-size: clamp(0.8125rem, 0vw + 0.8125rem, 0.8125rem);
  color: #934849;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2px;
}
.c-post.-head ul .-date {
  color: #934849;
  font-size: clamp(0.875rem, 0vw + 0.875rem, 0.875rem);
  font-family: "Bellefair", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 0.4rem;
  padding: 0 0 0 1.5rem;
  position: relative;
}
.c-post.-head ul .-date i {
  width: 14px;
  height: 14px;
  display: block;
  background: url(../img/common/icon_calendar.svg) no-repeat 0 0;
  background-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-post.-head .-title {
  margin-top: clamp(1.25rem, 0.31vw + 1.18125rem, 1.5rem);
  font-size: clamp(1.25rem, 0.15vw + 1.225rem, 1.375rem);
  font-weight: 600;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-post.-kv {
  margin-bottom: clamp(54px, 1.98vw + 47.7px, 80px);
}
.c-post.-body {
  margin-top: clamp(2.5rem, 1.07vw + 2.2875rem, 3.375rem);
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  line-height: 2;
  /* スクロールバー全体を対象にする */
  /* スクロールバーの背景部分をカスタマイズ */
  /* スクロールバーの操作部分をカスタマイズ */
  /* スクロールバーの操作部分にホバーした時のスタイル */
}
.c-post.-body h2,
.c-post.-body .heading {
  font-size: clamp(1.125rem, 0.15vw + 1.1rem, 1.25rem);
  font-weight: 600;
}
.c-post.-body h3 {
  font-size: clamp(1rem, 0.15vw + 0.975rem, 1.125rem);
  font-weight: 600;
}
.c-post.-body h4 {
  font-size: clamp(0.875rem, 0.15vw + 0.85rem, 1rem);
  font-weight: 600;
}
.c-post.-body h5 {
  font-size: clamp(0.875rem, 0.15vw + 0.85rem, 1rem);
  font-weight: 600;
}
.c-post.-body h6 {
  font-size: clamp(0.875rem, 0.15vw + 0.85rem, 1rem);
  font-weight: 600;
}
.c-post.-body * + * {
  margin-top: clamp(2rem, 0.61vw + 1.88125rem, 2.5rem);
}
.c-post.-body li + li {
  margin-top: clamp(0.375rem, 0.31vw + 0.30625rem, 0.625rem);
}
.c-post.-body * + h2 {
  margin-top: clamp(2.5rem, 1.07vw + 2.2875rem, 3.375rem);
}
.c-post.-body h2 + p {
  margin-top: clamp(1.5rem, 0.61vw + 1.38125rem, 2rem);
}
.c-post.-body img {
  width: 100%;
  height: auto;
}
.c-post.-body img.-emoji {
  width: 16px;
  display: inline;
}
.c-post.-body ul.wp-block-list {
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.c-post.-body ul.wp-block-list li {
  list-style-type: disc;
}
.c-post.-body ul.wp-block-list li + li {
  margin-top: 0.3rem;
}
.c-post.-body ol.wp-block-list {
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.c-post.-body ol.wp-block-list li {
  list-style-type: decimal;
}
.c-post.-body ol.wp-block-list li + li {
  margin-top: 0.3rem;
}
.c-post.-body .wp-block-gallery {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .c-post.-body .wp-block-gallery {
    width: 80%;
  }
}
.c-post.-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: none; /* タイトル背景の影を消す */
  color: #6A5246; /* 文字色 */
  position: relative; /* テキストを画像と重ねない */
  text-shadow: unset;
  text-align: left;
  padding: 0;
  margin: 0.6rem 0 0 0;
}
.c-post.-body .wp-block-gallery.has-nested-images figure.wp-block-image::before {
  display: none;
}
.c-post.-body .quote,
.c-post.-body .wp-block-quote {
  background: #fff;
  padding: 2rem 1.2rem;
}
.c-post.-body * + cite {
  margin-top: 0.2rem;
  font-size: clamp(0.75rem, 0vw + 0.75rem, 0.75rem);
  line-height: 1.6;
  font-style: normal;
}
.c-post.-body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout {
  overflow-x: auto;
  display: block;
}
.c-post.-body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
  width: 100%;
  max-width: unset;
  border-collapse: collapse;
  width: auto;
}
.c-post.-body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table th,
.c-post.-body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table td {
  white-space: nowrap;
}
.c-post.-body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table::-webkit-scrollbar {
  width: 10px; /* スクロールバーの幅 */
  height: 10px; /* スクロールバーの高さ */
}
.c-post.-body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table::-webkit-scrollbar-track {
  background: #fff; /* スクロールバーの背景色 */
}
.c-post.-body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table::-webkit-scrollbar-thumb {
  background: #BBB0AB; /* スクロールバーの操作部分の背景色 */
}
.c-post.-body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table::-webkit-scrollbar-thumb:hover {
  background: #BBB0AB; /* ホバー時のスクロールバーの操作部分の背景色 */
}
.c-post.-body .wp-block-embed.wp-block-embed-youtube .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-post.-body .wp-block-embed.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
.c-post.-body wp-block-embed.is-provider-tiktok .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-post.-body wp-block-embed.is-provider-tiktok .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
.c-post.-body .border-box.pink {
  border: solid 2px #ead3c7;
  padding: 30px 30px;
}
.c-post.-body ul.ib {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 2rem;
  padding-left: 1rem;
}
.c-post.-body ul.ib li {
  list-style-type: circle;
}
.c-post.-body ul.ib li + li {
  margin: 0;
}
.c-post.-body dl.no {
  line-height: 1.5;
}
.c-post.-body dl.no dt {
  float: left;
  width: 2em;
  margin: 0.6rem 0 0 0;
}
.c-post.-body dl.no dd {
  padding: 0 0 3px 2em;
  margin: 0.6rem 0 0 0;
}

.wp-block-image :where(figcaption) {
  margin-bottom: 1rem;
  margin-top: 0.2em !important;
  font-size: clamp(0.6875rem, 0.15vw + 0.6625rem, 0.8125rem);
}

/*
table
-----------------------------------------------------*/
.c-table-comparison {
  width: 100%;
  background: #fff;
}
.c-table-comparison th {
  background: #EEE5E0;
  font-size: clamp(0.875rem, 0vw + 0.875rem, 0.875rem);
  text-align: center;
  vertical-align: middle;
  border: 1px solid #BBB0AB;
  padding: 0.8em;
}
.c-table-comparison th.-red {
  background: #934849;
  color: #fff;
}
.c-table-comparison th.-w20 {
  width: 20%;
}
.c-table-comparison th.-w40 {
  width: 40%;
}
.c-table-comparison td {
  font-size: clamp(0.875rem, 0vw + 0.875rem, 0.875rem);
  text-align: center;
  vertical-align: middle;
  border: 1px solid #BBB0AB;
  padding: 0.8em;
}
.c-table-scroll {
  overflow-x: auto;
  display: block;
}
.c-table-scroll table {
  min-width: 600px;
  white-space: nowrap;
}
.c-table-scroll th,
.c-table-scroll td {
  white-space: nowrap;
}

/*
text
-----------------------------------------------------*/
.pc_br {
  display: none;
}
@media screen and (min-width: 1080px) {
  .pc_br {
    display: block;
  }
}

.sp_br {
  display: block;
}
@media screen and (min-width: 1080px) {
  .sp_br {
    display: none;
  }
}

.c-text-red {
  color: #934849;
}
.c-text-small {
  font-size: 14px;
}

/*
title
-----------------------------------------------------*/
.c-title-pageTitle {
  margin-top: clamp(54px, 4.69vw + 39px, 84px);
  margin-bottom: clamp(40px, 6.72vw + 18.5px, 128px);
}
.c-title-pageTitle h1 {
  font-size: clamp(40px, 0.61vw + 38.1px, 48px);
  line-height: 1;
  font-family: "Bellefair", serif;
}
.c-title-pageTitle h1 span {
  display: block;
  font-size: clamp(14px, 0.15vw + 13.6px, 16px);
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  position: relative;
  padding: 0 0 0 24px;
  margin-top: 1.2rem;
}
.c-title-pageTitle h1 span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_rose.svg) no-repeat 50% 50%/14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  margin-top: 0px;
}
.c-title-sectionTitle {
  font-size: clamp(40px, 0.61vw + 38.1px, 48px);
  margin-bottom: clamp(48px, 0.61vw + 46.1px, 56px);
  line-height: 1;
  font-family: "Bellefair", serif;
}
.c-title-sectionTitle span {
  display: inline-block;
  font-size: clamp(14px, 0.15vw + 13.6px, 16px);
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  position: relative;
  padding: 0 0 0 24px;
  margin-top: 0.8rem;
}
.c-title-sectionTitle span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_rose.svg) no-repeat 50% 50%/14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  margin-top: 0px;
}
.c-title-sectionTitle.-center {
  text-align: center;
}
.c-title-h2 {
  text-box: trim-both text;
  margin-bottom: 2rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.c-title-h2.-rose {
  position: relative;
  font-size: clamp(22px, 0.15vw + 21.6px, 24px);
  line-height: 1.6;
  padding: 0 0 0.6rem 1.8rem;
  margin: 0 0 1.5rem 0;
  border-bottom: 1px solid #BBB0AB;
  font-weight: 600;
}
.c-title-h2.-rose::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0px;
  top: 0.75rem;
  background: url(../img/common/icon_rose.svg) 50% 50%/18px no-repeat;
}
.c-title-h2.-rose.-borderLess {
  border: none;
}
.c-title-h2.-border {
  border-bottom: 1px solid #BBB0AB;
  color: #934849;
  padding: 0 0 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(22px, 0.15vw + 21.6px, 24px);
}
.c-title-h2.-border em {
  font-size: clamp(13px, 0.15vw + 12.6px, 15px);
  color: #fff;
  background: #934849;
  border-radius: 9999px;
  padding: 0.3rem 0.5rem 0.3rem;
  line-height: 1;
  margin-right: 0.6rem;
  display: inline-block;
}
.c-title-h2.-bar {
  text-box: trim-both text;
  margin-bottom: 2rem;
  position: relative;
  color: #6A5246;
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  line-height: 1;
  padding: 0 0 0.6rem 1.2rem;
  font-weight: 600;
}
@media screen and (min-width: 1080px) {
  .c-title-h2.-bar {
    margin-bottom: 3rem;
  }
}
.c-title-h2.-bar::after {
  content: "";
  display: block;
  width: 4px;
  height: 1.4rem;
  position: absolute;
  left: 0px;
  top: 44%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  background: #934849;
}
.c-title-case {
  text-box: trim-both text;
  padding: 0 1.5rem 1.2rem;
  background: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 960px) {
  .c-title-case {
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1.5rem;
    text-align: left;
  }
}
.c-title-case.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem 0;
}
.c-title-case.-flex .-L {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .c-title-case.-flex .-L {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1.5rem;
    text-align: left;
    width: auto;
  }
}
.c-title-case.-flex .-R {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .c-title-case.-flex .-R {
    width: auto;
  }
}
.c-title-case span {
  color: #fff;
  background: #934849;
  text-align: center;
  font-size: clamp(15px, 0vw + 15px, 15px);
  line-height: 1;
  padding: 0.45rem 0.8rem 0.4rem;
  display: inline-block;
  width: auto;
  margin: 0 auto 0.6rem;
  font-family: "Bellefair", serif;
}
@media screen and (min-width: 960px) {
  .c-title-case span {
    margin: 0;
    padding: 0.15rem 0.8rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-title-case em {
  display: block;
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  line-height: 1.6;
  font-weight: 600;
}
.c-title-trial {
  text-box: trim-both text;
  padding: 0 1.5rem 1.2rem;
  background: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 960px) {
  .c-title-trial {
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 960px) {
  .c-title-trial .-L {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1.5rem;
    text-align: left;
  }
}
.c-title-trial .-R {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.6rem;
}
@media screen and (min-width: 960px) {
  .c-title-trial .-R {
    margin: 0;
  }
}
.c-title-trial .-R dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.8rem 1.5rem;
  width: 130px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .c-title-trial .-R dl div {
    width: auto;
    margin: 0;
  }
}
.c-title-trial .-R dl div dt {
  color: #934849;
}
.c-title-trial .-R dl div + div {
  margin-top: 0.3rem;
}
.c-title-trial span {
  color: #fff;
  background: #934849;
  text-align: center;
  font-size: clamp(15px, 0vw + 15px, 15px);
  line-height: 1;
  padding: 0.45rem 0.8rem 0.4rem;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  font-size: clamp(14px, 0vw + 14px, 14px);
  font-weight: 600;
}
.c-title-trial span b {
  font-family: "Bellefair", serif;
  display: inline;
  font-size: clamp(14px, 0vw + 14px, 14px);
  font-weight: 500;
}
@media screen and (min-width: 960px) {
  .c-title-trial span b {
    display: block;
    margin-top: 0.5rem;
    font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  }
}
@media screen and (min-width: 960px) {
  .c-title-trial span {
    width: 80px;
    aspect-ratio: 1/1;
    margin: 0;
    padding: 0.2rem 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-title-trial em {
  display: block;
  line-height: 1.6;
  font-size: clamp(14px, 0vw + 14px, 14px);
  color: #934849;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  margin-top: 1.5rem;
}
@media screen and (min-width: 960px) {
  .c-title-trial em {
    margin-top: 0;
  }
}
.c-title-trial em b {
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  color: #6A5246;
  font-weight: 600;
  display: block;
}
.c-title-h3 {
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-box: trim-both text;
  font-size: clamp(18px, 0vw + 18px, 18px);
  color: #934849;
  font-weight: 700;
  margin-bottom: clamp(24px, 1.22vw + 20.1px, 40px);
}
.c-title-h3.-bottom {
  margin-bottom: clamp(16px, 0vw + 16px, 16px);
}
.c-title-h4 {
  text-box: trim-both text;
  font-size: clamp(16px, 0vw + 16px, 16px);
  margin-bottom: clamp(24px, 0vw + 24px, 24px);
}

p + .c-title-h3 {
  margin-top: clamp(54px, 0.76vw + 51.6px, 64px);
}

p + .c-title-h4 {
  margin-top: clamp(42px, 0vw + 42px, 42px);
}

/*
  3.2 - Project
-----------------------------------------------------*/
/*
p-pagenav
-----------------------------------------------------*/
.pagenate-wrap {
  margin-top: clamp(64px, 1.22vw + 60.1px, 80px);
}
.pagenate-wrap .pagenate-list .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  font-size: clamp(1rem, 0.15vw + 0.975rem, 1.125rem);
}
.pagenate-wrap .pagenate-list .wp-pagenavi span {
  border: none !important;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.pagenate-wrap .pagenate-list .wp-pagenavi a {
  border: none !important;
  padding: 0;
  margin: 0;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .pagenate-wrap .pagenate-list .wp-pagenavi a:hover {
    color: #934849;
  }
}
.pagenate-wrap .pagenate-list .wp-pagenavi .current {
  color: #934849;
}
.pagenate-wrap .pagenate-list .wp-pagenavi .previouspostslink {
  display: block;
  position: relative;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  padding-left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagenate-wrap .pagenate-list .wp-pagenavi .previouspostslink::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  background: url(../img/common/icon_arw2.svg) no-repeat 0 0;
  background-size: 22px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .pagenate-wrap .pagenate-list .wp-pagenavi .previouspostslink:hover {
    color: #934849;
  }
  .pagenate-wrap .pagenate-list .wp-pagenavi .previouspostslink:hover::before {
    background-image: url(../img/common/icon_arw2_on.svg);
    background-repeat: no-repeat;
    background-size: 22px;
  }
}
.pagenate-wrap .pagenate-list .wp-pagenavi .previouspostslink span {
  display: none;
}
@media screen and (min-width: 960px) {
  .pagenate-wrap .pagenate-list .wp-pagenavi .previouspostslink span {
    display: inline;
  }
}
.pagenate-wrap .pagenate-list .wp-pagenavi .nextpostslink {
  display: block;
  position: relative;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  padding-right: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagenate-wrap .pagenate-list .wp-pagenavi .nextpostslink::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  right: 0;
  width: 22px;
  height: 22px;
  background: url(../img/common/icon_arw.svg) no-repeat 0 0;
  background-size: 22px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagenate-wrap .pagenate-list .wp-pagenavi .nextpostslink:hover {
  color: #934849;
}
@media (hover: hover) and (pointer: fine) {
  .pagenate-wrap .pagenate-list .wp-pagenavi .nextpostslink:hover::before {
    background-image: url(../img/common/icon_arw_on.svg);
    background-repeat: no-repeat;
    background-size: 22px;
  }
}
.pagenate-wrap .pagenate-list .wp-pagenavi .nextpostslink span {
  display: none;
}
@media screen and (min-width: 960px) {
  .pagenate-wrap .pagenate-list .wp-pagenavi .nextpostslink span {
    display: inline;
  }
}
.pagenate-wrap .pagenate-list .wp-pagenavi .previouspostslink {
  position: absolute;
  left: 8%;
  top: 0;
}
@media screen and (min-width: 960px) {
  .pagenate-wrap .pagenate-list .wp-pagenavi .previouspostslink {
    left: 0;
  }
}
.pagenate-wrap .pagenate-list .wp-pagenavi .nextpostslink {
  position: absolute;
  right: 8%;
  top: 0;
}
@media screen and (min-width: 960px) {
  .pagenate-wrap .pagenate-list .wp-pagenavi .nextpostslink {
    right: 0;
  }
}

/*
  3.3 - Utility
-----------------------------------------------------*/
/*# sourceMappingURL=common.css.map */