@charset "UTF-8";
/* ==================================================
   Eco Estimate Reservation
   案5：ベーシック・ナチュラル風 シンプルデザイン
   customer.css 丸ごと差し替え用
================================================== */

#eco-estimate-app {
  --main: #168b86;
  --main-dark: #0f6f6b;
  --main-soft: #eef8f7;
  --text: #222222;
  --sub: #5f686b;
  --muted: #8a9497;
  --bg: #fbfbfa;
  --card: #ffffff;
  --line: #e2e7e6;
  --line-dark: #ccd8d6;
  --alert-bg: #fff7e6;
  --alert-border: #efd9a7;
  --alert-text: #624915;
  --closed: #fff0f0;
  --closed-text: #c83737;
  --partial: #fff8df;
  --partial-text: #8a6400;

  width: 100%;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  letter-spacing: 0.02em;
}

#eco-estimate-app * {
  box-sizing: border-box;
}

#eco-estimate-app h1,
#eco-estimate-app h2,
#eco-estimate-app h3,
#eco-estimate-app p {
  margin-top: 0;
}

#eco-estimate-app h1::before,
#eco-estimate-app h1::after,
#eco-estimate-app h2::before,
#eco-estimate-app h2::after,
#eco-estimate-app h3::before,
#eco-estimate-app h3::after {
  display: none !important;
}

#eco-estimate-app a {
  text-decoration: none;
}

#eco-estimate-app button,
#eco-estimate-app input,
#eco-estimate-app select,
#eco-estimate-app textarea {
  font-family: inherit;
}

#eco-estimate-app .eco-estimate-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================================================
   HERO：余白多め・カードなしで自然に
================================================== */

#eco-estimate-app .eco-estimate-hero {
  padding: 88px 0 54px;
  background:
    radial-gradient(circle at top center, rgba(22,139,134,0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

#eco-estimate-app .eco-estimate-hero-grid {
  display: block;
  text-align: center;
}

#eco-estimate-app .eco-estimate-label {
  margin: 0 0 18px;
  color: var(--main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

#eco-estimate-app .eco-estimate-label::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--main);
}

#eco-estimate-app .eco-estimate-label.center {
  text-align: center;
}

#eco-estimate-app .eco-estimate-hero h1 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.08em;
}

#eco-estimate-app .eco-estimate-lead {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--sub);
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}

#eco-estimate-app .eco-estimate-main-btn {
  min-width: 220px;
  min-height: 54px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--main);
  border: 1px solid var(--main-dark);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(22,139,134,0.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

#eco-estimate-app .eco-estimate-main-btn:hover {
  transform: translateY(-1px);
  background: var(--main-dark);
  box-shadow: 0 14px 26px rgba(22,139,134,0.22);
}

/* 右側の料金カードは案5では使わず、全体をスッキリ */
#eco-estimate-app .eco-estimate-hero-panel {
  display: none;
}

/* ==================================================
   SECTION
================================================== */

#eco-estimate-app .eco-estimate-section {
  padding: 64px 0 86px;
  background: var(--bg);
}

#eco-estimate-app .eco-estimate-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

#eco-estimate-app .eco-estimate-heading h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.45;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-heading p {
  margin: 0;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

/* ==================================================
   家電リサイクル説明：案5のカード風
================================================== */

#eco-estimate-app .eco-recycle-guide,
#eco-estimate-app .eco-estimate-recycle-guide {
  margin: 0 auto 34px;
  padding: 34px 36px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(20, 50, 52, 0.06);
}

#eco-estimate-app .eco-recycle-guide-head,
#eco-estimate-app .eco-estimate-recycle-guide-head {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

#eco-estimate-app .eco-recycle-guide-head span,
#eco-estimate-app .eco-estimate-recycle-guide-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

#eco-estimate-app .eco-recycle-guide-head h3,
#eco-estimate-app .eco-estimate-recycle-guide-head h3 {
  margin: 0 0 12px;
  color: var(--main-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.06em;
}

#eco-estimate-app .eco-recycle-guide-head p,
#eco-estimate-app .eco-estimate-recycle-guide-lead,
#eco-estimate-app .eco-estimate-recycle-guide-head p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 800;
}

#eco-estimate-app .eco-recycle-guide-grid,
#eco-estimate-app .eco-estimate-recycle-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 22px;
}

#eco-estimate-app .eco-recycle-guide-card,
#eco-estimate-app .eco-estimate-recycle-guide-item {
  position: relative;
  min-height: 130px;
  padding: 26px 14px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

#eco-estimate-app .eco-recycle-guide-card:hover,
#eco-estimate-app .eco-estimate-recycle-guide-item:hover {
  transform: translateY(-2px);
  border-color: rgba(22,139,134,0.36);
  box-shadow: 0 10px 22px rgba(20, 50, 52, 0.06);
}

#eco-estimate-app .eco-recycle-guide-card strong,
#eco-estimate-app .eco-estimate-recycle-guide-item strong {
  display: block;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 900;
}

#eco-estimate-app .eco-recycle-guide-card small,
#eco-estimate-app .eco-estimate-recycle-guide-item small {
  display: block;
  color: var(--sub);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 700;
}

/* アイコンがなくても自然に見える簡易マーク */
#eco-estimate-app .eco-recycle-guide-card::before,
#eco-estimate-app .eco-estimate-recycle-guide-item::before {
  content: "";
  display: block;
  width: 42px;
  height: 34px;
  margin: 0 auto 14px;
  border: 2px solid var(--main);
  border-radius: 6px;
  opacity: .9;
}

#eco-estimate-app .eco-recycle-guide-card:nth-child(1)::before,
#eco-estimate-app .eco-estimate-recycle-guide-item:nth-child(1)::before {
  height: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 0 -7px var(--main), 0 18px 0 -8px var(--main);
}

#eco-estimate-app .eco-recycle-guide-card:nth-child(2)::before,
#eco-estimate-app .eco-estimate-recycle-guide-item:nth-child(2)::before {
  width: 46px;
  height: 30px;
  border-radius: 4px;
  box-shadow: 0 10px 0 -8px var(--main);
}

#eco-estimate-app .eco-recycle-guide-card:nth-child(3)::before,
#eco-estimate-app .eco-estimate-recycle-guide-item:nth-child(3)::before {
  width: 32px;
  height: 48px;
  border-radius: 5px;
  box-shadow: inset 0 18px 0 -16px var(--main);
}

#eco-estimate-app .eco-recycle-guide-card:nth-child(4)::before,
#eco-estimate-app .eco-estimate-recycle-guide-item:nth-child(4)::before {
  width: 38px;
  height: 46px;
  border-radius: 7px;
  box-shadow: inset 0 -22px 0 -18px var(--main);
}

#eco-estimate-app .eco-recycle-guide-note,
#eco-estimate-app .eco-estimate-recycle-guide-note {
  position: relative;
  margin: 4px 0 18px;
  padding: 18px 20px 18px 58px;
  background: var(--alert-bg);
  border: 1px solid var(--alert-border);
  border-radius: 9px;
  color: var(--alert-text);
}

#eco-estimate-app .eco-recycle-guide-note::before,
#eco-estimate-app .eco-estimate-recycle-guide-note::before {
  content: "!";
  position: absolute;
  left: 22px;
  top: 20px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #b88624;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

#eco-estimate-app .eco-recycle-guide-note strong,
#eco-estimate-app .eco-estimate-recycle-guide-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--alert-text);
  font-size: 16px;
  font-weight: 900;
}

#eco-estimate-app .eco-recycle-guide-note p,
#eco-estimate-app .eco-estimate-recycle-guide-note p {
  margin: 0;
  color: var(--alert-text);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 800;
}

#eco-estimate-app .eco-recycle-guide-small,
#eco-estimate-app .eco-estimate-recycle-guide-sub {
  margin: 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 800;
}

/* ==================================================
   FORM CARD：余計な装飾を抑えた白カード
================================================== */

#eco-estimate-app .eco-estimate-form-card,
#eco-estimate-app .eco-estimate-contact-card {
  margin-top: 32px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(20, 50, 52, 0.06);
}

#eco-estimate-app .eco-estimate-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

#eco-estimate-app .eco-estimate-card-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-add-btn {
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid var(--main-dark);
  background: var(--main);
  border-radius: 7px;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(22,139,134,0.16);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

#eco-estimate-app .eco-estimate-add-btn:hover {
  transform: translateY(-1px);
  background: var(--main-dark);
  box-shadow: 0 12px 22px rgba(22,139,134,0.18);
}

#eco-estimate-app .eco-estimate-items {
  display: grid;
  gap: 16px;
}

#eco-estimate-app .eco-estimate-item-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.68fr 0.8fr 0.86fr 0.86fr auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  background: #fafdfd;
  border: 1px solid var(--line);
  border-radius: 10px;
}

#eco-estimate-app label,
#eco-estimate-app .eco-estimate-calendar-field {
  display: grid;
  gap: 8px;
}

#eco-estimate-app label span,
#eco-estimate-app .eco-estimate-field-title,
#eco-estimate-app .eco-estimate-row-total span {
  color: var(--sub);
  font-size: 12px;
  font-weight: 900;
}

#eco-estimate-app label b,
#eco-estimate-app .eco-estimate-field-title b {
  color: #c83737;
  font-size: 12px;
}

#eco-estimate-app input,
#eco-estimate-app select,
#eco-estimate-app textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
  box-shadow: none;
}

#eco-estimate-app textarea {
  min-height: 130px;
  resize: vertical;
}

#eco-estimate-app input:focus,
#eco-estimate-app select:focus,
#eco-estimate-app textarea:focus {
  outline: none;
  border-color: var(--main);
  box-shadow: 0 0 0 3px rgba(22,139,134,0.12);
}

#eco-estimate-app .eco-estimate-row-total {
  display: grid;
  gap: 8px;
}

#eco-estimate-app .eco-estimate-row-total strong {
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--main-dark);
  font-size: 16px;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-remove-btn {
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid #ecc8c8;
  background: #fff8f8;
  border-radius: 6px;
  color: #b92d2d;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

/* ==================================================
   TOTAL PANEL：概算料金だけ大きく
================================================== */

#eco-estimate-app .eco-estimate-total-panel {
  margin-top: 34px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(20, 50, 52, 0.06);
}

#eco-estimate-app .eco-estimate-total-head {
  margin-bottom: 24px;
  text-align: center;
}

#eco-estimate-app .eco-estimate-total-head span {
  display: block;
  margin-bottom: 10px;
  color: var(--main);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

#eco-estimate-app .eco-estimate-total-head h3 {
  margin: 0;
  color: var(--main-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.06em;
}

#eco-estimate-app .eco-estimate-total-head h3::after {
  content: "";
  display: block !important;
  width: 46px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--main);
}

#eco-estimate-app .eco-estimate-total-single {
  width: min(100%, 560px);
  margin: 0 auto 24px;
  padding: 34px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(20, 50, 52, 0.04);
}

#eco-estimate-app .eco-estimate-total-single p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-total-single strong {
  display: block;
  color: var(--main);
  font-size: clamp(52px, 8vw, 84px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.02em;
}

#eco-estimate-app .eco-estimate-total-single small {
  display: block;
  margin-top: 10px;
  color: var(--sub);
  font-size: 16px;
  font-weight: 800;
}

/* 旧HTMLが残っていても、重量を隠して料金だけに見せる */
#eco-estimate-app .eco-estimate-total-grid {
  display: block;
  margin-bottom: 24px;
}

#eco-estimate-app .eco-estimate-total-grid .eco-estimate-total-box {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 34px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(20, 50, 52, 0.04);
}

#eco-estimate-app .eco-estimate-total-grid .eco-estimate-total-box:not(.price) {
  display: none !important;
}

#eco-estimate-app .eco-estimate-total-grid .eco-estimate-total-box p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-total-grid .eco-estimate-total-box strong {
  color: var(--main);
  font-size: clamp(52px, 8vw, 84px);
  line-height: 1.05;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-total-grid .eco-estimate-total-box small {
  color: var(--sub);
  font-size: 16px;
  font-weight: 800;
}

#eco-estimate-app .eco-estimate-warning {
  padding: 18px 20px;
  background: var(--alert-bg);
  border: 1px solid var(--alert-border);
  border-radius: 9px;
}

#eco-estimate-app .eco-estimate-warning strong {
  display: block;
  margin-bottom: 8px;
  color: var(--alert-text);
  font-size: 16px;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-warning p {
  margin: 0;
  color: var(--alert-text);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 800;
}

/* ==================================================
   CONTACT
================================================== */

#eco-estimate-app .eco-estimate-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#eco-estimate-app .eco-estimate-contact-grid .wide {
  grid-column: 1 / -1;
}

#eco-estimate-app .eco-estimate-submit-btn {
  width: 100%;
  min-height: 58px;
  margin-top: 28px;
  border: 1px solid var(--main-dark);
  background: var(--main);
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(22,139,134,0.18);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

#eco-estimate-app .eco-estimate-submit-btn:hover {
  transform: translateY(-1px);
  background: var(--main-dark);
  box-shadow: 0 14px 26px rgba(22,139,134,0.22);
}

#eco-estimate-app .eco-estimate-submit-btn.is-sent {
  background: #777;
  border-color: #777;
  box-shadow: none;
}

/* ==================================================
   CUSTOMER CALENDAR
================================================== */

#eco-estimate-app .eco-front-calendar {
  width: min(100%, 600px);
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(20, 50, 52, 0.06);
  overflow: hidden;
}

#eco-estimate-app .eco-front-calendar-toolbar {
  display: grid;
  grid-template-columns: 92px 1fr 92px;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #fafdfd;
}

#eco-estimate-app .eco-front-calendar-toolbar button {
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 7px;
  color: var(--main-dark);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

#eco-estimate-app .eco-front-calendar-toolbar strong {
  text-align: center;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

#eco-estimate-app .eco-front-calendar-weekdays,
#eco-estimate-app .eco-front-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

#eco-estimate-app .eco-front-calendar-weekdays span {
  padding: 10px 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

#eco-estimate-app .eco-front-calendar-weekdays span:first-child {
  color: #c83737;
}

#eco-estimate-app .eco-front-calendar-weekdays span:last-child {
  color: #315eb8;
  border-right: none;
}

#eco-estimate-app .eco-front-calendar-day,
#eco-estimate-app .eco-front-calendar-empty {
  min-height: 62px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

#eco-estimate-app .eco-front-calendar-day:nth-child(7n),
#eco-estimate-app .eco-front-calendar-empty:nth-child(7n) {
  border-right: none;
}

#eco-estimate-app .eco-front-calendar-empty {
  background: #f5f7f7;
}

#eco-estimate-app .eco-front-calendar-day {
  position: relative;
  padding: 8px 4px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

#eco-estimate-app .eco-front-calendar-day:hover {
  background: var(--main-soft);
}

#eco-estimate-app .eco-front-calendar-day.is-sunday {
  color: #c83737;
}

#eco-estimate-app .eco-front-calendar-day.is-saturday {
  color: #315eb8;
}

#eco-estimate-app .eco-front-calendar-day.is-past,
#eco-estimate-app .eco-front-calendar-day.is-disabled {
  color: #9aa2a6;
  background: #f5f5f5;
  cursor: not-allowed;
}

#eco-estimate-app .eco-front-calendar-day.is-closed {
  color: var(--closed-text);
  background: var(--closed);
  cursor: not-allowed;
}

#eco-estimate-app .eco-front-calendar-day.is-partial {
  color: var(--partial-text);
  background: var(--partial);
}

#eco-estimate-app .eco-front-calendar-day.is-selected {
  color: #ffffff;
  background: var(--main);
  box-shadow: inset 0 0 0 2px #ffffff;
}

#eco-estimate-app .eco-front-calendar-day strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 900;
}

#eco-estimate-app .eco-front-calendar-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 100%;
}

#eco-estimate-app .eco-front-slot {
  display: block;
  padding: 4px 2px;
  border-radius: 7px;
  border: 1px solid rgba(0,0,0,0.10);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

#eco-estimate-app .eco-front-slot small {
  display: block;
  margin-top: 1px;
  font-size: 9px;
  line-height: 1.1;
  font-weight: 800;
}

#eco-estimate-app .eco-front-slot.is-open {
  background: #e9f8f7;
  color: var(--main-dark);
  border-color: rgba(22,139,134,0.34);
}

#eco-estimate-app .eco-front-slot.is-busy {
  background: #fff4c8;
  color: #7a5200;
  border-color: #d7b054;
}

#eco-estimate-app .eco-front-slot.is-full {
  background: #ffe4e4;
  color: #9d1c1f;
  border-color: #d46363;
}

#eco-estimate-app .eco-front-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 12px;
  background: #ffffff;
}

#eco-estimate-app .eco-front-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 900;
}

#eco-estimate-app .eco-front-calendar-legend i {
  width: 12px;
  height: 12px;
  display: inline-block;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
}

#eco-estimate-app .eco-front-calendar-legend i.is-closed {
  background: var(--closed);
  border-color: #d46363;
}

#eco-estimate-app .eco-front-calendar-legend i.is-partial {
  background: var(--partial);
  border-color: #d7b054;
}

#eco-estimate-app .eco-front-calendar-legend i.is-selected {
  background: var(--main);
  border-color: var(--main-dark);
}

#eco-estimate-app .eco-front-calendar-selected {
  margin: 0;
  padding: 13px 12px;
  border-top: 1px solid var(--line);
  background: #fafdfd;
  color: var(--main-dark);
  font-size: 14px;
  font-weight: 900;
}

/* 家電リサイクル対象品の追加フィールド */
#eco-estimate-app .eco-appliance-maker-field {
  display: none;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1100px) {
  #eco-estimate-app .eco-estimate-item-row {
    grid-template-columns: 1fr 1fr;
  }

  #eco-estimate-app .eco-recycle-guide-grid,
  #eco-estimate-app .eco-estimate-recycle-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #eco-estimate-app .eco-estimate-contact-grid {
    grid-template-columns: 1fr;
  }

  #eco-estimate-app .eco-estimate-hero {
    padding: 64px 0 42px;
  }

  #eco-estimate-app .eco-estimate-form-card,
  #eco-estimate-app .eco-estimate-contact-card,
  #eco-estimate-app .eco-estimate-total-panel,
  #eco-estimate-app .eco-recycle-guide,
  #eco-estimate-app .eco-estimate-recycle-guide {
    padding: 26px 20px;
  }

  #eco-estimate-app .eco-estimate-card-head {
    display: grid;
  }

  #eco-estimate-app .eco-estimate-add-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  #eco-estimate-app .eco-estimate-inner {
    padding: 0 18px;
  }

  #eco-estimate-app .eco-estimate-hero h1 {
    font-size: 31px;
  }

  #eco-estimate-app .eco-estimate-section {
    padding: 52px 0 70px;
  }

  #eco-estimate-app .eco-estimate-item-row {
    grid-template-columns: 1fr;
  }

  #eco-estimate-app .eco-recycle-guide-grid,
  #eco-estimate-app .eco-estimate-recycle-guide-grid {
    grid-template-columns: 1fr;
  }

  #eco-estimate-app .eco-estimate-total-single strong,
  #eco-estimate-app .eco-estimate-total-grid .eco-estimate-total-box strong {
    font-size: 46px;
  }

  #eco-estimate-app .eco-front-calendar {
    width: 100%;
  }

  #eco-estimate-app .eco-front-calendar-toolbar {
    grid-template-columns: 76px 1fr 76px;
  }

  #eco-estimate-app .eco-front-calendar-toolbar button {
    font-size: 12px;
    padding: 7px 6px;
  }

  #eco-estimate-app .eco-front-calendar-day,
  #eco-estimate-app .eco-front-calendar-empty {
    min-height: 50px;
  }

  #eco-estimate-app .eco-front-calendar-day {
    font-size: 12px;
  }

  #eco-estimate-app .eco-front-slot {
    font-size: 9px;
    padding: 3px 1px;
  }

  #eco-estimate-app .eco-front-slot small {
    display: none;
  }
}


/* 家電リサイクル対象品：メーカー検索 */
#eco-estimate-app .eco-appliance-maker-field {
  gap: 8px;
}

#eco-estimate-app .item-appliance-maker-search {
  min-height: 42px;
  font-size: 14px;
  background: #ffffff;
}

/* 2026-07-09 家電リサイクル：品目ごとのメーカー絞り込み説明 */
#eco-estimate-app .eco-maker-filter-note {
  display: block;
  margin-top: -2px;
  color: #667085;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}


/* ==================================================
   2026-07-09 回収品目エリア：お客様向けに大きく見やすく調整
   - 選択欄を大きく
   - メーカー検索欄を広く
   - 検索欄に虫眼鏡アイコン
   - 1行に詰め込みすぎないレイアウト
================================================== */

#eco-estimate-app .eco-estimate-form-card {
  padding: 44px 38px;
  border-radius: 22px;
  border: 1px solid #dfe8e8;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 57, 59, 0.055);
}

#eco-estimate-app .eco-estimate-card-head {
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e4eeee;
}

#eco-estimate-app .eco-estimate-card-head h3 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

#eco-estimate-app .eco-estimate-card-head h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  background: var(--main);
  border-radius: 999px;
}

#eco-estimate-app .eco-estimate-add-btn {
  min-width: 190px;
  min-height: 64px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(22,139,134,0.20);
}

#eco-estimate-app .eco-estimate-items {
  display: grid;
  gap: 22px;
}

#eco-estimate-app .eco-estimate-item-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px 20px;
  align-items: end;
  padding: 30px 28px;
  background: #fbfefe;
  border: 1px solid #dce8e8;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

#eco-estimate-app .eco-estimate-item-row label,
#eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total {
  min-width: 0;
}

#eco-estimate-app .eco-estimate-item-row label:has(.item-category) {
  grid-column: span 3;
}

#eco-estimate-app .eco-estimate-item-row label:has(.item-name) {
  grid-column: span 3;
}

#eco-estimate-app .eco-estimate-item-row .eco-appliance-maker-field {
  grid-column: span 6;
}

#eco-estimate-app .eco-estimate-item-row label:has(.item-count) {
  grid-column: span 2;
}

#eco-estimate-app .eco-estimate-item-row label:has(.item-size) {
  grid-column: span 3;
}

#eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total {
  grid-column: span 2;
}

#eco-estimate-app .eco-estimate-item-row .eco-estimate-remove-btn {
  grid-column: span 3;
}

#eco-estimate-app .eco-estimate-item-row label span,
#eco-estimate-app .eco-estimate-item-row .eco-estimate-field-title,
#eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total span {
  color: #273238;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-item-row select,
#eco-estimate-app .eco-estimate-item-row input[type="text"],
#eco-estimate-app .eco-estimate-item-row input[type="search"],
#eco-estimate-app .eco-estimate-item-row input[type="number"] {
  min-height: 62px;
  padding: 12px 16px;
  border: 1px solid #cfdada;
  border-radius: 13px;
  background-color: #ffffff;
  color: #162126;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

#eco-estimate-app .eco-estimate-item-row select {
  cursor: pointer;
}

#eco-estimate-app .eco-estimate-item-row input[type="number"] {
  text-align: center;
}

#eco-estimate-app .eco-estimate-item-row select:focus,
#eco-estimate-app .eco-estimate-item-row input[type="text"]:focus,
#eco-estimate-app .eco-estimate-item-row input[type="search"]:focus,
#eco-estimate-app .eco-estimate-item-row input[type="number"]:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 4px rgba(22,139,134,0.13);
}

#eco-estimate-app .eco-appliance-maker-field {
  display: grid;
  gap: 10px;
}

#eco-estimate-app .eco-maker-search-box {
  position: relative;
  display: block;
  width: 100%;
}

#eco-estimate-app .eco-maker-search-box::after {
  content: "\1F50D";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  opacity: 0.72;
  pointer-events: none;
}

#eco-estimate-app .eco-maker-search-box .item-appliance-maker-search,
#eco-estimate-app .item-appliance-maker-search {
  width: 100%;
  padding-right: 56px;
  font-size: 20px;
}

#eco-estimate-app .item-appliance-maker {
  min-height: 62px;
  font-size: 20px;
  font-weight: 900;
}

#eco-estimate-app .eco-maker-filter-note {
  margin: 0;
  color: #5b6b71;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 800;
}

#eco-estimate-app .eco-estimate-row-total strong {
  min-height: 62px;
  padding: 12px 14px;
  border-radius: 13px;
  background: #f1fbfa;
  border: 1px solid #cfe3e2;
  color: var(--main-dark);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-remove-btn {
  min-height: 62px;
  padding: 12px 18px;
  border-radius: 13px;
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  #eco-estimate-app .eco-estimate-item-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  #eco-estimate-app .eco-estimate-item-row label:has(.item-category),
  #eco-estimate-app .eco-estimate-item-row label:has(.item-name),
  #eco-estimate-app .eco-estimate-item-row .eco-appliance-maker-field,
  #eco-estimate-app .eco-estimate-item-row label:has(.item-size) {
    grid-column: span 3;
  }

  #eco-estimate-app .eco-estimate-item-row label:has(.item-count),
  #eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total,
  #eco-estimate-app .eco-estimate-item-row .eco-estimate-remove-btn {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  #eco-estimate-app .eco-estimate-form-card {
    padding: 28px 18px;
    border-radius: 18px;
  }

  #eco-estimate-app .eco-estimate-card-head {
    display: grid;
    gap: 18px;
  }

  #eco-estimate-app .eco-estimate-add-btn {
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

  #eco-estimate-app .eco-estimate-item-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 16px;
  }

  #eco-estimate-app .eco-estimate-item-row label:has(.item-category),
  #eco-estimate-app .eco-estimate-item-row label:has(.item-name),
  #eco-estimate-app .eco-estimate-item-row .eco-appliance-maker-field,
  #eco-estimate-app .eco-estimate-item-row label:has(.item-count),
  #eco-estimate-app .eco-estimate-item-row label:has(.item-size),
  #eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total,
  #eco-estimate-app .eco-estimate-item-row .eco-estimate-remove-btn {
    grid-column: 1 / -1;
  }

  #eco-estimate-app .eco-estimate-item-row label span,
  #eco-estimate-app .eco-estimate-item-row .eco-estimate-field-title,
  #eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total span {
    font-size: 16px;
  }

  #eco-estimate-app .eco-estimate-item-row select,
  #eco-estimate-app .eco-estimate-item-row input[type="text"],
  #eco-estimate-app .eco-estimate-item-row input[type="search"],
  #eco-estimate-app .eco-estimate-item-row input[type="number"],
  #eco-estimate-app .eco-estimate-row-total strong {
    min-height: 58px;
    font-size: 18px;
  }

  #eco-estimate-app .eco-maker-filter-note {
    font-size: 13px;
  }
}

/* ==================================================
   2026-07-09 全体重量入力・見やすさ改善・パッカー不可品目
================================================== */

#eco-estimate-app .eco-price-overview {
  margin: 0 auto 34px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #dfe8e8;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(20, 40, 45, 0.06);
}

#eco-estimate-app .eco-price-overview-head {
  text-align: center;
  margin-bottom: 22px;
}

#eco-estimate-app .eco-price-overview-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: #0b8f88;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

#eco-estimate-app .eco-price-overview-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #1b2529;
}

#eco-estimate-app .eco-price-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

#eco-estimate-app .eco-price-overview-card {
  padding: 22px 18px;
  border: 1px solid #dbe8e8;
  border-radius: 16px;
  background: #fbfdfd;
  text-align: center;
}

#eco-estimate-app .eco-price-overview-card strong,
#eco-estimate-app .eco-price-overview-card b,
#eco-estimate-app .eco-price-overview-card small {
  display: block;
}

#eco-estimate-app .eco-price-overview-card strong {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 900;
  color: #253238;
}

#eco-estimate-app .eco-price-overview-card b {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.2;
  color: #0b8f88;
  font-weight: 900;
}

#eco-estimate-app .eco-price-overview-card small {
  color: #5b6b71;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 800;
}

#eco-estimate-app .eco-price-overview-card-note {
  background: #fffaf0;
  border-color: #f0d9a3;
}

#eco-estimate-app .eco-price-overview p {
  margin: 0;
  color: #51656b;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 800;
  text-align: center;
}

#eco-estimate-app .eco-recycle-guide-card {
  cursor: pointer;
  border-radius: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#eco-estimate-app .eco-recycle-guide-card:hover {
  transform: translateY(-2px);
  border-color: #15968e;
  box-shadow: 0 14px 32px rgba(20, 148, 135, 0.12);
}

#eco-estimate-app .eco-recycle-guide-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

#eco-estimate-app .eco-estimate-mode-box {
  margin-bottom: 30px;
  padding: 26px;
  border: 1px solid #dfe8e8;
  border-radius: 18px;
  background: #fbfdfd;
}

#eco-estimate-app .eco-estimate-mode-head {
  margin-bottom: 18px;
}

#eco-estimate-app .eco-estimate-mode-head h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  color: #1b2529;
}

#eco-estimate-app .eco-estimate-mode-head p {
  margin: 0;
  color: #5b6b71;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 800;
}

#eco-estimate-app .eco-estimate-mode-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#eco-estimate-app .eco-estimate-mode-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 16px 18px;
  border: 2px solid #dbe8e8;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

#eco-estimate-app .eco-estimate-mode-option input {
  width: 20px;
  min-height: auto;
  height: 20px;
}

#eco-estimate-app .eco-estimate-mode-option span {
  font-size: 18px;
  font-weight: 900;
  color: #243137;
}

#eco-estimate-app .eco-estimate-mode-option.is-active {
  border-color: #15968e;
  background: #f0fbfa;
}

#eco-estimate-app .eco-manual-weight-box {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #cfe4e4;
  border-radius: 16px;
  background: #ffffff;
}

#eco-estimate-app .eco-manual-weight-box label {
  max-width: 420px;
}

#eco-estimate-app .eco-manual-weight-box label span {
  font-size: 18px;
  font-weight: 900;
  color: #243137;
}

#eco-estimate-app .eco-manual-weight-box input {
  min-height: 64px;
  font-size: 28px;
  font-weight: 900;
  color: #0b8f88;
  border-radius: 14px;
}

#eco-estimate-app .eco-manual-weight-box p {
  margin: 14px 0 0;
  color: #6a5a25;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
}

#eco-estimate-app .eco-estimate-add-btn.is-disabled,
#eco-estimate-app .eco-estimate-add-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

#eco-estimate-app .eco-estimate-items.is-disabled-by-manual {
  opacity: 0.45;
  filter: grayscale(0.3);
  pointer-events: none;
}

#eco-estimate-app .eco-estimate-form-card {
  padding: 42px 36px;
  border-radius: 22px;
}

#eco-estimate-app .eco-estimate-card-head h3 {
  font-size: 30px;
}

#eco-estimate-app .eco-estimate-add-btn {
  min-width: 180px;
  min-height: 60px;
  border-radius: 14px;
  font-size: 20px;
}

#eco-estimate-app .eco-estimate-item-row {
  grid-template-columns: minmax(170px, 1fr) minmax(200px, 1.2fr) minmax(300px, 1.8fr) minmax(110px, .7fr) minmax(170px, 1fr) minmax(120px, .75fr) minmax(120px, .75fr) minmax(115px, .7fr);
  gap: 20px;
  padding: 30px 24px;
  border-radius: 20px;
  overflow: visible;
}

#eco-estimate-app .eco-estimate-item-row label span,
#eco-estimate-app .eco-estimate-row-total span {
  font-size: 17px;
  line-height: 1.5;
  color: #2b383d;
}

#eco-estimate-app .eco-estimate-item-row input,
#eco-estimate-app .eco-estimate-item-row select,
#eco-estimate-app .eco-estimate-row-total strong,
#eco-estimate-app .eco-estimate-remove-btn {
  min-height: 62px;
  border-radius: 14px;
  font-size: 19px;
  font-weight: 900;
}

#eco-estimate-app .eco-appliance-maker-field {
  min-width: 300px;
}

#eco-estimate-app .eco-maker-search-box {
  position: relative;
}

#eco-estimate-app .eco-maker-search-box input {
  padding-right: 54px;
}

#eco-estimate-app .eco-maker-search-box::after {
  content: "\1F50D";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  pointer-events: none;
}

#eco-estimate-app .eco-appliance-maker-field select {
  margin-top: 10px;
}

#eco-estimate-app .eco-maker-filter-note {
  display: block;
  margin-top: 8px;
  color: #607278;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 800;
}

#eco-estimate-app .eco-estimate-item-row.is-non-packer {
  border: 3px solid #e54848;
  background: #fffafa;
  box-shadow: 0 12px 34px rgba(229, 72, 72, 0.12);
}

#eco-estimate-app .eco-non-packer-notice {
  display: none;
  grid-column: 1 / -1;
  padding: 16px 18px;
  border: 1px solid #f0b6b6;
  border-radius: 14px;
  background: #fff2f2;
  color: #a62121;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 900;
}

#eco-estimate-app .eco-non-packer-notice::before {
  content: "\26A0 ";
}

@media (max-width: 1280px) {
  #eco-estimate-app .eco-estimate-item-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #eco-estimate-app .eco-appliance-maker-field {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  #eco-estimate-app .eco-price-overview-grid,
  #eco-estimate-app .eco-estimate-mode-options {
    grid-template-columns: 1fr;
  }

  #eco-estimate-app .eco-estimate-form-card,
  #eco-estimate-app .eco-price-overview,
  #eco-estimate-app .eco-estimate-mode-box {
    padding: 24px 18px;
  }

  #eco-estimate-app .eco-estimate-item-row {
    grid-template-columns: 1fr;
    padding: 22px 16px;
  }

  #eco-estimate-app .eco-estimate-card-head h3 {
    font-size: 24px;
  }

  #eco-estimate-app .eco-estimate-item-row label span,
  #eco-estimate-app .eco-estimate-row-total span {
    font-size: 16px;
  }

  #eco-estimate-app .eco-estimate-item-row input,
  #eco-estimate-app .eco-estimate-item-row select,
  #eco-estimate-app .eco-estimate-row-total strong,
  #eco-estimate-app .eco-estimate-remove-btn {
    min-height: 58px;
    font-size: 17px;
  }
}

/* ==================================================
   2026-07-09 修正：回収品目カードの横はみ出し・詰まり解消
   ※前の8列固定レイアウトを上書き
================================================== */
#eco-estimate-app .eco-estimate-form-card,
#eco-estimate-app .eco-estimate-contact-card,
#eco-estimate-app .eco-estimate-total-panel {
  width: 100%;
  max-width: 100%;
}

#eco-estimate-app .eco-estimate-items {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 22px;
}

#eco-estimate-app .eco-estimate-item-row {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)) !important;
  gap: 22px 22px;
  align-items: end;
  padding: 28px 24px;
  border-radius: 20px;
  overflow: hidden;
}

#eco-estimate-app .eco-estimate-item-row > * {
  min-width: 0;
  max-width: 100%;
}

#eco-estimate-app .eco-estimate-item-row label,
#eco-estimate-app .eco-estimate-item-row .eco-appliance-maker-field,
#eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total {
  width: 100%;
  min-width: 0 !important;
  max-width: 100%;
}

/* メーカー検索は横幅を広く使う */
#eco-estimate-app .eco-estimate-item-row .eco-appliance-maker-field {
  grid-column: 1 / -1 !important;
}

/* 削除ボタンも無理に横並びさせず、見やすく下に配置 */
#eco-estimate-app .eco-estimate-item-row .eco-estimate-remove-btn {
  grid-column: 1 / -1 !important;
  width: 100%;
  max-width: 100%;
}

#eco-estimate-app .eco-estimate-item-row label:has(.item-category),
#eco-estimate-app .eco-estimate-item-row label:has(.item-name),
#eco-estimate-app .eco-estimate-item-row label:has(.item-count),
#eco-estimate-app .eco-estimate-item-row label:has(.item-size),
#eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total {
  grid-column: auto !important;
}

#eco-estimate-app .eco-estimate-item-row label span,
#eco-estimate-app .eco-estimate-item-row .eco-estimate-field-title,
#eco-estimate-app .eco-estimate-item-row .eco-estimate-row-total span {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 900;
  color: #243239;
}

#eco-estimate-app .eco-estimate-item-row select,
#eco-estimate-app .eco-estimate-item-row input[type="text"],
#eco-estimate-app .eco-estimate-item-row input[type="search"],
#eco-estimate-app .eco-estimate-item-row input[type="number"],
#eco-estimate-app .eco-estimate-row-total strong,
#eco-estimate-app .eco-estimate-remove-btn {
  width: 100%;
  max-width: 100%;
  min-height: 62px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 19px;
  line-height: 1.35;
  box-sizing: border-box;
}

#eco-estimate-app .eco-estimate-row-total strong {
  display: flex;
  align-items: center;
  justify-content: center;
}

#eco-estimate-app .eco-maker-search-box {
  position: relative;
  width: 100%;
  max-width: 100%;
}

#eco-estimate-app .eco-maker-search-box input,
#eco-estimate-app .item-appliance-maker-search {
  width: 100%;
  padding-right: 58px !important;
}

#eco-estimate-app .eco-maker-search-box::after {
  content: "\1F50D";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  opacity: 0.75;
  pointer-events: none;
}

#eco-estimate-app .eco-maker-filter-note {
  display: block;
  margin-top: 8px;
  color: #607278;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 800;
}

#eco-estimate-app .item-appliance-maker {
  width: 100%;
  margin-top: 10px;
}

/* 画面が広い時だけ、数量などを横に並べやすくする */
@media (min-width: 900px) {
  #eco-estimate-app .eco-estimate-item-row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  #eco-estimate-app .eco-estimate-item-row .eco-appliance-maker-field {
    grid-column: span 2 !important;
  }

  #eco-estimate-app .eco-estimate-item-row .eco-estimate-remove-btn {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 600px) {
  #eco-estimate-app .eco-estimate-form-card {
    padding: 24px 16px;
  }

  #eco-estimate-app .eco-estimate-item-row {
    grid-template-columns: 1fr !important;
    gap: 18px;
    padding: 20px 14px;
  }

  #eco-estimate-app .eco-estimate-card-head {
    display: grid;
    gap: 18px;
  }

  #eco-estimate-app .eco-estimate-add-btn {
    width: 100%;
  }

  #eco-estimate-app .eco-estimate-item-row select,
  #eco-estimate-app .eco-estimate-item-row input[type="text"],
  #eco-estimate-app .eco-estimate-item-row input[type="search"],
  #eco-estimate-app .eco-estimate-item-row input[type="number"],
  #eco-estimate-app .eco-estimate-row-total strong,
  #eco-estimate-app .eco-estimate-remove-btn {
    min-height: 58px;
    font-size: 17px;
  }
}

/* ==================================================
   全体重量入力モード：家電リサイクルは入力可能にする修正
================================================== */
#eco-estimate-app .eco-estimate-items.is-disabled-by-manual {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual {
  opacity: 0.52;
  background: #f5f7f7;
}

#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual::after {
  content: "\5168 \4F53 \91CD \91CF \5165 \529B \4E2D \306E \305F \3081 \3001 \3053 \306E \901A \5E38 \54C1 \76EE \306F \91CD \91CF \8A08 \7B97 \306B \542B \307E \308C \307E \305B \3093 \3002 ";
  grid-column: 1 / -1;
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7e8;
  border: 1px solid #f1d49a;
  color: #7a5200;
  font-size: 14px;
  font-weight: 800;
}


/* ==================================================
   全体重量入力モード：通常粗大ごみは完全に選択不可
================================================== */
#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual {
  position: relative;
  opacity: 1;
  background: #f2f5f5 !important;
  border-color: #d8e0e0 !important;
  filter: grayscale(0.15);
}

#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual label,
#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual .eco-estimate-row-total {
  opacity: 0.52;
}

#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual input:disabled,
#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual select:disabled,
#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual textarea:disabled {
  background: #e9eeee !important;
  color: #8b9898 !important;
  border-color: #d5dddd !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}

#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual::after {
  content: "\5168 \4F53 \91CD \91CF \5165 \529B \4E2D \306E \305F \3081 \3001 \901A \5E38 \306E \7C97 \5927 \3054 \307F \54C1 \76EE \306F \9078 \629E \3067 \304D \307E \305B \3093 \3002 \5BB6 \96FB \30EA \30B5 \30A4 \30AF \30EB \5BFE \8C61 \54C1 \306E \307F \8FFD \52A0 \3067 \304D \307E \3059 \3002 " !important;
  grid-column: 1 / -1;
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7e8;
  border: 1px solid #efcf8a;
  color: #7a5200;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 900;
}

#eco-estimate-app .eco-estimate-item-row.is-disabled-by-manual .eco-estimate-remove-btn {
  opacity: 1;
  cursor: pointer;
}


/* ==================================================
   2026-07-09 パッカー不可品目 注意書き表示
================================================== */
#eco-estimate-app .eco-packer-guide {
  margin: 0 auto 34px;
  padding: 30px 28px;
  border: 1px solid #f0b6b6;
  border-radius: 20px;
  background: #fff8f8;
  box-shadow: 0 12px 34px rgba(120, 30, 30, 0.06);
}

#eco-estimate-app .eco-packer-guide-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 22px;
}

#eco-estimate-app .eco-packer-guide-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #c73737;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

#eco-estimate-app .eco-packer-guide-head h3 {
  margin: 0 0 12px;
  color: #8b2020;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.45;
  font-weight: 900;
}

#eco-estimate-app .eco-packer-guide-head p {
  margin: 0;
  color: #5d3333;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 800;
}

#eco-estimate-app .eco-packer-guide-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
}

#eco-estimate-app .eco-packer-guide-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid #efb2b2;
  border-radius: 999px;
  background: #fff;
  color: #a62121;
  font-size: 15px;
  font-weight: 900;
}

#eco-estimate-app .eco-packer-guide-small {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff2f2;
  color: #7c3333;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 820px) {
  #eco-estimate-app .eco-packer-guide {
    padding: 24px 18px;
  }

  #eco-estimate-app .eco-packer-guide-list {
    justify-content: flex-start;
  }

  #eco-estimate-app .eco-packer-guide-list span {
    font-size: 14px;
  }
}

/* ==================================================
   見積もりページ・予約ページ分割
================================================== */
#eco-estimate-app .eco-form-switch-wrap {
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid rgba(20, 40, 45, 0.10);
}
#eco-estimate-app .eco-form-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}
#eco-estimate-app .eco-form-switch a {
  min-height: 54px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 143, 153, 0.28);
  border-radius: 12px;
  color: #087f86;
  background: #fff;
  font-size: 16px;
  font-weight: 900;
}
#eco-estimate-app .eco-form-switch a.is-active {
  color: #fff;
  background: #138f88;
  border-color: #138f88;
}
#eco-estimate-app .eco-estimate-next-action {
  margin: 34px 0 0;
  padding: 28px;
  border: 1px solid rgba(0, 143, 153, 0.22);
  border-radius: 16px;
  background: #f5fbfa;
  text-align: center;
}
#eco-estimate-app .eco-estimate-next-action p {
  margin: 0 0 18px;
  color: #41575c;
  font-size: 15px;
  font-weight: 800;
}
#eco-estimate-app .eco-estimate-next-action a {
  min-width: 240px;
  min-height: 56px;
  padding: 15px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: #138f88;
  font-size: 16px;
  font-weight: 900;
}

/* 見積もり専用ページでは予約フォームを非表示 */
#eco-estimate-app.eco-form-mode-estimate .eco-estimate-contact-card {
  display: none;
}

/* 予約専用ページでは見積もりUIを非表示。内部DOMはJS互換のため残す */
#eco-estimate-app.eco-form-mode-reservation .eco-price-overview,
#eco-estimate-app.eco-form-mode-reservation .eco-packer-guide,
#eco-estimate-app.eco-form-mode-reservation .eco-recycle-guide,
#eco-estimate-app.eco-form-mode-reservation .eco-estimate-form-card,
#eco-estimate-app.eco-form-mode-reservation .eco-estimate-total-panel,
#eco-estimate-app.eco-form-mode-reservation .eco-estimate-next-action,
#eco-estimate-app.eco-form-mode-reservation .eco-estimate-hero-panel {
  display: none !important;
}
#eco-estimate-app.eco-form-mode-reservation .eco-estimate-hero-grid {
  grid-template-columns: 1fr;
  max-width: 760px;
}
#eco-estimate-app.eco-form-mode-reservation .eco-estimate-contact-card {
  margin-top: 0;
}

@media (max-width: 600px) {
  #eco-estimate-app .eco-form-switch {
    grid-template-columns: 1fr;
  }
  #eco-estimate-app .eco-form-switch a {
    min-height: 50px;
    font-size: 15px;
  }
}