@charset "UTF-8";
/*
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]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
home
-----------------------------------------------------*/
.p-home-kv {
  /* スクロールダウンの位置 */
}
.p-home-kv .-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;
}
@media screen and (min-width: 960px) {
  .p-home-kv .-flex {
    height: calc(100dvh - 125px);
  }
}
.p-home-kv .-flex .-L {
  width: 100%;
  padding-bottom: 100px;
  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;
}
@media screen and (min-width: 960px) {
  .p-home-kv .-flex .-L {
    width: 32.25%;
    padding-bottom: 0;
    height: calc(100dvh - 200px);
  }
}
.p-home-kv .-flex .-L h1 {
  text-indent: -9999px;
  font-size: 1%;
  line-height: 1%;
  text-decoration: none;
  overflow: hidden;
  width: 234px;
  height: 187px;
  background: url(../img/home/kv_txt_sp.svg) no-repeat 50% 0/contain;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .p-home-kv .-flex .-L h1 {
    width: 212px;
    height: 429px;
    background: url(../img/home/kv_txt_pc.svg) no-repeat 50% 0/contain;
  }
}
.p-home-kv .-flex .-R {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-home-kv .-flex .-R {
    width: 67.74%;
  }
}
.p-home-kv .-flex .-R .ticker-container {
  position: sticky;
  width: 100%;
  overflow: hidden;
  height: 60vw;
}
@media screen and (min-width: 960px) {
  .p-home-kv .-flex .-R .ticker-container {
    height: calc(100dvh - 200px);
  }
}
.p-home-kv .-flex .-R .ticker-container .ticker-wrapper {
  height: 100%;
}
.p-home-kv .-flex .-R .ticker-container .ticker {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-home-kv .-flex .-R .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;
}
.p-home-kv .-flex .-R .ticker-container .ticker-item {
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  aspect-ratio: 1;
  padding: 0 10px 0 0;
}
.p-home-kv .-flex .-R .ticker-container .ticker-item img {
  width: auto;
  aspect-ratio: 1;
  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%);
  }
}
.p-home-kv .scroll {
  text-align: center;
  font-family: "Bellefair", serif;
  position: relative;
  position: absolute;
  left: 50%;
  bottom: 54px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  /* 矢印のアニメーション */
}
@media screen and (min-width: 960px) {
  .p-home-kv .scroll {
    bottom: -20px;
  }
}
.p-home-kv .scroll:before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  border-bottom: 1px solid #6A5246;
  border-left: 1px solid #6A5246;
  content: "";
  height: 16px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 20px;
  width: 16px;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: rotate(-45deg) translate(-14px, 14px);
            transform: rotate(-45deg) translate(-14px, 14px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    -webkit-transform: rotate(-45deg) translate(-14px, 14px);
            transform: rotate(-45deg) translate(-14px, 14px);
  }
  100% {
    opacity: 0;
  }
}
.p-home-lead {
  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: 1.88rem 0;
}
.p-home-lead .-L {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-home-lead .-L {
    width: 42%;
  }
}
.p-home-lead .-L h2 {
  font-size: clamp(24px, 0.46vw + 22.5px, 30px);
  line-height: 1.67;
  font-weight: 600;
}
.p-home-lead .-R {
  width: 100%;
  font-weight: 600;
}
@media screen and (min-width: 1080px) {
  .p-home-lead .-R {
    width: 50%;
    padding-top: 3rem;
  }
}
.p-home-lead .-R p {
  line-height: 2.5;
  font-size: 16px;
}
.p-home-method_phSP {
  display: block;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1080px) {
  .p-home-method_phSP {
    display: none;
  }
}
.p-home-method dt {
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  line-height: 1rem;
  position: relative;
  padding: 0 0 0 32px;
  font-weight: 600;
}
.p-home-method dt::before {
  content: "01";
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #C34A4A;
  position: absolute;
  font-family: "Bellefair", serif;
  left: 0;
  top: 50%;
  margin-top: -7px;
}
.p-home-method dt.-n02::before {
  content: "02";
}
.p-home-method dt.-n03::before {
  content: "03";
}
.p-home-method dd {
  font-size: clamp(16px, 0vw + 16px, 16px);
  line-height: 2;
}
.p-home-method dt + dd {
  margin-top: clamp(20px, 0.31vw + 18.9px, 24px);
}
.p-home-method dd + dt {
  margin-top: clamp(48px, 3.66vw + 36.3px, 96px);
}
.p-home-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (min-width: 1080px) {
  .p-home-menu {
    gap: 1.88rem;
  }
}
.p-home-menu .-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  width: 100%;
}
.p-home-menu .-card 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) {
  .p-home-menu .-card a {
    cursor: pointer;
    border: 1px solid rgba(147, 72, 73, 0);
  }
}
@media screen and (min-width: 1080px) {
  .p-home-menu .-card {
    width: calc((100% - 4rem) / 3);
  }
}
.p-home-menu .-card h3 {
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
  padding: 1.88rem 1.88rem 0;
}
@media screen and (min-width: 1080px) {
  .p-home-menu .-card h3 {
    padding: 3rem 3rem 0;
  }
}
.p-home-menu .-card h3 span {
  font-size: clamp(15px, 0vw + 15px, 15px);
  line-height: 1;
  font-family: "Bellefair", serif;
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.p-home-menu .-card p {
  font-size: clamp(16px, 0vw + 16px, 16px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 1.88rem;
}
@media screen and (min-width: 1080px) {
  .p-home-menu .-card p {
    padding: 0 3rem 0;
  }
}
.p-home-menu .-card .-btn.-more {
  padding: 0 1.88rem 1.88rem;
}
@media screen and (min-width: 1080px) {
  .p-home-menu .-card .-btn.-more {
    padding: 0 3rem 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-home-menu .-card:hover .-btn span {
    color: #934849;
  }
  .p-home-menu .-card:hover .-btn span i {
    background-color: #934849;
  }
  .p-home-menu .-card:hover a {
    border: 1px solid rgb(147, 72, 73);
  }
}
.p-home-trial {
  margin-top: clamp(30px, 0.76vw + 27.6px, 40px);
  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;
  background: #fff;
  padding: 1.88rem;
  gap: 1.88rem 0;
}
@media screen and (min-width: 1080px) {
  .p-home-trial {
    padding: 3.75rem;
  }
}
.p-home-trial .-L {
  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 screen and (min-width: 1080px) {
  .p-home-trial .-L {
    width: 33%;
  }
}
.p-home-trial .-L h2 {
  font-size: clamp(18px, 0.15vw + 17.6px, 20px);
  line-height: 1.8;
  width: calc(100% - 104px);
  font-weight: 600;
}
.p-home-trial .-L figure {
  width: 94px;
}
.p-home-trial .-L figure img {
  width: 100%;
  height: auto;
}
.p-home-trial .-R {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 1.88rem;
}
@media screen and (min-width: 1080px) {
  .p-home-trial .-R {
    width: 60%;
  }
}
.p-home-trial .-R li {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-home-trial .-R li {
    width: calc(50% - 1rem);
  }
}
.p-home-trial .-R li a {
  display: block;
  width: 100%;
  padding: 1rem 1.88rem 1rem 0;
  border-bottom: 1px solid #BBB0AB;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-home-trial .-R li a span {
  font-size: clamp(16px, 0vw + 16px, 16px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
}
.p-home-trial .-R li a 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;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-trial .-R li a:hover {
    border-bottom: 1px solid #934849;
    color: #934849;
  }
  .p-home-trial .-R li a:hover i {
    background-color: #934849;
  }
}
.p-home-mens {
  margin-top: clamp(30px, 0.76vw + 27.6px, 40px);
  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;
  background: #fff;
  padding: 1.88rem;
}
@media screen and (min-width: 1080px) {
  .p-home-mens {
    padding: 3.75rem;
  }
}
.p-home-mens h2 {
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  line-height: 1.5;
  position: relative;
  padding: 0 0 0 24px;
  font-weight: 600;
}
.p-home-mens h2::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: 1.1rem;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  margin-top: 0px;
}
.p-home-mens .-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: 1.88rem 0;
}
.p-home-mens .-flex .-L {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-home-mens .-flex .-L {
    width: 33%;
  }
}
.p-home-mens .-flex .-R {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 1.88rem;
}
@media screen and (min-width: 1080px) {
  .p-home-mens .-flex .-R {
    width: 60%;
  }
}
.p-home-mens .-flex .-R li {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-home-mens .-flex .-R li {
    width: calc(50% - 1rem);
  }
}
.p-home-mens .-flex .-R li a {
  display: block;
  width: 100%;
  padding: 1rem 1.88rem 1rem 0;
  border-bottom: 1px solid #BBB0AB;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
}
.p-home-mens .-flex .-R li a span {
  font-size: clamp(16px, 0vw + 16px, 16px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-home-mens .-flex .-R li a i {
  position: absolute;
  right: 0rem;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 12px;
  height: 12px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  fill: #6A5246;
}
.p-home-mens .-flex .-R li a i svg {
  position: absolute;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-mens .-flex .-R li a:hover {
    border-bottom: 1px solid #934849;
    color: #934849;
  }
  .p-home-mens .-flex .-R li a:hover i {
    fill: #934849;
  }
}
.p-home-menuNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.88rem 4%;
  margin-top: clamp(2rem, 1.68vw + 1.6625rem, 3.375rem);
}
.p-home-menuNav a {
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .p-home-menuNav a {
    width: 47% !important;
  }
}
.p-home-voice .swiper-slide {
  background: #fff;
  border: 1px solid #fff;
  padding: 1.88rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1080px) {
  .p-home-voice .swiper-slide {
    padding: 4rem;
    height: auto;
  }
}
.p-home-voice .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-voice .swiper-slide:hover {
    border: 1px solid #934849;
  }
  .p-home-voice .swiper-slide:hover .-head .-more span {
    color: #934849;
  }
  .p-home-voice .swiper-slide:hover .-head .-more span i {
    background-color: #934849;
  }
}
.p-home-voice .swiper-slide .-head {
  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;
}
.p-home-voice .swiper-slide .-head h2 {
  height: 36px;
  line-height: 1;
  font-size: clamp(16px, 0vw + 16px, 16px);
  padding: 0 0 0 56px;
  background: url(../img/common/icon_voice.svg) no-repeat 0 50%/36px;
  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;
}
.p-home-voice .swiper-slide .-body {
  margin-top: 1.5rem;
  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: 1.88rem 0;
}
.p-home-voice .swiper-slide .-body .-txt {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-home-voice .swiper-slide .-body .-txt {
    width: 50%;
  }
}
.p-home-voice .swiper-slide .-body .-txt h3 {
  font-size: clamp(20px, 0vw + 20px, 20px);
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.p-home-voice .swiper-slide .-body .-txt p {
  font-size: clamp(16px, 0vw + 16px, 16px);
}
.p-home-voice .swiper-slide .-body .-ph {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-home-voice .swiper-slide .-body .-ph {
    width: 42%;
  }
}
.p-home-voice .swiper-slide .-more {
  display: none;
}
.p-home-voice .swiper-slide .-more span {
  position: relative;
  padding-right: 1.88rem;
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-home-voice .swiper-slide .-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;
}
@media screen and (min-width: 1080px) {
  .p-home-voice .swiper-slide .-more {
    display: block;
  }
}
.p-home-voice .swiper-slide .-more.-bottom {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1080px) {
  .p-home-voice .swiper-slide .-more.-bottom {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-home-voice .swiper-slide:hover .-more span {
    color: #934849;
  }
  .p-home-voice .swiper-slide:hover .-more span i {
    background-color: #934849;
  }
}
.p-home-voice .swiper {
  padding-bottom: 24px;
}
@media screen and (min-width: 1080px) {
  .p-home-voice .swiper {
    padding-bottom: 0;
  }
}
.p-home-voice .swiper-button-next, .p-home-voice .swiper-button-prev {
  width: 46px;
  height: 46px;
  top: unset;
  left: 50%;
  border: 1px solid #6A5246;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: -23px;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(106, 82, 70, 0.05);
          box-shadow: 3px 3px 10px 0px rgba(106, 82, 70, 0.05);
}
.p-home-voice .swiper-button-next svg, .p-home-voice .swiper-button-prev svg {
  fill: #6A5246;
  width: 18px;
  height: 17px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-home-voice .swiper-button-next::after, .p-home-voice .swiper-button-prev::after {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-voice .swiper-button-next:hover, .p-home-voice .swiper-button-prev:hover {
    border: 1px solid #934849;
  }
  .p-home-voice .swiper-button-next:hover svg, .p-home-voice .swiper-button-prev:hover svg {
    fill: #934849;
  }
}
@media screen and (min-width: 1080px) {
  .p-home-voice .swiper-button-next, .p-home-voice .swiper-button-prev {
    width: 60px;
    height: 60px;
    top: 50%;
    margin-top: -30px;
  }
  .p-home-voice .swiper-button-next svg, .p-home-voice .swiper-button-prev svg {
    width: 19px;
    height: 18px;
  }
}
.p-home-voice .swiper-button-prev {
  margin-left: calc(-37.5vw - 23px);
}
.p-home-voice .swiper-button-next {
  margin-left: calc(37.5vw - 23px);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-home-voice .swiper-pagination {
  top: unset !important;
  bottom: unset !important;
  position: static;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1080px) {
  .p-home-voice .swiper-button-prev {
    margin-left: calc(-38vw - 30px);
  }
  .p-home-voice .swiper-button-next {
    margin-left: calc(38vw - 30px);
  }
  .p-home-voice .swiper-pagination {
    margin-top: 1rem;
  }
}
.p-home-voice .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1 !important;
}
.p-home-voice .swiper-pagination-bullet-active {
  background: #6A5246 !important;
}
.p-home-salon .-L figure {
  display: block;
  width: 70%;
  margin: 0 auto 3rem;
}
.p-home-salon .-L h3 {
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.p-home-salon .-L h3 span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: clamp(14px, 0vw + 14px, 14px);
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
.p-home-salon .-R {
  display: none;
}
@media screen and (min-width: 1080px) {
  .p-home-salon .-L figure {
    display: none;
  }
  .p-home-salon .-R {
    display: block;
  }
}
.p-home-relations {
  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: 1080px) {
  .p-home-relations {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .p-home-relations .-L {
    width: 50%;
  }
  .p-home-relations .-R {
    width: 43%;
  }
}
.p-home-relations .p-home-calendar {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .p-home-relations .p-home-calendar {
    width: 42%;
  }
}
.p-home-relations .p-home-calendar .-calendar {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.p-home-relations .p-home-calendar .-calendar iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-home-relations .p-home-column {
  width: 100%;
  margin-top: clamp(156px, 3.16vw + 145.9px, 180px);
}
@media screen and (min-width: 1080px) {
  .p-home-relations .p-home-column {
    width: 42%;
    margin-top: 0;
  }
}
.p-home-relations .p-home-column 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;
  padding: 1rem 0;
  border-bottom: 1px solid #BBB0AB;
  position: relative;
}
.p-home-relations .p-home-column dl div a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-home-relations .p-home-column dl div dt {
  width: 116px;
}
.p-home-relations .p-home-column dl div dd {
  width: calc(100% - 136px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(14px, 0vw + 14px, 14px);
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-home-relations .p-home-column dl div dd span {
  font-size: clamp(13px, 0vw + 13px, 13px);
  display: block;
}
.p-home-relations .p-home-column dl div dd .-date {
  font-family: "Bellefair", serif;
  font-size: 13px;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-relations .p-home-column dl div:hover {
    color: #934849;
  }
}
/*# sourceMappingURL=home.css.map */