/* 
 * ミッションセクション共通コンポーネント
 * 各ページで共通して使用可能
 */

/* ミッションセクションコンテナ */
.mission-section {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 0 60px;
    position: relative;
}

.mission-section__container {
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ミッションの見出し */
.mission-section__heading {
    text-align: center !important;
    color: rgb(164, 11, 94);
    font-size: 28pt;
    margin-bottom: 40px;
    width: 100%;
    font-family: YuMincho, '游明朝体', 'YuMincho', '游明朝', 'Yu Mincho', 'Hiragino Mincho ProN', 'ヒラギノ明朝 Pro W3';
}

/* ミッションコンテンツレイアウト */
.mission-section__content {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0;
    gap: 40px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ミッション説明部分 */
.mission-section__text {
    flex: 1 1 45%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-section__text-heading {
    text-align: center;
    color: rgb(164, 11, 94);
    margin-bottom: 20px;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.mission-section__text-paragraph {
    text-align: center !important;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0;
}

/* フィロソフィー部分 */
.mission-section__philosophy {
    flex: 1 1 45%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.mission-section__philosophy-container {
    width: 100%;
    margin: 0 auto;
    border: 2px solid rgb(164, 11, 94);
    border-radius: 8px;
    padding: clamp(15px, 3vw, 25px);
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.mission-section__philosophy-heading {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgb(164, 11, 94);
    margin-bottom: 15px;
    text-align: center;
}

.mission-section__philosophy-paragraph {
    margin: 10px 0;
    font-size: 1rem;
    text-align: center;
}

.mission-section__philosophy-image {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: -10px auto 10px;
}