/*******************

header-top

********************/

.header-top {
    background: url(../images/top/ref-top-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 816px;    
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    padding: 24px 72px 0 32px;
}

.header-top-box {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.header-top-thumb {
    object-fit: contain;
    height: 32px;
    width: 220px;
}

.header-top-box p {
    font-weight: 600;
}

.header-top-thumb img {
    display: block;
    height: 100%;
    width: 100%;
}

.header-top-link {
    column-gap: 40px;
    display: flex;
    position: fixed;
    right: 32px;
    z-index: 2;
}

.header-top-link a {
    background: #0087CD;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    color: #ffffff;
    display: flex;
    font-size: 16px;
    position: relative;
    padding: 13px 0;
    letter-spacing: .04em;
    justify-content: center;
    height: 22px;
    width: 160px;
}

.header-top-link a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    border: 24px solid transparent;
    border-left: 16px solid #0087CD;
}

.header-top-link a.orange {
    background: #0087CD;
    width: 220px;
}

.header-top-link a.orange::after {
    border-left: 16px solid #0087CD;
}

/*******************

thanks

********************/

.footer-box {
    padding-top: 120px;
}

.footer-box {
    align-items: center;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.footer-box h3 {
    text-align: center;
    font-family: "Zen Kurenaido", sans-serif;    
    -webkit-text-stroke: 0.5px #333;
    font-size: 32px;
}

.footer-box a.thanksBtn {
    display: flex;
    justify-content: center;
    border: 1px solid #333333;
    padding: 16px 0;
    font-weight: 600;
    transition: .2s;
    width: 280px;
}

.footer-box a.thanksBtn:hover {
    background: #333333;
    color: #ffffff;
}

@media screen and (max-width: 880px) {
    .header-top-link {
        display: none;
    }
    .header-top-inner {
        padding: 3.2vw;
    }
    .header-top-thumb {
        height: 6vw;
        width: 38vw;
    }
    .header-top-box p {
        font-size: 3.2vw;
    }  
    .footer-box h3 {
        font-size: 5.8vw;
    }  
}