.container {
    max-width: 750px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー・メインタイトル（新しくスタイルを作成） */
.hero-section {
    text-align: center;
    padding: 40px 0 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
/* h1の代わりにこのクラスを使用 */
.hero-title {
    display: block;
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: #000;
    line-height: 1.4;
    font-weight: bold;
}
.hero-section .en-title {
    font-size: 1.1rem;
    color: #888;
    font-weight: normal;
}

/* セクション共通 */
.section {
    margin-bottom: 40px;
    clear: both; /* 回り込み解除 */
}
.section::after { /* clearfix */
    content: "";
    display: block;
    clear: both;
}
.section-title {
    font-size: 1.5rem;
    border-left: 6px solid #000;
    padding-left: 15px;
    margin-bottom: 5px;
    line-height: 1.3;
    text-align: left;
    font-weight: bold;
}
/* セクションタイトルの下の英語 */
.section-subtitle-en {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 25px;
    padding-left: 21px;
    font-weight: normal;
    display: block;
    text-align: left;
}

/* テキストスタイル */
/* p {
    margin-bottom: 1.5rem;
} */
.jp_text{
    text-align: left;
}
.jp_text p{
    margin-bottom: 1.5rem;
}
.en-text {
    font-size: 11px;
    color: #666;
    margin-top: 10px;
    display: block;
}

/* 回り込みレイアウトの指定 */
.image-wrap {
    margin-bottom: 20px;
    max-width: 40%;
}
.image-wrap img {
    display: block; 
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}
/* 左に画像を配置する場合 */
.image-wrap.align-left {
    float: left;
    margin-right: 30px;
}
/* 右に画像を配置する場合 */
.image-wrap.align-right {
    float: right;
    margin-left: 30px;
}
.image-caption {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 20px;  /* キャプションの下にも余白を作る */
    color: #666;
    line-height: 1.4;
}
/* 強調メッセージ */
.highlight-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
    clear: both;
}
.highlight-box strong {
    font-size: 1.2rem;
    color: #d32f2f;
}

.cta-area {
    text-align: center;
    margin: 20px 0 30px 0;
    padding: 40px;
    background-color: #f0f0f0;
    border-radius: 12px;
    clear: both;
}
.cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff !important;
    padding: 20px 40px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 15px;
    transition: background 0.3s;
}
.cta-button:hover {
    background-color: #333;
}
.cta-button span {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-section {
    padding: 20px 0;
    margin-bottom: 20px;
    }
    .hero-title { font-size: 1.5rem; }
    .section-title { font-size: 1.3rem; }
    .image-wrap { 
        float: none !important; 
        max-width: 100%; 
        margin: 0 0 20px 0 !important; 
    }
    .image-wrap img {
        width: 100%;
    }
}
