/* ==========================================================================
Foundation / Utility
========================================================================== */
*{
  box-sizing: border-box;
}
:root {
  --clr-black: #282B2C;
  --clr-green: #43a4a1;
  --clr-brown: #a6937c;
  --clr-brown2: #A8967B;
  --clr-brown3: #F6F4F1;
  --clr-border: rgba(40, 43, 44, 0.4);
  --clr-winered: #A83A44;

  --clr-green-grade: linear-gradient(180deg, #2d5d41 0%, #1a3525 100%);

  --ff-mincho: "Zen Old Mincho", serif;
  --ff-gothic: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
}

.u-txt-sm {
  font-size: 14px;
}
.u-txt-md {
  font-size: 16px;
}
.u-txt-lg {
  font-size: 48px;
}
.u-txt-xl {
  font-size: 64px;
}

.u-txt-green { color: var(--clr-green); }
.u-txt-brown { color: var(--clr-brown); }

.u-txt-center {
  text-align: center;
}

.u-sp-only {
  display: none;
}
@media screen and (max-width:767px) {
  .u-sp-only {
    display: block;
  }
  .u-txt-sm {
    font-size: 12px;
  }
  .u-txt-md {
    font-size: 4vw;
  }
  .u-txt-lg {
    font-size: 9.6vw;
  }
  .u-txt-xl {
    font-size: 9vw;
  }
}

/* ==========================================================================
Layout
========================================================================== */
.l-content {
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
}

.l-header__logo {
  pointer-events: none;
}
.l-header__nav {
  display: none;
}
.l-header__button-list {
  display: none;
}
.l-header__tel {
  display: none;
}

.l-header-mobile {
  display: none;
}

.l-footer {
  padding: 20px;
  background: url(../img/p-area-lp/footer-bg.png) 0 0 / cover no-repeat;
}

.l-fixed-cta {
  display: none;
}

#fixed-cta-bar {
  display: none !important;
}

/* ==========================================================================
Component
========================================================================== */
/* c-btn-main */
.c-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 80px;
  border-radius: 40px;
  font-size: 32px;
  font-weight: 400;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(130deg, #A83A44 64.13%, #DB949A 75.81%, #A83A44 85.37%);
  box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.2);
  transition: .3s;
}
.c-btn-main:hover {
  opacity: .7;
}
.c-btn-main::after {
  content: "▶";
  margin-left: 10px;
  font-size: 20px;
}

@media screen and (max-width:767px) {
  .c-btn-main {
    font-size: 5.4vw;
    max-width: 280px !important;
    height: 57px !important;
  }
}

.c-btn-action {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  min-height: 120px;
}
.c-btn-action.-tel {
  background: linear-gradient(to right, #255d3e, #1a422c);
}
.c-btn-action.-tel::before {
  content: "";
  width: 40px; height: 40px;
  background: url('icon-tel.svg') no-repeat center/contain;
  margin-right: 15px;
}
.c-btn-action.-web {
  background-color: var(--clr-beige);
}
.c-btn-action.-web::before {
  content: ""; /* メールアイコン */
  width: 40px; height: 40px;
  background: url('icon-mail.svg') no-repeat center/contain;
  margin-right: 15px;
}
.c-btn-action__inner { display: flex; flex-direction: column; }
.c-btn-action__note { font-size: 13px; margin-bottom: 5px; }
.c-btn-action__label { font-size: 28px; font-weight: bold; line-height: 1.2; }
.c-btn-action__number { font-size: 18px; margin-top: 5px; font-family: serif; }


/* c-flow */
.c-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-flow__item {
  background-color: var(--clr-brown);
  color: #fff;
  width: 100%;
  max-width: 220px;
  padding: 10px 5px;
  font-size: 14px;
  line-height: 1.4;
}
.c-flow__item small {
  display: block;
  font-size: 11px;
}
.c-flow__arrow {
  color: var(--clr-brown);
  padding: 4px 0;
  font-size: 16px;
}
@media screen and (max-width:767px) {
  .c-flow__item {
    font-size: 3.2vw;
    padding: 2vw 1vw;
  }
  .c-flow__item small {
    font-size: 2.7vw;
  }
}

/* c-hall-card */
.c-hall-card {
  background: url(../img/p-area-lp/c-hall-card-bg.png) 0 0 / cover no-repeat;
  padding: 15px;
  box-shadow: 15px 15px 0 var(--clr-brown2);
}
.c-hall-card__img-wrap {
  border: 4px solid var(--clr-brown2);
  margin-bottom: 15px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.c-hall-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.c-hall-card__ttl {
  font-size: 24px;
  font-weight: 400;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 5px;
  margin: 0 0 10px;
}
.c-hall-card__info {
  margin-bottom: 20px;
}
.c-hall-card__info-row {
  display: flex;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dotted var(--clr-brown2);
}
.c-hall-card__info-label {
  font-family: var(--ff-gothic);
  font-weight: 400;
  width: 5em;
  color: var(--clr-brown2);
}
.c-hall-card__info-val {
  font-family: var(--ff-gothic);
  width: calc(100% - 5em);
  margin-left: 0;
}
.c-hall-card__features {
  padding: 0;
  list-style: none;
}
.c-hall-card__feature-item {
}
.c-hall-card__feature-item:not(:first-child) {
  display: none;
}
.c-hall-card__feature-item-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 5%;
  margin-bottom: 15px;
}
.c-hall-card__feature-image {
  width: 45%;
}
.c-hall-card__feature-image img {
  width: 100%;
}
.c-hall-card__feature-tag {
  display: inline-block;
  background-color: var(--clr-feature-tag);
  color: #fff;
  font-size: 0.8rem;
  padding: 2px 10px;
  margin-bottom: 5px;
}
.c-hall-card__feature-ttl {
  width: 50%;
  font-family: var(--ff-gothic);
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.c-hall-card__feature-txt {
  font-family: var(--ff-gothic);
  font-size: 14px;
  line-height: 1.7;
}

.c-more-btn {
  display: block;
  margin: 0 auto;
  border: 1px solid var(--clr-brown2);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 10px;
  background: var(--clr-brown2);
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
}
.c-more-btn:hover {
  opacity: 0.7;
}
.c-more-btn.js-active {
  display: none;
}

.c-section-ttl {
  text-align: center;
  margin-bottom: 40px;
}
.c-section-ttl__en {
  font-size: 24px;
  color: var(--clr-green);
}
.c-section-ttl__ja {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
}
@media screen and (max-width:767px) {
  .c-section-ttl {
    margin-bottom: 6.2vw;
  }
  .c-section-ttl__en {
    font-size: 4.3vw;
  }
  .c-section-ttl__ja {
    font-size: 6.2vw;
  }
}

.c-review {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
  margin-bottom: 40px;
}
.c-review__stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 14px;
  position: relative;
  padding: 0 43px;
}
.c-review__stars::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 35px;
  height: 70px;
  background: url(../img/p-area-lp/review-left.png) 0 0 / cover no-repeat;
}
.c-review__stars::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 35px;
  height: 70px;
  background: url(../img/p-area-lp/review-right.png) 0 0 / cover no-repeat;
}
.c-review__stars-txt {
  text-align: center;
  margin-bottom: 5px;
}
.c-review__stars-stars {
  position: relative;
  width: 145px;
}
.c-review__stars-cover {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #fff;
}
.c-review__stars-stars img {
  width: 100%;
}
.c-review__stars-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-review__stars-num {
  font-size: 64px;
  line-height: 0.9;
}
.c-review__stars-note {
  font-size: 12px;
}
.c-review__number {
  letter-spacing: 1px;
}
.c-review__number .u-txt-lg {
  font-size: 36px;
}
@media screen and (max-width:767px) {
  .c-review {
    flex-direction: column;
  }
  .c-review__stars-stars {
    width: 33vw;
  }
  .c-review__stars::before {
    top: 2vw;
  }
  .c-review__stars::after {
    top: 2vw;
  }
  .c-review__number .u-txt-lg {
    font-size: 6.2vw;
  }
}

.c-plan-card {
  display: flex;
  position: relative;
  background-color: #fff;
  padding: 7px; /* 外枠と内枠の隙間 */
  height: 100%;
}
.c-plan-card__inner {
  border: 1px solid var(--clr-brown2);
  padding: 40px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-plan-card__badge {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 90px;
  z-index: 10;
}
.c-plan-card__ttl {
  font-size: 32px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin: 0;
}
.c-plan-card__ttl::before {
  content: "◆";
  color: var(--clr-brown2);
  margin-right: 8px;
  font-size: 0.8em;
}
.c-plan-card__info {
  font-size: 14px;
  color: #666;
  margin-top: 0;
  margin-bottom: 8px;
}
.c-plan-card__desc {
  font-family: var(--ff-gothic);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 8px;
  text-align: left;
}
.c-plan-card__price-box {
  text-align: center;
}
.c-plan-card__price-main {
  border-bottom: 1px dashed var(--clr-brown2);
}
.c-plan-card__label {
  font-size: 14px;
  margin-right: 5px;
}
.c-plan-card__num {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
.p-plans__item:nth-child(2) .c-plan-card__num,
.p-plans__item:nth-child(3) .c-plan-card__num {
  color: var(--clr-winered);
}
.c-plan-card__unit {
  font-size: 24px;
}
.p-plans__item:nth-child(2) .c-plan-card__unit,
.p-plans__item:nth-child(3) .c-plan-card__unit {
  color: var(--clr-winered);
}
.c-plan-card__tax {
  font-size: 16px;
}
.p-plans__item:nth-child(2) .c-plan-card__tax,
.p-plans__item:nth-child(3) .c-plan-card__tax {
  color: var(--clr-winered);
}
.c-plan-card__price-sub-num {
  font-size: 24px;
}

.c-case-list {
  display: flex;
  gap: 7%;
  padding: 0;
  margin: 80px 0 0;
  list-style: none;
}
.c-case-list.slick-slider {
  margin: 30px 0 0;
}
.c-case-list__item {
  font-family: var(--ff-gothic);
  line-height: 1.5;
  width: 29%;
  padding: 180px 28px 20px;
  background: #fff;
  border-radius: 8px;
  position: relative;
}
.slick-slider .c-case-list__item {
  margin: 55px 60px 0 30px;
}
.c-case-list__img {
  position: absolute;
  top: -36px;
  right:  -40px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 8px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.35);
}
.c-case-list__img img {
  width: 100%;
}
.c-case-list__info {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--clr-brown2);
}
.c-case-list__info-area {
  margin-bottom: 10px;
}
.c-case-list__info-theme {
  margin-bottom: 10px;
}
.c-case-list__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
@media screen and (max-width:767px) {
  .c-case-list {
    margin: 0;
  }
  .c-case-list__item {
    width: 100%;
    margin: 14vw 11vw 0 5vw;
    padding: 41vw 5vw 5vw;
  }
  .slick-slider .c-case-list__item {
    margin: 14vw 11vw 0 5vw;
    padding: 41vw 5vw 5vw;
  }
  .c-case-list__img {
    top: -6vw;
    right: -6vw;
  }
  .c-case-list__nav {
    margin-top: 5vw;
  }
}

.c-btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  text-decoration: none;
  color: #fff !important;
  border-radius: 8px;
  height: 100%;
  transition: opacity 0.3s;
}
.c-btn-contact:hover {
  opacity: 0.9;
}
/* 電話ボタン固有のスタイル */
.c-btn-contact.-tel {
  background: var(--clr-green-grade);
}
/* Webボタン固有のスタイル */
.c-btn-contact.-web {
  background-color: var(--clr-brown);
}
.c-btn-contact__icon {
  width: 45px;
  margin-top: 10px;
  margin-right: 20px;
  flex-shrink: 0;
}
.c-btn-contact.-tel .c-btn-contact__icon {
  margin-top: 17px;
}
.c-btn-contact__icon img {
  width: 100%;
  height: auto;
}
.c-btn-contact__body {
  display: flex;
  flex-direction: column;
}
.c-btn-contact__note {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.c-btn-contact__label {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 2px;
}
.c-btn-contact__number {
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: 1px;
}

.c-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding: 10px 20px;
  background: linear-gradient(0deg, #A8967B 0%, #FFFAF2 100%);
  z-index: 10;
}
.c-fixed-footer__lead {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  color: var(--clr-winered);
  margin-bottom: 10px;
}
.c-fixed-footer__btns {
  display: flex;
  gap: 2%;
  max-width: 760px;
  margin: 0 auto;
}
.c-fixed-footer__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49%;
  height: 57px;
  font-size: 20px;
  text-decoration: none;
  color: #fff !important;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  transition: .3s;
}
.c-fixed-footer__btn:hover {
  opacity: .7;
}
.c-fixed-footer__btn.-contact {
  background: #B0974C;
}
.c-fixed-footer__btn.-tel {
  background: linear-gradient(0deg, #1A3326 0%, #2A6E4A 100%);
}
@media screen and (max-width:767px) {
  .c-fixed-footer__lead {
    font-size: 5.4vw;
    margin-bottom: 2vw;
  }
  .c-fixed-footer__btns {
    gap: 5vw;
  }
  .c-fixed-footer__btn {
    font-size: 5.4vw;
  }
}

/* ==========================================================================
Project
========================================================================== */
/* p-area-lp */
#p-area-lp {
  font-family: var(--ff-mincho);
  color: var(--clr-black);
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width:767px) {
  #p-area-lp {
    padding-top: 60px;
  }
}

.p-cta {
  background-color: var(--clr-brown3);
  padding: 40px 0;
  border-top: 2px solid var(--clr-brown2);
  border-bottom: 2px solid var(--clr-brown2);
}
.p-cta__message {
  color: var(--clr-green);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.p-cta__action-group {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}
.p-cta__balloons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-family: var(--ff-gothic);
  margin-bottom: 20px;
}
.p-cta__balloon {
  background: #fff;
  padding: 10px 15px;
  font-size: 14px;
  position: relative;
  box-shadow: 3px 3px 0 var(--clr-brown2);
  border-radius: 4px;
  position: relative;
}
.p-cta__balloon.-left::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 45px;
  border-right: 29px solid var(--clr-brown2);
  border-bottom: 17px solid transparent;
  height: 0;
  width: 0;
}
.p-cta__balloon.-left::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 43px;
  border-right: 27px solid #fff;
  border-bottom: 16px solid transparent;
  height: 0;
  width: 0;
}
.p-cta__balloon.-right::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 65px;
  border-left: 29px solid var(--clr-brown2);
  border-bottom: 17px solid transparent;
  height: 0;
  width: 0;
}
.p-cta__balloon.-right::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 67px;
  border-left: 27px solid #fff;
  border-bottom: 16px solid transparent;
  height: 0;
  width: 0;
}
@media (max-width: 768px) {
  .p-cta {
    padding: 10vw 0;
  }
  .p-cta__balloons {
    line-height: 1.2;
  }
  .p-cta__message {
    font-size: 4.3vw;
  }
  .p-cta__action-group {
    flex-direction: column;
  }
  .c-btn-action__label {
    font-size: 20px;
  }
}

/* p-mv */
.p-mv {
  padding: 100px 20px 10px;
  background: url(../img/p-area-lp/mv-bg.png) 0 100% / cover no-repeat;
  position: relative;
}
.p-mv__img {
  position: absolute;
  top: 0;
  right: 0;
}
.p-mv__subttl {
  font-size: 36px;
  line-height: 1.4;
  padding-bottom: 15px;
  margin: 0 0 30px;
  position: relative;
}
.p-mv__subttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: url(../img/p-area-lp/mv-subttl-underline-pc.png) 0 100% / contain no-repeat;
}
.p-mv__ttl {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 0 2px #fff;
  position: relative;
}
.p-mv__box {
  max-width: 612px;
}
.p-mv__badges {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  position: relative;
}
.p-mv__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-cta__lead {
  margin-top: 0;
  margin-bottom: 8px;
  text-align: center;
}
.p-cta__lead-deco {
  font-size: 10px;
  color: var(--clr-winered);
  margin: 0 4px;
}
.p-cta__lead-strong {
  font-size: 24px;
  color: var(--clr-winered);
}
.p-mv__cta .c-btn-main {
  max-width: 400px;
  height: 74px;
}
.p-mv__note {
  font-family: var(--ff-gothic);
  font-size: 10px;
  max-width: 400px;
  margin-top: 34px;
  margin-left: 100px;
}
.p-mv__note-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-mv__note-item {
  line-height: 1.4;
  padding-left: 3em;
  text-indent: -3em;
}
@media (max-width: 767px) {
  .p-mv {
    padding: 20px;
    margin-bottom: 76px;
    background: url(../img/p-area-lp/mv-img-sp.jpg) 0 100% / cover no-repeat;
  }
  .p-mv__img {
    display: none;
  }
  .p-mv__subttl {
    font-size: 4.3vw;
    padding-bottom: 6vw;
    margin: 0 0 2vw;
  }
  .p-mv__subttl::after {
    background: url(../img/p-area-lp/mv-subttl-underline-sp.png) 0 100% / contain no-repeat;
  }
  .p-mv__ttl {
    font-size: 6.2vw;
    margin-bottom: 92vw;
  }
  .p-mv__box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 4px 4px 0;
    padding: 16px 8px;
    margin-left: -20px;
  }
  .p-mv__badges {
    gap: 10px;
  }
  .p-cta__lead-strong {
    font-size: 5.4vw;
  }
  .p-mv__note {
    max-width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px;
    margin: 0;
  }
}

/* p-concerns */
.p-concerns {
  padding-bottom: 60px;
}
.p-concerns .p-concerns__arrow-bg {
  color: #fff;
  background: url(../img/p-area-lp/p-concerns-bg.jpg) 0 0 / cover no-repeat;
  padding: 64px 20px;
  margin-bottom: 40px;
  /* 矢印型の背景を作る（5つの点で形を作る） */
  /* 左上(0,0) → 右上(100,0) → 右下(100,84) → 中央下(50,100) → 左下(0,84) */
  clip-path: polygon(0% 0%, 100% 0%, 100% 84%, 50% 100%, 0% 84%);
}
.p-concerns .l-content {
  max-width: 1000px;
}
.p-concerns__ttl {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 40px;
}
.p-concerns__list {
  padding-left: 0;
  list-style: none;
}
.p-concerns__item {
  font-family: var(--ff-gothic);
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 26px;
  padding-left: 42px;
  position: relative;
}
.p-concerns__item:last-child {
  margin-bottom: 0;
}
.p-concerns__item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 25px;
  height: 25px;
  background: url(../img/p-area-lp/icon-check.svg) 0 0 / contain no-repeat;
}
.p-concerns__bottom {
  text-align: center;
}
.p-concerns__bottom-txt {
  font-size: 32px;
  margin: 0;
}
.p-concerns__bottom-txt span {
  font-size: 40px;
}
@media screen and (max-width:767px) {
  .p-concerns {
    padding-bottom: 40px;
  }
  .p-concerns .p-concerns__arrow-bg {
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);
    padding: 10vw 7vw 15vw;
    margin-bottom: 10vw;
  }
  .p-concerns__ttl {
    font-size: 6.2vw;
    text-align: left;
    margin-bottom: 20px;
  }
  .p-concerns__item {
    font-size: 3.8vw;
    padding-left: 11vw;
    margin-bottom: 6vw;
  }
  .p-concerns__item::before {
    top: 50%;
    width: 7vw;
    height: 7vw;
    transform: translateY(-50%);
  }
  .p-concerns__bottom-txt {
    font-size: 5.4vw;
    line-height: 1.5;
  }
  .p-concerns__bottom-txt span {
    font-size: 7.6vw;
  }
}

/* p-reasons */
.p-reasons {
  padding: 60px 20px;
  background: var(--clr-brown3);
}
.p-reasons .l-content {
  max-width: 880px;
}
.p-reasons__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}
.p-reasons__list {
  padding: 0;
  list-style: none;
}
.p-reasons__item {
  position: relative;
  font-size: 24px;
  letter-spacing: 1px;
  padding: 22px 30px 22px 86px;
  margin-bottom: 20px;
  background: #fff;
}
.p-reasons__item:last-child {
  margin-bottom: 0;
}
.p-reasons__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 120px solid var(--clr-green);
  border-bottom: 98px solid transparent;
}
.p-reasons__item::after {
  content: "1";
  position: absolute;
  top: 5px;
  left: 26px;
  font-size: 36px;
  line-height: 1.4;
  color: #fff;
}
.p-reasons__item:nth-child(2):after {
  content: "2";
}
.p-reasons__item:nth-child(3):after {
  content: "3";
}
.p-reasons__item .u-txt-lg {
  font-size: 36px;
}
@media screen and (max-width:767px) {
  .p-reasons {
    padding: 10vw 5vw;
  }
  .p-reasons__ttl {
    flex-direction: column;
    font-size: 4.3vw;
    margin-bottom: 9vw;
  }
  .p-reasons__item {
    font-size: 4.3vw;
    line-height: 1.6;
    padding: 5vw 5vw 5vw 12vw;
  }
  .p-reasons__item::before {
    border-left: 14vw solid var(--clr-green);
    border-bottom: 14vw solid transparent;
  }
  .p-reasons__item::after {
    top: 1.4vw;
    left: 2.8vw;
    font-size: 4.7vw;
  }
  .p-reasons__item .u-txt-lg {
    font-size: 7.3vw;
  }
}

/* p-comparison */
.p-comparison {
  padding: 0 20px 60px;
  background: var(--clr-brown3);
}
.p-comparison__ttl {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.p-comparison__table {
  width: 100%;
  border-collapse: separate; /* 枠線を繋げるためにseparateを使用 */
  border-spacing: 0;
  table-layout: fixed;
  max-width: 600px;
  margin: 40px auto 0;
  font-family: var(--ff-gothic);
}
.p-comparison__label,
.p-comparison__cell {
  padding: 20px 10px;
  border-bottom: 1px dotted var(--clr-border);
  vertical-align: middle;
  text-align: center;
}
.p-comparison__label {
  width: 25%;
  text-align: left;
  font-weight: 400;
  padding-left: 10px;
}
.p-comparison__cell {
  width: 26%;
  padding: 20px;
}
.p-comparison__cell.-featured {
  border-left: 4px solid var(--clr-green);
  border-right: 4px solid var(--clr-green);
  width: 29%;
}
.-header .p-comparison__cell.-featured {
  border-top: 4px solid var(--clr-green);
  border-radius: 15px 15px 0 0;
}
.-footer .p-comparison__cell.-featured {
  border-bottom: 4px solid var(--clr-green);
  border-radius: 0 0 15px 15px;
}
.p-comparison__table-ttl {
  font-size: 24px;
  margin: 0;
  font-weight: 400;
}
.-header .p-comparison__cell.-featured .p-comparison__table-ttl {
  font-weight: bold;
}
.p-comparison__subttl {
  font-size: 12px;
  font-weight: 400;
  margin: 4px 0 0;
}
.p-comparison__icon {
  display: block;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}
.p-comparison__icon img {
  display: inline;
}
.p-comparison__txt {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.-featured .p-comparison__txt {
  font-size: 16px;
}
.p-comparison__row.-footer th,
.p-comparison__row.-footer td {
  vertical-align: text-top;
  border-bottom: none;
}
@media screen and (max-width:767px) {
  .p-comparison__ttl {
    font-size: 5.4vw;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 2.7vw;
  }
  .p-comparison__ttl .u-txt-lg {
    font-size: 8.5vw;
  }
  .p-comparison .u-txt-md {
    font-size: 3.4vw;
    letter-spacing: 0;
    text-align: left;
  }
  .p-comparison__table-ttl {
    font-size: 4.3vw;
  }
  .p-comparison__subttl {
    font-size: 2.7vw;
  }
  .p-comparison__label {
    width: 17%;
    padding: 2vw;
    line-height: 1.6;
    text-align: center;
  }
  .p-comparison__cell {
    padding: 5.2vw 2vw;
  }
  .p-comparison__cell.-featured {
    width: 31%;
    padding: 5.2vw 1vw;
  }
  .-featured .p-comparison__txt {
    font-size: 3.75vw;
  }
}

/* p-halls */
.p-halls {
  padding: 120px 20px 80px;
}
.p-halls__header {
  text-align: left;
  margin-bottom: 40px;
  position: relative;
}
.p-halls__en-ttl {
  position: absolute;
  top: -42px;
  left: 0;
  font-family: var(--ff-mincho);
  font-size: 64px;
  line-height: 1;
  letter-spacing: 2px;
  margin: 0;
  color: rgba(168, 150, 123, 0.3);
  z-index: 1;
}
.p-halls__sub-ttl {
  font-size: 24px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  width: max-content;
  padding-bottom: 5px;
  margin: 0 0 10px;
  border-bottom: 1px solid var(--clr-green);
}
.p-halls__main-ttl {
  font-size: 36px;
  position: relative;
  z-index: 2;
  margin: 0;
}
.p-halls__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
}
.p-halls__list.slick-slider {
  display: block;
  margin-bottom: 50px !important; /* ドット用の余白 */
}
.p-halls__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}
.p-halls__list.slick-slider .c-hall-card {
  margin: 0 20px;
}
.p-halls__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.slick-list {
  padding: 0 !important;
}
.slick-track {
  padding-bottom: 15px;
}
/* 矢印共通スタイル */
.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  background-color: #a6937c; /* 画像に近いベージュ */
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 0; /* 元の文字を消す */
  cursor: pointer;
  position: relative;
  z-index: 10;
  transition: opacity 0.3s;
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.8;
}
/* 矢印のアイコン（疑似要素で作成） */
.slick-prev::before,
.slick-next::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 55%;
}
.slick-prev {
  left: 0;
  order: 1;
}
.slick-prev::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.slick-next {
  right: 0;
  order: 3;
}
.slick-next::before {
  transform: translate(-50%, -50%) rotate(135deg);
  left: 45%;
}
/* ドットのスタイル */
.slick-dots {
  bottom: -40px;
  display: flex !important;
  justify-content: center;
  list-style: none;
  padding: 0;
  order: 2;
}
.slick-dots li {
  margin: 0 8px;
}
.slick-dots li button {
  font-size: 0;
  width: 14px;
  height: 14px;
  background-color: #e5e0d8; /* アクティブでない時の薄い色 */
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  display: block;
}
/* アクティブなドット */
.slick-dots li.slick-active button {
  background-color: #a6937c; /* 濃いベージュ */
}
@media (max-width: 768px) {
  .p-halls {
    padding: 20vw 5vw 10vw;
  }
  .p-halls__en-ttl {
    top: -6vw;
    font-size: 9.6vw;
  }
  .p-halls__sub-ttl {
    font-size: 4.3vw;
  }
  .p-halls__main-ttl {
    font-size: 6.2vw;
  }
  .p-halls__list {
    grid-template-columns: 1fr;
  }
  .p-halls .slick-list {
    width: 100vw;
    margin-left: -5vw;
  }
  .c-hall-card__ttl {
    font-size: 5.4vw;
  }
  .c-hall-card__info {
    margin-bottom: 5vw;
  }
  .slick-prev,
  .slick-next {
    width: 9.6vw;
    height: 9.6vw;
  }

}

/* p-voice */
.p-voice {
  padding: 80px 20px;
}
.p-voice .l-content {
  max-width: 900px;
}
@media screen and (max-width:767px) {
  .p-voice {
    padding: 16vw 5vw;
  }
}

/* p-plans */
.p-plans {
  background: url(../img/p-area-lp/p-plans-bg.png) 0 0 / cover no-repeat;
  padding: 100px 0;
}
.p-plans__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4%;
  list-style: none;
  padding: 0;
  margin: 80px 0 0;
}
.p-plans__item {
  width: 31%;
  display: flex;
  flex: 1;
}
@media (max-width: 767px) {
  .p-plans {
    background: url(../img/p-area-lp/p-plans-bg-sp.png) 0 0 / cover no-repeat;
    padding: 9.6vw 5vw;
  }
  .p-plans__list {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .p-plans__item {
    width: 100%;
    max-width: 500px;
    margin-bottom: 40px;
  }
  .c-plan-card__ttl {
    font-size: 6.2vw;
    align-self: baseline;
  }
  .c-plan-card__ttl::before {
    font-size: 7vw;
  }
  .c-plan-card__info {
    font-size: 3.2vw;
    align-self: baseline;
    padding-left: 10vw;
    line-height: 1;
  }
  .c-plan-card__desc {
    font-size: 3.75vw;
  }
  .c-plan-card__num {
    font-size: 9.6vw;
  }
  .c-plan-card__unit {
    font-size: 5.4vw;
  }
  .c-plan-card__tax {
    font-size: 3.75vw;
  }
  .c-plan-card__badge {
    top: 3.2vw;
    right: 4vw;
    width: 21.5vw;
  }
}

.p-case {
  padding: 80px 20px;
  background: var(--clr-brown3);
}
.p-case .c-section-ttl {
  margin-bottom: 30px;
}
.p-case__lead {
  font-family: var(--ff-gothic);
}
@media screen and (max-width:767px) {
  .p-case {
    padding: 10vw 5vw;
  }
  .p-case .c-section-ttl {
    margin-bottom: 6.2vw;
  }
}

.p-faq {
  padding: 80px 20px;
}
.p-faq__header {
  margin-bottom: 60px;
}
.p-faq__en-ttl {
  display: block;
  font-family: serif;
  font-size: 24px;
  color: var(--clr-accent);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.p-faq__main-ttl {
  font-size: 32px;
  font-weight: normal;
  color: var(--clr-text-main);
}
.p-faq__list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--clr-border);
  list-style: none;
  padding: 0;
}
.p-faq__item {
  border-bottom: 1px solid var(--clr-border);
}
/* 質問部分（ボタン） */
.p-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  color: var(--clr-text-main);
  transition: background-color 0.3s;
}
.p-faq__question:hover {
  background-color: #f9f9f9;
}
.p-faq__q-icon {
  font-family: var(--ff-mincho);
  font-size: 28px;
  margin-right: 30px;
  width: 1em;
}
.p-faq__q-text {
  flex: 1;
  line-height: 1.6;
}
/* 矢印（CSSで描画） */
.p-faq__arrow {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 20px;
  transition: .3s;
}
.js-open .p-faq__arrow {
  transform: rotate(-180deg);
}
.p-faq__arrow::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s;
}
.p-faq__item.is-open .p-faq__arrow::before {
  transform: translate(-50%, -20%) rotate(-135deg);
}
.p-faq__answer {
  display: none;
}
.p-faq__a-inner {
  display: flex;
  padding: 20px 12px;
  font-size: 16px;
  line-height: 1.8;
}
.p-faq__a-icon {
  font-size: 24px;
  line-height: 1;
  margin-right: 40px;
  padding-top: 4px;
}
@media (max-width: 768px) {
  .p-faq {
    padding: 10.7vw 5vw;
  }
  .p-faq__question {
    font-size: 3.75vw;
    padding: 5.4vw 3vw;
  }
  .p-faq__q-icon {
    margin-right: 3.75vw;
    font-size: 6.2vw;
  }
  .p-faq__a-inner {
    padding: 5.4vw 3vw;
  }
  .p-faq__a-icon {
    font-size: 5.4vw;
    margin-right: 6vw;
  }
  .p-faq__a-text {
    font-size: 3.75vw;
    line-height: 1.5;
  }
}

/* p-contact */
.p-contact {
  padding: 60px 20px;
  background: url(../img/p-area-lp/p-contact-bg.png) 100% 0 / cover no-repeat;
}
.p-contact__ttl {
  font-size: 36px;
  margin-bottom: 24px;
}
.p-contact__txt {
  font-size: 14px;
  margin-bottom: 40px;
}
.p-contact__list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-contact__item {
  flex: 1;
}
@media (max-width: 768px) {
  .p-contact {
    padding: 16vw 5vw;
    background: url(../img/p-area-lp/p-contact-bg-sp.png) 100% 0 / cover no-repeat;
  }
  .p-contact__ttl {
    font-size: 8.1vw;
    letter-spacing: 0px;
    line-height: 1.6;
  }
  .p-contact__txt {
    font-size: 3.75vw;
    line-height: 1.6;
  }
  .p-contact__list {
    flex-direction: column;
  }
  .c-btn-contact {
    padding: 3vw 5vw;
    min-height: 22vw;
  }
  .c-btn-contact__body {
    line-height: 1;
  }
  .c-btn-contact__label {
    font-size: 6.2vw;
  }
  .c-btn-contact__number {
    font-size: 3.2vw;
  }
  .c-btn-contact__icon {
    width: 9.5vw;
    margin-top: 0;
    margin-right: 4vw;
  }
  .c-btn-contact.-tel .c-btn-contact__icon {
    margin-top: 0;
  }
  .c-btn-contact__note {
    font-size: 3.2vw;
  }
  .c-btn-contact.-web .c-btn-contact__label {
    font-size: 4.3vw;
  }
}

.footer-logo {
  margin-bottom: 16px;
}
@media screen and (max-width:767px) {
  .footer-logo {
    margin-bottom: 4.3vw;
    max-width: 36vw;
  }
  .footer-address {
    font-size: 3.75vw;
    line-height: 1.6;
  }
}