html {
    scroll-behavior: smooth;
}

body {
    letter-spacing: 0.1rem;
    margin: 0px;
    padding: 0px;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #F2F2F2;
}

img{
    width: 100%;
}

.sp{
    display: none;
}

.copyright{
    position: fixed;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    color: #999;
}
.copyright div{
    transform: rotateZ( 90deg );
}
.copyright-sp{
    display: none;
}

/* topビュー */

.top{
    position: relative;
}
.top-logo{
    position: absolute;
    left: 5%;
    top: 20vh;
    width: 200px
}
.top-img{
    box-sizing: border-box;
    margin-left: 10%;
    width: calc(90% - 50px);
    margin-right: 50px;
    margin-top: 50px;
    height: calc(100vh - 50px);
    background-image: url(../img/top-img.jpg);
    background-position: center;
    background-size: cover;
}
.top-img-sp{
    display: none;
}

/* 共通部 */
.section-title{
    font-family: "urw-din-condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 36px;
    letter-spacing: 0.01rem;
    margin-top: 0;
}
h2.section-title{
    color: #fff;
    margin-bottom: 10px;
}
.about,.profile{
    margin-top: 80px;
    display: flex;
    margin-left: 10%;
    gap: 10%;
    max-width: 1500px;
}
.about-1,.profile-1{
    flex-basis: 55%;
}
.about-2,.profile-2{
    flex: 1;
}

/* about nudge */
.about-2{
    background-image: url(../img/about-img.jpg);
    background-position: center;
    background-size: cover;
}
/* company profile */
.profile-1{
    padding-bottom: 30px;
}
.profile-row{
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #5e5e5e;
}
.profile-tbl-l{
    flex-basis: 30%;
}
.profile-tbl-r{
    flex: 1;
}

/* footer */
footer{
    margin-top: 100px;
    background-color: #4D4D4D;
}
.footer{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1500px;
    padding: 50px 5%;
}
.footer-contact-btn{
    background-color: #F2F2F2;
    border: 1px solid #000;
    padding: 15px 40px;
    cursor: pointer;
    color: #000;
}
.footer-2{
    display: flex;
    align-items: center;
    gap: 5%;
}
.footer-img{
    width: 100px;
}
.footer-address{
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

@media(max-width: 670px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    .copyright{
        display: none;
    }

    /* TOPビュー */
    .top{
        height: 100vh;
    }
    .top-logo{
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
    }
    .top-img{
        display: none;
    }
    .top-img-sp{
        display: block;
        background-image: url(../img/top-img.jpg);
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 250px;
    }

    /* 共通 */
    .section-title{
        text-align: center;
    }
    .about,.profile{
        flex-direction: column;
        margin-left: 0;
    }
    .about-1,.profile-1{
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 25px;
    }
    .about-2,.profile-2{
        height: 250px;
        flex: auto;
    }

    /* フッター */
    footer{
        margin-top: 0;
    }
    .footer{
        flex-direction: column;
        align-items: center;
        padding-bottom: 25px;
    }
    .footer-1{
        text-align: center;
        width: 100%;
    }
    .footer-2{
        display: none;
    }
    .copyright-sp{
        color: #999;
        font-size: 10px;
        display: block;
        margin-top: 50px;
    }
}