.topTtl,
.footerTtl {
    font-size: calc(1em + 1vw);
    font-weight: 500;
}
.topTtl::before,
.footerTtl::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    display: inline-block;
    width: 5vw;
    height: 4px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #002a30;
}
.contactWrap{
    background-color: #000;
    text-align: center;
}
.contactWrap .container{
    padding-top: 80px;
    padding-bottom: 80px;
}
.contactWrap .footerTtl{
    color: #fff;
    font-size: calc(1em + 1vw);
    font-weight: 500;
}
.contactWrap .footerTtl::before {
    background-color: #007b8c;
}
.contactBox{
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
    padding-bottom: 50px;
}
.contactBox p{
    color: #fff;
    font-size: 60px;
}
.contactBox li{
    width: 45%;
}
.contactBox li a{
    display: block;
    width: 100%;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}
.contactBox li:first-child{
    background: linear-gradient(180deg, #9e4538 0%, #532820 100%);
}
.contactBox li:last-child{
    background: linear-gradient(180deg, #726d53 0%, #b6ae85 94%);
}
.contactWrap img{
    max-width: 490px;
}
footer{
    background: #002a30;
    color: #fff;
    padding: 59px 4.6% 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.footerInfo{
    font-size: .9rem;
    letter-spacing: .1em;
}
.footerInfo p{
    color: #fff;
}
.footerInfo .tel{
    width: 341px;
    margin: 5px 0 15px;
}
.footerInfo .min{
    font-size: 12px;
}
.footerInfo .min:last-child{
    padding-top: 20px;
}
.pageTopBtn {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    background-color: #fff;
    z-index: 9999;
    position: fixed;
    bottom: 140px;
    right: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.pageTopBtn a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.pageTopBtn .arrow {
    display: block;
    width: 10px;
    height: 10px;
    border: solid #002a30;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 2px;
}
.contactBox li a::before{
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
}
.contactBox li a:hover::before{
    animation: shine 0.7s;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
@media screen and (max-width: 1319px){
    .container{
        width: 90%;
    }
}
@media screen and (max-width: 768px){
    body{
        overflow-x: hidden;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    .contactWrap .footerTtl {
        font-size: 30px;
    }
    .topTtl {
        font-size: 30px;
    }
    .topTtl::before {
        width: calc(100vw - 90%);
        bottom: -10px;
    }
    .topTtl::before,
    .footerTtl::before {
        width: calc(100vw - 90%);
        bottom: -10px;
    }
    .contactBox{
        display: block;
    }
    .contactBox li {
        width: 100%;
    }
    .contactBox li:first-child {
        margin-bottom: 20px;
    }
    footer{
        display: block;
        padding: 59px 4.6% 124px;
    }
    .footerInfo{
        margin-bottom: 30px;
    }
    .pageTopBtn {
        bottom: 110px;
        right: 10px;
    }
}
@media screen and (max-width: 499px){
    .footerInfo .tel {
        width: 90%;
    }
}