@charset "UTF-8";

/*================================================================
# 会社概要
================================================================ */
.info-list .wrap::before {
    background-color: var(--green);
}

.info-list .dl-wrap {
    margin-top: 40px;
}

.info-list .dl-wrap dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.info-list .dl-wrap dl:first-child dt {
    border-top: 3px solid var(--black);
    border-left: 3px solid var(--black);
    border-radius: 24px 0 0 0;
}

.info-list .dl-wrap dl:last-child dt {
    border-bottom: 3px solid var(--black);
    border-radius: 0 0 0 24px;
}

.info-list .dl-wrap dl dt {
    width: 30%;
    padding: 8px;
    border-top: 2px solid var(--black);
    border-left: 3px solid var(--black);
    background-color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.info-list .dl-wrap dl dd {
    width: 70%;
    padding: 8px 16px;
    border-top: 2px solid var(--black);
    border-right: 3px solid var(--black);
    border-left: 2px solid var(--black);
    background-color: #faf8ed;
    font-size: 14px;
    letter-spacing: 0;
}

.info-list .dl-wrap dl:first-child dd {
    border-top: 3px solid var(--black);
    border-radius: 0 24px 0 0;
}

.info-list .dl-wrap dl:last-child dd {
    border-bottom: 3px solid var(--black);
    border-radius: 0 0 24px 0;
}


/*================================================================
# 250716追記
================================================================ */
.section-wrap .history {
    margin: 64px 0 0;
}

.section-wrap .dl-wrap {
    margin: 40px 0 0;
}

.section-wrap .section-title-en {
    font-family: var(--text-en);
    font-weight: 800;
    line-height: 1;
    color: var(--green);
    text-align: center;
}

.section-wrap .section-title {
    margin-top: 2px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.section-wrap .section-title span {
    position: relative;
}

.section-wrap .section-title span:before {
    width: 100%;
    height: 3px;
    margin: auto;
    background-color: var(--green);
    position: absolute;
    content: "";
    right: 0;
    bottom: -16px;
    left: 0;
}

.info-list .sns-list {
    list-style: none;
    display: flex;
}

.info-list .sns-list li {
    display: flex;
    align-items: center;
}

.info-list .sns-list li+li {
    margin: 0 0 0 8px;
}

.info-list .sns-list li a {
    display: block;
}

.info-list .sns-list img {
    width: 40px;
    height: 32px;
    margin: 0 8px 0 0;
    object-fit: contain;
    object-position: center center;
}

.info-list .sns-list li img:hover {
    opacity: 0.5;
}