
body {
    margin: 0;
    color: #333;
}

/* 共通 */
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

/* ===== アニメーション ===== */
.fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.fade.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ヘッダー ===== */
.hero {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    text-align: center;
}
.hero h1 {
    font-size: 34px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
}

/* CTA */
.cta {
    background: #ff5252;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

/* ===== 課題 ===== */
.problem {
    background: #fff5f5;
}
.problem ul {
    line-height: 2;
    font-size: 16px;
}

/* ===== 解決 ===== */
.solution {
    text-align: center;
}
.solution h2 {
    color: #d32f2f;
}

/* ===== 機能 ===== */
.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.feature {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 20px;
    border-left: 5px solid #d32f2f;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== メリット ===== */
.benefits {
    background: #fafafa;
}
.benefits ul {
    line-height: 2;
}

/* ===== フロー ===== */
.flow {
    text-align: center;
    background: #fff5f5;
}
.flow-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.step {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 20px;
    border-top: 4px solid #d32f2f;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== 比較 ===== */
.table-wrap {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}
th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}
th {
    background: #d32f2f;
    color: white;
}
td:first-child {
    font-weight: bold;
    background: #fafafa;
}

td small {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* SAVE列を目立たせる */
table td:nth-child(2),
table th:nth-child(2) {
    background-color: #fff3f3;
}

table th:nth-child(2) {
    background-color: #d32f2f;
    color: #fff;
}

/* small見やすく */
table small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* ===== チェック付きリスト ===== */
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}
.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #d32f2f;
    font-weight: bold;
}

/* ===== テキスト＋画像レイアウト ===== */
.split {
    display: flex;
    align-items: center;
    gap: 40px;
}
.split .text {
    flex: 1;
}
.split .image {
    flex: 1;
}
.split img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.solution {
    text-align: center;
}

.solution-image {
    margin: 20px auto;
}

.solution-image img {
    width: 100%;
    max-width: 800px; 
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.solution-text {
    font-size: 18px;
    margin-top: 10px;
}

.solution h2 {
    margin-bottom: 10px; /* デフォルトより詰める */
}

/* ===== 事例カード ===== */
.case-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.case-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

/* ===== タイトル（キャッチ）を主役に ===== */
.case-catch {
    font-weight: bold;
    font-size: 18px; /* ← 大きく */
    color: #333; /* ← 黒に変更 */
    margin-bottom: 8px;
}

/* ===== 企業名はサブに ===== */
.case-card h3 {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}
.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/* ITreview画像だけ調整 */
.itreview-img {
    height: 140px;        /* 小さくする */
    object-fit: contain;  /* ロゴが切れない */
    background: #fff;
    padding: 50px;
}

.case-content {
    padding: 20px;
}

.case-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}


.case-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.case-btn {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #333;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 24px;
    }
    .features {
        flex-direction: column;
    }
}

<style>

.lp-section{
  line-height:1.8;
}

.lp-section h2{
  font-size:28px;
  margin-bottom:30px;
}

.lp-section h3{
  margin-top:40px;
  font-size:20px;
  border-left:4px solid #c93a3a;
  padding-left:10px;
}

.lp-image{
  margin:20px 0;
  text-align:center;
}

.lp-image img{
  max-width:100%;
  height:auto;
}

.lp-table{
  width:100%;
  border-collapse:collapse;
  margin:20px 0;
}

.lp-table th,
.lp-table td{
  border:1px solid #ddd;
  padding:10px;
}

.lp-table th{
  background:#f3f3f3;
}

.note{
  font-size:14px;
  color:#666;
}

.feature-title{
  display:inline-block;
  font-size:20px;
  font-weight:700;
  padding:5px 25px;  
  border:2px solid #c93a3a;
  border-radius:6px;
  margin:25px 0 15px;
  background:#fff;
}

.lp-feature-area{
  margin-top:40px;
}

.lp-feature-card{
  display:flex;
  gap:20px;
  padding:20px 25px;
  margin:20px 0;
  background:#fff;
  border-radius:6px;
  border:1px solid #eee;
  align-items:flex-start;
}

.lp-feature-img{
  width:70px;
  flex-shrink:0;
}

.lp-feature-img img{
  width:100%;
}

.lp-feature-text{
  flex:1;
}

.lp-feature-text h3{
  font-size:18px;
  margin-bottom:8px;
  border-bottom:2px solid #c93a3a;
  padding-bottom:5px;
}

.num{
  color:#c93a3a;
  font-weight:bold;
  margin-right:8px;
}

.lp-feature-text p{
  font-size:14px;
  line-height:1.7;
}

/* ホバーでちょいリッチに */
.lp-feature-card:hover{
  border-color:#c93a3a;
  transition:0.2s;
}

/* スマホ */
@media screen and (max-width:768px){
  .lp-feature-card{
    flex-direction:column;
  }
  .lp-feature-img{
    margin:0 auto;
  }
}

.recommend-area{
  margin:60px 0;
}

.recommend-area h2{
  text-align:center;
  margin-bottom:40px;
}

/* 全体レイアウト */
.recommend-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* 左右 */
.recommend-col{
  width:30%;
}

/* 中央画像 */
.recommend-center{
  width:40%;
  text-align:center;
}

.recommend-center img{
  max-width:100%;
}

/* ボックス */
.recommend-box{
  margin-bottom:25px;
}

.recommend-title{
  background:#c93a3a;
  color:#fff;
  padding:10px;
  border-radius:6px;
  text-align:center;
  font-weight:bold;
  margin-bottom:10px;
}

.recommend-box p{
  font-size:14px;
  line-height:1.7;
  text-align:center;
}

/* スマホ */
@media screen and (max-width:768px){

  .recommend-wrap{
    flex-direction:column;
  }

  .recommend-col,
  .recommend-center{
    width:100%;
  }

}
</style>