@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nobile:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Kanit', 'Noto Sans TC', 'Microsoft JhengHei', sans-serif !important;
    overflow: hidden;
    overflow-y: auto;
    color: #1c2631;
    font-weight: 300;
    background: #f7f7f7;
}

body.page {
    padding-top: 90px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 {
    opacity: 0;
    pointer-events: none;
}

input {
    border-radius: 0 !important;
}

p {
    text-align: justify;
    text-justify: inter-ideograph;
}

.clearfix {
    clear: both;
    display: block;
    width: 100%;
}

a,
a:hover {
    text-decoration: none;
}

.pad,
.mobile {
    display: none;
}

.desktop {
    display: block;
}

.wrapper {
    max-width: 1250px;
    margin: 0px auto;
    padding: 0 45px;
    position: relative;
}

/* Hambuger style */
.hamburger {
    width: 23px;
    height: 30px;
    float: left;
    margin: 4px 15px 0 0;
    cursor: pointer;
    z-index: 99;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.hamburger span {
    display: block;
    margin: 5px auto;
    background-color: #00468c;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    transition: all 0.5s ease;
}

.hamburger.is-opened span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-opened span:nth-child(2) {
    transform: scaleX(0);
}

.hamburger.is-opened span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

header {
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 22px 0;
    line-height: 46px;
    box-shadow: 0 8px 10px 0 rgba(210, 210, 210, 0.2);
}

header .logo {
    float: left;
    font-family: 'Nobile', sans-serif !important;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffd17f;
}

header .menu {
    display: flex;
}

header .menu > label,
header .menu > a {
    display: flex;
    align-items: center;
    margin-left: 40px;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #00468c;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
}

header .menu > label > img {
    width: 13px;
    height: 8px;
    margin-left: 5px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

header .menu > label.open > img {
    transform: rotate(180deg);
}

header .btn {
    float: right;
    line-height: 24px;
    padding: 11px 27px;
    border-radius: 10px;
    border: solid 1px #00468c;
    background-color: #00468c;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.44px;
    margin-left: 20px;
}

header .btn.white {
    background: #fff;
    color: #00468c;
}

header .submenu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    box-shadow: inset 0 8px 10px 0 rgba(210, 210, 210, 0.2), 0 8px 10px 0 rgba(210, 210, 210, 0.2);
    background-color: #fff;
    opacity: 0;
}

header label.open .submenu {
    max-height: 120px;
    opacity: 1;
}

header .submenu .wrapper {
    display: flex;
}

header .submenu a {
    display: block;
    padding: 20px 27px 20px 100px;
    position: relative;
    color: #1c2631;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
}

header .submenu a img {
    position: absolute;
    display: block;
    width: 46px;
    height: 46px;
    left: 27px;
    top: 0;
    bottom: 0;
    margin: auto;
}

header .submenu a b {
    display: block;
    color: #002245;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    letter-spacing: 1px;
}

header #label2 .submenu a {
    display: flex;
    align-items: center;
}

header #label2 .submenu a img,
header #label2 .submenu a b {
    margin-top: 0;
    margin-bottom: 0;
}

.fix-menu {
    display: none;
    position: fixed;
    right: 17px;
    bottom: 20px;
    z-index: 9;
}

.fix-menu a {
    display: block;
    width: 72px;
    margin-bottom: 10px;
}

.fix-menu a img {
    display: block;
    width: 100%;
}

footer {
    padding: 50px 0;
    background: #00468c;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
}

footer .left {
    float: left;
}

footer .left .logo {
    display: block;
    font-family: 'Nobile', sans-serif !important;
    font-size: 24px;
    line-height: 33px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffd17f;
    margin-bottom: 5px;
}

footer .left p {
    margin-bottom: 20px;
}

footer .left p a {
    color: #fff;
}

footer .box {
    float: right;
}

footer .link {
    float: left;
    margin-left: 60px;
}

footer .link title {
    display: block;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
}

footer .link title:after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #ffc45a;
    position: absolute;
    left: 0;
    bottom: -12px;
}

footer .link a {
    display: block;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.8px;
    color: #fff;
}

.home .kv {
    border-radius: 0 0 0 40px;
    background: url(../../img/v3/kv-bg-web@3x.png) right 12px top no-repeat #00468c;
    background-size: 678px 366px;
    padding: 195px 0 190px 0;
    color: #fff;
    position: relative;
}

.home .kv .wrapper {
    display: flex;
    align-items: center;
}

.home .kv .wrapper .txt {
    width: 41%;
}

.home .kv .wrapper .txt h2 {
    display: block;
    font-size: 30px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: 1px;
}

.home .kv .wrapper .txt strong {
    display: block;
    font-size: 56px;
    font-weight: 700;
    line-height: 83px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.home .kv .wrapper .txt p {
    font-size: 22px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: 0.4px;
}

.home .kv .wrapper .txt p + p {
    margin-bottom: 60px;
}

.home .kv .wrapper .txt p:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #ffa500;
    margin: 15px 15px 15px 0;
}

.home .kv .wrapper .img {
    width: 59%;
}

.home .kv .wrapper .img .cover {
    display: block;
    width: 100%;
    position: relative;
}

.home .kv .wrapper .img img:not(.cover) {
    display: block;
    position: absolute;
}

.home .kv .wrapper .img img.chart1 {
    width: 31.5%;
    right: 25.8%;
    top: 0;
    animation: float 3s ease-out infinite;
}

.home .kv .wrapper .img img.chart2 {
    width: 28.1%;
    right: 0;
    bottom: 27.5%;
    animation: float 2.5s ease-out infinite;
}

.home .kv .wrapper .img img.chart3 {
    width: 28%;
    left: 8.9%;
    bottom: 0;
    animation: float 3.5s ease-out infinite;
}

@keyframes float {
    50% {
        transform: translate(0, -20px);
    }
}

.free-btn {
    display: block;
    width: 318px;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 3px;
    color: #002245;
    position: relative;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0 rgba(73, 47, 0, 0.3);
    background-color: #ffc45a;
}

.free-btn small {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 2px;
}

.free-btn img {
    display: block;
    position: absolute;
    right: 70px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 52px;
    height: 14px;
    z-index: 1;
}

.free-btn:after {
    content: "";
    display: block;
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 0;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #fff;
}

.number-list {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 1;
}

.number-list .list {
    display: flex;
    align-items: center;
    padding: 48px 17px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
}

.number-list .list > div {
    width: 24%;
    color: #00468c;
    text-align: center;
    white-space: nowrap;
    position: relative;
}

.number-list .list > div:nth-of-type(3) {
    width: 28%;
}

.number-list .list > div:not(:last-of-type):after {
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: #ccdae8;
    margin: auto;
}

.number-list .list > div small {
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.5px;
}

.number-list .list > div small b {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    font-size: 46px;
    font-weight: 700;
    line-height: 69px;
    letter-spacing: 2px;
    color: #ffa500;
    margin-top: -30px;
}

.number-list .list > div strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0.6px;
    color: #00468c;
}

.home .case {
    padding: 200px 0 120px 0;
    overflow: hidden;
}

.h3-title {
    text-align: center;
}

h3 {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: 1.5px;
    color: #00468c;
    position: relative;
}

h3:before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: #ffd17f;
    position: absolute;
    top: -18px;
    left: -25px;
    z-index: 0;
}

h3 span {
    position: relative;
    z-index: 1;
}

.home .case .h3-title {
    margin-bottom: 57px;
}

.home .case .free-btn {
    margin: 40px auto 0 auto;
}

.home .case .list .card {
    width: 500px;
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    padding: 25px 40px 40px 40px;
    position: relative;
    margin: 0 20px;
}

.home .case .list .card strong {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.4px;
    color: #00468c;
    padding-bottom: 5px;
    border-bottom: solid 1.5px #ccdae8;
    margin-bottom: 12px;
    text-align: center;
}

.home .case .list .card strong span {
    display: inline-block;
    vertical-align: top;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 1px;
    color: #0facf3;
    margin: -20px 10px 0 10px;
}

.home .case .list .card p {
    font-size: 16px;
    line-height: 26px;
    height: 78px;
    letter-spacing: 0.2px;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.home .case .list .card .bottom {
    display: flex;
    align-items: center;
    width: 100%;
}

.home .case .list .card .bottom > div {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.62px;
    width: calc(100% - 200px);
}

.home .case .list .card .bottom > div img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    margin-right: 10px;
}

.home .case .list .card .bottom a {
    display: block;
    width: 200px;
    padding: 0 30px;
    line-height: 60px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0 rgba(9, 32, 43, 0.1);
    background-color: #17a0f3;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2.25px;
}

.home .case .list .card .bottom a img {
    float: right;
    width: 24px;
    margin-top: 22px;
}

.home .case .list .card i {
    display: inline-block;
    position: absolute;
    left: -6px;
    top: -17px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px 0 #e7f3f3;
    background-color: #c5f0f0;
    z-index: 1;
    padding: 0 15px;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.2px;
    color: #032c2c;
    font-style: normal;
}

.home .case .list .slick-list {
    overflow: visible;
}

.home .case .list .slick-prev {
    border: 0;
    background: url(../../img/v3/btn-arrow-left@3x.png) no-repeat;
    background-size: 100%;
    width: 12px;
    height: 24px;
    text-indent: -9999999px;
    cursor: pointer;
    position: absolute;
    right: 120px;
    top: -75px;
}

.home .case .list .slick-next {
    border: 0;
    background: url(../../img/v3/btn-arrow-right@3x.png) no-repeat;
    background-size: 100%;
    width: 12px;
    height: 24px;
    text-indent: -9999999px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -75px;
}

.home .case .list .slick-disabled {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    _filter: none;
    opacity: 0.3;
}

.home .case .list .slick-dots {
    list-style: none;
    position: absolute;
    top: -83px;
    right: 38px;
}

.home .case .list .slick-dots li {
    display: none;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.43px;
    color: #00468c;
}

.home .case .list .slick-dots li.slick-active {
    display: inline-block;
}

.home .case .list .slick-dots li.slick-active:after {
    content: "/ 5";
    display: inline-block;
    margin: 0 0 0 7px;
}

.home .case .list .slick-dots li button {
    height: 39px;
    pointer-events: none;
    border: 0;
    background: none;
    padding: 0;
    color: #00468c;
}

.home .container {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.home .container > img {
    display: block;
    width: 32%;
    position: absolute;
    right: 4%;
    top: 0;
    animation: float 3s ease-out infinite;
}

.home .container .slick-slide {
    position: absolute !important;
    left: 0 !important;
}

.home .container .slick-dots {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 180px;
    width: 40px;
    list-style: none;
}

.home .container .slick-dots li button {
    cursor: pointer;
    box-shadow: 3px 3px 6px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    border: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.27px;
    color: #ccdae8;
}

.home .container .slick-dots li button:before {
    content: "0";
    display: inline-block;
}

.home .container .slick-dots li:not(:last-of-type) {
    margin-bottom: 30px;
}

.home .container .slick-dots li.slick-active button {
    color: #00468c;
}

.home .troubled {
    padding: 100px 0 128px 0;
}

.home .troubled h3 {
    margin: 20px auto 80px auto;
}

.home .troubled .flex {
    display: flex;
    align-items: center;
}

.home .troubled .flex > img {
    width: 40%;
    margin-right: 5%;
}

.home .troubled .flex > img.pad.mobile {
    display: none;
}

.home .troubled .flex > div {
    width: 45%;
}

.home .troubled .flex small {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 1.09px;
    color: #232323;
    margin-bottom: 20px;
}

.home .troubled .flex strong {
    display: block;
    font-size: 38px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: 2px;
    color: #0facf3;
    margin-bottom: 30px;
}

.home .troubled .flex p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    color: #1c2631;
}

.home .design {
    padding: 150px 0 160px 0;
}

.home .design .white {
    width: 56vw;
    height: 56vw;
    max-width: 650px;
    max-height: 650px;
    background: #fff;
    border-radius: 650px;
    padding: 240px 0 0 100px;
}

.home .design .white .h3-title {
    display: block;
    text-align: left;
}

.home .design .white strong {
    display: block;
    margin: 10px auto 30px auto;
    font-size: 26px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 1px;
    text-align: left;
}

.home .design .white p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
}

.home .design .wrapper > img {
    position: absolute;
    right: 60px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 37vw;
    max-width: 536px;
    display: block;
}

.foot-logo {
    background: #fff;
    padding: 40px 0;
}

.foot-logo title {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.foot-logo p a {
    float: left;
}

.foot-logo p a:not(:last-of-type) {
    margin-right: 60px;
}

.foot-logo p a img {
    display: block;
    height: 40px;
}

.home .why {
    padding-bottom: 140px;
    position: relative;
}

.home .why:after {
    content: "";
    display: block;
    width: 100%;
    height: 344px;
    background: #00468c;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 40px 40px 0 0;
}

.home .why .wrapper {
    z-index: 1;
}

.home .why title {
    display: block;
    margin: 10px auto 60px auto;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 1px;
    color: #1c2631;
}

.home .why ul {
    display: flex;
    text-align: center;
    list-style: none;
}

.home .why ul li {
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    width: calc(25% - 30px);
    padding: 20px 0 50px 0;
    position: relative;
}

.home .why ul li:not(:last-of-type) {
    margin-right: 40px;
}

.home .why ul li i {
    display: block;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.7px;
    color: #00468c;
    opacity: 0.4;
}

.home .why ul li b {
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 1px;
    color: #002245;
}

.home .why ul li img {
    display: block;
    width: 40%;
    margin: 10px auto;
}

.home .why ul li p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    text-align: center;
}

.home .why ul li a {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -35px;
    width: 180px;
    line-height: 70px;
    padding: 0 35px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0 rgba(73, 47, 0, 0.2);
    background-color: #ffc45a;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.25px;
    color: #002245;
    text-align: left;
}

.home .why ul li a img {
    width: 25px;
    display: block;
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

.home .why ul li a:after {
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 26px;
    background-color: #fff;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 0;
}

.faq {
    padding: 120px 0 100px 0;
    background: #ededed;
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
}

.faq > img {
    display: block;
    width: 20%;
    position: absolute;
    left: 20%;
    top: 0;
    animation: float 3s ease-out infinite;
}

.faq ul {
    max-width: 963px;
    margin: 60px auto 0 auto;
    list-style: none;
}

.faq ul li {
    display: block;
}

.faq ul li:not(:last-of-type) {
    margin-bottom: 40px;
}

.faq ul li label {
    display: block;
    border-radius: 10px;
    background-color: #00468c;
    padding: 0 50px;
    line-height: 72px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    position: relative;
    z-index: 1;
}

.faq ul li label:after {
    content: "";
    display: block;
    width: 26px;
    height: 16px;
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../../img/v3/btn-arrow-white@3x.png) no-repeat;
    background-size: 100%;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.faq ul li input:checked + label:after {
    transform: rotate(180deg);
}

.faq ul li label i {
    font-style: normal;
    display: inline-block;
    vertical-align: top;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #ffa500;
    margin-right: 12px;
}

.faq ul li input {
    display: none;
}

.faq ul li .txt {
    padding: 0 50px;
    border-radius: 0 0 10px 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    margin-top: -10px;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.faq ul li input:checked + label + .txt {
    max-height: 100vh;
    padding: 40px 50px;
}

.home .contact {
    padding: 110px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.home .contact > img {
    display: block;
    position: absolute;
    width: 19%;
    right: 21.5vw;
    top: 4vw;
    animation: float 3s ease-out infinite;
}

.home .contact title {
    display: block;
    margin: 5px auto 60px auto;
    font-size: 26px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 1px;
    text-align: center;
}

.all-form {
    max-width: 760px;
    margin: 0px auto;
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    padding: 30px 60px 40px 60px;
}

.all-form small {
    display: block;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.71px;
    color: #ffa500;
}

.all-form label {
    float: left;
    width: calc(50% - 40px);
    margin-right: 80px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.8px;
}

.all-form label:nth-of-type(even) {
    margin-right: 0;
}

.all-form label span {
    display: block;
}

.all-form label span i {
    font-style: normal;
    color: #ffa500;
    font-size: 15px;
    display: inline-block;
    margin-left: 5px;
}

.all-form label input {
    height: 40px;
    background: none;
    border: 0;
    border-bottom: solid 1.5px #ccdae8;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.9px;
    width: 100%;
}

.all-form label input::placeholder {
    color: #ccdae8;
}

.all-form label input.valid {
    border-color: #68adf3;
}

.all-form label input.error {
    border-color: #f72d00;
}

.all-form label input.error + label {
    width: 100%;
    margin: 0;
    line-height: 30px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.7px;
    color: #ffa996;
}

.all-form label .flex {
    display: flex;
    align-items: center;
}

.all-form label .flex i {
    font-style: normal;
    padding: 0 20px;
    display: inline-block;
}

.all-form label .flex input:nth-of-type(1) {
    width: 30px;
}

.all-form label .flex input:nth-of-type(2) {
    width: 104px;
}

.all-form label .flex input:nth-of-type(3) {
    width: 48px;
}

.all-form .btn {
    display: block;
    width: 200px;
    line-height: 60px;
    height: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.25px;
    color: #002245;
    margin: 40px auto 0 auto;
    background: #ffc45a;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0 rgba(9, 32, 43, 0.1);
    border: 0;
    cursor: pointer;
}

.all-form .btn.disabled {
    background: #c2c7ca;
    color: #fff;
}

.all-form .btn img {
    display: none;
    width: 24px;
    margin-left: 12px;
}

.all-form .btn img + img {
    display: inline-block;
}

.all-form .btn.disabled img {
    display: inline-block;
}

.all-form .btn.disabled img + img {
    display: none;
}

.blocker {
    background: rgba(101, 101, 101, 0.7);
    z-index: 999999999;
}

.blocker .modal {
    text-align: center;
    padding: 30px 0 60px 0;
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    max-width: 560px;
    width: 100%;
}

.blocker .modal img {
    width: 140px;
    display: block;
    margin: 0 auto 20px auto;
}

.blocker .modal p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    text-align: center;
}

.blocker .modal > a {
    display: block;
    margin: 40px auto 0 auto;
    width: 160px;
    line-height: 60px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0 rgba(9, 32, 43, 0.1);
    background-color: #17a0f3;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.25px;
}

.blocker .modal .close-modal {
    display: none !important;
}

.blocker .modal .check {
    text-align: center;
    padding-top: 6px;
}

.blocker .modal .check strong {
    display: block;
    font-size: 30px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: 1.15px;
    text-align: center;
    color: #00468c;
    margin-top: 40px;
}

.blocker .modal .check > label {
    display: inline-block;
    cursor: pointer;
    width: 180px;
    margin: 20px 10px 0 10px;
}

.blocker .modal .check > label a {
    display: block;
    border-radius: 10px;
    border: solid 1.5px #00468c;
    background-color: #fff;
    font-size: 16px;
    line-height: 50px;
    letter-spacing: 1px;
    color: #00468c;
    padding-left: 46px;
    position: relative;
    text-align: left;
}

.blocker .modal .check > label a i {
    display: block;
    border: solid 2px #00468c;
    border-radius: 50px;
    background-color: #fff;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: transparent;
}

.blocker .modal .check > label input {
    display: none;
}

.blocker .modal .check > label input:checked + span {
    background-color: #00468c;
    color: #fff;
}

.blocker .modal .check > label input:checked + span i {
    border: solid 4px #fff;
}

.signup {
    background: url(../../img/v3/signup-bgcircle@3x.png) #f7f7f7 right 55.9vw bottom no-repeat;
    background-size: 675px auto;
}

.signup .fix-menu {
    display: none;
}

.signup header .wrapper > *:not(.logo) {
    display: none;
}

.signup > .wrapper {
    display: flex;
    padding: 140px 70px 110px 70px;
}

.signup > .wrapper .list {
    width: calc(100% - 560px);
    padding-top: 135px;
}

.signup > .wrapper .list .h3-title {
    text-align: left;
    margin-bottom: 30px;
}

.signup > .wrapper .list ul li {
    display: block;
    list-style: none;
    padding-left: 52px;
    padding-top: 35px;
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: 1px;
    position: relative;
}

.signup > .wrapper .list ul li:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 30px;
    background: url(../../img/v3/icon-check@3x.png) no-repeat;
    background-size: 100%;
}

.signup > .wrapper .form {
    width: 560px;
}

.signup > .wrapper .form title {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 1.09px;
    color: #232323;
    margin-bottom: 5px;
    text-align: center;
}

.signup > .wrapper .form > small {
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
}

.signup > .wrapper .form > small a {
    text-decoration: underline;
    color: #00468c;
}

.signup > .wrapper .form .all-form {
    padding: 40px 60px 60px 60px;
    margin: 40px auto 30px auto;
}

.signup > .wrapper .form .all-form label {
    width: 100%;
    margin-right: 0;
    position: relative;
}

.signup > .wrapper .form .all-form label .eye {
    display: block;
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 30px;
}

.signup > .wrapper .form .all-form label .eye img {
    display: block;
    width: 100%;
}

.signup > .wrapper .form .all-form label .eye.open {
    background: url(../../img/v3/icon-eye-open@3x.png) no-repeat;
    background-size: 100%;
}

.signup > .wrapper .form .all-form label .eye.open img {
    opacity: 0;
}

.signup > .wrapper .form .all-form label #password-error {
    display: none !important;
}

.signup > .wrapper .form .all-form label .check {
    position: absolute;
    top: 40px;
    right: 0;
    width: 300px;
    height: 223px;
    background: url(../../img/v3/bubble-bg-web@3x.png) left top no-repeat;
    background-size: 100%;
    padding: 40px 45px 10px 33px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.signup > .wrapper .form .all-form label input:focus + a + .check,
.signup > .wrapper .form .all-form label input:focus + label + a + .check {
    top: 80px;
    opacity: 1;
    pointer-events: auto;
}

.signup > .wrapper .form .all-form label .check p {
    margin-bottom: 10px;
    text-align: left;
    text-justify: none;
}

.signup > .wrapper .form .all-form label .check b {
    float: right;
    font-weight: 300;
}

.signup > .wrapper .form .all-form label .check span {
    display: inline-block;
    width: 70px;
    height: 6px;
    background: #ededed;
    margin: 10px 5px 10px 0;
}

.signup > .wrapper .form .all-form label .check p i {
    float: left;
    margin: 2px 8px 0 0;
    width: 16px;
    height: 16px;
    background: url(../../img/v3/icon-password-default@3x.png) no-repeat;
    background-size: 100% 100%;
}

.signup > .wrapper .form .all-form label .check p.ok i {
    background: url(../../img/v3/icon-password-check@3x.png) no-repeat;
    background-size: 100% 100%;
}

.signup > .wrapper .form .all-form label .check p.error {
    color: #f72d00;
}

.signup > .wrapper .form .all-form label .check p.error i {
    background: url(../../img/v3/icon-password-error@3x.png) no-repeat;
    background-size: 100% 100%;
}

.signup > .wrapper .form .all-form label .check p.bad span:first-of-type {
    background: #ffc45a;
}

.signup > .wrapper .form .all-form label .check p.good span {
    background: #0facf3;
}

.word-txt {
    max-width: 760px;
    margin: 0px auto;
    padding: 80px 0 70px 0;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif !important;
}

.word-txt title {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 1px;
    text-align: center;
    color: #00468c;
    margin-bottom: 40px;
}

.word-txt p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin-bottom: 30px;
}

.word-txt a {
    color: #0facf3;
    text-decoration: underline;
}

.word-txt strong {
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    margin: 60px 0 20px 0;
}

.word-txt ul > li {
    display: block;
    list-style: disc;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.word-txt ul > li:before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

.word-txt ol {
    margin-left: 30px;
}

.word-txt ol > li {
    list-style: decimal;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin-top: 30px;
}

.blogs .top {
    border-radius: 0 0 0 40px;
    background: url(../../img/v3/kv-bg-web@3x.png) right 12px top no-repeat #00468c;
    background-size: 678px 366px;
    padding: 153px 0 87px 0;
}

.blogs .top h3 {
    color: #fff;
}

.blogs .top h3:before {
    background: #ffa500;
    width: 50px;
    height: 50px;
}

.blogs .top .search {
    margin: 40px auto 0 auto;
    width: 560px;
    position: relative;
}

.blogs .top .search input {
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    padding: 0 85px 0 40px;
    font-size: 18px;
    letter-spacing: 0.9px;
    height: 70px;
    width: 100%;
    border: 0;
}

.blogs .top .search button {
    background: url(../../img/v3/icon-search@3x.png) no-repeat;
    background-size: 100%;
    width: 44px;
    height: 44px;
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    border: 0;
}

.blogs .wrapper {
    max-width: 1150px;
    padding: 0;
}

.blogs .tabs {
    margin: 79px 0 19px 0;
    text-align: center;
}

.blogs .tabs a {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    line-height: 33px;
    letter-spacing: 0.85px;
    color: #1c2631;
    position: relative;
    overflow: visible;
    margin: 0 50px;
}

.blogs .tabs a.active {
    font-weight: bold;
    color: #00468c;
}

.blogs .tabs a.active:before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #ffd17f;
    position: absolute;
    top: -8px;
    left: -15px;
    z-index: -1;
}

.blogs .list {
    padding-bottom: 150px;
}

.blogs .list title {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 1px;
    color: #00468c;
    margin: 0 auto -20px auto;
    padding-top: 60px;
}

.blogs .list a {
    float: left;
    width: calc(100% / 3 - 27px);
    margin: 60px 40px 0 0;
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
}

.blogs .list a:nth-of-type(3n) {
    margin-right: 0;
}

.blogs .list a img {
    display: block;
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 200px;
}

.blogs .list a.lg img {
    height: 305px;
}


.blogs .list a > div {
    padding: 30px;
}

.blogs .list a small {
    float: left;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 1px;
    color: #86a4c2;
}

.blogs .list a i {
    float: right;
    width: 120px;
    font-style: normal;
    line-height: 40px;
    font-size: 16px;
    letter-spacing: 0.2px;
    text-align: center;
    color: #032c2c;
    border-radius: 5px;
    box-shadow: 5px 5px 10px 0 #e7f3f3;
    background-color: #c5f0f0;
}

.blogs .list a p {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    height: 60px;
    letter-spacing: 0.8px;
    color: #1c2631;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blogs .list .nosearch {
    text-align: center;
    padding: 60px 0 0 0;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
}

.blogs .list .nosearch img {
    display: block;
    width: 250px;
    margin: 0 auto 40px auto;
}

.blogs .pagination {
    margin: -50px auto 150px auto;
    text-align: center;
}

.blogs .pagination a {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: bold;
    width: 40px;
    line-height: 40px;
    letter-spacing: 0.27px;
    color: #00468c;
    margin: 0 10px;
}

.blogs .pagination a img {
    width: 13px;
    display: block;
    margin: 0px auto;
}

.blogs .pagination a.active {
    box-shadow: 3px 3px 6px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    border-radius: 40px;
}

.blogs .pagination a.disabled {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    _filter: none;
    opacity: 0.3;
}

.blogs .detail {
    max-width: 760px;
    margin: 0px auto;
    padding: 40px 0 100px 0;
}

.blogs .detail .breadcrumb {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #00468c;
    margin-bottom: 40px;
}

.blogs .detail .breadcrumb a {
    color: #00468c;
}

.blogs .detail .txt > i {
    display: block;
    width: 120px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 5px 5px 10px 0 #e7f3f3;
    background-color: #c5f0f0;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #032c2c;
    font-style: normal;
}

.blogs .detail .txt > h2 {
    display: block;
    font-size: 36px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: 1.5px;
    text-align: justify;
    text-justify: inter-ideograph;
    color: #00468c;
    margin: 20px 0;
}

.blogs .detail .txt > small {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 1px;
    text-align: justify;
    color: #86a4c2;
    margin-right: 40px;
}

.blogs .detail .txt > img {
    display: block;
    width: 100%;
    margin: 40px auto 100px auto;
}

.blogs .detail .txt > div {
    margin-bottom: 100px;
}

.blogs .detail .txt > div p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
}

.blogs .detail .txt > div p:last-of-type {
    margin-bottom: 0;
}

.blogs .detail .txt > div strong {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.blogs .detail .txt > hr {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #ccdae8;
    border: 0;
    margin-bottom: 40px;
}

.blogs .detail .txt > a {
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin-right: 40px;
    color: #00468c;
}

.blogs .fix-share {
    position: fixed;
    right: calc(50% + 530px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 190px;
    text-align: center;
}

.blogs .fix-share i {
    display: block;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.62px;
    font-style: normal;
    margin-bottom: 10px;
}

.blogs .fix-share a {
    display: block;
    width: 40px;
    margin: 0 auto 15px auto;
    position: relative;
}

.blogs .fix-share a:last-of-type {
    margin-bottom: 0;
}

.blogs .fix-share a img {
    display: block;
    width: 100%;
}

.blogs .fix-share a label {
    display: block;
    width: 80px;
    height: 25px;
    line-height: 25px;
    border-radius: 5px;
    text-align: center;
    background: #ccc;
    color: #fff;
    position: absolute;
    left: -70px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 13px;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.blogs .fix-share a.ok label {
    left: -90px;
    opacity: 1;
}

.foot-line-link {
    padding: 60px 0;
    background: url(../../img/v3/detail-link-bg@3x.png) left calc(50vw + 300px) top no-repeat #f7f7f7;
    background-size: 534px 264px;
    text-align: center;
    overflow: hidden;
}

.foot-line-link.white {
    background: #fff;
    position: relative;
}

.foot-line-link.white > img {
    width: 534px;
    position: absolute;
    left: calc(50vw + 300px);
    top: 0;
    animation: float 3s ease-out infinite;
    z-index: 0;
}

.foot-line-link.white > *:not(img) {
    position: relative;
    z-index: 1;
}

.foot-line-link title {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 1px;
    color: #00468c;
}

.foot-line-link small {
    display: block;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin: 10px 0 40px 0;
}

.foot-line-link a {
    display: inline-block;
    width: 260px;
    line-height: 70px;
    border-radius: 10px;
    border: solid 1.5px #00468c;
    background: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2.25px;
    color: #00468c;
    margin: 0px 20px;
}

.foot-line-link a img {
    display: inline-block;
    vertical-align: text-top;
    width: 21px;
    margin: 2px 0 0 10px;
}

.foot-line-link a:last-of-type {
    background: #ffc45a;
    border-color: #ffc45a;
    color: #002245;
}

.foot-line-link a:last-of-type img {
    width: 24px;
    margin: 7px 0 0 10px;
}

.foot-also-like {
    position: relative;
    z-index: 1;
    background: #fff;
}

.blogs-detail #header .fix-menu {
    display: none;
}

.blogs-detail .fix-menu {
    bottom: 20px;
}

.feature .kv {
    padding: 190px 0 100px 0;
    position: relative;
    background: #fff;
    border-radius: 0 0 0 40px;
}

.feature .kv > img {
    width: 650px;
    position: absolute;
    left: calc(50vw + 240px);
    top: 0;
    animation: float 3s ease-out infinite;
}

.feature .kv .wrapper {
    display: flex;
    align-items: center;
}

.feature .kv .wrapper > div {
    width: 500px;
    padding-right: 40px;
}

.feature .kv .wrapper > div .h3-title {
    text-align: left;
}

.feature .kv .wrapper > div p {
    margin: 20px 0 60px 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: 1px;
    color: #232323;
}

.feature .kv .wrapper > div .free-btn {
    width: auto;
    height: 80px;
    font-size: 18px;
    padding: 22px 95px 22px 45px;
    display: inline-block;
}

.feature .kv .wrapper > div .free-btn img {
    width: 28px;
    right: 55px;
}

.feature .kv .wrapper > div .free-btn:after {
    width: 26px;
    height: 26px;
    right: 45px;
}

.feature .kv .wrapper > img {
    display: block;
    width: calc(100% - 500px);
}

.feature .list {
    padding: 150px 0 120px 0;
}

.feature .list .wrapper {
    max-width: 1060px;
    padding: 0;
}

.feature .list .wrapper > div {
    display: flex;
    align-items: center;
    position: relative;
}

.feature .list .wrapper > div:not(:first-of-type) {
    margin-top: 180px;
}

.feature .list .wrapper > div > div {
    padding: 0 0 0 100px;
    margin-left: auto;
    order: 2;
}

.feature .list .wrapper > div:nth-of-type(even) > div {
    padding: 0 100px 0 0;
}

.feature .list .wrapper > div > div strong {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 63px;
    letter-spacing: 1.5px;
    color: #00468c;
    margin-bottom: 19px;
    text-align: left;
}

.feature .list .wrapper > div > div p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    color: #1c2631;
    text-align: justify;
    text-justify: inter-ideograph;
}

.feature .list .wrapper > div > div .btn {
    display: inline-block;
    width: auto;
    padding: 0 49px;
    line-height: 60px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0 rgba(9, 32, 43, 0.1);
    background-color: #17a0f3;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2.25px;
    margin-top: 25px;
}

.feature .list .wrapper > div > div .btn img {
    float: right;
    width: 24px;
    margin: 22px 0 0 15px;
}

.feature .list .wrapper > div > div i {
    display: block;
    font-size: 180px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 10px;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 150px;
    overflow: visible;
}

.feature .list .wrapper > div:nth-of-type(even) > div i {
    left: -100px;
    right: auto;
}

.feature .list .wrapper > div > img {
    display: block;
    width: 500px;
    margin: 0px auto;
}

.feature .list .wrapper > div:nth-of-type(even) > img {
    margin-left: auto;
    order: 2;
}

.feature .list .wrapper > div.special {
    display: block;
}

.feature .list .wrapper > div.special strong {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 54px;
    letter-spacing: 1.5px;
    text-align: center;
    color: #00468c;
    position: relative;
    overflow: visible;
    width: 488px;
    margin: 0px auto 60px auto;
}

.feature .list .wrapper > div.special strong span {
    display: block;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.feature .list .wrapper > div.special strong i {
    display: block;
    font-size: 180px;
    font-weight: 900;
    letter-spacing: 10px;
    color: #fff;
    position: absolute;
    right: -90px;
    top: -50px;
    line-height: 60px;
    z-index: 0;
    width: 250px;
}

.feature .list .wrapper > div.special .toggle {
    position: relative;
    padding: 0;
}

.feature .list .wrapper > div.special .toggle label {
    display: block;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    margin-bottom: 15px;
    width: 360px;
    margin-left: 600px;
}

.feature .list .wrapper > div.special .toggle label input {
    display: none;
}

.feature .list .wrapper > div.special .toggle label b {
    display: block;
    border-radius: 10px;
    background-color: #17a0f3;
    line-height: 50px;
    padding: 0 30px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

.feature .list .wrapper > div.special .toggle label b img {
    float: right;
    height: 13px;
    margin: 18px -10px 0 0;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.feature .list .wrapper > div.special .toggle label p {
    padding: 0 30px;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.feature .list .wrapper > div.special .toggle label p .cover {
    opacity: 0;
    pointer-events: none;
    height: 340px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.feature .list .wrapper > div.special .toggle label input:checked + b img {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.feature .list .wrapper > div.special .toggle label input:checked + b + p {
    padding: 15px 30px 30px 30px;
    height: 135px;
}

.feature .list .wrapper > div.special .toggle label input:checked + b + p .cover {
    opacity: 1;
    pointer-events: all;
}

.feature .member {
    background: #ededed;
    position: relative;
}

.feature .member > img {
    width: 410px;
    position: absolute;
    right: calc(50vw + 396px);
    top: 0;
    animation: float 3s ease-out infinite;
}

.feature .member .wrapper {
    max-width: 960px;
    padding: 60px 0 80px 0;
    position: relative;
}

.feature .member .wrapper title {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #00468c;
}

.feature .member .wrapper .box {
    border-radius: 20px 0 20px 20px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    position: relative;
    padding: 86px 100px;
    width: 760px;
    height: 260px;
}

.feature .member .wrapper .box p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
}

.feature .member .wrapper .box p:not(:last-of-type) {
    padding-bottom: 15px;
}

.feature .member .wrapper .box img {
    display: block;
    width: 40px;
    position: absolute;
    left: 60px;
    top: 40px;
}

.feature .member .wrapper .box img + img {
    left: auto;
    right: 60px;
    top: auto;
    bottom: 40px;
}

.feature .member .wrapper .logo {
    display: block;
    position: absolute;
    right: 0;
    top: 128px;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background: #fff;
}

.feature .member .wrapper .logo img {
    width: 90px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.feature .member .wrapper span {
    width: 150px;
    display: block;
    position: absolute;
    right: 0;
    bottom: 80px;
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 1px;
    text-align: center;
}

.feature .member .wrapper span i {
    font-style: normal;
    display: block;
    width: 110px;
    line-height: 36px;
    margin: 15px auto 0 auto;
    border-radius: 5px;
    box-shadow: 5px 5px 10px 0 #e7f3f3;
    background-color: #c5f0f0;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #032c2c;
}

.plan {
    background: #f7f7f7;
    position: relative;
}

.plan > img {
    position: absolute;
    left: calc(50vw + 300px);
    top: 0;
    width: 534px;
    animation: float 3s ease-out infinite;
}

.plan .top {
    padding: 110px 0 80px 0;
}

.plan .top .h3-title {
    margin-bottom: 40px;
}

.plan .top > p {
    font-size: 22px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 1px;
    text-align: center;
    color: #232323;
}

.plan .top ul {
    margin-top: 105px;
    text-align: center;
}

.plan .top ul li {
    width: 360px;
    display: inline-block;
    vertical-align: bottom;
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    padding: 20px 50px 40px 50px;
    margin: 0 20px;
    text-align: center;
    position: relative;
}

.plan .top ul li:nth-of-type(2) {
    border: 1px solid #17a0f3;
    border-radius: 0 0 10px 10px;
}

.plan .top ul li:nth-of-type(2):before {
    content: "熱門選擇";
    display: block;
    position: absolute;
    top: -40px;
    left: -1px;
    width: calc(100% + 2px);
    border-radius: 10px 10px 0 0;
    background-color: #17a0f3;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    line-height: 45px;
}

.plan .top ul li title {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 54px;
    letter-spacing: 1.5px;
    color: #00468c;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccdae8;
}

.plan .top ul li span {
    display: block;
    font-size: 56px;
    font-weight: bold;
    line-height: 84px;
    letter-spacing: 2.4px;
    color: #ffa500;
}

.plan .top ul li span sup {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    margin-right: 10px;
}

.plan .top ul li span i {
    font-style: normal;
    display: inline-block;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.8px;
    color: #1c2631;
    margin-left: 10px;
}

.plan .top ul li small {
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    color: #0facf3;
    margin: 40px auto 20px auto;
}

.plan .top ul li p {
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0.8px;
    text-align: left;
    text-justify: none;
    white-space: nowrap;
}

.plan .blue {
    border-radius: 0 0 40px 0;
    background-color: #00468c;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.plan .blue > *:not(img) {
    position: relative;
    z-index: 1;
}

.plan .blue > img {
    width: 429px;
    position: absolute;
    z-index: 0;
    top: 0;
    right: calc(50vw + 306px);
    animation: float 3s ease-out infinite;
}

.plan .blue p {
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.6px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.plan .blue .free-btn {
    width: 280px;
    margin: 0px auto;
    line-height: 70px;
    padding: 0 90px 0 40px;
    font-size: 18px;
    letter-spacing: 2.25px;
}

.plan .blue .free-btn:after {
    width: 26px;
    height: 26px;
    right: 40px;
}

.plan .blue .free-btn img {
    width: 30px;
    right: 50px;
}

.plan .confuse {
    background: #ededed;
    position: relative;
    padding: 120px 0 0 0;
    overflow: hidden;
}

.plan .confuse > *:not(img) {
    position: relative;
    z-index: 1;
}

.plan .confuse > img {
    position: absolute;
    right: calc(50vw + 281px);
    top: 0;
    width: 743px;
    animation: float 3s ease-out infinite;
    z-index: 0;
}

.plan .confuse > title {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 54px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    color: #00468c;
    text-align: center;
}

.plan .confuse > p {
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
    letter-spacing: 0.4px;
    text-align: center;
    color: #232323;
    padding-bottom: 10px;
}

.plan .confuse > p a {
    color: #00468c;
    text-decoration: underline;
}

.plan .confuse .faq {
    padding: 0;
    background: none;
}

.plan .table {
    background: #ffffff;
    padding: 120px 0;
}

.plan .table title {
    display: block;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 54px;
    letter-spacing: 1.5px;
    color: #00468c;
    margin-bottom: 60px;
}

.plan .table table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 1160px;
    margin: 0px auto;
    background: #fff;
}

.plan .table table thead {
    position: sticky;
    top: 110px;
    z-index: 2;
    box-shadow: 0 8px 10px -5px rgba(210, 210, 210, 0.2);
}

.plan .table table thead:before {
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
}

.plan .table table thead:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: #fff;
    z-index: -1;
}

.plan .table table tr td {
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #ccdae8;
    color: #454545;
    position: relative;
}

.plan .table table tr td:nth-of-type(1) {
    width: 28%;
    text-align: left;
    padding: 15px 40px;
}

.plan .table table tr:not(.color) th:nth-of-type(3),
.plan .table table tr:not(.color) td:nth-of-type(3),
.plan .table table tr.color td:nth-of-type(2) {
    border-left: 1px solid #17a0f3;
    border-right: 1px solid #17a0f3;
}

.plan .table table tr td:nth-of-type(2),
.plan .table table tr td:nth-of-type(3),
.plan .table table tr td:nth-of-type(4) {
    width: 24%;
}

.plan .table table tr td.title {
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    padding: 10px 0;
    border: 0 !important;
}

.plan .table table tr td.title:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #17a0f3;
    border-radius: 10px 10px 0 0;
}

.plan .table table tr td span {
    position: relative;
}

.plan .table table tr td img {
    display: inline-block;
    width: 40px;
    vertical-align: middle;
}

.plan .table table tr th {
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 1px;
    color: #00468c;
    padding: 10px 0;
}

.plan .table table tr.color td {
    background: #eff7fe !important;
    font-size: 20px;
    font-weight: bold;
    line-height: 29px;
    letter-spacing: 1px;
    color: #002245;
    position: sticky;
    top: 155px;
    z-index: 1;
}

.plan .table table tr:last-of-type td:nth-of-type(3) {
    border-left: 0;
    border-right: 0;
}

.plan .table table tr:last-of-type td:nth-of-type(3):before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #fff;
    border-radius: 0 0 10px 10px;
    border: 1px solid #17a0f3;
    border-top: 0;
}

.profile {
    position: relative;
    overflow: hidden;
}

.profile .top {
    border-radius: 0 0 0 40px;
    background-color: #00468c;
    padding: 200px 0 335px 0;
    position: relative;
    z-index: 4;
}

.profile .top > img {
    position: absolute;
    left: calc(50vw + 160px);
    top: 0;
    width: 678px;
    animation: float 3s ease-out infinite;
}

.profile .top .h3-title h3 {
    color: #fff;
}

.profile .top .h3-title h3:before {
    background: #ffa500;
}

.profile .top ul {
    text-align: center;
    position: absolute;
    left: 0;
    bottom: -110px;
    width: 100%;
}

.profile .top ul li {
    display: inline-block;
    border-radius: 10px;
    box-shadow: 8px 8px 20px 0 rgba(31, 30, 36, 0.1);
    background-color: #fff;
    padding: 40px 70px 55px 70px;
    margin: 0 30px;
}

.profile .top ul li img {
    display: block;
    width: 100px;
    margin: 0px auto 30px auto;
}

.profile .top ul li title {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 1px;
    text-align: center;
    color: #00468c;
    margin-bottom: 20px;
}

.profile .top ul li span {
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 29px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.profile .top ul li small {
    display: inline-block;
    width: 150px;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    position: relative;
}

.profile .top ul li small:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #0facf3;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.profile .story {
    padding: 265px 0 150px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile .story > div {
    width: calc(100% - 660px);
    padding-right: 100px;
}

.profile .story > div strong {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 54px;
    letter-spacing: 1.5px;
    color: #00468c;
    margin-bottom: 30px;
}

.profile .story > div p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.profile .story .cover {
    display: block;
    width: 660px;
}

.profile .story.grey {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}

.profile .story.grey > img:not(.cover) {
    position: absolute;
    width: 600px;
    right: -200px;
    top: 0;
    animation: float 3s ease-out infinite;
}

.profile .story.grey > div {
    width: calc(100% - 500px);
    margin-left: auto;
    order: 2;
    padding: 0 0 0 100px;
}

.profile .story.grey .cover {
    width: 500px;
}

.profile .foot-line-link title {
    margin-bottom: 40px;
}

.profile .blue {
    padding: 100px 0 150px 0;
    background: #00468c;
    border-radius: 0 0 40px 0;
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.profile .blue > img {
    position: absolute;
    width: 650px;
    right: calc(50vw + 181px);
    top: 0;
    animation: float 3s ease-out infinite;
}

.profile .blue > strong {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.profile .blue > p {
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}

.profile .safe {
    padding: 220px 0 125px 0;
}

.profile .safe > title {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 54px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    color: #00468c;
    text-align: center;
}

.profile .safe > p {
    font-size: 26px;
    font-weight: bold;
    line-height: 45px;
    letter-spacing: 1px;
    text-align: center;
}

.profile .safe > ul {
    margin-top: 80px;
    text-align: center;
}

.profile .safe > ul li {
    display: inline-block;
    vertical-align: top;
    width: 220px;
    margin: 0 75px;
}

.profile .safe > ul li > img {
    display: block;
    width: 200px;
    margin: 0px auto 60px auto;
}

.profile .safe > ul li b {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 38px;
    letter-spacing: 1px;
    color: #00468c;
    margin-bottom: 35px;
}

.profile .safe > ul li p {
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.profile .safe > ul li p img {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
}

.profile .milestone {
    padding: 120px 0 150px 0;
    background: #fff;
}

.profile .milestone title {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 54px;
    letter-spacing: 1.5px;
    color: #00468c;
    margin-bottom: 85px;
    text-align: center;
}

.profile .milestone .slider-nav {
    max-width: 760px;
    margin: 0px auto 105px auto;
    position: relative;
}

.profile .milestone .slider-nav:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: #daeeff;
    top: 18px;
    left: 0;
    right: 0;
    margin: auto;
}

.profile .milestone .slider-nav li {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: center;
    color: #9bd1ff;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.profile .milestone .slider-nav li.slick-current {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffa500;
}

.profile .milestone .slider-nav li i {
    width: 40px;
    height: 40px;
    background: url(../../img/v3/component-timeline-default-dot@3x.png) center no-repeat;
    background-size: 28px 28px;
    display: block;
    margin: 0px auto 10px auto;
}

.profile .milestone .slider-nav li.slick-current i {
    background: url(../../img/v3/component-timeline-active-dot@3x.png) center no-repeat;
    background-size: 40px 40px;
}

.profile .milestone .slider-nav .slick-track:before {
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 20px;
    background: #daeeff;
    display: block;
    border-radius: 2px;
}

.profile .milestone .slider-nav .slick-track:after {
    position: absolute;
    right: 0;
    top: 10px;
    width: 4px;
    height: 20px;
    background: #daeeff;
    display: block;
    border-radius: 2px;
}

.profile .milestone .slider-for {
    max-width: 1160px;
    margin: 0px auto;
    padding: 0 100px;
}

.profile .milestone .slider-for .txt {
    display: flex;
    align-items: flex-start;
}

.profile .milestone .slider-for .txt > img {
    display: block;
    width: 400px;
}

.profile .milestone .slider-for .txt > div {
    width: calc(100% - 400px);
    padding-left: 55px;
}

.profile .milestone .slider-for .txt > div.no {
    text-align: center;
    width: 100%;
    padding: 120px 0 0 0;
}

.profile .milestone .slider-for .txt > div b {
    font-size: 40px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: 2px;
    color: #00468c;
}

.profile .milestone .slider-for .txt > div p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.8px;
    padding-left: 20px;
    position: relative;
}

.profile .milestone .slider-for .txt > div.no p {
    text-align: center;
    padding-left: 0;
}

.profile .milestone .slider-for .txt > div p:before {
    content: "・";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
}

.profile .milestone .slider-for .txt > div.no p:before {
    display: none;
}

.profile .milestone .slider-for .slick-prev {
    text-indent: -99999px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 0;
    box-shadow: 5px 5px 10px 0 rgba(9, 32, 43, 0.1);
    background: url(../../img/v3/btn-arrow-white-left@3x.png) left 20px center no-repeat #17a0f3;
    background-size: 15px 21px;
    cursor: pointer;
}

.profile .milestone .slider-for .slick-next {
    text-indent: -99999px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 0;
    box-shadow: 5px 5px 10px 0 rgba(9, 32, 43, 0.1);
    background: url(../../img/v3/btn-arrow-white-right@3x.png) right 20px center no-repeat #17a0f3;
    background-size: 15px 21px;
    cursor: pointer;
}

.profile .milestone .slider-for .slick-next.slick-disabled,
.profile .milestone .slider-for .slick-prev.slick-disabled {
    background-color: #c2c7ca;
}

@media screen and (min-width: 1200px) {

    .blogs .detail .breadcrumb a:hover {
        text-decoration: underline;
    }

    footer .left p a:hover,
    footer .link a:hover {
        text-decoration: underline;
    }

    header .submenu a:hover {
        background: #eef5fc;
    }

    header #label2 .submenu a img {
        margin-top: 10px;
    }

    .free-btn:hover,
    .home .why ul li a:hover,
    .all-form .btn:not(.disabled):hover {
        background: #ffb530;
    }

    .home .case .list .card .bottom a:hover,
    .blocker .modal > a:hover {
        background: #007dc8;
    }

    body.fix {
        overflow: hidden;
    }

    .fix .home .container {
        position: fixed;
        width: 100%;
        left: 0;
        top: 90px;
        z-index: 9;
    }

    .signup > .wrapper .form small a:hover,
    .word-txt a:hover {
        text-decoration: none;
    }

    .blogs .tabs a:hover {
        font-weight: bold;
        color: #00468c;
    }

    .blogs .list a.lg,
    .blogs .list a.sm {
        width: calc(50% - 20px);
    }

    .blogs .list a.lg > div {
        padding: 30px 60px;
    }

    .blogs .list a.lg > div p {
        margin-top: 30px;
        font-size: 20px;
    }

    .blogs .list a.sm {
        margin: 30px 15px 0 0;
        position: relative;
    }

    .blogs .all-article a.sm:nth-of-type(2) {
        margin-top: 60px;
    }

    .blogs .all-article a.sm {
        margin: 30px 0 0 0;
        position: relative;
    }

    .blogs .list a.sm img {
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        object-fit: cover;
        margin-bottom: 0;
        border-radius: 10px 0 0 10px;
    }

    .blogs .list a.sm > div {
        float: right;
        width: 50%;
        padding: 15px 20px 20px 20px;
    }

    .blogs .detail .txt > a:hover {
        text-decoration: underline;
    }

    .foot-line-link a:hover {
        background: #fff;
    }

    .foot-line-link a:last-of-type:hover {
        background: #ffb530;
        border-color: #ffb530;
    }

    .blogs-detail .fix-menu #share {
        display: none;
    }

    .blocker .modal .check > label a:hover {
        background: #eef5fc;
    }

    .plan .confuse > p a:hover {
        text-decoration: none;
    }

    .plan .confuse .faq ul {
        width: 1210px;
        margin: 0px auto;
        max-width: none;
        text-align: center;
        padding-bottom: 120px;
    }

    .plan .confuse .faq ul li {
        margin: 50px 20px 0 20px;
        display: inline-block;
        vertical-align: top;
        width: 360px;
        text-align: left;
    }

    .plan .confuse .faq ul li label {
        padding: 0 25px;
        line-height: 62px;
        font-size: 18px;
    }

    .plan .confuse .faq ul li label:after {
        display: none;
    }

    .plan .confuse .faq ul li label i {
        font-size: 28px;
    }

    .plan .confuse .faq ul li .txt,
    .plan .confuse .faq ul li input:checked + label + .txt {
        margin-top: -10px;
        max-height: 255px;
        height: 190px;
        padding: 30px 25px 45px 25px;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
    }

    .plan .table table tr:not(:first-of-type):hover td {
        background: #f9fcff;
    }
}

@media screen and (max-width: 1200px) {
    body.page {
        padding-top: 70px;
    }

    .desktop,
    .mobile {
        display: none;
    }

    .pad {
        display: block;
    }

    .wrapper {
        padding: 0 70px;
    }

    header {
        padding: 14px 0;
        line-height: 42px;
    }

    header .logo {
        font-size: 16px;
        letter-spacing: normal;
    }

    header .menu {
        position: fixed;
        left: 0;
        top: 69px;
        width: 100%;
        height: 0;
        overflow: hidden;
        z-index: 999;
        background: #fff;
        box-shadow: inset 0 8px 10px 0 rgba(210, 210, 210, 0.2);
        padding: 0;
        display: block;
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

    header .hamburger.is-opened + a + .menu {
        padding: 10px 0 70px 0;
        height: calc(100vh - 70px);
        overflow: auto;
    }

    header .btn {
        line-height: 24px;
        padding: 9px 38px;
    }

    header .menu > label,
    header .menu > a {
        display: block;
        width: calc(100% - 90px);
        max-width: 410px;
        margin: 60px auto 0 auto;
        line-height: 27px;
        position: relative;
    }

    header .menu > label.open {
        margin-bottom: -15px;
    }

    header .menu > label:before,
    header .menu > a:before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        top: 37px;
        background: #00468c;
        z-index: 1;
    }

    header .menu > label > img {
        width: 16px;
        height: 10px;
        margin: 8px 0 0 0;
        float: right;
    }

    header .submenu {
        position: relative;
        top: auto;
        width: 100%;
        box-shadow: none;
    }

    header label.open .submenu {
        max-height: 450px;
        margin-top: 10px;
    }

    header .submenu .wrapper {
        display: block;
        padding: 0;
    }

    header .submenu a {
        padding: 13px calc(50% - 115px) 13px calc(50% - 115px);
        margin: 0px auto;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0px;
        border-bottom: 1px solid #d8d8d8;
        white-space: nowrap;
    }

    header .submenu a:last-of-type {
        border-bottom: 0;
    }

    header .submenu a img {
        width: 54px;
        height: 54px;
        position: relative;
        left: auto;
        float: left;
        margin: 10px 48px 10px 0;
    }

    header .submenu a b {
        margin-bottom: 5px;
    }

    footer {
        padding: 40px 0;
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 0.6px;
    }

    footer .wrapper {
        padding: 0 40px;
    }

    footer .left {
        width: 360px;
    }

    footer .left .logo {
        font-size: 20px;
        line-height: 27px;
        letter-spacing: normal;
    }

    footer .link {
        margin-left: 30px;
    }

    footer .link:first-of-type {
        margin-left: 0;
    }

    footer .link title {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
        margin-bottom: 15px;
    }

    footer .link title:after {
        bottom: -7px;
    }

    footer .link a {
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 0.6px;
    }

    .home .kv {
        border-radius: 0 0 0 30px;
        background: url(../../img/v3/kv-bg-pad@3x.png) right top no-repeat #00468c;
        background-size: 234px 329px;
        padding: 110px 0 110px 0;
    }

    .home .kv .wrapper {
        display: block;
    }

    .home .kv .wrapper .txt {
        width: 100%;
        text-align: center;
    }

    .home .kv .wrapper .txt h2 {
        font-size: 32px;
    }

    .home .kv .wrapper .txt strong {
        font-size: 52px;
        line-height: 77px;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .home .kv .wrapper .txt p {
        font-size: 20px;
        line-height: 37px;
        letter-spacing: 1px;
        width: 330px;
        margin: 0px auto;
    }

    .home .kv .wrapper .txt p + p {
        margin-bottom: 30px;
    }

    .home .kv .wrapper .txt p:before {
        margin: 12px 15px 12px 0;
    }

    .home .kv .wrapper .img {
        width: 100%;
        margin: 50px auto 0 auto;
        max-width: 550px;
    }

    .free-btn {
        width: 254px;
        padding: 16px 48px;
        font-size: 19px;
        line-height: 28px;
        letter-spacing: 2.4px;
        text-align: left;
        margin: 0px auto;
    }

    .free-btn small {
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 1.6px;
    }

    .free-btn img {
        right: 54px;
        width: 42px;
        height: 11px;
    }

    .free-btn:after {
        right: 40px;
        width: 32px;
        height: 32px;
    }

    .number-list {
        bottom: -60px;
    }

    .number-list .list {
        padding: 30px 4px;
    }

    .number-list .list > div:not(:last-of-type):after {
        height: 30px;
    }

    .number-list .list > div small {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.2px;
    }

    .number-list .list > div small b {
        font-size: 24px;
        line-height: 35px;
        letter-spacing: 0.5px;
        margin-top: -10px;
    }

    .number-list .list > div strong {
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.4px;
    }

    .home .case {
        padding: 150px 0 80px 0;
    }

    .h3-title {
        text-align: left;
        margin-left: -20px;
    }

    h3 {
        font-size: 26px;
        line-height: 38px;
        letter-spacing: 1px;
        padding-left: 20px;
    }

    h3:before {
        width: 40px;
        height: 40px;
        top: -10px;
        left: 0;
    }

    .home .case .free-btn {
        margin: 50px auto 0 auto;
    }

    .home .case .list .card {
        width: 295px;
        padding: 45px 25px 30px 25px;
        margin: 0 22px;
    }

    .home .case .list .card strong {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.2px;
        padding-bottom: 15px;
    }

    .home .case .list .card strong span {
        font-size: 34px;
        line-height: 50px;
        letter-spacing: 0.85px;
        margin: -15px 10px 0 10px;
    }

    .home .case .list .card p {
        margin-bottom: 20px;
    }

    .home .case .list .card .bottom {
        display: block;
        width: 100%;
    }

    .home .case .list .card .bottom > div {
        width: 100%;
    }

    .home .case .list .card .bottom > div img {
        width: 52px;
        height: 52px;
        margin-right: 14px;
    }

    .home .case .list .card .bottom a {
        width: 180px;
        padding: 0 25px;
        line-height: 54px;
        font-size: 16px;
        letter-spacing: 2px;
        margin: 23px auto 0 auto;
    }

    .home .case .list .card .bottom a img {
        width: 22px;
        margin-top: 23px;
    }

    .home .case .list .card i {
        left: -13px;
        top: -7px;
        padding: 0 8px;
        font-size: 14px;
        line-height: 30px;
    }

    .home .case .list .slick-prev {
        right: 90px;
    }

    .home .case .list .slick-dots {
        right: 28px;
    }

    .home .case .list .slick-dots li {
        font-size: 22px;
        letter-spacing: 0.22px;
    }

    .home .container {
        padding: 90px 0 80px 0;
    }

    .home .container > img {
        width: 31%;
        right: 0;
    }

    .home .troubled {
        margin-bottom: 100px;
        padding: 0;
    }

    .home .troubled:nth-of-type(3) {
        margin-bottom: 0;
    }

    .home .troubled h3 {
        margin: 0 auto 50px auto;
    }

    .home .troubled .flex > img {
        width: 45%;
        margin-right: 0;
        margin-left: 6%;
    }

    .home .troubled .flex > img.pad.mobile {
        display: block;
    }

    .home .troubled .flex > div {
        width: 49%;
    }

    .home .troubled .flex small {
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 1px;
    }

    .home .troubled .flex strong {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: 1px;
        margin-bottom: 0;
    }

    .home .troubled .flex p {
        display: none;
    }

    .home .design {
        padding: 80px 0 120px 0;
    }

    .home .design .wrapper {
        padding: 0;
    }

    .home .design .white {
        width: 500px;
        height: 500px;
        padding: 135px 100px 0 150px;
        margin-left: -80px;
    }

    .home .design .white strong {
        margin: 10px auto 20px auto;
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 0.8px;
    }

    .home .design .wrapper > img {
        right: 40px;
        width: 45%;
    }

    .foot-logo {
        padding: 30px 0 10px;
    }

    .foot-logo title {
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 0.8px;
    }

    .foot-logo p a {
        padding-bottom: 25px;
    }

    .foot-logo p a:not(:last-of-type) {
        margin-right: 40px;
    }

    .foot-logo p a img {
        display: block;
        height: 30px;
    }

    .home .why {
        padding-bottom: 105px;
    }

    .home .why:after {
        height: 325px;
        border-radius: 30px 30px 0 0;
    }

    .home .why .wrapper {
        padding: 0;
    }

    .home .why .h3-title {
        text-align: left;
        padding: 0 70px;
    }

    .home .why title {
        margin: 10px auto 50px auto;
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 0.8px;
        text-align: left;
        padding: 0 70px;
    }

    .home .why ul {
        padding: 0 40px;
    }

    .home .why ul li {
        width: calc(25% - 11.25px);
        padding: 10px 0 40px 0;
    }

    .home .why ul li:not(:last-of-type) {
        margin-right: 15px;
    }

    .home .why ul li img {
        width: 50%;
        margin: 10px auto 20px auto;
    }

    .home .why ul li p {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
    }

    .home .why ul li a {
        bottom: -28px;
        width: 140px;
        line-height: 56px;
        padding: 0 25px;
        font-size: 14px;
        letter-spacing: 1.8px;
    }

    .home .why ul li a img {
        width: 20px;
        right: 37px;
    }

    .home .why ul li a:after {
        width: 20px;
        height: 20px;
    }

    .faq {
        padding: 130px 70px 80px 70px;
    }

    .faq > img {
        width: 43vw;
        left: auto;
        right: -12.5vw;
        top: 5.5vw;
    }

    .faq ul {
        margin: 50px auto 0 auto;
    }

    .faq ul li:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .faq ul li label {
        line-height: 60px;
        font-size: 18px;
    }

    .faq ul li label:after {
        width: 20px;
        height: 12px;
    }

    .faq ul li label i {
        font-size: 26px;
        letter-spacing: 0.6px;
    }

    .faq ul li .txt {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.6px;
    }

    .faq ul li input:checked + label + .txt {
        padding: 30px 50px 15px 50px;
    }

    .home .contact {
        padding: 87px 70px 80px 70px;
    }

    .home .contact > img {
        width: 41.5%;
        right: -9vw;
        top: 87px;
    }

    .home .contact title {
        margin: 6px auto 50px auto;
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 0.8px;
        text-align: left;
    }

    .all-form {
        padding: 30px 50px 50px 50px;
    }

    .all-form .btn {
        width: 180px;
        line-height: 54px;
        height: 54px;
        font-size: 16px;
        letter-spacing: 2px;
        margin: 50px auto 0 auto;
    }

    .all-form .btn img {
        width: 22px;
        margin-left: 10px;
    }

    .blocker .modal {
        padding: 30px 0 40px 0;
        max-width: 520px;
    }

    .blocker .modal .check {
        padding-top: 0;
    }

    .blocker .modal .check strong {
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 1px;
    }

    .blocker .modal .check > label {
        width: 180px;
        margin: 30px 10px 0 10px;
    }

    .signup {
        background: #f7f7f7;
    }

    .signup > .wrapper {
        display: block;
        padding: 110px 0 60px 0;
    }

    .signup > .wrapper .list {
        display: none;
    }

    .signup > .wrapper .form {
        width: 520px;
        margin: 0px auto;
    }

    .signup > .wrapper .form > small:last-of-type {
        font-size: 14px;
        letter-spacing: 0.62px;
    }

    .signup > .wrapper .form .all-form {
        padding: 20px 54px 40px 54px;
    }

    .signup > .wrapper .form .all-form label .check {
        top: auto;
        bottom: 10px;
        right: 50px;
        width: 300px;
        height: 230px;
        background: url(../../img/v3/bubble-bg-mb@3x.png) left top no-repeat;
        background-size: 100%;
        padding: 30px 50px 40px 30px;
    }

    .signup > .wrapper .form .all-form label input:focus + a + .check,
    .signup > .wrapper .form .all-form label input:focus + label + a + .check {
        top: auto;
        bottom: 40px;
    }

    .signup > .wrapper .form .all-form label .flex input:nth-of-type(2) {
        width: 100%;
    }

    .word-txt {
        padding: 40px 70px 60px 70px;
    }

    .word-txt title {
        font-size: 22px;
        line-height: 33px;
        letter-spacing: 0.4px;
        margin-bottom: 20px;
    }

    .word-txt p {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
        margin-bottom: 15px;
    }

    .word-txt strong {
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.9px;
        margin: 40px 0 15px 0;
    }

    .word-txt ul > li {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
        margin-bottom: 15px;
        padding-left: 25px;
    }

    .word-txt ol {
        margin-left: 25px;
    }

    .word-txt ol > li {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
        margin-top: 15px;
    }

    .blogs .top {
        border-radius: 0 0 0 30px;
        background: url(../../img/v3/kv-bg-web@3x.png) right -98px bottom 40px no-repeat #00468c;
        background-size: auto 250px;
        padding: 110px 0 66px 0;
    }

    .blogs .top .h3-title {
        text-align: center;
    }

    .blogs .top h3:before {
        width: 30px;
        height: 30px;
        left: 5px;
        top: -5px;
    }

    .blogs .top .search {
        margin: 26px auto 0 auto;
        width: 409px;
    }

    .blogs .top .search input {
        padding: 0 60px 0 30px;
        font-size: 16px;
        letter-spacing: 0.8px;
        height: 60px;
    }

    .blogs .top .search button {
        width: 35px;
        height: 35px;
        right: 25px;
    }

    .blogs .tabs {
        margin: 46px 0 -13px 0;
    }

    .blogs .tabs a {
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.8px;
        margin: 0 20px;
    }

    .blogs .tabs a.active:before {
        width: 25px;
        height: 25px;
    }

    .blogs .list {
        padding: 0 70px 100px 70px;
    }

    .blogs .list title {
        font-size: 20px;
        line-height: 29px;
    }

    .blogs .list a {
        width: calc(50% - 28px);
        margin: 60px 56px 0 0;
    }

    .blogs .list a:nth-of-type(3n) {
        margin: 60px 56px 0 0;
    }

    .blogs .list a:nth-of-type(2n) {
        margin-right: 0;
    }

    .blogs .list a > div {
        padding: 20px 20px 30px 20px;
    }

    .blogs .list a small {
        font-size: 16px;
        letter-spacing: 0.89px;
    }

    .blogs .list a p {
        font-size: 16px;
        line-height: 26px;
        height: 52px;
        letter-spacing: 0.2px;
    }

    .blogs .list a br {
        display: none;
    }

    .blogs .list .nosearch {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
    }

    .blogs .list .nosearch img {
        width: 200px;
    }

    .blogs .pagination {
        margin: -20px auto 100px auto;
    }

    .blogs .detail {
        padding: 30px 70px 60px 70px;
    }
    
    .blogs .detail .breadcrumb {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 30px;
    }

    .blogs .detail .txt > h2 {
        font-size: 26px;
        line-height: 40px;
        letter-spacing: 1px;
        margin: 20px 0 10px 0;
    }

    .blogs .detail .txt > img {
        margin: 30px auto 60px auto;
    }

    .blogs .detail .txt > div {
        margin-bottom: 60px;
    }

    .blogs .detail .txt > div p {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
    }

    .blogs .detail .txt > div strong {
        font-size: 20px;
        line-height: 29px;
        margin-bottom: 20px;
    }

    .blogs .detail .txt > hr {
        margin-bottom: 20px;
    }

    .blogs .detail .txt > a {
        font-size: 16px;
    }

    .blogs .list.scroll {
        padding: 0 0 50px 0
    }

    .blogs .list.scroll title {
        padding: 0 70px;
    }

    .blogs .list.scroll .scroll {
        width: 100%;
        overflow: auto;
        white-space: nowrap;
        padding: 0 70px 50px 70px;
    }

    .blogs .list.scroll .scroll::-webkit-scrollbar {
        display: none
    }

    .blogs .list.scroll .scroll a {
        display: inline-block;
        float: none;
        margin-right: 33px !important;
    }

    .blogs .list.scroll .scroll a p {
        white-space: normal;
    }

    .foot-line-link {
        background: url(../../img/v3/detail-link-bg-pad@3x.png) right top no-repeat #f7f7f7;
        background-size: 298px 206px;
    }

    .foot-line-link.white > img {
        width: 288px;
        left: auto;
        right: 0;
    }

    .foot-line-link title {
        font-size: 20px;
        line-height: 29px;
    }

    .foot-line-link small {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
    }

    .foot-line-link a {
        width: 246px;
        line-height: 60px;
        margin: 0px 12px;
    }

    .blogs .fix-share {
        right: 28px;
        top: auto;
        bottom: 0;
        width: 57px;
        height: 310px;
        padding: 0 10px;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }

    .blogs .fix-share.open {
        bottom: 130px;
        opacity: 1;
        padding: 20px 10px;
        box-shadow: 4px 4px 7px 0 rgba(9, 32, 43, 0.2);
        background-color: #fff;
        border-radius: 50px;
        overflow: visible;
        pointer-events: auto;
    }

    .blogs .fix-share i {
        width: 30px;
        line-height: 20px;
        margin: 0 auto 30px auto;
    }

    .blogs .fix-share a {
        width: 30px;
        margin: 0 auto 30px auto;
    }

    .feature .kv {
        padding: 115px 0 100px 0;
        border-radius: 0 0 0 30px;
    }

    .feature .kv > img {
        width: 338px;
        left: auto;
        right: 0;
    }

    .feature .kv .wrapper > div {
        width: 290px;
        padding-right: 45px;
    }

    .feature .kv .wrapper > div p {
        margin: 20px 0 40px 0;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.8px;
    }

    .feature .kv .wrapper > div .free-btn {
        height: 60px;
        font-size: 14.4px;
        padding: 16px 65px 16px 25px;
        float: left;
    }

    .feature .kv .wrapper > div .free-btn img {
        width: 20px;
        right: 32px;
    }

    .feature .kv .wrapper > div .free-btn:after {
        width: 21px;
        height: 21px;
        right: 25px;
    }

    .feature .kv .wrapper > img {
        width: calc(100% - 290px);
    }

    .feature .list {
        padding: 120px 0 100px 0;
    }

    .feature .list .wrapper {
        padding: 0 70px;
    }

    .feature .list .wrapper > div:not(:first-of-type) {
        margin-top: 120px;
    }

    .feature .list .wrapper > div > div {
        padding: 0 0 0 44px;
    }

    .feature .list .wrapper > div:nth-of-type(even) > div {
        padding: 0 44px 0 0;
    }

    .feature .list .wrapper > div > div strong {
        font-size: 22px;
        line-height: 39px;
        letter-spacing: 0.4px;
        margin-bottom: 10px;
    }

    .feature .list .wrapper > div > div i {
        font-size: 100px;
        letter-spacing: 5.56px;
        line-height: 50px;
    }

    .feature .list .wrapper > div > div .btn {
        padding: 0 36px;
    }

    .feature .list .wrapper > div:nth-of-type(even) > div i {
        left: -50px;
    }

    .feature .list .wrapper > div > img {
        width: calc(100% - 290px);
    }

    .feature .list .wrapper > div.special strong {
        font-size: 22px;
        line-height: 33px;
        letter-spacing: 0.4px;
        width: 292px;
        margin: 0px auto 30px auto;
    }

    .feature .list .wrapper > div.special strong i {
        font-size: 100px;
        letter-spacing: 5.56px;
        right: 0;
        top: -30px;
        line-height: 50px;
        width: 150px;
    }

    .feature .list .wrapper > div.special .toggle label {
        margin-bottom: 30px;
        width: 100%;
        margin-left: 0;
    }

    .feature .list .wrapper > div.special .toggle label b {
        font-size: 18px;
        letter-spacing: 0.8px;
    }

    .feature .list .wrapper > div.special .toggle label b img {
        height: 10px;
        margin: 20px -10px 0 0;
    }

    .feature .list .wrapper > div.special .toggle label p {
        padding: 0 50px;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
        text-align: left;
        text-justify: none;
        height: auto;
        max-height: 0;
    }

    .feature .list .wrapper > div.special .toggle label p .cover {
        height: auto;
        width: 100%;
        position: relative;
        margin: 15px auto 0 auto;
        box-shadow: none;
    }

    .feature .list .wrapper > div.special .toggle label input:checked + b + p {
        padding: 15px 50px 30px 50px;
        height: auto;
        max-height: 100vh;
    }

    .feature .member > img {
        width: 132px;
        right: auto;
        left: 0;
    }

    .feature .member .wrapper {
        padding: 60px 70px 80px 70px;
    }

    .feature .member .wrapper title {
        font-size: 20px;
        line-height: 29px;
    }

    .feature .member .wrapper .box {
        padding: 40px 54px;
        width: calc(100% - 162px);
        height: 220px;
    }

    .feature .member .wrapper .box img {
        width: 20px;
        left: 20px;
        top: 20px;
    }

    .feature .member .wrapper .box img + img {
        right: 20px;
        bottom: 20px;
    }

    .feature .member .wrapper .logo {
        right: 70px;
        top: 119px;
        width: 120px;
        height: 120px;
        border: 24px solid #fff;
    }

    .feature .member .wrapper .logo img {
        width: 72px;
    }

    .feature .member .wrapper span {
        right: 70px;
        width: 120px;
        bottom: 85px;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.8px;
    }

    .plan > img {
        left: auto;
        right: 0;
        width: 298px;
    }

    .plan .top {
        padding: 45px 0 80px 0;
    }

    .plan .top .h3-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .plan .top > p {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.8px;
    }

    .plan .top > p + p {
        margin-top: 5px;
    }

    .plan .top ul li {
        width: 215px;
        padding: 20px 15px 40px 15px;
        margin: 0 10px;
    }

    .plan .top ul li title {
        font-size: 26px;
        line-height: 38px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .plan .top ul li span {
        font-size: 40px;
        line-height: 60px;
        letter-spacing: 1.71px;
        white-space: nowrap;
        margin-left: -5px;
    }

    .plan .top ul li span sup {
        margin-right: 5px;
    }

    .plan .top ul li span i {
        font-size: 16px;
        letter-spacing: 0.2px;
        margin-left: 5px;
    }

    .plan .top ul li small {
        margin: 30px auto 10px auto;
    }

    .plan .top ul li p {
        font-size: 16px;
        line-height: 25px;
    }

    .plan .blue {
        border-radius: 0 0 30px 0;
        padding: 60px 0;
    }

    .plan .blue > img {
        width: 299px;
        right: auto;
        left: 0;
    }

    .plan .blue p {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
    }

    .plan .blue .free-btn {
        width: 235px;
        line-height: 60px;
        padding: 0 80px 0 40px;
        font-size: 14px;
        letter-spacing: 1.8px;
    }

    .plan .blue .free-btn:after {
        width: 21px;
        height: 21px;
    }

    .plan .blue .free-btn img {
        width: 25px;
        right: 47px;
    }

    .plan .confuse {
        padding: 60px 0 0 0;
    }

    .plan .confuse > img {
        right: 0;
        width: 222px;
    }

    .plan .confuse > title {
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .plan .confuse > p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.8px;
        padding-bottom: 0;
    }

    .plan .confuse .faq {
        padding: 0;
        background: none;
    }

    .plan .confuse .faq ul {
        width: calc(100% - 140px);
        padding-bottom: 90px;
    }

    .plan .confuse .faq ul li {
        margin-top: 30px;
    }

    .plan .table {
        padding: 80px 0;
    }

    .plan .table title {
        font-size: 22px;
        line-height: 33px;
        letter-spacing: 0.4px;
        margin-bottom: 40px;
    }

    .plan .table table {
        width: calc(100% - 80px);
    }

    .plan .table table thead {
        top: 90px;
    }

    .plan .table table tr td {
        font-size: 14px;
    }

    .plan .table table tr td:nth-of-type(1) {
        padding: 15px 30px;
    }

    .plan .table table tr td.title {
        font-size: 16px;
    }

    .plan .table table tr th {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.8px;
        padding: 15px 0;
    }

    .plan .table table tr.color td {
        top: 135px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.8px;
    }

    .profile .top {
        border-radius: 0 0 0 30px;
        padding: 120px 0 270px 0;
    }

    .profile .top > img {
        left: auto;
        right: 0;
        width: 288px;
    }

    .profile .top .h3-title {
        text-align: center;
    }

    .profile .top ul {
        bottom: -65px;
    }

    .profile .top ul li {
        padding: 30px;
        margin: 0 10px;
    }

    .profile .top ul li img {
        width: 80px;
        margin: 0px auto 20px auto;
    }

    .profile .top ul li title {
        font-size: 22px;
        line-height: 33px;
        letter-spacing: 0.4px;
        margin-bottom: 10px;
    }

    .profile .top ul li span {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.8px;
        margin-bottom: 0;
    }

    .profile .top ul li small {
        width: 100px;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.6px;
    }

    .profile .story {
        padding: 185px 40px 100px 40px;
    }

    .profile .story > div {
        width: calc(100% - 335px);
        padding-right: 22px;
    }

    .profile .story > div strong {
        font-size: 22px;
        line-height: 33px;
        letter-spacing: 0.4px;
        margin-bottom: 20px;
    }

    .profile .story > div p {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
        margin-bottom: 15px;
    }

    .profile .story .cover {
        width: 335px;
    }

    .profile .story.grey {
        padding: 80px 70px;
    }

    .profile .story.grey > img:not(.cover) {
        width: 264px;
        right: 0;
    }

    .profile .story.grey > div {
        width: calc(100% - 300px);
        padding: 0 0 0 25px;
    }

    .profile .story.grey .cover {
        width: 300px;
    }

    .profile .foot-line-link title {
        margin-bottom: 30px;
    }

    .profile .blue {
        padding: 60px 0 100px 0;
        border-radius: 0 0 30px 0;
    }

    .profile .blue > img {
        width: 233px;
        right: auto;
        left: 0;
    }

    .profile .blue > strong {
        font-size: 22px;
        line-height: 33px;
        letter-spacing: 0.4px;
    }

    .profile .blue > p {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.8px;
    }

    .profile .safe {
        padding: 165px 0 85px 0;
    }

    .profile .safe > title {
        font-size: 22px;
        line-height: 33px;
        margin-bottom: 20px;
        letter-spacing: 0.4px;
    }

    .profile .safe > p {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.8px;
        margin-bottom: 10px;
    }

    .profile .safe > ul {
        margin-top: 60px;
    }

    .profile .safe > ul li {
        width: 170px;
        margin: 0 40px;
    }

    .profile .safe > ul li > img {
        width: 140px;
        margin: 0px auto 20px auto;
    }

    .profile .safe > ul li b {
        font-size: 20px;
        line-height: 29px;
        margin-bottom: 10px;
    }

    .profile .safe > ul li p {
        font-size: 16px;
        letter-spacing: 0.2px;
        margin-bottom: 0;
    }

    .profile .milestone {
        padding: 80px 0 100px 0;
    }

    .profile .milestone title {
        font-size: 22px;
        line-height: 33px;
        letter-spacing: 0.4px;
        margin-bottom: 35px;
    }

    .profile .milestone .slider-nav {
        max-width: 500px;
        margin: 0px auto 150px auto;
    }

    .profile .milestone .slider-nav:before {
        top: 13px;
    }

    .profile .milestone .slider-nav li {
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    .profile .milestone .slider-nav li.slick-current {
        font-size: 22px;
        letter-spacing: 1.67px;
    }

    .profile .milestone .slider-nav li i {
        width: 32px;
        height: 32px;
        background: url(../../img/v3/component-timeline-default-dot@3x.png) center no-repeat;
        background-size: 22px 22px;
        display: block;
    }

    .profile .milestone .slider-nav li.slick-current i {
        background: url(../../img/v3/component-timeline-active-dot@3x.png) center no-repeat;
        background-size: 32px 32px;
    }

    .profile .milestone .slider-nav .slick-track:before,
    .profile .milestone .slider-nav .slick-track:after {
        top: 5px;
    }

    .profile .milestone .slider-for {
        padding: 0 70px;
    }

    .profile .milestone .slider-for * {
        overflow: visible;
    }

    .profile .milestone .slider-for .txt > img {
        width: 335px;
    }

    .profile .milestone .slider-for .txt > div {
        width: calc(100% - 335px);
        padding-left: 20px;
    }

    .profile .milestone .slider-for .txt > div b {
        font-size: 30px;
        line-height: 45px;
        letter-spacing: 1.5px;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: -90px;
        width: 80px;
        text-align: center;
    }

    .profile .milestone .slider-for .txt > div p {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
        padding-left: 15px;
    }

    .profile .milestone .slider-for .slick-prev {
        left: auto;
        right: calc(50vw + 103px);
        top: -90px;
        bottom: auto;
        width: 48px;
        height: 48px;
        background: url(../../img/v3/btn-arrow-white-left@3x.png) left 15px center no-repeat #17a0f3;
        background-size: 13px 17px;
    }

    .profile .milestone .slider-for .slick-next {
        right: auto;
        left: calc(50vw + 103px);
        top: -90px;
        bottom: auto;
        width: 48px;
        height: 48px;
        background: url(../../img/v3/btn-arrow-white-right@3x.png) right 15px center no-repeat #17a0f3;
        background-size: 13px 17px;
    }
}

@media screen and (max-width: 765px) {

    .desktop,
    .pad {
        display: none;
    }

    .mobile {
        display: block;
    }

    .wrapper {
        padding: 0 45px;
    }

    header .wrapper {
        padding: 0 45px;
    }

    header .btn {
        padding: 9px 17px;
    }

    header .btn.white {
        display: none;
    }

    header .mobile-fix {
        bottom: -100px;
    }

    header .mobile-fix.open {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        text-align: center;
        padding: 14px 0;
        z-index: 9999;
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

    header .mobile-fix.open .btn {
        display: inline-block;
        width: 135px;
        margin: 0 8px;
        float: none;
    }

    header .hamburger.is-opened + a + .menu {
        padding: 10px 0 40px 0;
        height: calc(100vh - 140px);
    }

    header .menu > label,
    header .menu > a {
        margin: 30px auto 0 auto;
    }

    header .menu > label.open {
        margin-bottom: -10px;
    }

    header .submenu a img {
        margin: 10px 38px 10px 0;
    }

    footer .wrapper {
        padding: 0 45px;
    }

    footer .left {
        width: 100%;
    }

    footer .box {
        width: 100%;
    }

    footer .link {
        margin-left: 0;
        margin-right: 22px;
    }

    footer .link:last-of-type {
        margin-left: 0;
        margin-right: 0;
    }

    .home .kv {
        background: url(../../img/v3/kv-bg-mb@3x.png) right top no-repeat #00468c;
        background-size: 230px 276px;
        padding: 110px 0 100px 0;
    }

    .home .kv .wrapper .txt h2 {
        font-size: 24px;
        line-height: 42px;
        letter-spacing: 0.8px;
    }

    .home .kv .wrapper .txt strong {
        font-size: 40px;
        line-height: 59px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .home .kv .wrapper .txt p {
        font-size: 16px;
        line-height: 27px;
        letter-spacing: 0.5px;
        width: 255px;
    }

    .home .kv .wrapper .txt p + p {
        margin-bottom: 20px;
    }

    .home .kv .wrapper .txt p:before {
        width: 6px;
        height: 6px;
        margin: 10px 10px 10px 0;
    }

    .home .kv .wrapper .img {
        margin: 40px auto 0 auto;
    }

    .free-btn {
        width: 235px;
        padding: 11px 42px;
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 1px;
    }

    .free-btn small {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .free-btn:after {
        width: 30px;
        height: 30px;
    }

    .number-list {
        bottom: -370px;
    }

    .number-list .list {
        padding: 0 25px;
        display: block;
        max-width: 235px;
        margin: 0px auto;
    }

    .number-list .list > div {
        padding: 25px 0 20px 0;
        width: 100% !important;
    }

    .number-list .list > div:not(:last-of-type):after {
        width: 85px;
        height: 1px;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
    }

    .number-list .list > div small {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.4px;
    }

    .number-list .list > div small b {
        font-size: 32px;
        line-height: 48px;
        letter-spacing: 0.8px;
        margin-top: -15px;
    }

    .number-list .list > div strong {
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 0.5px;
    }

    .home .case .h3-title {
        margin-bottom: 35px;
    }

    .home .case {
        padding: 445px 0 80px 0;
    }

    .home .case .list .card {
        margin: 0 17px;
    }

    .home .case .list .slick-prev,
    .home .case .list .slick-next {
        top: -65px;
    }

    .home .case .list .slick-dots {
        top: -73px;
    }

    .home .container > img {
        width: 41%;
    }

    .home .troubled {
        margin-bottom: 80px;
    }

    .home .troubled h3 {
        margin: 0 auto 40px auto;
    }

    .home .troubled .flex {
        display: block;
    }

    .home .troubled .flex > img {
        width: 100%;
        margin: 0 auto;
    }

    .home .troubled .flex > div {
        width: 100%;
    }

    .home .troubled .flex small {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 10px;
    }

    .home .troubled .flex strong {
        line-height: 32px;
        margin-bottom: 20px;
    }

    .home .design {
        padding: 60px 0 125px 0;
        overflow: hidden;
    }

    .home .design .white {
        width: 470px;
        height: 470px;
        padding: 100px calc(235px - 50% + 45px) 0 calc(235px - 50% + 45px);
        margin: 0 calc(50% - 235px);
    }

    .home .design .wrapper > img {
        right: auto;
        position: relative;
        width: calc(100% - 90px);
        margin-top: -70px;
    }

    .home .why {
        padding-bottom: 50px;
    }

    .home .why:after {
        height: 605px;
    }

    .home .why .h3-title {
        padding: 0 45px;
    }

    .home .why title {
        margin: 10px auto 40px auto;
        padding: 0 45px;
    }

    .home .why ul {
        padding: 0 20px;
        display: block;
    }

    .home .why ul li {
        display: inline-block;
        vertical-align: top;
        width: calc(50% - 10px);
        margin-bottom: 55px;
    }

    .home .why ul li:not(:last-of-type) {
        margin-right: 15px;
    }

    .home .why ul li:nth-of-type(even) {
        margin-right: 0 !important;
    }

    .home .why ul li b {
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.6px;
    }

    .faq {
        padding: 90px 45px 80px 45px;
    }

    .faq > img {
        width: 72vw;
        right: -19.2vw;
        top: 8vw;
    }

    .faq ul {
        margin: 40px auto 0 auto;
    }

    .faq ul li label {
        padding: 15px 60px 15px 69px;
        line-height: 27px;
    }

    .faq ul li label:after {
        right: 25px;
    }

    .faq ul li label i {
        position: absolute;
        left: 25px;
        top: 15px;
    }

    .faq ul li .txt {
        padding: 0 25px;
        letter-spacing: 0.2px;
    }

    .faq ul li input:checked + label + .txt {
        padding: 30px 25px 15px 25px;
    }

    .home .contact {
        padding: 87px 20px 80px 20px;
    }

    .home .contact > img {
        width: 75%;
        right: -29vw;
        top: 122px;
    }

    .home .contact .h3-title {
        padding: 0 25px;
    }

    .home .contact title {
        margin: 10px auto 40px auto;
        padding: 0 25px;
    }

    .all-form {
        padding: 20px 25px 40px 25px;
    }

    .all-form label {
        width: 100%;
    }

    .all-form label .flex input:nth-of-type(2) {
        width: 100%;
    }

    .blocker .modal {
        padding: 20px 0 40px 0;
    }

    .blocker .modal .check strong {
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0.8px;
    }

    .blocker .modal .check > label {
        width: calc(50% - 30px);
        margin: 20px 5px 0 5px;
    }

    .blocker .modal .check > label a {
        font-size: 14px;
        padding-left: 36px;
    }

    .blocker .modal .check > label a i {
        left: 10px;
    }

    .signup > .wrapper {
        padding: 100px 20px 40px 20px;
    }

    .signup > .wrapper .form {
        width: 100%;
    }

    .signup > .wrapper .form title {
        font-size: 20px;
        line-height: 29px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .signup > .wrapper .form > small {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.2px;
    }

    .signup > .wrapper .form > small:last-of-type {
        font-size: 14px;
        letter-spacing: 0.62px;
        text-align: left;
        padding: 0 25px;
    }

    .signup > .wrapper .form .all-form {
        padding: 20px 25px 40px 25px;
        margin: 30px auto;
    }

    .word-txt {
        padding: 40px 45px 60px 45px;
    }

    .blogs .top {
        background: url(../../img/v3/kv-bg-mb@3x.png) right top no-repeat #00468c;
        background-size: auto 276px;
    }

    .blogs .top .search {
        width: calc(100% - 90px);
    }

    .blogs .top .search input {
        padding: 0 50px 0 20px;
    }

    .blogs .top .search button {
        right: 15px;
    }

    .blogs .tabs {
        padding-left: 52px;
        overflow: auto;
        white-space: nowrap;
        text-align: left;
        margin: 0;
        padding: 46px 0 17px 52px;
    }

    .blogs .tabs::-webkit-scrollbar {
        display: none
    }

    .blogs .tabs a {
        margin: 0 50px 0 0;
    }

    .blogs .list {
        padding: 0 45px 100px 45px;
    }

    .blogs .list title {
        padding-top: 30px;
        margin: 0 auto 10px auto;
    }

    .blogs .list a {
        width: 100%;
        margin: 30px 0 0 0;
    }

    .blogs .list a:nth-of-type(2n),
    .blogs .list a:nth-of-type(3n) {
        margin: 30px 0 0 0;
    }

    .blogs .pagination {
        margin: -40px auto 100px auto;
    }

    .blogs .pagination a {
        margin: 0 5px;
    }

    .blogs .pagination a.no {
        display: none;
    }

    .blogs .detail {
        padding: 30px 45px 60px 45px;
    }

    .blogs .list.scroll {
        padding: 0 45px 70px 45px;
    }

    .blogs .list.scroll title {
        padding: 0;
    }

    .blogs .list.scroll .scroll {
        padding: 0;
        overflow: visible;
    }

    .blogs .list.scroll .scroll a {
        display: block;
        margin: 0 0 30px 0 !important;
    }

    .foot-line-link {
        background: url(../../img/v3/detail-link-bg-mb@3x.png) right top no-repeat #f7f7f7;
        background-size: 195px 206px;
    }
    
    .foot-line-link .btn-list {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .foot-line-link .btn-list a:first-of-type {
        margin-bottom: 0;
    }
    
    .foot-line-link .btn-list a:last-of-type {
        margin-bottom: 30px;
    }

    .foot-line-link.white > img {
        width: 195px;
    }

    .foot-line-link a {
        display: block;
        width: 235px;
        margin: 0 auto 30px auto;
    }

    .foot-line-link a:last-of-type {
        margin-bottom: 0;
    }

    .signup > .wrapper .form .all-form label .check {
        right: 0;
    }

    .feature .kv {
        padding: 115px 0 160px 0;
    }

    .feature .kv > img {
        width: 208px;
    }

    .feature .kv .wrapper {
        display: block;
        padding: 0 20px;
    }

    .feature .kv .wrapper > div {
        width: 100%;
        padding-right: 0;
    }

    .feature .kv .wrapper > div .h3-title {
        text-align: center;
    }

    .feature .kv .wrapper > div p {
        margin: 30px auto;
        max-width: 285px;
    }

    .feature .kv .wrapper > div .free-btn {
        width: 185px;
        float: none;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -100px;
        padding: 16px 80px 16px 40px;
    }

    .feature .kv .wrapper > div .free-btn img {
        width: 20px;
        right: 47px;
    }

    .feature .kv .wrapper > div .free-btn:after {
        width: 21px;
        height: 21px;
        right: 40px;
    }

    .feature .kv .wrapper > div .free-btn.lg {
        padding: 16px 65px 16px 25px;
    }

    .feature .kv .wrapper > div .free-btn.lg img {
        width: 20px;
        right: 32px;
    }

    .feature .kv .wrapper > div .free-btn.lg:after {
        width: 21px;
        height: 21px;
        right: 25px;
    }

    .feature .kv .wrapper > img {
        width: 100%;
    }

    .feature .list {
        padding: 120px 0 80px 0;
    }

    .feature .list .wrapper {
        padding: 0 20px;
    }

    .feature .list .wrapper > div {
        display: block;
    }

    .feature .list .wrapper > div:not(:first-of-type) {
        margin-top: 120px;
    }

    .feature .list .wrapper > div > div {
        margin-bottom: 30px;
        padding: 0 25px;
        overflow: visible;
        order: inherit;
    }

    .feature .list .wrapper > div:nth-of-type(even) > div {
        padding: 0 25px;
    }

    .feature .list .wrapper > div > div strong {
        font-size: 20px;
    }

    .feature .list .wrapper > div > div i {
        right: 25px;
        top: -40px;
        width: 130px;
        line-height: 80px;
    }

    .feature .list .wrapper > div > div .btn {
        padding: 0 36px;
        margin: 40px auto 0 auto;
        width: 235px;
        display: block;
    }

    .feature .list .wrapper > div:nth-of-type(even) > div i {
        left: auto;
        right: 25px;
    }

    .feature .list .wrapper > div > img {
        width: 100%;
    }

    .feature .list .wrapper > div.special .toggle label p {
        padding: 0 15px;
    }

    .feature .list .wrapper > div.special .toggle label input:checked + b + p {
        padding: 15px;
    }

    .feature .member > img {
        width: 155px;
    }

    .feature .member .wrapper {
        padding: 60px 20px;
    }

    .feature .member .wrapper title {
        text-align: center;
    }

    .feature .member .wrapper > div:not(.box) {
        display: flex;
        align-items: center;
        padding: 0 25px;
    }

    .feature .member .wrapper .box {
        padding: 53px 50px;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .feature .member .wrapper .logo {
        right: auto;
        top: auto;
        position: relative;
    }

    .feature .member .wrapper span {
        right: auto;
        position: relative;
        width: calc(100% - 120px);
        bottom: auto;
    }

    .plan > img {
        width: 195px;
    }

    .plan .top {
        padding: 45px 0 0 0;
    }

    .plan .top .h3-title {
        margin-bottom: 20px;
    }

    .plan .top > p {
        text-align: justify;
        text-justify: inter-ideograph;
        max-width: 285px;
        margin: 0px auto;
    }

    .plan .top > p + p {
        margin-top: 10px;
    }

    .plan .top .overflow {
        overflow: auto;
    }

    .plan .top ul {
        white-space: nowrap;
        padding: 40px 20px 60px 20px;
        margin-top: 45px;
    }

    .plan .top .overflow::-webkit-scrollbar {
        display: none
    }

    .plan .blue > img {
        width: 170px;
    }

    .plan .confuse > img {
        right: auto;
        left: 0;
        width: 180px;
    }

    .plan .confuse .faq ul {
        width: calc(100% - 90px);
    }

    .plan .table table {
        width: calc(100% - 40px);
    }

    .plan .table table tr td {
        padding: 8px 0;
    }

    .plan .table table tr td:nth-of-type(1) {
        padding: 8px 10px;
    }

    .plan .table table tr td:nth-of-type(1),
    .plan .table table tr td:nth-of-type(2),
    .plan .table table tr td:nth-of-type(3),
    .plan .table table tr td:nth-of-type(4) {
        width: 25%;
    }

    .plan .table table tr td.title {
        font-size: 13px;
        padding: 5px 0;
    }

    .plan .table table tr td img {
        display: block;
        margin: 0 auto;
    }

    .plan .table table tr th {
        padding: 10px 0;
    }

    .plan .table table tr.color td {
        top: 125px;
        font-size: 13px;
    }

    .plan .table table thead:after {
        height: 35px;
    }

    .profile .top {
        padding: 120px 0 470px 0;
    }

    .profile .top > img {
        width: 230px;
    }

    .profile .top .h3-title h3 {
        font-size: 23px;
    }

    .profile .top ul {
        bottom: -80px;
    }

    .profile .top ul li {
        width: 335px;
        padding: 20px 0 20px 125px;
        margin: 30px 0 0 0;
        position: relative;
        text-align: left;
    }

    .profile .top ul li title {
        text-align: left;
    }

    .profile .top ul li img {
        width: 80px;
        height: 80px;
        margin: auto;
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
    }

    .profile .story {
        display: block;
        padding: 190px 45px 80px 45px;
    }

    .profile .story > div {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .profile .story .cover {
        width: 100%;
    }

    .profile .story.grey {
        padding: 80px 45px;
    }

    .profile .story.grey > img:not(.cover) {
        width: 230px;
    }

    .profile .story.grey > div {
        width: 100%;
        padding: 0;
    }

    .profile .story.grey > div strong {
        text-align: center;
    }

    .profile .story.grey .cover {
        width: 100%;
    }

    .profile .blue {
        padding: 60px 0 350px 0;
    }

    .profile .blue > img {
        width: 180px;
    }

    .profile .blue > strong {
        margin-bottom: 20px;
    }

    .profile .blue .number-list {
        bottom: -120px;
    }

    .profile .safe {
        padding: 245px 0 85px 0;
    }

    .profile .safe > p {
        text-align: left;
        width: 285px;
        margin: 0px auto;
    }

    .profile .safe > ul {
        margin-top: 0;
    }

    .profile .safe > ul li {
        display: block;
        margin: 50px auto 0 auto;
    }

    .profile .milestone {
        padding: 80px 0 70px 0;
    }

    .profile .milestone .slider-nav {
        max-width: calc(100% - 40px);
        margin: 0px auto 145px auto;
    }

    .profile .milestone .slider-nav li.slick-current {
        font-size: 20px;
    }

    .profile .milestone .slider-nav .slick-track:after {
        right: 2px;
    }

    .profile .milestone .slider-for {
        padding: 0 20px;
    }

    .profile .milestone .slider-for .txt {
        display: block;
    }

    .profile .milestone .slider-for .txt > img {
        width: 100%;
        margin-bottom: 30px;
    }

    .profile .milestone .slider-for .txt > div {
        width: 100%;
        padding: 0 10px;
    }

    .profile .milestone .slider-for .txt > div.no {
        padding-top: 45%;
    }

    .profile .milestone .slider-for .txt > div b {
        top: -80px;
    }

    .profile .milestone .slider-for .txt > div p {
        padding: 0 0 0 15px;
    }

    .profile .milestone .slider-for .slick-prev {
        top: -80px;
    }

    .profile .milestone .slider-for .slick-next {
        top: -80px;
    }
}

@media screen and (max-width: 380px) {

    .wrapper,
    header .wrapper,
    footer .wrapper {
        padding: 0 30px;
    }

    .plan .table table {
        width: 100vw;
    }
}