/* 商品紹介セクションのコンテナ */
.english {
    max-width: 800px;
    margin: 20px auto;
    padding: 2em;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

/* メインタイトル */
.english_title {
    font-size: 1.5em;
    color: #E64A19; /* アンパンマンのほっぺの色をイメージ */
    background-color: #ffffff;
    font-weight: bold;
    margin: 0.5em 0;
    /* ↓↓↓ ここから追加・修正 ↓↓↓ */
    white-space: nowrap; /* テキストを強制的に1行に保持 */
    overflow: hidden; /* はみ出した部分を非表示 */
    text-overflow: ellipsis; /* はみ出した部分を「...」で表示 */
    display: block; /* 状況に応じてblock要素にすることで上記プロパティが有効に */
    /* ↑↑↑ ここまで追加・修正 ↑↑↑ */
}

/* 商品説明文 */
.english_txt {
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 2em;
}

.english_txt_br{
    display: none;
}

@media (max-width: 860px) {
    .english_title {
        font-size: 1.2em;
    }

    .english_txt {
        font-size: 0.9em;
    }

    .english_txt_br{
    display: inline;
}
}

/* 商品画像 */
.english_img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin-bottom: 1.5em;
}

/* 価格情報エリア */
.english_price {
    background-color: #FFF3E0; /* 明るいクリーム色 */
    padding: 1.5em;
    border-radius: 8px;
    margin-top: 1em;
}

.english_price_txt {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.english_price_txt-strong {
    color: #D32F2F; /* 目を引く赤色 */
    font-size: 1.5em;
    margin: 0 0.2em;
}

@media (max-width: 860px) {
    .english_price_txt {
        font-size: 1.5em;
    }

    .english_price_txt-strong {
        font-size: 1.3em;
    }
}

.english_price_series {
    font-size: 1.2em;
    font-weight: bold;
    color: #E64A19;
    margin: 0.5em 0 0;
}

/* コピーライト */
.english_copyright {
    font-size: 0.8em;
    color: #888;
    margin-top: 3em;
}