/*============================
 reset
============================*/

a:hover, a:active {
    opacity: 1;
}

/*============================
 assets
============================*/

.column-Outer {
    margin-bottom: 80px;
    position: relative;
}

.column-Outer::before {
    content: "";
    display: block;
    height: 1px;
    background-color: #333333;
    position: absolute;
    z-index: 1;
}

.column-Ttl {
    font-size: 38px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.column-Ttl span {
    display: block;
    color: #fd9b3c;
    font-size: 17px;
    padding-top: 30px;
}

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

    .column-Ttl {
        font-size: 34px;
    }

    .column-Ttl span {
        font-size: 16px;
    }

}

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

    .column-Outer {
        margin-bottom: 60px;
    }

    .column-Ttl {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .column-Ttl span {
        padding-top: 30px;
    }

}

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

    .column-Ttl {
        font-size: 30px;
    }

    .column-Ttl span {
        font-size: 14px;
    }

}


/*============================
 hero-Standard
============================*/

.hero-Standard .outer {
    padding-bottom: 60px;
    position: relative;
}

.hero-Standard .outer::after {
    content: "";
    width: 23vw;
    height: 100%;
    background-image: url(../img/toppage/hero_standard_mask.png);
    background-size: cover;
    background-position: left;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.hero-Standard .mainimage-Slider {
    width: 85vw;
}

.hero-Standard .below1023 {
    display: none;
}

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

    .hero-Standard .outer::after {
        width: 38vw;
        background-image: url(../img/toppage/hero_standard_mask_sp.png);
    }

    .hero-Standard .over1024 {
        display: none;
    }


    .hero-Standard .below1023 {
        display: block;
    }

}


/*============================
 tp-Products
============================*/

.tp-Products {
    padding-top: 40px;
    margin-bottom: 160px;
}

.tp-Products .column-Outer .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tp-Products .column-Outer::before {
    width: 50%;
    bottom: 40px;
}

.tp-Products .column-Ttl {
    width: 50%;
}

.tp-Products .txt {
    width: 50%;
    color: #333333;
    font-size: 16px;
    line-height: 2;
    letter-spacing: -0.5px;
    padding-left: 40px;
    box-sizing: border-box;
}

.tp-Products .p-List {
    background-image: url(../img/toppage/tp_products_bg.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
}

.tp-Products .p-List::before {
    content: "";
    display: block;
    width: 100%;
    height: 230px;
    background-image: url(../img/toppage/white_triangle_mask.png);
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.tp-Products .p-List::after {
    content: "";
    display: block;
    width: 100%;
    height: 230px;
    background-image: url(../img/toppage/wo_triangle_mask.png);
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.tp-Products .outer {
    position: relative;
}

.tp-Products .outer::before {
    content: "";
    display: block;
    width: 20vw;
    height: 100%;
    background-image: url(../img/toppage/orange_triangle_mask.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.tp-Products .list-Col {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
    position: relative;
    z-index: 3;
}

.tp-Products .list-Col .list-Item {
    width: calc(100% / 2 - 20px);
    border: 1px solid #d1d1d1;
    margin-right: 40px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.tp-Products .list-Col .list-Item:nth-child(2n) {
    margin-right: 0;
}

.tp-Products .list-Col .list-Item .txt-Box {
    background-image: url(../img/toppage/product_ttl_bg.jpg);
    background-size: cover;
    background-position: center center;
    padding: 30px 0;
}

.tp-Products .list-Col .list-Item a {
    display: block;
}

.tp-Products .list-Col .list-Item figure {
    font-size: 0;
    overflow: hidden;
}

.tp-Products .list-Col .list-Item figure img {
    transition: .6s all;
}

.tp-Products .list-Col .list-Item a:hover figure img {
    transform: scale(1.1);
}

.tp-Products .list-Col .list-Item h3 {
    color: #333333;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.tp-Products .list-Col .list-Item .more-Btn {
    display: block;
    max-width: 180px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: #097396;
    border: 1px solid #097396;
    border-radius: 40px;
    padding: 10px 0;
    margin: 0 auto;
    transition: .6s all;
    position: relative;
}

.tp-Products .list-Col .list-Item a:hover .more-Btn {
    color: #097396;
    background-color: #ffffff;
}

.tp-Products .list-Col .list-Item .more-Btn::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    transform: rotate(45deg);
    margin: auto;
    z-index: 1;
    transition: .6s all;
}

.tp-Products .list-Col .list-Item a:hover .more-Btn::after {
    border-top: 2px solid #097396;
    border-right: 2px solid #097396;
}

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

    .tp-Products .p-List::before {
        height: 200px;
    }

    .tp-Products .p-List::after {
        height: 200px;
    }
    
    .tp-Products .outer::before {
        width: 25vw;
    }

}

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

    .tp-Products .txt {
        width: 50%;
        color: #333333;
        font-size: 15px;
        line-height: 2;
        letter-spacing: -0.9px;
        padding-left: 30px;
        box-sizing: border-box;
    }

}

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

    .tp-Products {
        margin-bottom: 120px;
    }

    .tp-Products .column-Outer::before {
        width: calc(100% - 20px);
        top: 44px;
        bottom: auto;
    }

    .tp-Products .column-Outer .wrapper {
        display: block;
    }

    .tp-Products .column-Ttl {
        width: 100%;
    }

    .tp-Products .txt {
        width: 100%;
        font-size: 16px;
        line-height: 2;
        letter-spacing: normal;
        padding: 0 20px;
    }

    .tp-Products .p-List::before {
        height: 170px;
    }

    .tp-Products .p-List::after {
        height: 170px;
    }

    .tp-Products .outer::before {
        width: 50vw
    }

    .tp-Products .p-List::before {
        height: 120px;
    }

    .tp-Products .p-List::after {
        height: 120px;
    }

    .tp-Products .list-Col {
        padding: 0 20px;
    }

    .tp-Products .list-Col .list-Item {
        width: calc(100% / 2 - 10px);
        margin-right: 20px;
        margin-bottom: 30px;
    }

    .tp-Products .list-Col .list-Item h3 {
        font-size: 22px;
    }

}

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

    .tp-Products {
        margin-bottom: 80px;
    }

    .tp-Products .txt {
        padding: 0;
    }

    .tp-Products .list-Col {
        padding: 0;
    }

    .tp-Products .list-Col .list-Item {
        width: 100%;
        margin-right: 0;
    }

}


/*============================
 tp-News
============================*/

.tp-News {
    padding-bottom: 220px;
    position: relative;
}

.tp-News::after {
    content: "";
    display: block;
    width: 100%;
    height: 160px;
    background-image: url(../img/toppage/orange_triangle_mask02.png);
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.tp-News .column-Outer::before {
    width: 50%;
    bottom: 33px;
}

.tp-News .column-Outer .wrapper {
    position: relative;
}

.tp-News .more-Btn {
    max-width: 140px;
    width: 100%;
}

.tp-News .column-Outer .more-Btn {
    position: absolute;
    top: 3px;
    left: 210px;
    z-index: 2;
}

.tp-News .more-Btn a {
    display: block;
    color: #517c9d;
    font-size: 14px;
    text-align: center;
    border: 1px solid #517c9d;
    border-radius: 20px;
    padding: 7px 0;
    transition: .6s all;
    position: relative;
}

.tp-News .more-Btn a:hover {
    color: #ffffff;
    background-color: #517c9d;
}

.tp-News .more-Btn a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 2px solid #517c9d;
    border-right: 2px solid #517c9d;
    position: absolute;
    top: 11px;
    right: 10px;
    transform: rotate(45deg);
    transition: .6s all;
    z-index: 1;
}

.tp-News .more-Btn a:hover::after {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.tp-News .column-Ttl {
    position: relative;
}

.tp-News .column-Ttl::after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background-color: #333333;
    position: absolute;
    right: 0;
    bottom: 33px;
    z-index: 1;
}

.tp-News .news-List {
    position: relative;
    z-index: 2;
}

.tp-News .news-List ul {
    padding: 0 30px;
}

.tp-News .news-List ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tp-News .news-List ul li + li {
    margin-top: 30px;
}

.tp-News .news-List ul li time {
    display: block;
    width: 120px;
    color: #484848;
    font-size: 16px;
}

.tp-News .news-List ul li .cat-Label {
    display: block;
    width: 90px;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background: transparent;
    border: 1px solid #333333;
    padding: 3px 0;
    margin-right: 20px;
}

.tp-News .news-List ul li .product.cat-Label {
    color: #ef6f1a;
    border: 1px solid #ef6f1a;
}

.tp-News .news-List ul li .info.cat-Label {
    color: #575757;
    border: 1px solid #575757;
}

.tp-News .news-List ul li .event.cat-Label {
    color: #4b9a80;
    border: 1px solid #4b9a80;
}

.tp-News .news-List ul li b {
    display: block;
    width: calc(100% - 230px);
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tp-News .news-List ul li a:hover {
    color: #b4b4b4;
    text-decoration: underline;
}

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

    .tp-News {
        padding-bottom: 190px;
    }

    .tp-News::after {
        height: 140px;
    }

}

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

    .tp-News {
        padding-bottom: 160px;
    }

    .tp-News::after {
        height: 120px;
    }

    .tp-News .column-Outer::before {
        width: calc(100% - 20px);
        bottom: 33px;
    }

    .tp-News .column-Ttl::after {
        content: none;
    }

    .tp-News .column-Outer .more-Btn {
        left: 170px;
    }

    .tp-News .news-List ul {
        padding: 0 20px;
    }

    .tp-News .news-List ul li b {
        width: 100%;
        padding: 0 20px;
        margin-top: 20px;
        box-sizing: border-box;
    }

    .tp-News .news-List ul li time {
        width: 100px;
        font-size: 14px;
    }

}

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

    .tp-News {
        padding-bottom: 120px;
    }

    .tp-News::after {
        height: 80px;
    }

    .tp-News .news-List ul {
        padding: 0;
    }

    .tp-News .news-List ul li b {
        padding: 0 10px;
    }

    .tp-News .more-Btn.sp-Only {
        margin-top: 40px;
        margin-left: auto;
    }


}