@charset "UTF-8";

.footer_container {
    background-color: #e6e6e6;
}

@media screen and (min-width: 761px) {
.footer-wrap {
    display: block;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
}
}

@media screen and (max-width:760px){
.footer-wrap {
    display: block;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 0;
}
}

@media screen and (min-width: 761px) {
.footer-logo {
    width: 15vw;
    margin: 0 auto;
}
}

@media screen and (max-width:760px){
.footer-logo {
    width: 200px;
    margin: 0 auto;
}
}

@media screen and (min-width: 761px) {
.footer_txt {
    padding: 30px 0;
    font-size: 0.8vw;
    line-height: 1.4rem;
}
}

@media screen and (max-width:760px){
.footer_txt {
    padding: 30px 20px;
    font-size: 12px;
    line-height: 1.2rem;
}
}

@media screen and (min-width: 761px) {
.footer_link a {
    display: inline-block;
    background-color: #fff;
    border-radius: 5px;
    font-size: 0.8vw;
    font-weight: bold;
    color: #333;
    padding: 10px 0;
    width: 200px;
    margin: 5px;
}
}

@media screen and (max-width:760px){
.footer_link a {
    display: inline-block;
    background-color: #fff;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    padding: 10px 0;
    width: 150px;
    margin: 5px;
}
}

.footer_link a::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../images/link_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-left: 20px;
}

.footer_copy {
    text-align: center;
    font-size: 12px;
    padding-bottom: 10px;
}

@media screen and (min-width: 761px) {
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #1b1464;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
}

@media screen and (max-width:760px){
.pagetop {
    height: 42px;
    width: 42px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #1b1464;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}