
@charset "UTF-8";

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

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

  .container img {
    margin: 0 0 15px;
  }

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

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


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


  .sub-title {
    text-align: center;
    color: #333;
    font-size: 15px;
    margin: 20px 0;
  }



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


 /* ショップボタン */
    .shop-box {
	    max-width: 300px;
        background-color: #228b22;
        color: #fff;
        padding: 14px 20px;
        border-radius: 50px; /* 両端を丸くする（ピル形状） */
        font-size: 15px;
    text-align: center;
    margin: 60px 0 20px;
    }


 /* お問い合わせボタン */
    .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;
    }


 /* QR */
    .qr {
        font-size: 16px;
    text-align: center;
     margin: 0 0 10px;
    }


 /* コンテンツタイトル */
        .content-ti {
            font-size: 14px;
            text-align: left;
            font-weight: bold;
            margin: 5px 0;
        }



        /* 商品紹介 */


  .title2 {
      text-align: left;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 15px;
  }


        .section-header {
            background-color: #0a3e84;
            color: #fff;
            text-align: left;
            padding: 5px 10px;
margin:20px 0;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 1.5px;
        }

        .section-header-txt {
            text-align: left;
            font-size: 14px;
            padding:0 10px;
        }


        /* 商品コンテナ*/
        .product-card {
            width: 600px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            color: #000;
            box-sizing: border-box;
            background-color: #fff;
            padding: 10px;
        }

        /* 左側：商品画像エリア */
        .product-image {
            width: 130px;
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            padding-top: 10px;
        }

        .product-image img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* 右側：詳細情報エリア */
        .product-info {
            flex-grow: 1;
        }

        /* タイトル */
        .product-title {
            font-size: 16px;
            font-weight: normal;
            margin: 0 0 6px 0;
            letter-spacing: 1px;
    text-align: left;
        }

        /* タイトル下の四角い点線 */
        .dotted-line {
            height: 6px;
            background-image: linear-gradient(to right, #333 60%, transparent 40%);
            background-size: 12px 3px;
            background-repeat: repeat-x;
            margin-bottom: 10px;
        }

        /* 詳細テーブル */
        .product-details {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
            line-height: 1.2;
        }

        .product-details th {
            font-weight: normal;
            text-align: left;
            vertical-align: top;
            width: 50px;
            padding-right: 15px;
            padding-bottom: 5px;
            white-space: nowrap;
        }

        .product-details td {
            vertical-align: top;
            padding-bottom: 5px;
        }
