
#la-digital-creator .section {
  padding: 50px 20px;
  max-width: 1080px;
  margin: 0 auto;
}
#la-digital-creator h2 {
  font-size: 22px;
  margin-bottom: 1.2em;
  text-align: center;
  position: relative;
}
#la-digital-creator h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ff3b3f;
  margin: 16px auto 0;
}

/* Fullwidth強制 */
#primary.content-area.fullwidth,
.site-content .container,
.site-main {
  max-width: 100% !important;
  width: 100% !important;
}
.site-content {
  margin: 0 auto;
  padding: 0;
}

/* Heroセクション */
.hero {
  background: linear-gradient(to right, #1a1a1a, #333);
  color: white;
  padding: 160px 20px;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background-color: #ff3b3f;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #e22b2f;
  transform: translateY(-2px);
  color: #eee;
}

/* 特徴リスト */
.features {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}
.features li {
  background: #f9f9f9;
  margin: 12px 0;
  padding: 14px 20px;
  border-left: 5px solid #0073e6;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* サービスカード */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  border-top: 4px solid #0073e6;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #111;
}

/* お問い合わせ */
.contact-section {
  background-color: #f6f9fc;
  text-align: center;
  margin-bottom: 0;
}
.contact-button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  background-color: #0073e6;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.contact-button:hover {
  background-color: #005bb5;
  transform: scale(1.05);
}

/* --- Contact Form 7 スタイル調整（アップデート版） --- */
.contact-form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 40px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: left;
}

/* フォーム全体 */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ラベルとフィールド整形 */
.wpcf7-form p {
  margin: 0;
}
.wpcf7-form label {
  font-weight: 500;
  font-size: 0.85rem;
  color: #777;
  display: block;
  margin-bottom: 25px;
  line-height: 2;
}

/* required の視認性を軽く */
.wpcf7-form label::after {
  content: '';
  font-size: 0.75rem;
  color: #888;
}

/* テキスト入力フィールド・テキストエリア */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fafafa;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #0073e6;
  background-color: #fff;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
  background-color: #0073e6;
  color: #fff;
  font-weight: bold;
  padding: 14px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.wpcf7-form input[type="submit"]:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
}

/* レスポンスメッセージ */
.wpcf7-response-output {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #e22b2f;
  line-height: 1.5;
}

/* カラム構造解除（Bootstrap col-md などが当たってる場合） */
.contact-form-wrapper .row,
.contact-form-wrapper .col-md-12 {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}