@font-face {
    font-family: 'DIN';
    src: url("../fonts/D-DIN-Bold.woff") format("woff");
    font-weight: 700;
}

@font-face {
    font-family: 'DIN';
    src: url("../fonts/D-DIN.woff") format("woff");
    font-weight: 400;
}

/*------------------------------------------

	common

------------------------------------------*/
.top main {
    margin-bottom: 0;
}

@media print,
screen and (max-width: 1024px) and (min-width: 768px) {
    .top main {
        width: 1024px;
        margin: auto;
    }
}

/*------------------------------------------

	content

------------------------------------------*/
@-webkit-keyframes down-btn-anim {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    50.0% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
        opacity: 0;
    }

    50.1% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes down-btn-anim {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    50.0% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
        opacity: 0;
    }

    50.1% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@media print,
screen and (min-width: 768px) {
    body {
        min-width: 1024px;
    }
}

main {
    position: relative;
    z-index: 5;
}

/* loader */
#loader {
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    -o-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #FFF;
    top: 0;
    left: 0;
    z-index: 99999;
    visibility: visible;
    opacity: 1;
}

#loader>span {
    -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    -o-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
    background-image: url(../images/loader-logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30vw;
    max-width: 120px;
    height: 124px;
    background-position: 50%;
    display: block;
    position: absolute;
    top: -10px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: loaderAnime 0.5s ease-in-out;
    animation: loaderAnime 0.5s ease-in-out;
}

@-webkit-keyframes loaderAnime {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loaderAnime {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#loader.loadComplete,
#loader.loadComplete>span {
    visibility: hidden;
    opacity: 0;
}

.delighter {
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
}

.delighter.started {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

/*mainvisual*/
.js-mainvisual-front,
.js-mainvisual-slider {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 5s ease;
    transition: opacity 5s ease;
}

.js-mainvisual-front.slick-initialized,
.js-mainvisual-slider.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.mainvisual{
    overflow: hidden;
}

@media print,
screen and (min-width: 768px) {
    .mainvisual {
        position: relative;
        z-index: 1;
        min-width: 1024px;
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .mainvisual {
        width: 1024px;
    }
}

@media only screen and (max-width: 767px) {
    .mainvisual {
        width: 100%;
    }
}

.mainvisual-inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
}

@media print,
screen and (min-width: 768px) {
    .mainvisual-inner {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .mainvisual-inner {
        width: auto;
        height: 100%;
    }
}

@media only screen and (max-width: 414px) {
    .mainvisual-inner {
        height: calc(100vh - 70px);
    }
}

.show-pc {
    display: block;
}

.show-sp {
    display: none;
}

.firstview {
    position: relative;
    height: 100vh;
}

.firstview-inner,
.Grp {
    position: absolute;
}

.firstview-inner {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 8;
}

@media print,
screen and (min-width: 768px) {
    .firstview-inner {
        left: 10.2489vw;
        width: 25vw;
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .firstview-inner {
        left: 90px;
        width: 60vw;
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .firstview-inner {
        top: 45vh;
        width: 100vw;
        padding: 0 20px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 414px) {
    .firstview-inner {
        bottom: -45vw;
        width: 100vw;
        padding: 0 15px;
    }
}

.ftitem-en .slantmask-part .def,
.ftitem-en>.def,
.ftitem-ja {
    opacity: 0;
    height: 25vh;
}

.ftitem-en {
    position: relative;
    font-size: 5.625vw;
    line-height: 1.12;
    margin-left: -.1875vw;
    letter-spacing: 0;
    line-height: 1;
}

.ftitem-en .slantmask {
    position: absolute;
    bottom: 0;
    left: 0;
}

.ftitem-en .slantmask-part {
    position: relative;
}

.ftitem-en .slantmask-part .def {
    font-weight: 600;
    font-style: normal;
}

.ftitem-en .slantmask-part .over {
    position: absolute;
    left: 0;
    width: 0;
    top: .04em;
    height: .83em;
}

.ftitem-ja {
    position: relative;
    font-size: 1.5vw;
    letter-spacing: .35em;
    line-height: 2;
    margin-top: 2vw;
}

.ftitem[data-category=firstview] {
    color: #ffffff;
}

.ftitem[data-category=firstview] .ftitem-en .slantmask-part .over {
    background-color: #ffffff;
}

.ftitem-en-firstview {
    font-size: 5vw;
	color: #eb7f00;
}

.ftitem-en-firstview small{
	font-size: 5vmin;
	font-weight: 400;
	color: white;
}

@media print,
screen and (min-width: 1367px) {
    .ftitem-en-firstview {
        font-size: 72px;
    }
}

@media print,
screen and (min-width: 1680px) {
    .ftitem-en-firstview {
        font-size: 3.5vw;
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .ftitem-en-firstview {
        font-size: 84px;
    }
}

@media print,
screen and (max-height: 720px) and (min-width: 1024px) {
    .ftitem-en-firstview {
        font-size: 16vmin;
    }
}

@media print,
screen and (max-height: 720px) and (min-width: 1023px) {
    .ftitem-en-firstview {
        font-size: 12vmin;
    }
}

@media only screen and (max-width: 767px) {
    .ftitem-en-firstview {
        font-size: 15vmin;
    }
}

.ftitem-ja-firstview {
    font-size: 12px;
    margin-top: 4vh;
}

@media print,
screen and (min-width: 1367px) {
    .ftitem-ja-firstview {
        font-size: 16px;
		letter-spacing: 0;
		line-height: 30px;
		font-weight: 400;
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .ftitem-ja-firstview {
        font-size: 15px;
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .ftitem-ja-firstview {
        font-size: 2.2vw;
        margin-top: 0;
    }
}

@media only screen and (max-width: 414px) {
    .ftitem-ja-firstview {
        font-size: 2vw;
        letter-spacing: .35em;
        margin-top: 1vw;
    }
}

.firstview-btn {
    position: relative;
    display: block;
    bottom: -6vh;
    letter-spacing: 0;
}

@media print,
screen and (min-width: 768px) {
    .firstview-btn {
        font-size: 16px;
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .firstview-btn {
        bottom: -5vmin;
    }
}

@media only screen and (max-width: 414px) {
    .firstview-btn {
        bottom: -5vmin;
    }
}

.firstview-btn a {
    position: relative;
    display: inline-block;
    line-height: 48px;
	background-color: #f08200;
	text-align: center;
	border-radius: 5px;
}

@media print,
screen and (min-width: 768px) {
    .firstview-btn a {
        width: 140px;
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .firstview-btn a {
        width: 20vw;
    }
}

@media only screen and (max-width: 414px) {
    .firstview-btn a {
        width: 36vw;
    }
}

/* .firstview-btn a:before {
    position: absolute;
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    bottom: 0;
    background-color: #ffffff;
    opacity: 0.3;
    z-index: 1;
} */

@media only screen and (max-width: 767px) {
    .firstview-btn a:before {
        height: 2px;
    }
}

/* .firstview-btn a:after {
    position: absolute;
    content: '';
    display: block;
    height: 2px;
    bottom: 0;
    z-index: 2;
    background: #a2d827;
} */

@media print,
screen and (min-width: 768px) {
    .firstview-btn a:after {
        width: 60px;
        -webkit-transition: width 0.4s cubic-bezier(0.075, 0.82, 0.165, 1), background-color 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: width 0.4s cubic-bezier(0.075, 0.82, 0.165, 1), background-color 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
}

@media only screen and (max-width: 767px) {
    .firstview-btn a:after {
        width: 12.5vw;
        height: 2px;
    }
}

@media print,
screen and (min-width: 768px) {
    .firstview-btn a:hover:after {
        width: 100%;
        background: #a2d827;
    }
}

.firstview-btn a svg {
    position: absolute;
    right: 0;
}

@media print,
screen and (min-width: 768px) {
    .firstview-btn a svg {
        width: 12px;
        height: 12px;
        top: calc(50% - 21px);
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .firstview-btn a svg {
        width: 9px;
        height: 10px;
        top: calc(50% - 10px);
    }
}

@media only screen and (max-width: 414px) {
    .firstview-btn a svg {
        width: 9px;
        height: 10px;
        top: calc(50% - 15px);
    }
}

.firstview-btn a svg polyline {
    fill: none;
    stroke: #fff;
}

.firstview-logo {
    position: absolute;
    width: 17.78916vw;
    bottom: -17vmin;
}

@media print,
screen and (min-width: 1025px) {
    .firstview-logo {
        width: 243px;
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .firstview-logo {
        width: 182px;
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .firstview-logo {
        width: 150px;
        bottom: -15vh;
    }
}

@media only screen and (max-width: 414px) {
    .firstview-logo {
        width: 150px;
        bottom: -20vmin;
    }
}

@media only screen and (max-height: 700px) {
    .firstview-logo {
        width: 160px;
    }
}

.firstview-logo img {
    width: 100%;
}

.mainvisual-home {
    position: relative;
    width: 65.6446559%;
    height: 100vh;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: matrix(1, 0, -0.42, 1, 0, 0);
    transform: matrix(1, 0, -0.42, 1, 0, 0);
    z-index: 5;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media print,
screen and (min-width: 1680px) {
    .mainvisual-home {
        width: 52vw;
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .mainvisual-home {
        max-width: 672px;
    }
}

@media only screen and (max-width: 414px) {
    .mainvisual-home {
        width: 90%;
    }
}

.mainvisual-home::before {
    content: '';
    position: absolute;
    display: block;
    background: -webkit-linear-gradient(top, #eff3f6 90%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, #eff3f6), to(#ffffff));
    background: linear-gradient(to bottom, #eff3f6 90%, #ffffff 100%);
    width: 100%;
    height: 100%;
    right: 0;
}

@media print,
screen and (min-width: 768px) {
    .mainvisual-home::before {
        top: calc(100% - 70px);
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .mainvisual-home::before {
        top: calc(100% - 22.5px);
    }
}

@media only screen and (max-width: 414px) {
    .mainvisual-home::before {
        top: calc(100% - 102.5px);
    }
}

.mainvisual-home-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .mainvisual-home-inner {
        width: 672px;
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .mainvisual-home-inner {
        width: 65.6446559vw;
        height: calc(100vh - 22.5px);
    }
}

@media only screen and (max-width: 414px) {
    .mainvisual-home-inner {
        width: 90vw;
        height: calc(100vh - 102.5px);
    }
}

.mainvisual-home-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/mainvisual-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: matrix(1, 0, 0.42, 1, 0, 0);
    transform: matrix(1, 0, 0.42, 1, 0, 0);
}

.mainvisual-slider {
    -webkit-transform: matrix(1, 0, -0.42, 1, 0, 0);
    transform: matrix(1, 0, -0.42, 1, 0, 0);
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 767px) {
    .mainvisual-slider {
        width: 95vw;
        -webkit-transform: matrix(1, 0, -0.42, 1, 0, 0);
        transform: matrix(1, 0, -0.42, 1, 0, 0);
    }
}

.mainvisual-slider-inner {
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

@media print,
screen and (min-width: 768px) {
    .slider {
        min-width: 1024px;
        margin: auto;
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .slider {
        width: 672px;
    }
}

@media only screen and (min-width: 415px) and (max-width: 767px) {
    .slider {
        height: calc(100vh - 22.5px);
    }
}

@media only screen and (max-width: 414px) {
    .slider {
        height: calc(100vh - 102.5px);
    }
}

@media print,
screen and (min-height: 813px) {
    .slider.spOnly .sp-image {
        display: none;
    }

    .slider.spOnly .pc-image {
        display: block !important;
    }
}

@media print,
screen and (max-height: 812px) {
    .slider.spOnly .pc-image {
        display: none;
    }

    .slider.spOnly .sp-image {
        display: block !important;
    }
}

.slider-inner {
    width: 100vw;
    height: 100vh;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .slider-inner {
        width: 100%;
    }
}

.slider-inner li {
    position: relative;
    width: 40vw;
    margin: auto;
    overflow: hidden;
    outline: none;
}

@media only screen and (max-width: 767px) {
    .slider-inner li {
        width: 100%;
    }

    .slider-inner li::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        background-image: -moz-linear-gradient(-45deg, rgba(11, 11, 33, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
        background-image: -webkit-linear-gradient(-45deg, rgba(11, 11, 33, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
        background-image: -ms-linear-gradient(-45deg, rgba(11, 11, 33, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    }
}

.slider-inner img {
    position: absolute;
    height: auto;
    top: 0;
    left: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover';
}

@media print,
screen and (min-width: 768px) {
    .slider-inner img {
        width: 200%;
        height: 100vh;
        -webkit-transform: matrix(1, 0, 0.42, 1, 0, 0) translateX(-50%);
        transform: matrix(1, 0, 0.42, 1, 0, 0) translateX(-50%);
    }
}

@media print,
screen and (min-width: 1024px) and (max-width: 1366px) {
    .slider-inner img {
        max-width: 1024px !important;
    }
}

@media only screen and (max-width: 767px) {
    .slider-inner img {
        height: auto;
        top: 50%;
        left: 50%;
        -webkit-transform: matrix(1, 0, 0.42, 1, 0, 0) translate(-50%, -50%);
        transform: matrix(1, 0, 0.42, 1, 0, 0) translate(-50%, -50%);
        z-index: 1;
    }
}

.js-mainvisual-front,
.js-mainvisual-slider {
    bottom: 0;
    width: 40vw;
    margin: auto;
    overflow: hidden;
    float: left;
    height: 100vh;
    min-height: 1px;
}

@media print,
screen and (min-width: 768px) {

    .js-mainvisual-front,
    .js-mainvisual-slider {
        -webkit-transform: translateY(-70px);
        transform: translateY(-70px);
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1366px) {

    .js-mainvisual-front,
    .js-mainvisual-slider {
        width: 520px !important;
    }
}

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

    .js-mainvisual-front,
    .js-mainvisual-slider {
        width: 100%;
        left: -5vw;
    }
}

.js-mainvisual-front {
    position: absolute;
    z-index: 5;
}

@media print,
screen and (min-width: 768px) and (max-width: 1024px) {
    .js-mainvisual-front {
        width: 535px !important;
        left: -15px;
    }
}

.js-mainvisual-slider {
    position: relative;
    overflow: visible;
    z-index: 1;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .js-mainvisual-slider {
        display: none;
    }
}

.js-mainvisual-slider li {
    position: relative;
}

.js-mainvisual-slider li::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.4;
}

.js-mainvisual-slider::before {
    content: '';
    position: absolute;
    display: block;
    background: -webkit-linear-gradient(top, #ffffff 0, #eff3f6 50%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(50%, #eff3f6), to(#ffffff));
    background: linear-gradient(to bottom, #ffffff 0, #eff3f6 50%, #ffffff 100%);
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 40vw;
}

@media print,
screen and (min-width: 768px) and (max-width: 1366px) {
    .js-mainvisual-slider::before {
        left: 520px;
    }
}

.mainvisual .slick-list {
    height: 100vh;
}

.mainvisual .slick-track {
    height: 100vh;
}

@media print,
screen and (min-width: 768px) {
    .sp-mainvisual-scroll {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .sp-mainvisual-scroll {
        position: absolute;
        right: 0;
        width: 50vw;
        height: 45px;
        z-index: 9;
        overflow: hidden;
    }
}

@media only screen and (max-width: 767px) {
    .sp-mainvisual-scroll .scroll-text {
        position: relative;
        display: inline-block;
        bottom: inherit;
        left: -18px;
        -webkit-transform: matrix(1, 0, 0.42, 1, 0, 0);
        transform: matrix(1, 0, 0.42, 1, 0, 0);
        -webkit-animation: none !important;
        animation: none !important;
    }
}

.sp-mainvisual-scroll .scroll-text span {
    -webkit-transform: none;
    transform: none;
}

@media print,
screen and (min-width: 1680px) {
    .sp-mainvisual-scroll .scroll-text svg {
        display: inline-block;
    }
}

@media print,
screen and (min-width: 1024px) and (max-height: 800px) {
    .sp-mainvisual-scroll .scroll-text svg {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .sp-mainvisual-scroll .scroll-text svg {
        position: absolute;
        top: 50%;
        right: -35px;
        -webkit-transform: translateY(-50%) rotate(90deg);
        transform: translateY(-50%) rotate(90deg);
    }
}

.mainvisual-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #eb7f00;
    color: #ffffff;
    font-family: 'DIN';
    letter-spacing: 0.08em;
    z-index: 2;
    -webkit-animation: opa 3s cubic-bezier(0, 0.12, 0.32, 1.28);
    animation: opa 3s cubic-bezier(0, 0.12, 0.32, 1.28);
}

@media print,
screen and (min-width: 768px) {
    .mainvisual-scroll {
        position: absolute;
        bottom: 135px;
        left: 0;
        height: 65px;
        bottom: 70px;
        z-index: 5;
        text-align: left;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .mainvisual-scroll {
        display: block;
        height: 100%;
        -webkit-transform: matrix(1, 0, -0.42, 1, 0, 0);
        transform: matrix(1, 0, -0.42, 1, 0, 0);
        position: relative;
        right: -10px;
    }
}

.mainvisual-scroll-inner {
    text-align: center;
    width: 100%;
}

.mainvisual-scroll span {
    display: block;
}

@media print,
screen and (min-width: 768px) {
    .mainvisual-scroll span {
        line-height: 65px;
        left: 70px;
        -webkit-transform: matrix(1, 0, 0.42, 1, 0, 0);
        transform: matrix(1, 0, 0.42, 1, 0, 0);
    }
}

@media only screen and (max-width: 767px) {
    .mainvisual-scroll span {
        line-height: 45px;
        left: 50%;
        -webkit-transform: translateX(-50%) matrix(1, 0, 0.42, 1, 0, 0);
        transform: translateX(-50%) matrix(1, 0, 0.42, 1, 0, 0);
    }
}

.mainvisual-scroll span svg {
    position: relative;
    top: 4px;
    width: 36px;
    height: 18px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mainvisual-scroll span svg polyline {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2px;
}

.mainvisual-scroll-inner {
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .mainvisual-scroll-inner {
        width: 100%;
    }
}

.scroll-text {
    position: absolute;
    display: inline-block;
    cursor: default;
    bottom: 70px;
    z-index: 5;
    color: #fff;
    pointer-events: none;
    -webkit-animation: opa 3s cubic-bezier(0, 0.12, 0.32, 1.28);
    animation: opa 3s cubic-bezier(0, 0.12, 0.32, 1.28);
}

@media print,
screen and (min-width: 768px) {
    .scroll-text {
        line-height: 65px;
        right: 20px;
    }
}

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

.scroll-text svg {
    position: relative;
    top: 4px;
    width: 36px;
    height: 18px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.scroll-text svg polyline {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2px;
}

@media print,
screen and (min-width: 1024px) and (max-height: 800px) {
    .scroll-text span {
        display: none;
    }
}

@media print,
screen and (min-width: 1680px) {
    .scroll-text span {
        display: inline-block;
    }
}

/*solution*/
.solution {
    counter-reset: num;
    position: relative;
    z-index: 1;
}

@media print,
screen and (min-width: 768px) {
    .solution {
        padding-top: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .solution {
        padding-top: 70px;
    }
}

.solution .container {
    padding: 0;
}

@media print,
screen and (min-width: 1025px) {
    .solution .container {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .solution-titlearea {
        padding: 0 15px;
    }
}

.solution-title {
    position: relative;
    text-align: center;
}

@media print,
screen and (min-width: 768px) {
    .solution-title {
        margin-bottom: 75px;
    }
}

@media only screen and (max-width: 767px) {
    .solution-title {
        margin-bottom: 20px;
    }
}

.solution-title h1,
.solution-title h2 {
    font-family: "Verdana-Regular";
    line-height: 1;
    letter-spacing: 0;
}

@media print,
screen and (min-width: 768px) {
    .solution-title h1,
    .solution-title h2 {
        font-size: 48px;
		font-weight: bold;
        padding-top: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .solution-title h1,
    .solution-title h2 {
        font-size: 46px;
        padding-top: 30px;
    }
}

/*.solution-title h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    top: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    background-color: #eb7f00;
}*/

.solution-title span {
    display: block;
    line-height: 36px;
	/*font-family: "Verdana-Regular";*/
}
h1.wangruis {
    Display: inline;
    font-size: 18px;
}

@media print,
screen and (min-width: 768px) {
    .solution-title span {
        font-size: 18px;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .solution-title span {
        font-size: 14px;
        margin-top: 15px;
    }
    h1.wangruis {
    font-size: 14px;
    }
}

.solution-logo {
    margin: auto;
}

@media print,
screen and (min-width: 768px) {
    .solution-logo {
        width: 440px;
    }
}

@media only screen and (max-width: 767px) {
    .solution-logo {
        width: 89.65517%;
        min-width: 260px;
    }
}

.solution-logo img {
    width: 100%;
}

.solution-contants {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media print,
screen and (min-width: 768px) {
    .solution-contants {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transform: translateY(0) translateZ(0);
        transform: translateY(0) translateZ(0);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        margin-top: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .solution-contants {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 50px;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-contants:nth-child(2n) .solution-img {
        margin: auto;
        margin-right: 0;
        margin-left: 20vw;
        width: 80vw;
        max-width: 1600px;
        left: 0;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-contants:nth-child(2n) .solution-item {
        left: 0;
        margin-right: 0;
        margin-left: 9%;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-contants+.solution-inner {
        margin-top: 110px;
    }
}

@media only screen and (max-width: 767px) {
    .solution-contants+.solution-inner {
        margin-top: 10px;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-contants:nth-child(n+2) {
        margin-top: 110px;
    }
}

.solution-img {
    position: relative;
}

@media print,
screen and (min-width: 1200px) {
    .solution-img {
        width: 80vw;
        max-width: 1600px;
        min-width: 1024px;
        margin: auto;
        left: 0;
        margin-right: 20vw;
    }
}

@media print,
screen and (min-width: 768px) and (max-width: 1199px) {
    .solution-img {
        width: 80vw;
        max-width: 1600px;
        min-width: 1024px;
        margin: auto;
        left: 0;
        margin-left: -20vw;
    }
}

@media only screen and (max-width: 767px) {
    .solution-img {
        width: 100%;
    }
}

.solution-img img {
    width: 100%;
}

.solution-item {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 106px rgba(0, 0, 0, 0.13);
    box-shadow: 0px 0px 106px rgba(0, 0, 0, 0.13);
}

@media print,
screen and (min-width: 768px) {
    .solution-item {
        position: absolute;
        width: 38.7262%;
        top: 50%;
        -webkit-transform: translateY(calc(-50% + 15px)) !important;
        transform: translateY(calc(-50% + 15px)) !important;
        right: 0;
        margin-right: 9%;
    }
}

@media only screen and (max-width: 767px) {
    .solution-item {
        width: calc(100% - 30px);
        margin: auto;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        margin-top: -80px;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-item.delighter.started {
        -webkit-transform: translateY(-50%) !important;
        transform: translateY(-50%) !important;
    }
}

.solution-item-link {
    position: relative;
    display: block;
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link {
        padding: 75px 26.8431% 80px 14.17769%;
        -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
}

@media only screen and (max-width: 767px) {
    .solution-item-link {
        padding: 40px 40px 60px 40px;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link:hover {
        background: #132b4c;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link:hover .solution-item-link-title {
        color: #ffffff;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link:hover .solution-item-link-text {
        color: #ffffff;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link:hover svg polyline {
        fill: none;
        stroke: #ffffff;
    }
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        right: 14.17769%;
        background-color: #e8e8e8;
        opacity: 0.2;
    }
}

.solution-item-link-title {
    /*font-family: 'Verdana-Regular';*/
    line-height: 1.6;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .solution-item-link-title {
        font-size: 35px;
    }
}

.solution-item-link-text {
    letter-spacing: 0;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link-text {
        font-size: 15px;
        line-height: 32px;
    }
}

.solution-item-link svg {
    position: absolute;
}

@media print,
screen and (min-width: 768px) {
    .solution-item-link svg {
        width: 12px;
        height: 12px;
        right: 6.23818%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media only screen and (max-width: 767px) {
    .solution-item-link svg {
        width: 9px;
        height: 10px;
        right: 15px;
        bottom: 15px;
    }
}

.solution-item-link svg polyline {
    fill: none;
    stroke: #142c4b;
}

/*case*/
.case {
    overflow: hidden;
}

@media print,
screen and (min-width: 768px) {
    .case {
        padding-top: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .case {
        padding-top: 80px;
    }
}

@media print,
screen and (min-width: 1025px) {
    .case .container {
        max-width: 100%;
        padding: 0;
    }
}

@media print,
screen and (max-width: 1024px) and (min-width: 768px) {
    .case .container {
        padding: 0;
    }
}

.case-title {
    position: relative;
    text-align: center;
}

@media print,
screen and (min-width: 768px) {
    .case-title {
        margin-bottom: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .case-title {
        margin-bottom: 30px;
    }
}

.case-title h2 {
    color: #142c4d;
    font-family: 'DIN';
    line-height: 1;
    letter-spacing: 0;
}

@media print,
screen and (min-width: 768px) {
    .case-title h2 {
        font-size: 80px;
        padding-top: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .case-title h2 {
        font-size: 46px;
        padding-top: 30px;
    }
}

.case-title h2::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    top: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    background-color: #a2d827;
}

.case-title span {
    display: block;
    color: #a1abb7;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media print,
screen and (min-width: 768px) {
    .case-title span {
        font-size: 18px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .case-title span {
        font-size: 14px;
        margin-top: 10px;
    }
}

.case-bg {
    position: relative;
    background-color: #eef2f5;
}

@media print,
screen and (min-width: 768px) {
    .case-bg {
        padding: 85px 0 130px;
        margin: 0 50px;
    }
}

@media only screen and (max-width: 767px) {
    .case-bg {
        padding: 45px 0 65px;
    }
}

.case-logo {
    margin: auto;
}

@media print,
screen and (min-width: 768px) {
    .case-logo {
        width: 266px;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .case-logo {
        width: 57.70491%;
        min-width: 176px;
        margin-bottom: 20px;
    }
}

.case-logo img {
    width: 100%;
    height: auto;
}

.case-text {
    letter-spacing: 0;
}

@media print,
screen and (min-width: 768px) {
    .case-text {
        font-size: 15px;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .case-text {
        padding: 0 25px;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner {
        padding: 0 25px;
    }
}

.case-inner .case-slider {
    margin: auto;
    position: relative;
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider {
        overflow: visible !important;
        padding-bottom: 105px;
        margin-top: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider {
        padding-bottom: 65px;
        margin-top: 30px;
    }
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider-inner {
        margin-right: 60px;
        -webkit-box-shadow: 0px 0px 106px rgba(0, 0, 0, 0.13);
        box-shadow: 0px 0px 106px rgba(0, 0, 0, 0.13);
        -webkit-transition: -webkit-transform 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1);
        transition: -webkit-transform 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s 0s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider-inner {
        max-width: calc(100vw - 70px);
        margin-right: 10px;
    }
}

.case-inner .case-slider-inner:hover {
    -webkit-transform: translateY(-0.35rem);
    transform: translateY(-0.35rem);
}

.case-inner .case-slider a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    outline: none;
    overflow: visible !important;
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider a {
        max-width: 690px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider a {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.case-inner .case-slider a .case-slider-img {
    position: relative;
    overflow: hidden;
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider a .case-slider-img {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider a .case-slider-img {
        width: 100%;
        min-width: 240px;
        height: 170px;
        padding: 34% 0;
    }
}

.case-inner .case-slider a .case-slider-img img {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider a .case-slider-img img {
        position: absolute;
        height: auto;
        left: 50%;
        top: 60%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.case-inner .case-slider a .case-slider-img::after {
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
}

.case-inner .case-slider a .case-slider-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffffff;
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider a .case-slider-item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 50%;
        max-width: 345px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider a .case-slider-item {
        width: 100%;
        padding: 25px 20px 25px 30px;
    }
}

.case-inner .case-slider a .case-slider-item-number {
    color: #b8bac3;
    font-family: 'DIN';
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider a .case-slider-item-number {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider a .case-slider-item-number {
        margin-bottom: 5px;
    }
}

.case-inner .case-slider a .case-slider-item-title {
    color: #142c4b;
    font-weight: bold;
    line-height: 1.6;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider a .case-slider-item-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider a .case-slider-item-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

.case-inner .case-slider a .case-slider-item-text {
    color: #777;
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider a .case-slider-item-text {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider a .case-slider-item-text {
        font-size: 12px;
    }
}

.case-inner .case-slider .slick-dots {
    text-align: center;
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider .slick-dots {
        bottom: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .case-inner .case-slider .slick-dots {
        bottom: 25px;
    }
}

.case-inner .case-slider .slick-dots li {
    width: 22px;
    height: 22px;
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider .slick-dots li {
        margin: 0 11px;
    }
}

.case-inner .case-slider .slick-dots li button {
    width: 22px;
    height: 22px;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.case-inner .case-slider .slick-dots li button::before {
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    background-color: #142c4b;
    border-radius: 50%;
    z-index: 2;
}

.case-inner .case-slider .slick-dots li button::after {
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media print,
screen and (min-width: 768px) {
    .case-inner .case-slider .slick-dots li button:hover::after {
        font-family: 'slick';
        line-height: 20px;
        position: absolute;
        top: calc(50% - 11px);
        left: calc(50% - 11px);
        width: 22px;
        height: 22px;
        content: '';
        text-align: center;
        border: 1px solid #092c4d;
        border-radius: 50%;
        z-index: 1;
    }
}

.case-inner .case-slider .slick-dots li.slick-active button::after {
    font-family: 'slick';
    line-height: 20px;
    position: absolute;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
    width: 22px;
    height: 22px;
    content: '';
    text-align: center;
    border: 1px solid #142c4b;
    border-radius: 50%;
    z-index: 1;
}

/*topics*/
@media print,
screen and (min-width: 768px) {
    .topics {
        padding: 110px 0;
    }
}

@media only screen and (max-width: 767px) {
    .topics {
        padding: 60px 0;
    }
}

@media only screen and (min-width: 1025px) {
    .topics .container {
        max-width: 1200px;
        padding: 0 40px;
    }
}

@media print,
screen and (min-width: 768px) {
    .topics-container {
        width: 100%;
    }
}

.topics-inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media print,
screen and (min-width: 768px) {
    .topics-inner {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 767px) {
    .topics-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.topics-title {
    line-height: 1;
}

@media print,
screen and (min-width: 768px) {
    .topics-title {
        margin-right: 128px;
    }
}

@media only screen and (max-width: 767px) {
    .topics-title {
        margin-bottom: 40px;
    }
}

.topics-title h2 {
    color: #142c4d;
    font-family: 'DIN';
    letter-spacing: 0.02em;
}

@media print,
screen and (min-width: 768px) {
    .topics-title h2 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .topics-title h2 {
        font-size: 39px;
    }
}

.topics-title span {
    display: block;
    color: #a1abb7;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-top: 10px;
}

@media print,
screen and (min-width: 768px) {
    .topics-title span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .topics-title span {
        font-size: 14px;
    }
}

.topics-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media print,
screen and (min-width: 768px) {
    .topics-list li {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .topics-list li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.topics-list li+li {
    margin-top: 20px;
}

.topics-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .topics-date {
        margin-bottom: 10px;
    }
}

.topics-time {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #777;
    letter-spacing: 0.05em;
}

@media print,
screen and (min-width: 768px) {
    .topics-time {
        width: 100px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .topics-time {
        font-size: 14px;
        margin-right: 10px;
    }
}

.topics-tag {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #142c4b;
    color: #142c4b;
    cursor: default;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media print,
screen and (min-width: 768px) {
    .topics-tag {
        width: 105px;
        font-size: 12px;
        height: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .topics-tag {
        width: 90px;
        font-size: 11px;
        height: 20px;
    }
}

@media print,
screen and (min-width: 768px) {
    .topics-content {
        margin-left: 20px;
        font-size: 15px;
    }

    .topics-content a {
        -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
}

@media print,
screen and (min-width: 768px) and (min-width: 768px) {
    .topics-content a:hover {
        color: #0e7fe8;
    }
}

.topics-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media print,
screen and (min-width: 768px) {
    .topics-link {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .topics-link {
        margin-top: 40px;
    }
}

.topics-link a {
    font-weight: bold;
    color: #777777;
    line-height: 1;
    padding-bottom: 2px;
    border-bottom: 1px solid #777777;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media print,
screen and (min-width: 768px) {
    .topics-link a:hover {
        color: #222222;
        border-bottom: 1px solid transparent;
    }
}

/*contact*/
.contact {
    background-color: #003e8f;
}

.contact-inner {
    width: 100%;
    margin: auto;
}

@media print,
screen and (min-width: 768px) {
    .contact-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.contact-inner-item {
    color: #fff;
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item {
        width: 50%;
    }
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-tel {
        height: 100%;
        background: url(../images/contact-bg.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        padding: 110px 0 100px;
    }
    
}

@media only screen and (max-width: 767px) {
    .contact-inner-item.is-tel {
        background: url(../images/contact-bg-sp.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        padding: 80px 20px 90px;
        text-align: center;
    }
}

.contact-inner-item.is-tel .contact-textarea {
    margin: auto;
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-tel .contact-textarea {
        max-width: 560px;
        padding: 0 40px;
    }
}

.contact-inner-item.is-tel .contact-title {
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-tel .contact-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-inner-item.is-tel .contact-title {
        font-size: 19px;
        margin-bottom: 15px;
    }
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-tel .contact-text {
        font-size: 15px;
        margin-bottom: 40px;
        line-height: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-inner-item.is-tel .contact-text {
        margin-bottom: 30px;
        letter-spacing: 0.04em;
    }
}

.contact-inner-item.is-tel .contact-tel {
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1;
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-tel .contact-tel {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-inner-item.is-tel .contact-tel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 19px;
        width: 250px;
        height: 50px;
        margin: 0 auto 15px;
        color: #fff;
        font-weight: bold;
        line-height: 1.3;
        -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        border: 2px solid #fff;
        cursor: pointer;
    }
}

@media only screen and (max-width: 767px) {
    .contact-inner-item.is-tel .contact-tel a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 250px;
        height: 50px;
    }
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-tel .contact-tel svg {
        width: 25px;
        height: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-inner-item.is-tel .contact-tel svg {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
}

.contact-inner-item.is-tel .contact-tel svg path {
    fill: #ffffff;
}

@media only screen and (max-width: 767px) {
    .contact-inner-item.is-tel .contact-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 250px;
        height: 50px;
        margin: auto;
        color: #fff;
        font-weight: bold;
        line-height: 1.3;
        -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
        border: 2px solid #fff;
        cursor: pointer;
    }

    .contact-inner-item.is-tel .contact-button a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 250px;
        height: 50px;
    }
}


@media only screen and (max-width: 767px) {
    .contact-inner-item.is-form {
       /* display: none; */
    }

    .contact-inner-item.is-form{
        padding: 80px 20px 90px;
    }

    .contact-inner-item.is-form form{
        padding: 0;
    }
}

.contact-inner-item.is-form .contact-link {
    display: block;
    height: 100%;
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-form .contact-link {
        padding-top: 130px;
    }
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-form .contact-link:hover .contact-button {
        border: none;
        color: #003e8f;
        background-color: #fff;
    }
}

.contact-inner-item.is-form .contact-textarea {
    margin: auto;
    line-height: 1.3;
}

@media print,
screen and (min-width: 768px) {
    .contact-inner-item.is-form .contact-textarea {
        max-width: 560px;
        padding: 0 40px;
    }
}


@media all and (-ms-high-contrast: none) {

    *::-ms-backdrop,
    :root .topics-tag span {
        top: 2px;
        position: relative;
    }
}





section.product{
	padding: 100px 0;
}
.product-inner{
	font-size: 0;
	max-width: 1730px;
	padding-left: 15px;
	margin-left: auto;
	display: flex;
	align-items: center;
}
.product-inner img{
	max-width: 100%;
}
.product-inner .left{
	width: 25%;
	display: inline-block;
	vertical-align: middle;
}

.product-inner .right{
	width: 75%;
	display: inline-block;
	vertical-align: middle;
	padding: 0 80px;
}
.product-inner .tab ul{
    font-size: 0;
}
.product-inner .tab ul li{
    width: 33.33%;
	font-size: 24px;
	font-weight: 600;
	display: inline-block;
	/*margin: 0 60px;*/
	position: relative;
	line-height: 30px;
    margin-bottom: 20px;
    text-align: center;
}
/*.product-inner .tab ul li.active::before{
	content: "";
	position: absolute;
	width: 71px;
	height: 6px;
	background-color: #eb7f00;
	left: 0;
	bottom: 2px;
	z-index: -1;
}*/
.product-inner .list{
	position: relative;
	margin-top: 25px;
}
.product-inner .list > span{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px;
	cursor: pointer;
}
.product-inner .list > span.left-btn{
	left: -40px;
}
.product-inner .list > span.right-btn{
	right: -40px;
}
.product-inner .list h3.tit{
	font-size: 20px;
	/*font-family: 'Verdana-Regular';*/
	font-weight: bold;
    line-height: 34px;
    margin-bottom: 10px;
}
.product-inner .list .txt{
	font-size: 18px;
    height: 230px;
    line-height: 32px;
}
.product-inner .list .content{
	padding: 20px 40px;
}
.product-inner .list ul{
	overflow: hidden;
	border: 1px solid #d6d6d6;
	border-radius: 10px;
}

.product-inner .list ul li{
	border-right: 1px solid #d6d6d6;
    border-left: 1px solid #d6d6d6;
}

.product-title {
    position: relative;
}

.product-title h2 {
    /*font-family: "Verdana-Regular";*/
    line-height: 1;
    letter-spacing: 0;
}

@media print,
screen and (min-width: 768px) {
    .product-title h2 {
        font-size: 48px;
		font-weight: bold;
        padding-top: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .product-title h2 {
        font-size: 46px;
        padding-top: 30px;
    }
}

/*.product-title h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    top: 0;
    left: 0;
    background-color: #eb7f00;
}*/

.product-title span {
    display: block;
    line-height: 32px;
	/*font-family: "Verdana-Regular";*/
}

@media print,
screen and (min-width: 768px) {
    .product-title span {
        font-size: 18px;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .product-title span {
        font-size: 14px;
        margin-top: 15px;
    }
}



.honor-title {
    position: relative;
	text-align: center;
}

.honor-title h2 {
    /*font-family: "Verdana-Regular";*/
    line-height: 1;
    letter-spacing: 0;
}

@media print,
screen and (min-width: 768px) {
    .honor-title h2 {
        font-size: 48px;
		font-weight: bold;
        padding-top: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .honor-title h2 {
        font-size: 46px;
        padding-top: 30px;
    }
}

/*.honor-title h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    top: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    background-color: #eb7f00;
}*/

.honor-title span {
    display: block;
    line-height: 32px;
	/*font-family: "Verdana-Regular";*/
}

@media print,
screen and (min-width: 768px) {
    .honor-title span {
        font-size: 18px;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .honor-title span {
        font-size: 14px;
        margin-top: 15px;
    }
}

.honor{
	background-color: #eef2f5;
	padding: 60px 0 90px;
}
.honor img{
	max-width: 100%;
}
.honor-inner{
	padding: 0 110px;
	margin-top: 50px;
}
.honor-inner ul{
	overflow: hidden;
	margin: 0 -15px;
}
.honor-inner ul li{
	padding: 15px;
}
.honor-inner .img{
	border-radius: 10px;
	padding: 5px;
	background-color: white;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,.3);
}

.contact-inner-item.is-form form{
	padding-top: 50px;
}
.contact-inner-item.is-form input{
	width: 100%;
	background-color: transparent;
	border: none;
	border-bottom: 2px solid white;
	padding: 15px 10px;
	outline: unset;
}
.contact-inner-item.is-form input:not(:last-child){
	margin-bottom: 5px;
}
.contact-inner-item.is-form button{
	font-size: 18px;
    color: black;
	background-color: white;
	text-transform: uppercase;
	line-height: 50px;
	padding: 0 20px;
	border-radius: 5px;
	margin-top: 45px;
}



@media screen and (max-width:1400px) {
	.product-inner .list .txt{
		font-size: 14px;
        height: 130px;
	}
	
	.product-inner .list .content{
		padding: 20px;
	}
	#header .nav .ui.menu{
		padding: 0 15px;
	}
	#header .nav .ui.menu .menu-box ul.menu > li{
		font-size: 16px;
		margin: 0 20px;
	}
	
	.product-inner .tab ul li{
		font-size: 18px;
		margin: 0 30px;
	}
	
	.product-inner .list h3.tit{
		font-size: 18px;
	}
}

@media screen and (max-width:1200px) {
	#header .nav .ui.menu .search input[type="text"]{
		width: 150px;
	}
	
	#header .nav .ui.menu .logo img{
		max-width: 100%;
	}
	#header .nav .ui.menu .logo{
		width: 100px;
	}
	
	#header .nav .ui.menu .menu-box ul.menu > li{
		font-size: 14px;
		margin: 0 15px;
	}
	.language-box{
		font-size: 14px;
	}
}

@media screen and (max-width:1024px) {
	.product-inner .list > span{
		display: none;
	}
	.product-inner .right{
		padding: 0;
	}
	
	.product-inner{
		display: block;
	}
	.product-inner .left{
		width: 100%;
		text-align: center;
	}
	.product-title h2::after{
		left: 50%;
		transform: translateX(-50%);
	}
	.product-inner .right{
		width: 100%;
		margin-top: 50px;
	}
	
	/*.footer-menu{
		display: none;
	}*/
	/*.footer-menu.foot-contact{
		display: block;
		max-width: 45%;
	}
	
	.footer-logo{
		max-width: 45%;
	}*/
	
	.honor-inner{
		padding: 0;
	}
	
	.product-inner{
		padding-left: 0;
	}
}

@media screen and (max-width:767px) {
	.honor{
		display: none;
	}
	.product-title span{
		display: none;
	}
	
	.product-inner .tab ul li{
		padding: 10px 20px;
		margin: 0;
	}
}