@charset "UTF-8";


@import url("../https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
/* ============================================
   style.css — Landing Page Styles
   ============================================ */

/* ------------------------------------------
   rem 基準設定
   html に font-size: 62.5% を設定することで
   1rem = 10px として扱えるようになる
   （例: 1.6rem = 16px, 2.4rem = 24px）
   ------------------------------------------ */
html {
  font-size: 62.5%;
  /* 10px base */
}


/* ------------------------------------------
   Animations
   ------------------------------------------ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ------------------------------------------
   Responsive Helpers
   ------------------------------------------ */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

body {
  font-family: "Shippori Mincho", serif;
}

/* ------------------------------------------
   メインビジュアル
   ------------------------------------------ */
.p-fv {
  position: relative;
  min-height: 100vh;
  background: url("..//images/top/fv_bg_2.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
  font-family: "Shippori Mincho", serif;
  color: #111;
}

.p-fv-medal-img {
  position: absolute;
  top: 0;
  right: 5%;
  z-index: 999;
  width: 140px;
}

.p-fv__overlay {
  position: absolute;
  z-index: 0;
  top: clamp(36%, calc(1.152vw + 13.197%), 36%);
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, clamp(520px, calc(18.848vw + 326.911px), 700px));
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0));
  filter: blur(50px);
}

.p-fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 80vh;
}

/* .p-fv__line {
  display: block;
  width: 40px;
  height: 3px;
  background: #ab951d;
  margin: 0 auto 80px;
} */

.p-fv__area {
  margin: 0 0 42px;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1;
  letter-spacing: 0.13em;
  font-weight: 600;
}

.p-fv__catch {
  /* margin: 0 0 58px; */
  /* margin-bottom: 34%; */
  /* margin-bottom: clamp(70px, calc(34.555vw - 284.188px), 400px); */
  font-size: clamp(42px, 4.5vw, 76px);
  line-height: 1.35;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.p-fv__logo {
  margin: 0 auto 40px;
}

.p-fv__logo img {
  /* width: clamp(260px, 28vw, 430px); */
  /* width: 200px; */
  width: clamp(150px, calc(5.236vw + 96.335px), 200px);
  height: auto;
  display: block;
  margin: 0 auto;
}


.p-fv__line {
  height: 2px;
  background: #ab951d;
  width: 100px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

.p-fv__price {
  margin-bottom: 52px;
}

.p-fv__price-main {
  margin: 0 0 16px;
  color: #ab951d;
  font-size: clamp(80px, 9vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.p-fv__price-main span {
  font-size: clamp(32px, 3vw, 52px);
  letter-spacing: 0.08em;
  margin-left: 0.1em;
}

.p-fv__price-label {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.p-fv__price-sub {
  margin: 0;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.p-fv__button {
  width: 480px;
  min-height: 80px;
  margin: 0 auto;
  padding: 0 48px;
  border: 1px solid #ab951d;
  background: rgba(255, 255, 255, 0.82);
  color: #ab951d;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  font-size: clamp(24px, 2.3vw, 24px);
  line-height: 1;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  margin-top: auto;
}

/* .p-fv__button:hover {
  opacity: 0.82;
  background: rgba(255, 255, 255, 0.95);
} */

.p-fv__button-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.p-fv__button-arrow {
  margin-left: 0;
  font-size: 30px;
  line-height: 1;
  transition: transform .35s ease;
}



.p-fv__button:hover {
  background: #b59647;
  color: #fff;
  border-color: #b59647;
}

.p-fv__button:hover .p-fv__button-icon {
  filter: brightness(0) invert(1);
  opacity: .95;
}

.p-fv__button:hover .p-fv__button-arrow {
  transform: translateX(6px);
}




/* ------------------------------------------
   コンセプト
   ------------------------------------------ */
/* .p-concept {
  background: url("../images/concept/concept_bg.jpg") center center / cover no-repeat;
  padding: 120px 60px;
  color: #222;
  font-family: "Shippori Mincho", serif;
}

.p-concept__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
} */


.p-concept {
  position: relative;
  overflow: hidden;
  background: #F6F4F1;
  padding: 120px 60px;
  color: #222;
  font-family: "Shippori Mincho", serif;
}

.p-concept::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 48vw;
  max-width: 720px;
  height: 48vw;
  max-height: 720px;
  background: url("../images/concept/tesy.png") left top / contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.p-concept__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.p-concept__image {
  flex: 0 0 43%;
}

.p-concept__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-concept__content {
  flex: 1;
}

.p-concept__label {
  margin: 0 0 10px;
  color: #a88b34;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}

.p-concept__title {
  margin: 0 0 44px;
  font-size: clamp(28px, calc(15.1px + 1.26vw), 40px);
  line-height: 1.55;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.p-concept__text {
  line-height: 2.25;
  letter-spacing: 0.06em;
}

.p-concept__text p {
  margin: 0 0 30px;
  font-size: clamp(14px, calc(9.7px + 0.42vw), 18px);
}

.p-concept__text p:last-child {
  margin-bottom: 0;
}



/* ------------------------------------------
   コンセプト下画像
   ------------------------------------------ */
.p-photo {
  margin: 0;
  padding: 0;
}

.p-photo__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.p-photo__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}


/* ------------------------------------------
   参考価格
   ------------------------------------------ */
.p-price {
  padding: 120px 60px;
  background: #f5f3ef;
}

.p-price__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.p-price__heading {
  text-align: center;
  margin-bottom: 40px;
}

.p-price__eyebrow {
  margin: 0 0 10px;
  color: #a88b34;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}

.p-price__heading-title {
  margin: 0 0 28px;
  color: #3e3e3e;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(30px, calc(19.3px + 1.05vw), 40px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.p-price__lead {
  margin: 0;
  color: #444;
  font-size: 18px;
  line-height: 2;
}

.p-price__card {
  background: #faf8f3;
  padding: 55px;
  margin-bottom: 60px;
}

.p-price__gallery {
  display: flex;
  gap: 14px;
}

.p-price__gallery-main {
  flex: 1;
}

.p-price__gallery-side {
  width: 37%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-price__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-price__gallery-main img {
  aspect-ratio: 1.8;
}

.p-price__gallery-sub img {
  aspect-ratio: 2.2;
}

.p-price__body {
  display: flex;
  margin-top: 30px;
}

.p-price__price {
  width: 34%;
  padding: 20px 40px 20px 10px;
  text-align: center;
  border-right: 1px solid #ddd5cb;
}

.p-price__spec {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #3d3d3d;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(38px, calc(35.9px + 0.21vw), 40px);
}

.p-price__label {
  margin: 34px 0 0;
  color: #555;
  font-size: 22px;
}

.p-price__price-main {
  color: #b38f35;
  margin: 10px 0;
}

.p-price__yen {
  font-size: 28px;
}

.p-price__value {
  color: inherit;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(54px, calc(47.6px + 0.63vw), 60px);
}

.p-price__unit {
  color: #000;
  font-size: clamp(24px, calc(19.7px + 0.42vw), 28px);
}

.p-price__tax {
  margin: 0;
  color: #666;
  font-size: 20px;
}

.p-price__divider {
  width: 100%;
  height: 1px;
  background: #ddd5cb;
  margin: 26px 0;
}

.p-price__price-sub {
  margin-bottom: 10px;
  color: #444;
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
}

.p-price__detail {
  flex: 1;
  padding-left: 30px;
}

.p-price__meta {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd5cb;
}

.p-price__meta-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-price__meta-item span {
  color: #666;
  background-color: #F3ECE3;
  padding: 5px 10px;
  font-size: 16px;
}

.p-price__meta-item strong {
  color: #444;
  font-weight: 400;
  font-size: 16px;
}

.p-price__title {
  margin: 20px 0 28px;
  color: #3b3b3b;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(24px, calc(17.6px + 0.63vw), 30px);
  font-weight: bold;
  line-height: 1.6;
}

.p-price__text {
  margin: 0 0 18px;
  color: #555;
  line-height: 2.2;
  font-size: 16px;
}

.p-price__cta {
  margin-top: 60px;
  text-align: center;
}

.p-price__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  height: 80px;
  background: #b29b2d;
  color: #fff;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
}



/* ------------------------------------------
   goodness
   ------------------------------------------ */
.p-goodness {
  background: #f6f4ef;
}

.p-goodness__heading {
  background: #faf8f5;
}

.p-goodness__heading-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 60px 60px;
}

.p-goodness__eyebrow {
  margin-bottom: 0;
  font-size: 18px;
  letter-spacing: .24em;
  font-family: "Shippori Mincho", serif;
  color: #000;
  letter-spacing: 0.25em;
  color: #18486f;
}

.p-goodness__title {
  /* margin: 0; */
  font-size: clamp(34px, 5vw, 45px);
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  letter-spacing: .08em;
  color: #000;
  letter-spacing: 0.25em;
  line-height: 70px;
}

.p-goodness__visual {
  position: relative;
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(30, 23, 16, .38),
      rgba(30, 23, 16, .38)),
    url("../images/goodness/bg_1.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.p-goodness__visual_2 {
  background-image:
    linear-gradient(rgba(30, 23, 16, .38),
      rgba(30, 23, 16, .38)),
    url("../images/goodness/bg_2.jpg");
}

.p-goodness__visual_3 {
  background-image:
    linear-gradient(rgba(30, 23, 16, .38),
      rgba(30, 23, 16, .38)),
    url("../images/goodness/bg_3.jpg");
}

.p-goodness__visual_4 {
  background-image:
    linear-gradient(rgba(30, 23, 16, .38),
      rgba(30, 23, 16, .38)),
    url("../images/goodness/bg_4.jpg");
}

.p-goodness__content {
  max-width: 1200px;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  color: #fff;
}

.p-goodness__number {
  margin-bottom: 0;
  font-size: 38px;
  font-family: "Shippori Mincho", serif;
  font-family: "Shippori Mincho", serif;
}

.p-goodness__copy {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 38px);
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  letter-spacing: .12em;
}

.p-goodness__sub {
  margin-bottom: 28px;
  font-size: 16px;
  letter-spacing: .1em;
  font-family: "Shippori Mincho", serif;
}

.p-goodness__text {
  max-width: 860px;
  font-size: 18px;
  line-height: 1.8;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {

  .p-goodness__heading-inner {
    padding: 40px 20px;
  }

  .p-goodness__visual {
    min-height: 100svh;
  }

  .p-goodness__content {
    height: 100svh;

    padding:
      0 20px 48px;
  }

  .p-goodness__number {
    font-size: 42px;
  }

  .p-goodness__copy {
    font-size: 30px;
  }

  .p-goodness__sub {
    font-size: 16px;
  }

  .p-goodness__text {
    font-size: 14px;

    line-height: 2;
  }

}

/* ------------------------------------------
   CTA
   ------------------------------------------ */
.p-cta {
  padding: 120px 60px;
  background: #f5f1ec;
}

.p-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-cta__title {
  margin: 0;
  color: #2f2f2f;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(38px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.7;
}

.p-cta__text {
  max-width: 860px;
  margin: 30px auto 50px;
  color: #5a5753;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.p-cta__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 480px;
  min-height: 80px;
  padding: 0 42px;
  border: 1px solid #b59647;
  background: transparent;
  color: #8c7530;
  text-decoration: none;
  transition:
    background-color .35s ease,
    color .35s ease,
    border-color .35s ease;
}

.p-cta__button-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.p-cta__button-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity .35s ease,
    filter .35s ease;
}

.p-cta__button-text {
  flex: 1;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.p-cta__button-arrow {
  flex-shrink: 0;
  font-size: 30px;
  line-height: 1;
  transition: transform .35s ease;
}

.p-cta__button:hover {
  background: #b59647;
  color: #fff;
  border-color: #b59647;
}

.p-cta__button:hover .p-cta__button-icon img {
  filter: brightness(0) invert(1);
  opacity: .95;
}

.p-cta__button:hover .p-cta__button-arrow {
  transform: translateX(6px);
}




/* ------------------------------------------
   家づくり相談
   ------------------------------------------ */
.p-consultation {
  padding: 120px 60px;
  background-color: #f8f3eb;
  /* background-image: url("../images/consultation/consultation-bg.png"); */
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

.p-consultation__bg {
  position: absolute;
  z-index: 1;
}

.p-consultation__bg--left {
  top: 0;
  left: 0;
}

.p-consultation__bg--right {
  top: 0;
  right: 0;
}

.p-consultation__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.p-consultation__heading {
  margin-bottom: 40px;
  text-align: center;
}

.p-consultation__eyebrow {
  margin: 0 0 10px;
  color: #a88b34;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}

.p-consultation__heading-title {
  margin: 0 0 28px;
  color: #3f3f3f;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(40px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.3;
  font-size: 40px;
}

.p-consultation__lead {
  margin: 0;
  color: #3f3f3f;
  font-size: 16px;
  /* font-weight: 500; */
  letter-spacing: 0.12em;
  line-height: 1.9;
}

.p-consultation__cards {
  display: flex;
  gap: 42px;
}

.p-consultation__card {
  flex: 1;
  padding-bottom: 40px;
  background-color: rgba(255, 253, 248, 0.72);
}

.p-consultation__image {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  margin-bottom: 34px;
  overflow: hidden;
}

.p-consultation__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-consultation__number {
  margin: 0 20px 26px;
  color: #a77d2c;
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: clamp(26px, calc(21.7px + 0.42vw), 30px);
}

.p-consultation__number::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 16px;
  background-color: #a77d2c;
}

.p-consultation__title {
  margin: 0 20px 22px;
  color: #3f3f3f;
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.5;
  font-size: clamp(19px, calc(12.6px + 0.63vw), 25px);
}

.p-consultation__text {
  margin: 0 20px;
  color: #3f3f3f;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: clamp(14px, calc(11.9px + 0.21vw), 16px);
}



/* ------------------------------------------
   私たちについて
   ------------------------------------------ */
.p-about {
  padding: 120px 60px;
  background: #faf8f3;
}

.p-about__inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  min-height: 760px;
  margin: 0 auto;
  background-color: #fffdf9;
}

.p-about__content {
  flex: 0 0 42%;
  padding: 100px 30px 96px;
  padding-top: clamp(100px, calc(80.7px + 1.88vw), 118px);
  box-sizing: border-box;
}

.p-about__eyebrow {
  margin: 0 0 10px;
  color: #a88b34;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
}

.p-about__eyebrow::after {
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 34px;
  background-color: #b28a3a;
}

.p-about__title {
  margin: 0 0 40px;
  color: #4a4a4a;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(32px, calc(15.9px + 1.57vw), 40px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.16em;
}

.p-about__text {
  color: #4a4a4a;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.15;
  letter-spacing: 0.12em;
}

.p-about__text p {
  margin: 0 0 20px;
}

.p-about__image {
  flex: 1;
  min-height: 760px;
}

.p-about__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ------------------------------------------
   ひだもり
   ------------------------------------------ */
.p-after {
  padding: 120px 60px;

  background: #ffffff;
}

.p-after__inner {
  max-width: 1200px;

  margin: 0 auto;

  text-align: center;
}

.p-after__logo {
  margin-bottom: 50px;
}

.p-after__logo img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}

.p-after__heading {
  margin-bottom: 40px;
}

.p-after__eyebrow {
  margin: 0 0 24px;
  color: #b29a46;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  letter-spacing: .16em;
  margin: 0 0 10px;
  color: #a88b34;
  font-size: 18px;
  font-family: "Shippori Mincho", serif;
}

.p-after__title {
  margin: 0;
  color: #2d2d2d;
  font-family: "Shippori Mincho", serif;
  /* font-size: clamp(42px, 5vw, 40px); */
  font-size: 40px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.6;
}

.p-after__content {
  max-width: 980px;
  margin: 0 auto 0px;
}

.p-after__subtitle {
  margin: 0 0 20px;
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(28px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.8;
}

.p-after__text {
  margin: 0;
  color: #444;
  font-size: 16px;
  line-height: 2.3;
  /* font-family: "Shippori Mincho", serif; */
  letter-spacing: .08em;
}

.p-after__timeline-wrap {
  position: relative;

  padding-top: 26px;
}

.p-after__timeline-line {
  position: absolute;
  top: 46%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c0ad63;
}

.p-after__timeline {
  display: flex;

  justify-content: space-between;

  position: relative;

  z-index: 1;
}

.p-after__item {
  width: 180px;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.p-after__year {
  margin: 0 0 36px;
  color: #2f2f2f;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  letter-spacing: .12em;
}

.p-after__dot {
  width: 18px;

  height: 18px;

  border-radius: 50%;

  background: #b59a3b;

  margin-bottom: 46px;

  flex-shrink: 0;
}

.p-after__desc {
  margin: 0;
  color: #2f2f2f;
  font-size: 18px;
  line-height: 1.9;
  font-family: "Shippori Mincho", serif;
  letter-spacing: .1em;
}

.p-after__note {
  margin-top: 90px;

  color: #8f8f8f;

  font-size: 15px;

  letter-spacing: .08em;

  line-height: 2;
}

@media (max-width: 767px) {

  .p-after {
    padding: 120px 20px;
  }

  .p-after__logo {
    margin-bottom: 40px;
  }

  .p-after__logo img {
    max-width: 240px;
  }

  .p-after__eyebrow {
    font-size: 14px;
  }

  .p-after__title {
    font-size: 34px;

    line-height: 1.8;
  }

  .p-after__subtitle {
    font-size: 24px;
  }

  .p-after__text {
    font-size: 14px;

    line-height: 2.2;
  }

  .p-after__timeline-wrap {
    overflow-x: auto;

    padding-bottom: 10px;
  }

  .p-after__timeline {
    width: 900px;

    justify-content: space-between;
  }

  .p-after__timeline-line {
    width: 900px;
  }

  .p-after__item {
    width: 160px;
  }

  .p-after__year {
    font-size: 22px;
  }

  .p-after__desc {
    font-size: 14px;
  }

  .p-after__note {
    margin-top: 56px;

    font-size: 13px;
  }

}

/* ------------------------------------------
   キャンペーン
   ------------------------------------------ */
.p-gift {
  padding: 120px 60px;

  background-image:
    linear-gradient(rgba(255, 255, 255, .18),
      rgba(255, 255, 255, .18)),
    url("../images/gift/gift_bg.jpg");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;
}

.p-gift__inner {
  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.p-gift__card {
  position: relative;
  width: 100%;
  /* max-width: 1000px; */
  padding:
    80px 70px 64px;
  background:
    rgba(255, 255, 255, .82);
  backdrop-filter: blur(2px);
  text-align: center;
}

.p-gift__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 160px solid #ab9828;
  border-right: 160px solid transparent;
}

.p-gift__badge span {
  position: absolute;
  top: -135px;
  left: 16px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  text-align: left;
  line-height: 1.4;
  letter-spacing: .12em;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  display: block;
}

.p-gift__lead {
  margin: 0 0 20px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  letter-spacing: .12em;
}

.p-gift__content {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 50px;
}

.p-gift__image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 50px;
}

.p-gift__image {
  flex-shrink: 0;
  width: 200px;
}

.p-gift__image img {
  display: block;

  width: 100%;

  height: auto;

  object-fit: contain;
}

.p-gift__info {
  flex: 1;
}

.p-gift__eyebrow {
  position: relative;
  margin: 0 0 30px;
  color: #b59a34;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  letter-spacing: .04em;
  font-family: "Shippori Mincho", serif;
}

.p-gift__eyebrow::after {
  content: "";

  display: block;

  width: 96px;

  height: 1px;

  margin: 16px auto 0;

  background: #c1ad62;
}

.p-gift__price {
  margin-bottom: 24px;

  color: #000;

  line-height: 1;
}

.p-gift__amount {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(90px, 11vw, 120px);
  letter-spacing: .04em;
  font-family: "Shippori Mincho", serif;
}

.p-gift__unit {
  font-size: clamp(26px, 3vw, 40px);
  font-family: "Shippori Mincho", serif;
}

.p-gift__title {
  margin: 0 0 42px;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.5;
}

.p-gift__notes {
  color: #767676;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .05em;
}

.p-gift__notes p {
  margin: 0 0 16px;
}

.p-gift__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 480px;
  min-height: 80px;
  margin-top: 42px;
  padding: 0 34px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #b59a34;
  color: #b59a34;
  text-decoration: none;
  transition:
    .35s ease;
}

.p-gift__button-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}


.p-gift__button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-gift__button:hover {
  background: #b59a34;
  color: #fff;
}

.p-gift__button:hover .p-gift__button-icon img {
  filter: brightness(0) invert(1);
}


.p-gift__button-text {
  flex: 1;
  text-align: center;
  font-size: 24px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: .12em;
}

.p-gift__button-arrow {
  font-size: 32px;

  transition: .35s;
}

.p-gift__button:hover {
  background: #b59a34;

  color: #fff;
}

.p-gift__button:hover .p-gift__button-arrow {
  transform: translateX(8px);
}

@media (max-width: 767px) {

  .p-gift {
    padding: 120px 20px;
  }

  .p-gift__card {
    padding:
      70px 24px 44px;
  }

  .p-gift__badge {
    border-top-width: 120px;
    border-right-width: 120px;
    border-top-width: clamp(100px, calc(71.301px + 7.653vw), 130px);
    border-right-width: clamp(100px, calc(71.301px + 7.653vw), 130px);
  }

  .p-gift__badge span {
    top: -88px;

    left: 10px;

    font-size: 13px;
  }

  .p-gift__lead {
    margin-bottom: 34px;

    font-size: 22px;
  }

  .p-gift__content {
    flex-direction: column;

    gap: 28px;
  }

  .p-gift__image {
    width: 180px;
  }

  .p-gift__title {
    font-size: 24px;
  }

  .p-gift__notes {
    font-size: 11px;
  }

  .p-gift__button {
    width: 100%;

    min-height: 76px;

    padding: 0 20px;
  }

  .p-gift__button-text {
    font-size: 18px;
  }

  .p-gift__button-arrow {
    font-size: 22px;
  }

}

/* ------------------------------------------
   会社概要
   ------------------------------------------ */
.p-company {
  padding: 120px 60px;

  background: #f7f4ef;
}

.p-company__inner {
  max-width: 1200px;

  margin: 0 auto;
}

.p-company__heading {
  margin-bottom: 70px;

  text-align: center;
}

.p-company__eyebrow {
  margin: 0 0 10px;
  color: #a88b34;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}

.p-company__title {
  margin: 0;
  color: #2d2d2d;
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.p-company__table {
  border-bottom: 1px solid #dfd8ce;
}

.p-company__row {
  display: flex;
  align-items: center;
  padding: 40px 32px;
  border-top: 1px solid #dfd8ce;
}

.p-company__label {
  flex: 0 0 350px;
  color: #2f2f2f;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.8;
  flex: 0 0 clamp(350px, calc(274.8px + 7.33vw), 420px);
}

.p-company__value {
  flex: 1;
  color: #2f2f2f;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.9;
  word-break: break-word;
}

@media (max-width: 1024px) {

  .p-company__row {
    padding: 36px 20px;
  }

  .p-company__label {
    flex-basis: 260px;

    font-size: 18px;
  }

  .p-company__value {
    font-size: 18px;
  }

}

@media (max-width: 767px) {

  .p-company {
    padding: 120px 20px;
  }

  .p-company__heading {
    margin-bottom: 48px;
  }

  .p-company__eyebrow {
    font-size: 14px;

    letter-spacing: 0.18em;
  }

  .p-company__title {
    font-size: 38px;

    letter-spacing: 0.1em;
  }

  .p-company__row {
    flex-direction: column;

    align-items: flex-start;

    gap: 14px;

    padding: 28px 0;
  }

  .p-company__label {
    flex: none;

    font-size: 16px;

    letter-spacing: 0.12em;

    line-height: 1.6;
  }

  .p-company__value {
    width: 100%;

    font-size: 16px;

    letter-spacing: 0.08em;

    line-height: 2;
  }

}

/* ------------------------------------------
   お問い合わせ
   ------------------------------------------ */
.p-contact {
  background: #f4efed;
  padding: 80px 20px 80px;
  color: #111;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.08em;
}

.p-contact,
.p-contact * {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.p-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.p-contact__head {
  margin-bottom: 54px;
  text-align: center;
}

.p-contact__label {
  margin: 0 0 10px;
  color: #a88b34;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}

.p-contact__title {
  margin: 0 0 36px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.p-contact__lead {
  margin: 0 0 24px;
  font-size: 16px;
}

.p-contact__tel {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.p-contact__time {
  margin: 0;
  font-size: 16px;
}

.p-contact__form {
  max-width: 980px;
  margin: 0 auto;
}

.p-contact__block {
  border-top: 1px solid #d8d0ca;
}

.p-contact__block:last-of-type {
  border-bottom: 1px solid #d8d0ca;
}

.p-contact__row {
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 48px 0;
  align-items: flex-start;
}

.p-contact__row--start {
  align-items: flex-start;
}

.p-contact__term {
  flex: 0 0 210px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  line-height: 1.8;
}

.p-contact__required,
.p-contact__optional {
  min-width: 58px;
  padding: 5px 0;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.08em;
}

.p-contact__required {
  background: #a89519;
}

.p-contact__optional {
  background: #999;
}

.p-contact__body {
  flex: 1;
  min-width: 0;
}

/* お申し込み内容 */
.p-contact__radioGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.p-contact__radioCard {
  display: flex;
  align-items: center;
  gap: 18px;
  width: calc(50% - 5px);
  min-width: 0;
  min-height: 80px;
  padding: 26px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.25s ease;
}

.p-contact__radioCard--wide {
  width: 100%;
}

.p-contact__radioCard:hover {
  background: #faf7f0;
}

.p-contact__radioCard input[type="radio"] {
  flex: 0 0 16px;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  margin: 0;
  padding: 0;
  border: 1px solid #bcbcbc;
  border-radius: 50%;
  background: #fff;
  appearance: none;
  box-sizing: border-box;
  position: relative;
}

.p-contact__radioCard input[type="radio"]:checked {
  border-color: #a89519;
}

.p-contact__radioCard input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #a89519;
}

.p-contact__radioCard span {
  display: block;
  flex: 1;
  color: #111;
  font-size: 15px;
  line-height: 1.9;
  white-space: normal;
  word-break: keep-all;
}

.p-contact__radioCard small {
  display: block;
  margin-top: 8px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* 入力欄 */
.p-contact input:not([type="radio"]):not([type="checkbox"]),
.p-contact select,
.p-contact textarea {
  width: 100%;
  border: none;
  background: #fff;
  box-sizing: border-box;
  color: #111;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.p-contact input:not([type="radio"]):not([type="checkbox"]),
.p-contact select {
  height: 50px;
  padding: 0 24px;
}

.p-contact textarea {
  min-height: 250px;
  padding: 24px;
  resize: vertical;
}

.p-contact input::placeholder,
.p-contact textarea::placeholder {
  color: #999;
}

.p-contact__date {
  max-width: 560px;
}

.p-contact__date label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.p-contact__date label span {
  flex: 0 0 48px;
  font-size: 15px;
}

.p-contact__note {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 2;
}

.p-contact__half {
  display: flex;
  gap: 28px;
}

.p-contact__half label {
  flex: 1;
}

.p-contact__half label span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.p-contact__zip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.p-contact__zip span {
  font-size: 18px;
}

.p-contact__zip input {
  max-width: 260px;
}

.p-contact__zip button {
  height: 50px;
  padding: 0 28px;
  border: none;
  background: #000;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.p-contact__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 46px;
}

.p-contact__checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.p-contact__checks input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
  background: #fff;
  appearance: none;
  box-sizing: border-box;
}

.p-contact__checks input[type="checkbox"]:checked {
  background: #a89519;
}

.p-contact__checks--time {
  max-width: 560px;
}

.p-contact__checks--time label {
  width: 180px;
}

.p-contact__bottomNote {
  margin: 54px 0 42px;
  text-align: center;
  font-size: 16px;
}

.p-contact__submit {
  text-align: center;
}

.p-contact__submit button {
  width: 480px;
  max-width: 100%;
  height: 60px;
  border: none;
  background: #a89519;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.p-contact__submit button:hover {
  opacity: 0.82;
}




.p-contact__row--time {
  align-items: flex-start;
  flex-direction: column;
}

.p-contact__row--time .p-contact__term {
  flex: 0 0 0px;
  white-space: nowrap;
}

.p-contact__row--time .p-contact__body {
  width: 70%;
  margin-left: auto;
}

.p-contact__checks--time {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 70px;
}

.p-contact__checks--time label {
  width: auto;
  font-size: 16px;
  letter-spacing: 0.12em;
}

.p-contact__checks--time input[type="checkbox"] {
  width: 18px;
  height: 18px;
}


@media screen and (max-width: 767px) {
  .p-contact {
    padding: 60px 20px 60px;
  }

  .p-contact,
  .p-contact * {}

  .p-contact__inner {}

  .p-contact__head {
    margin-bottom: 40px;
  }

  .p-contact__label {
    font-size: 14px;
  }

  .p-contact__title {
    font-size: 30px;
    margin: 0 0 30px;
  }

  .p-contact__lead {
    font-size: 14px;
  }

  .p-contact__tel {
    font-size: 28px;
  }

  .p-contact__time {
    font-size: 14px;
  }

  .p-contact__form {}

  .p-contact__block {}

  .p-contact__block:last-of-type {}

  .p-contact__row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 30px 0;
  }

  .p-contact__row--start {
    padding: 30px 0;
  }

  .p-contact__term {
    flex: none;
    width: 100%;
  }

  .p-contact__required,
  .p-contact__optional {}

  .p-contact__required {
    font-size: 14px;
  }

  .p-contact__optional {}

  .p-contact__body {}

  .p-contact__radioGrid {
    gap: 8px;
  }

  .p-contact__radioCard,
  .p-contact__radioCard--wide {
    width: 100%;
    min-height: auto;
    padding: 20px 20px;
    gap: 15px;
  }

  .p-contact__radioCard:hover {}

  .p-contact__radioCard input[type="radio"] {}

  .p-contact__radioCard input[type="radio"]:checked {}

  .p-contact__radioCard input[type="radio"]:checked::after {}

  .p-contact__radioCard span {
    font-size: 14px;
  }

  .p-contact__radioCard small {
    font-size: 14px;
  }

  .p-contact input:not([type="radio"]):not([type="checkbox"]),
  .p-contact select,
  .p-contact textarea {}

  .p-contact textarea {
    min-height: 200px;
  }

  .p-contact input::placeholder,
  .p-contact textarea::placeholder {}

  .p-contact__date {}

  .p-contact__date label {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .p-contact__date label span {
    flex: 0;
  }

  .p-contact__note {}

  .p-contact__half {
    flex-direction: column;
    gap: 18px;
  }

  .p-contact__half label {}

  .p-contact__half label span {
    font-size: 15px;
  }

  .p-contact__zip {
    flex-wrap: wrap;
  }

  .p-contact__zip span {}

  .p-contact__zip input {
    flex: 1;
    max-width: none;
  }

  .p-contact__zip button {}

  .p-contact__checks {
    gap: 18px 28px;
  }

  .p-contact__checks label,
  .p-contact__checks--time label {
    width: calc(50% - 14px);
  }

  .p-contact__checks input[type="checkbox"] {}

  .p-contact__checks input[type="checkbox"]:checked {}

  .p-contact__checks--time {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .p-contact__checks--time label {
    font-size: 16px;
  }

  .p-contact__bottomNote {
    margin: 20px 0 30px;
  }

  .p-contact__submit {}

  .p-contact__submit button {
    width: 90%;
  }

  .p-contact__submit button:hover {}

  .p-contact__row--time {}

  .p-contact__row--time .p-contact__term {
    flex: none;
    white-space: normal;
  }

  .p-contact__row--time .p-contact__body {
    width: 100%;
  }

  .p-contact__checks--time input[type="checkbox"] {}
}

/* @media screen and (max-width: 1024px) {
  .p-contact {
    padding: 72px 32px 88px;
  }

  .p-contact__row {
    gap: 32px;
  }

  .p-contact__term {
    flex-basis: 190px;
  }
} */





/* @media screen and (max-width: 480px) {
  .p-contact__tel {
    font-size: 26px;
  }

  .p-contact__checks label,
  .p-contact__checks--time label {
    width: 100%;
  }

  .p-contact__zip button {
    width: 100%;
  }
} */





/* ------------------------------------------
   フッター
   ------------------------------------------ */
.p-footer {
  width: 100%;
  /* height: 170px; */
  background: #eeeae4;
  color: #555;
  font-family: "Shippori Mincho", serif;
}

.p-footer__outer {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 42px 80px 28px;

}

.p-footer__inner {

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-footer__brand {
  display: flex;
  align-items: center;
}

.p-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-footer__logo-icon {
  width: 86px;
  height: auto;
}

.p-footer__logo-icon path {
  fill: none;
  stroke: #a99716;
  stroke-width: 5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.p-footer__logo-icon path:nth-child(3),
.p-footer__logo-icon path:nth-child(4) {
  fill: #a99716;
  stroke: none;
}

.p-footer__logo-text {
  margin: 0;
  color: #aaa;
  font-size: 20px;
  line-height: 0.9;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.p-footer__info {
  /* min-width: 390px; */
  text-align: left;
}

.p-footer__name {
  margin: 0 0 14px;
  color: #333;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.p-footer__company,
.p-footer__address {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.p-footer__copy {
  /* position: absolute;
  left: 50%;
  bottom: 24px; */
  /* transform: translateX(-50%); */
  text-align: center;
  margin: 0;
  color: #aaa;
  font-size: 16px;
  letter-spacing: 0.2em;
  white-space: nowrap;
  margin-top: 40px;
}


.p-footer__logo {
  margin: 0 auto 48px;
}

.p-footer__logo img {
  /* width: clamp(260px, 28vw, 430px); */
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* ------------------------------------------
   ここからスマホ
   ------------------------------------------ */


/* ------------------------------------------
   メインビジュアル
   ------------------------------------------ */

/* Tablet */
@media screen and (max-width: 1024px) {
  .p-fv {
    padding: 70px 32px;
  }

  .p-fv-medal-img {
    position: absolute;
    top: 0;
    right: 2%;
    z-index: 999;
    width: 100px;
  }

  .p-fv__line {
    margin-bottom: 30px;
  }

  .p-fv__catch {
    margin-bottom: 48px;
  }

  .p-fv__button {
    min-height: 88px;
  }
}

@media screen and (max-width: 767px) {
  .p-fv {
    min-height: 100svh;
    padding: 56px 20px;
    background-position: center center;
  }

  .p-fv-medal-img {
    position: absolute;
    top: 0;
    right: 2%;
    z-index: 999;
    width: 70px;
  }

  .p-fv__overlay {
    /* background: rgba(255, 255, 255, 0.66); */
    top: 22%;
    width: 380px;
  }

  .p-fv__inner {}

  .p-fv__logo img {
    width: 130px;
  }

  .p-fv__area {
    margin-bottom: 28px;
    font-size: 17px;
    letter-spacing: 0.08em;
  }

  .p-fv__catch {
    margin-bottom: 36px;
    font-size: 34px;
    letter-spacing: 0.06em;
  }

  .p-fv__logo {
    margin-bottom: 30px;
  }

  .p-fv__logo img {}

  .p-fv__price {
    margin-bottom: 36px;
  }

  .p-fv__price-main {
    font-size: 72px;
    letter-spacing: 0.08em;
  }

  .p-fv__price-main span {
    font-size: 28px;
  }

  .p-fv__price-label {
    font-size: 20px;
  }

  .p-fv__price-sub {
    font-size: 18px;
    line-height: 1.7;
  }

  .p-fv__button {
    min-height: 60px;
    padding: 0 24px;
    gap: 18px;
    font-size: 18px;
    width: 90%;
  }

  .p-fv__button:hover {}

  .p-fv__button-icon {
    width: 30px;
    height: 30px;
  }

  .p-fv__button-arrow {
    margin-left: 12px;
    font-size: 30px;
  }
}

@media screen and (max-width: 480px) {
  .p-fv__catch {
    font-size: 30px;
  }

  .p-fv__price-main {
    font-size: 62px;
  }

  .p-fv__button {
    /* font-size: 20px; */
  }
}



/* ------------------------------------------
   コンセプト
   ------------------------------------------ */

/* タブレット */
@media screen and (max-width: 1024px) {
  .p-concept {
    padding: 100px 40px;
  }

  .p-concept__inner {
    gap: 60px;
  }

  .p-concept__image {
    flex-basis: 42%;
  }

  .p-concept__text {
    font-size: 16px;
  }
}


@media screen and (max-width: 767px) {
  .p-concept {
    padding: 60px 20px;
  }

  .p-concept::before {
    /* content: ""; */
    /* position: absolute; */
    top: -7px;
    left: -6px;
    width: 300px;
    /* max-width: 738px; */
    height: 48vw;
    /* max-height: 720px; */
    /* background: url(images/concept/tesy.png) left top / contain no-repeat; */
    /* opacity: 0.55; */
    /* pointer-events: none; */
    /* z-index: 0; */
  }

  .p-concept__inner {
    flex-direction: column;
    gap: 30px;
  }

  .p-concept__image {
    width: 100%;
    max-width: 420px;
    flex: none;
  }

  .p-concept__image img {
    width: 80%;
    margin: 0 auto;
  }

  .p-concept__content {
    width: 100%;
  }

  .p-concept__label {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .p-concept__title {
    margin-bottom: 32px;
    font-size: 24px;
    font-size: clamp(22px, calc(20.087px + 0.510vw), 24px);
    line-height: 1.6;
  }

  .p-concept__text {
    font-size: 15px;
    line-height: 2;
  }

  .p-concept__text p {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .p-concept__text p:last-child {}
}

@media screen and (max-width: 480px) {
  /* .p-concept {
    padding: 64px 20px;
  } */

  .p-concept__title {
    /* font-size: 26px; */
  }
}





/* ------------------------------------------
   参考価格
   ------------------------------------------ */


@media (max-width: 1024px) {

  .p-price__gallery,
  .p-price__body {
    flex-direction: column;
  }

  .p-price__gallery-side,
  .p-price__price {
    width: 100%;
  }

  .p-price__price {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding: 20px 0 40px;
  }

  .p-price__detail {
    padding: 0px 0 0;
  }

  .p-price__title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .p-price {
    padding: 60px 20px;
  }

  .p-price__inner {}

  .p-price__heading {
    margin-bottom: 30px;
  }

  .p-price__eyebrow {}

  .p-price__heading-title {
    font-size: 30px;
    margin: 0 0 20px;
  }

  .p-price__lead {
    font-size: 13px;
  }

  .p-price__card {
    padding: 20px 20px 0 20px;
    margin-bottom: 30px;
  }

  .p-price__gallery {}

  .p-price__gallery-main {}

  .p-price__gallery-side {}

  .p-price__gallery img {}

  .p-price__gallery-main img {}

  .p-price__gallery-sub img {}

  .p-price__body {
    margin-top: 0px;
  }

  .p-price__price {
    padding: 20px 0 20px;
  }

  .p-price__spec {
    /* flex-direction: column; */
    /* justify-content: center; */
    /* display: flex; */
    gap: 8px;
    display: block;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
  }

  .p-price__label {
    margin: 20px 0 0px;
    font-size: 18px;
  }

  .p-price__price-main {}

  .p-price__yen {}

  .p-price__value {
    font-size: 50px;
  }

  .p-price__unit {
    font-size: 20px;
  }

  .p-price__tax {
    font-size: 18px;
  }

  .p-price__divider {
    margin: 20px 0;
  }

  .p-price__price-sub {
    font-size: 26px;
  }

  .p-price__detail {}

  .p-price__meta {
    flex-direction: column;
    gap: 18px;
    padding-bottom: 20px;
  }

  .p-price__meta-item {}

  .p-price__meta-item span {
    font-size: 14px;
  }

  .p-price__meta-item strong {}

  .p-price__title {
    font-size: 20px;
    margin: 20px 0 20px;
  }

  .p-price__text {
    font-size: 14px;
  }

  .p-price__cta {
    margin-top: 0px;
  }

  .p-price__cta a {
    width: 80%;
    min-width: auto;
    font-size: 16px;
    padding: 15px 0;
    max-width: 100%;
    height: 60px;
  }
}





/* ------------------------------------------
   goodness
   ------------------------------------------ */

@media (max-width: 767px) {

  .p-goodness {}

  .p-goodness__heading {}

  .p-goodness__heading-inner {
    padding: 60px 20px 30px 20px;
  }

  .p-goodness__eyebrow {
    font-size: 14px;
  }

  .p-goodness__title {
    font-size: 27px;
    line-height: 1;
    margin-top: 10px;
  }

  .p-goodness__visual {
    min-height: 100svh;
  }

  .p-goodness__visual_2 {}

  .p-goodness__visual_3 {}

  .p-goodness__visual_4 {}

  .p-goodness__content {
    height: 100svh;
    padding: 0 20px 70px;
  }

  .p-goodness__number {
    font-size: 30px;
  }

  .p-goodness__copy {
    font-size: 27px;
  }

  .p-goodness__sub {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .p-goodness__text {
    font-size: 14px;
    line-height: 2;
  }

}



/* ------------------------------------------
   CTA
   ------------------------------------------ */
@media (max-width: 767px) {

  .p-cta {
    padding: 60px 20px;
  }

  .p-cta__title {
    font-size: 25px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .p-cta__text {
    margin: 20px auto 35px;
    font-size: 14px;
    line-height: 2.2;
  }

  .p-cta__button {
    width: 90%;
    min-height: 60px;
    gap: 18px;
    padding: 0 24px;
  }

  .p-cta__button-text {
    font-size: 18px;

    white-space: normal;
  }

  .p-cta__button-arrow {
    font-size: 20px;
  }

  .p-cta__button-icon {
    width: 22px;

    height: 22px;
  }

}

/* ------------------------------------------
   私たちについて
   ------------------------------------------ */

/* Responsive */
@media (max-width: 767px) {
  .p-about {
    padding: 60px 20px;
  }

  .p-about__inner {
    flex-direction: column;
    min-height: auto;
  }

  .p-about__content {
    flex: none;
    width: 100%;
    padding: 40px 20px 20px;
    order: 2;
  }

  .p-about__eyebrow {
    font-size: 14px;
  }

  .p-about__eyebrow::after {}

  .p-about__title {
    margin: 10px 0 25px;
    font-size: 30px;
  }

  .p-about__text {
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 2;
  }

  .p-about__text p {}

  .p-about__image {
    min-height: 320px;
    order: 1;
  }

  .p-about__image img {
    height: 320px;
  }
}




/* ------------------------------------------
   家づくり相談
   ------------------------------------------ */


/* @media (max-width: 1024px) {
  .p-consultation__cards {
    flex-wrap: wrap;
    gap: 36px;
  }

  .p-consultation__card {
    flex: 0 1 calc(50% - 18px);
  }
} */

@media (max-width: 1024px) {
  .p-consultation__cards {
    flex-wrap: wrap;
    gap: 36px;
  }

  .p-consultation__card {
    flex: 0 1 calc(50% - 18px);
  }
}

@media (max-width: 767px) {
  .p-consultation {
    padding: 60px 20px;
  }

  .p-consultation__bg--left img,
  .p-consultation__bg--right img {
    width: 130px;
  }

  .p-consultation__heading {
    margin-bottom: 26px;
  }

  .p-consultation__eyebrow {
    font-size: 14px;
    margin: 0 0 10px;
  }

  .p-consultation__heading-title {
    font-size: 30px;
  }

  .p-consultation__lead {
    font-size: 14px;
    text-align: left;
  }

  .p-consultation__cards {
    display: block;
  }

  .p-consultation__card {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .p-consultation__card:last-child {
    margin-bottom: 0;
  }

  .p-consultation__image {
    margin-bottom: 30px;
  }

  .p-consultation__number {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .p-consultation__title {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 15px;
    font-size: 22px;
  }

  .p-consultation__text {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 14px;
  }
}





/* ------------------------------------------
   ひだもり
   ------------------------------------------ */


@media (max-width: 767px) {

  .p-after {
    padding: 60px 20px;
  }

  .p-after__inner {}

  .p-after__logo {
    margin-bottom: 30px;
  }

  .p-after__logo img {
    max-width: 220px;
  }

  .p-after__heading {}

  .p-after__eyebrow {
    font-size: 14px;
    margin: 0 0 10px;
  }

  .p-after__title {
    /* font-size: 30px; */
    font-size: clamp(26px, calc(22.173px + 1.021vw), 30px);
    line-height: 1.8;
  }

  .p-after__content {}

  .p-after__subtitle {
    font-size: 20px;
  }

  .p-after__text {
    /* font-size: 14px; */
    /* font-size: clamp(12px, calc(10.087px + 0.510vw), 14px); */
    line-height: 2.2;
  }

  .p-after__timeline-wrap {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .p-after__timeline-line {
    width: 900px;
  }

  .p-after__timeline {
    width: 900px;
    justify-content: space-between;
  }

  .p-after__item {
    width: 160px;
  }

  .p-after__year {
    font-size: 22px;
  }

  .p-after__dot {}

  .p-after__desc {
    font-size: 14px;
  }

  .p-after__note {
    margin-top: 56px;
    font-size: 13px;
  }

}




/* ------------------------------------------
   キャンペーン
   ------------------------------------------ */


@media (max-width: 767px) {

  .p-gift {
    padding: 60px 20px;
  }

  .p-gift__inner {}

  .p-gift__card {
    padding: 70px 15px 20px;
  }

  .p-gift__badge {
    border-top-width: 130px;
    border-right-width: 130px;
    top: 5px;
    left: 5px;
    border-top-width: clamp(100px, calc(71.301px + 7.653vw), 130px);
    border-right-width: clamp(100px, calc(71.301px + 7.653vw), 130px);
  }

  .p-gift__badge span {
    /* top: -105px; */
    left: 10px;
    /* font-size: 16px; */
    font-size: clamp(14px, calc(12.087px + 0.510vw), 16px);
    top: clamp(-105px, calc(-75.651px - 3.827vw), -90px);
  }

  .p-gift__lead {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .p-gift__content {
    flex-direction: column;
    gap: 28px;
  }

  .p-gift__image-area {
    flex-direction: column;
    gap: 20px 0;
  }

  .p-gift__image {
    width: 180px;
  }

  .p-gift__image img {}

  .p-gift__info {}

  .p-gift__eyebrow {}

  .p-gift__eyebrow::after {}

  .p-gift__price {
    margin-bottom: 20px;
  }

  .p-gift__amount {
    font-size: 60px;
  }

  .p-gift__unit {
    font-size: 24px;
  }

  .p-gift__title {
    font-size: 24px;
    margin: 0 0 10px;
  }

  .p-gift__notes {
    font-size: 11px;
  }

  .p-gift__notes p {
    font-size: 12px;
    text-align: left;
  }

  .p-gift__button {
    width: 90%;
    min-height: 60px;
    padding: 0 20px;
  }

  .p-gift__button-icon {}

  .p-gift__button-icon img {}

  .p-gift__button-text {
    font-size: 18px;
  }

  .p-gift__button-arrow {
    font-size: 22px;
  }

  .p-gift__button:hover {}

  .p-gift__button:hover .p-gift__button-arrow {}

}






/* ------------------------------------------
   会社概要
   ------------------------------------------ */


/* @media (max-width: 1024px) {

  .p-company__row {
    padding: 36px 20px;
  }

  .p-company__label {
    flex-basis: 260px;

    font-size: 18px;
  }

  .p-company__value {
    font-size: 18px;
  }

} */

@media (max-width: 767px) {

  .p-company {
    padding: 60px 20px;
  }

  .p-company__inner {}

  .p-company__heading {
    margin-bottom: 30px;
  }

  .p-company__eyebrow {
    font-size: 14px;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
  }

  .p-company__title {
    font-size: 30px;
    letter-spacing: 0.1em;
  }

  .p-company__table {}

  .p-company__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 25px 15px;
  }

  .p-company__label {
    flex: none;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.6;
  }

  .p-company__value {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 2;
  }
}




/* ------------------------------------------
   フッター
   ------------------------------------------ */
@media screen and (max-width: 767px) {
  .p-footer {}


  .p-footer__outer {
    max-width: 100%;
    display: flex;
    padding: 40px 20px 10px;
    flex-direction: column;
  }

  .p-footer__inner {
    flex-direction: column;
  }

  .p-footer__brand {}

  .p-footer__logo {
    margin: 0 auto 30px;
  }

  .p-footer__logo img {}

  .p-footer__logo-icon {}

  .p-footer__logo-text {}

  .p-footer__info {}

  .p-footer__name {
    font-size: 18px;
  }

  .p-footer__company,
  .p-footer__address {}

  .p-footer__copy {
    text-align: left;
    font-size: 14px;
    margin-top: 20px;
  }
}