@charset "utf-8";

.kv.kv__top {
	height: 0;
    padding-top: 33.6%;
    background: url(/insurance/assets/img/corporation/key01.jpg) center center no-repeat;
    background-size: cover;
}
.kv__texts {
	top: 50%;
    transform: translate(0, -50%);
}


.company-list__wrap {
    position: relative;
    margin: 0 0 calc(60 / 1000 * 100%);
    padding: calc(50 / 1000 * 100%);
    border: 1px solid #ff687a;
}
.company-list__title {
    position: absolute;
    margin: 0 auto;
    top: calc(-63 / 1000 * 100%);
    left: 50%;
    width: calc(240 / 1000 * 100%);
    background: #FFFFFF;
    color: #ff687a;
    font-size: 2rem;
    letter-spacing: 0.3rem;
    text-indent: 0.3rem;
    text-align: center;
    transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
    .company-list__title  {
        font-size: 2.67vw;
    }
}
.company-list__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.company-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
	justify-content: center;
    width: calc(430 / 950 * 100%);
    transition: opacity .3s linear;
}
.company-list__item:nth-child(-n+2) {
    margin: 0 0 calc(30 / 1000 * 100%);
}
.company-list__item:hover {
    opacity: 0.7;
}
.company-list__item img {
    width: 100%;
}