/* JPCスポーツ教室代表より書籍出版のお知らせ ページ用CSS */
.jpcbook-section {
    padding: 40px 0;
}

.jpcbook-section-bg {
    background-color: #f5f5f5;
}

.jpcbook-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* 外側のコンテナにのみ左右の余白を付与し、ネストで狭くならないようにする */
.jpcbook-section > .jpcbook-container {
    padding: 0 10px;
}

/* 内側のコンテナは余白を追加しない（累積を防止） */
.jpcbook-inner-section > .jpcbook-container {
    padding: 0;
}

.jpcbook-column {
    width: 100%;
}

.jpcbook-col-100 {
    width: 100%;
}

.jpcbook-widget-wrap {
    width: 100%;
}

.jpcbook-widget {
    margin-bottom: 20px;
}

.jpcbook-widget-container {
    width: 100%;
}

.jpcbook-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.jpcbook-title-h3 {
    font-size: 26px;
    line-height: 2em;
    font-weight: bold;
    color: #00516D;
    text-align: center;
    margin-bottom: 20px;
}

.jpcbook-content-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .jpcbook-section { padding: 10px 0; }
    .jpcbook-title-h3 { font-size: 26px; line-height: 1.5em; }
}

