@charset "UTF-8";

/**********************************************************
 *
 * index.html 追加パーツ
 *
 **********************************************************/

 .other-approach-wrap + .other-approach-wrap {
    margin-top: 29px;
}

.other-approach-wrap .other-approach-list {
    display: flex;
    flex-wrap: wrap;
}

.other-approach-wrap .other-approach-list > li {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
}

.other-approach-wrap .other-approach-list > li:nth-of-type(2n) {
    margin-right: 0;
}

.other-approach-wrap .other-approach-list > li:nth-of-type(n+3) {
    margin-top: 16px;
}

.other-approach-wrap .other-approach-list a {
    display: block;
    position: relative;
    text-decoration: none;
}

.other-approach-wrap .other-approach-list a::before {
    background: url(/corporate/images/common/ico_arrow_circle.svg) no-repeat center center / contain;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease;
}

.other-approach-wrap .other-approach-list a[target="_blank"]::before {
    background: url(/corporate/images/common/ico_external_red.svg) no-repeat center center / contain;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.other-approach-wrap .other-approach-list a .img-wrap {
    border: 1px solid #ccc;
    width: 100%;
    overflow: hidden;
}

.other-approach-wrap .other-approach-list a .img-wrap img {
    width: 100%;
}

.other-approach-wrap .other-approach-list a .link-ttl {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 10px;
    padding-right: 24px;
}

