@charset "utf-8";

/*---------------------------------
| header
---------------------------------*/
header {
    position: fixed;
    width: 100%;
    height: 90px;
    background-color: #fff;
    display: flex;
    z-index: 999;
    justify-content: space-between;
    transition: all 0.8s;
    box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.06);
}
header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}
header .logo a {
    position: relative;
    display: block;
    padding-right: 10px;
}
header .logo img {
    height: 50px;
}
header .logo a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    width: 1px;
    height: 46px;
    background-color: #333;
}
header .logo .info {
    padding: 10px;
}
header .logo .info .info_title {
    font-family: 'futura-pt';
    font-size: 1.2rem;
    font-weight: 700;
}
header .logo .info .info_text {
    font-size: 1.2rem;
    font-weight: 500;
}
header > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 90px;
}
header > ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    background-color: #ff001a;
}
header > 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;
}
header > ul li:nth-child(2) {
    background-color: #c7000a;
}
header > ul li .title {
    font-weight: 700;
    color: #fff;
}
/*
| hamburger
-----------------*/
.header_menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}
button.drawer-hamburger {
    left: unset;
    right: 0;
    width: 90px;
    height: 90px;
    background-color: #fff;
}
button.drawer-hamburger .drawer-hamburger-icon::before,
button.drawer-hamburger .drawer-hamburger-icon::after,
button.drawer-hamburger .drawer-hamburger-icon {
    background-color: #333;
}
.drawer-open button.drawer-hamburger .drawer-hamburger-icon {
    background-color: #fff;
}
nav .drawer-menu .info {
    padding: 0;
    padding-left: 10;
    color: #fff;
}
nav .drawer-menu .info .info_title {
    font-weight: 700;
    color: #fff;
}
nav .drawer-menu .info .info_text {
    padding: 0;
    transform: none;
}
/*
| drawer
-----------------*/
.drawer--right .header_menu .drawer-nav {
    right: -60rem;
}
.header_menu nav.drawer-nav {
    background-color: #c7000a;
    background: #c7000a;
    width: 400px;
}
.drawer--right.drawer-open .header_menu .drawer-hamburger {
    right: 400px;
}
@media screen and (max-width:1024px) {
    header {
        width: 100%;
        height: 60px;
    }
    header > ul {
        margin-right: 60px;
    }
    header > ul li {
        width: 60px;
    }
    header > ul li .title {
        font-size: 1.2rem;
    }
    header .logo {
        height: 100%;
    }
    header .logo a {
        justify-content: center;
        align-items: center;
        width: auto;
        margin: 0;
    }
    header .logo a::after {
        height: 30px;
    }
    header .logo a svg {
        margin-left: 0;
    }
    header .logo a img {
        width: 150px;
        height: auto;
        margin-left: 0;
    }
    header .logo .info .info_title {
        font-size: 1.0rem;
        font-weight: 700;
    }
    header .logo .info .info_text {
        font-size: 1.0rem;
        transform: scale(0.8);
        transform-origin: left;
    }
    /*
    | header mail
    -----------------*/
    header .header_mail {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 70px;
        background-color: #46add9;
    }
}
/*---------------------------------
| nav
---------------------------------*/
nav {
    padding: 30px;
}
nav > ul {
    display: flex;
    align-items: center;
    padding: 20px;
}
nav > ul li {
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
nav > ul li a {
    font-weight: 700;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0 24px;
    vertical-align: center;
    align-items: center;
    transition: all 0.2s;
}
nav > ul li a .title {
    position: relative;
    font-weight: 700;
    color: #fff;
}
nav > ul li a .sub {
    display: block;
    font-family: 'M PLUS 1p';
    font-size: 1.0rem;
    color: #c4c4c4;
}
nav > ul li:not(:last-of-type) > a::after,
nav > ul li:not(:last-of-type) > span::after {
    content: '';
    position: absolute;
    right: 0;
    display: inline-block;
    width: 1px;
    height: 16px;
}
nav > ul li a:hover {
    transform: scale(1.1);
}
nav > ul li a:hover span {
    font-weight: 900;
}
nav > ul li:not(:last-of-type) > a:hover::after,
nav > ul li:not(:last-of-type) > span:hover::after {
    content: none;
}
nav .drawer-menu h2 {
    padding: 0;
    margin-bottom: 10px;
    background-color: #fff;
    height: 60px;
    border-bottom: #fff 2px solid;
}
nav .drawer-menu h2 img {
    margin: 0 auto;
    display: block;
}
nav .drawer-menu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
}
nav .drawer-menu ul li a .title {
    font-size: 3.5rem;
    font-weight: 700;
}
nav .drawer-menu ul li a .sub {
    display: inline-block;
    text-align: right;
    color: #c4c4c4;
}
@media screen and (max-width:1024px) {
    header .header_sitemap {
        flex-direction: column;
        justify-content: space-around;
        border-top: none;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    header .header_sitemap .link::after {
        content: "";
        position: absolute;
        top:42%;
        right: 20px;
        width: 12px;
        height: 12px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    header .header_sitemap .link {
        position: relative;
        display: block;
        width: 100%;
        margin-bottom: -1px;
        font-weight: 400;
        line-height: 1;
        padding: 20px;
        border-top: solid 1px #fff;
        border-bottom: solid 1px #fff;
    }
    header .header_sitemap li {
        width: 90%;
        border-bottom: solid 1px #c4c4c4;
        margin: 0 auto;
    }
    header .header_sitemap li a {
        display: block;
        width: 100%;
        padding: 15px 15px 8px;
    }
    header .header_sitemap .sublink {
        font-size: 1.6rem;
        color: #fff;
        display: block;
        width: 100%;
        padding-top: 0;
        padding-left: 30px;
        line-height: 1;
    }
    header .header_sitemap li:not(:last-of-type) .sublink {
        margin-bottom: 10px;
    }
    .header_method::after,
    .header_case::after {
        transition: 0.3s all;
    }
    header .header_method.is-active::after,
    header .header_case.is-active::after {
        transform: rotate(135deg);
    }
    .header_method_sub,
    .header_case_sub {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: 0.3s all;
    }
    .header_method_sub.is-active,
    .header_case_sub.is-active {
        height: 80px;
    }
    header .header_mail img {
        width: 45px;
    }
    button.drawer-hamburger {
        width: 60px;
        height: 60px;
    }
    .drawer--right.drawer-open .header_menu .drawer-hamburger {
        right: 300px;
    }
    .header_menu nav.drawer-nav {
        width: 300px;
    }
    nav .drawer-menu ul li a .title {
        font-size: 2.4rem;
    }
}
