@charset "utf-8";

/*---------------------------------
| footer
---------------------------------*/
footer {
    background-color: #f9f9f9;
}
footer .footer_copyright {
    background: #f9f9f9;
    line-height: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 1rem;
}
@media screen and (max-width:1024px) {
    footer::after {
        content: '';
        display: block;
        width: 100%;
        height: 70px;
    }
}
footer .inner {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
}
footer .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}
footer .logo a {
    position: relative;
    display: block;
    padding-right: 10px;
}
footer .logo img {
    height: 50px;
}
footer .logo a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    width: 1px;
    height: 46px;
    background-color: #333;
}
footer .logo .info {
    padding: 10px;
}
footer .logo .info .info_title {
    font-family: 'futura-pt';
    font-size: 1.2rem;
    font-weight: 700;
}
footer .logo .info .info_text {
    font-size: 1.2rem;
    font-weight: 500;
}
footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .icon {
    display: block;
    width: 37px;
    height: 37px;
    margin-right: 10px;
}
footer .btn {
    width: 270px;
    margin: 0 10px;
    font-size: 1.8rem;
    font-weight: 500;
}
.fixd_menu > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.fixd_menu > ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 2);
    height: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    background-color: #ff001a;
}
.fixd_menu > ul li::after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent #970008 transparent;
}
.fixd_menu > ul li:nth-child(2) {
    background-color: #c7000a;
}
.fixd_menu > ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}
.fixd_menu > ul li p {
    font-weight: 700;
    color: #fff;
}
.fixd_menu{
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
}
/*トップに戻るボタンここから
==================================*/
.pc p.gotop{
    position: fixed;right: 0;bottom: 0px;
}
.pc p.gotop a{
    padding: 0;
    display: block;
    background-color: #000000a3;
    position: relative;
    width: 70px;
    height: 70px;
}
.pc p.gotop a:before{
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 0px;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/*トップに戻るボタンここまで
==================================*/
