/* ============================================================
 * style.css — ライズカンパニー
 * Compiled from scss/style.scss
 * ============================================================ */

/* ============================================================
 * Base Reset
 * ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.75;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}

@media (min-width: 768px) {
  body {
    padding-top: 72px;
  }
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================================
 * Utilities
 * ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

@media (min-width: 768px) {
  .section-head {
    margin-bottom: 60px;
  }
}

.section-subtitle {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #f39800;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 12px;
  }
}

.section-title {
  font-size: 24px;
  font-weight: 900;
  color: #222222;
  line-height: 1.4;
  text-wrap: pretty;
}

.section-title span {
  color: #f39800;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 34px;
  }
}

@media (min-width: 992px) {
  .section-title {
    font-size: 40px;
  }
}

.section-lead {
  font-size: 14px;
  color: #666666;
  line-height: 1.9;
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
}

@media (min-width: 768px) {
  .section-lead {
    font-size: 15px;
  }
}

/* ============================================================
 * Buttons
 * ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s,
    transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    padding: 15px 36px;
    font-size: 16px;
  }
}

.btn--primary {
  background: #f39800;
  color: #ffffff;
  border-color: #f39800;
}

.btn--primary:hover {
  background: #e67e00;
  border-color: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 152, 0, 0.35);
}

.btn--outline {
  background: transparent;
  color: #f39800;
  border-color: #f39800;
}

.btn--outline:hover {
  background: #f39800;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--white {
  background: #ffffff;
  color: #f39800;
  border-color: #ffffff;
  font-size: 16px;
  padding: 16px 48px;
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn--submit {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  background: #f39800;
  color: #ffffff;
  border: none;
  border-radius: 6px;
}

.btn--submit:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 152, 0, 0.35);
}

/* ============================================================
 * Scroll Animation
 * ============================================================ */
.js-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
 * #header
 * ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e8e8;
  transition: box-shadow 0.3s;
}

#header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  #header .header-inner {
    height: 72px;
  }
}

#header .header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#header .header-logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  #header .header-logo img {
    height: 48px;
  }
}

#header .header-nav {
  display: none;
  background: #ffffff;
}

@media (min-width: 992px) {
  #header .header-nav {
    display: flex;
    align-items: center;
    background: transparent;
  }
}

#header .header-nav.is-open {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

@media (min-width: 992px) {
  #header .header-nav .header-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}

#header .header-nav .header-nav-list li a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  transition: color 0.2s;
}

@media (min-width: 992px) {
  #header .header-nav .header-nav-list li a {
    padding: 6px 10px;
    font-size: 13px;
  }

  #header .header-nav .header-nav-list li a:hover {
    color: #f39800;
  }

  #header .header-nav .header-nav-list li .nav-contact-btn {
    background: #f39800;
    color: #ffffff;
    border-radius: 4px;
    padding: 8px 16px;
    margin-left: 8px;
  }

  #header .header-nav .header-nav-list li .nav-contact-btn:hover {
    background: #e67e00;
    color: #ffffff;
  }
}

#header .header-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

#header .header-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222222;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

#header .header-menu-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#header .header-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

#header .header-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  #header .header-menu-btn {
    display: none;
  }
}

/* ============================================================
 * #hero
 * ============================================================ */
#hero {
  background: linear-gradient(160deg, #fff3e0 0%, rgba(255, 250, 244, 0.6) 50%, #ffffff 100%);
  padding: 56px 0 64px;
}

@media (min-width: 768px) {
  #hero {
    padding: 72px 0 80px;
  }
}

@media (min-width: 992px) {
  #hero {
    padding: 80px 0 96px;
  }
}

#hero .hero-cols {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  #hero .hero-cols {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
}

#hero .hero-text {
  flex: 7;
}

#hero .hero-label {
  display: inline-flex;
  align-items: center;
  background: #fff3e0;
  color: #e67e00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid rgba(243, 152, 0, 0.25);
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.05s;
}

@media (min-width: 768px) {
  #hero .hero-label {
    font-size: 13px;
  }
}

#hero .hero-title {
  font-size: 32px;
  font-weight: 900;
  color: #222222;
  line-height: 1.2;
  margin-bottom: 20px;
  text-wrap: pretty;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.15s;
}

@media (min-width: 567px) {
  #hero .hero-title {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  #hero .hero-title {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  #hero .hero-title {
    font-size: 44px;
  }
}

#hero .hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: #f39800;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 8px 28px rgba(243, 152, 0, 0.45);
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.25s;
}

#hero .hero-price-badge .hero-price-pages {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 4px;
}

#hero .hero-price-badge .hero-price-amount {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

#hero .hero-price-badge .hero-price-amount small {
  font-size: 20px;
  font-weight: 700;
}

#hero .hero-price-badge .hero-price-tax {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 4px;
}

#hero .hero-desc {
  font-size: 14px;
  color: #666666;
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.9;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.3s;
}

@media (min-width: 768px) {
  #hero .hero-desc {
    font-size: 15px;
  }
}

#hero .hero-points {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.38s;
}

#hero .hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

#hero .hero-points li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #f39800;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#hero .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.45s;
}

#hero .hero-visual {
  flex: 5;
  max-width: 560px;
  width: 100%;
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.2s;
}

#hero .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

#hero .hero-price-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

/* ============================================================
 * #service-summary
 * ============================================================ */
#service-summary {
  padding: 80px 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  #service-summary {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #service-summary {
    padding: 112px 0;
  }
}

#service-summary .service-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  #service-summary .service-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#service-summary .service-summary-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #ffffff;
}

#service-summary .service-summary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

#service-summary .service-summary-card:hover .service-summary-img img {
  transform: scale(1.05);
}

#service-summary .service-summary-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

#service-summary .service-summary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#service-summary .service-summary-img::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

#service-summary .service-summary-card--orange .service-summary-img::after {
  background: #f39800;
}

#service-summary .service-summary-card--blue .service-summary-img::after {
  background: #3b82f6;
}

#service-summary .service-summary-card--green .service-summary-img::after {
  background: #10b981;
}

#service-summary .service-summary-body {
  padding: 28px;
}

#service-summary .service-summary-card .service-summary-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

#service-summary .service-summary-card--orange .service-summary-num {
  color: #f39800;
}

#service-summary .service-summary-card--blue .service-summary-num {
  color: #3b82f6;
}

#service-summary .service-summary-card--green .service-summary-num {
  color: #10b981;
}

#service-summary .service-summary-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
  line-height: 1.5;
}

#service-summary .service-summary-card p {
  font-size: 13px;
  color: #666666;
  line-height: 1.85;
}

/* ============================================================
 * #reason
 * ============================================================ */
#reason {
  padding: 80px 0;
  background: #f9f9f9;
}

@media (min-width: 768px) {
  #reason {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #reason {
    padding: 112px 0;
  }
}

#reason .reason-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  #reason .reason-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

#reason .reason-text p {
  font-size: 15px;
  color: #333333;
  line-height: 1.9;
  margin-bottom: 16px;
}

#reason .reason-text p:last-child {
  margin-bottom: 0;
}

#reason .reason-concerns {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

#reason .reason-concerns .reason-concerns-label {
  font-size: 12px;
  font-weight: 700;
  color: #666666;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

#reason .reason-concerns .reason-concerns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

#reason .reason-concerns .reason-concern-item {
  background: #fff3e0;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#reason .reason-concerns .reason-concern-item .reason-concern-q {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #f39800;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

#reason .reason-concerns .reason-concern-item p {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
}

#reason .reason-concerns .reason-concerns-answer {
  font-size: 13px;
  color: #333333;
  text-align: center;
  padding: 12px 16px;
  background: rgba(243, 152, 0, 0.07);
  border-radius: 6px;
  line-height: 1.7;
}

#reason .reason-concerns .reason-concerns-answer strong {
  color: #e67e00;
  font-weight: 900;
}

/* ============================================================
 * #target
 * ============================================================ */
#target {
  padding: 80px 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  #target {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #target {
    padding: 112px 0;
  }
}

#target .target-desc {
  font-size: 15px;
  color: #333333;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

#target .target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 567px) {
  #target .target-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 992px) {
  #target .target-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

#target .target-card {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

#target .target-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

#target .target-card:hover .target-card-img img {
  transform: scale(1.06);
}

#target .target-card-img {
  overflow: hidden;
  height: 140px;
  position: relative;
}

@media (min-width: 768px) {
  #target .target-card-img {
    height: 160px;
  }
}

#target .target-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#target .target-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(243, 152, 0, 0.45) 0%, transparent 60%);
}

#target .target-card-label {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  text-align: center;
  padding: 14px 12px;
  background: #ffffff;
}

@media (min-width: 768px) {
  #target .target-card-label {
    font-size: 15px;
    padding: 16px;
  }
}

/* ============================================================
 * #features
 * ============================================================ */
#features {
  padding: 80px 0;
  background: #fffaf4;
}

@media (min-width: 768px) {
  #features {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #features {
    padding: 112px 0;
  }
}

#features .features-block-title {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 4px solid #f39800;
}

/* ページ構成ブロック */
#features .features-pages {
  margin-bottom: 64px;
}

#features .features-sitemap {
  text-align: center;
  margin-bottom: 40px;
}

#features .features-sitemap img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

#features .features-pages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 567px) {
  #features .features-pages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  #features .features-pages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#features .features-page-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid #f39800;
  transition: transform 0.25s, box-shadow 0.25s;
}

#features .features-page-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}

#features .features-page-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

#features .features-page-num {
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  background: #f39800;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  flex-shrink: 0;
}

#features .features-page-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  line-height: 1.4;
}

#features .features-page-item p {
  font-size: 13px;
  color: #666666;
  line-height: 1.85;
}

/* 標準機能ブロック */
#features .features-extras {
  margin-bottom: 40px;
}

#features .features-extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 992px) {
  #features .features-extras-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

#features .features-extra-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

#features .features-extra-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
}

#features .features-extra-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

#features .features-extra-icon i {
  font-size: 26px;
  color: #f39800;
}

#features .features-extra-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 10px;
  line-height: 1.4;
}

#features .features-extra-item p {
  font-size: 12px;
  color: #666666;
  line-height: 1.8;
}

#features .features-note {
  font-size: 13px;
  color: #666666;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
 * #price
 * ============================================================ */
#price {
  padding: 80px 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  #price {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #price {
    padding: 112px 0;
  }
}

#price .price-split {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  #price .price-split {
    flex-direction: row;
  }
}

#price .price-split-left {
  background: #f39800;
  color: #ffffff;
  padding: 52px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 42%;
}

#price .price-split-pages {
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

#price .price-split-num {
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

#price .price-split-currency {
  font-size: 28px;
  vertical-align: top;
  padding-top: 10px;
  display: inline-block;
}

#price .price-split-value {
  font-size: 68px;
}

#price .price-split-from {
  font-size: 32px;
}

#price .price-split-tax {
  font-size: 13px;
  opacity: 0.85;
  margin-top: -4px;
}

#price .price-split-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 240px;
}

#price .price-split-right {
  background: #fffaf4;
  padding: 44px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

#price .price-split-right-title {
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}

#price .price-split-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#price .price-split-list li {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  padding: 11px 0;
  border-bottom: 1px dashed #e8e8e8;
  display: flex;
  align-items: center;
  gap: 10px;
}

#price .price-split-list li:last-child {
  border-bottom: none;
}

#price .price-split-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #f39800;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#price .price-note {
  font-size: 12px;
  color: #999999;
  line-height: 1.7;
  margin-top: 4px;
}

/* ============================================================
 * #seo-point
 * ============================================================ */
#seo-point {
  padding: 80px 0;
  background: #f9f9f9;
}

@media (min-width: 768px) {
  #seo-point {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #seo-point {
    padding: 112px 0;
  }
}

#seo-point .seo-desc {
  font-size: 15px;
  color: #333333;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

#seo-point .seo-keywords {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

#seo-point .seo-keywords .seo-keywords-label {
  font-size: 12px;
  font-weight: 700;
  color: #666666;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

#seo-point .seo-keywords .seo-keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

#seo-point .seo-keywords .seo-keyword {
  background: #fff3e0;
  color: #e67e00;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  border: 1px solid rgba(243, 152, 0, 0.2);
}

/* ============================================================
 * #operation
 * ============================================================ */
#operation {
  padding: 80px 0;
  background: #f39800;
}

@media (min-width: 768px) {
  #operation {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #operation {
    padding: 112px 0;
  }
}

#operation .operation-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

#operation .operation-title {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #operation .operation-title {
    font-size: 34px;
  }
}

#operation .operation-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  #operation .operation-desc {
    font-size: 15px;
  }
}

#operation .operation-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

#operation .operation-tags .operation-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#operation .operation-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ============================================================
 * #flow
 * ============================================================ */
#flow {
  padding: 80px 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  #flow {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #flow {
    padding: 112px 0;
  }
}

#flow .flow-list {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

#flow .flow-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, #f39800, rgba(243, 152, 0, 0.1));
}

@media (min-width: 768px) {
  #flow .flow-list::before {
    left: 35px;
  }
}

#flow .flow-item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
}

#flow .flow-item:last-child {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  #flow .flow-item {
    gap: 32px;
  }
}

#flow .flow-item .flow-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #f39800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(243, 152, 0, 0.15);
}

@media (min-width: 768px) {
  #flow .flow-item .flow-num {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 20px;
  }
}

#flow .flow-item .flow-content {
  padding-top: 10px;
}

@media (min-width: 768px) {
  #flow .flow-item .flow-content {
    padding-top: 14px;
  }
}

#flow .flow-item .flow-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  #flow .flow-item .flow-content h3 {
    font-size: 20px;
  }
}

#flow .flow-item .flow-content p {
  font-size: 13px;
  color: #666666;
  line-height: 1.85;
}

@media (min-width: 768px) {
  #flow .flow-item .flow-content p {
    font-size: 14px;
  }
}

/* ============================================================
 * #faq
 * ============================================================ */
#faq {
  padding: 80px 0;
  background: #f9f9f9;
}

@media (min-width: 768px) {
  #faq {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #faq {
    padding: 112px 0;
  }
}

#faq .faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#faq .faq-item {
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s;
}

#faq .faq-item.is-open {
  border-color: rgba(243, 152, 0, 0.4);
}

#faq .faq-item .faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: #ffffff;
  border: none;
  text-align: left;
  transition: background 0.2s;
}

#faq .faq-item .faq-q:hover {
  background: rgba(243, 152, 0, 0.03);
}

#faq .faq-item .faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#faq .faq-item .faq-icon--q {
  background: #f39800;
  color: #ffffff;
}

#faq .faq-item .faq-icon--a {
  background: #fff3e0;
  color: #e67e00;
}

#faq .faq-item .faq-q-text {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  flex: 1;
  line-height: 1.5;
}

@media (min-width: 768px) {
  #faq .faq-item .faq-q-text {
    font-size: 15px;
  }
}

#faq .faq-item .faq-toggle {
  width: 22px;
  height: 22px;
  min-width: 22px;
  position: relative;
  flex-shrink: 0;
}

#faq .faq-item .faq-toggle::before,
#faq .faq-item .faq-toggle::after {
  content: '';
  position: absolute;
  background: #666666;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

#faq .faq-item .faq-toggle::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#faq .faq-item .faq-toggle::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#faq .faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

#faq .faq-item .faq-a {
  display: none;
  padding: 0 24px 20px 24px;
  background: #fffaf4;
}

#faq .faq-item .faq-a.is-open {
  display: block;
}

#faq .faq-item .faq-a .faq-a-inner {
  display: flex;
  gap: 14px;
  padding-top: 16px;
}

#faq .faq-item .faq-a .faq-a-inner p {
  font-size: 14px;
  color: #333333;
  line-height: 1.85;
  flex: 1;
}

/* ============================================================
 * #contact
 * ============================================================ */
#contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f39800 0%, #e67e00 100%);
}

@media (min-width: 768px) {
  #contact {
    padding: 96px 0;
  }
}

@media (min-width: 992px) {
  #contact {
    padding: 112px 0;
  }
}

#contact .contact-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

#contact .contact-title {
  color: #ffffff;
}

#contact .contact-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 14px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  #contact .contact-desc {
    font-size: 15px;
  }
}

/* 問い合わせ手段 */
#contact .contact-methods {
  max-width: 680px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact .contact-method {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.2s;
  text-decoration: none;
}

#contact .contact-method--tel:hover {
  background: rgba(255, 255, 255, 0.25);
}

#contact .contact-method-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#contact .contact-method-icon i {
  font-size: 22px;
  color: #ffffff;
}

#contact .contact-method-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

#contact .contact-method-num {
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  #contact .contact-method-num {
    font-size: 36px;
  }
}

#contact .contact-method-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0;
}

#contact .contact-mail-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

#contact .contact-mail-link:hover {
  opacity: 0.8;
}

/* ============================================================
 * #footer
 * ============================================================ */
#footer {
  background: #333333;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 28px;
}

#footer .footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  #footer .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

#footer .footer-brand .footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

#footer .footer-brand .footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

#footer .footer-brand .footer-desc {
  font-size: 13px;
  line-height: 1.85;
}

#footer .footer-nav h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

#footer .footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .footer-nav ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

#footer .footer-nav ul li a:hover {
  color: #ffffff;
}

#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
 * @keyframes
 * ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
