@charset "utf-8";

/* ====================  ==================== */




/* ==================== section ==================== */
#info_sec01 {
    padding: 150px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    gap: 30px;
}
.info_block01 {
    max-width: 1024px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 100px;
}
.info_tag-box {
    width: 15%;
    height: auto;
    padding-top: 30px;
    border-top: 1px dotted #333 ;
}
.info_tag-box ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
    gap: 20px;
}
.info_tag-box li {
    width: 100%;
}
.info_tag-box li a {
    display: inline-block;
    width: 90%;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

.info_inner {
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
}
.info_inner ul {
    width: 100%;
    margin-bottom: 100px;
}
.info_inner li {
    width: 100%;
    padding: 30px 0;
    border-top: 1px dotted #333;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
}
.info_inner li:last-child {
    border-bottom: 1px dotted #333;

}
.info_inner a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: flex-start;
    gap: 10px;
}
.info_inner h3 {
    font-size: 20px;
}
.info_inner li:last-child {
    border-bottom: 1px dotted #333;
}


/* 選択されたボタン（active）のみに青い下線と文字色 */
.info_tag-box li a.active {
    border-bottom: 2px solid #007bff;
    color: #007bff;
}

@media screen and (max-width:768px) {
    .info_block01 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
    }
    .info_tag-box {
        width: 100%;
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        margin-bottom: 0;
        border-bottom: 1px dotted #333 ;
    }
    .info_tag-box ul {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        align-items: flex-start;
        gap: 10px;
    }
    .info_tag-box li a {
    width: 100%;
    }

    .info_inner {
        width: 100%;
    }
    .info_cont {
        max-width: 768px;
        width: 100%;
        margin-bottom: 100px;    
    }
    
    .info_cont p {
        line-height: 32px;
        letter-spacing: 0.08rem;
        text-align: center;
    }
    
}