@charset "UTF-8";
/* CSS Document */

.tab_box .btn_area {
display: flex;
gap: 5px;
justify-content: center;
}

.tab_box .tab_btn {
width: 25%;
padding:10px 5px;
color: #333;
background: #D5D5D5;
cursor: pointer;
transition: all .6s ease;
border-radius: 1rem 1rem 0 0;
font-size: 12px;
font-weight: bold;
line-height: 1.2;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.tab_box .tab_btn::before{
content: "";
position: absolute;
right: 6px;
bottom: 40%;
width: 10px;
height:6px;
background: url("../images/com/arrow_down.svg") 0 0 no-repeat;
background-size: cover;
transition: .5s;
}

.tab_box .tab_btn span{
font-size: 10px;
display:contents;
}

.tab_box .tab_btn:hover {
background-color: #086DB0;
color: #FFF;
}

.tab_box .tab_btn:hover::before{
content: "";
position: absolute;
right: 6px;
bottom: 40%;
width: 10px;
height:6px;
background: url("../images/com/arrow_down.svg") 0 0 no-repeat;
background-size: cover;
filter: brightness(0) invert(1);
}

.tab_box .tab_btn.active {
background: #086DB0;
color: #fff;
position: relative;
}

.tab_box .tab_btn.active::before{
content: "";
position: absolute;
right: 6px;
bottom: 40%;
width: 10px;
height:6px;
background: url("../images/com/arrow_down.svg") 0 0 no-repeat;
background-size: cover;
filter: brightness(0) invert(1);
}

.tab_box .panel_area {
padding:10px 0;
}

.tab_box .tab_panel {
display: none;
}

.tab_box .tab_panel.active {
display: block;
}