@charset "UTF-8";
.dummy {
  color: #ff31f1 !important;
}

/*
====================================
共通
====================================
*/
html {
  overflow-y: initial;
  font-size: 10px;
  letter-spacing: 0.075em;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt";
  background-color: #fff;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.wrapper {
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}

.pc {
  display: block;
}

.pc-tb {
  display: block;
}

.tb-sp {
  display: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .pc-tb {
    display: none;
  }
  .tb-sp {
    display: block;
  }
  .sp {
    display: block;
  }
  .p {
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/*
====================================
LP（画像コーディング / 375px）
====================================
*/
.home {
  background-color: #fff;
}
@media screen and (min-width: 560px) {
  .home {
    background-color: #111;
  }
}
@media screen and (min-width: 560px) {
  .home {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.home #header {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 560px) {
  .home #header {
    position: static;
    max-width: 375px;
    margin: 0;
  }
}
.home #footer {
  width: 100%;
}
@media screen and (min-width: 560px) {
  .home #footer {
    max-width: 375px;
    margin: 0;
  }
}
.home .lp-fixed-line {
  display: block;
}
.home.is-fixed-line-visible .lp {
  padding-bottom: 24px;
}
.home.is-fixed-line-visible .lp-footer__copy {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}
.home.is-spmenu-open {
  overflow: hidden;
}
.home.is-spmenu-open .lp-fixed-line {
  visibility: hidden;
  pointer-events: none;
}

/*
====================================
LPヘッダー / SPメニュー
====================================
*/
.lp-header {
  position: relative;
  background-color: #fff;
}
.lp-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.lp-header__logo {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 210px;
  line-height: 0;
}
.lp-header__logo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.lp-header__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.lp-header__toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.lp-header__toggle-line:nth-child(1) {
  top: 2px;
}
.lp-header__toggle-line:nth-child(2) {
  top: 10px;
}
.lp-header__toggle-line:nth-child(3) {
  top: 18px;
}
.lp-header__toggle[aria-expanded=true] .lp-header__toggle-line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.lp-header__toggle[aria-expanded=true] .lp-header__toggle-line:nth-child(2) {
  opacity: 0;
}
.lp-header__toggle[aria-expanded=true] .lp-header__toggle-line:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.lp-header__panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.lp-header__panel[hidden] {
  display: none;
}
.lp-header__nav {
  padding: 8px 0 4px;
}
.lp-header__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-header__nav-link {
  display: block;
  padding: 12px 20px;
  color: #111;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lp-header__nav-link:hover {
  background-color: #f7f6f3;
  color: #8a6a3c;
}
.lp-header__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px 20px;
  background-color: #111;
}
.lp-header__cta-btn {
  display: block;
  transition: opacity 0.2s ease;
}
.lp-header__cta-btn:hover {
  opacity: 0.9;
}
.lp-header__cta-btn img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.lp-header__cta-btn--line {
  width: 100%;
}
.lp-header__cta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.lp-header__cta-row .lp-header__cta-btn {
  width: calc(50% - 4px);
}

.lp {
  width: 100%;
  background-color: #fff;
  transition: padding-bottom 0.25s ease;
}
@media screen and (min-width: 560px) {
  .lp {
    max-width: 375px;
    margin: 0 auto;
  }
}
.lp img {
  width: 100%;
  height: auto;
  vertical-align: top;
  display: block;
}

/*
====================================
下部追従 LINEボタン
====================================
*/
.lp-fixed-line {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 250;
  width: 100%;
  max-width: 375px;
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.92);
  box-sizing: border-box;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.lp-fixed-line.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lp-fixed-line__btn {
  display: block;
  width: 80%;
  margin: 0 auto;
  transition: opacity 0.2s ease;
}
.lp-fixed-line__btn:hover {
  opacity: 0.9;
}
.lp-fixed-line__btn img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.lp-nav {
  display: none;
  position: fixed;
  top: 50%;
  left: calc(50% - 187.5px - 16px);
  transform: translate(-100%, -50%);
  z-index: 100;
  padding-right: 16px;
}
.lp-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-nav__link {
  position: relative;
  display: block;
  padding-right: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: right;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.lp-nav__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.lp-nav__link:hover, .lp-nav__link.is-active {
  color: #fff;
}
.lp-nav__link.is-active::after {
  background-color: #c9a66b;
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.25);
}

@media screen and (min-width: 560px) {
  .lp-nav {
    display: block;
  }
}
.fv__main {
  overflow: hidden;
}
.fv__main img {
  transform: scale(1.003);
}
.fv__btns {
  display: flex;
  gap: 5px;
  background-color: #000;
  padding: 0px 12px 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fv__btn {
  display: block;
  transition: opacity 0.2s ease;
}
.fv__btn:hover {
  opacity: 0.9;
}
.fv__btn--line {
  width: 100%;
}
.fv__btns-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.fv__btns-row .fv__btn {
  width: 48.75%;
}

/*
====================================
共通CTA
====================================
*/
.cta {
  background-color: #000;
}
.cta__btns {
  display: flex;
  gap: 5px;
  background-color: #fff;
  padding: 12px 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta__btn {
  display: block;
  transition: opacity 0.2s ease;
}
.cta__btn:hover {
  opacity: 0.9;
}
.cta__btn--line {
  width: 100%;
}
.cta__btns-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.cta__btns-row .cta__btn {
  width: 48.75%;
}
.cta__coupon {
  position: relative;
  display: block;
  padding: 0 12px 12px;
  background-color: #F7F6F2;
  transition: opacity 0.2s ease;
}
.cta__coupon:hover {
  opacity: 0.92;
}
.cta__coupon-deadline {
  position: absolute;
  top: 18%;
  left: 15%;
  color: #c9a66b;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
}

/*
====================================
共通見出しモジュール
====================================
*/
.lp-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 20px;
}
.lp-heading__lead {
  display: block;
  margin-bottom: 4px;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}
.lp-heading__text {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
.lp-heading__text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  min-width: 7em;
  height: 3px;
  background-color: #1a1a1a;
  transform: translateX(-50%);
}

/*
====================================
買取品目カードモジュール
====================================
*/
.item-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 8px;
}
.item-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #ddd;
}
.item-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-card__name {
  margin: 10px 0 8px;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 6px;
  border-bottom: solid 1px #eee;
  border-top: solid 1px #eee;
}
.item-card__price-row {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 6px;
  margin: 0 0 8px;
}
.item-card__badge {
  flex-shrink: 0;
  padding: 3px 5px;
  background-color: #1a1a1a;
  color: #c9a66b;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  white-space: nowrap;
  width: 50px;
  border: solid 1px #c9a66b;
}
.item-card__price {
  display: flex;
  align-items: baseline;
  gap: 1px;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1;
  width: calc(100% - 50px);
}
.item-card__price-num {
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.item-card__price-unit {
  font-size: 1.2rem;
}
.item-card__period {
  padding-top: 8px;
  border-top: 1px solid #e8e5df;
  color: #666;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}

/*
====================================
買取品目について
====================================
*/
.items {
  background-color: #f7f5f0;
}
.items__body {
  padding: 28px 16px 20px;
}
.items__cta {
  background-color: #fff;
}
.items__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.items__list .item-card.is-extra {
  display: none;
  opacity: 0;
}
.items__list.is-expanded .item-card.is-extra {
  display: block;
  animation: items-fade-in 0.45s ease forwards;
}
.items__list.is-expanded .item-card.is-extra:nth-child(1) {
  animation-delay: -0.4s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(2) {
  animation-delay: -0.35s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(3) {
  animation-delay: -0.3s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(4) {
  animation-delay: -0.25s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(5) {
  animation-delay: -0.2s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(6) {
  animation-delay: -0.15s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(7) {
  animation-delay: -0.1s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(8) {
  animation-delay: -0.05s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(9) {
  animation-delay: 0s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(10) {
  animation-delay: 0.05s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(11) {
  animation-delay: 0.1s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(12) {
  animation-delay: 0.15s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(13) {
  animation-delay: 0.2s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(14) {
  animation-delay: 0.25s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(15) {
  animation-delay: 0.3s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(16) {
  animation-delay: 0.35s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(17) {
  animation-delay: 0.4s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(18) {
  animation-delay: 0.45s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(19) {
  animation-delay: 0.5s;
}
.items__list.is-expanded .item-card.is-extra:nth-child(20) {
  animation-delay: 0.55s;
}
.items__more {
  margin-top: 20px;
  text-align: center;
}
.items__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 12px 28px;
  border: 1px solid #1a1a1a;
  background-color: #fff;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.items__more-btn::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.items__more-btn:hover {
  background-color: #1a1a1a;
  color: #fff;
}
.items__note {
  margin-top: 16px;
}
.items__note p {
  color: #888;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.items__note p + p {
  margin-top: 0.8em;
}

@keyframes items-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
====================================
お客様の声カード
====================================
*/
.voice-card {
  height: 100%;
  background-color: #fff;
  border: 1px solid #c9a66b;
  overflow: hidden;
}
.voice-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #ebe8e2;
}
.voice-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 16px;
}
.voice-card__title {
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.voice-card__text {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.voice-card__meta {
  margin-top: auto;
  color: #555;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/*
====================================
お客様の声
====================================
*/
.voice {
  padding: 36px 0 40px;
  background-color: #f7f6f3;
}
.voice .lp-heading {
  margin-bottom: 22px;
  padding: 0 16px;
}
.voice__slider {
  padding-left: 16px;
  overflow: hidden;
}
.voice__slider .swiper-wrapper {
  align-items: stretch;
}
.voice__slider .swiper-slide {
  display: flex;
  height: auto;
}
.voice__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.voice__nav-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.voice__nav-btn:hover {
  opacity: 0.85;
}
.voice__nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.voice__nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  box-sizing: border-box;
}
.voice__nav-btn--prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}
.voice__nav-btn--next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

/*
====================================
査定までの流れ
====================================
*/
.flow {
  padding: 40px 16px 48px;
  background: linear-gradient(180deg, #ffffff 0%, #eeeeee 100%);
}
.flow .lp-heading {
  margin-bottom: 28px;
}
.flow__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow__item {
  padding: 20px 0;
}
.flow__item + .flow__item {
  border-top: 1px solid #d9d9d9;
}
.flow__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.flow__image {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border: 1px solid #000;
  background-color: #e8e8e8;
}
.flow__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow__content {
  flex: 1;
  min-width: 0;
}
.flow__step {
  margin-bottom: 4px;
  color: #b08d57;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.flow__title {
  margin-bottom: 8px;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.flow__text {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
.flow__line-btn {
  display: block;
  margin-top: 16px;
}

/*
====================================
行き方・アクセス
====================================
*/
.access {
  padding: 40px 16px 48px;
  background-color: #fdfaf5;
}
.access .lp-heading {
  margin-bottom: 24px;
}
.access__photo {
  margin-bottom: 16px;
  overflow: hidden;
  background-color: #ebe8e2;
}
.access__map {
  margin-bottom: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #e8e8e8;
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.access__address {
  margin-bottom: 16px;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}
.access__stations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.access__station {
  padding: 14px 12px;
  border: 1px solid #1a1a1a;
  background-color: #fff;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

/*
====================================
よくある質問
====================================
*/
.faq {
  padding: 40px 16px 48px;
  background-color: #f7f6f3;
}
.faq .lp-heading {
  margin-bottom: 24px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.faq__item {
  background-color: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 12px;
  border: none;
  background: transparent;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  cursor: pointer;
}
.faq__q {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #c9a66b;
  border-radius: 50%;
  color: #c9a66b;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.faq__q-text {
  flex: 1;
  min-width: 0;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #c9a66b;
  border-bottom: 1.5px solid #c9a66b;
  transform: translate(-50%, -65%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq__question[aria-expanded=true] .faq__icon::before {
  transform: translate(-50%, -35%) rotate(-135deg);
}
.faq__answer {
  height: 0;
  overflow: hidden;
  padding: 0 12px 0 50px;
  color: #333;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  transition: height 0.35s ease;
}
.faq__answer[hidden] {
  display: block;
  visibility: hidden;
}
.faq__answer.is-open {
  visibility: visible;
  padding-bottom: 16px;
}
.faq__answer p {
  margin: 0;
}
.faq__id {
  margin-bottom: 18px;
}
.faq__notes p {
  color: #777;
  font-size: 1.05rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.faq__notes p + p {
  margin-top: 0.9em;
}

/*
====================================
無料相談・査定フォーム（CF7想定）
====================================
*/
.contact {
  padding: 40px 16px 0px;
  background-color: #fff;
}
.contact .lp-heading {
  margin-bottom: 20px;
}
.contact__brand-note {
  margin: 0 0 20px;
  padding: 0;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  background-color: #eee;
  padding: 8px;
  text-align: center;
}
.contact__notes {
  margin: 0 0 28px;
  padding: 0 0 0 1.2em;
  list-style: disc;
  color: #333;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.contact__notes li + li {
  margin-top: 0.35em;
}

.cf7-form__section {
  margin-bottom: 34px;
}
.cf7-form__heading {
  margin-bottom: 16px;
  color: #b08d57;
  font-family: "Noto Serif JP", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.cf7-form__field {
  margin-bottom: 22px;
}
.cf7-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.cf7-form__required {
  display: inline-block;
  padding: 2px 6px;
  background-color: #c0392b;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.cf7-form__input, .cf7-form__select, .cf7-form__textarea,
.cf7-form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-radio):not(.wpcf7-acceptance):not(.wpcf7-file) {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.35rem;
  line-height: 1.5;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.cf7-form__select,
.cf7-form select.wpcf7-form-control {
  font-size: 1.5rem;
}
.cf7-form__select option,
.cf7-form select.wpcf7-form-control option {
  font-size: 1.5rem;
}
.cf7-form__textarea,
.cf7-form textarea.wpcf7-form-control {
  min-height: 140px;
  resize: vertical;
}
.cf7-form__radio,
.cf7-form .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf7-form__radio .wpcf7-list-item,
.cf7-form .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0;
}
.cf7-form__radio .wpcf7-list-item label,
.cf7-form .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  font-size: 1.3rem;
  line-height: 1.5;
  cursor: pointer;
}
.cf7-form__radio .wpcf7-list-item input[type=radio],
.cf7-form .wpcf7-radio .wpcf7-list-item input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  vertical-align: middle;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.cf7-form__radio .wpcf7-list-item input[type=radio]:checked,
.cf7-form .wpcf7-radio .wpcf7-list-item input[type=radio]:checked {
  border-color: #c9a66b;
  background-color: #fff;
  box-shadow: inset 0 0 0 6px #c9a66b;
}
.cf7-form__radio .wpcf7-list-item input[type=radio]:focus-visible,
.cf7-form .wpcf7-radio .wpcf7-list-item input[type=radio]:focus-visible {
  outline: 2px solid rgba(201, 166, 107, 0.45);
  outline-offset: 2px;
}
.cf7-form__file-wrap {
  width: 100%;
}
.cf7-form__file-control {
  position: relative;
  width: 100%;
}
.cf7-form__file,
.cf7-form input[type=file].wpcf7-file,
.cf7-form input[type=file].cf7-form__file {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.cf7-form__file::file-selector-button,
.cf7-form input[type=file].wpcf7-file::file-selector-button,
.cf7-form input[type=file].cf7-form__file::file-selector-button {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.cf7-form__file-ui {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
  pointer-events: none;
}
.cf7-form__file-control:hover .cf7-form__file-ui {
  border-color: #c9a66b;
}
.cf7-form__file-control:focus-within .cf7-form__file-ui {
  outline: 2px solid rgba(201, 166, 107, 0.45);
  outline-offset: 2px;
}
.cf7-form__file-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid #bbb;
  border-radius: 3px;
  background-color: #fff;
  color: #1a1a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cf7-form__file-control:hover .cf7-form__file-btn {
  border-color: #c9a66b;
  background-color: #faf7f2;
}
.cf7-form__file-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #888;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cf7-form__file-name.has-file {
  color: #1a1a1a;
}
.cf7-form__file-preview {
  display: none;
  margin-top: 12px;
}
.cf7-form__file-preview.is-visible {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.cf7-form__file-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f7f6f3;
}
.cf7-form__file-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  vertical-align: top;
}
.cf7-form__file-thumb.is-fallback {
  display: grid;
  place-items: center;
  color: #888;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cf7-form__file-note {
  margin-top: 8px;
  color: #777;
  font-size: 1.15rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.cf7-form__agree {
  margin: 20px 0 16px;
  text-align: center;
  font-size: 1.3rem;
}
.cf7-form__agree .wpcf7-list-item {
  margin: 0;
}
.cf7-form__agree .wpcf7-acceptance,
.cf7-form__agree .wpcf7-list-item {
  display: inline-block;
}
.cf7-form__agree label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  font-size: 1.3rem;
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
}
.cf7-form__agree input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 2px solid #1a1a1a;
  border-radius: 2px;
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.cf7-form__agree input[type=checkbox]:checked {
  border-color: #c9a66b;
  background-color: #c9a66b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2l3 3.1 6-6.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
.cf7-form__agree input[type=checkbox]:focus-visible {
  outline: 2px solid rgba(201, 166, 107, 0.45);
  outline-offset: 2px;
}
.cf7-form__agree a {
  color: #2a6bb5;
  text-decoration: underline !important;
}
.cf7-form__notice {
  margin-bottom: 20px;
  padding: 14px 16px;
  background-color: #f3f3f3;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
}
.cf7-form__submit {
  text-align: center;
}
.cf7-form__btn,
.cf7-form input.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 40px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #8a6a3a 0%, #c9a66b 100%);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.cf7-form__btn:hover,
.cf7-form input.wpcf7-submit:hover {
  opacity: 0.9;
}
.cf7-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #c0392b;
  font-size: 1.15rem;
}
.cf7-form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px;
  border-radius: 4px;
  font-size: 1.25rem;
}
.cf7-form .wpcf7-spinner {
  display: block;
}

/*
====================================
フッター
====================================
*/
.lp-footer {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.lp-footer p {
  margin: 0;
}
.lp-footer p + p {
  margin-top: 0.25em;
}
.lp-footer__license {
  padding: 0px 16px 20px;
  background-color: #fff;
  color: #1a1a1a;
}
.lp-footer__company {
  padding: 18px 16px;
  background-color: #e6e6e6;
  color: #1a1a1a;
}
.lp-footer__copy {
  padding: 16px;
  background-color: #333;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=style.css.map */