* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --background: #ffffff;
    --green: #3B844E;
    --blue: #0084E3;

    --text-body: #565656;

    --background: #f0f2f5;
}

@media (max-width: 1080px){
    html {
        font-size: 93.75%;
    }
}

@media (max-width: 720px){
    html {
        font-size: 87.5%;
    }
}

body{
    background: #fff;
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

body, input, textarea, button {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.wrapper{
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    height: 100vh;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

header > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header > img{
    max-width: 230px;
}

header > div p{
    margin-right: 0.625rem;
    font-size: 1.125rem;
}

header > div a{
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--blue);
}

header > div a img{
    margin-right: 0.625rem;
}

.wrapper{
    position: relative;
    z-index: 1;
    padding: 0px 30px;
}

.main-information{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.main-information h1, h2{
    color: var(--green);
    font-size: 2rem;
    line-height: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.main-information h1{
    font-size: 3rem;
    line-height: 52px;
}

.main-information p.verse{
    font-size: 1rem;
    margin: 24px 0;
}

.main-information p.address{
    font-size: 1.25rem;
    margin-top: 24px;
    line-height: 26px;
}

.pc{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
}

.vector::after{
    content: '';
    border-bottom: 85vh solid rgba(34, 183, 121, 0.35);
    border-left: 70vw solid transparent;
    width: 0;
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
}

footer{
    position: absolute;
    bottom: 18px;
    font-size: 0.9340rem;
}

@media (max-width: 1360px){
    .pc{
        padding-right: 55px;
    }
}

@media (max-width: 1110px){
    .pc{
        padding-right: 70px;
    }

    .pc img{
        width: 380px;
    }
}

@media (max-width: 1000px){
    .pc{
        display:none;
    }
    
    .pc img{
        width: 300px;
    }

    .vector::after{
        border-bottom: 400px solid rgba(34, 183, 121, 0.35);
        border-left: 600px solid transparent;
    }
}

@media (max-width: 800px){
    .pc img{
        width: 250px;
    }

    .vector::after{
        border-bottom: 300px solid rgba(34, 183, 121, 0.35);
        border-left: 500px solid transparent;
    }
}

@media (max-width: 800px){
    .pc img{
        width: 200px;
    }

    .vector::after{
        border-bottom: 300px solid rgba(34, 183, 121, 0.35);
        border-left: 500px solid transparent;
    }
}

@media (max-width: 740px){
    
    .wrapper, body, html{
        height: 100%;    
    }
    
    .pc {
        display: none;
    }

    .main-information {
        position: relative;
        top: 0;
        transform: translateY(0%);
        padding-top: 40px;
    }

    .main-information h1 br{
        display: none;
    }

    .main-information h1{
        font-size: 2.5rem;
    }

    .main-information h2{
        font-size: 1.5rem;
        line-height: 30px;
    }

    .vector::after{
        border-bottom: 200px solid rgba(34, 183, 121, 0.35);
        border-left: 300px solid transparent;
    }
}


@media (max-width: 480px){
    
    .main-information h1{
        font-size: 2rem;
    }

    .main-information h2{
        font-size: 1.25rem;
        line-height: 24px;
    }

    .main-information p.address{
        font-size: 1rem;
        line-height: 20px;
    }

    .main-information p.verse{
        font-size: 0.85rem;
    }
}


@media (max-width: 410px){
    .wrapper{
        padding: 0 20px;
    }

    header > img{
        max-width: 170px;
    }

    .main-information h1{
        font-size: 2rem;
    }

    .main-information h2{
        font-size: 1rem;
        line-height: 20px;
    }

    .main-information p.address{
        font-size: 1rem;
        line-height: 20px;
    }

    .main-information p.verse{
        font-size: 0.85rem;
    }
}