body {
    background-color: #f0f2f5;
    font-size: 1vw;
}

.Page1 {
    width: 100%;
    height: 40vh;
    position: relative;
}

.Page1Content {
    width: 40%;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Page1Content>h1 {
    margin-bottom: 3%;
    font-size: 2vw;
}

.Page1Content>p {
    font-size: 1.3vw;
    color: rgba(255, 255, 255, 0.8);
}

.page2 {
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.page2>div:nth-child(1) {
    width: 70%;
    height: 100%;
    border-bottom: 1px solid #979797;
    position: relative;
}

.page2>div:nth-child(1)::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border: 1px solid #979797;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 100%;
    transform: translate(-100%, -50%);
}

.page2>div:nth-child(1)::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border: 1px solid #979797;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translate(100%, -50%);
}

.AddressBox {
    display: flex;
    justify-content: space-evenly;
    transform: translateY(-10%);
}

.AddressBox>a {
    width: calc(100%/2.1);
    height: 100%;
}

.AddressBox>a>img {
    width: 100%;
    height: 50%;
    margin-bottom: 5%;
}

.AddressBox>a>div {
    margin-left: 5%;
}

.AddressBox>a>div>h2 {
    font-size: 1.5vw;
    margin-bottom: 2%;
    white-space: nowrap;
}

.AddressBox>a>div>p {
    color: rgba(0, 0, 0, 0.75);
}

.icon {
    margin-right: 2%;
}

.page3 {
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2% 0 3% 0;
}

.page3>div {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page3>div>p:nth-child(1) {
    font-size: 1.7vw;
    color: #0398DA;
    margin-bottom: 1%;
    font-weight: bold;
}

.page3>div>div:nth-child(2) {
    width: 4%;
    height: 4px;
    background-color: red;
    margin-bottom: 1%;
}

.page3>div>p:nth-child(3) {
    letter-spacing: 2px;
    color: #333333;
    margin-bottom: 1%;
}

.contactBox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.inputBox {
    width: calc(100%/2.2);
    margin-bottom: 3%;
}

.inputBox>p {
    margin-bottom: 1%;
}

.contactInput {
    width: 100%;
    height: 3vw;
    border: 1px solid #D5D5D5;
    background-color: #F5F5F5;
    padding: 1% 3%;
    outline: none;
    box-sizing: border-box;
}

.contactInput:focus {
    border: 1px solid #818181;
}

.AreaBox {
    width: 100%;
}

.contactArea {
    width: 100%;
    border: 1px solid #D5D5D5;
    background-color: #F5F5F5;
    padding: 1%;
    outline: none;
    box-sizing: border-box;
}

.contactArea:focus {
    border: 1px solid #818181;
}

.submit {
    background-color: #333333;
    color: #fff;
    border: 0;
    width: 30%;
    height: 3vw;
    font-size: 1vw;
    transition: all .3s ease;
}

.submit:hover {
    border: 1px solid #333;
    background-color: transparent;
    color: #333;
    cursor: pointer;
}

.required>p::after {
    content: '*';
    color: red;
}

.verify {
    width: 100%;
    position: relative;
}

.verify>.contactArea {
    width: calc(100%/2.2);
    height: 3vw;
}

.p_code_img {
    width: 30%;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width:768px) {
    body {
        font-size: 2vw;
    }

    .inputBox {
        width: 100%;
    }

    .contactInput {
        height: 5vw;
    }

    .submit {
        height: 5vw;
        font-size: 2vw;
    }

    .page3>div>p:nth-child(1) {
        font-size: 4vw;
    }

    .Page1Content>h1 {
        font-size: 6vw;
    }

    .Page1Content>p {
        font-size: 3vw;
    }

    .page2 {
        padding-top: 5%;
        box-sizing: border-box;
    }

    .AddressBox {
        transform: translateY(0);
        flex-direction: column;
    }

    .AddressBox>a {
        width: 100%;
        padding-bottom: 5%;
    }

    .AddressBox>a>div>h2 {
        font-size: 3vw;
        white-space: normal;
    }

    .verify>.contactArea {
        height: 6vw;
    }
}


@media (max-width:480px) {
    .Page1Content>h1 {
        font-size: 8vw;
    }

    body {
        font-size: 4vw;
    }

    .inputBox {
        width: 100%;
    }

    .contactInput {
        height: 8vw;
    }

    .submit {
        height: 8vw;
        font-size: 3vw;
    }

    .page3>div>p:nth-child(1) {
        font-size: 7vw;
    }

    .page3>div>div:nth-child(2) {
        width: 15%;
    }

    .page3>div>p:nth-child(3) {
        margin-bottom: 5%;
    }

    .AddressBox>a>div>h2 {
        font-size: 5vw;
    }

    .verify>.contactArea {
        height: 8vw;
    }

    .page3 {
        padding: 10% 0 3% 0;
    }

    .p_code_img{
        width: 40%;
    }
}