@charset "UTF-8";

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
            line-height: 1.7;
            color: #000000;
            background-color: #ECF0F0;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
        }
        
        .header {
            background-color: #1a237e;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        .header h1 {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .header .subtitle {
            font-size: 18px;
            margin-bottom: 20px;
        }
        

        .section {
            padding: 40px 20px;
            border-bottom: 1px solid #ECF0F0;
        }
        
        .section:last-child {
            border-bottom: none;
        }
        
        .section h2 {
            color: #1a237e;
            font-size: 24px;
            margin-bottom: 25px;
            padding-left: 15px;
            border-left: 5px solid #2ECC71;
        }
        
        .highlight-box {
            background-color: #E3F2FD;
            padding: 25px;
            margin: 25px 0;
            border-left: 5px solid #1a237e;
            border-radius: 5px;
        }
        

        .credentials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .credential-item {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #2ECC71;
        }
/*achievements・strengths・profile-hero*/
section.achievements, 
section.strengths {
    background: #e3f2fd;
}
section.achievements .container, 
section.strengths .container {
    background: #e3f2fd;
}
.profile-hero {
    background: #30479C !important;
}
section.profile-hero .container {
    /*background: linear-gradient(135deg, #1a237e 0%, #2949a3 100%);*/
background: #30479C;
}
section.profile-intro .container {
    background: #E3F2FD;
}
.cta-section {
background: #FECC25!important;;
}
.cta-section .container {
    /*background: linear-gradient(135deg, #FFD700 0%, #ffc1072e 100%);*/
background: #fecc250f;
}