@charset "UTF-8";

/*------------------------

header

------------------------*/
.header .main-nav {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #1a1a1a;
}

.header .main-nav__list {
    width: 100%;
    display: flex;
    align-items: center;
}

.header .main-nav__list .logo {
    margin-left: 24px;
}

.header .main-nav__list .logo a {
    display: block;
    line-height: 0;
}

.header .main-nav__list .logo a img {
    width: calc(169px / 1.5);
    height: calc(29px / 1.5);
}

.header .main-nav__item {
    margin-left: 16px;
    line-height: 1;
}

.header .main-nav__link {
    padding: 16px;
    position: relative;
    display: block;
    font-weight: 600;
    color: #333;
    transition: transform .4s cubic-bezier(.6, 0, .3, 1) 25ms;
}

.header .main-nav__link:after {
    width: 100%;
    height: 3px;
    margin: 0 auto;
    content: "";
    opacity: 0;
    border-radius: 1px;
    background: linear-gradient(90deg, #f63 10%, #f99d24 40%, #f99d24 70%, #f63 90%);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform .4s cubic-bezier(.6, 0, .3, 1) 25ms, background-color .15s linear, opacity 0s linear .425s;
    transform: translate3d(0, 3px, 0) scaleX(0);
}

.header .main-nav__link:hover {
    transition: transform .65s cubic-bezier(.25, .9, .3, 1.15) 25ms;
    transform: translate3d(0, -3px, 0);
}

.header .main-nav__link:hover:after {
    opacity: 1;
    transition: transform .3s cubic-bezier(.25, .9, .3, 1.15), background-color .15s linear, opacity .15s linear;
    transform: translateZ(0) scaleX(1);
}

.signin__item {
    margin-left: auto;
}

.signin__btn {
    padding: 8px 32px 8px 56px;
    background: linear-gradient(90deg, #f63 10%, #f99d24 40%, #f99d24 70%, #f63 90%);
    background-size: 200% auto;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: .4s cubic-bezier(.6, 0, .3, 1) 25ms;
}

.signin__btn:before {
    width: 18px;
    height: 18px;
    margin: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M4 15h2v5h12V4H6v5H4V3a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-6zm6-4V8l5 4-5 4v-3H2v-2h8z' fill='rgba(255,255,255,1)'/%3E%3C/svg%3E");
    position: absolute;
    background-size: contain;
    top: 0;
    bottom: 1px;
    left: 32px;
}

.signin__btn:hover {
    background-position: right center;
}

/*------------------------

footer

------------------------*/
footer {
    padding: 80px 0;
    background-color: #1a1a1a;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

.footer {
    padding: 100px 0;
}

.footer .footer-top .main-nav {
    width: 100%;
}

.footer .footer-top .main-nav__list {
    border-top: 1px solid #3e3e3e;
    display: flex;
    align-items: center;
}

.footer .footer-top .main-nav__list .logo {
    margin-right: 80px;
    padding: 80px 64px 80px 0;
}

.footer .footer-top .main-nav__list .main-nav__link {
    width: 100%;
    padding: 0;
    padding: 80px 64px 80px 0;
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #bebebe;
}

.footer .footer-top .main-nav__list .main-nav__link::after {
    width: 0;
    height: 1px;
    margin: auto;
    content: "";
    background-color: #f63;
    position: absolute;
    top: -1px;
    left: 0;
    display: block;
    transition: all .2s cubic-bezier(.455, .03, .515, .955);
}

.footer .footer-top .main-nav__list .main-nav__link:hover {
    color: #fff;
}

.footer .footer-top .main-nav__list .main-nav__link:hover::after {
    width: 64px;
}

.footer .footer-middle .main-nav {
    width: 100%;
}

.footer .footer-middle .main-nav__list {
    display: flex;
    justify-content: flex-end;
}

.footer .footer-middle .main-nav__list .main-nav__item+.main-nav__item {
    margin-left: 32px;
}

.footer .footer-middle .main-nav__list .main-nav__link:hover {
    color: #fff;
}

.footer .footer-bottom {
    margin-top: 80px;
    align-items: flex-end;
    font-size: 14px;
    color: #595c65;
}

.copyrights {
    margin-left: auto;
    font-family: "Quicksand", "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 12px;
}