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

.st-Header .tel-Col dd a,
.st-Contact .btn-Col .tel-Btn dd a,
.st-Footer .tel-Btn {
    pointer-events: auto;
    cursor: pointer;
}

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

.hero-Standard .bg-Image {
    width: 100%;
    height: 40vh;
    max-height: 370px;
    background-size: cover;
    background-position: center center;
}

.hero-Standard .outer {
    position: relative;
}

.hero-Standard .outer::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 40%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-Standard .outer::after {
    content: "";
    display: block;
    width: 226px;
    height: 230px;
    background-image: url("../img/common/orange_triangle_mask.png");
    background-size: cover;
    background-position: top right;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-Standard .page-Ttl {
    max-width: 620px;
    width: 100%;
    color: #ffffff;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px #333333;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    padding: 40px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

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

    .hero-Standard .page-Ttl {
        max-width: 540px;
        font-size: 30px;
    }

}

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

    .hero-Standard .outer::after {
        width: 177px;
        height: 180px;
    }

}

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

    .hero-Standard .outer::after {
        width: 138px;
        height: 140px;
    }

    .hero-Standard .page-Ttl {
        font-size: 28px;
        padding: 30px 0;
    }

}

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

    .hero-Standard .outer::after {
        width: 89px;
        height: 90px;
    }

    .hero-Standard .bg-Image {
        height: 30vh;
        max-height: 200px;
        background-size: cover;
        background-position: center center;
    }

    .hero-Standard .page-Ttl {
        max-width: calc(100% - 70px);
        font-size: 24px;
        padding: 25px 0;
    }

}

/*============================
 main-Contents
============================*/

.main-Contents {
    padding-top: 120px;
}

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

    .main-Contents {
        padding-top: 100px;
    }

}

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

    .main-Contents {
        padding-top: 80px;
    }

}

/*============================
 contents
============================*/

.ps-r {
    padding-top: 40px;
}

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

    .ps-r {
        padding-top: 20px;
    }

}

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

    .ps-r {
        padding-top: 0;
    }

}

/*============================
 st-Contact
============================*/

.st-Contact {
    margin-top: 120px;
} 

