/* 全体のリセット */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
}


/* ヘッダー */


/*
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #4C2A7A;
    padding: 15px 30px;
}
*/

.logo img {
    width: 150px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.contact-btn {
    background: white;
    color: #4C2A7A;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}


/* メインタイトル */

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin: 20px 0;
}

.sub-title {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
}


/* 情報セクション */

.info-section {
    /* display: grid;
    grid-template-rows: 100px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px; */
    padding: 64px 0;
    margin: 0 auto;
    max-width: 1068px;
}

.info-card {
    display: flex;
    align-items: center;
    background: #FCFAFF;
    padding: 32px;
    /* width: 1068px;
    max-width: 90%; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.0);
    margin: 18px;
}


/* 画像のスタイル */

.info-image {
    width: 300px;
    height: auto;
    border-radius: 0px;
}


/* テキスト部分 */

.info-text {
    flex: 1;
    padding: 0 20px;
}

.info-subtitle {
    font-size: 12px;
    color: #6a329f;
    letter-spacing: 1px;
    font-weight: bold;
}

.info-title {
    font-size: 20px;
    color: #4c2a7a;
    font-weight: bold;
}


/* 矢印ボタン */

.info-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #4c2a7a;
    border-radius: 50%;
    text-decoration: none;
    color: #4c2a7a;
    font-size: 18px;
    transition: 0.3s;
}

.info-arrow:hover {
    background: #4c2a7a;
    color: white;
}


/*
.info-card img {
    width: 100%;
    height: auto;
}
*/

.info-text {
    padding: 20px;
}

.info-text h2 {
    color: #4C2A7A;
    margin-bottom: 10px;
}


/* フッター */


/*
footer {
    background: #4C2A7A;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 5px 10px;
}

.contact-btn {
    background: white;
    color: #4C2A7A;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
*/


/* レスポンシブ対応 */

@media (max-width: 600px) {
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    .info-image {
        width: 100%;
        /* max-width: 300px; */
    }
    .info-text {
        padding: 10px 0;
    }
    .info-arrow {
        margin-top: 10px;
    }
}
