
            .contact {
                display: flex;
                flex-direction: row;
                width: 1200px;
                margin: 0 auto;
                padding-top: 99px;
                padding-bottom: 111px;
            }

            .contact .word {
                flex: 1;
            }

            .contact .word p {
                margin-right: 76px;
                font-size: 24px;
            }

            .contact .title {
                font-size: 48px;
                font-weight: bold;
                margin-bottom: 48px;
                text-align: left;
                padding: 0px;
            }

            .contact .contact-form {
                width: 745px;
                flex: none;
            }

            .contact .input_box input {
                box-sizing: border-box;
                width: 745px;
                height: 60px;
                line-height: 60px;
                background-color: white;
                font-size: 20px;
                outline: none;
                border: none;
                margin-bottom: 15px;
                padding: 0 20px;
            }

            .contact .input_box textarea {
                box-sizing: border-box;
                width: 745px;
                height: 139px;
                line-height: 1.3;
                background-color: white;
                font-size: 20px;
                outline: none;
                border: none;
                margin-bottom: 15px;
                padding: 0 20px;
                padding-top: 10px;
            }

            .contact .input_box.filled textarea.input_box_textarea {
                height: 139px;
                line-height: 1.3;
                padding-top: 10px;
            }

            .contact .input_box.filled input {
                height: 60px;
                line-height: 60px;
                padding-top: 0px;
                padding-bottom: 0px;
            }

            .contact .input_box label {
                display: none;
            }

            .contact-field-wrap {
                display: flex;
                flex-direction: row;
            }

            .contact .contact-field-wrap .input_box input {
                flex: 1;
                width: 365px;
            }

            .contact .contact-field-wrap .rows:first-child {
                margin-right: 15px;
            }

            .contact .input_box .input_box_txt {
                border-radius: 0px;
            }

            .contact .contact-btn {
                width: 164px;
                height: 60px;
                line-height: 60px;
                background-color: #000;
                border: 0px;
                outline: none;
                color: white;
                font-size: 20px;
            }

            .contact .contact-btn-wrap {
                text-align: right;
                padding-top: 19px;
            }

            @media screen and (max-width: 1200px) {
                .contact {
                    flex-direction: column;
                    width: 100%;
                    padding-top: 50px;
                }

                .contact-field-wrap {
                    flex-direction: column;
                }

                .contact .contact-field-wrap .rows:first-child {
                    margin-right: 0px;
                }

                .contact .contact-form {
                    width: 100%;
                    flex: none;
                    box-sizing: border-box;
                }

                .contact .contact-field-wrap .input_box input {
                    width: 90%;
                    margin: 1vw 5%;
                    box-sizing: border-box;
                }

                .contact .input_box input {
                    width: 90%;

                    box-sizing: border-box;
                    margin: 1vw 5%;
                }

                .contact .input_box textarea {
                    width: 90%;
                    box-sizing: border-box;
                    margin: 1vw 5%;
                }

                .contact .contact-btn-wrap {
                    text-align: center;
                }

                .contact .title {
                    text-align: center;
                    font-size: 24px;
                    margin-bottom: 24px;
                }

                .contact .word {
                    box-sizing: border-box;
                    margin: 2vw 5%;
                }

                .contact .word p {
                    margin: 0;
                    font-size: 18px;
                    width: 100%;
                    word-break: break-all;
                }
            }
        