/* ===========================================
   売るナビ LP - style.css
=========================================== */

/* -----------------------------------------------
   リセット・ベース
----------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* -----------------------------------------------
   共通レイアウト
----------------------------------------------- */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

/* -----------------------------------------------
   共通セクションタイトル
----------------------------------------------- */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.section-title--light {
  color: #fff;
}

.section-title--no-mb {
  margin-bottom: 0;
}

/* -----------------------------------------------
   共通ボタン
----------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  text-align: center;
}

.btn:hover {
  opacity: 0.85;
}

.btn--primary {
  background-color: #e8722a;
  color: #fff;
}

.btn--large {
  font-size: 1.125rem;
  padding: 18px 48px;
}

/* -----------------------------------------------
   1. ヘッダー上部  bg: #EDEDEB
----------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  background-color: #EDEDEB;
}

.header-top-set {
  display: flex;
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}

.header-top__logo img {
  width: 180px;
  height: auto;
}

.header-top__store-name {
  font-weight: 700;
  margin-left: 0;
  padding-left: 30px;
}

.header-top__store-main {
  font-size: 24px;
  margin-bottom: 2px;
  line-height: 1.2;
}

.header-top__store-sub {
  font-size: 20px;
  line-height: 1.2;
}

.header-top__store-particle {
  font-size: 15px;
}

.header-top__contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-top__tel {
  display: inline-flex;
  align-items: center;
  width: 195px;
  border: 2px solid #025643;
  border-radius: 9999px;
  background: #fff;
  padding: 4px 16px 4px 4px;
  gap: 12px;
  color: #025643;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-top__tel:hover {
  background-color: #025643;
  color: #fff;
}

.header-top__tel:hover .header-top__tel-badge {
  background-color: #fff;
  color: #025643;
}

.header-top__tel-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #025643;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.header-top__tel-text {
  font-size: 1rem;
  font-weight: 700;
}

.header-top__contact .btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #C94922;
  font-size: 20px;
  padding: 8px 24px;
  border-radius: 9999px;
}

.header-top__tel-number {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.header-top__contact .btn img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

/* -----------------------------------------------
   2. ヘッダー下部ナビ  bg: #FFFFFF
----------------------------------------------- */
.header-nav {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.header-nav__list li a {
  display: block;
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #025643;
  transition: color 0.2s;
}

.header-nav__list li:first-child a {
  text-decoration: underline;
}

.header-nav__list li a:hover {
  color: #e8722a;
}

/* -----------------------------------------------
   3. ファーストビュー  bg: #EDEDEB
----------------------------------------------- */
.hero__fv-sp {
  display: none;
}

.hero {
  position: relative;
  padding: 10px 0 30px;
  background-color: #EDEDEB;
  background-image: url('../image/fv-pc.png');
  background-repeat: no-repeat;
  background-position: min(calc(100% + 20px), calc(50% + 300px)) 46%;
  background-size: min(60%, 750px);
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__content {
  flex: 1;
}

.hero__eyebrow {
  margin-top: 70px;
  display: inline-block;
  background-color: #025643;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 9999px;
  padding: 5px 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #025643;
}

.hero__title--accent {
  color: #C94922;
}

.hero__title--big {
  font-size: 1.15em;
}

.hero__title--small {
  font-size: 0.85em;
}

.hero__title--marked {
  background: linear-gradient(transparent 77%, rgba(255, 255, 255, 0.75) 77%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 4px;
}

.hero__sub {
  font-size: 1.3rem;
  color: #231815;
  margin-bottom: 15px;
}

.hero__image {
  flex: 1;
  max-width: 520px;
  position: relative;
  top: -150px;
}

.hero__store-badge {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #025643;
  border: 2px solid #025643;
  border-radius: 10px;
  padding: 0px 20px;
  background-color: #fff;
  margin-bottom: 16px;
}

.hero__content img {
  width: 85%;
  height: auto;
}

.hero__image img {
  width: 100%;
  height: auto;
}

.hero__image .hero__stamp {
  width: 100px;
  height: 100px;
  display: block;
  margin-left: auto;
}

/* ヒーロー CTAボタン */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 45px 0 16px;
  justify-content: center;
}

.hero__action-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.hero__action-badge {
  position: absolute;
  top: -10px;
  background-color: #025643;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 1px 20px;
  border-radius: 9999px;
  z-index: 1;
  width: 150px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero__action-btn {
  display: inline-block;
  padding: 16px 48px 8px;
  border: 2px solid #025643;
  border-radius: 9999px;
  color: #025643;
  font-size: 1.25rem;
  font-weight: 700;
  background: #fff;
  width: 300px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero__action-btn:hover {
  background-color: #025643;
  color: #fff;
}

.hero__action-btn:hover .hero__action-badge {
  background-color: #fff;
  color: #025643;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero__action-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: #C94922;
  color: #fff;
  border-radius: 9999px;
  padding: 0px 32px;
  font-weight: 700;
  text-align: center;
  width: 300px;
  transition: opacity 0.2s ease;
}

.hero__action-tel:hover {
  opacity: 0.85;
}

.hero__action-tel-label {
  font-size: 13px;
  margin-top: 2px;
  margin-bottom: -5px;
}

.hero__action-tel-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__action-tel-row img {
  width: 28px;
  height: 28px;
  margin-left: -10px;
}

.hero__action-tel-number {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

/* -----------------------------------------------
   4 & 11. イベントセクション  bg: #FFFFFF
----------------------------------------------- */
.event {
  padding: 80px 0;
  background-color: #fff;
}

.event__content img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

.event__img--sp {
  display: none;
}

/* -----------------------------------------------
   5. 選ばれる理由  bg: #C0E6DD
----------------------------------------------- */
.reasons {
  padding: 40px 0 80px;
  background-color: #C0E6DD;
}

.reasons__title {
  color: #231815;
}

.reasons__title--large {
  font-size: 1.2em;
}

.reasons__title--accent {
  color: #C94922;
}

.reasons__title--marked {
  background: linear-gradient(transparent 77%, rgba(255, 255, 255, 0.75) 77%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 4px;
}

.reasons__list {
  display: flex;
  gap: 32px;
  justify-content: center;
  background-color: #fff;
  border-radius: 16px;
  padding: 40px 32px;
}

.reasons__item {
  flex: 1;
  max-width: 320px;
  text-align: center;
}

.reasons__item img {
  width: 130px;
  height: 130px;
  margin: 0 auto 16px;
}

.reasons__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #025643;
  margin-bottom: 12px;
}

.reasons__item-text {
  font-size: 0.8rem;
  text-align: left;
  color: #231815;
}

h4.reasons__item-title {
  font-size: 1rem;
  color: #231815;
}

/* -----------------------------------------------
   6. 買取品目一覧  bg: #FFFFFF
----------------------------------------------- */
.items {
  padding: 50px 0 80px;
  background-color: #fff;
}

.items .section-title {
  color: #025643;
}

.items__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.items__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.items__item img {
  width: 100%;
  display: block;
}

.items__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.items__item-name {
  font-size: 1rem;
  font-weight: 700;
  color: #231815;
  margin-bottom: 2px;
}

.items__item-desc {
  font-size: 0.75rem;
  color: #231815;
  line-height: 1.4;
  font-weight: 500;
}

/* -----------------------------------------------
   7. 金の精錬分割サービス
----------------------------------------------- */
.gold-service__header {
  padding: 48px 0;
  text-align: center;
  color: #fff;
  background-color: #868686;
}

.gold-service__header-sub {
  color: #fff;
  font-size: 1rem;
}

.gold-service__block {
  padding: 64px 0;
}

.gold-service__block--img-left {
  background-image: url('../image/background-gold.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gold-service__block-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
}

.gold-service__inner-container {
  max-width: 900px;
}

.gold-service__right-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.gold-service__block--img-right .gold-service__block-text {
  flex: 3;
}

.gold-service__block--img-right .gold-service__block-image {
  flex: 3;
}

.gold-service__block-text {
  flex: 6;
}

.gold-service__block-image {
  flex: 3;
}

.gold-service__image-caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
  padding-bottom: 5px;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
}

.gold-service__caption-weight {
  font-size: 1.7rem;
  font-weight: 700;
  padding-left: 30px;
}

.gold-service__caption-label {
  font-size: 1.2rem;
  font-weight: 700;
}

.gold-service__caption-ni {
  font-size: 0.75em;
}

.gold-service__block-image img {
  width: 100%;
  height: auto;
}

.gold-service__block-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.gold-service__block-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 500;
}

.gold-service__notes {
  margin-top: 20px;
}

.gold-service__block-text .gold-service__lead,
.gold-service__block-text .gold-service__main-text {
  font-size: 1.1rem;
}

.gold-service__block--img-left .gold-service__heading,
.gold-service__block--img-left .gold-service__block-text p {
  color: #fff;
}

.gold-service__block--img-left > .container:first-child {
  padding-bottom: 32px;
  padding-left: 48px;
}

.gold-service__subheading {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.gold-service__heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.gold-tags {
  display: flex;
  gap: 16px;
  margin: 20px 0 24px;
}

.gold-tag {
  font-family: 'Noto Serif JP', serif;
  border: 1px solid #DCB345;
  color: #fff;
  padding: 5px 20px;
  font-size: 1.9rem;
}

.gold-text {
  color: #D4A017;
  font-size: 1.8em;
  line-height: 1;
}

.gold-service__heading--medium {
  font-size: 1.5em;
}

.gold-service__flow {
  padding: 30px 0 64px;
}

.gold-service__flow-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.gold-service__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.gold-service__step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  position: relative;
}

.gold-service__step + .gold-service__step::before {
  content: "→";
  position: absolute;
  left: -20px;
  top: 40px;
  font-size: 1.5rem;
  color: #888;
}

.gold-service__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #4a9e8a;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin: 0 auto 12px;
}

.gold-service__step-icon {
  margin: 0 auto 12px;
}

.gold-service__step-icon img {
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border: 2px solid #4a9e8a;
  border-radius: 50%;
  padding: 8px;
}

.gold-service__step-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.gold-service__step-label small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
}

.gold-service__flow-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gold-service__flow-img {
  width: 100%;
  display: block;
}

.gold-service__flow-labels {
  position: absolute;
  bottom: 7%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.gold-service__flow-label {
  flex: 1;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.gold-service__flow-small {
  display: block;
  font-size: 0.75em;
  font-weight: 400;
}

.gold-service__flow-label:nth-child(1) { transform: translateX(-18px); }
.gold-service__flow-label:nth-child(2) { transform: translateX(-8px); }
.gold-service__flow-label:nth-child(3) { line-height: 1.15; transform: translate(8px, -6px); }
.gold-service__flow-label:nth-child(4) { transform: translateX(18px); }

/* -----------------------------------------------
   8. 買取方法  bg: #EDEDEB
----------------------------------------------- */
.methods {
  padding: 50px 0 80px;
  background-color: #EDEDEB;
}

.methods .section-title {
  color: #025643;
}

.methods__item-title.methods__item-name {
  color: #025643;
  font-size: 1.4rem;
}

.methods__list {
  display: flex;
  gap: 19px;
  justify-content: center;
}

.methods__item {
  flex: 1;
  max-width: 288px;
  background-color: #C0E6DD;
  border-radius: 8px;
  padding: 16px 19px;
  text-align: center;
}

.methods__item-icon img {
  width: 35px;
  height: 35px;
  margin: 0 auto -8px;
}

.methods__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #231815;
  margin-top: 10px;
  margin-bottom: 15px;
}

.methods__item-place {
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 13px;
  color: #4a9e8a;
}

.methods__item > img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 20px;
}

.methods__item-text {
  font-size: 0.7rem;
  text-align: center;
  color: #231815;
}

/* -----------------------------------------------
   9. 店頭査定・買取の流れ  bg: #FFFFFF
----------------------------------------------- */
.flow {
  padding: 50px 0 80px;
  background-color: #fff;
}

.flow .section-title,
.store-info .section-title {
  color: #025643;
}

.flow__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.flow__step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  background-color: #EDEDEB;
  border: 4px solid #025643;
  border-radius: 10px;
  padding: 16px 12px;
}

.flow__arrow {
  width: 16px;
  flex-shrink: 0;
  object-fit: contain;
  align-self: center;
}

.flow__step-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #025643;
  margin-bottom: 8px;
}

.flow__step-num span {
  font-size: 1em;
}

.flow__note {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 32px;
  color: #231815;
}

.flow__step-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
}

.flow__step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #025643;
}

.flow__step-text {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #025643;
}

/* -----------------------------------------------
   10. 店舗情報  bg: #FFFFFF
----------------------------------------------- */
.store-info {
  padding: 50px 0 80px;
  background-color: #fff;
}

.store-info__inner {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.store-info__details {
  flex: 1;
}

.store-info__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 0.9375rem;
}

.store-info__table th,
.store-info__table td {
  padding: 30px 16px;
  border-bottom: 1px solid #231815;
  text-align: left;
  vertical-align: top;
}

.store-info__tel-tr th,
.store-info__tel-tr td {
  vertical-align: middle;
}

.store-info__table tr:first-child th,
.store-info__table tr:first-child td {
  border-top: 1px solid #231815;
}

.store-info__table th {
  width: 120px;
  font-weight: 700;
  white-space: nowrap;
  color: #025643;
  padding-left: 28px;
}

.store-info__table td {
  font-weight: 500;
  color: #231815;
}

.store-info__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.store-info__map {
  flex: 1;
}

.store-info__map iframe {
  width: 100%;
  height: 255px;
  border: 0;
  border-radius: 4px;
}

.store-info__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 95%;
  margin: 0 auto;
}

.store-info__photos img {
  width: 100%;
}

/* -----------------------------------------------
   12. よくある質問  bg: #EDEDEB
----------------------------------------------- */
.faq {
  padding: 80px 0;
  background-color: #EDEDEB;
}

.faq .section-title {
  color: #025643;
}

.btn__icon {
  display: inline;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.btn--store-tel {
  background-color: #C94922;
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 24px;
}

.store-info__tel-row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 5px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px 0px;
  background-color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.faq__q-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #025643;
  color: #fff;
  border-radius: 0;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1rem;
}

.faq__answer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 24px 20px;
  background-color: #fff;
  font-size: 0.875rem;
}

.faq__a-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #95DDCC;
  color: #fff;
  border-radius: 0;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1rem;
}

/* -----------------------------------------------
   13. 無料相談フォーム  bg: #FFFFFF
----------------------------------------------- */
.contact-form {
  padding: 80px 0;
  background-color: #fff;
}

.contact-form .section-title {
  color: #025643;
}

.contact-form .form-group--submit .btn {
  background-color: #fff;
  color: #025643;
  border: 2px solid #025643;
  border-radius: 9999px;
  padding: 14px 64px;
  font-size: 1rem;
  font-weight: 700;
}

.contact-form .form-group--submit .btn:hover {
  background-color: #025643;
  color: #fff;
  opacity: 1;
}

.contact-form__lead {
  text-align: center;
  margin-top: -30px;
  margin-bottom: 40px;
  font-size: 0.8rem;
  color: #231815;
}

.contact-form__form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-bottom: 35px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group--half {
  max-width: calc(50% - 10px);
}

.form-optional {
  display: inline-block;
  background-color: #aaa;
  color: #fff;
  font-size: 0.6875rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

.form-group {
  margin-bottom: 24px;
}

.form-group--submit {
  text-align: center;
  margin-top: 32px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.form-required {
  display: inline-block;
  background-color: #C94922;
  color: #fff;
  font-size: 0.6875rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4a9e8a;
  box-shadow: 0 0 0 3px rgba(74, 158, 138, 0.15);
}

.form-textarea {
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999999;
}

/* 入力エラー表示 */
.form-input.is-error,
.form-textarea.is-error {
  border-color: #d93025;
  background-color: #fdf3f2;
}

.form-input.is-error:focus,
.form-textarea.is-error:focus {
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.15);
}

.form-error {
  margin: 6px 0 0;
  color: #d93025;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* 送信結果メッセージ */
.form-status {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-status--success {
  color: #1e6b3a;
  background-color: #eaf6ee;
  border: 1px solid #b7e0c4;
}

.form-status--error {
  color: #b3261e;
  background-color: #fdf3f2;
  border: 1px solid #f3c4c0;
}

/* 送信中ボタン */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* -----------------------------------------------
   14. フッター
----------------------------------------------- */
.footer {
  background-color: #025643;
  color: #fff;
  text-align: center;
}

.footer__body {
  padding: 30px 24px 10px;
}

.footer__logo {
  display: inline-block;
  background-color: #fff;
  padding: 12px 24px;
  margin-bottom: 32px;
}

.footer__logo img {
  width: 160px;
  height: auto;
  display: block;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.footer__company {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer__nav-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__nav-list a:hover {
  color: #fff;
}

.footer__copyright {
  padding: 16px 24px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

/* -----------------------------------------------
   SP用要素（PCでは非表示）
----------------------------------------------- */
.sp-menu-btn { display: none; }
.sp-menu     { display: none; }
.sp-totop    { display: none; }
.sp-br       { display: none; }
.pc-br       { display: inline; }
.gold-service__flow-sp { display: none; }

/* ===============================================
   SP レスポンシブ  max-width: 1024px
=============================================== */
@media (max-width: 1024px) {

  /* ===== 共通 ===== */
  .container {
    padding: 0 5vw;
  }

  .faq .container {
    padding: 0;
  }

  /* ===== ハンバーガーボタン ===== */
  .sp-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: fixed;
    top: 10px;
    right: 12px;
    z-index: 1001;
  }

  .sp-menu-btn img {
    width: 36px;
    height: 36px;
  }

  /* ===== モバイルメニュー ===== */
  .sp-menu {
    display: none;
    position: fixed;
    top: 11vw;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10vw 6vw 12vw;
    box-sizing: border-box;
    text-align: center;
    height: auto;
  }

  .sp-menu.is-open {
    display: flex;
    justify-content: flex-start;
    box-shadow: 0px 0px 3vw #000000;
  }

  .sp-menu__list {
    list-style: none;
    margin: 0 0 3vw;
    padding: 0;
    width: 100%;
  }

  .sp-menu__list li {
    border: none;
  }

  .sp-menu__link {
    display: block;
    padding: 3vw 4vw;
    font-size: 4vw;
    font-weight: 700;
    color: #025643;
    text-decoration: none;
  }

  .sp-menu__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    width: 100%;
  }

  /* ===== ヘッダー ===== */
  .header-top__contact,
  .header-nav {
    display: none;
  }

  .header-top__store-name {
    font-weight: 700;
    margin-left: 0;
    padding-left: 5vw;
  }

  .header-top__store-main {
    font-size: 0.8rem;
  }

  .header-top__store-sub {
    font-size: 0.7rem;
  }

  .header-top__store-particle {
    font-size: 0.5rem;
  }

  .header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
  }

  .header-top__inner {
    justify-content: flex-start;
    align-items: center;
    padding: 5vw 5vw;
  }

  .header-top__logo img {
    height: 7vw;
    width: auto;
  }

  /* ===== SP用改行 / PC用改行 ===== */
  .sp-br {
    display: inline;
  }

  .pc-br {
    display: none;
  }

  /* ===== イベント ===== */
  .event {
    background-color: #EDEDEB;
    padding: 8vw 0;
  }

  .event__img--pc {
    display: none;
  }

  .event__img--sp {
    display: block;
  }

  .event__content img {
    width: 100%;
  }

  /* ===== ヒーロー ===== */
  .hero {
    background-image: none;
    padding: 19vw 0 6vw;
  }

  .hero__fv-sp {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero__inner {
    display: none;
  }

  .hero__image {
    display: none;
  }

  .hero__eyebrow {
    margin-top: 0;
    font-size: 0.8rem;
    padding: 1vw 4vw;
  }

  .hero__title {
    font-size: 2.8rem;
    line-height: 1;
  }

  .hero__title--marked {
    display: none;
  }

  .hero__title--urunavi {
    color: #025643;
  }

  .hero__title--line2 {
    font-size: 0.65em;
  }

  .hero__title--big {
    font-size: 1em;
  }

  .hero__sub--cta {
    font-weight: 700;
    color: #025643;
  }

  .hero__sub {
    font-size: 0.95rem;
  }

  .hero__action-tel-label {
    display: none;
  }

  .hero__content img {
    width: 100%;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5vw 4vw 4vw;
    gap: 1vw;
    margin-top: -23vw;
  }

  .hero__action-wrap {
    position: static;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    border: 2px solid #025643;
    border-radius: 9999px;
    background: #fff;
    padding: 1vw 3vw 1vw 1vw;
    gap: 2vw;
    color: #025643;
  }

  .hero__action-badge {
    position: static;
    display: block;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    padding: 4px 0 0;
    box-sizing: border-box;
    background-color: #025643;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
  }

  .hero__action-btn {
    display: inline;
    font-size: 3.8vw;
    font-weight: 700;
    color: #025643;
    width: auto;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    white-space: nowrap;
  }

  .hero__action-tel {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5vw;
    background-color: #C94922;
    font-size: 3.6vw;
    padding: 1.1vw 6vw 1.1vw 7vw;
    border-radius: 9999px;
    color: #fff;
    font-weight: 700;
    width: auto;
    white-space: nowrap;
  }

  .hero__action-tel-row {
    display: inline-flex;
    align-items: center;
    gap: 1vw;
  }

  .hero__action-tel-row img {
    width: 5vw;
    height: 5vw;
  }

  .hero__action-tel-number {
    font-size: 4.5vw;
  }

  /* ===== 選ばれる理由 ===== */
  .reasons__list {
    flex-direction: column;
    align-items: center;
    gap: 15vw;
    width: 95%;
    margin: 0 auto;
  }

  .reasons__item-title {
    font-size: 1.5rem;
  }

  /* ===== 買取品目一覧 ===== */
  .items__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .items__item-name {
    font-size: 0.7rem;
  }

  .items__item-desc {
    font-size: 0.5rem;
  }

  /* ===== 金の精錬分割 ===== */
  .gold-service__heading {
    padding: 0 5vw;
  }

  .gold-service__block--img-left {
    background-image: url('../image/sp-background-gold.png');
  }

  .gold-service__image-caption {
    margin-top: 5vw;
  }

  .gold-service__right-inner .gold-service__block-text p br {
    display: none;
  }

  .gold-service__block {
    padding: 10vw 0;
  }

  .gold-service__block-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5vw;
  }

  .gold-service__block--img-left .gold-service__block-inner,
  .gold-service__right-inner {
    flex-direction: column;
  }

  .gold-tags {
    flex-wrap: wrap;
    gap: 10px;
  }

  .gold-tags .sp-br {
    display: none;
  }

  .gold-service__block-image img {
    width: 100%;
  }

  /* 精錬分割フロー：PCを非表示、SP画像を表示 */
  .gold-service__flow-pc {
    display: none;
  }

  .gold-service__flow-sp {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  /* ===== 店頭査定・買取の流れ ===== */
  .flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .flow__step {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    column-gap: 4vw;
    max-width: 100%;
    padding: 4vw;
    background: #f5f5f5;
    margin-bottom: 0;
  }

  .flow__step-num {
    grid-column: 1;
    grid-row: 1;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0;
  }

  .flow__step-num span {
    font-size: 1.3em;
  }

  .flow__step-icon {
    grid-column: 1;
    grid-row: 2;
  }

  .flow__step-icon img {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    display: block;
  }

  .flow__step-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.3rem;
    margin: 0;
    text-align: left;
  }

  .flow__step-text {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.9rem;
    text-align: left;
    margin: 0;
  }

  .flow__arrow {
    transform: rotate(90deg);
    width: 19vw;
    height: 19vw;
    margin: -6.1vw auto;
    display: block;
    object-fit: contain;
  }

  /* ===== フォーム ===== */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .form-row .form-group {
    margin-bottom: 7vw;
  }

  .form-group--half {
    max-width: 100%;
  }

  /* ===== 店舗情報 ===== */
  .store-info {
    padding: 10vw 0;
  }

  .store-info__inner {
    flex-direction: column;
    gap: 0;
  }

  .store-info__right .store-info__table tr:first-child th,
  .store-info__right .store-info__table tr:first-child td {
    border-top: none;
  }

  .store-info__table {
    margin-bottom: 0;
  }

  .store-info__table th,
  .store-info__table td {
    padding: 4vw 2vw;
    vertical-align: middle;
  }

  .store-info__table th {
    width: 20vw;
  }

  .btn--store-tel {
    padding: 2vw 3vw;
  }

  .store-info__photos {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  /* ===== 買取方法 ===== */
  .methods__item-title {
    font-size: 1.2rem;
  }

  .methods__item-text {
    font-size: 0.9rem;
  }

  .methods__list {
    flex-direction: column;
    align-items: center;
    gap: 8vw;
  }

  .methods__item {
    max-width: 100%;
    width: 100%;
  }

  .flow__note {
    text-align: left;
    font-size: 1rem;
  }

  /* ===== SPページトップボタン ===== */
  .sp-totop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .sp-totop img {
    width: 56px;
    height: 56px;
  }

  /* フッター */
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2vw;
  }
}

/* ===============================================
   タブレット専用  769px〜1024px
=============================================== */
@media (min-width: 769px) and (max-width: 1024px) {
 .sp-menu {
    top: 6vw;
  }
  /* ===== ヘッダー ===== */
  .header-top__logo img   { height: 5vw; }
  .header-top__inner      { padding: 3vw 5vw; }
  .header-top__store-main { font-size: 1.3rem; }
  .header-top__store-sub  { font-size: 1.1rem; }

  /* ===== ヒーロー ===== */
  .hero            { padding: 14vw 0 6vw; }
  .hero__actions   { margin-top: -15vw; }
  .hero__action-badge {
    width: 5.5vw;
    height: 5.5vw;
    font-size: 1.5vw;
  }
  .hero__action-btn         { font-size: 1.1rem; }
  .hero__action-tel         { font-size: 1rem; padding: 1vw 4vw; }
  .hero__action-tel-number  { font-size: 1.5rem; }
  .hero__action-tel-row img { width: 3vw; height: 3vw; }

  /* ===== 選ばれる理由 ===== */
  .reasons__list       { gap: 8vw; }
  .reasons__item-title { font-size: 1.8rem; }
  .reasons__item-text  { font-size: 1rem; }
  .reasons__item img   { width: 180px; height: 180px; }

  /* ===== 買取品目一覧 ===== */
  .items__grid      { grid-template-columns: repeat(3, 1fr); }
  .items__item-name { font-size: 1rem; }
  .items__item-desc { font-size: 0.75rem; }

  /* ===== 金の精錬分割 ===== */
  .gold-service__block-title    { font-size: 1.8rem; }
  .gold-service__block-subtitle { font-size: 1.5rem; }
  .gold-service__block-text p   { font-size: 1rem; }
  .gold-service__flow-title     { font-size: 1.8rem; }
  .gold-service__flow-sp        { max-width: 520px; }

  /* ===== 買取方法 ===== */
  .methods__list       { flex-direction: row; flex-wrap: wrap; gap: 4vw; }
  .methods__item       { max-width: 44%; }
  .methods__item-title { font-size: 1.4rem; }
  .methods__item-text  { font-size: 1rem; }

  /* ===== 店頭査定・買取の流れ ===== */
  .flow__step-title    { font-size: 1.4rem; }
  .flow__step-text     { font-size: 1rem; }
  .flow__step-num      { font-size: 1.5rem; }
  .flow__step-icon img { width: 60px; height: 60px; }
  .flow__arrow         { width: 13vw; height: 13vw; margin: -4.2vw auto; }
  .flow__note          { font-size: 1.1rem; }

  /* ===== 店舗情報 ===== */
  .store-info__table            { font-size: 1rem; }
  .store-info__table th         { width: 14vw; }
  .store-info__table th,
  .store-info__table td         { padding: 3vw 2vw; font-size: 1rem; }
  .store-info__photos           { grid-template-columns: repeat(4, 1fr); }
  .btn--store-tel               { font-size: 1rem; padding: 10px 24px; }

  /* ===== よくある質問 ===== */
  .faq__question { font-size: 1.1rem; }
  .faq__answer   { font-size: 1rem; }
  .faq__icon     { width: 40px; height: 40px; }

  /* ===== 無料相談フォーム ===== */
  .form-row           { grid-template-columns: 1fr 1fr; }
  .contact-form__lead { font-size: 1rem; }
  .contact-form__note { font-size: 0.9rem; }
  .form-group label   { font-size: 1rem; }

  /* ===== メニュー ===== */
  .sp-menu__link { font-size: 1.5rem; }
}

/* ===============================================
   アニメーション
=============================================== */

/* スクロールフェードアップ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--anim-delay, 0s),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--anim-delay, 0s);
}

.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ヒーロー：ページ読み込み時 */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroSpin {
  from { opacity: 0; transform: rotate(-20deg) scale(0.75); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

.hero__fv-sp         { animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both; }
.hero__eyebrow       { animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }
.hero__title         { animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }
.hero__sub           { animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both; }
.hero__content > img { animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both; }
.hero__store-badge   { animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both; }
.hero__stamp         { animation: heroSpin 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both; }
.hero__actions       { animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both; }


/* アクセシビリティ：モーション低減 */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__fv-sp,
  .hero__eyebrow,
  .hero__title,
  .hero__sub,
  .hero__content > img,
  .hero__store-badge,
  .hero__stamp,
  .hero__actions,
  .hero__action-btn {
    animation: none;
  }
}
