@charset "utf-8";

/* CSS reset */
* {
    -webkit-font-smoothing: antialiased;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
a,
blockquote,
th,
td,
footer {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
images {
    border: 0;
}

input {
    margin: 0;
    padding: 0;
    border: none;
}

ol,
ul,
li {
    list-style: none;
}

img {
    vertical-align: bottom;
}

a,
address {
    text-decoration: none;
    font-style: normal;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    background-color: #fef9f4;
    font-family: Arial;
    color: #222;
    letter-spacing: -0.04em;
    /* word-break: keep-all; */
}

header {
    position: fixed;
    width: 100%;
    height: 90px;
    line-height: 90px;
    top: 0;
    left: 0;
    z-index: 4;
    transition: all .6s;
}

header #header_wrap {
    width: 98%;
    height: 90px;
    margin: 0 auto;
    display: flex;
}

header #header_wrap img {
    vertical-align: sub;
}

header #logo {
    font-size: 0;
    width: 148px;
    height: 40px;
    margin-top: 25px;
    background-image: url(../images/logo.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

header #logo a {
    display: block;
    width: 100%;
    height: 100%;
}

header #gnb {
    flex: auto;
    margin-right: 60px;
}

header #gnb ul {
    display: flex;
    justify-content: flex-end;
}

header #gnb ul li {
    padding: 0 15px;
}

header #gnb ul li a {
    color: #fff;
    font-size: 18px;
}

header .lang {
    margin-left: auto;
    margin-right: 40px;
}

header .lang div {
    position: relative;
    width: 66px;
    color: #fff;
}

header .lang div p {
    width: 20px;
    height: 20px;
    background-image: url(../images/lang.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: translateY(4px);
}

header .lang div:before {
    content: "";
    width: 8px;
    height: 5px;
    display: block;
    background-image: url(../images/lang_arrow.png);
    background-size: 100%;
    background-position: center;
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
}

header .lang ul {
    transform: translate(10px, -20px);
    visibility: hidden;
}

header .lang:hover ul {
    visibility: visible;
}

header .lang ul li {
    line-height: 32px;
    text-align: center;
}

header .lang ul li a {
    display: inline-block;
    color: #fff;
}

header .store {
    margin-left: auto;
}

header .store img {
    margin-right: 10px;
}

header .store a {
    color: #d22234;
    font-weight: 500;
    font-size: 18px;
}

header.active {
    background-color: #fff;
}

header.active #logo {
    background-image: url(../images/logo_active.png);
}

header.active #gnb ul li a,
header.active .lang div {
    color: #222;
}

header.active .lang ul {
    background-color: #222;
    position: relative;
}

header.active .lang ul:before {
    content: "";
    width: 8px;
    height: 4px;
    display: block;
    background-image: url(../images/lang_arrow_bk.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -4px;
    left: calc(50% - 4px);
    transform: rotate(180deg);
}

header.active .lang ul li a {
    color: #fff;
    padding: 0 20px;
}

header.active .lang div p {
    background-image: url(../images/lang_active.png);
}

header.active .lang div:before {
    background-image: url(../images/lang_arrow_bk.png);
}

footer #footer_wrap {
    max-width: 1200px;
    width: 100%;
    height: 320px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
}

footer #footer_wrap address div {
    margin: 12px 0;
}

footer #footer_wrap address span {
    font-size: 14px;
    line-height: 22px;
    color: #666666;
}

footer #footer_wrap .footer_logo {
    margin-top: auto;
    margin-bottom: 40px;
}

#main #main_visual {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#main .m_txt {
    position: absolute;
    top: calc(50% - 138px);
    left: 20%;
    z-index: 2;
    color: #fff;
}

#main .m_txt .main_tit {
    font-size: 60px;
    margin-top: 20px;
    animation: m_txt .6s forwards .5s;
    opacity: 0;
    padding-bottom: 30px;
}

#main .m_txt .sub_tit {
    font-size: 32px;
    margin-top: 10px;
    animation: m_txt .8s forwards .8s;
    opacity: 0;
}

@keyframes m_txt {
    100% {
        margin-top: 0;
        opacity: 1;
    }
}

#main #mvis_slider {
    width: 100%;
    height: 100vh;
    float: left;
    transition: opacity 0.6s ease, transform 0.3s ease;
}

#main #mvis_slider .swiper-slide {
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#main #mvis_slider .swiper-slide .slide-bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
}

#main #mvis_slider .swiper-slide .mvis01 {
    background-image: url(../main/images/mvis01.jpg);
}

#main #mvis_slider .swiper-slide .mvis02 {
    background-image: url(../main/images/mvis02.jpg);
}

#main #mvis_slider .swiper-slide .mvis03 {
    background-image: url(../main/images/mvis03.jpg);
}

#main #mvis_slider .swiper-slide .mvis04 {
    background-image: url(../main/images/mvis04.jpg);
}

#main #mvis_slider .swiper-slide .mvis05 {
    background-image: url(../main/images/mvis05.jpg);
}

#main .slider_nav {
    width: 140px;
    height: 20px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    position: absolute;
    z-index: 3;
    bottom: 40px;
    right: 80px;
    transition: all 1s;
}

#main .slider_nav.active {
    bottom: 0;
    opacity: 0;
    transition: all 1s;
}

#main .slider_nav .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: unset;
    opacity: 1;
    position: relative;
    text-align: center;
    font-size: 16px;
    outline: none;
    border-bottom: 1px solid;
    border-radius: 0;
    padding-bottom: 8px;
}

#main .slider_nav .swiper-pagination-bullet-active {
    color: #d22234;
    border-width: 2px;
    font-weight: 700;
}

#popup {
    position: absolute;
    top: 320px;
    right: 40px;
    z-index: 2;
}

#svis {
    width: 100%;
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

#svis.about {
    background-image: url(../about/images/svis.jpg);
}

#svis.history {
    background-image: url(../history/images/svis.jpg);
}

#svis.bussiness {
    background-image: url(../bussiness/images/svis.jpg);
}

#svis.product {
    background-image: url(../product/images/svis.jpg)
}

#svis.news {
    background-image: url(../news/images/svis.jpg);
}

#svis.contact {
    background-image: url(../contact/images/svis.jpg);
}

#svis .svis_txt {
    text-align: center;
    color: #fff;
}

#svis .svis_txt div {
    font-size: 24px;
}

#svis .svis_txt h2 {
    font-size: 52px;
    font-weight: normal;
    margin: 30px 0 15px;
}

#svis .svis_txt span {
    font-size: 24px;
    letter-spacing: 5px;
    color: #ae282d;
    display: inline-block;
}

#container .contents {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

#container .contents .tit_wrap {
    font-size: 38px;
    line-height: 60px;
    color: #222222;
    text-align: center;
    margin: 130px 0 160px;
}

#container .contents .section {
    display: flex;
    margin-bottom: 120px;
}

#container .contents .section_tit {
    text-align: center;
}

#container .contents .section_tit p {
    font-size: 52px;
    line-height: 42px;
    margin-bottom: 30px;
}

#container .contents .section_tit p span {
    font-size: 24px;
    font-weight: 500;
    color: #ae282d;
    letter-spacing: 3px;
}

#container .contents .section_tit span {
    font-size: 18px;
    color: #666;
    line-height: 32px;
    display: inline-block;
}

#container .contents .con_tit p {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

#container .contents .con_tit span {
    display: inline-block;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 40px;
}

#container .contents .about {
    display: flex;
    align-items: center;
}

#container .contents .about .vis_wrap {
    margin-right: 60px;
    flex: 1;
}

#container .contents .about .vis_wrap img {
    width: 100%;
}

#container .contents .about .txt_wrap {
    flex: 1;
}

#container .contents .about .txt_wrap p {
    font-size: 30px;
    font-weight: 500;
    color: #d22234;
    margin-bottom: 20px;
    position: relative;
}

#container .contents .about .txt_wrap p:after {
    content: "";
    width: 320px;
    height: 1px;
    display: block;
    background-color: #d22234;
    margin: 20px 0 0 -150px;
}

#container .contents .about .txt_wrap span {
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    display: inline-block;
}

#container .contents .video video {
    width: 100%;
}

#container .contents .vlaue {
    margin-top: 160px;
}

#container .contents .vlaue ul {
    display: flex;
    justify-content: space-between;
}

#container .contents .vlaue ul li {
    flex: 1;
}

#container .contents .vlaue ul li:nth-child(2) {
    margin: 0 45px;
}

#container .contents .vlaue ul li .count {
    width: 370px;
    height: 94px;
    display: table-cell;
    text-align: center;
    font-size: 24px;
    vertical-align: bottom;
}

#container .contents .vlaue ul li .count span {
    font-size: 54px;
    font-weight: 700
}

#container .contents .vlaue ul li p {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 20px 0 15px;
}

#container .contents .vlaue ul li img {
    display: block;
    margin-bottom: 35px;
    width: 100%;
}

#container .contents .vlaue ul li>span {
    font-size: 18px;
    color: #666666;
    line-height: 30px;
}

#container .contents .brand .section_tit {
    margin: 160px 0 60px;
}

#container .contents .brand_tab {
    box-sizing: border-box;
    border: solid #ddd;
    border-width: 1px 1px 0 1px;
}

#container .contents .brand_tab .swiper-wrapper div:nth-child(2) {
    border: solid #ddd;
    border-width: 0 1px 0 1px;
}

#container .contents .brand_tab .swiper-slide {
    width: 50%;
    text-align: center;
    line-height: 80px;
    background-color: #fff;
    font-size: 24px;
    cursor: pointer;
}

#container .contents .brand_tab .swiper-slide-thumb-active {
    background-color: #d22234;
    color: #fff;
    border: solid #d22234;
    border-width: 1px 1px 0 1px;
}

#container .contents .brand_inner {
    width: 100%;
    height: 480px;
}

#container .contents .brand_inner .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#container .contents .brand_inner .kunbo {
    background-image: url(../about/images/our_kunbo.jpg);
}

#container .contents .brand_inner .bit {
    background-image: url(../about/images/our_bit.jpg);
}

#container .contents .brand_inner .jinsian {
    background-image: url(../about/images/our_jinsian.jpg)
}

#container .contents .brand_inner .swiper-slide img {
    margin-bottom: 40px;
}

#container .contents .brand_inner .swiper-slide span {
    line-height: 36px;
}

#container .contents .client .section_tit {
    margin: 160px 0 60px;
}

#container .contents .client ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 70px;
}

#container .contents .client li {
    margin: 0 45px 50px;
    display: flex;
    align-items: center;
}

#container .contents .client li:nth-child(1) {
    margin-left: 0;
}

#container .contents .client li:nth-child(4) {
    margin-right: 0;
}

#container .contents.history {
    position: relative;
}

#container .history_vis {
    width: 45%;
    height: auto;
    position: absolute;
    top: 935px;
    left: -0.4%;
}

#container .history_vis.active {
    position: fixed;
    top: 90px;
}

#container .history_vis.active.end {
    position: absolute;
    top: 4180px;
}

#container .history_vis img {
    position: absolute;
    transition: all .5s;
    width: 100%;
}

#container .history_vis img.active {
    opacity: 0;
}

#container .contents .history_list {
    margin-left: 48%;
    padding-left: 20px;
    position: relative;
}

#container .contents .history_list:before {
    content: "";
    width: 1px;
    height: 4300px;
    background-color: #dddddd;
    display: block;
    position: absolute;
    left: 0;
    top: 15px;
}

#container .contents .history_list ul li {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

#container .contents .history_list ul li:last-child {
    margin-bottom: 120px;
}

#container .contents .history_list ul li .year {
    font-size: 36px;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}

#container .contents .history_list ul li .year:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
    background-color: #d22234;
    position: absolute;
    left: -24px;
    top: calc(50% - 4px);
}

#container .contents .history_list ul li>div {
    display: flex;
    color: #666666;
    font-size: 16px;
    line-height: 28px;
    flex-wrap: wrap;
}

#container .contents .history_list ul li .month {
    width: 5%;
    margin-right: 5%;
}

#container .contents .history_list ul li span {
    margin-right: auto;
    display: inline-block;
    display: block;
    width: 90%;
}

#container .contents .quality .vis_wrap {
    margin: 0 60px 0 40px;
    position: relative;
}

#container .contents .quality .vis_wrap:before {
    content: "";
    width: 600px;
    height: 560px;
    display: block;
    background-color: #d22234;
    position: absolute;
    top: -60px;
    left: -40px;
    z-index: -1;
}

#container .contents .con_list p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

#container .contents .con_list ul {
    margin-bottom: 40px;
}

#container .contents .con_list li {
    padding-left: 10px;
    margin-bottom: 5px;
    color: #666666;
    font-size: 18px;
    position: relative;
}

#container .contents .con_list li:before {
    content: "";
    width: 5px;
    height: 5px;
    display: blcok;
    border-radius: 50%;
    background-color: #d22234;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#container .contents .pm {
    flex-direction: row-reverse;
    margin-left: 40px;
    justify-content: space-between;
    align-items: center;
}

#container .contents .pm .txt_wrap {
    margin-top: 35px;
    flex: 1;
}

#container .contents .pm li {
    display: flex;
}

#container .contents .pm li span {
    font-weight: 500;
}

#container .contents .pm table {
    width: 95%;
}

#container .contents .pm table tr {
    border-bottom: 1px solid #ddd;
}

#container .contents .pm table tr:last-child {
    border: none;
}

#container .contents .pm table tr td {
    padding: 5px 0;
}

#container .contents .pm table tr td:nth-child(1) {
    font-weight: 700;
    position: relative;
    padding: 10px 15px 10px 10px;
}

#container .contents .pm table tr td:nth-child(1):before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background-color: #d22234;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#container .contents .rnd {
    margin-left: 40px;
}

#container .contents .store .section_tit {
    margin-bottom: 60px;
}

#container .contents .rnd .vis_wrap {
    position: relative;
}

#container .contents .rnd .vis_wrap:before {
    content: "";
    width: 500px;
    height: 620px;
    display: block;
    background-color: #d22234;
    position: absolute;
    z-index: -1;
    right: -40px;
    bottom: -60px;
}

#container .contents .rnd .txt_wrap {
    margin: 190px 0 0 100px;
}

#container .contents .store {
    position: relative;
}

#container .contents .store_tab {
    position: absolute;
    top: 260px;
}

#container .contents .store_tab .swiper-wrapper {
    flex-direction: column;
}

#container .contents .store_tab .swiper-slide {
    display: flex;
    flex-direction: column;
    width: 164px !important;
    margin-bottom: 60px;
    cursor: pointer;
}

#container .contents .store_tab .swiper-slide>img {
    width: 100%;
}

#container .contents .store_tab .swiper-slide a {
    color: #666666;
    font-size: 16px;
    display: inline-block;
    margin-top: 15px;
    opacity: 0;
    pointer-events: none;
}

#container .contents .store_tab .swiper-slide a img {
    vertical-align: baseline;
    display: inline-block;
    margin-left: 10px;
}

#container .contents .store_tab .swiper-slide-thumb-active a {
    opacity: 1;
    transition: all .6s;
    pointer-events: auto;
}

#container .contents .store_list {
    width: 945px;
    height: 550px;
    margin: 0 0 170px 255px;
    position: relative;
}

#container .contents .store_list .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#container .contents .store_list .shilla {
    background-image: url(../bussiness/images/store_shilla.jpg);
}

#container .contents .store_list .shinsegae {
    background-image: url(../bussiness/images/store_shinsegae.jpg);
}

#container .contents .store_list .hyundai {
    background-image: url(../bussiness/images/store_hyundai.jpg);
}

#container .contents .store_list .swiper-button-next,
#container .contents .store_list .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, .6);
    color: #666;
    margin: 0;
    top: inherit;
}

#container .contents .store_list .swiper-button-prev {
    left: inherit;
    right: 60px;
    bottom: 0;
    border-right: 1px solid #fff;
}

#container .contents .store_list .swiper-button-next {
    right: 0;
    bottom: 0;
    border-left: 1px solid #fff;
}

#container .contents .store_list .swiper-button-prev:after,
#container .contents .store_list .swiper-button-next:after {
    font-size: 20px;
}

#container .contents .oem ul {
    display: flex;
    justify-content: space-between;
    margin: 60px 0 80px;
}

#container .contents .oem ul li {
    max-width: 180px;
    width: 100%;
    color: #222;
    text-align: center;
}

#container .contents .oem ul li>div {
    width: 100%;
    height: 180px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container .contents .oem ul li p {
    font-size: 40px;
    font-weight: bold;
    margin: 20px 0 25px;
    position: relative;
}

#container .contents .oem ul li span {
    font-size: 18px;
    display: inline-block;
}

#container .contents .oem div:nth-of-type(2) {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 120px;
}

#container .contents .oem div:nth-of-type(2) span {
    border-bottom: 1px solid #222;
    display: inline-block;
    margin-bottom: 10px;
}

#container .contents.product ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#container .contents.product ul li {
    max-width: 380px;
}

#container .contents.product ul li p {
    text-align: center;
    color: #222;
    font-size: 18px;
    margin: 25px 0 65px;
}

#container .contents.product #product_info {
    display: none;
}

#container .contents .news_list .total {
    margin: 130px 0 15px;
}

#container .contents .news_list .total span {
    color: #ae282d;
}

#container .contents .news_list table {
    width: 100%;
    text-align: center;
}

#container .contents .news_list table thead {
    background-color: #f6e9dd;
    border-top: 1px solid #222;
    border-bottom: 1px solid #ddd;
}

#container .contents .news_list table thead th {
    font-weight: 400;
    padding: 0 10px;
}

#container .contents .news_list table tr {
    line-height: 58px;
    border-bottom: 1px solid #ddd;
}

#container .contents .news_list table td,
#container .contents .news_list table td a {
    color: #666;
}

#container .contents .news_list table tr td:nth-child(2) {
    text-align: left;
}

#container .contents .news_list .pagination {
    display: flex;
    margin: 50px 0 120px;
    justify-content: center;
}

#container .contents .news_list .pagination li {
    margin: 0 15px;
}

#container .contents .news_list .pagination li a {
    color: #666;
}

#container .contents .news_list .pagination li.active a {
    color: #ae282d;
    border-bottom: 1px solid;
}

#container .contents .news_list .pagination li.btn {
    width: 26px;
    height: 26px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    margin: 0 2px;
}

#container .contents .news_list .pagination li.btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#container .contents .news_view .news_tit {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    margin: 130px 0 60px;
    border-bottom: 1px solid #ddd;
}

#container .contents .news_view .news_tit p {
    font-size: 24px;
    font-weight: 500;
}

#container .contents .news_view .news_tit span {
    font-size: 16px;
    color: #666;
}

#container .contents .news_view .news_contents {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

#container .contents .news_view .news_contents div {
    font-size: 16px;
    line-height: 32px;
    color: #666;
    margin: 70px 0 100px;
}

#container .contents .news_view .list_btn {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding: 15px 0;
}

#container .contents .news_view .list_btn .pagination {
    display: flex;
}

#container .contents .news_view .list_btn .pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
}

#container .contents .news_view .list_btn .pagination a:nth-child(1) {
    margin-right: 5px;
}

#container .contents .news_view .list_btn div:nth-child(2) a {
    width: 80px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 16px;
    color: #666;
    border: 1px solid #ddd;
}

#container .contents .news_view .list_btn div:nth-child(2) a img {
    margin-left: 7px;
}

#container .contents .customer_center>ul {
    display: flex;
    justify-content: space-between;
}

#container .contents .customer_center>ul>li {
    width: 260px;
    height: 260px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#container .contents .customer_center>ul>li p {
    font-size: 24px;
    font-weight: bold;
    color: #ae282d;
    margin: 40px 0 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ae282d;
}

#container .contents .customer_center>ul>li div {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 20px;
}

#container .contents .customer_center>ul>li li img {
    margin-right: 10px;
}

#container .contents .customer_center>ul>li li {
    margin-bottom: 10px;
}

#container .contents .customer_center>ul>li li a {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

#container .contents .customer_center form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 80px 0 120px;
}

#container .contents .customer_center form div {
    flex-basis: 380px;
}

#container .contents .customer_center form div label {
    margin-bottom: 15px;
}

#container .contents .customer_center form div input {
    width: 100%;
    outline: none;
    border: 1px solid #ddd;
    box-sizing: border-box;
    padding: 20px;
    font-size: 16px;
    margin-top: 15px;
    background: #fef9f4;
}

#container .contents .customer_center form div input:focus,
#container .contents .customer_center form div:nth-child(4) textarea:focus {
    border-bottom: 1px solid #ae282d;
}

#container .contents .customer_center form div:nth-child(4) {
    flex-basis: 100%;
    margin-top: 40px;
}

#container .contents .customer_center form div:nth-child(4) textarea {
    width: 100%;
    height: 200px;
    resize: none;
    outline: none;
    box-sizing: border-box;
    border-color: #ddd;
    border-radius: 0;
    margin-top: 15px;
    padding: 20px;
    font-size: 16px;
    background: #fef9f4;
}

#container .contents .customer_center form>input {
    width: 100px;
    height: 40px;
    margin: 40px auto 0;
    background-color: #d22234;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}