@charset "utf-8";

/* ==============================
info
=============================== */
.topicInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 108px;
    font-size: 1.6rem;
    color: var(--main-white);
    background-image: url(../images/sub-page-main_info.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 24px;
}

.topicInfo::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-white);
    margin-top: 8px;
}

.company-info-container {
    padding: 16px var(--contentPadding);
    width: 100%;
    /* border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.company-info-table {
    width: 100%;
    border-collapse: collapse;
}

.company-info-table td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
}

/* .company-info-table tr:last-child td {
    border-bottom: none;
  } */

.company-info-table .label {
    width: 30%;
    font-weight: 300;
    font-size: 1rem;
    color: #737373;
    text-align: left;
    border-bottom: 1px solid var(--main-blue);
}

.company-info-table .value {
    text-align: left;
    font-size: 1.3rem;
}

.infoPic {
    display: none;
}

.companyPic {
    margin-top: 32px;
}

.greeting {
    padding: 16px var(--contentPadding);
    margin-bottom: 48px;
}

.topic--company {
    position: relative;
    z-index: 0;
}

.topic--company::after {
    content: '';
    display: flex;
    width: 250px;
    height: 1px;
    background-color: var(--main-black);
    margin: 16px auto 0;
    z-index: -1;
}

.topic--company::before {
    content: 'GREETING';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -140%);
    font-size: 7.2rem;
    color: var(--main-lightBlue);
    z-index: -2;
    font-weight: 700;
}

.txt {
    font-size: 1.6rem;
    margin-top: 32px;
}

.parallax {
    margin-top: 32px;
    height: 160px;
    background-image: url(../images/infoPic.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-White);
}

/* info pc */
@media screen and (min-width: 769px) {
    .topicInfo {
        height: 300px;
        font-size: 3rem;
        padding: 0 64px;
    }
    
    .subMain {
        width: 100%;
    }

    .infoPic {
        display: inline;
        padding: 32px 32px 48px 72px;
        min-width: 450px;
        max-width: 600px;
    }

    .table {
        margin-top: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .company-info-table .label {
        width: 20%;
        font-weight: 500;
        font-size: 1.4rem;
        color: #737373;
        text-align: left;
        border-bottom: 1px solid var(--main-blue);
    }

    .company-info-table .value {
        text-align: left;
        font-size: 2rem;
    }

    .brSp {
        display: none;
    }

    .brPc {
        margin-left: 16px;
    }

    .companyPic {
        display: none;
    }

    .parallax {
        margin-top: 32px;
        height: 400px;
        background-image: url(../images/IMG_8114.jpg);
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--main-White);
    }

    .txt {
        text-align: center;
        font-size: 2rem;
    }

    .topic--company {
        margin-bottom: 72px;
    }

    .company-info-container {
        padding: 16px 40px 16px 32px;
        width: 45%;
    }
}