
/* フェードアニメーション */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}
.feature-card.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 余白とカード表示調整（強制上書き） */
.card-section {
  display: flex !important;
  justify-content: center !important;
  padding: 1em 1em 0.5em !important;
  background-color: #f9f9f9 !important;
}
.card {
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
  overflow: hidden !important;
  max-width: 650px !important;
  transition: transform 0.3s ease !important;
  text-decoration: none !important;
}
.card:hover {
  transform: translateY(-5px) !important;
}
.card-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
.card-body {
  padding: 1em !important;
}
.card-title {
  font-size: 1.3em !important;
  margin-bottom: 0.4em !important;
}
.card-text {
  font-size: 0.9em !important;
  line-height: 1.4 !important;
  margin-bottom: 0.5em !important;
}
.card-more {
  font-weight: bold !important;
  color: #005bac !important;
}
#text1-section {
  margin-bottom: 0 !important;
  padding: 0.5em 1em 0 1em !important;
  width: 100% !important;
  text-align: center !important;
}
#text1-section h2 {
  font-size: 1.6em !important;
  margin: 0.5em 0 0.3em !important;
  padding: 0 !important;
  display: inline-block !important;
}
.section-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0.3em;
  color: #333;
}
.lead {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  color: #555;
}
.section-wrapper {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}
.main-message {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.gallery-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.gallery-item img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.info-box, .highlight-box, .cta-box {
  background-color: #f9f9f9;
  padding: 25px;
  margin-bottom: 30px;
  border-left: 6px solid #0066cc;
  border-radius: 8px;
}
.box-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.feature-list, .benefit-list, .cta-list {
  list-style: disc;
  margin-left: 20px;
}
.cta-message {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}
.jig-section {
  padding: 60px 20px;
  background: #f6f9fc;
  text-align: center;
}
.section-header .headline {
  font-size: 2.2em;
  margin-bottom: 0.5em;
}
.section-header .highlight {
  color: #007acc;
  background: linear-gradient(transparent 60%, #cceeff 60%);
}
.sublead {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 2em;
}
.gallery-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
  margin-bottom: 3em;
}
.gallery-grid figure {
  width: 300px;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  display: block;
}
.gallery-grid figcaption {
  padding: 0.8em;
  font-size: 0.95em;
  background: #f0f0f0;
  font-weight: bold;
}
.info-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-bottom: 3em;
}
.info-card {
  width: 320px;
  background: white;
  border-left: 6px solid #007acc;
  padding: 1.5em;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border-radius: 8px;
}
.info-card h3 {
  margin-bottom: 1em;
  font-size: 1.2em;
}
.info-card ul {
  list-style: disc;
  margin-left: 1em;
  color: #444;
}
.info-card.accent {
  border-left-color: #e53935;
}
.cta-box {
  background: linear-gradient(90deg, #007acc, #00c8ff);
  color: white;
  padding: 2em 1em;
  border-radius: 12px;
}
.cta-box h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.cta-box .btn-cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.8em 1.5em;
  background: white;
  color: #007acc;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-box .btn-cta:hover {
  background: #e0f7ff;
}
.info-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}
.info-box {
  background: #ffffff;
  padding: 2em;
  border-left: 6px solid #007acc;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  margin-bottom: 2em;
}
.info-box.highlight-box {
  border-left-color: #00b894;
}
.info-box .box-title {
  font-size: 1.4em;
  margin-bottom: 0.8em;
  font-weight: bold;
}
.feature-list {
  list-style: disc;
  margin-left: 1.5em;
  color: #333;
}
.feature-list li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.emphasis {
  font-weight: bold;
  color: #007acc;
}
.info-box {
  text-align: left; /* これが親要素への明示的指示 */
}

.feature-list {
  list-style: disc;
  margin-left: 1.5em;
  padding-left: 0;
  text-align: left; /* 念のためこちらにも明示 */
}

.feature-list li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.highlight-section {
  margin-top: 40px;
  margin-bottom: 40px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  margin-top: 1em;
}
.feature-card-box {
  background: #ffffff;
  border-left: 5px solid #007acc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1em 1.2em;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: flex-start;
  gap: 1em;
}
.feature-num {
  font-weight: bold;
  font-size: 1.5em;
  color: #007acc;
  flex-shrink: 0;
}
.feature-card-box p {
  margin: 0;
  font-size: 1em;
  line-height: 1.5;
}
.speech-bubble {
  background: #eef6ff;
  border-radius: 10px;
  padding: 1em;
  margin: 1em 0;
  position: relative;
  font-style: italic;
}
.speech-bubble::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 1.5em;
  border: 10px solid transparent;
  border-bottom-color: #eef6ff;
}
.solution-box {
  background: #fff;
  padding: 1em;
  border-left: 4px solid #00b894;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 1em;
}
.contact-cta {
  margin: 2em 0;
  padding: 1em;
}

.cta-box {
  background: #fefefe;
  border-left: 6px solid #d32f2f;
  border-radius: 10px;
  padding: 2em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.cta-box h3 {
  font-size: 1.5em;
  color: #d32f2f;
  margin-bottom: 1em;
}

.cta-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1em;
}

.cta-list li {
  font-size: 1em;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

.cta-list li i {
  margin-right: 0.5em;
  color: #d32f2f;
}

.cta-message {
  font-size: 1.1em;
  margin: 1em 0;
  color: #333;
}

.cta-button {
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  font-weight: bold;
  padding: 0.8em 1.5em;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #b71c1c;
}
.contact-gradient-box {
  background: linear-gradient(135deg, #007acc, #00c3ff);
  border-radius: 12px;
  padding: 3px;
  margin: 2em auto;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-gradient-content {
  background: #ffffff;
  padding: 2em;
  border-radius: 10px;
  text-align: left;
}

.contact-gradient-content h3 {
  font-size: 1.5em;
  color: #007acc;
  margin-bottom: 1em;
}

.cta-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1em;
}

.cta-list li {
  font-size: 1em;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  color: #333;
}

.cta-list li i {
  margin-right: 0.5em;
  color: #007acc;
}

.cta-message {
  font-size: 1.1em;
  margin: 1.2em 0;
  color: #333;
}

.cta-button {
  display: inline-block;
  background: #007acc;
  color: #fff;
  font-weight: bold;
  padding: 0.8em 1.5em;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #005e9c;
}
