.headline__img img {
    color: var(--colors-brand-sub);
    height: 100%;
    margin-left: -200px;
}

@media only screen and (max-width: 1024px) {
    .headline__img img {
        height: initial;
    }
}

@media only screen and (max-width: 768px) {
    .headline__img img {
        margin-left: -120px;
        height: initial;
    }
}

.news {
    padding: var(--section-spacing) 0;
}

.news .news__inner {
    width: 960px;
    margin: auto;
}

@media only screen and (max-width: 1024px) {
    .news .news__inner {
        width: 100%;
    }
}

.news .news__inner h1 {
    font-size: clamp(24px, calc(24px + ((1vw - 3.75px) * 1.6181229773)), 48px);
    text-align: center;
    border-bottom: 1px solid var(--colors-brand-sub);
    padding-bottom: 16px;
    margin-bottom: 40px;
}

.news .news__inner ul {
    padding: 0 var(--grid-gutter);
}

.news .news__inner ul li {
    margin: 16px 0;
}

.news .news__inner ul li a {
    display: flex;
    gap: var(--grid-gap);
    font-size: var(--body-standard);
}

.news .news__inner ul li a .date {
    width: 80px;
}

.voice {
    padding: var(--section-spacing) 0;
}

.voice .voice__inner {
    margin: auto;
    max-width: 1000px;
}

@media only screen and (max-width: 768px) {
    .voice .voice__inner {
        width: 100%;
    }
}


.voice {
    padding: var(--section-spacing) 0;
}

.voice .voice__inner {
    margin: auto;
    max-width: 1000px;
}

@media only screen and (max-width: 768px) {
    .voice .voice__inner {
        width: 100%;
    }
}

.voice .voice__inner ul {
    padding: 0 var(--grid-gutter);
}

.voice .voice__inner .voiceSlide {
    padding: 0 24px;
}

.voice .voice__inner .voice__content {
    width: 100%;
}

.voice .slick-prev:before {
    font-family: 'Font Awesome 5 Pro';
    content: '\f104';
    font-size: 32px;
    font-weight: 100;
    transition: all var(--mouseover-transition);
}

.voice .slick-next:before {
    font-family: 'Font Awesome 5 Pro';
    content: '\f105';
    font-size: 32px;
    font-weight: 100;
    transition: all var(--mouseover-transition);
}

.voice .voice__inner .voice__content p {
    margin-bottom: 1.8rem;
    font-size: var(--body-large);
}

@media only screen and (max-width: 768px) {
    .voice .voice__inner .voice__content p {
        font-size: var(--body-standard);
    }
}

.voice .voice__inner .voice__customer {
    margin-top: var(--grid-gutter);
    display: flex;
    align-items: center;
}

@media only screen and (max-width:768px) {
    .voice .voice__inner .voice__customer {
        flex-direction: column;
    }
    .voice .voice__inner .voice__customer .detail.casestudy {
        flex-direction: column;
    }
    .voice .voice__inner .voice__customer img {
        margin-right: 0;
    }
    .voice .voice__inner .voice__customer .name,
    .voice .voice__inner .voice__customer .company {
        text-align: center;
    }
}

.voice .voice__inner .voice__customer img {
    display: block;
    width: 120px;
    border-radius: 1000px;
    margin-right: 16px;
}

@media only screen and (max-width: 768px) {
    .voice .voice__inner .voice__customer img {
        width: 80px;
    }
}

.voice .voice__inner .voice__customer .name {
    font-size: var(--body-large);
    font-weight: bold;
}

.voice .voice__inner .voice__customer .detail {
    font-size: var(--body-small);
}

.voice .voice__inner .voice__customer .detail.casestudy {
    display: flex;
    align-items: center;
    gap: 24px;
}

.voice .voice__inner .voice__customer .detail.casestudy div .button {
    background-color: var(--colors-brand-sub);
    color: var(--colors-brand);
    font-size: var(--body-standard);
    font-weight: bold;
    transition: all ease 0.3s;
}

.voice .voice__inner .voice__customer .detail.casestudy div .button:hover {
    background-color: #fff;
}

.voice .slick-track {
    display: flex;
    align-items: center;
}

.voice .slick-dots {
    bottom: -80px;
    padding: 0 !important;
    width: calc(100% - var(--grid-gutter) * 2);
}

.voice .slick-dots li button:before {
    font-size: 16px !important;
    color: #fff !important;
    transition: all var(--mouseover-transition) !important;
}

.scrollVideo {
    height: 205vh;
    position: relative;
    overflow: hidden;
}

.scrollVideo__inner {
    /* position: relative; */
}

.scrollVideo__txt,
.scrollVideo__txtMask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: var(--colors-brand);
    z-index: 10;
}

.scrollVideo__txtMask {
    color: var(--colors-white);
}

.scrollVideo__txt p,
.scrollVideo__txtMask p {
    text-align: center;
    font-weight: bold;
    font-size: var(--body-large);
}


.scrollVideo__txt h1,
.scrollVideo__txtMask h1 {
    font-size: clamp(40px, calc(40px + ((1vw - 7.68px) * 3.4722222222)), 72px);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.5em;
}

@media only screen and (max-width:768px) {
    .scrollVideo__txt h1,
    .scrollVideo__txtMask h1 {
        font-size: clamp(30px, calc(40px + ((1vw - 7.68px) * 3.4722222222)), 56px);
        padding: 0 16px;
    }
    .scrollVideo__txt h1 br,
    .scrollVideo__txtMask h1 br {
        display: none;
    }
    
    .scrollVideo__txt p, .scrollVideo__txtMask p {
        font-size: var(--body-standard);
        padding: 0 16px;
    }
}

.scrollVideo__txt ul,
.scrollVideo__txtMask ul {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.scrollVideo__txt ul li:first-child a,
.scrollVideo__txt ul li:first-child span {
    border: 2px solid var(--colors-brand);
}

.scrollVideo__txtMask ul li:first-child a,
.scrollVideo__txtMask ul li:first-child span {
    border: 2px solid var(--colors-white);
}

.scrollVideo__txt ul li:last-child a,
.scrollVideo__txt ul li:last-child span {
    border: 2px solid var(--colors-brand);
    background-color: var(--colors-brand);
    color: var(--colors-brand-sub);
}

.scrollVideo__txtMask ul li:last-child a,
.scrollVideo__txtMask ul li:last-child span {
    border: 2px solid var(--colors-white);
    background-color: var(--colors-white);
    color: var(--colors-brand);
}

.scrollVideo__video video {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 100vh;
}

.scrollVideo__txtMask {
    clip-path: inset(100% 0% 0%);
}

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

    .scrollVideo__video video {
        width: 140%;
        left: -20%;
    }
}

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

    .scrollVideo__video video {
        width: 260%;
        left: -80%;
    }
}

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

    .scrollVideo__video video {
        width: 360%;
        left: -140%;
    }
}

.headline__txt figure {
    margin-top: var(--grid-gap);
    padding-right: var(--grid-gutter);
}

.headline__txt figure img {
    display: block;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    background: var(--colors-white);
    transition: all var(--mouseover-transition);
}

.headline__txt figure img:hover {
    opacity: .8;
}


.userCase {
    margin-top: var(--section-spacing);
    margin-bottom: var(--section-spacing);
}

@media only screen and (max-width: 768px) {
    .userCase {
        margin-top: var(--section-spacing);
        margin-bottom: var(--section-spacing);
    }
}

.userCase ul {
    padding-bottom: 16px;
}

.userCase ul li {
    padding: 32px;
    margin: 0 24px 16px;
    box-shadow: 1px 1px 3px 0 #ccc;
}

.userCase ul li figure {
    margin-bottom: 16px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.userCase ul li figure img {
    display: block;
    max-height: 80px;
    max-width: 240px;
}

.userCase ul li p {
    font-size: 16px;
    min-height: 160px;
}





.gpubimcloud {
    background-color: #fff;
    position: relative;
    z-index: 3;
}

.gpubimcloud a {
    display: block;
    background-image: url(/assets/images/home/Fv-img.png);
    background-size: cover;
    background-position-y: 20%;
    color: #fff;
    height: 240px;
    display: flex;
    align-items: center;
    transition: all ease .3s;
    border-bottom: 1px solid #fff;
    width: 100%;
}

.gpubimcloud a:hover {
    opacity: .9;
}

.gpubimcloud .gpubimcloud__inner {
    padding: 0 var(--section-spacing);
}

.gpubimcloud .gpubimcloud__inner .FvCopy__copy {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 0 3px #000;
}

.gpubimcloud .gpubimcloud__inner p {
    position: absolute;
    bottom: 16px;
    right: 32px;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 3px #000;
}

.gpubimcloud .gpubimcloud__inner .FvCopy__copy span {
    display: block;
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.gpubimcloud .gpubimcloud__inner .FvCopy__copy span br {
    display: none;
}

.gpubimcloud .gpubimcloud__inner .FvCopy__subcopy {
    padding: 0.5em 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.6;
    margin-top: var(--grid-gap);
}

.gpubimcloud .gpubimcloud__inner .FvCopy__copy b {
    display: inline-block;
    height: initial;
    background-image: none;
    margin-left: 24px;
    font-size: 22px;
    font-weight: normal;
    padding: 16px;
    border: 1px solid #fff;
    vertical-align: middle;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all ease .3s;
}

@media only screen and (max-width:768px) {
    .gpubimcloud a {
        height: initial;
        background-image: url(/assets/images/home/Fv-img-smp.png);
        background-position-y: center;
        background-position-x: 30%;
    }

    .gpubimcloud .gpubimcloud__inner {
        padding: 40px var(--grid-gutter);
        padding-bottom: 16px;
    }

    .gpubimcloud .gpubimcloud__inner .FvCopy__copy {
        font-size: 4rem;
    }

    .gpubimcloud .gpubimcloud__inner .FvCopy__copy span {
        font-size: 2rem;
    }

    .gpubimcloud .gpubimcloud__inner .FvCopy__copy span br {
        display: initial;
    }

    .gpubimcloud .gpubimcloud__inner .FvCopy__subcopy {
        font-size: 2rem;
    }

    .gpubimcloud .gpubimcloud__inner .FvCopy__copy b {
        margin-left: 0;
        margin-top: 16px;
        display: block;
    }

    .gpubimcloud .gpubimcloud__inner p {
        position: relative;
        bottom: initial;
        right: initial;
        width: 100%;
        text-align: right;
        font-size: 2.4rem;
    }
}



.spring_campaign {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 100;
}

.spring_campaign img {
    display: block;
    border-radius: 8px;
    opacity: 0.9;
    transition: all ease 0.3s;
    max-width: 380px;
}

.spring_campaign img:hover {
    opacity: 1;
}

@media only screen and (max-width:768px) {
    .spring_campaign {
        top: 24px;
        right: 24px;
    }

    .spring_campaign img {
        width: 320px;
    }
}





.gc-rental {
    position: relative;
    z-index: 3;
}

.gc-rental a {
    display: block;
    background-color: var(--colors-brand);
    color: #fff;
    height: 160px;
    display: flex;
    align-items: center;
    transition: all ease .3s;
    background-position-y: 20%;
    border-bottom: 1px solid var(--colors-brand-sub);
    background-image: url('/assets/images/support/gc-rental/nvidia_graphic_board.png');
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: 80% center;
}

.gc-rental a:hover {
    opacity: .9;
}

.gc-rental .gc-rental__inner {
    padding: 0 var(--section-spacing);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--section-spacing);
    overflow: hidden;
}

.gc-rental .gc-rental__inner figure {
    overflow: hidden;
}

.gc-rental .gc-rental__inner h2 {
    color: var(--colors-brand-sub);
    font-size: 4.8rem;
    line-height: 1.1;
}

.gc-rental .gc-rental__inner h2 span {
    display: block;
    font-size: 3rem;
    color: #fff;
    margin-top: 8px;
}

@media only screen and (max-width:1020px) {
    .gc-rental .gc-rental__inner {
        gap: 40px;
    }

    .gc-rental .gc-rental__inner h2 {
        font-size: 5rem;
    }

    .gc-rental .gc-rental__inner h2 span {
        font-size: 3rem;
    }
}

@media only screen and (max-width:900px) {
    .gc-rental .gc-rental__inner {
        gap: 40px;
    }

    .gc-rental .gc-rental__inner h2 {
        font-size: 4rem;
    }

    .gc-rental .gc-rental__inner h2 span {
        font-size: 2.5rem;
    }

    .gc-rental a {
        height: initial;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .gc-rental .gc-rental__inner figure img {
        max-height: 180px;
    }

}

@media only screen and (max-width:768px) {
    .gc-rental .gc-rental__inner {
        padding-left: var(--grid-gutter);
        padding-right: var(--grid-gutter);
    }

    .gc-rental .gc-rental__inner h2 {
        font-size: 3rem;
    }

    .gc-rental .gc-rental__inner h2 span {
        font-size: 2rem;
    }

    .gc-rental .gc-rental__inner figure img {
        max-height: 150px;
    }
}

@media only screen and (max-width:500px) {
    .gc-rental .gc-rental__inner {
        display: block;
        width: 100%;
    }

    .gc-rental .gc-rental__inner h2 {
        text-align: center;
        margin-bottom: 16px;
        text-shadow: 1px 1px 0 #ccc, 1px -1px #ccc, -1px 1px #ccc, -1px -1px #ccc;
    }

    .gc-rental .gc-rental__inner h2 span {
        text-shadow: none;
    }

    .gc-rental .gc-rental__inner figure img {
        max-height: 150px;
        display: block;
        margin: auto;
    }
}

.topMovie {
    height: calc(100vh - 79px);
    z-index: 0;
    border-bottom: 1px solid var(--colors-brand-sub);
}

@media only screen and (max-width:768px) {
    .topMovie {
        height: initial;
        height: 100vh;
        margin-top: -47px;
        position: relative;
    }
}

.topMovie figure {
    top: 0;
    position: absolute;
    height: calc(100vh);
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.topMovie figure video {
    min-width: 100%;
    min-height: 100vh;
}

.topMovie figure video.sp {
    display: none;
}

@media only screen and (max-width:768px) {
    .topMovie figure video {
        margin-left: -50%;
    }
}

@media only screen and (max-width:480px) {
    .topMovie figure video {
        display: none;
    }

    .topMovie figure video.sp {
        display: initial;
        min-width: initial;
        min-height: initial;
        max-height: 100%;
        margin-left: initial;
    }
}

.topMovie #right-top-banner {
    width: initial;
    height: initial;
    top: calc(var(--navigation-bar-height) + 20px);
    right: 20px;
    z-index: 2;
}

.topMovie #right-top-banner img {
    border-radius: 8px;
    max-width: 400px;
    transition: all ease 0.3s;
}

.topMovie #right-top-banner img:hover {
    opacity: 0.9;
}

@media only screen and (max-width:1400px) {
    .topMovie #right-top-banner img {
        max-width: 320px;
    }
}

@media only screen and (max-width:768px) {
    .topMovie #right-top-banner {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        padding: 40px 20px;
    }
    .topMovie #right-top-banner img {
        max-width: 100%;
        width: 400px;
        margin: auto;
        display: block;
    }
}

.topMovie .topMovie__inner {
    position: relative;
    height: calc(100vh - 80px);
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width:768px) {
    .topMovie .topMovie__inner {
        height: initial;
        height: 100vh;
        align-items: start;
        padding-top: 120px;
    }
}

.topMovie .topMovie__inner>div {
    padding-bottom: 200px;
}

@media only screen and (max-width:768px) {
    .topMovie .topMovie__inner>div {
        padding-bottom: initial;
    }
}

.topMovie .topMovie__inner>div h1 {
    color: #fff;
    font-size: 88px;
    text-shadow: 0 0 30px black;
    text-align: center;
    line-height: 1.4em;
    margin-bottom: 24px;
}

@media only screen and (max-width:768px) {
    .topMovie .topMovie__inner>div h1 {
        font-size: 12vw;
        line-height: 1.4em;
        margin-bottom: 32px;
    }
}

.topMovie .topMovie__inner>div .link {
    text-align: center;
}

.topMovie .topMovie__inner>div .link a {
    background-color: #fff;
    color: var(--colors-brand);
    display: inline-block;
    padding: 8px 0;
    min-width: 240px;
    text-align: center;
    border-radius: 4px;
    margin: 0 10px;
}

@media only screen and (max-width:768px) {
    .topMovie .topMovie__inner>div .link a {
        margin: 10px;
    }
}

.topMovie .topMovie__leftBanners {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.topMovie .topMovie__leftBanners a img {
    border: 1px solid #fff;
    display: block;
    max-width: 400px;
    border-radius: 8px;
    transition: all ease 0.3s;
    opacity: 0.5;
}

.topMovie .topMovie__leftBanners a img:hover {
    opacity: 1;
}

@media only screen and (max-width:768px) {
    .topMovie .topMovie__leftBanners {
        left: 0;
        bottom: 24px;
        width: 100%;
    }

    .topMovie .topMovie__leftBanners a img {
        width: 80%;
        margin: auto;
        opacity: 0.9;
    }
}

.topMovie .topMovie__rightBanners {
    position: absolute;
    top: calc(80px + 40px);
    right: 40px;
    z-index: 2;
}

.topMovie .topMovie__rightBanners a img {
    border: 1px solid #fff;
    display: block;
    max-width: 320px;
    border-radius: 8px;
    transition: all ease 0.3s;
    opacity: 0.5;
}

.topMovie .topMovie__rightBanners a img:hover {
    opacity: 1;
}

@media only screen and (max-width:768px) {
    .topMovie .topMovie__rightBanners {
        top: calc(24px + 50px);
        width: 100%;
        right: initial;
    }

    .topMovie .topMovie__rightBanners a img {
        width: 300px;
        margin: auto;
        display: block;
        opacity: 0.9;
    }

    .column2.bgBrand.addPB {
        padding-top: 40px;
    }

}

.texturePanels__inner {
    padding-left: var(--grid-gutter);
    padding-right: var(--grid-gutter);
    max-width: 2560px;
    margin: auto;
}

.texturePanels__column {
    overflow: hidden;
    display: grid;
    grid-auto-flow: row;
    grid-gap: 24px;
    gap: 24px;
}

.texturePanels__row {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 24px;
    overflow: hidden;
}

.texturePanels__row .cell.head {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.texturePanels__row .cell.head .svgShape {
    height: 100%;
    display: block;
}

.texturePanels__row .cell.head .title {
    position: absolute;
    bottom: var(--grid-gap);
    left: var(--grid-gap);
    font-size: var(--body-large);
}

.texturePanels__row .cell.head .title h1 {
    color: var(--colors-brand-sub);
}

.texturePanels__row .video.material {
    height: 100%;
    flex-grow: 1.77777777777777778;
    position: relative;
}


.texturePanels__row .video.material figure {
    height: 100%;
    width: 100%;
}

.texturePanels__row .video.material figure video,
.texturePanels__row .video.material figure img {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
}

.texturePanels__row .video.material figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: rgba(0, 0, 0, .2);
    padding: var(--grid-gap);
    color: var(--colors-white);
    font-size: var(--h5-size);
    font-weight: bold;
}

.texturePanels__row .video.material figure figcaption span {
    display: block;
    font-size: var(--body-small);
    font-weight: normal;
}

.texturePanels__row .video.displacement {
    flex-grow: 1;
    position: relative;
}

.texturePanels__row .video.displacement:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.texturePanels__row .video.displacement figure {
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.texturePanels__row .video.displacement figure video,
.texturePanels__row .video.displacement figure img {
    object-fit: fill;
    max-width: 100%;
    min-height: 100%;
    position: absolute;
    border-radius: 8px;
}

.texturePanels__row .video.displacement figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: rgba(0, 0, 0, .2);
    padding: var(--grid-gap);
    color: var(--colors-white);
    font-size: var(--h5-size);
    font-weight: bold;
}

.texturePanels__row .video.displacement figure figcaption span {
    display: block;
    font-size: var(--body-small);
    font-weight: normal;
}

.texturePanels__row .video.weathering {
    height: 100%;
    flex-grow: 1.77777777777777778;
    position: relative;
}

.texturePanels__row .video.weathering figure {
    height: 100%;
    width: 100%;
}

.texturePanels__row .video.weathering figure video,
.texturePanels__row .video.weathering figure img {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
}

.texturePanels__row .video.weathering figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: rgba(0, 0, 0, .2);
    padding: var(--grid-gap);
    color: var(--colors-white);
    font-size: var(--h5-size);
    font-weight: bold;
}

.texturePanels__row .video.weathering figure figcaption span {
    display: block;
    font-size: var(--body-small);
    font-weight: normal;
}

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

    .texturePanels__row .video.weathering,
    .texturePanels__row .video.material {
        height: initial;
        flex-grow: 1;
    }

    .texturePanels__inner .cell {
        flex: 0 0 100%;
    }

    .texturePanels__inner .texturePanels__row {
        flex-direction: row-reverse;
    }

    .texturePanels__row .video.material:after,
    .texturePanels__row .video.weathering:after {
        content: "";
        display: block;
        padding-top: 100%;
    }
}


.bottomBanners {
    position: absolute;
    z-index: 2;
    bottom: -220px;
    left: 0;
    width: 100%;
    display: none;
}

.bottomBanners ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: start;
}

.bottomBanners ul li {
    width: 300px;
    padding-bottom: 40px;
    transition: all ease 0.3s;
}

.bottomBanners ul li.active {
    margin-top: -220px;
}

.bottomBanners ul li.active a {
    opacity: 1;
}

.bottomBanners ul li a {
    display: block;
    opacity: 0.7;
    position: relative;
    height: 100%;
    padding: 24px;
    background-color: #fff;
    border-radius: 16px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.bottomBanners ul li.introduction a {
    background-image: url(/assets/images/home/banner_bg_01.png);
}

.bottomBanners ul li.subsidy a {
    background-image: url(/assets/images/home/banner_bg_02.png);
}

.bottomBanners ul li.campaign a {
    background-image: url(/assets/images/home/banner_bg_03.png);
}

.bottomBanners ul li.introduction a h1 {
    color: #fff;
}

.bottomBanners ul li.introduction a h1 span {
    font-size: 48px;
    display: block;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1em;
}

.bottomBanners ul li.introduction a h1 em {
    font-weight: normal;
    font-size: 3rem;
    line-height: 1.3em;
    display: block;
    text-align: center;
}

.bottomBanners ul li.campaign a h1 {
    color: #fff;
}

.bottomBanners ul li.campaign a h1>span:first-child,
.bottomBanners ul li.campaign a h1>span:last-child {
    display: block;
    text-align: center;
    font-weight: normal;
    font-size: 28px;
}

.bottomBanners ul li.campaign a h1>span:first-child {
    text-shadow: 0 0 2px #555;
}

.bottomBanners ul li.campaign a h1>span:last-child {
    margin-top: -25px;
    font-size: 23px;
}

@media only screen and (max-width: 768px) {
    .bottomBanners ul li.campaign a h1>span:last-child {
        display: none;
    }
}

.bottomBanners ul li.campaign a h1>.f {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: -30px
}

.bottomBanners ul li.campaign a h1>.f span {
    font-weight: normal;
    font-size: 28px;
}

.bottomBanners ul li.campaign a h1>.f em {
    font-weight: bold;
    font-size: 50px;
    margin: 0 4px;
}

.bottomBanners ul li.subsidy a h1 {
    color: #fff;
}

.bottomBanners ul li.subsidy a h1>span:first-child,
.bottomBanners ul li.subsidy a h1>span:last-child {
    display: block;
    text-align: center;
    font-weight: normal;
    font-size: 28px;
}

.bottomBanners ul li.subsidy a h1>span:first-child {
    text-shadow: 0 0 2px #555;
    letter-spacing: 0.3em;
}

.bottomBanners ul li.subsidy a h1>span:last-child {
    margin-top: -25px;
    font-size: 23px;
}

@media only screen and (max-width: 768px) {
    .bottomBanners ul li.subsidy a h1>span:last-child {
        display: none;
    }
}

.bottomBanners ul li.subsidy a h1>.f {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: -30px
}

.bottomBanners ul li.subsidy a h1>.f span {
    font-weight: normal;
    font-size: 28px;
}

.bottomBanners ul li.subsidy a h1>.f em {
    font-weight: bold;
    font-size: 50px;
    margin: 0 4px;
}

.bottomBanners ul li a h1 {
    height: 150px;
}

.bottomBanners ul li a p {
    font-size: 12px;
    line-height: 1.3em;
    height: 150px;
    padding: 12px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.5);
}

.bottomBanners ul li .btn {
    display: flex;
    width: 100%;
    left: 0;
    position: absolute;
    bottom: 0;
    justify-content: center;
    padding-bottom: 24px;
}

.bottomBanners ul li .btn span {
    border-radius: 100px;
    color: #fff;
}

.bottomBanners ul li.introduction .btn span {
    background: linear-gradient(#8fe0dd, #a1eacd);
    padding: 4px 24px;
}

.bottomBanners ul li.subsidy .btn span {
    background: linear-gradient(#7e90d8, #8d55cf);
    padding: 4px 24px;
}

.bottomBanners ul li.campaign .btn span {
    background: linear-gradient(#fbd065, #e89277);
    padding: 4px 24px;
}

@media only screen and (max-width:1050px) {
    .bottomBanners ul {
        gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .bottomBanners ul li {
        width: 100%;
    }

    .bottomBanners ul li.campaign a h1 em,
    .bottomBanners ul li.introduction a h1 em,
    .bottomBanners ul li.subsidy a h1 em {
        font-size: 20px;
    }

    .bottomBanners ul li.campaign a h1 span,
    .bottomBanners ul li.introduction a h1 span,
    .bottomBanners ul li.subsidy a h1 span {
        font-size: 64px;
        letter-spacing: 2px;
    }

    .bottomBanners ul li a {
        padding: 16px !important;
    }
}

@media only screen and (max-width:800px) {
    .bottomBanners {
        bottom: 16px;
        position: relative;
    }

    .bottomBanners ul {
        display: block;
        padding-left: 16px;
        padding-right: 16px;
    }

    .bottomBanners ul li {
        padding-bottom: 0;
        margin-top: 16px;
    }

    .bottomBanners ul li a {
        padding: 0 !important;
        opacity: 0.85;
    }

    .bottomBanners ul li a h1 {
        height: 90px;
    }

    .bottomBanners ul li a p,
    .bottomBanners ul li a .btn {
        display: none;
    }

    .bottomBanners ul li.campaign a h1 span,
    .bottomBanners ul li.subsidy a h1>span:first-child,
    .bottomBanners ul li.introduction a h1 span {
        padding-top: 0;
    }

    .bottomBanners ul li.campaign a h1 em,
    .bottomBanners ul li.introduction a h1 em,
    .bottomBanners ul li.subsidy a h1 em {
        font-size: 16px;
    }

    .bottomBanners ul li.campaign a h1 span,
    .bottomBanners ul li.introduction a h1 span,
    .bottomBanners ul li.subsidy a h1 span {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .bottomBanners ul li.introduction a h1 {
        padding-top: 4px;
    }

    .bottomBanners ul li.campaign a,
    .bottomBanners ul li.subsidy a {
        background-position-y: -50px;
    }

    .topMovie figure video.sp {
        display: block;
        margin: auto !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-height: initial !important;
        max-width: 140% !important;
    }
}


@media only screen and (max-height: 630px) {
    .topMovie .topMovie__inner {
        padding-top: 60px;
    }

    .topMovie .topMovie__inner>div h1 {
        margin-bottom: 16px !important;
    }

    .bottomBanners ul li.campaign a h1 span,
    .bottomBanners ul li.introduction a h1 span,
    .bottomBanners ul li.subsidy a h1 span {
        font-size: 32px;
    }

    .bottomBanners ul li a h1 {
        height: 76px;
    }

    .bottomBanners ul li.subsidy a h1,
    .bottomBanners ul li.introduction a h1 {
        padding-top: 8px;
    }

    .bottomBanners ul li {
        margin-top: 8px;
    }

}

.column2__txt a {
    display: inline-block;
}

.bgBrand .column2__inner .column2__txt p a {
    color: var(--colors-brand-sub);
}

.bgBrand .column2__inner .column2__txt p a:hover {
    color: #fff;
}

.column2__txt a .arrow-button {
    margin-top: 32px;
    border: 2px solid var(--colors-brand);
    border-radius: 1000px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--mouseover-transition);
}

.column2__txt a .arrow-button:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f061';
    font-size: 24px;
    color: var(--colors-brand);
    transition: all var(--mouseover-transition);
}

.column2__txt a:hover .arrow-button:after {
    margin-left: 16px;
}

@media only screen and (max-width:768px) {
    .column2__txt a .arrow-button {
        margin-top: 8px;
        margin-bottom: 32px;
    }
}

.caseSlick {
    margin-bottom: 40px;
}

.caseSlick h1 {
    color: var(--colors-brand);
    font-size: clamp(30px, calc(30px + ((1vw - 3.75px) * 1.6181229773)), 48px);
    margin-bottom: 24px;
    line-height: 1.4;
    text-align: center;
}

@media only screen and (max-width:768px) {
    .caseSlick h1 {
        padding: 0 16px;
        font-size: 6vw;
    }
}

.caseSlick ul {
    padding-bottom: 16px;
}

.caseSlick ul li {
    padding: 32px;
    margin: 0 24px 16px;
    box-shadow: 1px 1px 3px 0 #ccc;
}

.caseSlick ul li figure {
    margin-bottom: 16px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caseSlick ul li figure img {
    display: block;
    max-height: 80px;
    max-width: 240px;
}

.caseSlick ul li p {
    font-size: 16px;
    min-height: 160px;
}


.rightBanners {
    position: absolute;
    right: 0;
    top: var(--navigation-bar-height);
    width: 400px;
    padding-top: 20px;
    padding-right: 20px;
    z-index: 1;
}

.rightBanners img {
    display: block;
    max-width: 100%;
    opacity: 0.8;
    transition: all ease .3s;
}

.rightBanners img:hover {
    opacity: 1;
}

.rightBanners ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media only screen and (max-width: 1350px) {
    .rightBanners {
        right: initial;
        top: initial;
        left: 0;
        bottom: 0;
        padding: 0 40px 40px;
        width: 100%;
    }
    .rightBanners ul {
        flex-direction: row;
    }
}

@media only screen and (max-width: 768px) {
    .rightBanners ul {
        flex-direction: column;
        align-items: center;
    }
    .rightBanners img {
        width: 100%;
        max-width: 320px;
    }
}












.hotSpotImage {
    padding-bottom: var(--section-spacing);
    padding-left: var(--grid-gutter);
    padding-right: var(--grid-gutter);
    transition: padding-bottom var(--mouseover-transition)!important;
}

.hotSpotImage__inner {
    position: relative;
    max-width: 2560px;
  margin: auto;
}

.hotSpotImage__mainImage {
    position: relative;
}

.hotSpotImage__mainImage figure {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: 100vh; */
    border-radius: 8px;
}

.hotSpotImage__mainImage figure img {
    border-radius: 8px;
    display: block;
    width: 100%;
    /* position: absolute; */
}

.hotSpotImage__mainImage .hotSpots .hotSpot {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--colors-white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 50px;
    font-weight: 100;
    border: 1px solid var(--colors-brand);
    box-shadow: 0 0 10px var(--colors-brand);
}

.hotSpotImage__mainImage .hotSpots .hotSpot:before, 
.hotSpotImage__mainImage .hotSpots .hotSpot:after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: -2px;
  right: 0;
  margin: auto;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 1px solid var(--colors-brand);
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  -webkit-animation: pulsate 2s linear infinite;
  animation: pulsate 2s linear infinite;
}

@media only screen and (max-width: 1024px) {
    .hotSpotImage__mainImage .hotSpots .hotSpot {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .hotSpotImage__mainImage .hotSpots .hotSpot {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
}

.hotSpotImage__mainImage .hotSpots .hotSpot:after {
  animation-delay: 1s;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

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

.insertPanels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

#pbr,
#emissive,
#glass,
#sunAndTime {
    display: none;
}

.mainImages .image,
.thumbnails .image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* #glass .thumbnails .image {
    background-size: contain;
} */

.insertPanel__inner{
    display: flex;
}

.insertPanel__inner .insertPanel__image{
    width: calc(100% - 500px);
}

.insertPanel__inner .insertPanel__image .mainImages{
    height: 100%;
}

.insertPanel__inner .insertPanel__image .mainImages .image{
    width: 100%;
    height: 100%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

@media only screen and (max-width: 768px) {
    .insertPanel__inner .insertPanel__image .mainImages .image{
        border-radius: 8px;
    }
}

.insertPanel__inner .insertPanel__content{
    width: 500px;
    background-color: var(--colors-white);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: var(--grid-gap);
    position: relative;
    z-index: 1;
}

.insertPanel__inner .insertPanel__content .close{
    position: absolute;
    top: 12px;
    right: 24px;
    cursor: pointer;
}

.insertPanel__inner .insertPanel__content .close:after{
    font-family: 'Font Awesome 5 Pro';
    content: '\f00d';
    color: var(--colors-brand);
    font-size: 28px;
}

.insertPanel__inner .insertPanel__content h1{
    color: var(--colors-brand);
    font-size: var(--body-large);
    margin-bottom: 1.2rem;
}

.insertPanel__inner .insertPanel__content .description{
    color: var(--colors-black);
    font-size: var(--body-small);
}

.insertPanel__inner .insertPanel__content .description p{
    margin-bottom: 2.4rem;
}

#pbr .insertPanel__inner .insertPanel__content .thumbnails,
#emissive .insertPanel__inner .insertPanel__content .thumbnails,
#glass .insertPanel__inner .insertPanel__content .thumbnails,
#sunAndTime .insertPanel__inner .insertPanel__content .thumbnails {
    color: var(--colors-white);
    font-weight: bold;
}

#pbr .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide,
#emissive .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide,
#glass .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide,
#sunAndTime .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide {
    cursor: pointer;
    height: 170px;
    border-radius: 8px;
    position: relative;
}

#pbr .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide span,
#emissive .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide span,
#glass .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide span,
#sunAndTime .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide span {
    position: absolute;
    bottom: 8px;
    left: 8px;
}
/* 
#glass .insertPanel__inner .insertPanel__content .thumbnails .swiper-slide span {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    padding: 8px;
    display: flex;
    align-items: end;
    border-radius: 8px;
} */

.swiper-button-next, .swiper-button-prev {
    color: var(--colors-white)!important;
}


.halfCols {
    padding-left: var(--grid-gutter);
    padding-right: var(--grid-gutter);
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.halfCols h1 {
    font-size: clamp(30px, calc(30px + ((1vw - 3.75px) * 1.6181229773)), 48px);
  margin-bottom: 24px;
  line-height: 1.4;
    color: var(--colors-brand);
}

.halfCols p {
    color: var(--colors-brand);
    margin-bottom: 1em;
    font-size: var(--body-large);
}

.halfCols__inner {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.halfCols__inner .halfCols__column {
    width: 50%;
}

.halfCols__inner .halfCols__column figure video {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.halfCols__inner .halfCols__column figure figcaption {
    margin-top: 8px;
    color: var(--colors-brand);
}

@media only screen and (max-width:768px) {
    .halfCols__inner {
        flex-direction: column;
    }
    .halfCols__inner .halfCols__column {
        width: 100%;
    }
}



.note {
    margin-top: var(--section-spacing);
}

.note h1 {
    line-height: 1.5;
}

.note .note__inner {
    max-width: 1200px;
    margin: auto;
    background-color: #f3f3f3;
    padding: 1em 2em;
    color: var(--colors-brand);
    border-radius: 4px;
}

.note .note__inner ul {
    margin-top: 0.5em;
}

.note .note__inner ul li {
    list-style: disc;
    margin-left: 1em;
}

.note .note__inner ul li a {
    text-decoration: underline;
}
@media only screen and (max-width:1280px) {
    .note .note__inner {
        max-width: calc(100% - var(--grid-gutter) * 2);
    }
}
@media only screen and (max-width:768px) {
    .note .note__inner {
        padding: 1em 1.5em;
    }
}



.faqList {
    color: var(--colors-brand);
}






.pdList {
    border-bottom: 1px solid var(--colors-brand-sub);
}

.pdList .pdTxt {
    display: none;
}
.pdList .pdTxt p {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.pdList .pdTitle {
    color: var(--colors-brand);
    font-weight: bold;
    cursor: pointer;
    border-top: 1px solid var(--colors-brand-sub);
    padding: 16px 0;
    display: flex;
    font-size: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.pdList .pdTitle:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f107';
}

.pdList .pdTitle.open:after {
    font-family: 'Font Awesome 5 Pro';
    content: '\f106';
}

@media only screen and (max-width:1280px) {
    .pdList {
        margin-bottom: 40px;
    }
}



.column2__inner .column2__txt .nav {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.column2__inner .column2__txt .nav a {
    border-radius:4px;
    display: block;
    padding: 8px 24px;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
    transition: color var(--mouseover-transition), border-color var(--mouseover-transition), background-color var(--mouseover-transition);
    border: 1px solid var(--colors-brand);
    color: var(--colors-brand);
}

.bgBrand .column2__inner .column2__txt .nav a {
    color: var(--colors-brand-sub);
    border: 1px solid var(--colors-brand-sub);
}

.column2__inner .column2__txt .nav .brd {
    background-color: var(--colors-brand);
    color: #fff;
}

.compatibilityLogo__inner p {
    max-width: 1200px;
    margin: auto;
}


@media only screen and (max-width:768px) {
    .column2__inner .column2__img iframe {
        height: 300px;
    }
    
    .compatibilityLogo__inner p {
        font-size: var(--body-standard);
    }
}



.discoverMore {
    padding: 0 var(--grid-gutter);
}

.discoverMore h1 {
    color: var(--colors-brand);
  font-size: clamp(30px, calc(30px + ((1vw - 3.75px) * 1.6181229773)), 48px);
  margin-bottom: 24px;
  line-height: 1.4;
}

.discoverMore__column {
    display: flex;
    gap: var(--grid-gutter);
}

.discoverMore__column a {
    width: 33.33333%;
        color: var(--colors-brand);

}

.discoverMore__column a:hover {
        color: #5086c7;
}

.discoverMore__column a img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.discoverMore__column a time {
    display: block;
    margin: 16px 0 0;
    font-size: var(--body-small);
}

.discoverMore__column a h2 {
    line-height: 1.5;
    font-size: var(--body-large);
}

@media only screen and (max-width: 768px) {
    .discoverMore__column {
        flex-direction: column;
    }
    .discoverMore__column a {
        width: 100%;
    }
}























.column3 {
    padding: 0 var(--grid-gutter);
}

.column3 h1 {
    color: var(--colors-brand);
  font-size: clamp(30px, calc(30px + ((1vw - 3.75px) * 1.6181229773)), 48px);
  margin-bottom: 24px;
  line-height: 1.4;
}

.column3 h1 + p {
    margin-bottom: 1em;
}

.column3__column {
    display: flex;
    gap: var(--grid-gutter);
}

.column3__column a {
    width: 33.33333%;
        color: var(--colors-brand);

}

.column3__column a:hover {
        color: #5086c7;
}

.column3__column a img,
.column3__column a video {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.column3__column a p {
    display: block;
    font-size: var(--body-small);
}

.column3__column a h2 {
    margin: 16px 0 8px;
    line-height: 1.5;
    font-size: var(--body-large);
}

@media only screen and (max-width: 768px) {
    .column3__column {
        flex-direction: column;
    }
    .column3__column a {
        width: 100%;
    }
}
