@charset "utf-8";
/* CSS Document */

/*sm*/
.company_contents h3{
margin-bottom: 15px;
padding: 10px 0;
border: 2px solid rgba(255,208,0,1.0);
border-radius: 30px;
background-color: rgba(255,208,0,0.2);
font-size: 1.8rem;
font-weight: bold;
text-align: center;
}

.company_message{
margin-bottom: 50px;
}

.company_message p:not(:last-of-type){
margin-bottom: 30px;
}

.company_overview dt{
font-weight: bold;
}

.company_overview dd{
position: relative;
margin-bottom: 15px;
padding-bottom: 5px;
border-bottom: 2px solid rgba(200,200,200,1.0);
}

.company_overview dd:last-child{
margin-bottom: 0;
}

.company_overview dd::before{
content: "";
position: absolute;
bottom: -2px;
width: 50%;
height: 2px;
background: rgba(255,208,0,1.0);
}


/*md*/
@media screen and (min-width: 768px) {
.company_contents h3{
width: 50%;
margin: 0 auto 30px;
font-size: 2.2rem;
}

.company_message{
margin-bottom: 80px;
}

.company_message p:not(:last-of-type){
margin-bottom: 50px;
}

.company_overview dl{
display: flex;
flex-wrap: wrap;
width: 100%;
}

.company_overview dt{
width: 25%;
margin-bottom: 30px;
padding-bottom: 10px;
border-bottom: 2px solid rgba(255,208,0,1.0);
}

.company_overview dd{
width: 75%;
margin-bottom: 30px;
padding-bottom: 10px;
border-bottom: 2px solid rgba(200,200,200,1.0);
}

.company_overview dt:last-of-type{
margin-bottom: 0;
}

.company_overview dd::before{
display: none;
}
}