@charset "utf-8";
h3.midashi1 {
  color: #6594e0;
  border-bottom: dashed 2px #6594e0;
}

/*アコーディオン*/
.accordion-text{
    display: grid;
    transition: grid-template-rows 0.5s;
    grid-template-rows: 0fr;
}
.accordion input[type="checkbox"]{
    display: none;
}
.accordion-text span{
    overflow: hidden;
}
.accordion input[type="checkbox"]:checked + .accordion-text{
    grid-template-rows: 1fr;
	
}
.accordion-title label{
    cursor: pointer;
}
.accordion-title label:hover{
    color: #228ae2;}

	}
/*ENDアコーディオン*/
.click {
    font-size:70%;
    color:#999;
}


/*社員紹介*/
.corpqa4 {
    display: inline-block;
    position: relative;
    padding: .2em .9em .2em .4em;
    border-radius: 50px 50px 50px 50px;
    background-color: #2589d0;
    color: #fff;
	margin-bottom: 0.8rem;
}

.corpqa4::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 7px;
    border-radius: 50%;
    background: #fff;
}