@charset "utf-8";

/*===================================================

 ページ共通 common

===================================================*/
article h1 {
    margin-bottom: 30px;
    display: flex;
    display: -webkit-flex;
    font-size: 3.0rem;
    font-weight: normal;
    line-height: 4.0rem;
}
article h1:after {
    height: 1px;
    margin: 20px 0 0 15px;
    display: block;
    background: var(--light-black);
    content: '';
    flex-grow: 1;
    -webkit-flex-grow: 1;
}
/*---------------------------------------------------
 responsive
---------------------------------------------------*/
@media screen and (max-width: 960px) {
    article h1 {
        font-size: 2.5rem;
    }
}
@media screen and (max-width: 700px) {
    article h1 {
        font-size: 1.8rem;
    }
}

/*===================================================

 会社概要 /company

===================================================*/
#company article table {
    width: 100%;
    margin: 0 auto 50px;
    border-top: 1px solid var(--gray);
    border-left: 1px solid var(--gray);
}
#company article table tr th {
    width: 20%;
    padding: 10px;
    background: var(--light-gray);
    border-right: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    box-sizing: border-box;
    font-family: var(--font-bold);
    font-weight: normal;
    text-align: center;
}
#company article table tr td {
    padding: 10px;
    border-right: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    box-sizing: border-box;
}
#company article table tr:first-child td a {
    margin-left: 15px;
}
#company article table tr:nth-child(2) td span span {
    margin-right: 0.5em;
}
#company article table tr:nth-child(2) td span + span {
    display: block;
    color: var(--red);
    font-size: 1.3rem;
    line-height: 2.0rem;
}
#company article table tr:last-child td iframe {
    border: none;
}
/*---------------------------------------------------
 responsive
---------------------------------------------------*/
@media screen and (max-width: 960px) {
    #company article table tr th,
    #company article table tr td {
        width: 100%;
        display: block;
    }
}
@media screen and (max-width: 700px) {
    #company article table tr th,
    #company article table tr td {
        display: table-cell;
    }
    #company article table tr th {
        width: 30%;
    }
    #company article table tr:first-child td a {
        margin-left: 0;
        display: block;
    }
    #company article table tr:nth-child(2) td span span {
        display: block;
    }
    #company article table tr:nth-child(2) td span + span {
        padding-left: 1.0em;
        font-size: 1.1rem;
        line-height: 1.6rem;
        text-indent: -1.0em;
    }
    #company article table tr:nth-child(3) th span {
        display: none;
    }
    #company article table tr:last-child td iframe {
        height: 300px;
    }
}

/*===================================================

 沿革 /company/history

===================================================*/
#company-history article dl {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    row-gap: 32px;
}
#company-history article dl dt {
    font-family: var(--font-bold);
}
#company-history article dl dd a span {
    font-size: 1.3rem;
}
#company-history article dl dd a span span {
    margin: 0 10px 0 5px;
}
#company-history article dl dd a span span:before {
    margin-right: 5px;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    content: '|';
    white-space: pre;
}
/*---------------------------------------------------
 responsive
---------------------------------------------------*/
@media screen and (max-width: 700px) {
    #company-history article dl {
        grid-template-columns: 100px minmax(0, 1fr);
        row-gap: 16px;
    }
}
