@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;
}

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

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

.content-wrap{
    padding: 0 16px;
}

.smallbox {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: left;
}

.box {
    width: 100%;
    margin-top: 20px;
    margin-bottom:20px;
}

.resflex {
    width: 100%;
    margin-bottom: 20px;
}

.img {
    width: 100% !important;  
    max-width: 100% !important; 
    height: auto !important;    
    border-radius: 6px;
    border: 1px solid #ddd;
    margin: 8px 0 12px 0;
    display: block;
    box-sizing: border-box;
}

.honbun {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 15px 0;
}

.underhonbun {
    margin-bottom: 60px;
}