@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
    font-family: 'Noto Serif TC', serif;
}

ol,
ul {
    list-style: none;
    margin: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

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

.pc {
    display: block !important;
}

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

.mobile {
    display: none !important;
}

@media (max-width: 1000px) {
    .mobile {
        display: block !important;
    }
}

.h1 {
    display: none;
}

h1.tit {
    position: absolute;
    padding: 1.5% 0;
    width: 100%;
    color: #f4b155;
    font-size: 4vw;
    text-align: center;
    text-indent: -9999px;
    z-index: -1;
}

@media screen and (min-width: 1200px) {
    h1.tit {
        font-size: 120%;
    }
}

.button_fix {
    position: fixed;
    right: 2%;
    bottom: 2%;
    z-index: 1;
}

@media all and (max-width: 768px) {
    .button_fix {
        right: -13%;
    }
}

.button_fix a {
    display: block;
    max-width: 200px;
}

@media all and (max-width: 768px) {
    .button_fix a {
        width: 70%;
        text-align: right;
    }

    .button_fix a>img {
        width: 100%;
    }
}

@media all and (max-width: 768px) {
    .header a.mbt {
        position: absolute;
    }
}

@media all and (min-width: 768px) {
    a img.mobile {
        display: none;
        width: 100%;
    }
}

@media all and (min-width: 768px) {
    .button_fix a img.desktop {
        display: block;
    }
}

@media all and (max-width: 768px) {
    .container_page .button_fix a {
        max-width: 100%;
    }
}

.wrapper {
    width: 100%;
    max-width: 100%;
    font-family: '微軟正黑體';
    overflow: hidden;
    background-color: #ebf7ff;
}

@media (max-width: 1000px) {
    .wrapper {
        padding-top: 55px;
    }
}

.wrapper .header {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-color: #64a0d6;
    z-index: 10;
}

@media (max-width: 1000px) {
    .wrapper .header {
        position: fixed;
        top: 60px;
    }
}

.wrapper .header .head-mobile {
    display: none;
}

@media (max-width: 1000px) {
    .wrapper .header .head-mobile {
        display: block;
        padding: 15px;
        color: #ddd;
        font-size: 17px;
        font-weight: 700;
        border-bottom: 1px #ddd solid;
    }
}

.wrapper .header .hamburger-menu,
.wrapper .header .hamburger-menu:after,
.wrapper .header .hamburger-menu:before {
    width: 30px;
    height: 2px;
    border-radius: 5px;
}

.wrapper .header .hamburger-btn {
    position: absolute;
    padding: 25px 20px;
    cursor: pointer;
    top: 0;
    right: 0;
    z-index: 3;
}

.wrapper .header .hamburger-menu {
    display: none;
    position: relative;
    background: #ddd;
    -webkit-transition: all 0ms 300ms;
    -o-transition: all 0ms 300ms;
    transition: all 0ms 300ms;
}

@media (max-width: 992px) {
    .wrapper .header .hamburger-menu {
        display: block;
    }
}

.wrapper .header .hamburger-menu::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    background: #ddd;
    -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.wrapper .header .hamburger-menu::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    background: #ddd;
    -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.wrapper .header .animate {
    background: rgba(255, 255, 255, 0);
}

.wrapper .header .animate::before {
    content: "";
    background: #ddd;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.wrapper .header .animate::after {
    content: "";
    background: #ddd;
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.wrapper .header .menu {
    display: block;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .wrapper .header .menu {
        position: absolute;
        height: 100vh;
        right: -100%;
        background-color: #64a0d6;
        -webkit-transition: right 0.3s ease;
        -o-transition: right 0.3s ease;
        transition: right 0.3s ease;
        overflow: auto;
    }
}

.wrapper .header .menu ul {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .wrapper .header .menu ul {
        display: block;
    }
}

.wrapper .header .menu ul li a {
    padding: 18px 10px;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    display: block;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    background-color: #64a0d6;
}

@media (max-width: 1000px) {
    .wrapper .header .menu ul li a {
        border-bottom: 1px #ddd solid;
        padding: 10px 20px;
    }
}

.wrapper .header .menu ul li a:hover {
    background-color: #75acde;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .header .visible {
    right: 0%;
}

.wrapper .header-fixed {
    position: fixed;
    top: 0;
}

@media (min-width: 1000px) and (max-width: 1110px) {
    .wrapper .header-fixed .menu ul li a {
        font-size: 15px;
    }
}

.wrapper .kv a {
    display: block;
}

.wrapper .kv img {
    width: 100%;
    max-width: 100%;
}

.wrapper .kv .slick-slide {
    height: auto;
}

.wrapper .section {
    position: relative;
    z-index: 0;
}

.wrapper .section .content {
    max-width: 1200px;
    padding: 0 20px;
    margin: 40px auto 30px;
    z-index: 1;
}

.wrapper .section .content .l-title-01 {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-01 {
        margin-bottom: 30px;
    }
}

.wrapper .section .content .l-title-01::before {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 15px 0 0 15px;
    background-color: #2f89ca;
    top: 50%;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-01::before {
        width: calc(50% - 110px);
        height: 6px;
        top: 48%;
        border-radius: 20px 0 0 20px;
    }
}

.wrapper .section .content .l-title-01::after {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 0 15px 15px 0;
    background-color: #2f89ca;
    top: 50%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-01::after {
        width: calc(50% - 110px);
        height: 6px;
        top: 48%;
        border-radius: 0 20px 20px 0;
    }
}

.wrapper .section .content .l-title-01 h3 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    width: 440px;
    padding: 35px 20px 30px;
    color: #fff;
    z-index: 0;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-01 h3 {
        font-size: 26px;
        letter-spacing: 2px;
        width: 230px;
        padding: 16px 15px 13px;
    }
}

.wrapper .section .content .l-title-01 h3::before {
    content: '';
    position: absolute;
    background-image: url("../img/title_bg_01.png");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper .section .content .l-title-02 {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-02 {
        margin-bottom: 30px;
    }
}

.wrapper .section .content .l-title-02::before {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 15px 0 0 15px;
    background-color: #a4356c;
    top: 50%;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-02::before {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 20px 0 0 20px;
        top: 48%;
    }
}

.wrapper .section .content .l-title-02::after {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 0 15px 15px 0;
    background-color: #a4356c;
    top: 50%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-02::after {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 0 20px 20px 0;
        top: 48%;
    }
}

.wrapper .section .content .l-title-02 h3 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    width: 440px;
    padding: 35px 20px 30px;
    color: #fff;
    z-index: 0;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-02 h3 {
        font-size: 26px;
        letter-spacing: 2px;
        width: 230px;
        padding: 16px 15px 13px;
    }
}

.wrapper .section .content .l-title-02 h3::before {
    content: '';
    position: absolute;
    background-image: url("../img/title_bg_02.png");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper .section .content .l-title-03 {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-03 {
        margin-bottom: 30px;
    }
}

.wrapper .section .content .l-title-03::before {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 15px 0 0 15px;
    background-color: #d34658;
    top: 50%;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-03::before {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 20px 0 0 20px;
        top: 48%;
    }
}

.wrapper .section .content .l-title-03::after {
    content: '';
    position: absolute;
    width: calc(50% - 210px);
    height: 13px;
    border-radius: 0 15px 15px 0;
    background-color: #d34658;
    top: 50%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-03::after {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 0 20px 20px 0;
        top: 48%;
    }
}

.wrapper .section .content .l-title-03 h3 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    width: 440px;
    padding: 35px 20px 30px;
    color: #fff;
    z-index: 0;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-03 h3 {
        font-size: 26px;
        letter-spacing: 2px;
        width: 230px;
        padding: 16px 15px 13px;
    }
}

.wrapper .section .content .l-title-03 h3::before {
    content: '';
    position: absolute;
    background-image: url("../img/title_bg_03.png");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper .section .content .l-title-04 {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-04 {
        margin-bottom: 30px;
    }
}

.wrapper .section .content .l-title-04::before {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 15px 0 0 15px;
    background-color: #0072cc;
    top: 50%;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-04::before {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 20px 0 0 20px;
        top: 48%;
    }
}

.wrapper .section .content .l-title-04::after {
    content: '';
    position: absolute;
    width: calc(50% - 210px);
    height: 13px;
    border-radius: 0 15px 15px 0;
    background-color: #0072cc;
    top: 50%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-04::after {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 0 20px 20px 0;
        top: 48%;
    }
}

.wrapper .section .content .l-title-04 h3 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    width: 440px;
    padding: 35px 20px 30px;
    color: #fff;
    z-index: 0;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-04 h3 {
        font-size: 26px;
        letter-spacing: 2px;
        width: 230px;
        padding: 16px 15px 13px;
    }
}

.wrapper .section .content .l-title-04 h3::before {
    content: '';
    position: absolute;
    background-image: url("../img/title_bg_04.png");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper .section .content .l-title-05 {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-05 {
        margin-bottom: 30px;
    }
}

.wrapper .section .content .l-title-05::before {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 15px 0 0 15px;
    background-color: #f7c906;
    top: 50%;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-05::before {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 20px 0 0 20px;
        top: 48%;
    }
}

.wrapper .section .content .l-title-05::after {
    content: '';
    position: absolute;
    width: calc(50% - 210px);
    height: 13px;
    border-radius: 0 15px 15px 0;
    background-color: #f7c906;
    top: 50%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-05::after {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 0 20px 20px 0;
        top: 48%;
    }
}

.wrapper .section .content .l-title-05 h3 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    width: 440px;
    padding: 35px 20px 30px;
    color: #fff;
    z-index: 0;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-05 h3 {
        font-size: 26px;
        letter-spacing: 2px;
        width: 230px;
        padding: 16px 15px 13px;
    }
}

.wrapper .section .content .l-title-05 h3::before {
    content: '';
    position: absolute;
    background-image: url("../img/title_bg_05.png");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper .section .content .l-title-06 {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-06 {
        margin-bottom: 30px;
    }
}

.wrapper .section .content .l-title-06::before {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 15px 0 0 15px;
    background-color: #96d200;
    top: 50%;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-06::before {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 20px 0 0 20px;
        top: 48%;
    }
}

.wrapper .section .content .l-title-06::after {
    content: '';
    position: absolute;
    width: calc(50% - 210px);
    height: 13px;
    border-radius: 0 15px 15px 0;
    background-color: #96d200;
    top: 50%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-06::after {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 0 20px 20px 0;
        top: 48%;
    }
}

.wrapper .section .content .l-title-06 h3 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    width: 440px;
    padding: 35px 20px 30px;
    color: #fff;
    z-index: 0;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-06 h3 {
        font-size: 26px;
        letter-spacing: 2px;
        width: 230px;
        padding: 16px 15px 13px;
    }
}

.wrapper .section .content .l-title-06 h3::before {
    content: '';
    position: absolute;
    background-image: url("../img/title_bg_06.png");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper .section .content .l-title-07 {
    position: relative;
    text-align: center;
    z-index: 0;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-07 {
        margin-bottom: 30px;
    }
}

.wrapper .section .content .l-title-07::before {
    content: '';
    position: absolute;
    width: calc(50% - 209px);
    height: 13px;
    border-radius: 15px 0 0 15px;
    background-color: #3d90b8;
    top: 50%;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-07::before {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 20px 0 0 20px;
        top: 48%;
    }
}

.wrapper .section .content .l-title-07::after {
    content: '';
    position: absolute;
    width: calc(50% - 210px);
    height: 13px;
    border-radius: 0 15px 15px 0;
    background-color: #3d90b8;
    top: 50%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-07::after {
        width: calc(50% - 110px);
        height: 6px;
        border-radius: 0 20px 20px 0;
        top: 48%;
    }
}

.wrapper .section .content .l-title-07 h3 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    width: 440px;
    padding: 35px 20px 30px;
    color: #fff;
    z-index: 0;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .l-title-07 h3 {
        font-size: 26px;
        letter-spacing: 2px;
        width: 230px;
        padding: 16px 15px 13px;
    }
}

.wrapper .section .content .l-title-07 h3::before {
    content: '';
    position: absolute;
    background-image: url("../img/title_bg_07.png");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper .section .content .country {
    width: 1080px;
    max-width: 100%;
    margin: 0 auto;
}

.wrapper .section .content .country a {
    text-decoration: none;
    text-align: center;
    display: block;
    max-width: 260px;
    margin: 0 auto;
}

/* .wrapper .section .content .country a.other {
    max-width: 100%;
    width: 100%;
} */

.wrapper .section .content .country a:hover img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .section .content .country a:hover p {
    opacity: 0.8;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .section .content .country a img {
    margin: 0 auto;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .section .content .country a p {
    font-size: 25px;
    padding: 10px 20px;
    font-weight: bold;
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
    border-radius: 30px;
    color: #fff;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

@media (max-width: 768px) {
    .wrapper .section .content .country a p {
        font-size: 15px;
        padding: 8px 10px;
        white-space: nowrap;
        border-radius: 15px;
    }
}

.wrapper .section .content .country a .color01 {
    background-color: #2f89ca;
}

.wrapper .section .content .country a .color02 {
    background-color: #a42036;
}

.wrapper .section .content .country a .color03 {
    background-color: #ac4d00;
}

.wrapper .section .content .country a .color04 {
    background-color: #ae549c;
}

.wrapper .section .content .country a .color05 {
    background-color: #327ead;
}

.wrapper .section .content .country a .color06 {
    background-color: #ce9e44;
}

.wrapper .section .content .country a .color07 {
    background-color: #da5252;
}

.wrapper .section .content .country a .color08 {
    background-color: #9066d7;
}

.wrapper .section .content .country a .color09 {
    background-color: #64a03e;
}

.wrapper .section .content .country a .color10 {
    background-color: #2660ad;
}

.wrapper .section .content .country a .color11 {
    background-color: #519a82;
}

.wrapper .section .content .country a .color12 {
    background-color: #4abed1;
}

.wrapper .section .content .country a .color13 {
    background-color: #a5998a;
}

.wrapper .section .content .discount {
    width: 1080px;
    max-width: 100%;
    margin: 0 auto;
}

.wrapper .section .content .discount a {
    text-decoration: none;
    text-align: center;
    display: block;
    max-width: 260px;
    margin: 0 auto;
}

.wrapper .section .content .discount a:hover img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .section .content .discount a:hover p {
    opacity: 0.8;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .section .content .discount a img {
    margin: 0 auto;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .section .content .discount a p {
    font-size: 25px;
    padding: 10px 20px;
    font-weight: bold;
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
    border-radius: 30px;
    color: #fff;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

@media (max-width: 768px) {
    .wrapper .section .content .discount a p {
        font-size: 18px;
        padding: 10px 10px;
        white-space: nowrap;
    }
}

.wrapper .section .content .discount a .color01 {
    background-color: #f18d00;
}

.wrapper .section .content .discount a .color02 {
    background-color: #0055a2;
}

.wrapper .section .content .discount a .color03 {
    background-color: #a5998a;
}

.wrapper .section .content .discount a .color04 {
    background-color: #59ad47;
}

.wrapper .section .content .discount a .color05 {
    background-color: #327ead;
}

.wrapper .section .content .discount a .color06 {
    background-color: #d45527;
    font-size: 22px;
    padding: 12px 0px;
}

.wrapper .section .content .discount a .color07 {
    background-color: #564ca1;
}

.wrapper .section .content .discount a .color08 {
    background-color: #e01e69;
}

.wrapper .section .content .partner .partner-item {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
}

.wrapper .section .content .partner .partner-item .partner-title {
    margin-bottom: 10px;
}

.wrapper .section .content .partner .partner-item .partner-title h5 {
    color: #595b5d;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .partner .partner-item .partner-title h5 {
        font-size: 20px;
    }
}

.wrapper .section .content .partner .partner-item .partner-title h5::before {
    content: '';
    display: inline-block;
    background-image: url(../img/coordinate.png);
    margin-right: 6px;
    width: 23px;
    height: 33px;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: -4px;
}

@media (max-width: 768px) {
    .wrapper .section .content .partner .partner-item .partner-title h5::before {
        width: 18px;
        height: 26px;
        margin-right: 3px;
    }
}

.wrapper .section .content .partner .partner-item a {
    display: block;
    -webkit-box-shadow: 0px 3px 5px 1px #ccc;
    box-shadow: 0px 3px 5px 1px #ccc;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .section .content .partner .partner-item a:hover {
    -webkit-box-shadow: 0px 5px 5px 1px #989898;
    box-shadow: 0px 5px 5px 1px #989898;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.wrapper .section .content .apply .apply-title {
    margin-bottom: 10px;
}

.wrapper .section .content .apply .apply-title h5 {
    color: #ff2b44;
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .apply .apply-title h5 {
        font-size: 20px;
    }
}

.wrapper .section .content .apply .apply-title h5::before {
    content: '';
    display: inline-block;
    background-image: url(../img/coordinate_y.png);
    margin-right: 6px;
    width: 40px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: -12px;
}

@media (max-width: 768px) {
    .wrapper .section .content .apply .apply-title h5::before {
        width: 18px;
        height: 26px;
        margin-right: 3px;
    }
}

.wrapper .section .content .apply .apply-item {
    width: 100%;
    margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .wrapper .section .content .apply .apply-item .col-4 {
        -webkit-columns: 1;
        columns: 1;
    }
}

.wrapper .section .content .apply .apply-item img {
    width: 100%;
    max-width: 100%;
}

.wrapper .section .content .apply .apply-item a {
    width: 100%;
    max-width: 100%;
    display: block;
}

.wrapper .section .content .apply .apply-item a img {
    width: 100%;
    max-width: 100%;
}

.wrapper .section .content .apply .apply-item .apply_op {
    text-align: center;
}

.wrapper .section .content .apply .apply-item .apply_op img {
    width: auto;
    max-width: 100%;
}

.wrapper .section .content .apply .apply-item .apply_op {
    position: relative;
}

.wrapper .section .content .apply .apply-item .apply_op .z_close {
    position: absolute;
    right: 50px;
    top: 50px;
    padding: 25px 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .wrapper .section .content .apply .apply-item .apply_op .z_close {
        right: 0;
        top: 10px;
        padding: 15px 10px;
    }
}

.wrapper .section .content .apply .apply-item .apply_op .z_close span,
.wrapper .section .content .apply .apply-item .apply_op .z_close span:after,
.wrapper .section .content .apply .apply-item .apply_op .z_close span:before {
    width: 30px;
    height: 2px;
    border-radius: 5px;
}

@media (max-width: 768px) {

    .wrapper .section .content .apply .apply-item .apply_op .z_close span,
    .wrapper .section .content .apply .apply-item .apply_op .z_close span:after,
    .wrapper .section .content .apply .apply-item .apply_op .z_close span:before {
        width: 15px;
    }
}

.wrapper .section .content .apply .apply-item .apply_op .z_close span {
    display: block;
    position: relative;
    background: #f4884700;
}

.wrapper .section .content .apply .apply-item .apply_op .z_close span::before {
    content: "";
    position: absolute;
    background: #f48847;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.wrapper .section .content .apply .apply-item .apply_op .z_close span::after {
    content: "";
    position: absolute;
    background: #f48847;
    top: 0;
    right: 0;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wrapper .section .content .apply .apply-item .apply_op01,
.wrapper .section .content .apply .apply-item .apply_op02,
.wrapper .section .content .apply .apply-item .apply_op03,
.wrapper .section .content .apply .apply-item .apply_op04,
.wrapper .section .content .apply .apply-item .apply_op05 {
    display: none;
}

.wrapper .section .content .internet {
    text-align: center;
    margin-bottom: 50px;
}

.wrapper .section .content .internet img {
    width: auto;
    max-width: 100%;
}

.wrapper .section .content .network {
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    .wrapper .section .content .network {
        padding-bottom: 0px;
    }
}

.wrapper .section .content .network h6 {
    font-size: 30px;
    margin: 0;
    color: #343434;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wrapper .section .content .network h6 {
        font-size: 24px;
    }
}

.wrapper .section .content .network .network-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 3px solid #dbe6ed;
    padding: 20px;
}

.wrapper .section .content .network .network-item img {
    width: 100px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .wrapper .section .content .network .network-item img {
        width: 50px;
    }
}

.wrapper .section .content .network .network-item p {
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wrapper .section .content .network .network-item p {
        font-size: 18px;
    }
}

.wrapper .section .content .network p {
    font-size: 20px;
    margin: 0;
    color: #000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wrapper .section .content .network p {
        font-size: 14px;
        padding: 10px;
    }
}

.wrapper .section .content .c-title-01 {
    position: relative;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-01 {
        margin-bottom: 50px;
    }
}

.wrapper .section .content .c-title-01::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #2f89ca;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-01::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-01 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-01 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-01 h5 {
    position: absolute;
    color: #2f89ca;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-01 h5 {
        font-size: 24px;
        top: 16px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-01 p {
    position: absolute;
    color: #2f89ca;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-01 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-01 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-01 p span {
    font-size: 18px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-01 p span {
        font-size: 14px;
    }
}

.wrapper .section .content .c-title-01 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-01 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-01 .c-title-01-btn {
    position: absolute;
    right: 0px;
    top: -38px;
}

.wrapper .section .content .c-title-01 .c-title-01-btn img {
    width: 300px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-01 .c-title-01-btn {
        right: unset;
        left: 110px;
        top: unset;
        bottom: -40px;
    }

    .wrapper .section .content .c-title-01 .c-title-01-btn img {
        width: 150px;
    }
}

.wrapper .section .content .c-title-02 {
    position: relative;
    margin-bottom: 30px;
}

.wrapper .section .content .c-title-02::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #a42036;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-02::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-02 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-02 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-02 h5 {
    position: absolute;
    color: #a42036;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-02 h5 {
        font-size: 24px;
        top: 16px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-02 p {
    position: absolute;
    color: #a42036;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-02 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-02 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-02 p span {
    font-size: 18px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-02 p span {
        font-size: 14px;
    }
}

.wrapper .section .content .c-title-02 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-02 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-03 {
    position: relative;
    margin-bottom: 30px;
}

.wrapper .section .content .c-title-03::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #ac4d00;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-03::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-03 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-03 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-03 h5 {
    position: absolute;
    color: #ac4d00;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-03 h5 {
        font-size: 24px;
        top: 16px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-03 p {
    position: absolute;
    color: #ac4d00;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-03 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-03 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-03 p span {
    font-size: 18px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-03 p span {
        font-size: 14px;
    }
}

.wrapper .section .content .c-title-03 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-03 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-04 {
    position: relative;
    margin-bottom: 30px;
}

.wrapper .section .content .c-title-04::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #ae549c;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-04::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-04 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-04 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-04 h5 {
    position: absolute;
    color: #ae549c;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-04 h5 {
        font-size: 24px;
        top: auto;
        left: 110px;
        bottom: 57px;
    }
}

.wrapper .section .content .c-title-04 h5 span {
    font-size: 20px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-04 h5 span {
        font-size: 12px;
        line-height: 17px;
    }
}

.wrapper .section .content .c-title-04 p {
    position: absolute;
    color: #ae549c;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-04 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-04 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-04 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-04 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-05 {
    position: relative;
    margin-bottom: 30px;
}

.wrapper .section .content .c-title-05::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #327ead;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-05::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-05 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-05 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-05 h5 {
    position: absolute;
    color: #327ead;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-05 h5 {
        font-size: 24px;
        top: auto;
        left: 110px;
        bottom: 57px;
    }
}

.wrapper .section .content .c-title-05 h5 span {
    font-size: 20px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-05 h5 span {
        font-size: 12px;
        line-height: 17px;
    }
}

.wrapper .section .content .c-title-05 p {
    position: absolute;
    color: #327ead;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-05 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-05 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-05 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-05 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-06 {
    position: relative;
    margin-bottom: 30px;
}

.wrapper .section .content .c-title-06::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #ce9e44;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-06::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-06 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-06 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-06 h5 {
    position: absolute;
    color: #ce9e44;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-06 h5 {
        font-size: 24px;
        top: auto;
        left: 110px;
        bottom: 57px;
    }
}

.wrapper .section .content .c-title-06 h5 span {
    font-size: 20px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-06 h5 span {
        font-size: 12px;
        line-height: 17px;
    }
}

.wrapper .section .content .c-title-06 p {
    position: absolute;
    color: #ce9e44;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-06 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-06 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-06 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-06 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-07 {
    position: relative;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07 {
        margin-bottom: 90px;
    }
}

.wrapper .section .content .c-title-07::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #da5252;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-07 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-07 h5 {
    position: absolute;
    color: #da5252;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07 h5 {
        font-size: 24px;
        top: auto;
        left: 110px;
        bottom: 57px;
    }
}

.wrapper .section .content .c-title-07 h5 span {
    font-size: 20px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07 h5 span {
        font-size: 12px;
        line-height: 17px;
    }
}

.wrapper .section .content .c-title-07 p {
    position: absolute;
    color: #000;
    font-size: 16px;
    margin: 0;
    /* font-weight: bold; */
    top: 115px;
    left: 225px;
}

.wrapper .section .content .c-title-07 p span {
    color: #da5252;
    font-size: 100%;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-07 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-07 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-07 .c-title-07-btn {
    position: absolute;
    right: 0px;
    top: 0px;
}

.wrapper .section .content .c-title-07 .c-title-07-btn img {
    width: 300px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07 .c-title-07-btn {
        right: unset;
        left: 0px;
        top: unset;
        bottom: -80px;
    }

    .wrapper .section .content .c-title-07 .c-title-07-btn img {
        width: 150px;
    }
}

.wrapper .section .content .c-title-07 .c-title-07-btn2 {
    position: absolute;
    right: 0px;
    bottom: 0px
}

.wrapper .section .content .c-title-07 .c-title-07-btn2 img {
    width: 300px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-07 .c-title-07-btn2 {

        top: unset;
        bottom: -77px;
    }

    .wrapper .section .content .c-title-07 .c-title-07-btn2 img {
        width: 150px;
    }
}

.wrapper .section .content .c-title-08 {
    position: relative;
    margin-bottom: 30px;
}

.wrapper .section .content .c-title-08::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #9066d7;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-08::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-08 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-08 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-08 h5 {
    position: absolute;
    color: #9066d7;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-08 h5 {
        font-size: 24px;
        top: auto;
        left: 110px;
        bottom: 57px;
    }
}

.wrapper .section .content .c-title-08 h5 span {
    font-size: 20px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-08 h5 span {
        font-size: 12px;
        line-height: 17px;
    }
}

.wrapper .section .content .c-title-08 p {
    position: absolute;
    color: #9066d7;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-08 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-08 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-08 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-08 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-09 {
    position: relative;
    margin-bottom: 50px;
}

.wrapper .section .content .c-title-09::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #64a03e;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-09::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-09 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-09 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-09 h5 {
    position: absolute;
    color: #64a03e;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-09 h5 {
        font-size: 24px;
        top: auto;
        left: 110px;
        bottom: 57px;
    }
}

.wrapper .section .content .c-title-09 h5 span {
    font-size: 20px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-09 h5 span {
        font-size: 12px;
        line-height: 17px;
    }
}

.wrapper .section .content .c-title-09 p {
    position: absolute;
    color: #64a03e;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-09 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-09 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-09 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-09 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .c-title-10 {
    position: relative;
    margin-bottom: 30px;
}

.wrapper .section .content .c-title-10::before {
    content: '';
    position: absolute;
    width: calc(100% - 194px);
    height: 6px;
    border-radius: 0 15px 15px 0;
    background-color: #4abed1;
    top: 49%;
    right: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-10::before {
        width: calc(100% - 98px);
        height: 4px;
    }
}

.wrapper .section .content .c-title-10 img {
    width: 200px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-10 img {
        width: 100px;
    }
}

.wrapper .section .content .c-title-10 h5 {
    position: absolute;
    color: #4abed1;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    top: 35px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-10 h5 {
        font-size: 24px;
        top: auto;
        left: 110px;
        bottom: 57px;
    }
}

.wrapper .section .content .c-title-10 h5 span {
    font-size: 20px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-10 h5 span {
        font-size: 12px;
        line-height: 17px;
    }
}

.wrapper .section .content .c-title-10 p {
    position: absolute;
    color: #4abed1;
    font-size: 26px;
    margin: 0;
    font-weight: bold;
    top: 115px;
    left: 225px;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-10 p {
        font-size: 18px;
        top: 55px;
        left: 110px;
    }
}

.wrapper .section .content .c-title-10 p b {
    color: #f15a24;
}

.wrapper .section .content .c-title-10 .new::before {
    content: '';
    display: inline-block;
    background-image: url(../img/new.png);
    width: 55px;
    height: 40px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-size: cover;
}

@media (max-width: 768px) {
    .wrapper .section .content .c-title-10 .new::before {
        width: 30px;
        height: 24px;
    }
}

.wrapper .section .content .price {
    position: relative;
    margin-bottom: 100px;
}

.wrapper .section .content .price a {
    width: 100%;
    max-width: 100%;
    min-height: 330px;
    background-color: #fff;
    border-radius: 15px;
    display: block;
    text-decoration: none;
    overflow: hidden;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    height: 100%;
}

@media (max-width: 575px) {
    .wrapper .section .content .price a {
        height: auto;
    }
}

.wrapper .section .content .price a:hover {
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    -webkit-box-shadow: 2px 5px 6px 1px #ccc;
    box-shadow: 2px 5px 6px 1px #ccc;
}

.wrapper .section .content .price a h6 {
    font-size: 34px;
    color: #fff;
    font-weight: bold;
    padding: 15px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .wrapper .section .content .price a h6 {
        font-size: 24px;
        padding: 10px;
    }
}

.wrapper .section .content .price a .text {
    padding: 10px 20px;
}


.wrapper .section .content .price a .text.text18 .hot {
    position: relative;
    text-align: center;
    font-size: 25px;
    color: #f15a24;
    font-weight: bold;
    margin: 0;
    font-family: 'Arial';
}

@media (max-width: 768px) {
    .wrapper .section .content .price a .text .hot {
        font-size: 22px;
    }
}

.wrapper .section .content .price a .text .hot::before {
    content: '';
    background-image: url(../img/hot.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 36px;
    display: inline-block;
    vertical-align: -5px;
    margin-right: 4px;
}

.wrapper .section .content .price a .text .gift {
    position: relative;
}

.wrapper .section .content .price a .text .gift::before {
    content: '';
    background-image: url(../img/gift.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: -3px;
}

.wrapper .section .content .price a .text p {
    text-align: center;
    font-size: 22px;
    color: #000;
    margin: 0;
    font-weight: bold;
}

.wrapper .section .content .price a .text.text18 p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .wrapper .section .content .price a .text p {
        font-size: 18px;
    }
}

.wrapper .section .content .price a .text .o_price {
    font-size: 18px;
    text-decoration: line-through;
    color: #000;
}

.wrapper .section .content .price a .text .o_price.pl-5px {
    padding-left: 5px;
}

@media (max-width: 768px) {
    .wrapper .section .content .price a .text .o_price {
        font-size: 18px;
    }
}

.wrapper .section .content .price a .text .special {
    font-size: 28px;
    color: #f15a24;
    font-weight: bold;
    padding: 0 5px;
    line-height: 32px;
}

.wrapper .section .content .price a .text.text2 .special {
    font-size: 24px;
}

.wrapper .section .content .price a .text.text18 .special {
    font-size: 24px;
}

@media (max-width: 768px) {
    .wrapper .section .content .price a .text .special {
        font-size: 24px;
    }
}

.wrapper .section .content .price a .text span {
    text-align: center;
    font-size: 16px;
    color: #000;
    display: block;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .price a .text span {
        font-size: 14px;
    }
}

.wrapper .section .content .price a .detail {
    font-size: 18px;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .content .price a .detail {
        font-size: 16px;
    }
}

.wrapper .section .content .price a .detail::after {
    content: '';
    display: inline-block;
    background-image: url(../img/arrow.png);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 5px;
    vertical-align: -3px;
}

.wrapper .section .content .price a .color-jp {
    background-color: #2f89ca;
}

.wrapper .section .content .price a .color-china {
    background-color: #a42036;
}

.wrapper .section .content .price a .color-hongkong {
    background-color: #ac4d00;
}

.wrapper .section .content .price a .color-southeast-asia {
    background-color: #ae549c;
}

.wrapper .section .content .price a .color-vietnam {
    background-color: #327ead;
}

.wrapper .section .content .price a .color-middle-east {
    background-color: #ce9e44;
}

.wrapper .section .content .price a .color-usa {
    background-color: #da5252;
}

.wrapper .section .content .price a .color-australia {
    background-color: #9066d7;
}

.wrapper .section .content .price a .color-europe {
    background-color: #64a03e;
}

.wrapper .section .content .price a .color-pw {
    background-color: #4abed1;
}

.wrapper .section .content .note {
    padding: 0 20px;
    height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .wrapper .section .content .note {
        padding: 0;
    }
}

.wrapper .section .content .note ol li {
    list-style-type: decimal;
    font-size: 18px;
    font-weight: bold;
    text-align: justify;
}

@media (max-width: 768px) {
    .wrapper .section .content .note ol li {
        font-size: 16px;
    }
}

.wrapper .section .content .note ol li a {
    display: inline-block;
    color: #1111ff;
    text-decoration: underline;
}

.wrapper .section .content .note_op {
    height: auto;
    overflow: visible;
    padding-bottom: 30px;
}

.wrapper .section .open_note {
    position: absolute;
    width: 100%;
    height: 150px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(bottom, white 30%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(bottom, white 30%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, white 30%, rgba(255, 255, 255, 0) 100%);
    bottom: -30px;
}

.wrapper .section .open_note .open_note_btn {
    position: absolute;
    bottom: 35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
}

.wrapper .section .open_note .open_note_btn p {
    text-align: center;
    color: #2f89ca;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .open_note .open_note_btn p {
        font-size: 18px;
    }
}

.wrapper .section .open_note .open_note_btn p:nth-child(2) {
    display: none;
}

.wrapper .section .open_note .open_note_btn::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #2f89ca;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: -10px;
    left: 44%;
}

.wrapper .section .open_note_active {
    background: none;
}

.wrapper .section .open_note_active .open_note_btn p:nth-child(1) {
    display: none;
}

.wrapper .section .open_note_active .open_note_btn p:nth-child(2) {
    display: block;
}

.wrapper .section .open_note_active .open_note_btn::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #2f89ca;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    bottom: -15px;
    left: 40%;
}

.wrapper .section .body-bg {
    position: absolute;
    width: 100%;
    height: 855px;
    background-image: url(../img/body-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -250px;
    z-index: -1;
}

@media (max-width: 768px) {
    .wrapper .section .body-bg {
        height: 500;
    }
}

.wrapper .section .five_content {
    max-width: 1200px;
    padding: 80px 20px;
    margin: 0 auto;
    z-index: 1;
}

@media (max-width: 768px) {
    .wrapper .section .five_content {
        padding: 50px 20px;
    }
}

.wrapper .section .five_content .item {
    position: relative;
    margin: 25px 0 0;
    height: 100%;
}

@media (max-width: 768px) {
    .wrapper .section .five_content .item {
        height: auto;
    }
}

.wrapper .section .five_content .item .title {
    display: inline-block;
    position: absolute;
    background-color: #28b384;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    top: -20px;
    left: 0;
    z-index: 2;
    font-size: 20px;
}

@media (max-width: 768px) {
    .wrapper .section .five_content .item .title {
        font-size: 16px;
    }
}

.wrapper .section .five_content .item .text {
    position: relative;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    margin-left: 25px;
    margin-top: 25px;
    -webkit-box-shadow: 3px 3px 3px 1px #bbb;
    box-shadow: 3px 3px 3px 1px #bbb;
    height: calc(100% - 25px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .wrapper .section .five_content .item .text {
        height: auto;
        padding: 20px;
    }
}

.wrapper .section .five_content .item .text::before {
    content: '';
    position: absolute;
    width: 98%;
    height: 88%;
    border-radius: 15px;
    border: 1px solid #cbcbcb;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 768px) {
    .wrapper .section .five_content .item .text::before {
        width: 97%;
        height: 90%;
    }
}

.wrapper .section .five_content .item .text p {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wrapper .section .five_content .item .text p {
        font-size: 16px;
    }
}

.wrapper .section .five_content .l-title {
    text-align: center;
    margin-bottom: 50px;
}

.wrapper .section .five_content .l-title img {
    width: auto;
    max-width: 100%;
}

.wrapper .section .five_content .five_price_item h6 {
    color: #fff;
}

@media screen and (min-width: 768px) {
    .wrapper .section .five_content .col-3 {
        -webkit-columns: 1;
        columns: 1;
    }
}

.wrapper .section .five_content a {
    display: block;
    text-align: center;
}

.wrapper .section .five_content a img {
    width: auto;
    max-width: 100%;
}

.wrapper .section .five_content .note {
    padding: 0 20px;
    height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .wrapper .section .five_content .note {
        padding: 0;
    }
}

.wrapper .section .five_content .note ol li {
    list-style-type: decimal;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .wrapper .section .five_content .note ol li {
        font-size: 16px;
    }
}

.wrapper .section .five_content .note ol li ul li {
    list-style-type: disc;
}

.wrapper .section .five_content .note ol li a {
    display: inline-block;
    color: #1111ff;
    text-decoration: underline;
}

.wrapper .section .five_content .note_op {
    height: auto;
    overflow: visible;
    padding-bottom: 30px;
}

.wrapper .section .five_open_note {
    position: absolute;
    width: 100%;
    height: 150px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, white), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(bottom, white 30%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(bottom, white 30%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, white 30%, rgba(255, 255, 255, 0) 100%);
    bottom: -30px;
}

.wrapper .section .five_open_note .five_open_note_btn {
    position: absolute;
    bottom: 35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
}

.wrapper .section .five_open_note .five_open_note_btn p {
    text-align: center;
    color: #28b384;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .wrapper .section .five_open_note .five_open_note_btn p {
        font-size: 18px;
    }
}

.wrapper .section .five_open_note .five_open_note_btn p:nth-child(2) {
    display: none;
}

.wrapper .section .five_open_note .five_open_note_btn::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #28b384;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: -10px;
    left: 44%;
}

.wrapper .section .five_open_note_active {
    background: none;
}

.wrapper .section .five_open_note_active .five_open_note_btn p:nth-child(1) {
    display: none;
}

.wrapper .section .five_open_note_active .five_open_note_btn p:nth-child(2) {
    display: block;
}

.wrapper .section .five_open_note_active .five_open_note_btn::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #28b384;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    bottom: -15px;
    left: 40%;
}

.wrapper .bg-gray {
    background-color: #f9f5f3;
}

.bg-white {
    background-color: #fff;
}


.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    z-index: 1;

}

.wrapper .kv_mo .slick-slide {
    height: auto;
}

.slick-dots li button:before {
    font-size: 31px;
}

@media (max-width: 767px) {
    .slick-dots li button:before {
        font-size: 18px;
    }
}

.slick-prev::before,
.slick-next::before {
    display: none;
}

.slick-prev,
.slick-prev:hover,
.slick-prev:focus {
    left: 5px;
    background-image: url("../img/kv_btn_l.png");
}

.slick-next,
.slick-next:hover,
.slick-next:focus {
    right: 5px;
    background-image: url("../img/kv_btn_r.png");
}

.slick-dots {
    bottom: 15px;

}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0065ac;

}

.slick-dots li button::before {

    opacity: 1;
    color: #ffffff;

}

.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
    width: 13px;
    height: 13px;
}

.wrapper .kv_mo img {
    width: 100%;

}

@media(min-width: 768px) and (max-width: 1000px) {
    .wrapper .header {
        position: fixed;
        top: 98px;
    }

    section#header {
        padding: 0;
        position: fixed !important;
        top: 0;
        z-index: 50;
        background: #fff;

    }

    .wrapper {
        padding-top: 154px;
    }
}

.wrapper .section .content .price a .text {
    padding: 10px 15px;
}

.am_icon1 {
    max-width: 100%;
    display: inline-block;
    width: 55px;
    margin-top: -6px;
}

.wrapper .section .content .c-title-09 p.min_txt {
    font-size: 100%;
}

@media(max-width: 767px) {
    .wrapper .section .content .c-title-09 p.min_txt {
        font-size: 87%;
    }
}

.wrapper .section .content .note li .disc li {
    list-style-type: disc;

}

.wrapper .section .content .price [class*=col-] {
    display: flex;
}

@media(min-width: 768px) {
    .wrapper .section .content .price a {
        min-height: 363px;
    }
}

/* modal */

.modal .modal-content{
    border: none;
    background: none;
}

.modal .modal-header{
    position: relative;
    background-color: #066292;
    color: #fff;
    justify-content: center;
    padding: 0.5rem;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    border-bottom: 1px solid #066292;
}

.modal .modal-header .modal-title{
    font-weight: 700;
}

.modal .modal-header .close{
    position: absolute;
    top: 20px;
    right: 20px;
}

.modal .modal-header .close span{
    color: #fff;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 12px;
}

.modal .modal-body{
    background-color: #fff;
    border: 3px solid #066292;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    padding: 1rem 1.5rem;
}

.modal .modal-body ul{
    margin-bottom: 0px;
}

.modal .modal-body ul li{
    position: relative;
    color: #231815;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal .modal-body ul li:last-child{

    margin-bottom: 0px;
}

.modal .modal-body ul li span{
    font-size: 100%;
    color: red;

}

.modal .modal-body ul li:before{
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 10px;
    left: -25px;
    background-color: #231815;
}