@charset "UTF-8";

/* -------------------------------------------------
  File name : style.css
---------------------------------------------------- */

#pgm *,
#pgm *::before,
#pgm *::after {
  box-sizing: border-box;
}
/* ==============================
  root
============================== */
#pgm {
  --base: #fff8ec;
  --base-light: #fffdf9;
  --item: #fcf0e4;
  --paper: #fffdf8;
  --gold: #a8792b;
  --gold-dark: #7c5518;
  --gold-light: #d8ba82;
  --red: #b51219;
  --text: #20242a;
  --white: #fff;
  --border: rgba(216, 186, 130, .55);
  --shadow: 0 8px 18px rgba(120, 76, 18, .1);
  --shadow-strong: 0 12px 28px rgba(117, 79, 25, .12);
  --radius-sm: .7rem;
  --radius-md: 1rem;
  --radius-lg: 1.4rem;
  --content: 760px;
  --ls-sm: .04em;
  --ls-md: .06em;
  --ls-lg: .08em;
  --ls-xl: .16em;
  --bg-wave: url("assets/images/bg-wave.svg");
}
/* ==============================
  common
============================== */
#pgm {
  margin: 0;
  background: var(--base);
  color: var(--text);
}
#pgm .pgm-lp {
  overflow: hidden;
  background: var(--base);
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
}
#pgm img {
  display: block;
  max-width: 100%;
  height: auto;
}
#pgm a {
  color: inherit;
}
#pgm figure {
  margin: 0;
}
#pgm .lp-section {
  position: relative;
  padding: 4.2rem 1.2rem;
  overflow: hidden;
}
#pgm .lp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-wave);
  background-size: 380px auto;
  background-repeat: repeat;
  opacity: .12;
  pointer-events: none;
}
#pgm .lp-section > * {
  position: relative;
  z-index: 2;
}
#pgm .section-head {
  text-align: center;
}
#pgm .section-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: 0 0 .8rem;
  color: var(--gold-dark);
  font-size: 1.1rem;
  letter-spacing: var(--ls-xl);
}
#pgm .section-sub::before,
#pgm .section-sub::after {
  content: "";
  width: 3.8rem;
  height: 1px;
  background: var(--gold);
}
#pgm .section-title {
  margin: 0;
  font-size: clamp(1.6rem, 7vw, 3rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: var(--ls-lg);
  text-align: center;
}
#pgm .section-title span {
  color: var(--gold-dark);
}
#pgm .section-text {
  margin: 1.2rem 0 0;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: var(--ls-md);
}


#pgm .btn-primary,
#pgm .btn-tel,
#pgm .btn-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.8rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(1.25rem, 4.8vw, 2.3rem);
  line-height: 1;
  letter-spacing: var(--ls-md);
  text-align: center;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
#pgm .btn-primary,
#pgm .btn-tel {
  max-width: 900px;
  margin-inline: auto;
}
#pgm .btn-cta {
  min-height: 4.2rem;
  font-size: clamp(1.25rem, 4vw, 2.2rem);
}
#pgm .btn-primary,
#pgm .btn-cta {
  overflow: hidden;
  color: var(--white);
  cursor: pointer;
}
#pgm .btn-primary {
  background: linear-gradient(180deg, #c61e1e 0%, #a90f14 100%);
  border: 2px solid #d7b56f;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .22);
}
#pgm .btn-cta {
  background: linear-gradient(180deg, #c61a21 0%, var(--red) 100%);
  border: 2px solid #cfb066;
  box-shadow: 0 8px 18px rgba(136, 0, 0, .18);
}
#pgm .btn-primary::before,
#pgm .btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.22) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}
#pgm .btn-primary:hover::before,
#pgm .btn-cta:hover::before {
  transform: translateX(130%);
}
#pgm .btn-primary::after {
  content: "›";
  position: absolute;
  top: 0;
  right: .4rem;
  bottom: 0;
  width: 1em;
  height: 100%;
  margin-block: auto;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
  transition: .2s ease-in-out;
}
#pgm .btn-cta::after {
  content: "›";
  position: absolute;
  top: -5px;
  right: 1.4rem;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 100%;
  margin-block: auto;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
  transition: .2s ease-in-out;
}
#pgm .btn-cta::after {
  right: .3em;
  font-size: 1.4em;
}
#pgm .btn-primary:hover,
#pgm .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(136, 0, 0, .22);
}
#pgm .btn-primary:active,
#pgm .btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(136, 0, 0, .16);
}
#pgm .btn-primary:hover::after,
#pgm .btn-cta:hover::after {
  transform: translateX(4px);
}
#pgm .btn-tel {
  gap: .6rem;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, .62);
  border: 2px solid var(--gold-dark);
}
#pgm .btn-tel:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.96);
  border-color: #c29a54;
  box-shadow: 0 10px 24px rgba(145, 112, 45, .12);
}
#pgm .btn-tel:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(145, 112, 45, .08);
}
#pgm .btn-tel i {
  margin-right: .7rem;
}
#pgm .card-base {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

@media screen and (max-width: 767px) {
  #pgm .btn-primary::after {
    top: 50% !important;
  }
}

/* ==============================
  header
============================== */
#pgm .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.4rem 1.2rem;
}
#pgm .site-logo {
  margin: 0;
}
#pgm .site-logo img {
  width: 230px;
}
#pgm .menu-button {
  width: 42px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}
#pgm .menu-button span {
  display: block;
  height: 3px;
  margin: 7px 0;
  background: var(--text);
  border-radius: 999px;
}
/* ==============================
  fv
============================== */
#pgm .fv {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.2rem 2.6rem;
  background: radial-gradient(circle at right top, rgba(199, 150, 66, .2), transparent 36%), linear-gradient(180deg, #fffaf2 0%, #fff7e9 100%);
}
#pgm .fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-wave);
  background-size: 430px auto;
  background-repeat: repeat;
  opacity: .14;
  pointer-events: none;
}
#pgm .fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 112% 18%, rgba(255,255,255,.92) 0%, rgba(255,255,255,.35) 10%, transparent 24%),
    radial-gradient(circle at 112% 18%, transparent 57%, rgba(214,180,116,.18) 58.5%, rgba(214,180,116,.06) 60%, transparent 66%),
    radial-gradient(circle at 112% 18%, transparent 63%, rgba(255,255,255,.42) 64%, rgba(214,180,116,.14) 65%, transparent 70%);
  filter: blur(1.2px);
  opacity: .95;
  pointer-events: none;
}
#pgm .fv-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
#pgm .fv-visual {
  position: absolute;
  z-index: 1;
  top: 5%;
  right: -9.5rem;
  width: min(78vw,960px);
  pointer-events: none;
}
#pgm .fv-visual img {
  display: block;
  width: 100%;
  height: auto;
}
#pgm .fv-copy {
  position: relative;
  z-index: 3;
  min-width: 320px;
  padding-top: 1.4rem;
}
#pgm .fv-lead {
  position: relative;
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  line-height: 1.45;
  letter-spacing: var(--ls-lg);
}
#pgm .fv-lead::after {
  content: "";
  display: block;
  width: 6.5rem;
  height: 1px;
  margin: .5rem 0 0 7.6rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
#pgm .fv-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: var(--ls-lg);
}
#pgm .fv-title span {
  display: block;
  color: var(--gold-dark);
}
#pgm .fv-text {
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 2.8vw, 1.55rem);
  line-height: 1.95;
  letter-spacing: var(--ls-lg);
}
#pgm .fv-point {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(100%, 450px);
  margin: 2.2rem 0 1.6rem;
  padding: .9rem 1.2rem;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 70%, rgba(255,255,255,0) 100%);
  border-radius: 1rem;
  box-shadow: -9px 9px 12px -5px rgba(80, 56, 24, .06);
  list-style: none;
}
#pgm .fv-point::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(216,186,130,.5) 0%, rgba(216,186,130,.28) 70%, rgba(216,186,130,0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
#pgm .fv-point li {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(216, 186, 130, .28);
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: var(--ls-md);
}
#pgm .fv-point li:last-child {
  border-bottom: 0;
}
#pgm .fv-point i {
  width: 1.6em;
  color: var(--gold);
  font-size: 1.15em;
  text-align: center;
}
#pgm .cta {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
  text-align: center;
}
#pgm .tel-number {
  margin: .35rem 0 0;
  color: var(--gold-dark);
  font-size: clamp(3rem, 11vw, 5.4rem);
  line-height: 1;
  letter-spacing: var(--ls-md);
}
#pgm .tel-time {
  margin: 0;
  font-size: clamp(.95rem, 3.6vw, 1.25rem);
  letter-spacing: var(--ls-md);
}
#pgm .fv-bottom {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: .8rem;
  margin-top: 1.8rem;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(216, 186, 130, .58);
  border-radius: .8rem;
}
#pgm .fv-bottom img {
  display: block;
  width: 100%;
  height: auto;
}
#pgm .fv-bottom p {
  margin: 0;
  font-size: clamp(1.05rem, 4vw, 1.55rem);
  line-height: 1.65;
  letter-spacing: var(--ls-md);
}
#pgm .fv-bottom span {
  color: var(--red);
}
@media (max-width: 767px) {
  #pgm .fv {
    padding-top: 6.5rem;
  }
  #pgm .fv-visual {
    top: 6.4rem;
    right: -7rem;
    width: 120vw;
  }
  #pgm .fv-text {
    font-size: .9em;
  }
  #pgm .fv-copy {
    min-width: 0;
  }
  #pgm .fv-point {
    width: 75%;
    min-width: 250px;
    margin-top: 2rem;
  }
  #pgm .fv-point li {
    font-size: 1em;
  }
  #pgm .fv-bottom p br {
    display: none;
  }
}
/* ==============================
  items
============================== */
#pgm .items {
  background: radial-gradient(circle at right top, rgba(199, 150, 66, .18), transparent 34%), linear-gradient(180deg, #fff7ea 0%, #fffaf3 100%);
  text-align: center;
}
#pgm .item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  max-width: var(--content);
  margin: 2.2rem auto 1.6rem;
}
#pgm .item-card {
  overflow: hidden;
  background: var(--item);
  border: 1px solid rgba(216, 186, 130, .65);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
#pgm .item-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}
#pgm .item-card h3 {
  position: relative;
  margin: 0;
  padding: .75rem .4rem 1rem;
  font-size: clamp(1.05rem, 4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: var(--ls-lg);
}
#pgm .item-card h3::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1px;
  margin: .45rem auto 0;
  background: var(--gold);
}
#pgm .items-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: 0 0 1.6rem;
  font-size: 1rem;
  letter-spacing: var(--ls-md);
}
#pgm .items-note i {
  color: var(--gold);
}

@media screen and (max-width: 767px) {
  #pgm .items-note {
    text-align: left;
  }
}

/* ==============================
  condition
============================== */
#pgm .condition {
  background: radial-gradient(circle at right top, rgba(195, 145, 55, .18), transparent 34%), linear-gradient(180deg, #fffaf3 0%, #fff7ea 100%);
  text-align: center;
}
#pgm .condition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  max-width: var(--content);
  margin: 2.2rem auto 2rem;
}
#pgm .condition-card {
  overflow: hidden;
  background: var(--item);
  border-radius: var(--radius-md);
  border: 1px solid rgba(216, 186, 130, .65);
}
#pgm .condition-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}
#pgm .condition-card h3 {
  margin: 0;
  padding: .8rem .4rem 1rem;
  font-size: clamp(1.2rem, 4.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: var(--ls-lg);
}
#pgm .condition-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: 0 0 1.7rem;
  font-size: clamp(1.15rem, 4.5vw, 1.7rem);
  letter-spacing: var(--ls-md);
}
#pgm .condition-note::before,
#pgm .condition-note::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}
#pgm .condition-note span {
  color: var(--gold-dark);
  font-size: 1.35em;
}

@media screen and (max-width: 767px) {
  #pgm .condition-note {
    font-size: 1em;
  }
  #pgm .condition-note::before,
  #pgm .condition-note::after {
    content: none;
  }
}

/* ==============================
  reason
============================== */
#pgm .reason {
  background:
    url("../images/bg-02.png") center center / cover no-repeat,
    radial-gradient(circle at right top, rgba(195, 145, 55, .14), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #fff7ed 100%);
}
#pgm .reason-list {
  display: grid;
  gap: .9rem;
  max-width: var(--content);
  margin: 2.2rem auto 1.6rem;
}
#pgm .reason-card {
  display: grid;
  grid-template-columns: 5.8rem 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  text-align: left;
}
#pgm .reason-icon {
  display: grid;
  place-items: center;
  width: 5.2rem;
  height: 5.2rem;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 2rem;
}
#pgm .reason-body {
  padding-left: 1rem;
  border-left: 1px solid rgba(168, 121, 43, .45);
}
#pgm .reason-body h3 {
  margin: 0 0 .35rem;
  color: var(--gold-dark);
  font-size: clamp(1.35rem, 5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: var(--ls-lg);
}
#pgm .reason-body p {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  line-height: 1.7;
  letter-spacing: var(--ls-md);
}
#pgm .reason-badge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  max-width: 520px;
  margin: 1.8rem auto 1.4rem;
}
#pgm .reason-badge span {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  color: var(--red);
  border: 2px solid rgba(168, 121, 43, .65);
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
  font-size: clamp(1rem, 4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: var(--ls-lg);
  text-align: center;
}
/* ==============================
  results
============================== */
#pgm .results {
  background: radial-gradient(circle at right top, rgba(195, 145, 55, .16), transparent 34%), linear-gradient(180deg, #fffaf4 0%, #fff7ed 100%);
  text-align: center;
}
#pgm .results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  max-width: var(--content);
  margin: 2.2rem auto 1.6rem;
}
#pgm .results-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(216, 186, 130, .65);
  border-radius: 1.1rem;
  box-shadow: 0 8px 18px rgba(120, 76, 18, .08);
}
#pgm .results-card img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
}
#pgm .results-body {
  padding: 1rem .8rem 1.2rem;
}
#pgm .results-body h3 {
  margin: 0 0 .65rem;
  font-size: clamp(1rem, 3.7vw, 1.45rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: var(--ls-sm);
}
#pgm .results-material {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: .2rem .8rem;
  margin: 0 0 1rem;
  background: #f4e8d6;
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: .9rem;
  line-height: 1.4;
}
#pgm .results-label {
  position: relative;
  margin: 0 0 .55rem;
  color: var(--gold-dark);
  font-size: .85rem;
  letter-spacing: .12em;
}
#pgm .results-label::before,
#pgm .results-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: rgba(168, 121, 43, .45);
}
#pgm .results-label::before {
  left: 0;
}
#pgm .results-label::after {
  right: 0;
}
#pgm .results-price {
  margin: 0;
  color: var(--gold-dark);
  font-size: clamp(1rem, 6vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .03em;
}
#pgm .results-note {
  margin: 1.4rem 0 1.8rem;
  font-size: .95rem;
  line-height: 1.8;
  letter-spacing: var(--ls-sm);
}

@media (max-width: 768px) {
  #pgm .results-body h3 {
    min-height: calc(1.5em * 2);
  }
}
/* ==============================
  appraiser
============================== */
#pgm .appraiser {
  background:
    url("../images/bg-01.png") center center / cover no-repeat,
    radial-gradient(circle at right top, rgba(195, 145, 55, .14), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #fff7ed 100%);
}
#pgm .appraiser .section-head {
  text-align: left;
}
#pgm .appraiser-visual {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
}
#pgm .appraiser-image img {
  width: 100%;
  border-radius: 1.2rem;
}
#pgm .appraiser-message {
  position: absolute;
  left: 0;
  bottom: 10rem;
  width: min(48%, 360px);
  padding: 2.2rem;
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 186, 130, .45);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
#pgm .appraiser-message p {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  line-height: 2;
  letter-spacing: var(--ls-md);
}
#pgm .appraiser-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--content);
  margin: 1.6rem auto 2rem;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(216, 186, 130, .45);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
#pgm .appraiser-point {
  padding: 1.3rem .5rem;
  text-align: center;
}
#pgm .appraiser-point + .appraiser-point {
  border-left: 1px solid rgba(168, 121, 43, .22);
}
#pgm .appraiser-icon {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto .8rem;
  border: 2px solid rgba(168, 121, 43, .5);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 2rem;
}
#pgm .appraiser-point h3 {
  margin: 0;
  font-size: clamp(1rem, 3.6vw, 1.4rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-sm);
}

@media (max-width: 767px) {
  #pgm .appraiser {
    position: relative;
    overflow: hidden;
  }
  #pgm .appraiser .section-head {
    position: relative;
    z-index: 3;
    margin-bottom: 5rem;
  }
  #pgm .appraiser-visual {
    position: relative;
    z-index: 2;
    max-width: none;
    min-height: 380px;
  }
  #pgm .appraiser-image {
    position: absolute;
    top: 1.5rem;
    right: -7.5rem;
    width: 118vw;
    pointer-events: none;
  }
  #pgm .appraiser-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  #pgm .appraiser-message {
    z-index: 3;
    left: 1.2rem;
    bottom: 3.5rem;
    width: min(72%, 300px);
    padding: 1.4rem 1.2rem;
    background: rgba(255,255,255,.48);
  }
  #pgm .appraiser-message p {
    font-size: 1rem;
    line-height: 1.9;
  }
  #pgm .appraiser-points {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }
  #pgm .appraiser-point + .appraiser-point {
    border-left: 0;
    border-top: 1px solid rgba(168, 121, 43, .22);
  }
  #pgm .appraiser-point {
    display: grid;
    grid-template-columns: 4.2rem 1fr;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.2rem;
    text-align: left;
  }
  #pgm .appraiser-icon {
    width: 4.2rem;
    height: 4.2rem;
    margin: 0;
    font-size: 1.55rem;
  }
}
/* ==============================
  flow
============================== */
#pgm .flow {
  background: radial-gradient(circle at right top, rgba(195, 145, 55, .16), transparent 34%), linear-gradient(180deg, #fff7ed 0%, #fffaf4 100%);
  text-align: center;
}
#pgm .flow .section-title span {
  color: var(--gold-dark);
  font-size: 1.25em;
}
#pgm .flow-list {
  position: relative;
  display: grid;
  gap: .8rem;
  max-width: var(--content);
  margin: 2.2rem auto 1.6rem;
}
#pgm .flow-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.8rem;
  width: 1px;
  background: rgba(168, 121, 43, .45);
}
#pgm .flow-card {
  position: relative;
  display: grid;
  grid-template-columns: 4.7rem 5.8rem 1fr;
  align-items: center;
  gap: .9rem;
  min-height: 8.8rem;
  padding: 1rem 1rem 1rem 0;
  text-align: left;
}
#pgm .flow-num {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-left: .2rem;
  color: var(--white);
  background: linear-gradient(180deg, #b68a3e 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  font-size: 1.9rem;
  line-height: 1;
}
#pgm .flow-icon {
  display: grid;
  place-items: center;
  width: 5.4rem;
  height: 5.4rem;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 2rem;
}
#pgm .flow-body h3 {
  margin: 0 0 .35rem;
  color: var(--gold-dark);
  font-size: clamp(1.25rem, 4.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: var(--ls-lg);
}
#pgm .flow-body p {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  line-height: 1.7;
  letter-spacing: var(--ls-md);
}
#pgm .flow-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  letter-spacing: var(--ls-sm);
}
#pgm .flow-note i {
  color: var(--gold-dark);
}

@media (max-width: 767px) {
  #pgm .flow-num {
    width: 2rem;
    height: 2rem;
    margin-left: .8rem;
    font-size: 1.2rem;
  }
  #pgm .section-text,
  #pgm .flow-note {
    text-align: left;
  }
  #pgm .section-text br {
    display: none;
  }
}

/* ==============================
  kit
============================== */
.kit-box {
  margin-top: 2rem;
  padding: min(6vw,3rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kit-head {
  margin-bottom: 1.5rem;
  text-align: center;
}
.kit-head .section-sub {
  margin-bottom: .5rem;
}
.kit-head h3 {
  margin: 0 0 1rem;
  font-size: clamp(2rem,3vw,2.8rem);
  font-weight: 700;
  line-height: 1.4;
}
.kit-head p {
  margin: 0;
  line-height: 1.8;
}
.kit-image {
  max-width: 1240px;
  margin: auto;
}
.kit-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .kit-box {
    padding: 1.5rem 0;
  }
  .kit-head h3 {
    font-size: 2.2rem;
  }
  .kit-head p {
    text-align: left;
  }
}

/* ==============================
  voice
============================== */
#pgm .voice {
  background:
    url("../images/bg-01.png") center center / cover no-repeat,
    radial-gradient(circle at right top, rgba(195, 145, 55, .14), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #fff7ed 100%);
}
#pgm .voice-list {
  display: grid;
  gap: 1rem;
  max-width: var(--content);
  margin: 2.2rem auto 1.5rem;
}
#pgm .voice-card {
  position: relative;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 2rem;
  padding: 1.4rem 2rem;
  align-items: center;
}
#pgm .voice-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}
#pgm .voice-meta {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  margin-bottom: .3rem;
}
#pgm .voice-age {
  color: var(--gold-dark);
  font-size: clamp(1.8rem, 5vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
}
#pgm .voice-gender {
  font-size: 1rem;
  letter-spacing: var(--ls-lg);
}
#pgm .voice-star {
  display: flex;
  gap: .2rem;
  margin-bottom: .55rem;
  color: #b8882e;
  font-size: .95rem;
}
#pgm .voice-body p {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.28rem);
  line-height: 1.8;
  letter-spacing: var(--ls-sm);
}
#pgm .voice-quote {
  position: absolute;
  top: .8rem;
  right: 1rem;
  color: rgba(190, 165, 118, .18);
  font-size: 4rem;
  line-height: 1;
  font-family: serif;
}
#pgm .voice-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--content);
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(219, 188, 136, .45);
  border-radius: var(--radius-md);
  overflow: hidden;
}
#pgm .voice-feature li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 4.2rem;
  padding: .8rem .3rem;
  font-size: .95rem;
  letter-spacing: var(--ls-sm);
}
#pgm .voice-feature li + li {
  border-left: 1px solid rgba(210, 183, 140, .45);
}
#pgm .voice-feature i {
  color: var(--gold-dark);
  font-size: 1.2rem;
}
#pgm .voice-note {
  text-align: center;
}

@media (max-width: 767px) {
  #pgm .voice-card {
    gap: 1rem;
  }
  #pgm .voice-note {
    text-align: left;
  }
}

/* ==============================
  faq
============================== */
#pgm .faq {
  background: radial-gradient(circle at right top, rgba(200, 160, 90, .14), transparent 35%), linear-gradient(180deg, #fffdf9 0%, #fff8f1 100%);
}
#pgm .faq-list {
  display: grid;
  gap: 1rem;
  max-width: var(--content);
  margin: 2.2rem auto 1.5rem;
}
#pgm .faq-item {
  overflow: hidden;
}
#pgm .faq-summary {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr 2.2rem;
  align-items: center;
  gap: .8rem;
  width: 100%;
  min-height: 4.8rem;
  padding: .9rem 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
#pgm .faq-summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  color: var(--white);
  background: linear-gradient(180deg, #c29a54 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}
#pgm .faq-summary {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
#pgm .faq-question {
  color: var(--text-color);
}
#pgm .faq-item.is-open .faq-summary::after {
  content: "−";
}
#pgm .faq-mark {
  color: var(--gold-dark);
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1;
}
#pgm .faq-question {
  font-size: clamp(1.05rem, 4vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: var(--ls-sm);
}
#pgm .faq-panel {
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}
#pgm .faq-answer {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: .8rem;
  padding: .9rem 1rem 1.1rem;
  border-top: 1px solid rgba(219, 188, 136, .5);
  background: var(--base-light);
}
#pgm .faq-answer p {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  line-height: 1.8;
  letter-spacing: var(--ls-sm);
}
#pgm .faq-note {
  margin: 1.5rem 0 1.2rem;
  text-align: center;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  letter-spacing: var(--ls-sm);
}

/* ==============================
  contact
============================== */
#pgm .contact {
  background: radial-gradient(circle at right top, rgba(201, 163, 91, .12), transparent 35%), linear-gradient(180deg, #fffdf9 0%, #fff8f1 100%);
}
#pgm .contact-box {
  max-width: var(--content);
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.2rem 2rem;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(219, 188, 136, .35);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}
#pgm .contact-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5em;
}
#pgm .form-group {
  display: grid;
  gap: .6rem;
}
#pgm .form-group label {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #2f2a24;
  font-size: 1rem;
  font-weight: 600;
}
#pgm .form-group label i {
  width: 1.2rem;
  color: var(--gold-dark);
}
#pgm .form-group input,
#pgm .form-group textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(214, 188, 146, .6);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: .3s;
}
#pgm .form-group input:focus,
#pgm .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(189, 148, 76, .12);
}
#pgm .form-group textarea {
  min-height: 10rem;
  resize: vertical;
}
#pgm .contact-tel {
  margin-top: 1.6rem;
  text-align: center;
}
#pgm .contact-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: 0;
  color: var(--gold-dark);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: var(--ls-sm);
}
#pgm .contact-number i {
  font-size: .7em;
}
#pgm .contact-time {
  margin-top: .8rem;
  font-size: clamp(.95rem, 3.5vw, 1.2rem);
}
#pgm .contact-message {
  margin-top: 2rem;
  text-align: center;
}
#pgm .contact-message p {
  margin: 0;
  font-size: clamp(1rem, 3.8vw, 1.4rem);
  line-height: 2;
}
#pgm .contact-logo {
  margin-top: 2.5rem;
  text-align: center;
}
#pgm .contact-logo img {
  width: min(280px, 70%);
  margin: 0 auto;
}
#pgm .contact-logo p {
  margin-top: .8rem;
  font-size: .95rem;
  letter-spacing: var(--ls-lg);
}
/* ==============================
  footer
============================== */
#pgm .site-footer {
  padding: 2rem 1.2rem;
  background: #fffaf3;
  text-align: center;
}
#pgm .footer-logo img {
  width: min(280px, 70%);
  margin: 0 auto;
}
#pgm .footer-logo p {
  margin: .8rem 0 0;
  font-size: .95rem;
  letter-spacing: var(--ls-lg);
}
.footer-profile {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 1.8rem;
  background: #fff;
  border: 1px solid rgba(120,90,40,.12);
  border-radius: 1.6rem;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.footer-company {
  display: grid;
  gap: 1rem;
}
.footer-company_row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(120,90,40,.1);
}
.footer-company_row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.footer-company dt {
  font-weight: 700;
  color: #8c6b35;
}
.footer-company dd {
  margin: 0;
  color: #2f2a24;
}
@media (max-width: 767px) {
  .footer-profile {
    padding: 1.4rem;
    border-radius: 1.2rem;
  }
  .footer-company_row {
    grid-template-columns: 1fr;
    gap: .35rem;
    padding-bottom: .9rem;
  }
}
#pgm .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
#pgm .footer-links a {
  color: #2f2a24;
  font-size: .9rem;
  text-decoration: none;
}
#pgm .footer-links a:hover {
  text-decoration: underline;
}
/* ==============================
  responsive
============================== */
@media (min-width: 768px) {
  #pgm .site-header,
  #pgm .fv,
  #pgm .lp-section,
  #pgm .site-footer {
    padding-inline: 2rem;
  }
  #pgm .fv-photo {
    width: 46%;
  }
  #pgm .item-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #pgm .results-grid {
    gap: 1.4rem;
  }
  #pgm .results-body {
    padding: 1.2rem 1rem 1.5rem;
  }
  #pgm .reason-card {
    grid-template-columns: 7rem 1fr;
    padding: 1.3rem 1.5rem;
  }
  #pgm .reason-icon {
    width: 6.2rem;
    height: 6.2rem;
  }
  #pgm .flow-card {
    grid-template-columns: 5rem 6.5rem 1fr;
    padding-block: 1.2rem;
  }
  #pgm .contact-box {
    padding: 2rem;
  }
  #pgm .form-group {
    grid-template-columns: 180px 1fr;
    align-items: start;
  }
  #pgm .form-group label {
    min-height: 3.6rem;
    align-items: center;
  }
  #pgm .form-group.is-textarea label {
    align-items: flex-start;
    padding-top: 1rem;
  }
  #pgm .faq-item summary {
    grid-template-columns: 4rem 1fr 2.4rem;
    padding: 1rem 1.3rem;
  }
  #pgm .faq-answer {
    grid-template-columns: 4rem 1fr;
    padding: 1rem 1.3rem 1.3rem;
  }
}
@media (max-width: 640px) {
  #pgm .appraiser-message {
    position: static;
    width: 100%;
    margin-top: -3rem;
  }
}
@media (max-width: 520px) {
  #pgm .flow-card {
    grid-template-columns: 3.8rem 4.8rem 1fr;
    gap: .6rem;
    min-height: 8rem;
  }
  #pgm .flow-icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.7rem;
  }
  #pgm .voice-card {
    grid-template-columns: 5.2rem 1fr;
    padding: 1rem;
  }
  #pgm .voice-feature {
    grid-template-columns: 1fr;
  }
  #pgm .voice-feature li + li {
    border-left: 0;
    border-top: 1px solid rgba(210, 183, 140, .45);
  }
}


/* ==============================
  market
============================== */
#pgm .market {
  background: radial-gradient(circle at right top, rgba(195, 145, 55, .16), transparent 34%), linear-gradient(180deg, #fffaf4 0%, #fff7ed 100%);
  text-align: center;
}
#pgm .market-table {
  max-width: var(--content);
  margin: 2.2rem auto 1.2rem;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(216,186,130,.45);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}
#pgm .market-table dl {
  margin: 0;
}
#pgm .market-table dt {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  letter-spacing: var(--ls-sm);
  text-align: left;
}
#pgm .market-table dt::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: .5rem;
  height: .5rem;
  background: linear-gradient(180deg, #d6b474 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(216,186,130,.18);
}
#pgm .market-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(216,186,130,.28);
}
#pgm .market-table div:last-child {
  border-bottom: 0;
}
#pgm .market-table dt {
  color: var(--text);
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  letter-spacing: var(--ls-sm);
  text-align: left;
}
#pgm .market-table dd {
  margin: 0;
  color: var(--gold-dark);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
#pgm .market-table dd span {
  margin-left: .25em;
  font-size: .58em;
  font-weight: 500;
}
#pgm .market-note {
  margin: 0;
  color: #8a8379;
  font-size: .92rem;
  line-height: 1.8;
  letter-spacing: var(--ls-sm);
}


/* ==============================
  simulator
============================== */
#pgm .simulator {
  padding-block: 4.2rem;
  background: radial-gradient(circle at right top, rgba(201, 163, 91, .12), transparent 35%), linear-gradient(180deg, #fffdf9 0%, #fff8f1 100%);
}
#pgm .price-simulator {
  position: relative;
  max-width: var(--content);
  margin: auto;
  padding: 2.4rem 1.2rem;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(216,186,130,.45);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}
#pgm .price-simulator::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-wave);
  background-size: 380px auto;
  background-repeat: repeat;
  opacity: .08;
  pointer-events: none;
}
#pgm .price-simulator > * {
  position: relative;
  z-index: 2;
}
#pgm .price-simulator h2 {
  margin: 0;
  color: var(--gold-dark);
  font-size: clamp(1.35rem, 5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: var(--ls-lg);
  text-align: center;
}
#pgm .price-simulator > p {
  margin: .8rem 0 2rem;
  color: #7d766d;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: var(--ls-md);
  text-align: center;
}
#pgm .simulator-field {
  margin-bottom: 1.4rem;
}
#pgm .simulator-field label {
  display: block;
  margin-bottom: .55rem;
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: var(--ls-sm);
}
#pgm .simulator-field select,
#pgm .simulator-field input {
  width: 100%;
  height: 4.2rem;
  padding: 0 1.2rem;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(216,186,130,.55);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1.1rem;
  font-family: inherit;
  transition: .25s ease;
}
#pgm .simulator-field select:focus,
#pgm .simulator-field input:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(168,121,43,.12);
}
#pgm .simulator-result {
  margin-top: 2rem;
  padding: 1.4rem 1.2rem;
  background: rgba(255,248,236,.75);
  border: 1px solid rgba(216,186,130,.4);
  border-radius: var(--radius-sm);
}
#pgm .simulator-rate,
#pgm .simulator-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#pgm .simulator-rate {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168,121,43,.18);
}
#pgm .simulator-total {
  padding-top: 1rem;
}
#pgm .simulator-rate span,
#pgm .simulator-total span {
  letter-spacing: var(--ls-sm);
}
#pgm .simulator-rate strong {
  color: var(--gold-dark);
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 600;
}
#pgm .simulator-total strong {
  color: var(--red);
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
}
#pgm .simulator-note {
  margin: 1.6rem 0 0 !important;
  color: #8a8379;
  font-size: .92rem;
  line-height: 1.8;
  letter-spacing: var(--ls-sm);
  text-align: center;
}
#pgm .simulator-field {
  position: relative;
}
#pgm .simulator-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3.6rem;
}
#pgm .simulator-field:has(select)::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  bottom: 1.65rem;
  width: .55rem;
  height: .55rem;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  pointer-events: none;
}

#pgm .simulator-input-wrap {
  position: relative;
}
#pgm .simulator-field input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  padding-right: 5.6rem;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}
#pgm .simulator-field input[type="number"]::-webkit-outer-spin-button,
#pgm .simulator-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#pgm .simulator-stepper {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transform: translateY(-50%);
}
#pgm .simulator-stepper button {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: var(--gold-dark);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(216,186,130,.55);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}
#pgm .simulator-stepper button:hover {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}
#pgm .simulator-stepper button:active {
  transform: scale(.94);
}


/* ==============================
  other
============================== */
.grecaptcha-badge {
  visibility: hidden !important;
}

.aligncenter{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright{
  float: right;
  margin-left: 1.5em;
}
.alignleft{
  float: left;
  margin-right: 1.5em;
}