@charset "utf-8";
header,nav,footer{
    /*display: none;*/
    position: relative;
    z-index: 1;
}
#recruit {
    background-color: #fff;
    font-family: "Roboto", "Helvetica Neue", Arial, 'Noto Sans JP', "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", "ＭＳ ゴシック", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
#recruit .bg  {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}
#recruit .bg > div {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-mask-repeat: repeat-y;
    mask-repeat: repeat-y;
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-size: cover;
    mask-size: cover;
    transition: 1s;
}
#recruit .bg > div:nth-of-type(1) {
    background: #ffffff;
    mask-image: url(../images/rectuit_bg01.png);
    -webkit-mask-image: url(../images/rectuit_bg01.png);
    opacity: 0.2;
}
#recruit .bg > div:nth-of-type(2) {
    background: #ffffff;
    mask-image: url(../images/rectuit_bg02.png);
    -webkit-mask-image: url(../images/rectuit_bg02.png);
    opacity: 0.4;
}
#recruit .bg > div:nth-of-type(3) {
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, rgb(255 255 255) 6px, rgb(255 255 255) 8px);
    mask-image: url(../images/rectuit_bg03.png);
    -webkit-mask-image: url(../images/rectuit_bg03.png);
}
#recruit .bg.onWhite > div:nth-of-type(1),
#recruit .bg.onWhite > div:nth-of-type(2) {
    background: #ffffff;
}
#recruit .bg.onWhite > div:nth-of-type(3) {
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, #fff 6px, #fff 8px);
}
#recruit a {
    text-decoration:none;
}
#recruit .sp {
    display: none;
}

/*---ボタン---*/

#recruit a.btn {
    display: block;
    text-align: center;
    background: #fff;
    position: relative;
    font-size: 21px;
    color: #333;
    border: solid 1px #fff;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}
#recruit a.btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #ccc;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#recruit a.btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    top: 10px;
    left: 10px;
    z-index: -1;
    transition: .8s;
}
#recruit a.btn > span {
    position: relative;
    display: block;
    padding: 10px;
    z-index: 1;
}
#recruit a.btn > span:after {
    content: "";
    display: block;
    width: 18px;
    height: 6px;
    position: absolute;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    right: 15px;
    bottom: 10px;
    transform: skewX(45deg);
    transition: .3s;
}
#recruit a.btn:hover,
#recruit a.btn:active {
    color: #fff;
}
#recruit a.btn:hover:before,
#recruit a.btn:active:before {
    width: 100%;
}
#recruit a.btn:hover > span:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    right: 8px;
}
#recruit a.btn:hover:after {
    opacity: 0;
    filter: blur(5px);
}
#recruit a.btn.prev:before {
    left:auto;
    right: 0;
}
#recruit a.btn.prev > span:after {
    right: auto;
    left: 15px;
    transform: skewX(-45deg);
    border-right: none;
    border-left: 1px solid #ccc;
}
#recruit a.btn.prev:hover > span:after {
    border-right: none;
    border-left: 1px solid #fff;
    left: 8px;
}


/*--------------------
ヘッダー
--------------------*/

#recruitHeader {
    position: sticky;
    top: 0;
    z-index: 999;
}
.menuCover {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 800;
    position: fixed;
    visibility: hidden;
}
.openMenu .menuCover {
    visibility: visible;
}
.recruitMenu {
    cursor: pointer;
    display: flex;
    position: absolute;
    right: 0;
    z-index: 999;
}
.recruitMenu a.entrybtn {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    font-size: 20px;
    margin-right: 2px;
    color: #da1521;
}

.openMenu .recruitMenu a.entrybtn {
    display: none;
}
.recruitMenu span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    cursor: pointer;
}
.openMenu .recruitMenu {
    position: fixed;
    top: 0;
}
.recruitMenu i {
    display: inline-block;
    width: 22px;
    height: 3px;
    margin-right: 5px;
    border-radius: 3px;
    background: #333;
    transition: background 0.5s;
    bottom: 0;
    margin: auto;
}
.recruitMenu i:before,
.recruitMenu i:after{
    content: "";
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 3px;
    background: #333;
    position: absolute;
    transform: rotate(0deg);
    transition: all 0.3s !important;
}
.recruitMenu i:before{
    transform: translateY(8px);
}
.recruitMenu i:after{
    transform: translateY(-8px);
}
.openMenu .recruitMenu i{
    background: transparent;
}
.openMenu .recruitMenu i:after{
    transform:translateY(0px) rotate(-45deg);
}
.openMenu .recruitMenu i:before{
    transform:translateY(0px) rotate(45deg);
}
#recruitNav {
    width: 50%;
    max-width: 360px;
    height: 100%;
    overflow: hidden;
    right: 0;
    top: 0;
    position: fixed;
    z-index: 900;
    transition: transform 0.3s ease-in-out .3s,opacity .5s,visibility 1s;
    background: #ffffff;
    box-shadow: 5px 0px 20px rgb(0 0 0 / 50%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
}
.openMenu #recruitNav {
    visibility: visible;
    opacity: 1;
}
.openMenu #recruitNav > ul {
    overflow-y: auto;
    border-top: 1px solid #de0012;
}
#recruitNav > ul {
    width: 100%;
    height: calc(100% - 50px);
}
#recruitNav > ul > li {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #de0012;
}

#recruitNav > ul > li:first-of-type {
    border-top: none;
}
#recruitNav li.entry {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background: #de0012;
    color: #fff;
    padding: 15px;
}
#recruitNav li.company {
    border-top: none;
    border-bottom: 1px solid #de0012;
}
#recruitNav li.company a {
    padding: 20px;
    font-size: 22px;
}
#recruitNav li.entry .entryTtl {
    font-size: 26px;
    text-align: center;
    margin-bottom: 8px;
}
#recruitNav li.entry li {
    background: #fff;
    text-align: center;
    margin-top: 15px;
    overflow: hidden;
}
#recruitNav li.entry li.intern a,#recruitNav li.entry li.intern ~ li a {
    padding: 15px 20px;
}
#recruitNav li.entry li:first-of-type {
    margin-top: 0;
}
#recruitNav li.entry a {
    padding: 20px;
    border: 1px solid #fff;
}
#recruitNav li.entry a:after {
    content: "";
    display: block;
    width: 18px;
    height: 6px;
    position: absolute;
    border-right: 1px solid #de0012;
    border-bottom: 1px solid #de0012;
    right: 15px;
    bottom: 10px;
    transform: skewX(45deg);
    transition: .3s;
}
#recruitNav li.entry a:hover:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    right: 8px;
}
#recruitNav a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 30px 20px;
    color: #de0012;
    font-size: 25px;
    line-height: 1.4;
    transition: transform .5s ease-in-out .3s, background .3s;
    box-sizing: border-box;
    transform: translateY(100%);
}
#recruitNav a.current {
    background: #fff1f2;
}
#recruitNav > ul > li > a:after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    border-right: 1px solid #de0012;
    border-top: 1px solid #de0012;
    right: 20px;
    transform: rotate(45deg);
    transition: .3s;
}
#recruitNav a > div {
    font-size: 40%;
    letter-spacing: .1em;
    opacity: .5;
}
#recruitNav a:hover {
    background: #de0012;
    color:#fff;
}
#recruitNav > ul > li > a:hover:after {
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    right: 13px;
}
.openMenu #recruitNav a {
    transform: translateY(0);
}
body header,
body nav,
body #recruit #contents,
body footer {
    transition: filter 1s,opacity 1s;
}
body.openMenu header,
body.openMenu nav,
body.openMenu #recruit #contents,
body.openMenu footer {
    filter: blur(5px);
    opacity: .5;
}

/*------セクションレイアウト------*/

#recruit #contents {
    position: relative;
    z-index: 0;
}
#recruit section{
    position: relative;
}
#recruit section:nth-of-type(even):before,
#recruit section:nth-of-type(even):after{
    content: "";
    width: 100%;
    height: 10vw;
    display: block;
    position: absolute;
    z-index: 1;
}
#recruit section:nth-of-type(even):before {
    top: -9.9vw;
}
#recruit section:nth-of-type(even):after {
    bottom: -9.9vw;
    transform: rotate(180deg);
}
#recruit section:nth-of-type(4n):before,
#recruit section:nth-of-type(4n):after{
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
#recruit section:nth-of-type(4n-2):before,
#recruit section:nth-of-type(4n-2):after{
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
#recruit section:nth-of-type(odd) .inner{
    padding-bottom: 11vw;
}
#recruit section:nth-of-type(odd) .inner{
    padding-top: 11vw;
}
#recruit .cover + section .inner{
    padding-top: 50px;
}
#recruit .cover + section:before {
    content:none !important;
}
#recruit section:last-of-type .inner{
    padding-bottom: 50px;
}
#recruit section:last-of-type:after{
    content:none;
}
#recruit .inner{
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/*------ページタイトル------*/

.cover {
    background: #666666;
    height: 15.625vw;
    color: #fff;
    overflow: hidden;
    z-index: 3;
}
.cover .coverInner {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    font-size: 10vw;
}
@media screen and (min-width: 1920px) {
    .cover {
        height: 300px;
    }
    .cover .coverInner {
        font-size: 201.6px;
    }
}
.coverTxt > * {
    transition: .3s;
}
.cover .decoration {
    font-size: 73%;
}
.cover .decoration > div {
    position: absolute;
}
.cover .decoration > div:nth-of-type(1) {
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, rgb(255 255 255) 6px, rgb(255 255 255) 8px);
    width: 2.2em;
    height: 2.2em;
    border-radius: 50%;
    top: -1.1em;
    left: 2.7em;
}
.cover .decoration > div:nth-of-type(2) {
    background: rgb(255 255 255 / 40%);
    width: 1em;
    height: 1em;
    border-radius: 50%;
    top: 0.3em;
    left: 3.9em;
}
.cover .decoration > div:nth-of-type(3) {
    width: 5em;
    height: calc(100vh);
    transform: skewX(319deg);
    transform-origin: top;
    overflow: hidden;
}
.cover .decoration > div:nth-of-type(3) div {
    background: rgb(255 255 255 / 15%);
    width: 100%;
    height: 100%;
    bottom: 0;
    position: absolute;
}
.cover h1 {
    font-size: 105%;
    line-height: 0.8;
    position: absolute;
    left: -.05em;
    top: -.045em;
}
.cover h2 {
    font-size: 26%;
    position: absolute;
    text-align: right;
    height: 1em;
    line-height: 1;
    right: -0.1em;
    top: 0;
    bottom: 0;
    margin: auto;
}
.cover h3 {
    font-size: 76%;
    position: absolute;
    text-align: right;
    height: 1em;
    line-height: 1;
    right: -0.1em;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: .2;
}

#recruit .ttlCont {
    position: relative;
}
#recruit .ttlCont .ttl {
    font-size: 10vw;
}
#recruit .ttlCont .ttl >* {
    width: 100%;
}
@media screen and (min-width: 1280px) {
    #recruit .ttlCont .ttl {
        font-size: 128px;
    }
}
#recruit .ttl h1 {
    width: 100%;
    font-size: 31%;
    text-align: center;
}
#recruit .ttl h2 {
    text-align: center;
    font-size: 78.1%;
    opacity: 0.2;
    line-height: 0.8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
#recruit .ttlCont p {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 19px;
    margin-bottom: 20px;
}
#recruit .ttlCont p span.notes {
    font-size: 73.68%;
}


#entry {
    background: #d8006a;
    color: #fff;
}
#entry:before,#entry:after {
    background: #d8006a !important;
}
#entry ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}
#entry ul li:only-of-type {
    margin-right: 0;
}
#entry li {
    width: calc((100% - 50px) / 2);
    margin-top: 50px;
    margin-right: 50px;
}
#entry li:nth-of-type(even) {
    margin-right: 0;
}
#entry li a.btn:before {
    background: #d8006a;
}
#entry li a.btn > span:after {
    border-color: #d8006a;
}
#entry li a.btn {
    font-size: 30px;
    height: 100%;
}
#entry li a.btn > span {
    display: flex;
    justify-content: space-between;
    padding: 0.6em;
    align-items: center;
    height: 100%;
}
#entry li a.btn span span {
    display: block;
    font-size: 30%;
    color: #d8006a;
    opacity: .5;
}
#entry li a.btn:hover span span {
    color:#fff;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}







#recruit #menu {
    background: #fff;
    color: #de0012;
}
#recruit #menu:before,
#recruit #menu:after {
    background: #fff !important;
}
#recruit #menu ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
#recruit #menu li {
    width: calc((87% - 50px) / 2);
    margin-top: 50px;
    margin-right: 50px;
}
#recruit #menu li:nth-of-type(even) {
    margin-right: 0;
}
#recruit #menu li:nth-of-type(4n+3):not(:last-of-type) {
    margin-left: 13%;
}
#recruit #menu li:nth-last-of-type(3):first-of-type,
#recruit #menu li:nth-last-of-type(3):first-of-type ~ li {
    width: calc((100% - 50px) / 2);
}
#recruit #menu li:nth-of-type(3):last-of-type {
    margin-right: auto;
    margin-left: auto;
}
#recruit #menu li a.btn:before {
    background: #fff;
}
#recruit #menu li a.btn:after {
    border-color: #de0012;
}
#recruit #menu li a.btn > span:after {
    border-color: #fff;
}
#recruit #menu li a.btn {
    font-size: 30px;
    height: 100%;
    background: #de0012;
    border-color: #de0012;
    color: #fff;
}
#recruit #menu li a.btn > span {
    display: flex;
    justify-content: space-between;
    padding: 0.6em;
    align-items: center;
    height: 100%;
}
#recruit #menu li a.btn span span {
    display: block;
    font-size: 30%;
    opacity: .5;
}
#recruit #menu li a.btn:hover > span {
    color: #de0012;
}
#recruit #menu li a.btn:hover > span:after {
    border-color: #de0012;
}