@charset "UTF-8";

.-sp {
    display: none;
}

.sp-br {
    display: none;
}

@media screen and (max-width: 575px) {
    .-pc {
        display: none;
    }

    .-sp {
        display: block;
    }

    .sp-br {
        display: block;
    }
}

.tb-br {
    display: none;
}

@media screen and (max-width: 767px) {
    .tb-br {
        display: block;
    }
}

.bg-white {
    background-color: white;
    border-radius: 10px;
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    .bg-white {
        padding: 40px 0;
    }
}

.company-title {
    font-family: urw-din, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    letter-spacing: 0.02em;
    color: var(--bluegrey);
    text-align: center;
    line-height: 2.3rem;
    margin-bottom: 40px;
}

.company-title.-left {
    font-size: 64px;
    text-align: left;
    line-height: 4.3rem;
}

.company-title_ja {
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
        sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.03em;
}

.company-title_ja.-left {
    align-items: center;
    /* 横線を上下中央 */
    display: flex;
    /* 文字と横線を横並び */
    margin-top: -8px;
}

.company-title_ja.-left::before {
    background-color: #00437C;
    /* 横線の色 */
    content: "";
    height: 3px;
    /* 横線の高さ */
    width: 30px;
    /* 横線の長さ */
    margin-right: 15px;
    /* 文字との余白 */
    margin-top: 2px;
}

@media screen and (max-width: 575px) {
    .company-title {
        font-size: 28px;
        line-height: 2rem;
        margin-bottom: 32px;
    }

    .company-title_ja {
        font-size: 18px;
        letter-spacing: 0;
    }

    .company-title.-left {
        font-size: 32px;
        line-height: 2.3rem;
    }

    .company-title_ja.-left {
        margin-top: 4px
    }
}


/*　メッセージ・理念　*/
.philosophy {
    margin-top: 100px;
    padding-bottom: 360px;
    margin-bottom: 80px;
}

.philosophy-img {
    position: absolute;
    margin-right: 40px;
}

.philosophy-lead {
    background: linear-gradient(10deg, #7896B2 0%, #39668F 50%);
    padding: 60px;
    margin-left: 16%;
    position: relative;
    top: 360px;
    max-width: 1200px;
}

.philosophy-lead_text {
    color: white;
    line-height: 1.6;
}

.philosophy-lead_text p {
    margin-top: 16px;
}

.philosophy-lead_text p:first-child {
    margin-top: 0;
}

.philosophy-lead-wrap {
    margin: 0 auto;
    max-width: 1440px;
}

@media screen and (max-width: 991px) {
    .philosophy-lead {
        top: 290px;
    }

    .philosophy {
        padding-bottom: 300px;
    }
}

@media screen and (max-width: 767px) {
    .philosophy {
        padding-bottom: 0;
    }

    .philosophy-img {
        position: unset;
        margin-right: 0;
    }

    .philosophy-lead {
        position: unset;
        margin-left: 0;
        padding: 40px 0;
    }

    .philosophy-lead_text {
        padding: 0;
        margin: 0 auto;
        width: 84%;
        font-size: 14px;
    }

    .philosophy-lead-wrap {
        padding: 0;
    }
}

/*　会社概要　*/
.company {
    background-color: var(--bg);
    padding: 120px 0 160px;
}

.inner-company {
    max-width: 760px;
    width: 92%;
    margin: 0 auto;
}

.company-item_container {
    display: flex;
}

.company-item_title {
    width: 200px;
    border-bottom: solid 2px #5F86D3;
    padding: 20px 0;
    align-content: center;
}

.company-item_text {
    border-bottom: solid 1px #BEC0C1;
    padding: 20px 0 20px 24px;
    width: 100%;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.company-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.company-btn_link {
    padding: 18px 0;
    display: block;
    width: 360px;
    text-align: center;
    border: solid 1px #00437c;
    border-radius: 200px;
    color: var(--navy);
    font-weight: 700;
    transition: 0.5s ease;
    text-transform: uppercase;
    overflow: hidden;
}

.company-btn_item {
    margin-left: 38px;
}

.company-btn_item:first-child {
    margin-left: 0;
}

.company-btn_text {
    position: relative;
}

.company-btn_link:hover {
    color: #fff;
    transform: scale(1.1, 1.1);
}

.company-btn_link::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
    overflow: hidden;
}

.company-btn_link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media screen and (max-width: 991px) {
    .company-btn_link {
        width: 200px;
    }
}

@media screen and (max-width: 575px) {
    .company {
        padding: 55px 0;
    }

    .company-btn {
        flex-direction: column;
        justify-content: unset;
        align-items: center;
        margin-top: 8px;
    }

    .company-btn_item {
        margin: 0;
        margin-top: 24px;
    }

    .company-btn_link {
        width: 250px;
    }

    .company-item_text {
        padding-left: 8px;
    }
}



/*　拠点一覧　*/
.location {
    padding: 120px 0;
}

.location-map {
    text-align: center;
    margin-top: 64px;
    position: relative;
}

.location-map_item {
    position: absolute;
}

.location-map_item a:hover {
    opacity: 0.6;
}

.location-map_item.-sapporopc {
    top: -2%;
    left: 20%;
}

.location-map_item.-sapporo2pc {
    top: 12%;
    left: 12%;
}

.location-map_item.-kusiropc {
    top: 16%;
    left: 44%;
}

.location-map_item.-sendaipc {
    top: 42%;
    left: 37%;
}

.location-map_item.-tokyopc {
    top: 64%;
    left: 32%;
}

.location-map_item.-osakapc {
    top: 53%;
    left: 1%;
}

.location-map_item.-hukuokapc {
    top: 79%;
    left: 11%;
}

.location-map_item.-vietnampc {
    top: 61%;
    left: 75%;
}

.-sp-location {
    display: none;
}

.location-map_link {
    margin: 0 auto;
}

@media screen and (max-width: 1440px) {
    .location-map {
        width: 900px;
        margin: 0 auto;
        margin-top: 64px;
    }

    .location-map_item.-sapporopc {
        top: -4%;
        left: 18%;
    }

    .location-map_item.-sapporo2pc {
        top: 12%;
        left: 9%;
    }

    .location-map_item.-kusiropc {
        top: 16%;
        left: 44%;
    }

    .location-map_item.-sendaipc {
        top: 42%;
        left: 37%;
    }

    .location-map_item.-tokyopc {
        top: 64%;
        left: 32%;
    }

    .location-map_item.-osakapc {
        top: 49%;
        left: -2%;
    }

    .location-map_item.-hukuokapc {
        top: 79%;
        left: 11%;
    }

    .location-map_item.-vietnampc {
        top: 56%;
        left: 74%;
    }
}

@media screen and (max-width: 991px) {
    .location-map {
        margin-top: 120px;
        position: relative;
        width: 440px;
    }

    .-pc-location {
        display: none;
    }

    .-sp-location {
        display: block;
    }

    .location-map_link {
        margin: 0;
        padding: 0;
        text-align: center;
        margin: 0 auto;
    }

    .location-map_item.-sapporosp {
        width: 193px;
        top: -1%;
        left: 30%;
    }

    .location-map_item.-sapporo2sp {
        width: 238px;
        top: 7%;
        left: 15%;
    }

    .location-map_item.-kusirosp {
        width: 130px;
        top: -10%;
        left: 60%;
    }

    .location-map_item.-sendaisp {
        width: 217.5px;
        top: 16%;
        left: 21%;
    }

    .location-map_item.-tokyosp {
        width: 150px;
        top: 34%;
        left: 58%;
    }

    .location-map_item.-osakasp {
        width: 191px;
        top: 38%;
        left: 30%;
    }

    .location-map_item.-hukuokasp {
        width: 89px;
        top: 27%;
        left: 8%;
    }

    .location-map_item.-vietnamsp {
        width: 193px;
        top: 78%;
        left: 39%;
    }
}

@media screen and (max-width: 575px) {
    .location {
        padding: 55px 0;
    }

    .location-map {
        margin-top: 100px;
        width: 250px;
    }

    .location-map_item.-sapporosp {
        width: 144.7px;
        top: -3%;
        left: 21%;
    }

    .location-map_item.-sapporo2sp {
        width: 178.5px;
        top: 6%;
        left: 2%;
    }

    .location-map_item.-kusirosp {
        width: 97.5px;
        top: -12%;
        left: 61%;
    }

    .location-map_item.-sendaisp {
        width: 163px;
        top: 14%;
        left: 10%;
    }

    .location-map_item.-tokyosp {
        width: 112.5px;
        top: 34%;
        left: 59%;
    }

    .location-map_item.-osakasp {
        width: 143px;
        top: 38%;
        left: 24%;
    }

    .location-map_item.-hukuokasp {
        width: 66.7px;
        top: 26%;
        left: -1%;
    }

    .location-map_item.-vietnamsp {
        width: 144.7px;
        top: 75%;
        left: 37%;
    }
}


/*　関連会社　*/
.related {
    background-color: var(--bg);
    padding: 120px 0;
}

.related-item {
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.related-item:first-child {
    padding-top: 0;
}

.related-item-wrap a {
    display: block;
    max-width: 300px;
}

.related-item_link img {
    cursor: pointer;
}

.related-item_text {
    padding-left: 40px;
    width: 560px;
    line-height: 1.6;
    text-align: justify;
}

.related-item_link img:hover {
    opacity: 0.6;
}

@media screen and (max-width: 991px) {
    .related-item_text {
        padding-left: 24px;
        width: 560px;
    }
}

@media screen and (max-width: 575px) {
    .related {
        padding: 55px 0;
    }

    .related-item {
        flex-direction: column;
        align-items: unset;
        padding-top: 48px;
    }

    .related-item_text {
        padding: 0;
        margin-top: 24px;
        width: auto;
    }

    .related-item:first-child {
        padding-top: 24px;
    }
}