/**
 * 当サイトについてページ専用CSS
 * about/index.php で使用
 */

/* ページ全体 */
.about-content {
    background: white;
    padding: 0;
}

/* セクション共通 */
.about-section {
    padding: 24px 20px;
    border-bottom: 1px solid #eee;
}
.about-section:last-child {
    border-bottom: none;
}

/* 本文テキスト */
.about-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}
.about-text p {
    margin-bottom: 16px;
}
.about-text p:last-child {
    margin-bottom: 0;
}

/* セクション見出し */
.about-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
}

/* 画像エリア */
.about-image-block {
    text-align: center;
    margin: 20px 0;
}
.about-image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.about-image-caption {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

/* リンクボタン */
.about-link-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 12px;
}
.about-link-btn:hover {
    background: #2980b9;
    color: white;
    text-decoration: none;
}

/* CTA（使い方リンク）セクション */
.about-cta {
    text-align: center;
    padding: 32px 20px;
    background: #f7f9fa;
    border-bottom: 1px solid #eee;
}
.about-cta p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}
