/* ====== RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ====== BASE STYLES ====== */
body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}

/* タイトルサイズ個別調整用 */
.title-sm {
  font-size: 20px;
}

.title-md {
  font-size: 26px;
}

.title-lg {
  font-size: 32px;
}

.title-xl {
  font-size: 38px;
}

/* 汎用補助クラス */
.text-center {
  text-align: center;
}


/* ====== HEADER ====== */
.header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo {
  height: 80px;
  margin: 0;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* ====== HERO SECTION (TOP PAGE) ====== */
.hero {
  background: url('../img/top01.jpg') no-repeat center center/cover;
  height: 400px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero .container {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px 60px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* ====== SERVICE SECTION ====== */
.services {
  padding: 60px 0;
  background-color: #fff;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.service-list {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-item {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.service-item h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.service-item p {
  font-size: 16px;
}

/* ====== PROBLEMS SECTION ====== */
.problems {
  padding: 60px 0;
}

.problems h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.check-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #007bff;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 4px;
  margin-right: 10px;
}

.check-list li::after {
  content: "✔";
  color: #007bff;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  left: 3px;
  top: -13px;
}

/* ====== ITサポートページ ====== */
/* IT専任担当がいなくても安心*/
<style>
.section-it-padded {
  padding: 60px 20px;
}

.it-support-intro {
  background-color: #f9fcfd;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 0px;
}

.it-support-intro .section-title {
  font-size: 30px;
  color: #0ABAB5;
  margin-bottom: 10px;
}

.it-support-intro .intro-lead {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.it-support-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  color: #555;
  line-height: 1.8;
}

.it-support-text strong {
  color: #0ABAB5;
}
</style>

/* サポート内容*/
<style>
.section-it-padded {
  padding: 60px 20px;
}

.service-list a.service-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.it-services {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.service-box {
  background: #f9fcfd;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-heading {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #0ABAB5;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}
</style>

/* 契約形態*/
<style>
.section-it-padded {
  padding: 60px 20px;
}

.contract-section-alt {
  background-color: #f8fbfc;
  border-radius: 12px;
  margin-bottom: 120px;
}

.contract-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.contract-item {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  border-left: 6px solid #0ABAB5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contract-width {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.contract-icon {
  font-size: 2rem;
  margin-right: 20px;
  color: #0ABAB5;
}

.contract-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0ABAB5;
}

.contract-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}
</style>

/* ====== 業務効率化 ====== */
/* 共通パディング設定 */
<style>
.section-eff-padded {
  padding: 60px 20px;
}

.section-eff-padded-custom {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* 業務効率化イントロ */
.efficiency-intro {
  background-color: #eef6f9;
  border-radius: 12px;
  margin-bottom: 0px;
}

.efficiency-title {
  font-size: 30px; /* タイトルのサイズ調整用 */
}

.efficiency-lead {
  font-size: 18px; /* リード文のサイズ調整用 */
  margin-bottom: 30px;
  color: #444;
}

.efficiency-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* 業務効率化サービス内容 */
.efficiency-services {
  background-color: #ffffff;
  margin-bottom: 60px;
}

.service-title {
  font-size: 28px; /* サービス内容セクションの見出しサイズ */
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.service-box {
  background-color: #f7fafd;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.service-heading {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0ABAB5;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* プログラム開発イントロ */
.section-dev-padded {
  padding: 60px 20px;
}

.dev-intro {
  background-color: #f4f9f8;
  border-radius: 12px;
  margin-bottom: 100px;
}

.dev-title {
  font-size: 30px; /* プログラム開発タイトル調整用 */
}

.dev-lead-text {
  font-size: 18px; /* プログラム開発リード文調整用 */
  margin-bottom: 30px;
  color: #444;
}

.dev-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
</style>


/* ====== サイト制作ページ ====== */
body.detail-page {
  background-color: #ffffff; /* サイト制作詳細ページだけ白背景に */
}

.hero-band {
  height: 120px;
  background: url('../img/top01.jpg') no-repeat center center/cover;
}

.service-visual {
  background-color: #ffffff;
  padding: 70px 0px 0px 0px;
  text-align: center;
}

.main-visual {
  width: 70%;
  height: auto;
  border-radius: 10px;
}

/* お困りではないですか？*/
.worries-section {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.worries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.worry-item {
  width: 240px;
  text-align: center;
}

.worry-item img {
  width: 225px;
  height: 236px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.worry-text {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  text-align: left; 
}

.worry-message {
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
  color: #0ABAB5;
}

/* 月額4950円セクション */
.plan-section {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-bottom: 60px;
  text-align: center;
}

.plan-section .section-title {
  font-size: 30px;
  margin-bottom: 24px;
  color: #0ABAB5;
}

.plan-text-only {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* サービスの特徴 */
.features-section {
  background: #f9fcfd;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #0ABAB5;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}

.feature-text {
  font-size: 0.95rem;
  color: #555;
}

/* 申込から制作までの流れ */
.flow-horizontal {
  background: #fff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.flow-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  height: 4px;
  background: #0ABAB5;
  z-index: 0;
}

.flow-step {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background-color: #0ABAB5;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  line-height: 40px;
  font-size: 1.1rem;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0ABAB5;
}

.step-text {
  font-size: 0.95rem;
  color: #555;
  text-align: left;
}

/* 申込ボタン */
.flow-cta {
  margin-top: 40px;
  text-align: center;
}

.btn-orange {
  display: inline-block;
  background-color: #f7921e;
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.btn-orange:hover {
  background-color: #e67600;
}



/* よくある質問 */
.faq-title-spacing {
  padding-top: 20px;
  padding-bottom: 30px;
}

.faq-section {
  background: #f9fcfd;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #747776;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #a4f0e9;
}

.faq-answer {
  display: none;
  padding: 10px 20px 20px 20px;
}

.faq-answer.open {
  display: block;
  color: #747776;
}

/* ====== お問合せ====== */
/*  お問い合わせフォーム調整 */
.contact-section {
  padding: 60px 20px;
}

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

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

.form-group label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: bold;
}

.form-group .required {
  color: red;
  margin-right: 4px;
  font-weight: bold;
  display: inline;
  vertical-align: middle;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

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

.contact-form button {
  display: block;
  margin: 30px auto 0;
  padding: 12px 32px;
  background-color: #0ABAB5;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover {
  opacity: 0.85;
}

/*  reCAPTCHA */
.g-recaptcha-wrap {
  text-align: center;
  margin: 20px 0;
}


/* ====== プライバシーポリシー ====== */

/* セクション全体のパディング調整 */
.privacy-policy-section {
  padding: 60px 20px; /* 上下60px、左右20px */
  background-color: #ffffff;
}

/* セクション内の見出しサイズ */
.privacy-policy-section .section-title {
  font-size: 32px; /* タイトルサイズを自由に調整可 */
  margin-bottom: 30px;
  color: #0ABAB5;
}

/* サブ見出し（h3）サイズ */
.privacy-policy-section h3 {
  font-size: 20px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* 本文テキストサイズと行間調整 */
.privacy-policy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

/* セクション幅の制限 */
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* ====== FOOTER ====== */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-left p {
  line-height: 1.6;
}

.footer-copy {
  text-align: center;
  color: #aaa;
  font-size: 12px;
  margin-top: 30px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-sitemap {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.footer-sitemap > li {
  margin-bottom: 10px;
}

.footer-sitemap a {
  color: #fff;
  text-decoration: none;
}

.footer-sitemap a:hover {
  text-decoration: underline;
}

.footer-submenu {
  list-style: none;
  padding-left: 20px;
  margin-top: 5px;
}

.footer-submenu li {
  margin-bottom: 6px;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 250px;
}

/* ##### スマホ用設定 ##### */
<style>
/* 共通ナビスタイル */
.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* モバイル用ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* モバイルメニュー */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    width: 100%;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .nav ul {
    flex-direction: column;
    padding: 10px 0;
    text-align: center;
  }

  .nav.active {
    display: block;
  }

  /* ロゴセンター寄せ */
  .header-flex {
    justify-content: center;
    position: relative;
  }

  .hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* スマホ調整：ヒーローセクション */
@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px 40px;
  }

  .hero .container {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* 少し濃くして文字が読みやすく */
    border-radius: 8px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
  }
}

/* --- トップページ：サービス紹介セクション --- */
.services {
  padding: 60px 0;
  background-color: #fff;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 26px; /* ← タイトルフォントサイズ調整可能 */
}

.service-list {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-item {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.service-item h3 {
  margin-bottom: 10px;
  font-size: 22px; /* ← セクション見出しフォントサイズ調整可能 */
}

.service-item p {
  font-size: 16px; /* ← 本文フォントサイズ調整可能 */
}

/* --- トップページ：お困り事チェックリスト --- */
.problems h2 {
  text-align: center;
  font-size: 24px; /* ← タイトルフォントサイズ調整可能 */
  margin-bottom: 30px;
}

.check-list li {
  font-size: 16px; /* ← チェックリスト本文フォントサイズ調整可能 */
  line-height: 1.6;
}

/* --- トップページ：サポートイントロ --- */
.support-intro h2 {
  font-size: 24px; /* ← タイトルフォントサイズ調整可能 */
  margin-bottom: 30px;
  color: #004e8c;
}

.support-intro p {
  font-size: 16px; /* ← 本文フォントサイズ調整可能 */
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* ====== トップページページ：業務内容まとめ ====== */
.it-support-section {
  background-color: #f9fdfd;
  padding: 60px 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.it-support-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.it-support-section .section-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

.it-support-section .section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  text-align: justify;
}

.it-support-section .support-item {
  background: #ffffff;
  border-left: 6px solid #00a3b5;
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.it-support-section .support-item h3 {
  font-size: 20px;
  color: #007c8c;
  margin-bottom: 10px;
}

.it-support-section .support-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}




/* ====== ITサポートページ：テキストサイズ調整可能 ====== */

/* イントロセクション */
.it-support-intro h2 {
  font-size: 28px; /* タイトルフォントサイズ */
}

.intro-lead {
  font-size: 18px; /* リード文フォントサイズ */
}

.it-support-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* サポート内容セクション */
.it-services h2 {
  font-size: 28px; /* タイトルフォントサイズ */
}

.it-services .service-box h3 {
  font-size: 1.1rem; /* 見出しフォントサイズ */
  color: #0ABAB5;
  margin-bottom: 10px;
}

.it-services .service-box p {
  font-size: 0.95rem; /* 本文フォントサイズ */
  color: #555;
  line-height: 1.7;
}

/* 契約形態セクション */
.contract-section-alt h2 {
  font-size: 28px; /* タイトルフォントサイズ */
}

.contract-heading {
  font-size: 1.1rem; /* 見出しフォントサイズ */
  color: #0ABAB5;
  margin-bottom: 10px;
}

.contract-body p {
  font-size: 0.95rem; /* 本文フォントサイズ */
  color: #555;
  line-height: 1.7;
}

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

/* ====== 業務効率化ページ 各セクションの文字サイズ調整 ====== */

/* イントロタイトル */
.efficiency-title {
  font-size: 30px; /* 調整可能 */
}

/* イントロリード文 */
.efficiency-lead {
  font-size: 1.1rem; /* 調整可能 */
  margin-bottom: 30px;
  color: #444;
}

/* イントロ詳細文 */
.efficiency-text p {
  font-size: 0.95rem; /* 調整可能 */
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* サービス内容タイトル */
.service-title {
  font-size: 28px; /* 調整可能 */
}

/* サービスボックス内テキスト */
.services-grid .service-heading {
  font-size: 1.1rem; /* 調整可能 */
}
.services-grid .service-box p {
  font-size: 0.95rem; /* 調整可能 */
  color: #555;
  line-height: 1.7;
}

/* 開発紹介タイトル */
.dev-title {
  font-size: 28px; /* 調整可能 */
}

/* 開発紹介リード文 */
.dev-lead-text {
  font-size: 1.1rem; /* 調整可能 */
  margin-bottom: 30px;
  color: #444;
}

/* 開発紹介本文 */
.dev-text p {
  font-size: 0.95rem; /* 調整可能 */
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* ====== サイト制作ページ調整 ====== */

/* お悩みセクション */
.worries-section {
  padding: 60px 20px;
  background: #ffffff;
}

.title-lg {
  font-size: 26px; /* タイトルサイズ調整可能 */
}

.worry-text {
  font-size: 0.95rem; /* テキストサイズ調整可能 */
  color: #555;
}

@media screen and (max-width: 768px) {
  .worry-message {
    font-size: 18px; /* スマホ用に小さめに調整 */
  }
}


/* サービスの特徴セクション */
.features-section {
  padding: 60px 20px;
  background: #f9fcfd;
}

.features-section .section-title {
  font-size: 28px; /* タイトルサイズ調整 */
}

.feature-title {
  font-size: 1.1rem; /* 各項目見出し調整 */
}

.feature-text {
  font-size: 0.95rem; /* 説明文調整 */
  color: #555;
}

/* 申込から制作の流れ */
.flow-horizontal {
  padding: 60px 20px;
  background: #fff;
}

.flow-horizontal .section-title {
  font-size: 28px; /* タイトル調整 */
}

.flow-step .step-title {
  font-size: 1.05rem; /* ステップ見出し */
}

.flow-step .step-text {
  font-size: 0.95rem;
  color: #555;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .flow-steps {
    display: flex;
    flex-direction: column; /* ← 横並びを縦並びに */
    align-items: center;     /* ← 子要素を中央に寄せる */
    gap: 20px;
    margin: 0 auto;
  }

  .flow-steps::before {
    content: none; /* 横ライン完全削除 */
  }

  .flow-step {
    width: 100%;
    max-width: 400px; /* 安定した幅に固定（好みに応じて） */
  }
}


/* よくある質問 */
.faq-section {
  padding: 60px 20px;
  background: #f9fcfd;
}

.faq-title-spacing {
  font-size: 28px; /* タイトル調整 */
}

.faq-question {
  font-size: 1rem;
}

.faq-answer {
  font-size: 0.95rem;
  color: #555;
}

.faq-answer p {
  line-height: 1.8;
  margin-bottom: 10px;
}

.main-visual {
  width: 100%;
  height: auto;
  max-width: 621px; /* PC時は制限あり */
  display: block;
  margin: 0 auto;
}

/* スマホ専用（幅768px以下） */
@media screen and (max-width: 768px) {
  .main-visual {
    max-width: 100%; /* 制限を外す */
    padding: 0 0px; /* 画面端に少し余白を付けたい場合 */
  }
}

/* ===== プライバシーポリシー セクション調整 ===== */

.privacy-section {
  padding: 60px 20px;
  background-color: #fff;
}

.privacy-title {
  font-size: 28px; /* タイトルのサイズ調整用 */
  margin-bottom: 30px;
  text-align: center;
}

.privacy-content p {
  font-size: 1rem; /* 通常テキストのサイズ */
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .privacy-title {
    font-size: 24px;
  }

  .privacy-content p {
    font-size: 0.95rem;
  }
}

/* --- スマホ版共通フッター調整 --- */
@media screen and (max-width: 768px) {
  .footer-left,
  .footer-right,
  .footer-copy {
    text-align: center;
  }
  .footer-left a[href^="tel"] {
    color: #fff;
    text-decoration: underline;
  }
}  

</style>