/* section2.css */

#section2 {
    background-color: #ffffff; /* 白背景に設定 */
    background-position: center; /* 必要に応じて */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffffff; /* 必要な背景色を設定 */
}

#section2 h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
}

#section2 p {
    font-size: 0.8em;
    color: #555;
    max-width: 800px;
    line-height: 1.6;
}

/* セクション2の全体レイアウト */
.section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    gap: 20px;
    text-align: left; /* セクション全体を左揃えに */
}

/* 左側の画像ギャラリー */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 10px;
    max-width: 400px;
}

.image-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 右側の説明文 */
.description {
    max-width: 600px;
    line-height: 2;
    font-size: 1em;
    color: #333;
    text-align: left; /* 左揃え */
}

.description p {
    margin: 0;
    padding: 0;
    text-align: left; /* 各パラグラフも左揃え */
}

.description {
    text-align: left !important;
}

.description p {
    text-align: left !important;
}
