/* about_complete.css - about.php専用スタイルシート */
/* 依存ファイル: common.css（共通スタイル） */
/* 呼び出し元: about.php */
/* 呼び出し先: なし */
/* ※ common.cssで定義済みのクラスは記載しない */

/* about.php固有：flexレイアウトで画像＋テキストを横並び */
.articleleft_aboutus {
    display: flex;
    gap: 30px;
    background-color: transparent;
    padding: 0;
}

.aboutus_img {
    flex: 0 0 220px;
    float: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 0;
}

/* 見出し「あなただけの空間を」- 緑背景ブロック・角丸・幅いっぱい */
.aboutus_runninghead {
    border-radius: 5px;
    width: 100%;
}

.aboutus_runninghead h3 {
    border: none;
    font-size: 1rem;
    color: white;
}

/* h3タグ直接にクラスが付いている場合のBootstrap上書き */
h3.aboutus_runninghead {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    color: white;
    margin: 0;
}

.articleleft_aboutus_article {
    flex: 1;
    overflow: visible;
    padding: 0;
}

.articleleft_aboutus_article h2 {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    color: #000;
}

@media (max-width: 768px) {
    .aboutus_img {
        flex: none;
        width: 100%;
        align-items: center;
    }

    .aboutus_runninghead {
        width: 100%;
        max-width: 300px;
    }

    .aboutus_img img {
        width: 100%;
        max-width: 300px;
    }
}
