@charset "utf-8";
/* CSS Document */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-dark: #1a5c2a;
  --green-main: #217a36;
  --green-light: #28913f;
  --green-pale: #e8f5ec;
  --black: #1a1a1a;
  --gold: #c8a84e;
  --gold-light: #f5e6b8;
  --red: #c0392b;
  --red-dark: #a93226;
  --white: #ffffff;
  --gray-light: #f7f7f7;
  --gray: #e0e0e0;
  --gray-text: #666;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.12);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 650px;
  margin: 0 auto;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== HEADER / PHONE BAR ===== */
.phone-bar {
  background: #fff;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 15px 3px;
  font-size: 13px;
}
.phone-bar-logo {
  height: 55px;
  width: auto;
}
.phone-bar-right {
  text-align: right;
  color: #258318;
  font-weight: bold;
}
.phone-bar-right .label {
  font-size: 12px;
  opacity: 0.85;
}
.phone-bar a {
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
}
.phone-bar small { display: block; font-size: 11px; opacity: 0.85; }

.btn.phone-bar-cta {
  display: inline-flex;
  padding: 2px 18px;
  font-size: 14px;
  border-radius: 50px;
  margin: 4px;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
}
.hero img {
  margin: 0 auto;
  width: 100%;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-badge {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0.9;
}
.hero h1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}
.hero-name {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 3px 0px 0px;
}
.hero-emblem {
  width: 140px;
  flex-shrink: 0;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-feature {
  width: 78px;
  height: 78px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 8px;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 26px; }
  .hero-name { font-size: 48px; }
  .hero-emblem { width: 160px; }
  .hero-bottom { gap: 24px; }
  .hero-features { gap: 20px; }
  .hero-feature {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }
}

/* ===== MEDIA LOGOS ===== */
.media-section {
  background: #fdf8f0;
  padding: 12px 0 14px;
  overflow: hidden;
}
.media-section .section-label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0px 0px 5px;
}
.media-track {
  display: flex;
  animation: scrollLogos 20s linear infinite;
  width: max-content;
}
.media-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 60px;
  width: 135px;
}
.media-logo-item img {
  max-height: 53px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all 0.3s;
}
.media-logo-item img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

@media (min-width: 768px) {
  .media-logo-item {
    height: 90px;
    padding: 0 30px;
    width: 205px;
  }

  .media-logo-item img {
    max-height: 75px;
  }
}
/* ===== CAMPAIGN BANNER ===== */
.campaign {
  padding: 20px;
  text-align: center;
}
.campaign-inner {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 13px 15px 11px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(200, 168, 78, 0.2);
  position: relative;
  overflow: hidden;
}
.campaign-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c0392b, var(--gold), #c0392b);
}
.campaign-badge {
  display: inline-block;
  background: #217a36e3;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 50px;
  margin-bottom: 5px;
}
.campaign h2 {
  font-size: 19px;
  font-weight: 900;
  color: var(--black);
}
.campaign h2 .highlight {
  color: #c0392b;
  font-size: 26px;
}
.campaign .period {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 17px 25px;
  text-align: center;
}
.cta-section.alt { background: var(--gray-light); }
.cta-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--green-dark);
}
.cta-buttons {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btnShine 3s infinite;
}
@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}
.btn-green {
  background: #178018;
  border: solid 2px #0F5E10;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, .16);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(33,122,54,0.4); }
.btn-red {
  background: linear-gradient(180deg, #e74c3c, var(--red-dark));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(192,57,43,0.3);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.4); }
.btn small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}
.btn .btn-icon {
  margin-right: 8px;
  font-size: 20px;
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: 25px 20px 35px;
}
.section-heading {
  text-align: center;
  margin-bottom: 20px;
}
.form-section-heading {
  text-align: center;
/*  margin-bottom: 7px;*/
}
.section-heading h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--green-dark);
  position: relative;
  display: inline-block;
  line-height: 36px;
}
.form-section-heading h2 {
  font-size: 23px;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.container { max-width: 700px; margin: 0 auto; }

/* ===== FLOW / STEPS ===== */
.flow-section { background: #fdf8f0; }
.flow-lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.flow-brand {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--green-main);
  text-underline-offset: 4px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.step {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: visible;
  position: relative;
}
.step-num {
  display: inline-block;
  background: var(--green-main);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  padding: 6px 24px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 1px;
}
.step-img {
  width: 100%;
  overflow: hidden;
}
.step-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.step-content {
  padding: 10px 15px 20px;
  text-align: left;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 5px;
}
.step-content p {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.7;
  margin: 6px 0 0;
}
.step-arrow {
  text-align: center;
  font-size: 28px;
  color: var(--green-main);
  line-height: 1;
}
@media (min-width: 768px) {
  .step-img img { height: 280px; }
  .steps-grid { max-width: 560px; margin: 0 auto; }
}

/* ===== RESULTS / TRACK RECORD ===== */
.results-section { background: #ececec; color: var(--white); }
.results-section .section-heading h2::after { background: var(--gold); }

.reason-section {
	background: #e8f5ec;
    padding: 2em 0 1em;
}

.reason-section img {
    max-width: 370px;
    margin: 0 auto;
}

.results-track-wrapper {
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.results-track-wrapper::-webkit-scrollbar { display: none; }

.results-track {
  display: flex;
  gap: 20px;
  padding: 0 calc(50% - 110px) 20px;
  width: max-content;
}

.result-card {
  flex-shrink: 0;
  width: 220px;
  background: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
  scroll-snap-align: center;
}
.result-card:hover { transform: translateY(-4px); }
.result-card-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  background: #333;
}
.result-card-body { padding:12px 14px; }
.result-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.4;
}
.result-card-body .result-detail {
  font-size: 11px;
  color: #999;
  margin-bottom: 6px;
  line-height: 1.5;
}
.result-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold-light);
}
.result-price small { font-size: 12px; font-weight: 600; }

/* ===== OTHER ITEMS ===== */
.other-items-section { background: var(--gray-light); }
.other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.other-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}
.other-card:hover { transform: translateY(-2px); }
.other-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.other-card h4 {
  font-size: 15px;
  font-weight: 700;
  padding: 12px 12px 16px;
  color: var(--green-dark);
}

/* ===== BAG OK ===== */
.bag-ok-section { background: #f6f6f6; }
.bag-ok-inner {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bag-ok-img {
  width: 100%;
  height: auto;
  display: block;
}
.bag-ok-body {
  padding: 10px 15px 20px;
  text-align: left;
}
.bag-ok-body h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.bag-ok-body p {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ===== BULK PURCHASE ===== */
.bulk-section {
  background: linear-gradient(180deg, var(--green-dark), #0d2e15);
  color: var(--white);
  text-align: center;
}
.bulk-section .section-heading h2 { color: var(--white); }
.bulk-section .section-heading h2::after { background: var(--gold-light); }
.bulk-text {
  font-size: 15px;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.8;
}
.bulk-highlights {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.bulk-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== REASONS ===== */
.reasons-section {
  background: var(--white);
  padding: 25px 20px 15px;
 }
.reason-card {
  background: var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid #dddddd;
}
.reason-card:hover { transform: translateY(-2px); }
.reason-card:last-child { margin-bottom: 0; }
.reason-illust {
  width: 100%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0 10px;
}
.reason-illust svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}
.reason-body {
  padding: 0 15px;
}

.reason-body h3 {
  font-size: 23px;
  background: #0e6e26;
  min-height: 1em;
  border-radius: 12px 12px 0 0;
  margin: 0 0 -14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 20px;
  box-sizing: border-box;
  line-height: 1.25;
  transform: translateY(-2px);
}

.reason-body p {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.7;
  padding: 10px;
}

.p_btm10 {
    padding-bottom: 10px;
}

.white {
    background: #ffffff;
	border-radius: 0px 0px 12px 12px;
	padding: 10px;
}

.gray_text {
    font-size: 14px;
    color: gray;
    font-weight: initial;
}

/* ===== APPRAISAL METHODS ===== */
.methods-section { background: var(--gray-light); }
.method-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.method-card:hover { transform: translateY(-2px); }
.method-card:last-child { margin-bottom: 0; }
.method-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.method-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 3px;
}
.method-text p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
}
.method-tag {
  display: inline-block;
  background: #f19c36;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--white); }
.reviews-track-wrapper {
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.reviews-track-wrapper::-webkit-scrollbar { display: none; }

.reviews-track {
  display: flex;
  gap: 16px;
  padding: 0 calc(50% - 150px) 5px;
  width: max-content;
}
.review-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--gray-light);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray);
  scroll-snap-align: center;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.review-info { font-size: 17px; font-weight: 700; color: var(--green-dark); }
.review-stars { color: var(--gold); font-size: 16px; }
.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 20px;
  font-weight: 900;
  color: var(--green-dark);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--green-pale);
  border-color: var(--green-main);
  color: var(--green-main);
}

.carousel-prev { left: -15px; }
.carousel-next { right: -15px; }

@media (max-width: 767px) {
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .carousel-prev, .carousel-next { width: 40px; height: 40px; font-size: 16px; }
}


/* ===== FAQ ===== */
.faq-section { background: var(--gray-light); }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-question {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--green-pale); }
.faq-question .q-mark {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}
.faq-question .toggle {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--green-main);
  transition: transform 0.3s;
}
.faq-item.open .faq-question .toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
}
.faq-answer .answer-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-answer .a-mark {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--white);
  color: var(--green-main);
  border: 2px solid var(--green-main);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  box-sizing: border-box;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 5px 20px 18px;
}
.faq-answer p {
  flex: 1;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
  padding-left: 0;
  margin: 0;
}

/* ===== FORM ===== */
.form-section {
  background: linear-gradient(180deg, #2c7b3f, #176029);
  color: var(--white);
  text-align: center;
  padding: 0px 20px 30px;
}

@media screen and (min-width: 768px) {
section#form {
  padding: 20px 20px 50px;
}
}

.form-section .section-heading h2 { color: var(--white); }
.form-section .form-section-heading h2 { color: var(--white); }
.form-section .section-heading h2::after { background: var(--gold-light); }
.form-box {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  color: var(--black);
  box-shadow: var(--shadow-lg);
}
.form-box p {
  font-size: 14px;
  color: var(--gray-text);
}
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
}
.form-label .required {
  background: #e74c3c;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
  margin-bottom: 15px;
}
.form-input:focus { outline: none; border-color: var(--green-main); }
.form-input::placeholder { color: #bbb; }
.form-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(180deg, #ff862f, #cf6223);
  color: var(--white);
  border: none;
  border-radius: 35px;
  font-size: 20px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(230, 148, 27, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit .__icon {
  fill: #fff;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}
.form-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: btnShine 3s infinite;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,148,27,0.4); }
.form-box .form-note {
  font-size: 13px;
  color: #999;
  margin: 10px 0px 15px;
}
.form-box .form-phone {
    font-size: 16px;
    color: var(--green-dark);
    margin: 3px 0px 0px;
}
span.phone_strong {
    font-size: 19px;
    color: #1a5c2a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

span.phone_strong .\_\_icon {
  fill: #1a5c2a;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.phone-btn {
    width: 100%;
    padding: 11px;
    background: white;
    color: #ffffff;
    border: none;
    border-radius: 35px;
    font-size: 20px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgb(48 226 77 / 30%);
    position: relative;
    overflow: hidden;
    border: solid 2px #0F5E10;
}

.form-middle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  color: #999;
  font-size: 14px;
}

.form-middle::before,
.form-middle::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}

/* ===== フォーム アコーディオン ===== */
.form-accordion-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-out;
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-dark), #0d2e15);
}

.form-accordion-wrapper.is-open {
  grid-template-rows: 1fr;
}

.form-accordion-inner {
  min-height: 0;
}

.form-accordion-inner .form-section {
  padding: 15px 20px 20px;
}

@media screen and (max-width: 768px) {
  .form {
    max-width: 100%;
  }
}

img.form {
  display: block;
  max-width: 480px;
  width: 100%;
  margin: 0 auto
}
/* ===== FOOTER ===== */
.footer {
  background: #fff;
  color: #000000;
  padding: 0px 20px 24px;
  text-align: center;
}
.footer-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  margin: 20px;
}
.footer-badges img { height: 100px; width: auto; border-radius: 4px; background: var(--white); padding: 3px; }
.footer-phone {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 4px;
}
.footer-phone a {
  color: #3c3c3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.footer-phone .phone-icon {
  width: 28px;
  height: 28px;
}
.footer-phone-note {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 20px;
}
.footer-logo { width: 190px; margin: 0 auto; }
.footer-address {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}
.footer-links a { opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-copy {
  font-size: 11px;
  opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-text {
  font-weight: bold;
  color: #105E10;
  font-size: 19px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgb(26 26 26 / 83%);
  backdrop-filter: blur(8px);
  padding: 10px 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 1000;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.6s ease-in-out;
}
.sticky-cta .btn {
  width: 80%;
  padding: 9px 0px;
  font-size: 18px;
}
.sticky-cta .btn small { font-size: 10px; }

.sticky-cta.is-show {
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .hero { padding: 0px 0px 10px; }
  .hero h1 { font-size: 36px; }
  .hero h1 span { font-size: 20px; }
  .hero-logo { width: 150px; }
  .section { padding: 72px 20px; }
  .section-heading h2 { font-size: 28px; }
  .campaign h2 { font-size: 24px; }
  .campaign h2 .highlight { font-size: 34px; }
  .other-grid { grid-template-columns: repeat(4, 1fr); }
  .result-card { width: 280px; }
  .result-card-img { width: 280px; height: 280px; }
  body { padding-bottom: 0; }
  .sticky-cta { display: none; }
}

/* ===== PC版のみCTAボタンとメディアトラックを入れ替え ===== */
@media (min-width: 768px) {
  .media-section {
    display: flex;
    flex-direction: column;
  }
  .media-section .cta-section {
    order: 1;
    padding-top: 0;
  }
  .media-section .section-label {
    order: 2;
    margin-top: 10px;
  }
  .media-section .media-track {
    order: 3;
  }
}

/* ===== PC版のみCTAボタンを大きくする ===== */
@media (min-width: 768px) {
  .cta-buttons {
    max-width: 500px;
  }

  .cta-buttons .btn {
    padding: 12px 0px;
    font-size: 24px;
    border-radius: 60px;
  }
  .cta-buttons .btn small {
    font-size: 17px;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* キャンペーンモーダル */
.campaign-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.campaign-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.campaign-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 560px;
  width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}
.campaign-modal-overlay.active .campaign-modal {
  transform: scale(1) translateY(0);
}
.campaign-modal-header {
  flex-shrink: 0;
}
.campaign-modal-header img {
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
  display: block;
}
.campaign-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
}
.campaign-modal-body h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #222;
}
.campaign-modal-body h4 {
  font-size: 1rem;
  font-weight: bold;
  margin: 1.5rem 0 0.5rem;
  color: #c41e3a;
}
.campaign-modal-body p {
  margin-bottom: 0.5rem;
}
.campaign-modal-body .note {
  font-size: 0.8rem;
  color: #666;
}
.campaign-modal-footer {
  flex-shrink: 0;
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid #eee;
}
.campaign-modal-close {
  background: #555;
  color: #fff;
  border: none;
  padding: 12px 48px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.campaign-modal-close:hover {
  background: #333;
}
.grecaptcha-badge { visibility: hidden; }
.footer_recaptcha {
    font-size: 11px;
    opacity: 0.5;
    margin-bottom: 20px;
}
