/* ============================================
   即席ホームページ LP - Stylesheet
   Design inspired by ZIUS (zius.speever.jp)
   Primary: #2ec1ac (Teal Green)
   Accent: #006cd1 (Blue)
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}

a {
  color: #006cd1;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

ul, ol {
  list-style: none;
}

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

.sp-only { display: none; }
.pc-only { display: inline; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* --- Section Title --- */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  color: #333;
  line-height: 1.4;
}

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

.section-title__en {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2ec1ac;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title.white .section-title__en {
  color: rgba(255,255,255,0.7);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2ec1ac, #006cd1);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-title.white::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,1));
}

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.12);
}

.header__inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-weight: 700;
  font-size: 1.2rem;
}

.header__logo .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2ec1ac, #006cd1);
  color: #fff;
  font-size: 1rem;
}

.header__logo .logo-text {
  font-size: 1.15rem;
}

.header__nav ul {
  display: flex;
  gap: 0;
}

.header__nav ul li a {
  display: block;
  padding: 0 14px;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 70px;
  position: relative;
}

.header__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #2ec1ac;
  transition: width 0.3s ease;
}

.header__nav ul li a:hover::after {
  width: 70%;
}

.header__nav ul li a:hover {
  color: #2ec1ac;
  opacity: 1;
}

.header__cta-btn .btn-cta-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #2ec1ac, #28b09d);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 193, 172, 0.3);
}

.header__cta-btn .btn-cta-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 193, 172, 0.4);
  opacity: 1;
}

/* Mobile Toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__toggle .line {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.header__toggle.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active .line:nth-child(2) {
  opacity: 0;
}

.header__toggle.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 193, 172, 0.85) 0%, rgba(0, 108, 209, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 120px 20px 80px;
}

.hero__sub {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero__title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero__title span {
  display: inline-block;
  position: relative;
}

.hero__title span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 3rem;
}

.badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 20px 30px;
  min-width: 160px;
  text-align: center;
}

.badge__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.badge__unit {
  font-size: 1.2rem;
  font-weight: 700;
}

.badge__label {
  display: block;
  font-size: 0.85rem;
  margin-top: 6px;
  opacity: 0.85;
}

.hero__cta {
  margin-top: 1rem;
}

.cta-sub {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff4444);
  color: #fff;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
  opacity: 1;
  color: #fff;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.15rem;
}

/* Pulse Animation */
.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4); }
  50% { box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4), 0 0 0 12px rgba(255, 107, 53, 0.15); }
  100% { box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll a {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll a span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}

.hero__scroll a span::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 1px;
  height: 40px;
  background: #fff;
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* ============================
   WORRY
   ============================ */
.worry {
  padding: 100px 0 80px;
  background: #f8f9fa;
}

.worry__list {
  max-width: 750px;
  margin: 0 auto;
}

.worry__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 20px 28px;
  margin-bottom: 14px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.worry__item:hover {
  transform: translateX(4px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.worry__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3ee;
  border-radius: 50%;
  color: #ff6b35;
  font-size: 1.1rem;
}

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

.worry__item strong {
  color: #d44200;
}

.worry__solution {
  margin-top: 50px;
  text-align: center;
}

.worry__solution-inner {
  display: inline-block;
}

.solution-arrow {
  font-size: 2rem;
  color: #2ec1ac;
  margin-bottom: 16px;
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.solution-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}

.solution-text .highlight {
  color: #2ec1ac;
  position: relative;
}

.solution-text .highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2ec1ac;
  border-radius: 2px;
}

/* ============================
   3 POINTS
   ============================ */
.points {
  padding: 100px 0;
  background: linear-gradient(135deg, #2ec1ac, #006cd1);
  position: relative;
}

.points::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #f8f9fa;
  clip-path: ellipse(60% 100% at 50% 0%);
}

.points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.point-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.point-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.point-card__num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2ec1ac, #006cd1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
}

.point-card__icon {
  width: 80px;
  height: 80px;
  margin: 20px auto;
}

.point-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.point-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.5;
}

.point-card__title .accent {
  color: #2ec1ac;
  font-size: 1.4rem;
}

.point-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
}

/* ============================
   FEATURES
   ============================ */
.features {
  padding: 100px 0;
  background: #fff;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2ec1ac, #006cd1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.feature-card__icon-wrap {
  margin-bottom: 16px;
}

.feature-emoji {
  font-size: 2.5rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
}

.feature-card p strong {
  color: #2ec1ac;
}

/* ============================
   PRICING
   ============================ */
.pricing {
  padding: 100px 0;
  background: #f8f9fa;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid #e8edf2;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.plan-card.popular {
  border-color: #2ec1ac;
  box-shadow: 0 10px 40px rgba(46, 193, 172, 0.15);
  transform: scale(1.05);
}

.plan-card.popular:hover {
  transform: scale(1.05) translateY(-6px);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #ff4444);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.plan-card__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.plan-card__price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #e0e0e0;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2ec1ac;
  letter-spacing: -0.02em;
}

.price-unit {
  font-size: 1rem;
  color: #666;
}

.price-unit small {
  font-size: 0.8rem;
}

.plan-card__features {
  text-align: left;
  margin-bottom: 2rem;
}

.plan-card__features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-card__features li i {
  color: #2ec1ac;
  margin-top: 4px;
  flex-shrink: 0;
}

.btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2ec1ac;
  border: 2px solid #2ec1ac;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-plan:hover {
  background: #2ec1ac;
  color: #fff;
  opacity: 1;
}

.btn-plan.primary {
  background: linear-gradient(135deg, #2ec1ac, #28b09d);
  color: #fff;
  border-color: #2ec1ac;
}

.btn-plan.primary:hover {
  box-shadow: 0 6px 20px rgba(46, 193, 172, 0.4);
}

/* Options */
.pricing__options {
  max-width: 700px;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}

.pricing__options h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.pricing__options h3 i {
  color: #2ec1ac;
}

.options-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  padding: 14px 24px;
  border-radius: 10px;
}

.option-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.option-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff6b35;
}

/* ============================
   WHY CHEAP
   ============================ */
.why-cheap {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  text-align: center;
}

.why-cheap__intro {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.why-cheap__reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.reason-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  padding: 18px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.reason-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(4px);
}

.reason-item i {
  color: #2ec1ac;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reason-item span {
  font-size: 0.95rem;
}

.why-cheap__motto {
  margin-top: 2rem;
}

.motto-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2ec1ac;
  margin-bottom: 0.5rem;
}

.motto-sub {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* ============================
   FLOW
   ============================ */
.flow {
  padding: 100px 0;
  background: #fff;
}

.flow__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.flow__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #2ec1ac, #006cd1);
}

.flow-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step__num {
  flex-shrink: 0;
  width: 82px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2ec1ac;
  padding-top: 20px;
  position: relative;
}

.flow-step__num::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid #2ec1ac;
  border-radius: 50%;
  z-index: 1;
}

.flow-step__content {
  flex: 1;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.flow-step__content:hover {
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.flow-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2ec1ac, #006cd1);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.flow-step__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

.flow-step__content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ============================
   FAQ
   ============================ */
.faq {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.faq-item {
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  font-family: inherit;
  transition: all 0.3s ease;
}

.faq-item__question:hover {
  background: #fafbfc;
}

.q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d55656;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-arrow {
  margin-left: auto;
  color: #999;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: #2ec1ac;
}

.faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  align-items: flex-start;
  gap: 14px;
}

.faq-item.active .faq-item__answer {
  display: flex;
}

.a-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #6599b7;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item__answer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  padding-top: 4px;
}

/* ============================
   WORKS
   ============================ */
.works {
  padding: 100px 0;
  background: #fff;
}

.works__intro {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
  margin-top: -1.5rem;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.work-card__thumb {
  height: 200px;
  overflow: hidden;
}

.work-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card__thumb img {
  transform: scale(1.08);
}

.work-card__info {
  padding: 20px;
}

.work-card__tag {
  display: inline-block;
  background: linear-gradient(135deg, #2ec1ac, #006cd1);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.work-card__desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

/* ============================
   PAYMENT
   ============================ */
.payment {
  padding: 80px 0;
  background: #f8f9fa;
}

.payment__methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.payment-card {
  flex: 1;
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.payment-card__icon {
  font-size: 2.5rem;
  color: #2ec1ac;
  margin-bottom: 12px;
}

.payment-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.payment-card p {
  font-size: 0.85rem;
  color: #888;
}

/* ============================
   RECOMMEND
   ============================ */
.recommend {
  padding: 100px 0;
  background: linear-gradient(135deg, #2ec1ac, #006cd1);
}

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

.recommend-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

.recommend-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(6px);
}

.recommend-item i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  padding: 80px 0;
  background: #fff;
}

.cta-section__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #f0faf8, #eaf3ff);
  border-radius: 24px;
  padding: 60px 40px;
  border: 2px solid #e0f0ed;
}

.cta-section__inner h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}

.cta-section__inner > p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.cta-section__emphasis {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2ec1ac;
  margin-bottom: 2rem !important;
}

.cta-section__sub {
  font-size: 0.85rem;
  color: #888;
  margin-top: 1.5rem !important;
}

/* ============================
   CONTACT FORM
   ============================ */
.contact {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact__intro {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 3rem;
  margin-top: -1.5rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 50px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.06);
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.required {
  display: inline-block;
  background: #d55656;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e4e8;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #333;
  background: #fafbfc;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #2ec1ac;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 193, 172, 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #d55656;
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #d55656;
  margin-top: 4px;
  min-height: 1.2em;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Radio Group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid #e0e4e8;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.radio-label:hover {
  border-color: #2ec1ac;
  background: #f0faf8;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: #2ec1ac;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #2ec1ac;
  border-radius: 50%;
}

.radio-label input[type="radio"]:checked ~ span:last-child {
  color: #2ec1ac;
  font-weight: 600;
}

/* Checkbox */
.privacy-group {
  text-align: center;
  margin-top: 30px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: #2ec1ac;
  border-color: #2ec1ac;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.checkbox-label a {
  color: #006cd1;
  text-decoration: underline;
}

/* reCAPTCHA v3 badge position (optional: hide default badge) */
.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-credit {
  font-size: 0.75rem;
  color: #999;
  margin-top: 12px;
  line-height: 1.6;
}

.recaptcha-credit a {
  color: #999;
  text-decoration: underline;
}

/* Submit */
.form-submit {
  text-align: center;
  margin-top: 30px;
}

.btn-submit {
  min-width: 280px;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================
   NOTICE
   ============================ */
.notice {
  padding: 50px 0;
  background: #fff;
}

.notice .container {
  max-width: 800px;
}

.notice h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 1rem;
}

.notice h3 i {
  color: #f7da38;
  margin-right: 6px;
}

.notice ul li {
  font-size: 0.85rem;
  color: #888;
  padding: 4px 0;
  padding-left: 1.2em;
  position: relative;
}

.notice ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 60px 0 0;
}

.footer__inner {
  text-align: center;
  padding-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer__logo .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2ec1ac, #006cd1);
  color: #fff;
  font-size: 1rem;
}

.footer__logo .logo-text {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer__nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: #2ec1ac;
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2ec1ac, #006cd1);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(46, 193, 172, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 1.1rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(46, 193, 172, 0.5);
  opacity: 1;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Hero animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .header__nav ul li a {
    padding: 0 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav ul {
    flex-direction: column;
    padding: 20px;
  }

  .header__nav ul li a {
    line-height: 1;
    padding: 16px 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
  }

  .header__nav ul li a::after {
    display: none;
  }

  .header__cta-btn {
    display: none;
  }

  /* Hero */
  .hero__title {
    font-size: 1.8rem;
  }

  .hero__badges {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .badge {
    min-width: auto;
    width: 220px;
    padding: 14px 20px;
  }

  .badge__number {
    font-size: 2rem;
  }

  /* Points */
  .points__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Features */
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-card.popular {
    transform: none;
  }

  .plan-card.popular:hover {
    transform: translateY(-6px);
  }

  /* Why Cheap */
  .why-cheap__reasons {
    grid-template-columns: 1fr;
  }

  /* Works */
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Flow */
  .flow__timeline::before {
    left: 20px;
  }

  .flow-step__num {
    width: 42px;
    font-size: 0.65rem;
  }

  .flow-step__num::after {
    right: -10px;
    width: 12px;
    height: 12px;
  }

  .flow-step {
    gap: 20px;
  }

  .flow-step__content {
    padding: 20px;
  }

  /* Contact Form */
  .contact-form {
    padding: 30px 24px;
  }

  /* Section title */
  .section-title {
    font-size: 1.5rem;
  }

  /* Payment */
  .payment__methods {
    flex-direction: column;
    align-items: center;
  }

  .payment-card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 580px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .works__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__sub {
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .motto-text {
    font-size: 1.4rem;
  }

  .cta-section__inner {
    padding: 40px 24px;
  }

  .cta-section__inner h2 {
    font-size: 1.4rem;
  }

  .options-grid {
    flex-direction: column;
  }

  .flow__timeline::before {
    display: none;
  }

  .flow-step__num::after {
    display: none;
  }

  .flow-step {
    flex-direction: column;
    gap: 0;
  }

  .flow-step__num {
    width: auto;
    text-align: left;
    padding: 0;
    margin-bottom: 8px;
  }

  .radio-label {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}
