@charset "UTF-8";

/* =========================================
   Service Sitter Page Specific Styles
========================================= */
:root {
  --text-main: #333333;
  --text-sub: #555555;
  --text-muted: #777777; /* 変数化追加 */
  --primary-color: #f0b800;
  --primary-light: #fffcf0;
  --accent-green: #06c755;
  --accent-green-dark: #05b54d;
  --bg-base: #fdfdfd;
  --bg-gray: #f4f7f9;
  --bg-light: #eeeeee; /* 変数化追加 */
  --border-color: #e0e0e0;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
  --radius-base: 16px;
  --radius-pill: 50px;
  
  --arrow-bottom-base: 24px;
  --arrow-bottom-move: 14px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  color: var(--text-main);
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 74px;
}

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

section {
  padding: 80px 0;
}

section:nth-of-type(even) {
  background-color: var(--bg-gray);
}

/* Images */
img { max-width: 100%; height: auto; display: block; }
.img-rounded { border-radius: var(--radius-base); }
.img-shadow { box-shadow: var(--shadow-card); }

h1, h2, h3, h4 { margin: 0; line-height: 1.4; }

h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 60px;
  text-align: center;
  color: var(--text-main);
  font-weight: 700;
  position: relative;
}

h2.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

h3.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.note { font-size: 0.85em; color: var(--text-muted); display: block; margin-top: 5px; }
.text-center { text-align: center; }

/* Highlight Marker */
strong {
  background: linear-gradient(transparent 60%, #fff3b8 60%);
  font-weight: 700;
  padding: 0 2px;
}

/* Breadcrumb (新規追加クラス) */
.breadcrumb-nav { padding: 15px 0; font-size: 0.9em; background: var(--bg-base); }
.breadcrumb-list { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb-list li { color: var(--text-muted); }
.breadcrumb-list li a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-list li a:hover { text-decoration: underline; }
.breadcrumb-list li:not(:last-child)::after { content: '>'; margin-left: 8px; font-size: 0.8em; }

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
  padding: 60px 20px 80px;
  border-bottom: 1px solid var(--border-color);
}
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-content { flex: 1; }
.hero-visual { 
  flex: 1; 
  max-width: 450px;
  position: relative;
}
.hero-visual img {
  width: 100%;
  border-radius: 20px 50px 20px 20px;
  box-shadow: 0 10px 30px rgba(240, 184, 0, 0.2);
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-sub);
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-radius: var(--radius-base);
  display: inline-block;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-point-tag {
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: bold;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.hero-point-tag::before { content: "✅ "; margin-right: 5px; }

/* Standard Cards */
.card {
  background: #fff;
  border-radius: var(--radius-base);
  padding: 0;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); }
.card-img-area {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-light);
}
.card-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .card-img-area img { transform: scale(1.05); }

.card-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.card-desc { margin-bottom: 15px; font-size: 0.95em; } /* 新規抽出クラス */

.card.soft-yellow { background: var(--primary-light); border-color: var(--primary-color); }
.card.soft-yellow .card-body { background: var(--primary-light); }
.card.soft-blue { background: #f0f8ff; border-color: #d0e3ff; }
.card.soft-blue .card-body { background: #f0f8ff; }

/* Voice Component */
.voice-list { display: flex; flex-direction: column; gap: 40px; max-width: 840px; margin: 0 auto; }
.voice-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow-card); border: 1px solid var(--border-color); display: flex; flex-direction: row; padding: 30px; gap: 35px; position: relative; transition: transform 0.3s; }
.voice-card:hover { transform: translateY(-3px); }
.voice-card::after { content: '“'; position: absolute; bottom: -40px; right: 20px; font-size: 14rem; color: var(--primary-color); opacity: 0.1; font-family: serif; line-height: 1; pointer-events: none; z-index: 0; }
.voice-card-img { width: 220px; flex-shrink: 0; position: relative; min-height: 160px; }
.voice-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); display: block; }
.voice-body { flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; padding: 0; }
.voice-header { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px dashed #e0e0e0; }
.voice-avatar { font-size: 1.8rem; background: #fff4d1; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.voice-title { font-weight: bold; font-size: 1rem; color: #333; line-height: 1.4; }
.voice-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; font-weight: normal; }
.voice-text { font-size: 0.95rem; line-height: 1.8; color: var(--text-main); }
.voice-headline { display: inline; font-weight: bold; color: #333; font-size: 1.05em; line-height: 1.8; background: linear-gradient(transparent 65%, #fff4d1 65%); box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.voice-headline-spacer { display: block; margin-bottom: 12px; }

/* Conditions & Tables */
.condition-group { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px dashed #e0e0e0; }
.condition-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.condition-group-title { font-size: 1rem; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; display: flex; align-items: center; }

.option-table { display: flex; flex-direction: column; gap: 0; }
.option-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #f0f0f0; transition: background 0.2s; }
.option-row:last-child { border-bottom: none; }
.option-row:hover { background: #fafafa; }
.option-label { font-weight: 600; color: var(--text-main); flex: 1; }
.option-price { font-weight: 700; color: var(--primary-color); font-size: 1.05em; text-align: right; white-space: nowrap; }

/* Zig-Zag */
.zig-zag-container { display: flex; flex-direction: column; gap: 60px; }
.feature-row { display: flex; align-items: center; gap: 40px; }
.feature-row:nth-child(even) { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-image { flex: 1; }
.feature-image img { border-radius: var(--radius-base); box-shadow: var(--shadow-card); width: 100%; height: auto; }

/* Lists */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 10px; font-weight: 500; color: var(--text-sub); }
.check-list li::before { content: '✔'; position: absolute; left: 0; top: 0; color: var(--accent-green); font-weight: 900; font-size: 1.1em; }
.ng-list li::before { content: '⚠️'; color: #f00; } /* カスタマイズ用 */

/* Price Table */
.price-box { background: #fff; border: 2px solid var(--primary-color); border-radius: var(--radius-base); overflow: hidden; }
.price-header { background: var(--primary-color); color: #333; padding: 15px; text-align: center; font-weight: bold; font-size: 1.1rem; }
.price-list { list-style: none; padding: 20px; margin: 0; }
.price-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed #ccc; }
.price-list li:last-child { border-bottom: none; }
.price-label { font-weight: bold; color: var(--text-sub); }
.price-value { font-weight: 800; color: var(--text-main); font-size: 1.1em; }

/* FAQ */
details.faq-details { background: #fff; border-radius: var(--radius-base); margin-bottom: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); border: 1px solid #eee; transition: all 0.3s; }
details.faq-details[open] { box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-color: var(--primary-color); }
summary.faq-summary { padding: 20px; font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 50px; display: flex; align-items: baseline; }
summary.faq-summary::-webkit-details-marker { display: none; }
summary.faq-summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--primary-color); font-weight: 300; }
details[open] summary.faq-summary::after { content: '-'; }
.faq-q-mark { background: var(--primary-color); color: #333; padding: 2px 10px; border-radius: 4px; font-size: 0.8em; margin-right: 12px; }
.faq-content { padding: 0 20px 20px 20px; color: var(--text-sub); line-height: 1.7; border-top: 1px dashed #eee; margin-top: -10px; padding-top: 20px; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

/* Buttons & SNS Links */
.btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.btn-cta { display: inline-flex; align-items: center; justify-content: center; padding: 16px 45px; border-radius: var(--radius-pill); font-weight: 700; text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border: 2px solid transparent; }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-line { background: var(--accent-green); color: #fff; border-color: var(--accent-green); }
.btn-primary { background: var(--primary-color); color: #333; border-color: var(--primary-color); }

/* SNS Link (DRY違反修正箇所) */
.sns-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 0.95rem;
  background: #fff;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.sns-link-btn:hover { transform: translateY(-3px); }
.sns-link-btn .instagram-text { background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sns-link-btn .youtube-text { color: #ff0000; }

/* Alert & Bottom CTA */
.alert-box { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; padding: 15px; border-radius: var(--radius-base); margin-bottom: 30px; text-align: center; font-weight: bold; }
.section-cta-bottom { padding-bottom: 100px; }
.card-cta-wrapper { text-align: center; max-width: 800px; margin: 0 auto; padding: 20px; }
.title-no-border { margin-bottom: 20px; font-size: 1.8rem; border: none; }
.title-no-border::after { display: none !important; }
.cta-bottom-desc { margin-bottom: 30px; font-size: 1.1rem; }

/* Scroll Down Arrow */
.scroll-down { position: fixed; bottom: var(--arrow-bottom-base); left: 50%; transform: translateX(-50%) rotate(45deg); width: 24px; height: 24px; border-right: 3px solid #333; border-bottom: 3px solid #333; opacity: .85; animation: hint 1.6s infinite; z-index: 1000; transition: opacity .3s; pointer-events: auto; cursor: pointer; }
.scroll-down.is-hidden { opacity: 0; pointer-events: none; }
@keyframes hint { 0%, 100% { bottom: var(--arrow-bottom-base); } 50% { bottom: var(--arrow-bottom-move); } }

/* Mobile Sticky CTA */
.mobile-sticky-cta { display: none; }
.sticky-sub-label { font-size: 0.8em; font-weight: normal; }
.sticky-sub-label-main { font-size: 0.85em; font-weight: normal; }

/* =========================================
   Media Queries (分散していたものを集約)
========================================= */
@media (max-width: 768px) {
  .hero-wrapper { flex-direction: column-reverse; text-align: center; }
  .hero-points { justify-content: center; }
  .hero-visual { max-width: 100%; margin-bottom: 20px; }
  .hero-visual img { border-radius: var(--radius-base); }
  .voice-card { flex-direction: column; padding: 25px 20px; gap: 20px; }
  .voice-card-img { width: 100%; height: 200px; }
  .voice-card::after { font-size: 10rem; bottom: -20px; right: 5px; }
  .feature-row, .feature-row:nth-child(even) { flex-direction: column; }
  .zig-zag-container { gap: 40px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root {
    --arrow-bottom-base: 95px;
    --arrow-bottom-move: 85px;
  }
  .option-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 15px; }
  .option-price { text-align: left; white-space: normal; }
  
  body { padding-bottom: 70px; }
  .mobile-sticky-cta { position: fixed; bottom: 10px; left: 10px; right: 10px; z-index: 950; display: flex; gap: 8px; height: 60px; }
  .cta-item { border-radius: 8px; text-decoration: none; display: flex; flex-direction: column; justify-content: center; align-items: center; line-height: 1.1; font-size: 12px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.2); flex: 1; position: relative; overflow: hidden; }
  .cta-item:active { transform: scale(0.98); }
  .cta-sub { flex: 0 0 35%; background: var(--accent-green); color: #fff; border: 1px solid var(--accent-green-dark); }
  .cta-sub .icon { font-size: 1.2em; margin-bottom: 2px; }
  .cta-main { flex: 1; background: var(--primary-color); color: #333; border: 2px solid #fff; font-size: 13px; }
  .cta-main .icon { display: none; }
  .badge-recruit { position: absolute; top: 0; left: 0; background: #ff3b30; color: #fff; font-size: 9px; padding: 2px 6px; border-bottom-right-radius: 6px; font-weight: 800; }
  .arrow { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 1.2em; opacity: 0.6; }
}