@charset "UTF-8";

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

.info-list .dl-wrap dl {
    width: 1054px;
    margin: auto;
    display: flex;
}

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

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

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

.info-list .dl-wrap dl dd {
    width: calc(100% - 200px);
    padding: 16px 32px;
    border-top: 2px solid var(--black);
    border-right: 3px solid var(--black);
    background-color: #faf8ed;
    font-weight: 700;
}

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

.info-list .dl-wrap dl:last-child dd {
    border-right: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    border-radius: 0 0 16px 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: 32px;
    font-weight: 700;
    text-align: center;
}

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

.section-wrap .section-title span:before {
    width: 100%;
    height: 3px;
    background-color: var(--green);
    position: absolute;
    content: '';
    bottom: -8px;
    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;
}