@charset "UTF-8";

body,
html {
    font-family: "Noto Sans TC", sans-serif, Arial, "Microsoft JhengHei", Helvetica;
    font-size: 16px;
    line-height: 1.5;
    color: #41484e
}
body.-jp {
  font-family: "Noto Sans JP", sans-serif, Arial, "Microsoft JhengHei", Helvetica;
}
a,
button {
    padding: 0;
    background: 0 0;
    border: none;
    outline: 0
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none
}

::selection {
    background: #b3d4fc;
    text-shadow: none
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

textarea {
    resize: vertical
}

.browserupgrade {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    margin: .2em 0;
    background: #ccc;
    padding: .2em 0
}

body {
    overflow-x: hidden
}

body.-menuOpen {
    overflow: hidden
}


.container {
    display: flex;
    flex-direction: column;
    min-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 50px;
    box-shadow: 0 13px 91px 0 rgba(0, 0, 0, .14);
    background-color: #fff;
    z-index: 50
}

.header-logo {
    flex: 0 0 auto;
    font-weight: 400
}

.header-menu {
    flex: 0 0 auto;
    display: flex;
    gap: 70px
}

.header-nav {
    height: 100%
}

.header-nav>div {
    height: 100%
}

.header-others {
    flex: 0 0 auto;
    align-self: center
}

.header-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 14px
}

.header-actions a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none
}

.header-actions a>div {
    flex: 0 0 auto;
    width: 25px;
    font-size: 0
}

.header-actions a>div img {
    width: 100%
}

.header-actions a>div img.-hover {
    display: none
}

.header-actions a>span {
    flex: 0 0 auto;
    padding-bottom: 2px;
    font-size: 16px;
    color: #393939
}

.header-burger {
    display: none
}

@media only screen and (min-width:1024px) {
    .header-actions a:hover>div img {
        display: none
    }

    .header-actions a:hover>div img.-hover {
        display: inline-block
    }

    .header-actions a:hover>span {
        color: #4672ab
    }
}

@media only screen and (max-width:1639px) {
    .header {
        padding: 10px 20px;
        box-shadow: 0 8px 60px 0 rgba(0, 0, 0, .14)
    }

    .header-menu {
        gap: 45px
    }

    body.-jp .header-menu {
        gap: 35px
    }

    .header-actions {
        margin-top: 9px
    }
}

@media (min-width:1024px) and (max-width:1279px) {
    .header {
        padding: 10px 16px
    }

    .header-menu {
        gap: 24px
    }

    body.-jp .header-menu {
        gap: 24px
    }

    .header-actions {
        margin-top: 6px
    }

    .header-actions a {
        gap: 2px
    }

    .header-actions a>div {
        width: 18px
    }

    .header-actions a>span {
        padding-bottom: 0;
        font-size: 13px
    }
}

@media only screen and (max-width:1023px) {
    .header {
        align-items: center
    }

    .header-menu {
        position: fixed;
        top: 66px;
        left: 0;
        flex-direction: column;
        box-sizing: border-box;
        width: 100%;
        height: calc(100% - 66px);
        padding: 30px 20px 45px;
        background-color: #fff;
        opacity: 0;
        transition: .3s;
        pointer-events: none
    }

    .-menuOpen .header-menu {
        opacity: 1;
        pointer-events: visible
    }

    body.-jp .header-menu {
        gap: 45px
    }

    .header-nav {
        flex: 1 1 auto;
        position: relative;
        height: auto;
        overflow-y: hidden
    }

    .header-nav>div {
        overflow-y: auto
    }

    .header-nav::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 90%);
        transition: height .3s
    }

    .header-nav.-overflow::after {
        height: 60px
    }

    .header-others {
        align-self: stretch
    }

    .header-actions {
        margin-top: 14px
    }

    .header-burger {
        display: block;
        width: 32px;
        height: 32px;
        background: url(../image/icon/burger.svg) no-repeat center/24px;
        cursor: pointer
    }

    .-menuOpen .header-burger {
        background-image: url(../image/icon/cross.svg)
    }
}

.logo {
    display: block;
    width: 300px;
    font-size: 0
}

.logo img {
    width: 100%
}

@media only screen and (max-width:1639px) {
    .logo {
        width: 230px
    }
}

@media only screen and (max-width:1279px) {
    .logo {
        width: 200px
    }
}

.nav {
    display: flex;
    gap: 40px;
    height: 100%
}

body.-jp .nav {
    gap: 32px
}

.nav-item {
    position: relative
}

.nav-l1 {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #393939;
    text-decoration: none;
    cursor: pointer
}

.-child .nav-l1 {
    padding-right: 10px
}

.-child .nav-l1::after {
    content: "";
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    margin-top: 2px;
    background: url(../image/icon/arrow.svg) no-repeat center/contain
}

.nav-group {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none
}

.nav-group::before {
    content: "";
    display: block;
    height: 15px
}

.nav-group>div {
    box-sizing: border-box;
    width: 200px;
    padding: 0 10px;
    text-align: center;
    box-shadow: 15.6px 6.6px 35px 0 rgba(255, 255, 255, .6);
    border-top: 8px solid #4672ab;
    background-color: #9bc4e2
}

body.-en .nav-group>div {
    width: 240px
}

.nav-item.-active>.nav-group,
.nav-item:hover>.nav-group {
    opacity: 1;
    pointer-events: visible
}

.nav-l2 {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: #fff;
    text-decoration: none
}

.nav-l2+.nav-l2 {
    border-top: 1px solid #fff
}

@media only screen and (min-width:1024px) {
    .nav-l1:hover {
        color: #4672ab
    }

    .nav-l1:hover::after {
        background-image: url(../image/icon/arrow-bu.svg)
    }

    .nav-l2:hover {
        color: #393939
    }
}

@media only screen and (max-width:1639px) {
    .nav {
        gap: 26px
    }

    body.-jp .nav {
        gap: 22px
    }

    .nav-l1 {
        padding: 0 14px;
        font-size: 17px
    }

    .-child .nav-l1::after {
        width: 20px;
        height: 20px
    }

    .nav-group::before {
        height: 10px
    }

    .nav-group>div {
        width: 170px;
        padding: 0 8px;
        box-shadow: 10px 4px 23px 0 rgba(255, 255, 255, .6);
        border-top-width: 5px
    }

    body.-en .nav-group>div {
        width: 210px
    }

    .nav-l2 {
        padding: 9px 0;
        font-size: 15px
    }
}

@media (min-width:1024px) and (max-width:1279px) {
    .nav {
        gap: 13px
    }

    body.-jp .nav {
        gap: 10px
    }

    .nav-l1 {
        padding: 0 9px;
        font-size: 16px
    }

    body.-jp .nav-l1 {
        padding: 0 6px;
        font-size: 15px
    }

    .nav-l2 {
        padding: 8px 0;
        font-size: 14px
    }
}

@media only screen and (max-width:1023px) {
    .nav {
        flex-direction: column;
        height: auto
    }

    body.-jp .nav {
        gap: 26px
    }

    .nav-l1 {
        height: auto;
        padding: 0
    }

    .nav-group {
        position: static;
        display: none;
        transform: none;
        opacity: 1;
        pointer-events: visible;
        transition: none
    }

    .nav-group>div {
        width: auto;
        text-align: left
    }

    body.-en .nav-group>div {
        width: auto
    }

    .nav-group.-active {
        display: block
    }

    .nav-l2 {
        padding: 9px
    }
}

.language {
    display: flex;
    align-items: center;
    gap: 5px
}

.language-icon {
    flex: 0 0 auto;
    width: 25px;
    font-size: 0
}

.language-icon img {
    width: 100%
}

.language select {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 184px;
    height: 27px;
    padding: 0 10px 1px 10px;
    font-size: 16px;
    line-height: 1;
    color: #393939;
    border-radius: 14px;
    border: 1px solid #393939;
    background: #fff url(../image/icon/arrow.svg) no-repeat center right 5px/25px;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer
}

.language select::-ms-expand {
    display: none
}

@media only screen and (min-width:1024px) {
    .language select:hover {
        color: #4672ab;
        border-color: #4672ab;
        background-image: url(../image/icon/arrow-bu.svg)
    }
}

@media (min-width:1024px) and (max-width:1279px) {
    .language {
        gap: 2px
    }

    .language-icon {
        width: 18px
    }

    .language select {
        width: 140px;
        height: 20px;
        padding: 0 7px 1px 7px;
        font-size: 12px;
        background-size: 18px
    }
}

@media only screen and (max-width:1023px) {
    .language select {
        flex: 1;
        width: auto
    }
}

.main {
    flex: 1 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding-top: 100px
}

.main.-index {
    display: block
}

@media only screen and (max-width:1639px) {
    .main {
        padding-top: 73px
    }
}

@media only screen and (max-width:1279px) {
    .main {
        padding-top: 66px
    }
}

.footer {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 12px 20px;
    border-top: 6px solid #4672ab;
    background-color: #fff
}

.footer-wrap {
    display: flex;
    align-items: center;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    gap: 20px
}

.footer-logo {
    flex: 1
}

.footer-logo img {
    width: 200px
}

.footer-link {
    flex: 0 0 auto;
    display: inline-flex;
    gap: 66px
}

.footer-link a {
    font-size: 19px;
    color: #60666b;
    text-decoration: none
}

@media only screen and (min-width:1024px) {
    .footer-link a:hover {
        color: #4672ab
    }
}

@media only screen and (max-width:1639px) {
    .footer {
        padding: 12px 16px;
        border-top-width: 5px
    }

    .footer-wrap {
        gap: 14px
    }

    .footer-logo img {
        width: 180px
    }

    .footer-link {
        gap: 50px
    }

    .footer-link a {
        font-size: 16px
    }
}

@media only screen and (max-width:1023px) {
    .footer {
        padding: 10px 20px
    }

    .footer-wrap {
        flex-direction: column;
        gap: 12px
    }

    .footer-logo img {
        width: 200px
    }

    .footer-link {
        flex-direction: column;
        gap: 4px;
        text-align: center
    }

    .footer-link a {
        font-size: 14px
    }
}

.MMH {
    display: block;
    width: 154px;
    font-size: 0;
    text-decoration: none
}

.MMH img {
    width: 100%
}

@media only screen and (max-width:1279px) {
    .MMH {
        width: 120px
    }
}

.IMSC {
    display: block;
    width: 65px;
    font-size: 0;
    text-decoration: none
}

.IMSC img {
    width: 100%
}

@media only screen and (max-width:1279px) {
    .IMSC {
        width: 50px
    }
}

.gotop {
    position: fixed;
    bottom: 150px;
    right: calc(50% - 800px);
    display: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #a1c8e3 url(../image/other/top.svg) no-repeat center/contain;
    overflow: hidden;
    cursor: pointer;
    z-index: 49
}

@media only screen and (min-width:1024px) {
    .gotop {
        transition: background-color .3s
    }

    .gotop:hover {
        background-color: #4672ab
    }
}

@media only screen and (max-width:1639px) {
    .gotop {
        bottom: 120px;
        right: 20px;
        width: 56px;
        height: 56px
    }
}

@media only screen and (max-width:1279px) {
    .gotop {
        bottom: 100px
    }
}

@media only screen and (max-width:1023px) {
    .gotop {
        bottom: 60px;
        right: 10px
    }
}

.banner {
    flex: 0 0 auto;
    height: 400px
}
.banner video ,
.banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (max-width:1639px) {
    .banner {
        height: 342px
    }
}

@media only screen and (max-width:1279px) {
    .banner {
        height: 266px
    }
}

@media only screen and (max-width:767px) {
    .banner {
        height: 220px
    }
}

.btn {
    box-sizing: border-box;
    display: inline-block;
    padding: 1px 12px 2px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    background-color: #4672ab;
    cursor: pointer
}

.btn.-lg {
    padding: 3px 20px 5px;
    font-size: 22px
}

.btn.-next {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .4545454545em
}

.btn.-next::after {
    content: "";
    flex: 0 0 auto;
    border-left: .4545454545em solid #fff;
    border-top: .2727272727em solid transparent;
    border-bottom: .2727272727em solid transparent;
    transform: translateY(.03em)
}

@media only screen and (min-width:1024px) {
    .btn {
        transition: background-color .3s
    }

    .btn:hover {
        background-color: #6ab4cf
    }
}

@media only screen and (max-width:1439px) {
    .btn {
        padding: 1px 10px 2px;
        font-size: 16px;
        border-radius: 4px
    }

    .btn.-lg {
        padding: 2px 16px 4px;
        font-size: 18px
    }
}

@media only screen and (max-width:1023px) {
    .btn {
        padding: 0 8px 1px;
        font-size: 14px;
        border-radius: 3px
    }

    .btn.-lg {
        padding: 1px 12px 3px;
        font-size: 16px;
        border-radius: 4px
    }
}

.tab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 70px
}

.tab.-l2 {
    margin-top: -30px
}

.tab.-main {
    gap: 70px
}

.tab-item {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 10px 20px 11px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #41484e;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #fafafb;
    cursor: pointer
}

.tab-item.-active {
    color: #fff;
    border-color: #4672ab;
    background-color: #4672ab
}

.tab.-main .tab-item {
    color: #fff;
    border-radius: 25px;
    border: none;
    background-color: #b8b9b9
}

.tab.-main .tab-item.-active {
    background-color: #4672ab
}

@media only screen and (min-width:1024px) {
    .tab-item {
        transition: .3s
    }

    .tab-item:hover {
        color: #4672ab;
        background-color: #e5f4ff
    }

    .tab-item.-active:hover {
        color: #fff;
        background-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .tab {
        gap: 18px;
        margin-bottom: 56px
    }

    .tab.-l2 {
        margin-top: -24px
    }

    .tab.-main {
        gap: 56px
    }

    .tab-item {
        padding: 8px 15px 9px;
        font-size: 18px;
        border-radius: 7px
    }
}

@media only screen and (max-width:1023px) {
    .tab {
        gap: 15px;
        margin-bottom: 45px
    }

    .tab.-l2 {
        margin-top: -20px
    }

    .tab.-main {
        gap: 32px
    }

    .tab-item {
        padding: 6px 12px 7px;
        font-size: 16px;
        border-radius: 6px
    }
}

@media only screen and (max-width:1023px) {
    .tab.-main {
        gap: 15px
    }

    .tab-item {
        padding: 6px 10px 7px;
        font-size: 15px
    }
}

[data-tab-content] {
    display: none
}

[data-tab-content].-active {
    display: block
}

.arrowBtn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 8px 25px;
    font-size: 20px;
    text-decoration: none;
    color: #41484e;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #fafafb;
    cursor: pointer
}

.arrowBtn::before {
    content: "";
    flex: 0 0 auto;
    width: 1.5em;
    height: 1.5em;
    background: url(../image/icon/o_arrow.svg) no-repeat center/contain
}

.arrowBtn span {
    flex: 0 0 auto
}

.arrowBtn.-down::before {
    transform: rotate(-90deg)
}

@media only screen and (min-width:1024px) {
    .arrowBtn::before {
        transition: transform .3s
    }

    .arrowBtn:hover::before {
        transform: scale(1.3)
    }

    .arrowBtn.-down:hover::before {
        transform: rotate(-90deg) scale(1.3)
    }
}

@media only screen and (max-width:1439px) {
    .arrowBtn {
        gap: 16px;
        padding: 6px 20px;
        font-size: 16px;
        border-radius: 6px
    }
}

@media only screen and (max-width:1023px) {
    .arrowBtn {
        gap: 12px;
        padding: 5px 16px;
        font-size: 14px;
        border-radius: 5px
    }
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #4672ab;
    text-decoration: none
}

.link img {
    flex: 0 0 auto;
    width: 42px
}

.link span {
    flex: 0 1 auto;
    font-size: 22px;
    font-weight: 700
}

@media only screen and (min-width:1024px) {
    .link:hover {
        text-decoration: underline
    }
}

@media only screen and (max-width:1439px) {
    .link {
        gap: 10px
    }

    .link img {
        width: 34px
    }

    .link span {
        font-size: 18px
    }
}

@media only screen and (max-width:1023px) {
    .link {
        gap: 8px
    }

    .link img {
        width: 26px
    }

    .link span {
        font-size: 15px
    }
}

@media only screen and (max-width:767px) {
    .link {
        gap: 6px
    }

    .link img {
        width: 24px
    }
}

.content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    background-color: #e6f4ff;
    padding: 0 20px
}

.content-board {
    flex: 1 0 auto;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: -70px auto 0;
    padding: 0 50px;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 9px 60px 0 rgba(31, 72, 107, .1);
    background-color: #fff;
    overflow: hidden
}

.content-tool {
    padding: 21px 0 20px;
    border-bottom: 2px solid #e7f2ff
}

.content-wrap {
    padding: 60px 30px 90px
}

.content-wrap.-full {
    padding: 0;
    margin: 0 -50px
}

.content-head {
    margin-bottom: 70px
}

.content-block+.content-block {
    margin-top: 70px
}

@media only screen and (max-width:1439px) {
    .content-board {
        max-width: 1040px;
        margin: -56px auto 0;
        padding: 0 20px;
        border-radius: 18px 18px 0 0;
        box-shadow: 0 7px 48px 0 rgba(31, 72, 107, .1)
    }

    .content-tool {
        padding: 17px 0 16px
    }

    .content-wrap {
        padding: 48px 24px 72px
    }

    .content-wrap.-full {
        margin: 0 -20px
    }

    .content-head {
        margin-bottom: 56px
    }

    .content-block+.content-block {
        margin-top: 56px
    }
}

@media only screen and (max-width:1023px) {
    .content-board {
        margin: -45px auto 0;
        border-radius: 14px 14px 0 0;
        box-shadow: 0 6px 38px 0 rgba(31, 72, 107, .1)
    }

    .content-tool {
        padding: 14px 0 13px
    }

    .content-wrap {
        padding: 38px 0 57px
    }

    .content-head {
        margin-bottom: 44px
    }

    .content-block+.content-block {
        margin-top: 44px
    }
}

@media only screen and (max-width:767px) {
    .content {
        padding: 0 16px
    }

    .content-board {
        padding: 0 16px;
        border-radius: 12px 12px 0 0
    }

    .content-wrap.-full {
        margin: 0 -16px
    }

    .content-head {
        margin-bottom: 30px
    }

    .content-block+.content-block {
        margin-top: 30px
    }
}

.pageHead {
    text-align: center
}

.pageHead-subtit {
    margin-top: 56px;
    font-size: 30px;
    font-weight: 700;
    color: #4672ab
}

.pageHead-desc {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.7
}

.pageHead-tool {
    margin-top: 36px
}

@media only screen and (max-width:1439px) {
    .pageHead-subtit {
        margin-top: 40px;
        font-size: 24px
    }

    .pageHead-desc {
        margin-top: 12px;
        font-size: 16px
    }

    .pageHead-tool {
        margin-top: 30px
    }
}

@media only screen and (max-width:1023px) {
    .pageHead-subtit {
        margin-top: 30px;
        font-size: 20px
    }

    .pageHead-desc {
        margin-top: 8px;
        font-size: 14px
    }

    .pageHead-tool {
        margin-top: 24px
    }
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    color: #68747f
}

.breadcrumbs::before {
    content: "";
    width: .2222222222em;
    height: 1em;
    border: 1px solid #a6cef2;
    background-color: #6d91bf
}

.breadcrumbs-item {
    padding: 0 .5555555556em;
    color: #68747f;
    text-decoration: none
}

.breadcrumbs-item+.breadcrumbs-item {
    position: relative
}

.breadcrumbs-item+.breadcrumbs-item::before {
    content: "";
    position: absolute;
    top: .2777777778em;
    left: 0;
    width: 1px;
    height: 1em;
    background-color: #68747f;
    pointer-events: none
}

@media only screen and (min-width:1024px) {
    .breadcrumbs a.breadcrumbs-item:hover {
        text-decoration: underline
    }
}

@media only screen and (max-width:1439px) {
    .breadcrumbs {
        font-size: 16px
    }
}

@media only screen and (max-width:1023px) {
    .breadcrumbs {
        font-size: 14px
    }
}

.graphic-pic {
    width: 37.1428571429%;
    margin-right: 5%;
    float: left
}

.graphic-content {
    position: relative;
    padding-top: 16px
}

.graphic-content .info>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.graphic-content .info-group {
    flex: 1 1 auto
}

.graphic-content .info-group>.info-text {
    width: 100%
}

.graphic-content .info-group.-wrap {
    width: 100%
}

.graphic-content::after {
    content: "";
    display: block;
    clear: both
}

.graphic.-r .graphic-pic {
    float: right;
    margin-right: 0;
    margin-left: 5%
}

.graphic.-full .graphic-pic {
    width: 100%;
    margin-right: 0;
    float: none
}

.graphic.-full .graphic-content {
    margin-top: 20px
}

.graphic.-side {
    display: flex
}

.graphic.-side.-r {
    flex-direction: row-reverse
}

.graphic.-side .graphic-pic {
    flex: 0 0 auto;
    float: none
}

.graphic.-side .graphic-content {
    flex: 1
}

@media only screen and (max-width:1439px) {
    .graphic-content {
        padding-top: 13px
    }

    .graphic.-full .graphic-content {
        margin-top: 10px
    }
}

@media only screen and (max-width:1023px) {
    .graphic-pic {
        margin-right: 3.8571428571%
    }

    .graphic-content {
        padding-top: 10px
    }

    .graphic.-r .graphic-pic {
        margin-left: 3.8571428571%
    }

    .graphic.-full .graphic-content {
        margin-top: 6px
    }
}

@media only screen and (max-width:767px) {
    .graphic-pic {
        width: 100%;
        margin-right: 0;
        float: none
    }

    .graphic-content {
        padding-top: 6px
    }

    .graphic.-r .graphic-pic {
        float: none;
        margin-left: 0
    }

    .graphic.-full .graphic-content {
        margin-top: 6px
    }

    .graphic.-side {
        display: block
    }
}

.map {
    width: 100%;
    height: 100%
}

.anchor {
    transform: translateY(-100px)
}

@media only screen and (max-width:1639px) {
    .anchor {
        transform: translateY(-73px)
    }
}

@media (min-width:1024px) and (max-width:1279px) {
    .anchor {
        transform: translateY(-66px)
    }
}

.picture {
    position: relative;
    padding: 24px 0 33px;
    font-size: 0
}

.picture img {
    position: relative;
    width: 100%;
    box-shadow: -16px 14px 0 0 #d9f0fa;
    z-index: 1
}

.picture::before {
    content: "";
    position: absolute;
    bottom: -33px;
    left: -60px;
    width: 121px;
    height: 121px;
    background: url(../image/pics/deco-l.png) no-repeat center/contain
}

.picture::after {
    content: "";
    position: absolute;
    top: -24px;
    right: -34px;
    width: 177px;
    height: 164px;
    background: url(../image/pics/deco-r.png) no-repeat center/contain
}

@media only screen and (max-width:1439px) {
    .picture {
        padding: 19px 0 26px
    }

    .picture img {
        box-shadow: -13px 11px 0 0 #d9f0fa
    }

    .picture::before {
        bottom: -24px;
        left: -46px;
        width: 97px;
        height: 97px
    }

    .picture::after {
        top: -19px;
        right: -27px;
        width: 142px;
        height: 131px
    }
}

@media only screen and (max-width:1023px) {
    .picture {
        padding: 15px 0 21px
    }

    .picture img {
        box-shadow: -11px 9px 0 0 #d9f0fa
    }

    .picture::before {
        bottom: -18px;
        left: -38px;
        width: 78px;
        height: 78px
    }

    .picture::after {
        top: -15px;
        right: -22px;
        width: 114px;
        height: 105px
    }
}

@media only screen and (max-width:767px) {
    .picture {
        padding: 12px 0 17px
    }

    .picture img {
        box-shadow: -9px 7px 0 0 #d9f0fa
    }

    .picture::before {
        bottom: -8px;
        left: -34px;
        width: 62px;
        height: 62px
    }

    .picture::after {
        top: -12px;
        right: -18px;
        width: 91px;
        height: 84px
    }
}

.cube {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 36px
}

.cube-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: calc((100% - 108px)/ 4);
    box-sizing: border-box;
    padding: 36px 4px 32px;
    color: #41484e;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 21px 0 rgba(70, 114, 171, .3);
    background-color: #fff
}

.cube-pic {
    flex: 0 0 auto;
    width: 70px
}

.cube-pic img {
    width: 100%
}

.cube-txt {
    flex: 1 0 auto;
    display: inline-flex;
    align-items: center;
    width: 100%;
    font-size: 20px;
    line-height: 1.3;
    word-wrap: break-word
}

.cube-txt>* {
    width: 100%
}

.cube-txt a {
    color: #41484e;
    text-decoration: none
}

@media only screen and (min-width:1024px) {
    .cube a.cube-item {
        transition: transform .3s, box-shadow .3s
    }

    .cube a.cube-item:hover {
        box-shadow: 0 0 21px 6px #a1c8e3;
        transform: scale(.95)
    }
}

@media only screen and (max-width:1439px) {
    .cube {
        gap: 26px
    }

    .cube-item {
        gap: 16px;
        width: calc((100% - 78px)/ 4);
        padding: 28px 4px 26px;
        border-radius: 8px;
        box-shadow: 0 0 17px 0 rgba(70, 114, 171, .3)
    }

    .cube-pic {
        width: 58px
    }

    .cube-txt {
        font-size: 16px
    }
}

@media only screen and (max-width:1023px) {
    .cube {
        gap: 18px
    }

    .cube-item {
        gap: 13px;
        width: calc((100% - 54px)/ 4);
        padding: 22px 4px 20px;
        border-radius: 7px;
        box-shadow: 0 0 14px 0 rgba(70, 114, 171, .3)
    }

    .cube-pic {
        width: 48px
    }

    .cube-txt {
        font-size: 14px
    }
}

@media only screen and (max-width:767px) {
    .cube {
        gap: 16px
    }

    .cube-item {
        width: calc((100% - 16px)/ 2)
    }
}

.newsList-list {
    display: flex;
    flex-wrap: wrap;
    gap: 90px 70px
}

.newsList-list .card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    width: calc((100% - 140px)/ 3)
}

.newsList-list .card-pic {
    flex: 0 0 auto
}

.newsList-list .card-content {
    flex: 1 0 auto
}

.newsList-more {
    margin-top: 60px;
    text-align: center
}

@media only screen and (max-width:1439px) {
    .newsList-list {
        gap: 56px 30px
    }

    .newsList-list .card {
        width: calc((100% - 60px)/ 3)
    }

    .newsList-more {
        margin-top: 48px
    }
}

@media only screen and (max-width:1023px) {
    .newsList-list {
        gap: 28px 16px
    }

    .newsList-list .card {
        width: calc((100% - 32px)/ 3)
    }

    .newsList-more {
        margin-top: 38px
    }
}

@media only screen and (max-width:767px) {
    .newsList-list {
        gap: 28px
    }

    .newsList-list .card {
        width: 100%
    }
}

.card-pic img {
    width: 100%
}

.card-content {
    position: relative;
    margin-top: 20px;
    padding: 0 0 18px 18px;
    border-left: 1px solid #8b8b8b
}

.card-date {
    margin-bottom: 10px;
    font-size: 18px;
    color: #888
}

.card-tit {
    display: -webkit-box;
    max-height: 2.4em;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.4em;
    margin-bottom: 8px;
    padding-right: 1.4em;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    overflow: hidden
}

.card-txt {
    max-height: 2.8em;
    padding-right: 3em;
    font-size: 18px;
    line-height: 1.4;
    overflow: hidden
}

.card-more {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 32px;
    height: 32px;
    text-decoration: none;
    border-radius: 50%;
    background: #4672ab url(../image/icon/plus.svg) no-repeat center/70%
}

@media only screen and (min-width:1024px) {
    .card-more {
        transition: transform .3s
    }

    .card-more:hover {
        transform: scale(1.3)
    }
}

@media only screen and (max-width:1439px) {
    .card-content {
        margin-top: 16px;
        padding: 0 0 14px 14px
    }

    .card-date {
        margin-bottom: 8px;
        font-size: 14px
    }

    .card-tit {
        margin-bottom: 6px;
        font-size: 18px
    }

    .card-txt {
        font-size: 15px
    }

    .card-more {
        bottom: 8px;
        width: 26px;
        height: 26px
    }
}

@media only screen and (max-width:1023px) {
    .card-content {
        margin-top: 13px;
        padding: 0 0 12px 12px
    }

    .card-date {
        margin-bottom: 6px;
        font-size: 12px
    }

    .card-tit {
        margin-bottom: 6px;
        font-size: 16px
    }

    .card-txt {
        font-size: 14px
    }

    .card-more {
        bottom: 6px;
        width: 21px;
        height: 21px
    }
}

.board {
    padding: 36px 68px;
    border: 1px solid rgba(0, 0, 0, .1);
    background-color: #fafafb
}

.board-simple {
    display: flex;
    gap: 45px
}

.board-pic {
    flex: 0 0 auto;
    width: 250px
}

.board-pic img {
    width: 100%
}

.board-content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column
}

.board-head {
    flex: 0 0 auto;
    padding-right: 240px;
    color: #4672ab;
    line-height: 1.3
}

.board-tit {
    font-size: 24px
}

body.-en .board-tit {
    margin-bottom: 4px
}

.board-name {
    font-size: 36px;
    font-weight: 700
}

.board-wrap {
    flex: 1 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 45px
}

.board-txt {
    flex: 1;
    font-size: 23px;
    color: #4672ab
}

.board-more {
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .9em;
    width: 200px;
    height: 40px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .1em;
    color: #fff;
    background-color: #0072bc;
    cursor: pointer
}

.board-more::before {
    content: "";
    border-top: .6em solid #fff;
    border-left: .35em solid transparent;
    border-right: .35em solid transparent;
    transition: transform .3s
}

.board-more span {
    padding-bottom: .08em
}

.board-detail {
    display: none;
    padding-top: 34px;
    font-size: 20px;
    line-height: 1.6
}

.board-detail b {
    font-size: 1.15em;
    color: #4672ab
}

.board.-open .board-more::before {
    transform: rotateX(180deg)
}

.board.-simple {
    padding: 22px
}

.board.-simple .board-simple {
    gap: 28px
}

.board.-simple .board-head {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
    padding-right: 0
}

.board.-simple .board-wrap {
    margin-top: 16px;
    gap: 28px
}

.board.-simple .board-txt {
    font-size: 17px;
    color: #41484e
}

@media only screen and (min-width:1024px) {
    .board-more {
        transition: background-color .3s
    }

    .board-more:hover {
        background-color: #6ab4cf
    }
}

@media only screen and (max-width:1439px) {
    .board {
        padding: 30px
    }

    .board-simple {
        gap: 36px
    }

    .board-pic {
        width: 200px
    }

    .board-head {
        padding-right: 180px
    }

    .board-tit {
        font-size: 19px
    }

    .board-name {
        font-size: 29px
    }

    .board-wrap {
        gap: 36px
    }

    .board-txt {
        font-size: 18px
    }

    .board-more {
        width: 160px;
        height: 32px;
        font-size: 16px
    }

    .board-detail {
        padding-top: 27px;
        font-size: 16px
    }

    .board.-simple {
        padding: 18px
    }

    .board.-simple .board-simple {
        gap: 22px
    }

    .board.-simple .board-head {
        gap: 3px 6px
    }

    .board.-simple .board-wrap {
        gap: 22px
    }

    .board.-simple .board-txt {
        font-size: 14px
    }
}

@media only screen and (max-width:1023px) {
    .board {
        padding: 24px
    }

    .board-simple {
        gap: 20px
    }

    .board-pic {
        width: 160px
    }

    .board-head {
        padding-right: 140px
    }

    .board-tit {
        font-size: 15px
    }

    body.-en .board-tit {
        font-size: 14px
    }

    .board-name {
        font-size: 23px
    }

    .board-wrap {
        gap: 28px
    }

    .board-txt {
        font-size: 15px
    }

    body.-en .board-txt {
        margin-top: 4px;
        font-size: 14px
    }

    .board-more {
        width: 130px;
        height: 28px;
        font-size: 14px
    }

    .board-detail {
        padding-top: 22px;
        font-size: 14px
    }

    .board.-simple {
        padding: 18px
    }

    .board.-simple .board-simple {
        gap: 14px
    }

    .board.-simple .board-head {
        gap: 2px 5px
    }

    .board.-simple .board-wrap {
        gap: 17px
    }
}

@media only screen and (max-width:767px) {
    .board {
        padding: 20px 12px
    }

    .board-simple {
        flex-direction: column;
        gap: 20px
    }

    .board-pic {
        width: 150px;
        align-self: center
    }

    .board-head {
        padding-right: 0
    }

    .board-wrap {
        flex-direction: column;
        margin-top: 10px;
        gap: 16px
    }

    .board-txt {
        align-self: flex-start
    }

    .board-more {
        position: static;
        gap: .5em;
        width: 110px;
        height: 26px;
        font-size: 13px;
        letter-spacing: 0
    }

    .board.-simple {
        padding: 12px
    }

    .board.-simple .board-simple {
        flex-direction: row;
        gap: 12px
    }

    .board.-simple .board-pic {
        align-self: flex-start
    }
}

.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 0
}

.items>div {
    position: relative;
    flex: 0 0 auto;
    width: 20%;
    text-align: center
}

.items>div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to bottom, rgba(172, 174, 177, 0) 0, #acaeb1 20%, #acaeb1 80%, rgba(172, 174, 177, 0) 100%)
}

.items>div:first-child::before,
.items>div:nth-child(5n+1)::before {
    content: none
}

.items.-col4>div {
    width: 25%
}

.items.-col4>div:nth-child(5n+1)::before {
    content: ""
}

.items.-col4>div:nth-child(4n+1)::before {
    content: none
}

.items.-col3>div {
    box-sizing: border-box;
    width: 33.333%
}

.items.-col3>div:nth-child(5n+1)::before {
    content: ""
}

.items.-col3>div:nth-child(3n+1)::before {
    content: none
}

.items-pic {
    margin-bottom: 16px
}

.items-pic img {
    width: 80px
}

.items-txt {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
    color: #959595
}

.items-tit {
    font-size: 22px;
    font-weight: 700;
    color: #4672ab
}

.items-desc {
    margin-top: 16px;
    padding: 0 11%;
    font-size: 20px;
    text-align: left
}

@media only screen and (max-width:1439px) {
    .items {
        gap: 40px 0
    }

    .items-pic {
        margin-bottom: 13px
    }

    .items-pic img {
        width: 64px
    }

    .items-txt {
        font-size: 16px
    }

    .items-tit {
        font-size: 18px
    }

    .items-desc {
        margin-top: 14px;
        font-size: 16px
    }
}

@media only screen and (max-width:1023px) {
    .items {
        gap: 32px 0
    }

    .items-pic {
        margin-bottom: 10px
    }

    .items-pic img {
        width: 52px
    }

    .items-txt {
        font-size: 14px
    }

    .items-tit {
        font-size: 15px
    }

    .items-desc {
        margin-top: 10px;
        font-size: 14px
    }
}

@media only screen and (max-width:767px) {
    .items>div {
        width: 50%
    }

    .items>div:nth-child(5n+1)::before {
        content: ""
    }

    .items>div:nth-child(2n+1)::before {
        content: none
    }

    .items.-col4>div {
        width: 50%
    }

    .items.-col3>div {
        width: 100%
    }

    .items.-col3>div::before {
        content: none
    }
}

.textbox {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 38px;
    padding: 5px 15px;
    font-size: 18px;
    line-height: 1.3;
    color: #41484e;
    border: 1px solid #dddfe1;
    background-color: #fff
}

.textbox::-webkit-inner-spin-button,
.textbox::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.textbox::-ms-clear {
    display: none
}

.textbox::-ms-reveal {
    display: none
}

.textbox::-o-clear {
    display: none
}

.textbox[type=number] {
    -moz-appearance: textfield
}

.textbox:invalid {
    box-shadow: none
}

.textbox:focus {
    outline: 0
}

.textbox.-error {
    border-color: red
}

.textbox:focus {
    border-color: #4672ab
}

@media only screen and (min-width:1024px) {
    .textbox:hover {
        border-color: #8ccce6
    }

    .textbox:focus:hover {
        border-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .textbox {
        height: 32px;
        padding: 4px 12px;
        font-size: 16px
    }
}

@media only screen and (max-width:767px) {
    .textbox {
        padding: 4px 8px
    }
}

.textbox::-moz-placeholder {
    color: #abafb3
}

.textbox::placeholder {
    color: #abafb3
}

.selectbox {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 38px;
    padding: 5px 15px;
    font-size: 18px;
    line-height: 1.3;
    color: #41484e;
    border: 1px solid #dddfe1;
    background-color: #fff;
    padding-right: 19px;
    --ss-primary-color: #4672ab
}

.selectbox::-webkit-inner-spin-button,
.selectbox::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.selectbox::-ms-clear {
    display: none
}

.selectbox::-ms-reveal {
    display: none
}

.selectbox::-o-clear {
    display: none
}

.selectbox[type=number] {
    -moz-appearance: textfield
}

.selectbox:invalid {
    box-shadow: none
}

.selectbox:focus {
    outline: 0
}

.selectbox.-error {
    border-color: red
}

.selectbox:focus {
    border-color: #4672ab
}

@media only screen and (min-width:1024px) {
    .selectbox:hover {
        border-color: #8ccce6
    }

    .selectbox:focus:hover {
        border-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .selectbox {
        height: 32px;
        padding: 4px 12px;
        font-size: 16px
    }
}

@media only screen and (max-width:767px) {
    .selectbox {
        padding: 4px 8px
    }
}

.selectbox:focus {
    box-shadow: none
}

.selectbox .ss-values .ss-placeholder {
    padding: 0;
    color: #abafb3;
    overflow: visible
}

.selectbox .ss-values .ss-single {
    margin: auto 0
}

.selectbox.ss-main.ss-open-below {
    border-color: #4672ab
}

.selectbox.ss-main::after {
    content: "";
    align-self: center;
    border-top: 8px solid #464a53;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent
}

.selectbox.ss-content {
    height: auto;
    padding: 7px;
    border-color: #4672ab
}

.selectbox.ss-content .ss-list .ss-option {
    padding: 8px;
    line-height: 1.1;
    border-radius: 4px
}

.selectbox .ss-arrow {
    display: none
}

.selectbox .ss-search {
    padding: 0 0 6px
}

.selectbox .ss-search input {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 38px;
    padding: 5px 15px;
    font-size: 18px;
    line-height: 1.3;
    color: #41484e;
    border: 1px solid #dddfe1;
    background-color: #fff;
    padding: 5px 7px
}

.selectbox .ss-search input::-webkit-inner-spin-button,
.selectbox .ss-search input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.selectbox .ss-search input::-ms-clear {
    display: none
}

.selectbox .ss-search input::-ms-reveal {
    display: none
}

.selectbox .ss-search input::-o-clear {
    display: none
}

.selectbox .ss-search input[type=number] {
    -moz-appearance: textfield
}

.selectbox .ss-search input:invalid {
    box-shadow: none
}

.selectbox .ss-search input:focus {
    outline: 0
}

.selectbox .ss-search input.-error {
    border-color: red
}

.selectbox .ss-search input:focus {
    border-color: #4672ab
}

@media only screen and (min-width:1024px) {
    .selectbox .ss-search input:hover {
        border-color: #8ccce6
    }

    .selectbox .ss-search input:focus:hover {
        border-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .selectbox .ss-search input {
        height: 32px;
        padding: 4px 12px;
        font-size: 16px
    }
}

@media only screen and (max-width:767px) {
    .selectbox .ss-search input {
        padding: 4px 8px
    }
}

.selectbox .ss-search input:focus {
    box-shadow: none
}

@media only screen and (max-width:1439px) {
    .selectbox {
        padding-right: 16px
    }

    .selectbox.ss-main::after {
        border-top: 6px solid #464a53;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent
    }

    .selectbox.ss-content {
        padding: 6px
    }

    .selectbox.ss-content .ss-list .ss-option {
        padding: 6px
    }

    .selectbox .ss-search input {
        padding: 4px 5px
    }
}

.textarea {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 38px;
    padding: 5px 15px;
    font-size: 18px;
    line-height: 1.3;
    color: #41484e;
    border: 1px solid #dddfe1;
    background-color: #fff;
    height: auto;
    min-height: 200px
}

.textarea::-webkit-inner-spin-button,
.textarea::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.textarea::-ms-clear {
    display: none
}

.textarea::-ms-reveal {
    display: none
}

.textarea::-o-clear {
    display: none
}

.textarea[type=number] {
    -moz-appearance: textfield
}

.textarea:invalid {
    box-shadow: none
}

.textarea:focus {
    outline: 0
}

.textarea.-error {
    border-color: red
}

.textarea:focus {
    border-color: #4672ab
}

@media only screen and (min-width:1024px) {
    .textarea:hover {
        border-color: #8ccce6
    }

    .textarea:focus:hover {
        border-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .textarea {
        height: 32px;
        padding: 4px 12px;
        font-size: 16px
    }
}

@media only screen and (max-width:767px) {
    .textarea {
        padding: 4px 8px
    }
}

.textarea::-moz-placeholder {
    color: #abafb3
}

.textarea::placeholder {
    color: #abafb3
}

.datebox {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 38px;
    padding: 5px 15px;
    font-size: 18px;
    line-height: 1.3;
    color: #41484e;
    border: 1px solid #dddfe1;
    background-color: #fff;
    cursor: pointer;
    background: url(../image/icon/calendar.svg) no-repeat center right 12px/24px
}

.datebox::-webkit-inner-spin-button,
.datebox::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.datebox::-ms-clear {
    display: none
}

.datebox::-ms-reveal {
    display: none
}

.datebox::-o-clear {
    display: none
}

.datebox[type=number] {
    -moz-appearance: textfield
}

.datebox:invalid {
    box-shadow: none
}

.datebox:focus {
    outline: 0
}

.datebox.-error {
    border-color: red
}

.datebox:focus {
    border-color: #4672ab
}

@media only screen and (min-width:1024px) {
    .datebox:hover {
        border-color: #8ccce6
    }

    .datebox:focus:hover {
        border-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .datebox {
        height: 32px;
        padding: 4px 12px;
        font-size: 16px
    }
}

@media only screen and (max-width:767px) {
    .datebox {
        padding: 4px 8px
    }
}

.datebox::-moz-placeholder {
    color: #abafb3
}

.datebox::placeholder {
    color: #abafb3
}

@media only screen and (max-width:1439px) {
    .datebox {
        background-position: center right 10px;
        background-size: 20px
    }
}

.datepicker-cell.selected {
    background-color: #4672ab
}

.datepicker-cell.selected:hover {
    background-color: #0072bc
}

.checkbox {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    gap: .5em;
    font-size: 20px;
    line-height: 1.2;
    color: #41484e
}

.checkbox-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none
}

.checkbox-box {
    flex: 0 0 auto;
    width: 1em;
    height: 1em;
    margin-top: .06em;
    border-radius: .2em;
    border: 1px solid #dddfe1;
    background-color: #fff;
    cursor: pointer
}

.checkbox-txt {
    flex: 0 1 auto;
    text-align: left
}

.checkbox-txt a {
    color: #41484e
}

.checkbox-input:checked+.checkbox-box {
    background: #4672ab url(../image/icon/check.svg) no-repeat center/.8em;
    border-color: #4672ab
}

.checkbox.-error .checkbox-box {
    border-color: red
}

@media only screen and (min-width:1024px) {
    .checkbox-box:hover {
        border-color: #8ccce6
    }
}

@media only screen and (max-width:1439px) {
    .checkbox {
        font-size: 16px
    }
}

.upload {
    display: flex;
    align-items: center;
    gap: 10px
}

.upload-box {
    flex: 1;
    height: 38px;
    padding: 5px 15px;
    font-size: 18px;
    line-height: 1.3;
    color: #41484e;
    border: 1px solid #dddfe1;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 14px
}

.upload-box.-error {
    border-color: red
}

.upload-box:focus {
    border-color: #4672ab
}

@media only screen and (min-width:1024px) {
    .upload-box:hover {
        border-color: #8ccce6
    }

    .upload-box:focus:hover {
        border-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .upload-box {
        height: 32px;
        padding: 4px 12px;
        font-size: 16px
    }
}

@media only screen and (max-width:767px) {
    .upload-box {
        padding: 4px 8px
    }
}

.upload-select {
    position: relative;
    flex: 0 0 auto;
    cursor: pointer
}

.upload-select::before {
    content: "選擇檔案";
    display: block;
    width: 125px;
    height: 32px;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    color: #abafb3;
    border: 1px solid #dddfe1;
    background-color: #f0f0f2
}

body.-en .upload-select::before {
    content: "選擇檔案"
}

body.-jp .upload-select::before {
    content: "選擇檔案"
}

body.-km .upload-select::before {
    content: "選擇檔案"
}

body.-id .upload-select::before {
    content: "選擇檔案"
}

.upload-select input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none
}

.upload-name {
    flex: 1;
    font-size: 18px;
    display: -webkit-box;
    max-height: 1.5em;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.upload-name::before {
    content: "未選擇任何檔案";
    color: #abafb3
}

body.-en .upload-name::before {
    content: "未選擇任何檔案"
}

body.-jp .upload-name::before {
    content: "未選擇任何檔案"
}

body.-km .upload-name::before {
    content: "未選擇任何檔案"
}

body.-id .upload-name::before {
    content: "未選擇任何檔案"
}

.upload-del {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    background: url(../image/icon/trash.svg) no-repeat center/contain;
    cursor: pointer
}

.upload-add {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    background: #aeb0b3 url(../image/icon/plus.svg) no-repeat center/55%;
    cursor: pointer
}

.upload-add.-hide {
    visibility: hidden
}

.upload.-hasFile .upload-name::before {
    content: none
}

@media only screen and (min-width:1024px) {
    .upload-box:hover {
        border-color: #dddfe1
    }

    .upload-select::before {
        transition: color .3s, background-color .3s
    }

    .upload-select:hover::before {
        color: #4672ab;
        background-color: #e5f4ff
    }

    .upload-del:hover {
        background-image: url(../image/icon/trash-bu.svg)
    }

    .upload-add {
        transition: background-color .3s
    }

    .upload-add:hover {
        background-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .upload {
        gap: 8px
    }

    .upload-box {
        gap: 8px
    }

    .upload-select::before {
        width: 90px;
        height: 26px;
        font-size: 15px
    }

    .upload-name {
        font-size: 16px
    }

    .upload-del {
        width: 22px;
        height: 22px
    }

    .upload-add {
        width: 30px;
        height: 30px
    }
}

@media only screen and (max-width:767px) {
    .upload-box {
        gap: 6px
    }
}

.form {
    padding: 0 40px
}

.form .-errorT {
    margin-top: 4px;
    font-size: 16px;
    color: red
}

.form .-noteT {
    margin-top: 8px;
    font-size: 18px;
    color: #abafb3
}

.form-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 45px
}

.form-item {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 72px;
    width: calc((100% - 45px)/ 2)
}

.form-item.-full {
    width: 100%
}

body.-en .form-item,
body.-id .form-item,
body.-km .form-item {
    gap: 0
}

body.-jp .form-item {
    gap: 24px
}

.form-name {
    flex: 0 0 auto;
    font-size: 20px;
    width: 4em;
    padding-top: 4px;
    -moz-text-align-last: justify;
    text-align-last: justify
}

.form-name.-upload {
    padding-top: 10px
}

body.-jp .form-name.-upload {
    padding-top: 0;
    line-height: 1.4
}

.form-name.-top {
    padding-top: 0;
    line-height: 1
}

.form-name.-required {
    position: relative
}

.form-name.-required::before {
    content: "*";
    position: absolute;
    top: 0;
    right: 100%;
    color: #e80414
}

body.-en .form-name,
body.-id .form-name,
body.-km .form-name {
    width: 9em;
    font-size: 18px;
    -moz-text-align-last: left;
    text-align-last: left
}

body.-jp .form-name {
    width: 8em;
    font-size: 18px;
    -moz-text-align-last: left;
    text-align-last: left
}

.form-val {
    flex: 1
}

.form-agree {
    margin-top: 80px;
    text-align: center
}

.form-send {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 140px;
    height: 40px;
    margin: 36px auto 0;
    padding-left: 1em;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background-color: #0072bc;
    cursor: pointer
}

.form-send::after {
    content: "";
    border-left: .6em solid #fff;
    border-top: .35em solid transparent;
    border-bottom: .35em solid transparent;
    transition: transform .3s
}

.form-send span {
    padding-bottom: .08em
}

.form-note {
    margin-top: .8em;
    font-size: 18px
}

@media only screen and (min-width:1024px) {
    .form-send {
        transition: background-color .3s
    }

    .form-send:hover {
        background-color: #6ab4cf
    }
}

@media only screen and (max-width:1439px) {
    .form {
        padding: 0
    }

    .form .-errorT {
        margin-top: 3px;
        font-size: 14px
    }

    .form .-noteT {
        margin-top: 6px;
        font-size: 15px
    }

    .form-wrap {
        gap: 24px 36px
    }

    .form-item {
        gap: 56px;
        width: calc((100% - 36px)/ 2)
    }

    .form-name {
        font-size: 16px;
        padding-top: 3px
    }

    .form-name.-upload {
        padding-top: 8px
    }

    body.-en .form-name,
    body.-id .form-name,
    body.-jp .form-name,
    body.-km .form-name {
        font-size: 15px
    }

    .form-agree {
        margin-top: 64px
    }

    .form-send {
        width: 112px;
        height: 32px;
        margin: 28px auto 0;
        font-size: 16px
    }

    .form-note {
        font-size: 16px
    }
}

@media only screen and (max-width:1023px) {
    .form-item {
        gap: 20px
    }

    body.-jp .form-item {
        gap: 12px
    }

    .form-agree {
        margin-top: 50px
    }

    .form-send {
        margin: 20px auto 0
    }

    .form-note {
        font-size: 14px
    }
}

@media only screen and (max-width:767px) {
    .form .-errorT {
        margin-top: 2px;
        font-size: 12px
    }

    .form .-noteT {
        margin-top: 4px;
        font-size: 14px
    }

    .form-wrap {
        gap: 20px 36px
    }

    .form-item {
        display: block;
        width: 100%
    }

    .form-name {
        margin-bottom: 6px;
        width: auto;
        padding-top: 0;
        -moz-text-align-last: left;
        text-align-last: left
    }

    .form-name.-upload {
        padding-top: 0
    }

    body.-jp .form-name.-upload {
        line-height: 1.5
    }

    .form-name.-top {
        line-height: 1.5
    }

    body.-en .form-name,
    body.-id .form-name,
    body.-jp .form-name,
    body.-km .form-name {
        width: auto;
        font-size: 16px
    }
}

.docList {
    display: flex;
    flex-direction: column;
    gap: 16px
}

@media only screen and (max-width:1439px) {
    .docList {
        gap: 12px
    }
}

@media only screen and (max-width:767px) {
    .docList {
        gap: 10px
    }
}

.phone {
    display: flex
}

.phone-code {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 0 26px;
    color: #abafb3;
    border: 1px solid #dddfe1;
    border-right: none
}

.phone-input {
    flex: 1
}

@media only screen and (max-width:1439px) {
    .phone-code {
        padding: 0 20px
    }
}

@media only screen and (max-width:1023px) {
    .phone-code {
        padding: 0 16px
    }
}

.file {
    display: flex;
    gap: 30px
}

.file-btn {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    font-size: 20px;
    color: #fff;
    border-radius: 10px;
    background-color: #0072bc;
    cursor: pointer
}

.file-btn input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0
}

.file-name {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 38px;
    padding: 5px 15px;
    font-size: 18px;
    line-height: 1.3;
    color: #41484e;
    border: 1px solid #dddfe1;
    background-color: #fff;
    cursor: pointer
}

.file-name::-webkit-inner-spin-button,
.file-name::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.file-name::-ms-clear {
    display: none
}

.file-name::-ms-reveal {
    display: none
}

.file-name::-o-clear {
    display: none
}

.file-name[type=number] {
    -moz-appearance: textfield
}

.file-name:invalid {
    box-shadow: none
}

.file-name:focus {
    outline: 0
}

.file-name.-error {
    border-color: red
}

.file-name:focus {
    border-color: #4672ab
}

@media only screen and (min-width:1024px) {
    .file-name:hover {
        border-color: #8ccce6
    }

    .file-name:focus:hover {
        border-color: #4672ab
    }
}

@media only screen and (max-width:1439px) {
    .file-name {
        height: 32px;
        padding: 4px 12px;
        font-size: 16px
    }
}

@media only screen and (max-width:767px) {
    .file-name {
        padding: 4px 8px
    }
}

.file-name::before {
    content: "未選擇任何檔案";
    color: #abafb3
}

.file-name.-hasFile::before {
    content: none
}

@media only screen and (max-width:1439px) {
    .file {
        gap: 20px
    }

    .file-btn {
        width: 190px;
        font-size: 16px;
        border-radius: 8px
    }
}

@media only screen and (max-width:1023px) {
    .file {
        gap: 16px
    }

    .file-btn {
        width: 176px;
        font-size: 15px
    }
}

@media only screen and (max-width:767px) {
    .file {
        flex-direction: column;
        gap: 6px
    }

    .file-btn {
        padding: 3px 0
    }
}

ol,
ul {
    margin: 0;
    padding-left: 1.75em
}

.step {
    position: relative;
    padding-left: 0;
    list-style: none
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 26px;
    width: 1px;
    height: 100%;
    border-left: 1px dashed #4672ab
}

.step-item {
    position: relative;
    padding: 8px 0 0 68px;
    counter-increment: step
}

.step-item::before {
    content: counter(step);
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 54px;
    height: 54px;
    padding-top: 3px;
    font-size: 30px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background-color: #4672ab
}

.step-item+.step-item {
    margin-top: 30px
}

.step-tit {
    display: inline-block;
    padding: 5px 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #4672ab;
    border-radius: 20px;
    background-color: #e5f4ff
}

.step-txt {
    margin-top: 12px;
    font-size: 20px
}

.step-txt>p+p {
    margin-top: .6em
}

.step-note {
    font-size: .8em
}

@media only screen and (max-width:1439px) {
    .step::before {
        left: 20px
    }

    .step-item {
        padding: 6px 0 0 54px
    }

    .step-item::before {
        width: 43px;
        height: 43px;
        font-size: 24px
    }

    .step-item+.step-item {
        margin-top: 24px
    }

    .step-tit {
        padding: 4px 12px;
        font-size: 18px;
        border-radius: 16px
    }

    .step-txt {
        margin-top: 10px;
        font-size: 16px
    }
}

@media only screen and (max-width:1023px) {
    .step::before {
        left: 16px
    }

    .step-item {
        padding: 5px 0 0 43px
    }

    .step-item::before {
        width: 35px;
        height: 35px;
        font-size: 20px
    }

    .step-item+.step-item {
        margin-top: 20px
    }

    .step-tit {
        padding: 3px 10px;
        font-size: 16px;
        border-radius: 13px
    }

    .step-txt {
        margin-top: 8px;
        font-size: 14px
    }
}

@media only screen and (min-width:1024px) {
    .step.-hor {
        display: flex
    }

    .step.-hor::before {
        top: 28px;
        left: 0;
        width: 100%;
        height: 1px;
        border-top: 1px dashed #4672ab;
        border-left: none
    }

    .step.-hor .step-item {
        flex: 1 1 auto;
        padding: 0;
        text-align: center
    }

    .step.-hor .step-item::before {
        position: relative;
        display: block;
        margin: 0 auto 10px;
        z-index: 1
    }

    .step.-hor .step-item:first-child::after {
        content: "";
        position: absolute;
        top: 24px;
        left: -1px;
        width: 50%;
        height: 9px;
        background-color: #fff
    }

    .step.-hor .step-item:last-child::after {
        content: "";
        position: absolute;
        top: 24px;
        right: -1px;
        width: 50%;
        height: 9px;
        background-color: #fff
    }

    .step.-hor .step-item+.step-item {
        margin-top: 0
    }
}

@media (min-width:1024px) and (max-width:1279px) {
    .step.-hor::before {
        top: 22px
    }

    .step.-hor .step-item:first-child::after {
        top: 18px
    }

    .step.-hor .step-item:last-child::after {
        top: 18px
    }
}

table {
    width: 100%;
    border-collapse: collapse
}

table.-average {
    table-layout: fixed
}

table td,
table th {
    border: 2px solid #4672ab
}

table thead {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    background-color: #31689f
}

table thead th {
    padding: 4px 5px 5px
}

table thead.-lg th {
    box-sizing: border-box;
    height: 68px
}

table tbody {
    font-size: 20px;
    line-height: 1.3
}

table td {
    box-sizing: border-box;
    height: 68px;
    padding: 6px 20px
}

@media only screen and (max-width:1439px) {
    table thead {
        font-size: 21px
    }

    table thead th {
        padding: 3px 4px 4px
    }

    table thead.-lg th {
        height: 55px
    }

    table tbody {
        font-size: 16px
    }

    table td {
        height: 55px;
        padding: 6px 16px
    }
}

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

    table td,
    table th {
        border-width: 1px
    }

    table thead {
        font-size: 17px
    }

    table thead.-lg th {
        height: 46px
    }

    table tbody {
        font-size: 14px
    }

    table td {
        height: 46px;
        padding: 6px 12px
    }
}

@media only screen and (max-width:767px) {
    table thead {
        font-size: 16px
    }

    table td {
        padding: 6px 10px
    }

    table tbody th {
        height: 32px;
        color: #fff;
        background-color: #31689f
    }

    table tbody td {
        height: 32px
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: 1em
}

p {
    margin: 0
}

.title {
    display: inline-flex;
    align-items: center;
    gap: .375em;
    font-size: 40px
}

.info .title {
    font-size: 30px;
    line-height: 1.4
}

.info .title>span {
    padding-bottom: .075em
}

.title.-l::after {
    content: none
}

.title.-index::after,
.title.-index::before {
    content: none
}

.title.-index span {
    font-weight: 500
}

.title::after,
.title::before {
    content: "";
    flex: 0 0 auto;
    width: .875em;
    height: .925em;
    background: url(../image/icon/cube.svg) no-repeat center/contain
}

.title>span {
    padding-bottom: .1em;
    font-weight: 700;
    color: #4672ab
}

@media only screen and (max-width:1439px) {
    .title {
        font-size: 32px
    }

    .info .title {
        font-size: 26px
    }
}

@media only screen and (max-width:1023px) {
    .title {
        font-size: 26px
    }

    .info .title {
        font-size: 22px
    }
}

@media only screen and (max-width:767px) {
    .title {
        font-size: 24px
    }
}

.info-head {
    margin-bottom: 16px
}

.info-head.-r {
    /* display: flex; */
    align-items: baseline
}

.info-head.-r .title {
    flex: 0 0 auto
}

.info-head.-r .-r {
    flex: 1;
    margin-left: 20px;
    font-size: 20px
}

.info-group+.info-group {
    margin-top: 16px
}

.info-tit {
    display: inline-block;
    margin: 12px 0;
    padding: .1818181818em .9090909091em .2727272727em;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #4672ab;
    border-radius: 20px;
    background-color: #e5f4ff
}

.info-text {
    font-size: 20px
}

.info-text *+* {
    margin-top: .4em
}

.info-text.-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0 32px
}

.info-text>.info-tit {
    margin: 6px 0
}

@media only screen and (max-width:1439px) {
    .info-head {
        margin-bottom: 14px
    }

    .info-head.-r .-r {
        margin-left: 16px;
        font-size: 16px
    }

    .info-group+.info-group {
        margin-top: 13px
    }

    .info-tit {
        margin: 10px 0;
        font-size: 18px
    }

    .info-text {
        font-size: 16px
    }

    .info-text.-grid {
        gap: 0 26px
    }
}

@media only screen and (max-width:1023px) {
    .info-head {
        margin-bottom: 10px
    }

    .info-head.-r {
        display: block
    }

    .info-head.-r .-r {
        margin-left: 0;
        font-size: 14px
    }

    .info-group+.info-group {
        margin-top: 10px
    }

    .info-tit {
        margin: 8px 0;
        font-size: 16px
    }

    .info-text {
        font-size: 14px
    }

    .info-text.-grid {
        gap: 0 20px
    }
}

@media only screen and (max-width:767px) {
    .info-text.-grid {
        flex-direction: column;
        align-items: flex-start
    }
}

@media only screen and (min-width:1280px) {
    .mbOnly {
        display: none
    }
}

@media only screen and (max-width:1023px) {
    .pcOnly {
        display: none
    }
}

@media only screen and (max-width:767px) {
    .pcPadOnly {
        display: none
    }
}

@media only screen and (min-width:768px) {
    .mbmbOnly {
        display: none
    }
}

.-buT {
    color: #4672ab
}

.-centerT {
    text-align: center
}

.-leftT {
    text-align: left
}

.-groupT {
    display: inline-block
}

.-nowrapT {
    white-space: nowrap
}

.-lessT {
    font-size: .7em
}
@media screen and (max-width:480px) {
    .m-hide {
        display: none;
    }    
}
/*# sourceMappingURL=main.min.css.map */