/*---------------------------------------------------------------------------*/
.main-visual {
    position: relative;
    overflow: hidden;
    /*&:before { position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 100%; background: rgba(84,51,0,.2); z-index: 1; }*/
}

.main-visual:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(110, 185, 233, 0.58);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    transition: left 0.3s linear, -webkit-transform 0.3s ease 0.1s;
    -webkit-transition: left 0.3s linear, -webkit-transform 0.3s ease 0.1s;
    -moz-transition: left 0.3s linear, transform 0.3s ease 0.1s, -moz-transform 0.3s ease 0.1s;
    transition: left 0.3s linear, transform 0.3s ease 0.1s;
    transition: left 0.3s linear, transform 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s, -moz-transform 0.3s ease 0.1s;
}

.main-visual.active:after {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-animation: transX 1s cubic-bezier(0.78, 0.07, 0, 1) normal;
    -moz-animation: transX 1s cubic-bezier(0.78, 0.07, 0, 1) normal;
    animation: transX 1s cubic-bezier(0.78, 0.07, 0, 1) normal;
}

.main-visual.active .top_main {
    opacity: 1;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main-visual .slick-counter {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 6%;
    bottom: 4rem;
    z-index: 4;
}

.main-visual .slick-counter span {
    display: inline-block;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.main-visual .slick-counter span.current {
    color: #fff;
    /*&:after { position: absolute; content: '<'; left: 0; top: 0; width: 0; height: 0; color: #fff; }*/
}

.main-visual .slick-counter span.total {
    color: #fff;
    /*&:after { position: absolute; content: '>'; right: 0; top: 0; width: 0; height: 0; color: #fff; }*/
}

.main-visual .slider-progress {
    width: 3.5rem;
    height: 0.1rem;
    background: #fff;
    position: relative;
    overflow: hidden;
    margin: 0 1.5rem;
}

.main-visual .slider-progress .progress {
    position: absolute;
    width: 0%;
    height: 0.1rem;
    background: #000;
}

.main-visual .slider-item {
    /*&.slick-active { img { transform: scale(1.3); } }*/
}

.main-visual .slider-item img {
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    transition: all 2s ease;
    opacity: 0;
}

.main-visual .slider-item.slick-active img {
    opacity: 1;
    -webkit-animation-name: anime;
    -moz-animation-name: anime;
    animation-name: anime;
    -webkit-animation-duration: 6s;
    -moz-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

.main-visual .slick-prev,
.main-visual .slick-next {
    cursor: pointer;
    top: auto;
    bottom: 3.1rem;
    z-index: 2;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.main-visual .slick-prev {
    right: -webkit-calc(10% + 4rem);
    right: -moz-calc(10% + 4rem);
    right: calc(10% + 4rem);
}

.main-visual .slick-prev:after {
    position: absolute;
    content: '<';
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 400;
}

.main-visual .slick-next {
    right: 4%;
}

.main-visual .slick-next:after {
    position: absolute;
    content: '>';
    right: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 400;
}

/*.main-slider {
	position: relative;
	&:after {
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background: rgba(255,255,255,.25);
	}
}*/
@-webkit-keyframes anime {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    10% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    /*50% { transform: scale(1); opacity: 0; }*/
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    95% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
}

@-moz-keyframes anime {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    10% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    /*50% { transform: scale(1); opacity: 0; }*/
    50% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    95% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
}

@keyframes anime {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    10% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    /*50% { transform: scale(1); opacity: 0; }*/
    50% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    95% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
}

.mv-ctn {
    position: absolute;
    left: 4%;
    bottom: 4rem;
    z-index: 3;
}

.mv-desc {
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
}

.mv-desc span {
    display: inline-block;
    font-size: 2.4rem;
    background: #c00;
    padding: 0 1rem;
}

.mv-ttl {
    display: inline-block;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    transition: all .4s ease-in;
    background: #fff;
    color: #c00;
    font-size: 4rem;
    font-weight: 500;
    padding: 1rem 2rem;
    line-height: 1.3;
}

.mv-ttl.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 2s;
    -moz-transition-delay: 2s;
    transition-delay: 2s;
}

.mv-btn {
    text-align: center;
    margin-top: 3rem;
}

.mv-btn a {
    display: inline-block;
    position: relative;
}

.mv-btn a img {
    width: 21.8rem;
}

.mv-btn a span {
    display: inline-block;
    position: relative;
    padding-right: 4rem;
}

.mv-btn a span:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    margin-top: -0.6rem;
    width: 2.8rem;
    height: 1.1rem;
    background: url(../img/air-icon.svg) left top no-repeat;
    -moz-background-size: cover;
    background-size: cover;
}

@media screen and (min-width: 769px) {
    .mv-btn a:after {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 21.8rem;
        height: 4.8rem;
        background: url(../img/top/mv-btn_hover.svg) left top no-repeat;
        -moz-background-size: cover;
        background-size: cover;
        opacity: 0;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        transition: all .4s ease;
    }

    .mv-btn a:hover {
        opacity: 1;
    }

    .mv-btn a:hover img {
        opacity: 0;
    }

    .mv-btn a:hover:after {
        opacity: 1;
    }

    /** section catalog **/
    .catalog-list{
        width: 100%;
    }
}

/** section catalog **/
.section-catalog {
    padding: 5rem 0 0;
}
.catalog-list {
    display: flex;
    width: 756px;
    margin: 0 auto 0;
}

.catalog-list li {
    width: 48%;
    margin: 0;
}

.catalog-list li:first-child {
    margin: 0 4rem 0 0;
}

.catalog-list li a {
    color: #CC0000;
    border: 1px solid #CC0000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-size: 1.6rem;
    padding: 1.4rem 2rem;;
    text-decoration: underline;
}

.catalog-list li a:hover {
    text-decoration: none;
}

.catalog-list li a img {
    width: 85px;
}

.catalog-list li a span {
    margin-left: 18px
}

/** section news **/
.section-news {
    padding: 5rem 0 8rem;
}

.section-news .news-title {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
}

.section-news .news-title h2 {
    font-size: 3.6rem;
    font-weight: 500;
}

.section-news .news-title a {
    display: inline-block;
    font-size: 1.8rem;
    position: relative;
    padding: 1rem 6.5rem 1rem 0;
}

.section-news .news-title a:after {
    position: absolute;
    content: '';
    width: 3.5rem;
    height: 3.5rem;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arr-rect.png) left top no-repeat;
    -moz-background-size: cover;
    background-size: cover;
}

/** section product **/
.section-product {
    padding: 8rem 0;
    position: relative;
}

.section-product .section-title span:after {
    width: 20.1rem;
    height: 3.1rem;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/top/products-ttl_pc.png) left bottom no-repeat;
    -moz-background-size: cover;
    background-size: cover;
}

.section-business .section-title span:after {
    width: 16.7rem;
    height: 2.6rem;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/top/business-ttl_pc.png) left bottom no-repeat;
    -moz-background-size: cover;
    background-size: cover;
}

.section-about .section-title span:after {
    width: 26.1rem;
    height: 3rem;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/top/about-ttl_pc.png) left bottom no-repeat;
    -moz-background-size: cover;
    background-size: cover;
}

.product-slider {
    width: 100%;
    max-width: 74rem;
    margin: 0 auto;
    overflow: visible !important;
}

.product-slider .slick-list {
    overflow: visible;
}

.product-slider_wrap {
    overflow: hidden;
    position: relative;
}

.product-slider_wrap--in {
    width: 100%;
    position: relative;
}

.product-slider_item {
    margin: 0 2rem;
    width: 32.8rem;
}

.product-slider_item--thumb {
    border: 1px solid #DCDCDC;
    width: 100%;
    height: 33rem;
    margin-bottom: 1rem;
    padding: 1rem;
}

.product-category {
    position: relative;
    margin: 8rem 0 0;
}

.product-category:before,
.product-category:after {
    position: absolute;
    content: '';
    left: 0;
    width: 3rem;
    height: 1px;
    background: #CC0000;
}

.product-category:before {
    top: 0;
}

.product-category:after {
    bottom: 0;
}

.product-category_inner {
    position: relative;
}

.product-category_inner:before,
.product-category_inner:after {
    position: absolute;
    content: '';
    right: 0;
    width: 3rem;
    height: 1px;
    background: #CC0000;
}

.product-category_inner:before {
    top: 0;
}

.product-category_inner:after {
    bottom: 0;
}

.product-category h3 {
    font-size: 2.4rem;
    font-weight: 500;
    position: absolute;
    top: -2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    padding: 0 1rem;
    z-index: 1;
}

.product-category ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 0 0 -2rem;
    position: relative;
    padding: 6rem 0 3rem;
}

.product-category ul:before,
.product-category ul:after {
    position: absolute;
    content: '';
    left: 2rem;
    width: -webkit-calc(100% - 2rem);
    width: -moz-calc(100% - 2rem);
    width: calc(100% - 2rem);
    height: 1px;
    background: rgba(204, 0, 0, 0.2);
}

.product-category ul:before {
    top: 0;
}

.product-category ul:after {
    bottom: 0;
}

.product-category ul li {
    width: -webkit-calc(100%/4 - 2rem);
    width: -moz-calc(100%/4 - 2rem);
    width: calc(100%/4 - 2rem);
    margin: 0 0 3rem 2rem;
}

.product-category ul li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/** section about **/
.section-about {
    padding: 8rem 0 0;
    position: relative;
}

.section-about picture {
    display: block;
    line-height: 0;
}

.section-about .lbl-hidden {
    opacity: 0.05;
    right: -3rem;
}

.about-inner {
    background: #fff;
    padding: 4rem 1.5rem 0;
    margin-top: -6rem;
    position: relative;
    max-width: 116rem;
}

.about-inner p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.7;
}

.about-inner ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 5rem 0 0 -4.5rem;
}

.about-inner ul li {
    width: -webkit-calc(100%/3 - 4.5rem);
    width: -moz-calc(100%/3 - 4.5rem);
    width: calc(100%/3 - 4.5rem);
    margin: 0 0 0 4.5rem;
}
@media screen and (max-width: 1024px) {
    /** section catalog **/
    .catalog-list{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    #wrapper {
        overflow-x: hidden;
    }

    .main-visual {
        overflow: visible;
    }

    .main-visual .slick-counter {
        right: 12vw;
        bottom: -6.66667vw;
    }

    .main-visual .slick-counter span {
        display: inline-block;
        font-size: 3.46667vw;
        font-weight: 400;
        line-height: 1;
    }

    .main-visual .slick-counter span.current {
        color: #000;
        padding-right: 2.66667vw;
        /*&:after { position: absolute; content: '<'; left: 0; top: 0; width: 0; height: 0; color: #000; }*/
    }

    .main-visual .slick-counter span.total {
        color: #000;
        padding-left: 4vw;
        /*&:after { position: absolute; content: '>'; right: 0; top: 0; width: 0; height: 0; color: #000; }*/
    }

    .main-visual .slider-progress {
        width: 3.5rem;
        height: 0.1rem;
        background: #fff;
        position: relative;
        overflow: hidden;
        margin: 0 1.5rem;
    }

    .main-visual .slider-progress .progress {
        position: absolute;
        width: 0%;
        height: 0.1rem;
        background: #000;
    }

    .main-visual .slick-prev,
    .main-visual .slick-next {
        cursor: pointer;
        top: auto;
        bottom: -10vw;
        z-index: 2;
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }

    .main-visual .slick-prev {
        right: 38.66667vw;
    }

    .main-visual .slick-prev:after {
        position: absolute;
        content: '<';
        left: 0;
        top: 0;
        width: 2rem;
        height: 2rem;
        color: #000;
        font-size: 4.8vw;
        font-weight: 400;
    }

    .main-visual .slick-next {
        right: 6.66667vw;
    }

    .main-visual .slick-next:after {
        position: absolute;
        content: '>';
        right: 0;
        top: 0;
        width: 2rem;
        height: 2rem;
        color: #000;
        font-size: 4.8vw;
        font-weight: 400;
    }

    .mv-desc {
        font-size: 4vw;
    }

    .mv-desc span {
        font-size: 4.26667vw;
    }

    .mv-ttl {
        font-size: 6.4vw;
        padding: 1.33333vw 2.66667vw;
    }

    .mv-ctn {
        left: 0;
    }

    /** section catalog **/
    .section-catalog {
        padding: 13vw 0 0;
    }
    .catalog-list {
        display: block;
        width: 100%;
    }

    .catalog-list li {
        width: auto;
        margin: 0;
    }

    .catalog-list li:first-child {
        margin: 0 0 10px 0;
    }

    .catalog-list li a {
        font-size: 1.2rem;
        padding: 1rem;;
    }

    .catalog-list li a img {
        width: 57px;
    }

    .catalog-list li a span {
        margin-left: 10px
    }

    /** section news **/
    .section-news {
        padding: 10vw 0 10.66667vw;
    }

    .section-news .news-title {
        margin-bottom: 6.66667vw;
    }

    .section-news .news-title h2 {
        font-size: 6.13333vw;
    }

    .section-news .news-title a {
        font-size: 3.73333vw;
        padding: 1.33333vw 12.53333vw 1.33333vw 0;
    }

    .section-news .news-title a:after {
        width: 8.53333vw;
        height: 8.53333vw;
    }

    /** section product **/
    .section-product {
        padding: 13.33333vw 0 10.66667vw;
    }

    .section-product .section-title span:after {
        width: 30.93333vw;
        height: 4.8vw;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        background: url(../img/top/products-ttl_sp.png) left bottom no-repeat;
        -moz-background-size: cover;
        background-size: cover;
    }

    .section-business .section-title span:after {
        width: 27.06667vw;
        height: 4vw;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        background: url(../img/top/business-ttl_sp.png) left bottom no-repeat;
        -moz-background-size: cover;
        background-size: cover;
    }

    .section-about .section-title span:after {
        width: 42.8vw;
        height: 4.93333vw;
        left: 50%;
        bottom: 0;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        background: url(../img/top/about-ttl_sp.png) left bottom no-repeat;
        -moz-background-size: cover;
        background-size: cover;
    }

    .product-slider_item {
        padding: 0 5.33333vw;
    }

    .product-slider_item--thumb {
        border: 1px solid #DCDCDC;
        width: 100%;
        height: auto;
        margin-bottom: 2.66667vw;
        padding: 2.66667vw;
    }

    .product-category {
        position: relative;
        margin: 21.33333vw 0 0;
    }

    .product-category:before,
    .product-category:after {
        width: 3.2vw;
    }

    .product-category_inner:before,
    .product-category_inner:after {
        width: 3.2vw;
    }

    .product-category h3 {
        font-size: 4.53333vw;
        top: -4vw;
        padding: 0 2.66667vw;
    }

    .product-category ul {
        margin: 0 0 0 -2.93333vw;
        padding: 11.6vw 0 7.6vw;
    }

    .product-category ul:before,
    .product-category ul:after {
        left: 2.93333vw;
        width: -webkit-calc(100% - 2.93333vw);
        width: -moz-calc(100% - 2.93333vw);
        width: calc(100% - 2.93333vw);
    }

    .product-category ul li {
        width: -webkit-calc(100%/2 - 2.93333vw);
        width: -moz-calc(100%/2 - 2.93333vw);
        width: calc(100%/2 - 2.93333vw);
        margin: 0 0 4vw 2.93333vw;
        min-height: 16vw;
    }

    .product-category ul li a {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 2vw 12vw 2vw 2.66667vw;
    }

    /** section about **/
    .section-about {
        padding: 13.33333vw 0 0;
    }

    .section-about .section-title {
        margin-bottom: 0;
    }

    .section-about .section-title span {
        padding-bottom: 2.66667vw;
    }

    .about-inner {
        background: #fff;
        padding: 5.33333vw 5.33333vw 0;
        margin: 0 6.66667vw;
        margin-top: -10.66667vw;
    }

    .about-inner p {
        text-align: center;
        font-size: 3.73333vw;
        line-height: 2.45;
    }

    .about-inner ul {
        display: block;
        margin: 10.66667vw -5.33333vw 0;
    }

    .about-inner ul li {
        width: 100%;
        margin: 0;
    }

    .about-inner ul li + li {
        margin-top: 4vw;
    }

    .about-inner ul li a {
        padding: 5.33333vw 12vw 5.33333vw 2.66667vw;
    }
}