:root {
    --ink: #071b3c;
    --blue: #006bf1;
    --navy: #001b43;
    --gold: #c57900;
    --gold2: #ddae66;
    --soft: #f1f6ff;
    --container: 1360px;
    --header-h: 102px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: auto
}

body {
    margin: 0;
    color: #111;
    background: #fff;
    font-family: "Noto Sans JP", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

.tw-container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto
}

.tw-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0 68px;
    background: #000;
    box-shadow: 0 4px 18px rgba(0, 22, 55, .05);
    transition: height .3s ease, box-shadow .3s ease, background-color .3s ease;
    will-change: transform, opacity
}

.tw-header.is-scrolled {
    height: 76px;
    box-shadow: 0 6px 24px rgba(0, 22, 55, .12)
}

.tw-header__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #071f49
}


.tw-header__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    font-size: 14px
}

.tw-header__nav a {
    position: relative;
    padding: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 4px;
}

.tw-header__nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    transition: right .25s
}

.tw-header__nav a:hover:after {
    right: 0
}

.tw-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px
}

.tw-header__language,
.tw-header__menu {
    border: 0;
    background: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tw-header__language {
    padding-right: 20px;
    background: url(../img/arrowico.svg) right center no-repeat;
    background-size: 12px 12px;
    transition: color .25s, opacity .25s
}

.tw-language {
    position: relative
}

.tw-language__menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    width: 176px;
    padding: 8px;
    border-radius: 10px;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.98);
    transform-origin: top right;
    transition: opacity .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1), visibility .25s;
    pointer-events: none
}

.tw-language.is-open .tw-language__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.tw-language__menu button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background .2s, color .2s
}

.tw-language__menu button:hover,
.tw-language__menu button:focus-visible {
    color: #f0c27b;
    background: #000;
    outline: none
}

.tw-language__menu button span {
    width: 28px;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    letter-spacing: .08em
}

.tw-header__menu {
    display: none;
    width: 34px;
    padding: 4px
}

.tw-header__menu i {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0
}

.tw-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: 182px;
    height: 56px;
    padding: 0 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: .25s
}

.tw-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06)
}

.tw-button--gold {
    color: #fff;
    background: linear-gradient(90deg, var(--gold), var(--gold2))
}

.tw-button--outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .9)
}

.tw-actions {
    display: flex;
    gap: 30px;
    margin-top: 40px
}

.tw-section-heading h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 500
}

.tw-section-heading p {
    margin: 24px auto 0;
    font-size: 22px;
    line-height: 1.65;
    color: #333
}

.tw-section-heading--center {
    text-align: center
}

.tw-page-top {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 115px;
    width: 90px;
    height: 90px;
    border: 0;
    background: #aaa;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s, transform .4s cubic-bezier(.22, 1, .36, 1), background .25s, visibility .3s
}

.tw-page-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto
}

.tw-page-top:hover {
    background: #006bf1;
    transform: translateY(-4px)
}

.tw-page-top:focus-visible {
    outline: 3px solid rgba(0, 107, 241, .35);
    outline-offset: 4px
}

.tw-home-hero {
    position: relative;
    height: 100vh;
    color: #fff;
    overflow: hidden
}

.tw-home-hero__background {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: url("../img/homeherobg.jpg") center/cover no-repeat;
    transform: scale(1.015);
    opacity: 1;
    transition: opacity 1s ease
}

.tw-home-hero__video {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.002);
    transition: opacity 1s ease, visibility 1s;
    pointer-events: none
}

.tw-home-hero.is-video-ready .tw-home-hero__video {
    opacity: 1;
    visibility: visible
}

.tw-home-hero.is-video-ready .tw-home-hero__background {
    opacity: 0
}

.tw-home-hero:after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 5, 15, .98) 0%, rgba(0, 8, 18, .92) 31%, rgba(0, 8, 18, .28) 65%, rgba(0, 0, 0, .08)), linear-gradient(0deg, rgba(0, 0, 0, .95), transparent 31%);
    pointer-events: none
}

.tw-home-hero__inner {
    position: relative;
    z-index: 1;
    height: 100%
}

.tw-home-hero__content {
    position: absolute;
    top: 260px;
    left: 0;
    width: 975px
}

.tw-home-hero__eyebrow {
    margin: 0 0 16px;
    font-size: 21px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.tw-home-hero h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.34;
    letter-spacing: .01em
}

.tw-home-hero__description {
    max-width: 800px;
    margin: 30px 0 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
}

.tw-home-hero__services {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 54px;
}

.tw-home-hero__services>div {
    display: flex;
    gap: 24px;
    align-items: flex-start
}


.tw-home-hero__services p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    padding-right: 16px;
}


.tw-home-hero__services img {
    width: 48px;
    height: 48px;
    flex: none;
    object-fit: contain;
}

.tw-home-about {
    padding: 120px 0 150px;
    background: #fff
}

.tw-home-about__inner {
    display: grid;
    grid-template-columns: 560px 680px;
    justify-content: space-between;
    align-items: center
}

.tw-home-about__content h2 {
    margin: 0 0 18px;
    font-size: 42px;
    line-height: 1.3
}

.tw-home-about__content>p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.tw-home-about__facts {
    display: grid;
    gap: 28px;
    padding: 0;
    margin: 42px 0 45px;
    list-style: none
}

.tw-home-about__facts li {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 66px;
    font-size: 18px;
    line-height: 1.25
}

.tw-home-about__facts small,
.tw-home-about__facts strong {
    display: block
}

.tw-home-about__facts strong {
    font-size: 36px;
    color: #c57804
}

.tw-fact-icon {
    display: grid;
    place-items: center;
    width: 65px;
    height: 65px;
    font-size: 38px
}

.tw-home-about__video {
    position: relative;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    cursor: pointer
}

.tw-home-about__video-image {
    position: absolute;
    inset: 0;
    background: url("../img/about__video_img.jpg") center center no-repeat;
    transition: transform .9s cubic-bezier(.22, 1, .36, 1), filter .6s ease
}

.tw-home-about__video:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .28);
    transition: background .5s ease
}

.tw-home-about__play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    border: 5px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -58%);
    background: transparent;
    color: #fff;
    font-size: 36px;
    padding-left: 9px;
    cursor: pointer;
    isolation: isolate;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), color .35s, background .35s, border-color .35s, box-shadow .45s
}

.tw-home-about__play span {
    position: relative;
    z-index: 2;
    display: block;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

.tw-home-about__play::before,
.tw-home-about__play::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -5px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.75)
}

.tw-home-about__play::after {
    inset: -20px;
    border-color: rgba(218, 171, 98, .55)
}

.tw-home-about__video:hover .tw-home-about__video-image {
    transform: scale(1.035);
    filter: brightness(.9)
}

.tw-home-about__video:hover::after {
    background: rgba(0, 0, 0, .38)
}

.tw-home-about__video:hover .tw-home-about__play,
.tw-home-about__play:focus-visible {
    border-color: #e6b66d;
    color: #fff;
    background: rgba(197, 121, 0, .88);
    box-shadow: 0 0 0 12px rgba(197, 121, 0, .12), 0 18px 50px rgba(0, 0, 0, .28);
    transform: translate(-50%, -58%) scale(1.08);
    outline: none
}

.tw-home-about__video:hover .tw-home-about__play span,
.tw-home-about__play:focus-visible span {
    transform: scale(.9)
}

.tw-home-about__video:hover .tw-home-about__play::before,
.tw-home-about__play:focus-visible::before {
    animation: tw-video-ring 1.8s cubic-bezier(.22, 1, .36, 1) infinite
}

.tw-home-about__video:hover .tw-home-about__play::after,
.tw-home-about__play:focus-visible::after {
    animation: tw-video-ring 1.8s .35s cubic-bezier(.22, 1, .36, 1) infinite
}

@keyframes tw-video-ring {
    0% {
        opacity: .75;
        transform: scale(.78)
    }

    100% {
        opacity: 0;
        transform: scale(1.35)
    }
}

body.tw-modal-open {
    overflow: hidden
}

.tw-video-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
    pointer-events: none
}

.tw-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.tw-video-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 7, 20, .88);
    backdrop-filter: blur(10px);
    cursor: pointer
}

.tw-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 92vw);
    padding: 18px;
    background: #000;
    transform: translateY(30px) scale(.96);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.tw-video-modal.is-open .tw-video-modal__dialog {
    transform: translateY(0) scale(1)
}

.tw-video-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 4px 14px 12px
}

.tw-video-modal__header h2 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .03em
}

.tw-video-modal__close {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    transition: transform .35s, background .25s, border-color .25s
}

.tw-video-modal__close:hover {
    border-color: #d9a85f;
    background: rgba(197, 121, 0, .24);
    transform: rotate(90deg)
}

.tw-video-modal__close span {
    position: absolute;
    top: 21px;
    left: 12px;
    width: 20px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg)
}

.tw-video-modal__close span:last-child {
    transform: rotate(-45deg)
}

.tw-video-modal__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #000
}

.tw-video-modal__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.tw-home-about__video p {
    position: absolute;
    z-index: 2;
    left: 40px;
    bottom: 42px;
    width: 410px;
    margin: 0;
    font-size: 18px;
    line-height: 1.55
}

.tw-home-assets {
    position: relative;
    height: 640px;
    overflow: hidden;
    color: #fff;
    background: #001531
}

.tw-home-assets__visual {
    position: absolute;
    inset: 0;
    background: url("../img/assets-sectionbg.jpg") center/cover no-repeat
}


.tw-home-assets__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.tw-home-assets__content {
    width: 760px;
    padding-top: 90px;
}

.tw-home-assets__img {
    height: 640px;
    display: flex;
    align-items: flex-end;
}

.tw-home-assets__img img {
    max-height: 600px;
}

.tw-home-assets h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 500
}

.tw-home-assets__content>p {
    margin: 18px 0 46px;
    font-size: 18px;
    line-height: 1.55
}

.tw-home-assets__metrics {
    display: grid;
    grid-template-columns: 290px 234px 220px
}

.tw-home-assets__metrics div {
    min-height: 150px;
    padding-left: 32px;
    border-left: 2px solid rgba(255, 255, 255, .22)
}

.tw-home-assets__metrics strong,
.tw-home-assets__metrics span {
    display: block
}

.tw-home-assets__metrics strong {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400
}

.tw-home-assets__metrics span {
    width: 180px;
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .6);
}

.tw-home-services {
    padding: 104px 0 164px;
    background: #fff
}

.tw-home-services .tw-section-heading p {
    width: 670px
}

.tw-home-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
    margin-top: 64px
}

.tw-service-card {
    min-height: 460px;
    padding: 40px 40px;
    background: #f1f6ff;
    border-radius: 4px
}

.tw-service-card__icon {
    display: grid;
    place-items: center;
    height: 84px;
    color: #006bf1;
    font-size: 68px
}

.tw-service-card h3 {
    min-height: 68px;
    margin: 30px 20px 20px;
    text-align: center;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 500
}

.tw-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 0, 0, .7);
}

.tw-service-card:nth-child(4) {
    grid-column: 1
}

.tw-service-card:nth-child(5) {
    grid-column: 2
}

.tw-home-network {
    position: relative;
    height: 720px;
    overflow: hidden;
    color: #fff;
    background: #00428e
}

.tw-home-network__background {
    position: absolute;
    inset: 0;
    background: url("../img/partners_setcionbg.jpg") center/cover no-repeat;
    opacity: 1
}

.tw-home-network__inner {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    text-align: center
}

.tw-home-network h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 32px;
    line-height: 1.6;
    font-weight: 500
}

.tw-home-network p {
    width: 880px;
    margin: 30px auto 80px;
    font-size: 16px;
    line-height: 1.6;
}

.tw-home-network p span {
    font-family: Arial, sans-serif
}

.tw-home-network__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px 48px;
}

.tw-home-network__logos img {
    flex: 0 0 calc((100% - 192px) / 5);
    width: calc((100% - 192px) / 5);
    max-width: 230px;
    height: 58px;
    object-fit: contain;
}

.tw-home-founder {
    padding: 90px 0 110px;
    background: #fff
}

.tw-home-founder .tw-section-heading h2 {
    width: 620px;
    margin: auto;
    font-size: 42px;
    line-height: 1.3;
}

.tw-home-founder__layout {
    display: grid;
    grid-template-columns: 700px 442px;
    justify-content: space-between;
    margin-top: 72px
}

.tw-home-founder__copy h3 {
    margin: 0 0 20px;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 500
}

.tw-home-founder__copy p {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, .6)
}

.tw-home-founder__copy blockquote {
    margin: 30px 0 24px;
    padding: 24px 0 0;
    border-top: 1px solid #bbb;
    font-size: 21px;
    line-height: 1.35;
    color: #3d3d3d
}

.tw-home-founder__portrait {
    margin: 0
}

.tw-home-founder__portrait>div {
    width: 440px;
    height: 590px;
    background: url("../img/founderimg.jpg") center center no-repeat;
    background-size: contain;
}

.tw-home-founder__portrait figcaption {
    display: grid;
    justify-items: end;
    margin-top: 27px
}

.tw-home-founder__portrait strong {
    font-size: 28px
}

.tw-home-founder__portrait span {
    margin-top: 8px;
    font-size: 18px;
    color: rgba(0, 0, 0, .6);
}

.tw-home-team {
    padding: 110px 0 100px;
    background: #f1f6ff
}

.tw-home-team__heading {
    display: grid;
    grid-template-columns: 500px 594px;
    justify-content: space-between
}

.tw-home-team__heading h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.4;
    font-weight: 500
}

.tw-home-team__heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333
}

.tw-home-team__viewport {
    overflow: hidden;
    margin-top: 80px;
    touch-action: pan-y
}

.tw-home-team__cards {
    display: flex;
    gap: 20px;
    will-change: transform, opacity
}

.tw-home-team__cards article {
    flex: 0 0 calc((100% - 40px) / 3);
    height: 450px;
    padding: 24px 24px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
}

.tw-team-photo {
    height: 260px;
    border-radius: 12px;
}

.tw-team-photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.tw-home-team__cards h3 {
    margin: 30px 0 12px 12px;
    font-size: 21px;
    color: #19274c;
    font-weight: 500
}

.tw-home-team__cards p {
    margin: 0 0px 0px 12px;
    font-size: 16px;
    line-height: 1.4;
    color: #717171
}

.tw-slider-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 66px
}

.tw-slider-control button {
    width: 55px;
    height: 55px;
    border: 0;
    border-radius: 50%;
    background: #006bf1;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    transition: transform .25s, background .25s, box-shadow .25s
}

.tw-slider-control>button:hover {
    transform: translateY(-2px);
    background: #005bd0;
    box-shadow: 0 8px 22px rgba(0, 107, 241, .26)
}

.tw-slider-control__pagination {
    width: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tw-slider-control__pagination button {
    width: 62px;
    height: 3px;
    padding: 0;
    border-radius: 2px;
    background: #cfd5dd;
    font-size: 0;
    transition: width .35s cubic-bezier(.22, 1, .36, 1), background .25s
}

.tw-slider-control__pagination button.is-active {
    width: 90px;
    background: #006bf1
}

.tw-home-reasons {
    position: relative;
    height: 800px;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    background: #00091c;
}

.tw-home-reasons__background {
    position: absolute;
    inset: 0;
    background: url("../img/reasons_sectionbg.jpg") center/cover no-repeat;
}

.tw-home-reasons .tw-container {
    position: relative;
    z-index: 1
}

.tw-home-reasons h2 {
    margin: 0 0 72px;
    font-size: 42px
}

.tw-home-reasons__layout {
    display: grid;
    grid-template-columns: 540px 620px;
    gap: 60px;
    justify-content: space-between;
}

.tw-home-reasons__tab {
    border-top: 1px solid rgba(255, 255, 255, .4)
}

.tw-home-reasons__tab:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .4)
}

.tw-home-reasons__tab-button {
    position: relative;
    width: 100%;
    padding: 20px 44px 20px 5px;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    transition: color .3s, padding-left .45s cubic-bezier(.22, 1, .36, 1)
}

.tw-home-reasons__tab-button::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 7px;
    font-size: 24px;
    font-weight: 300;
    transform: translateY(-50%) rotate(0);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1), color .3s
}

.tw-home-reasons__tab.is-active .tw-home-reasons__tab-button {
    padding-left: 12px;
    color: #f1c278
}

.tw-home-reasons__tab.is-active .tw-home-reasons__tab-button::after {
    color: #f1c278;
    transform: translateY(-50%) rotate(45deg)
}

.tw-home-reasons__tab-panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(-7px);
    transition: grid-template-rows .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease, transform .45s ease
}

.tw-home-reasons__tab-panel>div {
    overflow: hidden
}

.tw-home-reasons__tab.is-active .tw-home-reasons__tab-panel {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0)
}

.tw-home-reasons__tab-panel p {
    margin: 0;
    padding: 0 5px 24px;
    font-size: 16px;
    line-height: 1.75
}

.tw-home-reasons__tab-panel p span {
    padding-bottom: 1px;
    border-bottom: 1px solid #fff;
    font-size: 18px;
    font-weight: 500
}

.tw-home-reasons__chart {
    height: 420px;
    overflow: hidden;
    border-radius: 2px;
    background: #07142a
}

.tw-home-reasons__chart-image {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    transition: opacity .35s ease, transform .6s cubic-bezier(.22, 1, .36, 1), filter .4s ease
}

.tw-home-reasons__chart-image.is-changing {
    opacity: 0;
    transform: scale(1.035) translateY(7px);
    filter: blur(4px)
}

.tw-home-reasons__accordion details {
    border-top: 1px solid rgba(255, 255, 255, .6)
}

.tw-home-reasons__accordion details:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .6)
}

.tw-home-reasons__accordion summary {
    padding: 20px 5px;
    font-size: 18px;
    cursor: pointer
}

.tw-home-reasons__accordion p {
    margin: 0;
    padding: 0 5px 24px;
    font-size: 16px;
    line-height: 1.75
}

.tw-home-reasons__accordion p span {
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid #fff;
    padding-bottom: 1px;
}

.tw-home-reasons__chart img {
    height: 420px;
}

.tw-home-support {
    padding: 110px 0 120px;
    background: #fff
}

.tw-home-support .tw-section-heading h2 {
    max-width: 620px;
    margin: auto
}

.tw-home-support .tw-section-heading p {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.5;
}

.tw-home-support__cards {
    display: grid;
    grid-template-columns: repeat(2, 560px);
    justify-content: center;
    gap: 60px;
    margin-top: 60px
}

.tw-home-support__cards article {
    height: 450px;
    padding: 20px;
    background: #eff6fe;
    border: 1px solid #dde3e6;
    border-radius: 12px
}

.tw-support-image {
    height: 220px;
}


.tw-support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tw-home-support__cards p {
    margin: 30px 24px;
    font-size: 21px;
    line-height: 1.4;
    color: #19274c
}

.tw-pill-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 240px;
    height: 64px;
    margin: 60px auto 0;
    padding: 0 30px;
    border: 1px solid #c4c4c4;
    border-radius: 60px;
    color: #062952;
    overflow: hidden;
    isolation: isolate;
    transition: color .35s ease, border-color .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease
}

.tw-pill-link::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(100deg, #005bd0, #0088ff);
    transform: translateX(-102%);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

.tw-pill-link span {
    display: inline-block;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1)
}

.tw-pill-link:hover,
.tw-pill-link:focus-visible {
    color: #fff;
    border-color: #006bf1;
    box-shadow: 0 12px 30px rgba(0, 107, 241, .22);
    transform: translateY(-3px);
    outline: none
}

.tw-pill-link:hover::before,
.tw-pill-link:focus-visible::before {
    transform: translateX(0)
}

.tw-pill-link:hover span,
.tw-pill-link:focus-visible span {
    transform: translateX(7px)
}

.tw-home-japan {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: linear-gradient(0deg, #00428E 0%, #001328 100%);
}

.tw-home-japan__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 600px 600px;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    background: url(../img/japanmap.svg) center center no-repeat;
}

.tw-home-japan__copy h2 {
    margin: 0;
    font-size: 36px;
    color: #fff;
    line-height: 1.35
}

.tw-home-japan__copy p {
    margin: 24px 0 50px;
    font-size: 18px;
    color: #fff;
    line-height: 1.6
}

.tw-home-japan__media {
    height: 360px;
}

.tw-home-japan__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tw-home-courses {
    padding: 100px 0 140px;
    background: url(../img/courses_sectionbg.jpg) center center no-repeat;
    background-size: cover;
}

.tw-home-courses__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 42px;
    margin-top: 62px
}

.tw-home-courses__grid article {
    height: 440px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    transition: box-shadow .45s ease
}

.tw-home-courses__grid.is-reveal-complete article {
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease
}

/* GSAP 动画结束后恢复文本的自然显示状态，避免旧动画残留内联隐藏样式 */
.tw-home-courses.is-reveal-complete .tw-section-heading,
.tw-home-courses.is-reveal-complete #courses-title,
.tw-home-courses.is-reveal-complete .tw-home-courses__grid article,
.tw-home-courses.is-reveal-complete .tw-home-courses__grid article h3,
.tw-home-courses.is-reveal-complete .tw-home-courses__grid article p,
.tw-home-courses.is-reveal-complete .tw-course-title-link {
    opacity: 1 !important;
    visibility: visible !important
}

.tw-home-courses.is-reveal-complete .tw-section-heading,
.tw-home-courses.is-reveal-complete #courses-title,
.tw-home-courses.is-reveal-complete .tw-home-courses__grid article h3,
.tw-home-courses.is-reveal-complete .tw-home-courses__grid article p,
.tw-home-courses.is-reveal-complete .tw-course-title-link {
    transform: none !important
}

.tw-course-image {
    height: 210px;
    overflow: hidden
}

.tw-course-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .45s ease
}

.tw-course-image-link,
.tw-course-title-link {
    display: block;
    margin: 0 !important;
    color: inherit !important
}

.tw-course-title-link {
    transition: color .25s ease
}

.tw-home-courses__grid article:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(0, 32, 74, .13)
}

.tw-home-courses__grid article:hover .tw-course-image img {
    transform: scale(1.055);
    filter: brightness(.94)
}

.tw-course-title-link:hover,
.tw-course-title-link:focus-visible {
    color: #006bf1 !important;
    outline: none
}

.tw-home-courses__grid p {
    height: 58px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

.tw-home-courses__grid .tw-course-cta {
    display: inline-block;
    margin-top: 20px;
    color: #006bf1;
    font-size: 14px
}

.tw-home-news {
    padding: 80px 0 130px;
    background: #fff
}

.tw-home-news__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #cfcfcf
}

.tw-home-news__heading h2 {
    margin: 0;
    color: #006bf1;
    font-size: 42px
}

.tw-home-news__heading h2 span {
    font-weight: 400
}

.tw-home-news__heading a {
    display: flex;
    align-items: center;
    gap: 28px
}

.tw-home-news__heading i {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f2f4f6;
    font-style: normal
}

.tw-home-news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 72px;
    margin-top: 40px
}

.tw-home-news__grid article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    min-height: 176px;
}

.tw-news-image {
    height: 176px;
    overflow: hidden
}

.tw-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .45s ease
}

.tw-news-image-link,
.tw-news-title-link {
    display: block;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: inherit !important
}

.tw-news-title-link {
    transition: color .25s ease
}

.tw-home-news__grid article:hover .tw-news-image img {
    transform: scale(1.06);
    filter: brightness(.92)
}

.tw-news-title-link:hover,
.tw-news-title-link:focus-visible {
    color: #006bf1 !important;
    outline: none
}

.tw-home-news time {
    font-size: 13px;
    color: #555
}

.tw-home-news h3 {
    margin: 18px 0 36px;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400
}

.tw-home-news article .tw-news-cta {
    display: inline-block;
    padding: 5px 22px;
    border: 1px solid #006bf1;
    border-radius: 20px;
    color: #006bf1;
    font-size: 13px
}

.tw-home-social {
    height: 420px;
    padding-top: 100px;
    background: #001b43;
    color: #fff;
    text-align: center
}

.tw-home-social__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.tw-home-social__grid a {
    display: grid;
    justify-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255, 255, 255, .2)
}

.tw-home-social__grid a:last-child {
    border: 0
}

.tw-home-social strong {
    font-size: 48px
}

.tw-home-social span {
    font-size: 15px
}

.tw-home-social__all {
    display: inline-block;
    margin-top: 72px;
    font-size: 15px
}

.tw-footer {
    background: #fff
}

.tw-footer__main {
    display: grid;
    grid-template-columns: 210px 1fr 280px;
    gap: 60px;
    min-height: 480px;
    padding-top: 60px
}

.tw-footer__brand {
    display: flex;
    align-items: flex-start;
    color: #071f49
}

.tw-footer__brand>span {
    font-size: 50px;
    font-weight: 800;
    color: #bd7500;
    transform: skew(-8deg)
}

.tw-footer__brand b {
    padding-top: 10px;
    font-size: 21px
}

.tw-footer__brand small {
    display: block;
    font-size: 7px
}

.tw-footer__menus {
    display: grid;
    grid-template-columns: 180px 250px 180px;
    gap: 28px
}

.tw-footer__menus h3 {
    margin: 0 0 25px;
    font-size: 18px
}


.tw-footer__menus a {
    display: block;
    margin: 0 0 14px;
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.35
}

.tw-footer__menus a:before {
    content: "›";
    margin-left: -14px;
    margin-right: 8px;
    font-size: 18px;
    color: #006bf1
}

.tw-footer__social {
    display: flex;
    gap: 34px;
    font-size: 28px
}

.tw-footer__bottom {
    background: #f3f5f7
}

.tw-footer__bottom .tw-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 77px;
    font-size: 12px
}

@media(max-width:1500px) and (min-width:769px) {
    :root {
        --container: 1180px
    }

    .tw-header {
        padding: 0 30px
    }

    .tw-header__nav {
        gap: 18px;
        font-size: 12px
    }

    .tw-header__actions {
        gap: 10px
    }

    .tw-home-hero__content {
        width: 850px
    }


    .tw-button {
        min-width: 164px;
        height: 48px;
        padding: 0 24px;
        font-size: 15px;
    }

    .tw-home-hero h1 {
        font-size: 42px
    }

    .tw-home-about__inner {
        grid-template-columns: 480px 620px
    }

    .tw-home-about__video {
        width: 620px
    }

    .tw-home-about__content>p {
        font-size: 16px;
        line-height: 1.5;
    }

    .tw-home-about__facts li {
        font-size: 16px;
        line-height: 1.3;
    }

    .tw-home-hero__services p {
        font-size: 18px;
    }

    .tw-home-services .tw-section-heading p {
        width: 560px;
    }

    .tw-section-heading p {
        font-size: 18px;
    }

    .tw-home-assets {
        height: 560px;
    }

    .tw-home-assets__metrics {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }


    .tw-home-assets h2 {
        font-size: 36px;
    }

    .tw-home-assets__content {
        width: 480px;
        padding-top: 60px;
    }

    .tw-home-assets__content>p {
        margin: 20px 0 40px;
        font-size: 16px;
        line-height: 1.5;
    }

    .tw-home-assets__metrics strong {
        font-size: 32px;
    }

    .tw-home-assets__metrics div {
        min-height: 140px;
        padding-left: 24px;
    }

    .tw-home-assets__metrics span {
        width: 160px;
        font-size: 16px;
    }

    .tw-home-assets__img {
        height: 560px;
        display: flex;
        align-items: flex-end;
    }

    .tw-home-services__grid {
        gap: 30px
    }

    .tw-home-network {
        height: 660px;
    }

    .tw-home-network h2 {
        font-size: 28px;
    }

    .tw-home-network__logos img {
        height: 42px;
    }

    .tw-home-founder .tw-section-heading h2 {
        width: 600px;
        font-size: 36px;
    }

    .tw-service-card p {
        font-size: 14px;
    }

    .tw-service-card {
        padding: 32px;
        min-height: 420px;
    }

    .tw-home-reasons h2,
    .tw-section-heading h2,
    .tw-home-team__heading h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .tw-home-support .tw-section-heading h2 {
        max-width: 560px;
    }

    .tw-home-support__cards p {
        font-size: 18px;
    }

    .tw-home-support__cards article {
        height: 400px;
    }

    .tw-home-japan__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .tw-home-japan__copy {
        padding-right: 40px
    }

    .tw-home-japan__copy h2 {
        font-size: 32px;
    }

    .tw-home-japan__copy p {
        font-size: 16px;
    }

    .tw-home-team__cards article {
        padding: 22px
    }

    .tw-home-reasons__layout {
        grid-template-columns: 506px 580px
    }

    .tw-home-support__cards {
        margin-top: 40px;
        grid-template-columns: repeat(2, 540px)
    }

    .tw-footer__main {
        grid-template-columns: 180px 1fr 220px;
        gap: 40px
    }
}

@media(max-width:768px) {
    :root {
        --header-h: 68px
    }

    .tw-container {
        width: calc(100% - 40px)
    }

    .tw-header,
    .tw-header.is-scrolled {
        height: 68px;
        padding: 0 18px
    }

    .tw-header__mark {
        font-size: 30px
    }

    .tw-header__wordmark {
        font-size: 14px
    }

    .tw-header__nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        transform: none;
        width: 100%;
        height: calc(100vh - 68px);
        padding: 32px 24px;
        background: #050f20;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        overflow: auto
    }

    .tw-header__nav.is-open {
        display: flex
    }

    .tw-header__nav a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        font-size: 16px
    }

    .tw-header__actions>.tw-button {
        display: none
    }

    .tw-header__brand img {
        width: 145px
    }

    .tw-header__actions {
        gap: 10px
    }

    .tw-header__language {
        display: flex;
        min-height: 40px;
        padding: 6px 20px 6px 8px;
        font-size: 12px
    }

    .tw-header__language img {
        width: 17px;
        height: 17px
    }

    .tw-language__menu {
        position: fixed;
        top: 60px;
        right: 54px;
        width: 164px
    }

    .tw-header__menu {
        display: block
    }

    .tw-button {
        min-width: 0;
        height: 50px;
        font-size: 14px
    }

    .tw-container {
        flex-direction: column;
    }

    .tw-actions {
        gap: 12px
    }

    .tw-home-assets__img {
        height: auto;
    }

    .tw-actions .tw-button {
        flex: 1
    }

    .tw-section-heading h2 {
        font-size: 30px
    }

    .tw-section-heading p {
        font-size: 15px;
        line-height: 1.8
    }

    .tw-home-hero {
        height: 760px
    }

    .tw-home-hero__background {
        background-position: 66% center
    }

    .tw-home-hero__video {
        object-position: 66% center
    }

    .tw-home-hero:after {
        background: linear-gradient(90deg, rgba(0, 5, 15, .96), rgba(0, 8, 18, .7)), linear-gradient(0deg, #000, transparent 35%)
    }

    .tw-home-hero__content {
        top: 130px;
        width: 100%
    }

    .tw-home-hero__eyebrow {
        font-size: 14px
    }

    .tw-home-hero h1 {
        font-size: 32px;
        line-height: 1.42
    }

    .tw-home-hero__description {
        width: 100%;
        font-size: 14px;
        line-height: 1.8
    }

    .tw-home-hero__services {
        display: none
    }

    .tw-home-about {
        padding: 74px 0
    }

    .tw-home-about__inner {
        display: flex;
        flex-direction: column
    }

    .tw-home-about__content h2 {
        font-size: 30px
    }

    .tw-home-about__content>p {
        font-size: 15px;
        line-height: 1.8
    }

    .tw-home-about__facts {
        margin: 32px 0
    }

    .tw-home-about__facts li {
        gap: 18px;
        font-size: 14px
    }

    .tw-home-about__facts strong {
        font-size: 28px
    }

    .tw-fact-icon {
        width: 48px;
        height: 48px;
        font-size: 29px
    }

    .tw-home-about__video {
        order: -1;
        width: 100%;
        height: 260px;
        margin-bottom: 44px
    }

    .tw-home-about__video-image {}

    .tw-home-about__play {
        width: 72px;
        height: 72px;
        font-size: 24px
    }

    .tw-home-about__video p {
        left: 20px;
        bottom: 20px;
        width: 78%;
        font-size: 12px
    }

    .tw-video-modal {
        padding: 16px
    }

    .tw-video-modal__dialog {
        width: 100%;
        padding: 10px;
        border-radius: 10px
    }

    .tw-video-modal__header {
        min-height: 48px;
        padding: 0 2px 8px 8px
    }

    .tw-video-modal__header h2 {
        font-size: 15px
    }

    .tw-video-modal__close {
        width: 38px;
        height: 38px
    }

    .tw-video-modal__close span {
        top: 18px;
        left: 10px;
        width: 18px
    }

    .tw-home-assets {
        height: auto;
        padding: 72px 0 0px;
        background: radial-gradient(circle at 75% 80%, #0759a6, #00142d 62%)
    }

    .tw-home-assets__visual {
        opacity: .28;
        background-position: 75% center
    }

    .tw-home-assets__content {
        width: 100%;
        padding: 0;
    }

    .tw-home-assets h2 {
        font-size: 30px
    }

    .tw-home-assets__content>p {
        font-size: 15px;
        line-height: 1.8
    }

    .tw-home-assets__metrics {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .tw-home-assets__metrics div {
        padding-left: 16px;
        min-height: 108px
    }

    .tw-home-assets__metrics strong {
        font-size: 30px
    }

    .tw-home-assets__metrics span {
        width: auto;
        font-size: 12px
    }

    .tw-home-services {
        padding: 72px 0
    }

    .tw-home-services .tw-section-heading p {
        width: auto
    }

    .tw-home-services__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 38px
    }

    .tw-service-card,
    .tw-service-card:nth-child(4),
    .tw-service-card:nth-child(5) {
        grid-column: auto;
        min-height: 0;
        padding: 28px 24px
    }

    .tw-service-card__icon {
        font-size: 45px
    }


    .tw-service-card h3 {
        min-height: 0;
        margin: 18px 0;
        font-size: 19px
    }

    .tw-service-card p {
        font-size: 13px;
        line-height: 1.75
    }

    .tw-home-network {
        height: auto;
        padding: 70px 0
    }

    .tw-home-network__inner {
        padding: 0
    }

    .tw-home-network h2,
    .tw-home-network p {
        width: auto
    }



    .tw-home-network h2 {
        font-size: 21px;
        line-height: 1.5
    }

    .tw-home-network p {
        margin: 20px auto 40px;
        font-size: 13px;
        line-height: 1.8
    }

    .tw-home-network__logos {
        justify-content: center;
        gap: 30px 20px
    }

    .tw-home-network__logos img {
        flex-basis: calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
        max-width: 160px;
        height: 32px
    }

    .tw-home-network__logos b {
        font-size: 18px !important
    }

    .tw-home-founder {
        padding: 72px 0
    }

    .tw-home-founder .tw-section-heading h2 {
        width: auto;
        font-size: 29px
    }

    .tw-home-founder__layout {
        display: flex;
        flex-direction: column;
        margin-top: 42px
    }

    .tw-home-founder__portrait {
        order: -1;
        margin-bottom: 42px
    }

    .tw-home-founder__portrait>div {
        width: 100%;
        height: 430px;
    }

    .tw-home-founder__portrait strong {
        font-size: 24px
    }

    .tw-home-founder__portrait span {
        font-size: 14px
    }

    .tw-home-founder__copy h3 {
        font-size: 18px
    }

    .tw-home-founder__copy p {
        font-size: 14px;
        line-height: 1.8
    }

    .tw-home-founder__copy blockquote {
        font-size: 18px
    }

    .tw-home-team {
        padding: 72px 0
    }

    .tw-home-team__heading {
        display: block
    }

    .tw-home-team__heading h2 {
        font-size: 29px
    }

    .tw-home-team__heading p {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.8
    }

    .tw-home-team__viewport {
        margin-top: 40px
    }

    .tw-home-team__cards {
        gap: 14px;
    }

    .tw-home-team__cards article {
        flex-basis: 100%;
        height: auto;
        padding: 18px 18px 26px
    }

    .tw-team-photo {
        height: 245px;
        background-size: 1684px 987px
    }

    .tw-team-photo--one {
        background-position: -267px -314px
    }

    .tw-team-photo--two {
        background-position: -671px -314px
    }

    .tw-team-photo--three {
        background-position: -1076px -314px
    }

    .tw-home-team__cards h3 {
        margin: 24px 0 7px;
        font-size: 22px
    }

    .tw-home-team__cards p {
        margin-left: 0;
        font-size: 14px
    }

    .tw-slider-control {
        display: flex;
        gap: 14px;
        margin-top: 30px
    }

    .tw-slider-control>button {
        flex: 0 0 46px;
        width: 46px;
        height: 46px
    }

    .tw-slider-control__pagination {
        width: min(190px, calc(100vw - 156px));
        gap: 7px
    }

    .tw-slider-control__pagination button,
    .tw-slider-control__pagination button.is-active {
        width: 100%;
        height: 3px
    }

    .tw-home-reasons {
        height: auto;
        padding: 72px 0
    }

    .tw-home-reasons h2 {
        font-size: 30px;
        margin-bottom: 38px
    }

    .tw-home-reasons__layout {
        display: block
    }

    .tw-home-reasons__chart {
        height: 240px;
        margin-top: 36px;
        border-radius: 4px
    }

    .tw-home-reasons__tab-button {
        padding: 18px 38px 18px 3px;
        font-size: 15px
    }

    .tw-home-reasons__tab.is-active .tw-home-reasons__tab-button {
        padding-left: 8px
    }

    .tw-home-reasons__tab-panel p {
        padding: 0 4px 20px;
        font-size: 13px;
        line-height: 1.75
    }

    .tw-home-support {
        padding: 72px 0
    }

    .tw-home-support .tw-section-heading h2,
    .tw-home-support .tw-section-heading p {
        width: auto
    }

    .tw-home-support__cards {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 30px
    }

    .tw-home-support__cards article {
        height: auto;
        padding: 14px
    }

    .tw-support-image {
        height: 180px;
        background-size: 1567px 925px
    }

    .tw-support-image--one {
        background-position: -318px -353px
    }

    .tw-support-image--two {
        background-position: -825px -353px
    }

    .tw-home-support__cards p {
        margin: 24px 12px;
        font-size: 17px
    }

    .tw-pill-link {
        margin-top: 34px
    }

    .tw-home-japan {
        height: auto;
        padding: 72px 0
    }

    .tw-home-japan__inner {
        display: flex;
        flex-direction: column;
        height: auto
    }

    .tw-home-japan__copy h2 {
        font-size: 21px
    }

    .tw-home-japan__copy p {
        font-size: 14px;
        line-height: 1.6
    }

    .tw-home-japan__media {
        order: -1;
        width: 100%;
        height: 220px;
        margin-bottom: 36px;
        background-size: 1175px 391px;
        background-position: right center
    }

    .tw-home-courses {
        padding: 72px 0
    }

    .tw-home-courses__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 40px
    }

    .tw-home-courses__grid article {
        height: auto;
        padding: 15px 15px 30px
    }

    .tw-course-image {
        height: 185px;
        background-size: 1687px 807px
    }

    .tw-course-image--one {
        background-position: -262px -270px
    }

    .tw-course-image--two {
        background-position: -674px -270px
    }

    .tw-course-image--three {
        background-position: -1085px -270px
    }

    .tw-home-courses__grid h3 {
        font-size: 20px
    }

    .tw-home-courses__grid p {
        height: auto;
        font-size: 13px
    }

    .tw-home-news {
        padding: 72px 0
    }

    .tw-home-news__heading {
        padding-bottom: 30px
    }

    .tw-home-news__heading h2 {
        font-size: 28px
    }

    .tw-home-news__heading a {
        font-size: 0
    }

    .tw-home-news__heading i {
        width: 44px;
        height: 44px;
        font-size: 15px
    }

    .tw-home-news__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 34px
    }

    .tw-home-news__grid article {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .tw-news-image {
        height: 190px;
        background-size: 2057px 944px
    }

    .tw-news-image--one {
        background-position: -299px -306px
    }

    .tw-news-image--two {
        background-position: -1076px -306px
    }

    .tw-news-image--three {
        background-position: -299px -580px
    }

    .tw-news-image--four {
        background-position: -1076px -580px
    }

    .tw-home-news h3 {
        margin: 12px 0 22px
    }

    .tw-home-social {
        height: auto;
        padding: 64px 0
    }

    .tw-home-social__grid {
        grid-template-columns: 1fr
    }

    .tw-home-social__grid a {
        padding: 28px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .2)
    }

    .tw-home-social strong {
        font-size: 36px
    }

    .tw-home-social__all {
        margin: 42px 20px 0;
        font-size: 12px
    }

    .tw-footer__main {
        display: block;
        padding: 50px 0
    }

    .tw-footer__menus {
        grid-template-columns: 1fr;
        margin-top: 40px
    }

    .tw-footer__menus>div {
        border-top: 1px solid #e1e5eb;
        padding-top: 20px
    }

    .tw-footer__social {
        margin-top: 36px
    }

    .tw-footer__bottom .tw-container {
        display: block;
        height: auto;
        padding: 22px 0;
        font-size: 9px
    }

    .tw-page-top {
        width: 58px;
        height: 58px;
        right: 14px;
        bottom: 18px;
        border-radius: 50%;
        font-size: 9px;
        background: #0a3d73
    }
}

@media(max-width:480px) {
    .tw-container {
        flex-direction: column;
        width: calc(100% - 28px)
    }

    .tw-home-assets__img {
        height: auto;
    }

    .tw-header,
    .tw-header.is-scrolled {
        padding: 0 12px
    }

    .tw-header__brand img {
        width: 126px
    }

    .tw-header__language {
        width: 39px;
        padding: 7px 18px 7px 4px;
        gap: 0;
        overflow: hidden
    }

    .tw-header__language span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0)
    }

    .tw-language__menu {
        right: 48px
    }

    .tw-home-hero {
        min-height: 720px;
        height: auto;
        padding-bottom: 34px
    }

    .tw-home-hero h1 {
        font-size: 28px;
        line-height: 1.42
    }

    .tw-home-hero__description {
        font-size: 13px;
        line-height: 1.8
    }

    .tw-actions {
        flex-wrap: wrap
    }

    .tw-actions .tw-button {
        flex-basis: 100%
    }

    .tw-home-team__heading h2,
    .tw-home-reasons h2,
    .tw-section-heading h2 {
        font-size: 24px
    }

    .tw-home-courses__grid .tw-course-cta {
        font-size: 13px;
    }

    .tw-team-photo {
        height: 220px
    }

    .tw-home-reasons__chart {
        height: 210px;
        margin-top: 28px
    }

    .tw-video-modal {
        padding: 10px
    }

    .tw-video-modal__dialog {
        padding: 8px
    }

    .tw-home-social__grid a {
        padding: 24px 14px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .tw-home-hero__video {
        display: none
    }
}