@charset "utf-8";
@import url(https://use.fontawesome.com/d00b556be3.css);
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 300;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff2)
            format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff)
            format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.otf)
            format("opentype");
}
@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 400;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2)
            format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff)
            format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf)
            format("opentype");
}
@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 500;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2)
            format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff)
            format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf)
            format("opentype");
}
@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 700;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2)
            format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff)
            format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf)
            format("opentype");
}
@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 900;
    src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff2)
            format("woff2"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff)
            format("woff"),
        url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.otf)
            format("opentype");
}

/* reset */
* {
    padding: 0;
    margin: 0;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    overflow-y: scroll;
    height: 100%;
    font-size: 25px;
    letter-spacing: -1px;
}
body {
    font-family: roboto, noto sans kr, dotum, sans-serif;
    color: #222;
    height: 100%;
    font-weight: 300;
}

ul,
ol {
    list-style: none;
}
html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-size: 1em;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

label,
input,
button,
select,
img {
    vertical-align: middle;
}
input,
button,
textarea,
select {
    font-size: 1em;
    font-family: roboto, noto sans kr;
}
img {
    max-width: 100%;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="number"] {
    padding: 0 20px;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    line-height: 73px;
    height: 75px;
    width: 100%;
}
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ccc;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ccc;
}
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
textarea:-moz-placeholder {
    color: #ccc;
}
input[type="text"],
input[type="password"],
input[type="submit"],
input[type="image"],
input[type="date"],
input[type="number"],
button {
    border-radius: 10px;
    font-size: 1em;
    -webkit-appearance: none;
}
input.accent {
    border: 2px solid #ff7200;
    color: #ff7200;
    line-height: 36px;
}
input.short {
    width: 80px !important;
    text-align: center;
}
input:read-only {
    background-color: #ededed;
}

input[type="checkbox"],
input[type="radio"] {
    width: 24px;
    height: 24px;
    border: none;
    opacity: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
input[type="checkbox"] + i,
input[type="radio"] + i {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    background-size: 100%;
    margin: 0 8px 0 -24px;
}
input[type="checkbox"] + i {
    background-image: url(/static/img/icon_check.png);
}
input[type="checkbox"]:checked + i {
    background-image: url(/static/img/icon_check_on.png);
}
input[type="checkbox"]:disabled + i {
    background-image: url(/static/img/icon_check_dis.png);
}
input[type="radio"] + i {
    background-image: url(/static/img/icon_radio.png);
}
input[type="radio"]:checked + i {
    background-image: url(/static/img/icon_radio_on.png);
}
input[type="radio"]:disabled + i {
    background-image: url(/static/img/icon_radio_dis.png);
}

input[type="text"],
input[type="password"],
textarea,
.styled_select,
a,
button {
    transition: all 0.2s ease-in-out;
    outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
.styled_select:hover {
    box-shadow: 0 0 5px rgba(74, 75, 160, 0.4);
    border: 1px solid #3a9dd2 !important;
}

.styled_file {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 75px;
    background: url(/static/img/common/btn_file.png) no-repeat;
}
.styled_file input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 169px;
    height: 75px;
    line-height: 73px;
    opacity: 0;
    cursor: default;
}
.styled_file input[type="button"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 169px;
    height: 75px;
    line-height: 73px;
    opacity: 0;
    cursor: default;
}
.styled_file input[type="text"] {
    position: absolute;
    left: 173px;
    top: 0;
    border: none !important;
    background: transparent !important;
    width: calc(100% - 173px);
}
.styled_file #attach_result {
    position: absolute;
    left: 145px;
    top: 6px;
}

button,
a {
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
select {
    border: 1px solid #ededed;
    height: 73px;
    padding: 0 0 0 20px;
    cursor: pointer;
    color: #666;
    background: #fff;
}
.styled_select {
    height: 75px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
    display: inline-block;
    border-radius: 10px;
    vertical-align: middle;
    position: relative;
    width: 100%;
}
.styled_select i {
    position: absolute;
    right: 0;
    text-align: center;
    width: 65px;
    height: 75px;
    line-height: 73px;
    top: 0;
    background: url(/static/img/select_bg.png) no-repeat center;
    background-size: 18px;
}
.styled_select select {
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    outline: none;
    padding-right: 65px;
    width: 100%;
    vertical-align: top;
    position: relative;
    z-index: 1;
    height: 73px;
}
.styled_select select:disabled {
    cursor: default;
    background: #f0f0f0;
}
.styled_select select::-ms-expand {
    display: none;
}
hr {
    display: none;
    background: #ddd;
    border: none;
    height: 1px;
}
a,
a:link,
a:visited {
    text-decoration: none;
    color: #666;
}
strong,
b,
th,
dt {
    font-weight: 500;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
caption {
    display: none;
    font-size: 0;
    line-height: 0;
}
textarea {
    color: #222;
    font-size: 1em;
    line-height: 1.5;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    vertical-align: top;
}
address {
    font-style: normal;
}

/* global */
/*
:root {
    --primaryColor: #ee3124;
    --btnRadius: 5px;
    --btnHeight: 44px;
    --btnPadding: 10px;
}
*/

.txt_black {
    color: #222 !important;
}
.txt_white {
    color: #fff !important;
}
.txt_gray {
    color: #aaa !important;
}
.txt_red {
    color: #ee3128 !important;
}
.txt_blue {
    color: #069be8 !important;
}
.txt_orange {
    color: #ffaa00 !important;
}
.txt_green {
    color: #8ecd09 !important;
}
.txt_brown {
    color: #9f5e15 !important;
}
.wrap:after {
    content: "";
    display: block;
    clear: both;
}
.clear:after {
    content: "";
    display: block;
    clear: both;
}
.center {
    text-align: center !important;
}
.left {
    text-align: left !important;
}
.right {
    text-align: right !important;
}
.f_left {
    float: left !important;
}
.f_right {
    float: right !important;
}
.skip {
    font-size: 0;
    text-indent: -9000px;
    line-height: 0;
    display: none;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}
input.short {
    width: 70px;
    text-align: center;
}
input.long {
    width: 100%;
}
ul:after {
    clear: both;
    content: "";
    display: block;
}
.overflow_y {
    overflow-x: hidden;
    overflow-y: scroll;
}

.succession {
    margin-top: 40px !important;
}
.paragraph {
    margin-bottom: 80px !important;
}
span.space {
    display: inline-block;
    width: 30px;
}
.prepare {
    width: 100%;
    text-align: center;
    padding: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -80%);
}
.prepare h2 {
    font-size: 30px;
    text-align: center;
    margin: 0 0 15px;
}
.prepare h2 i {
    font-size: 70px;
    margin: 0 0 20px;
    display: block;
    color: #ddd;
}
.prepare p {
    text-align: center;
    font-size: 16px;
}

.btn {
    padding: 0 40px;
    height: 75px;
    line-height: 73px;
    font-weight: 700;
    border: 1px solid #ddd;
    background-color: #fff;
    transition: all 0.2s;
    display: inline-block;
    border-radius: 10px;
    outline: none;
    vertical-align: middle;
    color: #666;
    text-align: center;
    word-break: keep-all;
}
.btn:hover {
    background-color: #ededed;
}
.btn-primary {
    background: #ee3124;
    border-color: #ee3124;
    color: #fff !important;
}
.btn-primary:hover {
    background: #d71103;
    border-color: #d71103;
}
.btn-info {
    background: #48545e;
    border-color: #48545e;
    color: #fff !important;
}
.btn-info:hover {
    background: #48545e;
    border-color: #48545e;
}
.btn-red {
    background: #ee3124;
    border-color: #ee3124;
    color: #fff !important;
}
.btn-red:hover {
    background: #ee3124;
    border-color: #ee3124;
}
.btn-lg {
    padding: 0 80px;
    height: 80px;
    line-height: 78px;
    font-size: 1.4em;
    border-radius: 20px;
    min-width: 430px;
}
.btn-sm {
    padding: 6px 12px 8px 12px;
    font-size: 12px;
    border-radius: 3px;
}

.btn_guide {
    position: fixed;
    z-index: 100;
    right: 0;
    top: 40%;
}
.btn_guide a {
    display: block;
    background: red;
    color: #fff;
    width: 100px;
    line-height: 30px;
    text-align: center;
    margin: 0 0 3px;
    font-weight: 500;
}

/* pop layer */
#popLayer {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
    display: none;
}
.pop_layer {
    z-index: 100;
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    max-height: 90%;
    width: 600px;
}
.pop_layer header {
    background: #ee3124;
    height: 60px;
}
.pop_layer header h2 {
    color: #fff;
    font-size: 1.2em;
    line-height: 60px;
    font-weight: 500;
    text-align: center;
}
.pop_layer header h2 strong {
    color: #ffde00;
    font-weight: 600;
}
.pop_layer .btn_close {
    position: absolute;
    top: 18px;
    right: 15px;
    display: block;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    background: url(/static/img/btn_close_s.png);
    text-indent: -9000px;
}
.pop_layer .pop_con {
    padding: 30px;
    font-size: 0.9em;
    overflow-y: auto;
}
.pop_layer .btn_area {
    margin: 10px 0 0 0;
}
.pop_layer .btn-primary {
    width: 100%;
    text-transform: uppercase;
    padding: 12px 0 15px 0;
    font-size: 1.3em;
}
.pop_layer table {
    border-top: 2px solid #666;
}
.pop_layer th,
.pop_layer td {
    padding: 5px;
    border-bottom: 1px solid #ddd;
}
.pop_layer th {
    text-align: left;
    padding-left: 20px;
    width: 150px;
}
.pop_layer input[type="text"] {
    width: 100%;
}
.pop_layer .btn-info {
    height: 40px;
    line-height: 38px;
    padding: 0 12px;
}

/* contents */
.mobile_only {
    display: none !important;
}
.wrap {
    width: 700px;
    margin: 0 auto;
    position: relative;
}

#footer {
    text-align: center;
    padding: 100px 0;
}
#footer .logo {
    height: 42px;
}

.page_header {
    background: #ee3124;
    height: 200px;
    color: #fff;
    position: relative;
    margin-bottom: 55px;
}
.page_header h2 {
    text-align: center;
    line-height: 1;
    padding: 125px 0 0 0;
    font-size: 1.7em;
    letter-spacing: -2px;
    font-weight: 900;
}
.page_header h2 img {
    margin-top: -5px;
}
.page_header h2:after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ee3124;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: -20px;
    transform: rotate(-45deg);
}

.page_btn {
    text-align: center;
    margin-top: 50px;
}
.justify {
    text-align: justify;
    line-height: 0;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}
.justify:after {
    content: "";
    display: inline-block;
    width: 100%;
    font-size: 0;
    line-height: 0;
    height: 0;
}
.layout_flex_sb {
    display: flex;
    justify-content: space-between;
}

.input_div {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.input_div.top {
    align-items: stretch;
}
.input_div:first-child {
    margin-top: 20px;
}
.input_div .label {
    color: #888;
    line-height: 1.3;
}
.input_div.top .label {
    line-height: 44px;
}
.input_div .item {
    display: flex;
    align-items: center;
    line-height: 44px;
}
.input_div .item.block {
    display: block;
}
.input_div input[type="text"],
.input_div input[type="password"],
.input_div input[type="date"],
.input_div input[type="number"],
.input_div .styled_select {
    margin-left: 5px;
}
.input_div input:first-child,
.input_div .styled_select:first-child,
.input_div .item.block input,
.input_div .item.block .styled_select {
    margin-left: 0;
}
.input_div .item.block input[type="text"],
.input_div .item.block .styled_select {
    margin-top: 10px;
}
.input_div .item.block input[type="text"]:first-child,
.input_div .item.block .styled_select:first-child {
    margin-top: 0;
}

.claim_reg {
    margin-top: 115px;
}
.claim_reg02 {
    margin-top: 60px;
}
.claim_reg .input_div .label {
    width: 170px;
    margin-right: 20px;
}
.claim_reg .input_div .item {
    width: calc(100% - 190px);
}
.space_label {
    margin-left: 190px;
}

.btn_pic {
    padding: 0 10px;
    border: 1px solid #ddd;
    height: 44px;
    line-height: 42px;
    border-radius: 5px;
    color: #ccc !important;
    font-weight: 400;
    background: url(/static/img/icon_pic.png) no-repeat 95% center;
    background-size: 25px;
    flex-grow: 1;
}
.btn_ex {
    padding: 0;
    width: 160px;
    margin-left: 10px;
    background: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
    color: #ef2417 !important;
}
.btn_folder {
    padding: 0 10px;
    border: 1px solid #ddd;
    height: 44px;
    line-height: 42px;
    border-radius: 5px;
    color: #ccc !important;
    font-weight: 400;
    background: url(/static/img/icon_folder.png) no-repeat 98% center;
    background-size: 25px;
    flex-grow: 1;
}

.guide {
    margin-top: 65px;
}
.guide li {
    line-height: 1.2;
    margin-top: 8px;
    padding-left: 20px;
    font-weight: 400;
}
.guide li:before {
    content: "※";
    position: absolute;
    left: 0;
}

.warranty_list li {
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.warranty_list li .prd {
    font-weight: 500;
    line-height: 1.3;
}
.warranty_list li .opt {
    margin-top: 10px;
    line-height: 1;
}
.warranty_list li dl {
    margin-top: 15px;
    line-height: 1;
}
.warranty_list li dt,
.warranty_list li dd {
    display: inline-block;
    margin-right: 10px;
}
.warranty_list li dt:nth-child(3) {
    margin-left: 15px;
    color: #ee9124;
}
.warranty_list li dd:nth-child(4) {
    color: #ee9124;
}
.warranty_list li .btn {
    flex-shrink: 0;
    width: 170px;
    margin-left: 30px;
}

.top_notice {
    background: #fdeae9;
}
.top_notice .wrap {
    display: flex;
    align-items: center;
    height: 110px;
    justify-content: center;
}
.top_notice p {
    background: url(/static/img/icon_notice.png) no-repeat left center;
    padding-left: 60px;
    font-weight: 500;
    font-size: 1.05em;
    line-height: 40px;
    background-size: 44px;
}

.pagenum {
    text-align: center;
    margin-top: 70px;
    font-size: 0;
}
.pagenum a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 48px;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
    font-weight: 400;
    color: #666;
    font-size: 0.8rem;
    margin-left: -1px;
}
.pagenum a:hover {
    background: #f0f0f0;
}
.pagenum .current a {
    border-color: #222;
    color: #fff;
    position: relative;
    z-index: 1;
    background: #444;
}
.pagenum a i {
    font-size: 21px;
    vertical-align: 0;
}

.claim_end .page_header {
    height: 300px;
    margin: 0;
}
.claim_end .page_header h1 {
    text-align: center;
    padding: 90px 0 0 0;
}
.claim_end .page_header h2 {
    padding: 25px 0 0 0;
    font-size: 1.5em;
    letter-spacing: -1px;
}
.claim_end .page_header h2:after {
    display: none;
}
.claim_end .con {
    background: #e8e8e8;
    padding: 80px 0 110px 0;
    text-align: center;
}
.claim_end .con li {
    font-weight: 500;
    font-size: 1.15em;
    position: relative;
    line-height: 1;
}
.claim_end .con li:before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    background-color: #fff;
    background-image: url(/static/img/icon_complete01.png);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin: 0 auto 23px auto;
}
.claim_end .con li:nth-child(2):before {
    background-image: url(/static/img/icon_complete02.png);
}
.claim_end .con li:nth-child(3):before {
    background-image: url(/static/img/icon_complete03.png);
}
.claim_end .con li:after {
    content: "";
    display: block;
    background: url(/static/img/arrow_down.png) no-repeat center;
    background-size: 32px;
    height: 84px;
}
.claim_end .con li:last-child:after {
    display: none;
}

.link01 {
    text-decoration: underline !important;
    font-size: 0.95em;
    color: #999;
}
.link_ex {
    text-align: right;
    margin-top: 10px;
}
.link_ex a {
    color: #ee3128;
    font-weight: 400;
}
.hr01 {
    height: 1px;
    display: block;
    background: #ccc;
    margin: 25px 0;
}
p.refer {
    color: #ee3128;
    text-align: right;
    font-size: 0.9em;
    margin-top: 10px;
}
p.refer.new {
    color: #fff;
    background-color: var(--primaryColor);
    border-radius: var(--btnRadius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    padding: var(--btnPadding);
    margin-bottom: 10px;
    font-weight: 400;
    word-break: keep-all;
}

.agree_div .link01 {
    margin-left: 10px;
}
.agree_div {
    margin-top: 22px;
    display: flex;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    line-height: 1.4;
}
.agree_div:first-child {
    border: 0;
}
.agree_div span:first-child {
    flex-shrink: 0;
    width: 40px;
}
.agree_div label {
    word-break: keep-all;
}
.agree_div.all {
    border-color: #d71103;
    border-bottom: 1px solid #d71103;
    font-weight: 500;
    font-size: 1.1em;
    color: #d71103;
    display: block;
    text-align: center;
    background: #f0f0f0;
    padding: 25px 0;
    margin-top: 30px;
}
.agree_div.all input[type="checkbox"] {
    width: 30px;
    height: 30px;
}
.agree_div.all input[type="checkbox"] + i {
    width: 30px;
    height: 30px;
    margin: 0 8px 0 -30px;
}

.warranty_reg .txt01 {
    text-align: center;
    font-weight: 400;
    margin-bottom: 40px;
}
.warranty_reg .input_div .item .btn {
    margin-left: 5px;
    width: 100px;
}
.warranty_reg .input_div .item .check {
    min-width: 282px;
    text-align: left;
    margin-left: 10px;
}
.warranty_reg .add_prd {
    margin-top: 40px;
    text-align: right;
}

.warranty_end {
    background: #ba2627 linear-gradient(to right, #ee2928, #771f21);
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.warranty_end h2 {
    font-size: 2.3em;
    font-weight: 900;
    line-height: 1;
}
.warranty_end h2:after {
    display: block;
    background: url(/static/img/icon_warranty.png) no-repeat center top;
    content: "";
    height: 340px;
    background-size: 205px;
    margin-top: 35px;
}
.warranty_end .btn {
    border: 0;
    color: #ea0100;
}
.warranty_end #footer {
    padding: 100px 0 0 0;
}

.table_v01 {
    border-top: 2px solid #ee3124;
}
.table_v01 th,
.table_v01 td {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
}
.table_v01 th {
    text-align: left;
}

.warranty_view th {
    width: 200px;
}
.warranty_view td img {
    max-width: 450px;
}

.pop_ex p,
.pop_ex ul {
    padding: 0 0 20px;
    text-align: center;
    line-height: 1.4;
}
.pop_ex li {
    text-align: left;
    background: url(/static/img/dot01.png) no-repeat 0 5px;
    background-size: 4px;
    padding-left: 10px;
    margin: 5px 0 0;
    line-height: 1.3;
    word-break: keep-all;
}
.pop_ex p.txt01 {
    padding: 0 0 15px;
    font-weight: 500;
    font-size: 1.1em;
    color: #ea0100;
}
.pop_privacy {
    width: 700px;
}
.pop_privacy li {
    background: url(/static/img/dot01.png) no-repeat 0 8px;
    padding-left: 17px;
    margin: 0 0 10px;
    line-height: 1.3;
    word-break: keep-all;
}

.pic_equip_area {
    margin-top: 40px;
    margin-bottom: 40px;
}
.pic_equip_area p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.05em;
}
.pic_equip_area p .btn {
    margin-top: 15px;
}
.pic_equip {
    position: relative;
    background: url(/static/img/car01.png) no-repeat center;
    background-size: 300px;
    height: 660px;
}
.pic_equip article {
    width: 180px;
    height: 130px;
    background-color: #fff;
    border: 2px solid #e1e2e3;
    border-radius: 20px;
    position: absolute;
    left: 500px;
    top: 0;
}
.pic_equip article h3 {
    padding: 10px 0 0 32px;
    line-height: 1;
}
.pic_equip article:after {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url(/static/img/icon_tire.png) no-repeat center;
    border-radius: 50%;
    position: absolute;
    top: -12px;
    left: -7px;
    background-size: 100%;
}
.pic_equip article img {
    width: 130px;
    height: 73px;
    border-radius: 5px;
    margin: 12px auto 0 auto;
    display: block;
}
.pic_equip article:nth-of-type(1) {
    left: 130px;
    top: 0;
}
.pic_equip article:nth-of-type(2) {
    right: 130px;
    left: auto;
    top: 0;
}
.pic_equip article:nth-of-type(3) {
    left: 130px;
    bottom: 0;
    top: auto;
}
.pic_equip article:nth-of-type(4) {
    right: 130px;
    left: auto;
    bottom: 0;
    top: auto;
}
.pic_equip article:nth-of-type(even) h3 {
    text-align: right;
    padding-right: 32px;
}
.pic_equip article:nth-of-type(even):after {
    left: auto;
    right: -7px;
}
.pic_equip article:nth-of-type(n + 3):after {
    top: auto;
    bottom: -12px;
}
.pic_equip article:nth-of-type(n + 3) img {
    margin: 16px auto 0 auto;
}
.pic_equip article:nth-of-type(n + 3) h3 {
    padding-top: 13px;
}
.pic_equip article .btn_delete {
    position: absolute;
    border: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    right: 5px;
    top: 3px;
}
.pic_equip article .btn_delete i {
    font-size: 14px;
}
.pic_equip article:nth-of-type(even) .btn_delete {
    left: 5px;
    top: 3px;
    right: auto;
}
.pic_equip article:nth-of-type(n + 3) .btn_delete {
    top: auto;
    bottom: 3px;
}

.pop_loading {
    background: transparent;
    box-shadow: none;
}
.pop_loading .pop_con {
    padding: 30px 0;
}
.pop_loading .logo {
    text-align: center;
}
.pop_loading .logo img {
    width: 200px;
}
.pop_loading p {
    text-align: center;
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 80px;
    letter-spacing: 0;
}
.pop_loading .spin {
    text-align: center;
    margin: 0 0 20px 0;
}
.pop_loading i {
    color: #ff2929;
    font-size: 5em;
}

.pic_broken_area {
    margin-top: 50px;
    margin-bottom: 100px;
}
.pic_broken_area h2 {
    text-align: center;
    background-color: #ea0100;
    color: #fff;
    line-height: 1.3;
    padding: 15px 0;
    font-weight: 500;
    font-size: 1.3em;
    margin-bottom: 20px;
}
.pic_broken_area h2 i {
    margin: 0 2px 0 5px;
}
.pic_broken_area p {
    text-align: center;
    font-weight: 500;
    font-size: 1.15em;
    line-height: 1.3;
    margin-bottom: 50px;
}
.pic_broken_area p .btn {
    margin-top: 15px;
}
.pic_broken {
    position: relative;
    background: url(/static/img/car02.png) no-repeat center;
    background-size: 200px;
    height: 338px;
}
.pic_broken article {
    position: absolute;
    left: 500px;
    top: 0;
    text-align: center;
}
.pic_broken article img {
    display: block;
    width: 120px;
    margin-top: 5px;
}
.pic_broken article label {
    color: #ea0100;
    font-size: 1.2em;
    font-weight: 500;
    vertical-align: -3px;
}
.pic_broken article:nth-of-type(1) {
    left: 80px;
    top: 0;
}
.pic_broken article:nth-of-type(2) {
    right: 80px;
    left: auto;
    top: 0;
}
.pic_broken article:nth-of-type(3) {
    left: 80px;
    bottom: 0;
    top: auto;
}
.pic_broken article:nth-of-type(4) {
    right: 80px;
    left: auto;
    bottom: 0;
    top: auto;
}

.pop_notice p {
    font-size: 1.05em;
    letter-spacing: 0;
    word-break: keep-all;
}
.pop_notice p strong {
    font-weight: 600;
}
.pop_notice p:not(:first-of-type) {
    margin-top: 1em;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .btn,
    .btn_pic {
        line-height: 71px;
    }
}

.txt_l {
    font-size: 1.1em !important;
}

.flexbox01 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.succession_s {
    margin-top: 10px;
}
