/* ============ C: モダン若手型 ============
 * 30〜40代経営者 / SNS運用してる若手業者向け
 * 配色：白 × 鮮ライム緑 × マゼンタピンク / フォント：Sans Bold
 * （Interは描画安定性のため一時除外。必要なら<head>に<link>追加）
 * ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  color: #1a1a2e;
  line-height: 1.85;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --green: #00c896;          /* 鮮ライム緑 */
  --green-deep: #00a87a;
  --green-light: #d8f7eb;
  --green-ultra: #f0fcf7;
  --pink: #ff3d77;           /* マゼンタピンク */
  --pink-deep: #e8245d;
  --pink-light: #ffe0eb;
  --yellow: #ffd60a;         /* 蛍光イエロー（要所） */
  --ink: #1a1a2e;            /* インク（黒寄り紺） */
  --ink-soft: #4a4a5e;
  --gray-bg: #f7f8fa;
  --gray-line: #e6e8ee;
  --white: #ffffff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ SVG ICONS (C: 太線・カラフル・stroke 2.5) ============ */
svg { display: block; }
.inline-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: -4px;
  margin-right: 8px;
  stroke-width: 2.4;
}
.logo-mark { padding: 0; }
.logo-mark svg {
  width: 26px;
  height: 26px;
  color: #fff;
  stroke-width: 2.4;
}
.strength-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: var(--green-ultra);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength-icon svg {
  width: 36px;
  height: 36px;
  color: var(--green-deep);
  stroke-width: 2.4;
}
.service-emoji {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: var(--green-ultra);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-emoji svg {
  width: 36px;
  height: 36px;
  color: var(--green-deep);
  stroke-width: 2.4;
}
.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  background: rgba(0, 200, 150, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 32px;
  height: 32px;
  color: var(--green);
  stroke-width: 2.4;
}
.header-tel .inline-icon { color: #fff; }
.footer-info .inline-icon { color: var(--green); }
.footer-phone { display: flex; align-items: center; gap: 0; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.logo-mark {
  font-size: 28px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 200, 150, 0.3);
}
.nav-pc {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}
.nav-pc a {
  position: relative;
  transition: color 0.2s;
}
.nav-pc a:hover { color: var(--green-deep); }
.header-tel {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  box-shadow: 0 6px 18px rgba(255, 61, 119, 0.35);
  transition: transform 0.2s;
}
.header-tel:hover { transform: translateY(-2px); }
.tel-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.tel-number {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}
.tel-hours { font-size: 10px; opacity: 0.92; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #00c896 0%, #008c66 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero-overlay { display: none; }
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 28px;
  max-width: 900px;
}
.hero-sub {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-weight: 700;
}
.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 500;
  opacity: 0.95;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge {
  font-size: 13px;
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 700;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-align: center;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 61, 119, 0.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 61, 119, 0.55);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16); }

/* ============ STRENGTHS ============ */
.strengths {
  padding: 80px 0;
  background: var(--gray-bg);
}
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-item {
  text-align: center;
  background: #fff;
  padding: 40px 28px;
  border-radius: 24px;
  border: 1px solid var(--gray-line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.strength-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 200, 150, 0.12);
  border-color: var(--green);
}
.strength-icon {
  font-size: 52px;
  margin-bottom: 16px;
}
.strength-item h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.strength-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
  font-weight: 500;
}

/* ============ SECTION COMMON ============ */
section { padding: 96px 0; }
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.title-jp {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.title-en {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--green);
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}
.section-lead {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  margin-top: -28px;
  font-weight: 500;
}

/* ============ SERVICES ============ */
.services {
  background: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--green-ultra);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 200, 150, 0.15);
  border-color: var(--green);
}
.service-card:hover::before { opacity: 1; }
.service-emoji {
  font-size: 48px;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 500;
  word-break: auto-phrase;
  line-break: strict;
  hanging-punctuation: allow-end;
}
.service-price {
  display: inline-block;
  font-size: 15px !important;
  font-weight: 900;
  color: var(--pink) !important;
  background: var(--pink-light);
  padding: 8px 18px;
  border-radius: 100px;
}

/* ============ PRICING ============ */
.pricing {
  background: var(--gray-bg);
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 500;
}
.pricing-table {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.pricing-table th {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  padding: 18px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-line);
  font-size: 14px;
  font-weight: 500;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:nth-child(2) {
  font-weight: 900;
  color: var(--pink);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
.pricing-cta { text-align: center; margin-top: 40px; }

/* ============ WORKS ============ */
.works {
  background: #fff;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.work-card {
  background: var(--gray-bg);
  border-radius: 24px;
  padding: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}
.work-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.work-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #d8d8d8;
  border-radius: 16px;
  overflow: hidden;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.work-card:hover .work-img img { transform: scale(1.04); }
.work-img span {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  z-index: 2;
  font-family: 'Inter', sans-serif;
}
.work-img:nth-child(2) span {
  background: var(--pink);
}
.work-info {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
}

/* ============ VOICE ============ */
.voice {
  background: var(--green-ultra);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 24px;
  border: 2px solid var(--gray-line);
  transition: all 0.25s;
}
.voice-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 200, 150, 0.12);
}
.voice-stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 0 1px 2px rgba(255, 214, 10, 0.3);
}
.voice-text {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 500;
}
.voice-author {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: right;
  font-weight: 700;
}

/* ============ ABOUT ============ */
.about { background: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 32px;
  background: #d8d8d8;
  box-shadow: 0 16px 40px rgba(0, 200, 150, 0.18);
}
.about-name {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink-soft);
}
.about-text h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 24px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
.about-text p {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 2;
}
.about-sign {
  text-align: right;
  font-weight: 900;
  margin-top: 28px;
  color: var(--ink);
}

/* ============ AREA ============ */
.area {
  background: var(--gray-bg);
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.area-block {
  background: #fff;
  padding: 28px 32px;
  border-radius: 20px;
  position: relative;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.area-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--green);
  border-radius: 20px 0 0 20px;
}
.area-block:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}
.area-block h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
}
.area-block p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
  font-weight: 500;
}
.area-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============ CONTACT ============ */
.contact {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
  color: #fff;
}
.contact .title-jp { color: #fff; }
.contact .title-en { color: var(--green); }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 40px 36px;
  text-align: center;
}
.contact-icon { font-size: 48px; margin-bottom: 14px; }
.contact-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
}
.contact-phone-number {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--green);
  margin: 14px 0;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}
.contact-hours {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.85;
}
.contact-note { font-size: 13px; opacity: 0.7; }
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
.form input, .form textarea {
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  font-weight: 500;
}
.form button { margin-top: 6px; }

/* ============ FOOTER ============ */
.site-footer {
  background: #0d0d1e;
  color: #fff;
  padding: 56px 0 28px;
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #fff;
}
.footer-info p {
  margin-bottom: 6px;
  opacity: 0.8;
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  opacity: 0.8;
  font-weight: 700;
}
.footer-links a:hover { opacity: 1; color: var(--green); }
.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 0.55;
  font-family: 'Inter', sans-serif;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-pc { display: none; }
  .header-inner { gap: 12px; }
  .hero-title { font-size: 36px; }
  .hero-lead { font-size: 15px; }
  .strength-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 24px; }
  .about-photo { max-width: 220px; margin: 0 auto; }
  .area-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 16px; }
  .title-jp { font-size: 28px; }
  section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .header-tel { padding: 8px 14px; border-radius: 100px; }
  .tel-label, .tel-hours { display: none; }
  .tel-number { font-size: 14px; }
  .logo { font-size: 16px; }
  .hero-title { font-size: 28px; }
  .pricing-table { font-size: 12px; }
  .pricing-table th, .pricing-table td { padding: 12px; }
}
