@charset "UTF-8";

:root {
    --beige: #fafbe6;
    --white: #fcfcef;
    --skyblue: #98d2c0;
    --emeraldgreen: #03aa9d;
    --navy: #215881;
}

body {
    background-color: var(--beige);
    margin: 0;
    padding: 0;
    font-family: Zen Kaku Gothic New;
}

.container {
    width: 100%;
    max-width: 375px;
    margin: 40px auto;
    box-sizing: border-box;
}

.tab {
    display: flex;            
    margin: 0 auto;           
    width: 100%;
    padding: 0;               
    list-style: none;
    font-weight: 400;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 20px;
}

.tab li {
    flex: 1;                  
    text-align: center;      
    display: flex;           
}

.tab li a {
    display: flex;            
    align-items: center;     
    justify-content: center;  
    height: 100%;             
    box-sizing: border-box;   
    width: 100%;
    position: relative;       
    background-color: #e6e6e6;
    color: #000000;          
    cursor: pointer;         
    transition: 0.3s all;     
    text-decoration: none;
    padding: 0.7em 0.5em;     
    border-top: solid 2px var(--navy);
    border-bottom: solid 2px var(--navy);
    border-right: solid 2px var(--navy);
    border-left: none;        
}

.tab li:first-child a {
    border-left: solid 2px var(--navy);
}

.tab li a.active {
    background-color: var(--emeraldgreen); 
    color: var(--beige);            
    font-weight: normal;
    border-top: solid 2px var(--navy);
    border-bottom: solid 2px var(--navy);
    border-right: solid 2px var(--navy);
}

.experience-box {
    margin: 0 auto;
    width:335px;
    border:1px solid var(--emeraldgreen);
    background-color: var(--white);
    position:relative;
    margin-top:20px;
    justify-content:center;
    padding:15px;
    line-height:1.5;
    font-size:14px;
    text-align:justify;
    text-align-last:left;  
    margin-bottom: 20px;
}

.nj-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}
