@charset "UTF-8";

header {
    width: 260px;
    padding: 25px 0 55px;
    background: linear-gradient(0deg, rgba(206, 162, 196, 1) 15%, rgba(250, 186, 128, 1) 90%);
    border-radius: 70px;
    position: fixed;
    bottom: 80px;
    left: calc(50% - 560px);
    box-shadow: 0 0 15px 10px rgba(249, 237, 215, 1);
    z-index: 999;
}

header .title {
    margin-bottom: 15px;
    color: #fff;
    font-size: 40px;
    font-family: "Darumadrop One", serif;
    text-align: center;
}
header .title div {
    display: flex;
    justify-content: center;
    gap: 10px;
}
header .title div span {
    width: 5px;
    height: 5px;
    display: inline-block;
    background: #fff;
    border-radius: 100px;
}

header a {
    margin-bottom: 10px;
    padding-left: 35px;
    display: block;
    color: #fff;
    font-size: 16px;
    font-family: var(--maru-font);
    font-weight: 500;
    position: relative;
}
#top header a:nth-child(1),
.term-requirements header a:nth-child(2),
.term-recruitment-briefing header a:nth-child(3),
.term-career-enhancement header a:nth-child(4),
.term-event header a:nth-child(5),
.term-interview header a:nth-child(6),
.term-voice_of_the_employees header a:nth-child(7),
.page-template-page-recruit_contact header a:nth-child(8) {
    padding-left: 50px;
}
#top header a:nth-child(1)::before,
.term-requirements header a:nth-child(2)::before,
.term-recruitment-briefing header a:nth-child(3)::before,
.term-career-enhancement header a:nth-child(4)::before,
.term-event header a:nth-child(5)::before,
.term-interview header a:nth-child(6)::before,
.term-voice_of_the_employees header a:nth-child(7)::before,
.page-template-page-recruit_contact header a:nth-child(8)::before {
    content: "";
    width: 45px;
    height: 1px;
    display: block;
    margin: auto;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

/* もふお */
header img {
    position: absolute;
    right: -10%;
    bottom: -18%;
}

.toggle-btn {
    display: none;
}

@media screen and (max-width: 1100px) {
.toggle-btn {
    display: block;
    position: absolute;
    right: 15px;
    top: 17px;
    z-index: 9999;
}
.toggle-btn div {
    width: 27px;
    height: 19px;
    position: relative;
}
.toggle-btn div span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    border-radius: 4px;
}
.toggle-btn div,
.toggle-btn div span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}
.toggle-btn div span:nth-of-type(1) {
    top: 0;
}
.toggle-btn div span:nth-of-type(2) {
    top: 8px;
}
.toggle-btn div span:nth-of-type(3) {
    bottom: 0;
}
.toggle-btn.active div span {
    background-color: #fff;
}
.toggle-btn.active div span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}
.toggle-btn.active div span:nth-of-type(2) {
    opacity: 0;
}
.toggle-btn.active div span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

header {
    width: 100vw;
    height: 100dvh;
    margin: auto;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    border-radius: 0;
    opacity: 0;
    transition: opacity .3s linear;
    pointer-events: none;
}
html.is-fixed header {
    opacity: 1;
    z-index: 9999;
    pointer-events: auto;
}


#g-nav {
    width: 100%;
    height: 100%;
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0;
}
html.is-fixed #g-nav {
    height: calc(100vh - 30px);
    border-radius: 5px;
    opacity: 1;
}

#g-nav nav {
    width: fit-content;
    margin: auto;
}

header .title {
    margin-bottom: 30px;
    font-size: 35px;
}
header a {
    padding: 0 !important;
    font-size: 16px;
    text-align: center;
}
header a::before {
    display: none !important;
}

/* もふお */
header img {
    width: 85px;
    height: auto;
    display: block;
    margin: 30px auto 0;
    position: static;
}
}