@charset "UTF-8";

/*
 * このサイトについて (About) 用スタイル
 * ベースデザインは既存サイトのトーンに準拠
 */

.about-content {
    background-color: #fff;
    padding: 30px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    line-height: 1.8;
    color: #333;
    max-width: 900px;
}

.about-content h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: bold;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content h3 {
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
    border-left: 4px solid #ddd;
    padding-left: 10px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.about-content li {
    margin-bottom: 8px;
}

.about-note {
    font-size: 0.9em;
    color: #666;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.about-link-box {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.about-link-box:hover {
    background-color: #f8f9fa;
}

.about-link-box a {
    color: #0066cc;
    text-decoration: none;
    word-break: break-all;
    display: block; /* ボックス全体をクリック可能風に */
}

.about-link-box a:hover {
    text-decoration: underline;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .about-content {
        padding: 15px;
        margin: 10px 0; /* 横幅いっぱいに */
        border-radius: 0; /* モバイルでは角丸なしで馴染ませる */
        box-shadow: none;
    }
    .about-content h2 {
        font-size: 1.2rem;
        margin-top: 30px;
    }
}