@charset "UTF-8";

  /* ヘッダー部分 */
  .header-title {
    text-align: center;
    margin-bottom: 25px;
  }
  .header-title h1 {
    font-size: 22px;
    margin: 0 0 20px;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #004ea2;
  }
  .header-title p {
    font-size: 14px;
    margin: 0;
    text-align: left;
  }

  /* 共通コンテンツ枠 */
  .container {
    max-width: 600px;
    margin: 0 auto 25px;
  }

  /* 共通エピソードのセクション */
  .section {
    padding: 20px 0 10px;
  }

  /* セクション間の区切り線 */
  .divider {
    border-top: 1px solid #9ba3b0;
  }


  /* エピソードのタイトル */
  .title {
    display: flex;
    align-items: center;
    color: #004ea2;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 15px;
  }



  /* 共通ノーマルテキスト */
  .content-txt p {
    font-size: 14px;
    margin: 0;
    text-align: left;
      margin: 0 0 30px;
  }


 /* 導入のご相談・お問い合わせボタン */
    .contact-box {
	    max-width: 300px;
        background-color: #004ea2; /* ブルー */
        color: #fff;
        padding: 14px 20px;
        border-radius: 50px; /* 両端を丸くする（ピル形状） */
        font-size: 14px;
    text-align: center;
    margin: 30px 0 50px;
    }


 /* 私が先制医療を広める理由ボタン */
    .contact-box2 {
	    max-width: 300px;
        background-color: #007b43;
        color: #fff;
        padding: 14px 20px;
        border-radius: 50px; /* 両端を丸くする（ピル形状） */
        font-size: 14px;
    text-align: center;
    margin: 30px 0 50px;
	
    }





  /* Premiumまも～るの特長 features Section */

    .features-container {
        width: 600px;
        margin: 0 auto 25px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .features-list {
        background-color: #e6f2ff; /* 画像に近い濃いブルー */
        color: #004ea2;
        padding: 14px 20px;
        border-radius: 50px; /* 両端を丸くする（ピル形状） */
        font-size: 16px;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
    .features-icon {
        margin-right: 15px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .features-text {
        letter-spacing: 0.05em;
    }


  /* 導入の流れ introduction Section */
  .introduction-label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  /* introduction-list */

  .introduction-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
  }
  .introduction-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .introduction-num {
    background: #156499;
    color: #fff;
    width: 80px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .introduction-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-top: 2px;
  }






  /* 4つのサービス service Section */

/* コンテナ全体の指定（幅600px、2列のグリッド配置） */
.service-container {
  width: 600px;
  margin: 0 auto 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列に均等分割 */
  grid-template-rows: 1fr 1fr;           /* ★追加：2つの行の高さを揃える（4つのボックスの高さを統一） */
  gap: 30px;                            /* ボックス同士の上下左右の隙間 */
  box-sizing: border-box;
  font-family: sans-serif;
}

/* カード */
.service-card {
border: 1px solid #b0d6ff;
  background-color: #f7fdff; /* 青色 */
  color: #004d9c;            /* 文字色 */
  border-radius: 10px;       /* 角丸 */
  padding: 15px 10px;        /* 上下15px、左右10pxの余白 */
  box-sizing: border-box;
}

/* 見出し部分 */
.card-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

/* 本文テキスト */
.card-text {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
    text-align: left;
}




  /* よくあるご質問 FAQ Section */
  .faq-section {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    gap: 20px;
    background: #eff9fd;
    text-align: left;
  }
  .faq-col {
    width: 100%;
    border-bottom: 1px dotted #333;
    padding-bottom: 10px;
  }


  .faq-label {
    background: #145ba1;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .faq-text {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    color: #333;
  }


  .note-text {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
  }


  /* お問い合わせ */
  .contact-txt {
  font-weight: bold;
    font-size: 16px;
    color: #666;
    margin:40px 0;
  }
