/* Base */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #f9f9f9;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

*, *::before, *::after {
  box-sizing: inherit;
}

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

/* Layout */
section, footer {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

h1, h2 {
  color: #006a4e;
  margin-bottom: 20px;
}





/* Responsive */
@media screen and (max-width: 768px) {
    section, footer {
    padding: 5px 16px;
  }

 
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .cta, .cta-footer {
    font-size: 1rem;
    padding: 0.8em 1.6em;
  }
}

table {
  width: 100%;
  max-width: 800px;           /* テーブル幅の制限 */
  margin: 20px auto;          /* ← 中央寄せ */
  border-collapse: collapse;
  text-align: center;
}

th, td {
  border: 1px solid #ccc;
  padding: 12px;
}


/* 点滅アニメーション */
@keyframes blink-grow {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.2; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.slot-number {
  color: red;
  font-weight: bold;
  animation: blink-grow 1s infinite;
}


.campaign{
margin-top:2vw;
}
@media screen and (max-width: 768px) {
.campaign{
margin-top:4vw;
}

/* 導入企業の声 */
.testimonial-item {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin: 0 auto 30px auto; /* 中央寄せ */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央揃えに変更 */
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.75;
  font-size: 15px;
  color: #333;
  max-width: 700px; /* 横幅も適度に制限 */
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

.testimonial-item img {
  border-radius: 8px;
  margin-bottom: 20px;
  width: 150px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-item h3 {
  color: #0c4a6e;
  font-size: 1.25em;
  margin-bottom: 15px;
  text-align: center;
}

.testimonial-item .section-title {
  font-weight: bold;
  color: #0c4a6e;
  margin-top: 15px;
  margin-left: 50px!important;
  margin-bottom: 5px;
  font-size: 1em;
  text-align: left!important;
  display: block;
  width: 100%;
}

.testimonial-item .section-content {
  margin-bottom: 15px;
  white-space: pre-wrap;
  text-align: center;
}

.testimonial-item em {
  background-color: #f0f8ff;
  padding: 10px 14px;
  border-left: 4px solid #0c4a6e;
  border-radius: 4px;
  display: block;
  margin-top: 10px;
  text-align: left;
}



/* おすすめ記事 */
.recommended-articles {
  background-color: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
}

.articles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.article-card {
  width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card img {
  width: 100%;
  height: auto;
  display: block;
}

.article-card h3 {
  font-size: 18px;
  padding: 15px;
  color: #333;
  text-align: left;
  line-height: 1.4;
}




/* １つだけの関連記事 */
.article-card {
  width: 300px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.article-card img {
  width: 100%;
  height: auto;
}

.article-card h3 {
  font-size: 18px;
  padding: 12px;
  color: #333;
  line-height: 1.5;
}


     /* 何ができるの？の中のレポート */
.highlight-red {
      color: red!important;
      font-weight: bold;
      border-left: 5px solid red;
      padding-left: 10px;
    }



    /* 何ができるの？ */
.feature-grid-alt {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.feature-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  text-align: center;
}
.feature-image img {
  max-width: 100%;
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

.feature-text {
  flex: 1;
  max-width: 500px;
}
.feature-text h3 {
  font-size: 1.5em;
  color: #0c4a6e;
  margin-bottom: 10px;
  text-align: left;
}
.feature-text p {
  color: #444;
  font-size: 1em;
  line-height: 1.8;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column !important;
    text-align: center;
  }

  .feature-text {
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .feature-text h3,
  .feature-text p {
    text-align: center;
  }
}

.feature-summary-grid {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.feature-summary-grid h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.summary-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.summary-card:hover {
  transform: translateY(-5px);
}

.summary-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.summary-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.summary-card p {
  font-size: 14px;
  color: #666;
}



/* よくある質問 */
.faq-list dt {
  cursor: pointer;
  padding: 15px;
  margin-top: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.faq-list dt.active {
  background-color: #eaf8ff;
}

.faq-list dd {
  display: none;
  padding: 15px;
  margin: 0;
  background: #fefefe;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 5px 5px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* CTA Buttons - LINE専用 */
.cta-line {
  background: #00c300; /* LINEグリーン */
  color: #fff;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease;
  font-size: 1.1rem;
  text-align: center;
}

/* Hover */
.cta-line:hover {
  background: #009a00;
}

/* Responsive - モバイル補強 */
@media screen and (max-width: 768px) {
  .cta-line {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.2rem;
    padding: 1.2em 1em;
  }
}


/* CTA Buttons */
.cta, .cta-footer {
  background: #ff5722;
  color: #fff;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease;
  font-size: 1.1rem;
  text-align: center;
}

/* Hover */
.cta:hover, .cta-footer:hover {
  background: #e64a19;
}

/* Responsive - スマホ表示強化 */
@media screen and (max-width: 768px) {
  .cta, .cta-footer {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.2rem;
    padding: 1.2em 1em;
  }
}


/* 「面接前レポート」とは？ */
.interview-report {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Helvetica Neue", sans-serif;
}

.interview-report h2 {
  font-size: 28px;
  color: #222;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}

.interview-report h2 span {
  color: #e53935;
  font-weight: bold;
  font-size: 22px;
}

.interview-report .intro {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

.report-point {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.report-point h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.report-point p {
  font-size: 16px;
  line-height: 1.6;
}

.report-point ul {
  margin-top: 10px;
  padding-left: 20px;
}

.report-point ul li {
  font-size: 15px;
  line-height: 1.5;
  list-style-type: disc;
  color: #555;
}

.report-summary {
  background: #fff3e0;
  padding: 25px;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.report-summary h3 {
  font-size: 20px;
  color: #bf360c;
  margin-bottom: 15px;
}

.report-summary ul {
  padding-left: 20px;
}

.report-summary li {
  font-size: 15px;
  line-height: 1.5;
}




/* 保守プラン・コスト比較共通スタイル */
.section-block {
  padding: 20px 20px;
  background-color: #f9fafb;
  border-radius: 16px;
  margin: 20px auto;
  max-width: 980px;
  text-align: center;
}
.section-block h2 {
  font-size: 28px;
  color: #1f2937;
  margin-bottom: 24px;
}
.section-block img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}
.plan-catch {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 40px;
}
.plan-table, .cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px auto;
}
.plan-table th, .plan-table td, .cost-table th, .cost-table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  font-size: 16px;
  color: #374151;
  text-align: left;
}
.plan-table th, .cost-table th {
  background-color: #e0f2f1;
  color: #065f46;
  font-size: 18px;
  text-align: center;
}
.plan-highlight, .graph-explanation {
  background: #fef3c7;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  color: #92400e;
  margin: 20px auto;
  text-align: center;
  max-width: 880px;
}
@media screen and (max-width: 768px) {
  .section-block {
    padding: 20px 16px;
  }
  .plan-table, .cost-table {
    border: 1px solid #e5e7eb;
    display: block;
    width: 100%;
    overflow-x: auto;
  }
  .plan-table th, .plan-table td,
  .cost-table th, .cost-table td {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #e5e7eb;
  }
  .section-block h2 {
    font-size: 22px;
  }
  .plan-catch,
  .graph-explanation {
    font-size: 15px;
    padding: 16px;
  }
  .section-block p {
    font-size: 15px;
  }
.cost{
  margin-top: -5vw
}
}