@charset "UTF-8";

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

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

.ronin-layout-container {
    width: 100% ;
    max-width: 375px ; 
    box-sizing: border-box ;
    margin: 40px auto ;
    text-align: left ; 
}

.title-wrapper {
    width: 100%;
    text-align: center; 
    margin: 20px 0 35px 0;
}

.title-top-line {
    height: 1px;
    background-color: var(--emeraldgreen); 
    margin-bottom: 6px;
}

.page-main-title {
    font-size: 24px;
    color: var(--emeraldgreen);
    margin: 0;
    font-weight: normal;
    letter-spacing: 1px;
    display: inline-block;
}

.title-bottom-line {
    height: 3px;
    background-color: var(--emeraldgreen);
    margin-top: 6px;
}

.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);
}

.area {
    width: 100%;
}

.tile {
    font-size: 16px;
    font-weight: normal;
    color: black;
    display: block;
    text-align: left; 
    padding: 2px 0 2px 14px;
    background-color: transparent;
    width: 100%;
    position: relative;
    margin: 20px 0 10px 0;
}

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

.nt-text {
    font-size:  14px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    text-align: left;
    white-space: normal;
    word-break: break-all;
}