@charset "utf-8";

.companyTb {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.companyTr {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.companyTh {
    position: relative;
    width: 100%;
    padding: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    text-align: start;
}

.companyTh::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #ccc, #ccc 4px, transparent 4px, transparent 8px);
    background-size: 8px 1px;
    background-position: right top;
    background-repeat: repeat-x;
}

.companyTd {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-align: start;
}

.companyTbLink {
    display: inline-block;
    color: initial;
}

.outlineParallax {
    min-height: 240px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/outline_bg.jpg);
}

.companyMapBox {
    position: relative;
    width: 100%;
    height: 360px;
}

.companyMapBox iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

@media screen and (min-width:768px) {

    .companyTr {
        flex-direction: row;
        border-bottom: 1px solid #ccc;
    }

    .companyTh {
        max-width: 240px;
        width: 30%;
        padding: 15px;
    }

    .companyTh::after {
        display: none;
    }

    .companyTd {
        max-width: 680px;
        width: 80%;
        padding: 15px 30px;
        border-bottom: none;
    }

    .outlineParallax {
        background-attachment: fixed;
    }

}

@media screen and (min-width:1024px) {

    .outlineParallax {
        min-height: 360px;
    }

}