@charset "UTF-8";
/*base is →　! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

article, aside, footer, header, nav, section, figcaption, figure, main {
  display: block;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

button, input, select, textarea {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

a, area, button, input, label, select, summary, textarea, [tabindex] {
  touch-action: manipulation;
}

:root {
  font-size: 10px;
}

html, body {
  font-family: "Noto Sans JP", sans-serif !important;
}

.en {
  font-family: "Oswald", sans-serif !important;
}

@media screen and (max-width: 1179px) {
  header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  header #headerInner {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 3px solid #cfd6dc;
  }
  header #headerInner p {
    margin-top: 0;
  }
  header #headerInner p img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header #headerInner #siteName {
    align-items: center;
    display: flex;
  }
  header #headerInner #siteName a {
    display: block;
    width: 55vw;
    max-width: 206px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    aspect-ratio: 10/1;
  }
  header #headerInner #siteName a svg {
    width: 100%;
    aspect-ratio: 10/1;
    fill: #0050ff;
  }
  header #headerInner #siteName a .name {
    display: inline-block;
    font-size: 14px;
    margin-left: 10px;
    color: #0050ff;
  }
  header #headerInner #menuBtn {
    width: 27px;
    height: 27px;
    position: relative;
  }
  header #headerInner #menuBtn span {
    display: block;
    background-color: #000;
    width: 27px;
    height: 2px;
    position: absolute;
    transition: all 0.3s;
  }
  header #headerInner #menuBtn span:nth-of-type(1) {
    top: 3px;
    left: 0;
  }
  header #headerInner #menuBtn span:nth-of-type(2) {
    top: 13px;
    left: 0;
  }
  header #headerInner #menuBtn span:nth-of-type(3) {
    top: 23px;
    left: 0;
  }
  header #headerInner #menuBtn.isOpen span:nth-of-type(1) {
    top: 13px;
    transform: rotate(30deg);
  }
  header #headerInner #menuBtn.isOpen span:nth-of-type(2) {
    opacity: 0;
  }
  header #headerInner #menuBtn.isOpen span:nth-of-type(3) {
    top: 13px;
    transform: rotate(-30deg);
  }
  header #headerInner nav {
    display: block;
    position: fixed;
    width: 100%;
    left: 0;
    top: 60px;
    transform: scale(0);
    transition: all 0.3s;
    z-index: 999;
    height: calc(100dvh - 60px);
    overflow-y: scroll;
  }
  header #headerInner nav.isOpen {
    transform: scale(1);
  }
  header #headerInner nav ul {
    padding: 0 5vw 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    list-style: none;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
  }
  header #headerInner nav ul li {
    border-bottom: 1px solid #cfd6dc;
  }
  header #headerInner nav ul li a {
    display: block;
    padding: 30px 20px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    position: relative;
  }
  header #headerInner nav ul li a svg {
    width: 20px;
    height: 20px;
    fill: #000;
    position: absolute;
    top: calc(50% - 10px);
    right: 15px;
  }
  header #headerInner nav ul li.myPageBtn {
    margin-top: 40px;
  }
  header #headerInner nav ul li.myPageBtn a {
    background-color: #313540;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0 20px;
    height: 60px;
  }
  header #headerInner nav ul li.myPageBtn a svg {
    fill: #fff;
  }
  header #headerInner nav ul li.navEntryBtn .entryBtn {
    display: none;
  }
  header #headerInner nav ul li.navEntryBtn .subInner a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 10px;
    padding: 0 20px;
    height: 60px;
    color: #fff;
  }
  header #headerInner nav ul li.navEntryBtn .subInner a svg {
    position: absolute;
    top: calc(50% - 10px);
    right: 15px;
    fill: #fff;
  }
  header #headerInner nav ul li.navEntryBtn .subInner a:nth-of-type(1) {
    background-color: #32c83c;
  }
  header #headerInner nav ul li.navEntryBtn .subInner a:nth-of-type(2) {
    background-color: #3278ff;
  }
  header #headerInner nav ul li.navEntryBtn .subInner a:nth-of-type(3) {
    background-color: #ff91a0;
  }
  header #headerInner nav ul li.navEntryBtn .subInner a:nth-of-type(4) {
    background-color: #ff91a0;
  }
  header #headerInner nav ul li.navEntryBtn .subInner a:nth-of-type(5) {
    background-color: #ff91a0;
  }
}
@media print, screen and (min-width: 1180px) {
  header {
    width: 100%;
    height: 73px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  header #headerInner {
    width: 100%;
    height: 73px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 3px solid #cfd6dc;
  }
  header #headerInner p {
    margin-top: 0;
  }
  header #headerInner p img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header #headerInner #siteName {
    width: 260px;
    margin-left: 1.8vw;
  }
  header #headerInner #siteName a {
    display: block;
    width: 230px;
  }
  header #headerInner #siteName a svg {
    width: 230px;
    height: 23px;
    fill: #0050ff;
    transition: all 0.3s;
    vertical-align: top;
  }
  header #headerInner #siteName a:hover svg {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  }
  header #headerInner #menuBtn {
    display: none;
  }
  header #headerInner nav ul {
    list-style: none;
    display: flex;
    height: 73px;
  }
  header #headerInner nav ul li a {
    height: 73px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #000;
    text-decoration: none;
    transition: all 0.4s;
  }
  header #headerInner nav ul li a span.menuTxt {
    position: relative;
    transition: all 0.3s;
  }
  header #headerInner nav ul li a span.menuTxt:after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background-color: #0050ff;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: all 0.3s;
  }
  header #headerInner nav ul li a svg {
    display: none;
  }
  header #headerInner nav ul li a:hover, header #headerInner nav ul li a.now {
    background-position: -100% 0;
  }
  header #headerInner nav ul li a:hover span.menuTxt, header #headerInner nav ul li a.now span.menuTxt {
    color: #0050ff;
  }
  header #headerInner nav ul li a:hover span.menuTxt:after, header #headerInner nav ul li a.now span.menuTxt:after {
    width: 100%;
  }
  header #headerInner nav ul li.myPageBtn a {
    background-color: #313540;
    color: #fff;
    padding: 0 1em;
    transition: all 0.3s;
  }
  header #headerInner nav ul li.myPageBtn a span {
    margin-right: 10px;
    font-size: 1.4rem;
  }
  header #headerInner nav ul li.myPageBtn a svg {
    display: block;
    width: 0.5em;
    height: 1em;
    fill: #fff;
  }
  header #headerInner nav ul li.myPageBtn a:hover {
    opacity: 0.8;
  }
  header #headerInner nav ul li.navEntryBtn {
    font-size: 1.6rem;
    margin: 0;
    position: relative;
  }
  header #headerInner nav ul li.navEntryBtn:hover .entryBtn {
    opacity: 0.8;
  }
  header #headerInner nav ul li.navEntryBtn .entryBtn {
    padding: 0 1em;
    background-color: #0050ff;
    color: #fff;
    display: flex;
    align-items: center;
    height: 73px;
    transition: all 0.3s;
    line-height: 1;
    cursor: pointer;
  }
  header #headerInner nav ul li.navEntryBtn .entryBtn span {
    margin-right: 10px;
    font-size: 1.4rem;
  }
  header #headerInner nav ul li.navEntryBtn .entryBtn svg {
    display: block;
    width: 0.5em;
    height: 1em;
    fill: #fff;
    transform: rotate(90deg);
  }
  header #headerInner nav ul li.navEntryBtn .entryBtn:hover, header #headerInner nav ul li.navEntryBtn .entryBtn.now {
    color: #fff;
  }
  header #headerInner nav ul li.navEntryBtn .entryBtn:hover svg, header #headerInner nav ul li.navEntryBtn .entryBtn.now svg {
    fill: #fff;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub {
    position: absolute;
    top: 72px;
    right: 0;
    display: none;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner {
    display: flex;
    gap: 10px;
    background-color: #f5f7f8;
    padding: 10px;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 194px;
    height: 50px;
    padding: 10px 25px;
    position: relative;
    transition: all 0.3s;
    color: #fff;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a .ja {
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a svg {
    display: block;
    width: 8px;
    height: 16px;
    fill: #fff;
    position: absolute;
    top: calc(50% - 8px);
    right: 10px;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(1) {
    background-color: #32c83c;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(1):hover {
    background-color: rgba(50, 200, 60, 0.6);
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(2) {
    background-color: #3278ff;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(2):hover {
    background-color: rgba(50, 120, 255, 0.6);
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(3) {
    background-color: #ff91a0;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(3):hover {
    background-color: rgba(255, 145, 160, 0.6);
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(4) {
    background-color: #ff91a0;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(4):hover {
    background-color: rgba(255, 145, 160, 0.6);
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(5) {
    background-color: #ff91a0;
  }
  header #headerInner nav ul li.navEntryBtn .entrySub .subInner a:nth-of-type(5):hover {
    background-color: rgba(255, 145, 160, 0.6);
  }
}
@media print, screen and (min-width: 1180px) and (max-width: 1349px) {
  header #headerInner nav ul li + li {
    margin-left: 1vw;
  }
}
@media print, screen and (min-width: 1350px) {
  header #headerInner nav ul li + li {
    margin-left: min(2vw, 32px);
  }
}
@media screen and (max-width: 959px) {
  footer {
    background-color: #edf3ff;
    margin-top: 80px;
    padding: 40px 0 0;
  }
  footer #footerInner {
    width: 90%;
    margin: 0 auto;
  }
  footer #footerInner .footerLogo .logo {
    margin: 0 auto;
  }
  footer #footerInner .footerLogo .logo svg {
    width: 269px;
    height: 28px;
    fill: #0050ff;
    margin: 0 auto;
    display: block;
  }
  footer #footerInner .footerLogo .myPage {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #3b4043;
    color: #fff;
    font-size: 1.6rem;
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: 40px;
  }
  footer #footerInner .footerLogo .myPage svg {
    width: 10px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 15px;
    fill: #fff;
    position: absolute;
  }
  footer .footerEntry .footerSub a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    max-width: 100%;
    min-height: 60px;
    padding: 10px 35px;
    text-decoration: none;
    font-size: 1.6rem;
    margin-top: 10px;
  }
  footer .footerEntry .footerSub a .ja {
    color: #fff;
    font-weight: 700;
  }
  footer .footerEntry .footerSub a svg {
    width: 10px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 15px;
    fill: #fff;
  }
  footer .footerEntry .footerSub a:nth-of-type(1) {
    background-color: #32c83c;
  }
  footer .footerEntry .footerSub a:nth-of-type(2) {
    background-color: #3278ff;
  }
  footer .footerEntry .footerSub a:nth-of-type(3) {
    background-color: #ff91a0;
  }
  footer .footerEntry .footerSub a:nth-of-type(4) {
    background-color: #ff91a0;
  }
  footer .footerEntry .footerSub a:nth-of-type(5) {
    background-color: #ff91a0;
  }
  footer .footerLinks {
    display: flex;
    gap: 20px;
    margin-top: 40px;
  }
  footer .footerLinks .obj {
    flex: 1;
  }
  footer .footerLinks .obj .title {
    border-bottom: 1px solid #cfd6dc;
    font-size: 1.4rem;
    padding-bottom: 15px;
  }
  footer .footerLinks .obj ul {
    list-style: none;
    padding-top: 5px;
  }
  footer .footerLinks .obj ul li {
    font-size: 1.3rem;
    margin-top: 15px;
  }
  footer .footerLinks .obj ul li a {
    color: #333;
    text-decoration: none;
  }
  footer .footerUnder {
    position: relative;
    margin-top: 45px;
  }
  footer .footerUnder .underInner {
    width: 100%;
    display: flex;
    padding: 15px 5vw;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #313540;
  }
  footer .footerUnder .copy {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
  }
  footer .footerUnder .footerMenu {
    display: flex;
    font-size: 1.4rem;
    line-height: 1;
    list-style: none;
    font-weight: 400;
    gap: 20px;
    margin-top: 20px;
  }
  footer .footerUnder .footerMenu li a {
    color: #fff;
    text-decoration: none;
  }
  footer .footerUnder .footerMenu li a:hover {
    text-decoration: underline;
  }
  footer .footerUnder .pageTop {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    cursor: pointer;
    width: 100%;
    background-color: #0050ff;
    font-size: 1.4rem;
    position: relative;
    padding: 5px 0;
  }
  footer .footerUnder .pageTop span {
    order: 2;
    display: block;
    margin-right: 5px;
  }
  footer .footerUnder .pageTop svg {
    order: 1;
    width: 8px;
    height: 16px;
    transform: rotate(-90deg);
    fill: #fff;
  }
  footer .footerUnder #footImg {
    max-width: 524px;
    width: 90%;
    aspect-ratio: 524/90;
    margin: 0 auto;
  }
  footer .footerUnder #footImg img {
    width: 100%;
    height: auto;
  }
  .groupRecruit {
    display: flex;
    justify-content: center;
    margin: 40px auto 0;
    border-top: solid 1px #cfd6dc;
    padding: 30px 0 0;
    max-width: 1080px;
    width: 95%;
  }
  .groupRecruit a {
    display: block;
    position: relative;
    padding-right: 1.3em;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0050ff;
    text-decoration: none;
  }
  .groupRecruit a:after {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 512 512"><path d="M96,0v416h416V0H96z M472,376H136V40h336V376z" fill="%230050ff" /><polygon points="40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472" fill="%230050ff" /><polygon points="232.812,312.829 350.671,194.969 350.671,279.766 390.671,279.766 390.671,126.688 237.594,126.688 237.594,166.688 322.39,166.688 204.531,284.547" fill="%230050ff" /></svg>');
    background-size: 100% auto;
    position: absolute;
    top: -0.2em;
    right: 0;
  }
  .tool {
    display: none;
  }
  #recruitHome {
    color: #333333;
    position: relative;
    margin-top: 60px;
  }
  #recruitHome:before {
    content: "";
    width: 100%;
    background: #bedcff;
    position: absolute;
    left: 0;
    z-index: -1;
    transform: skewY(-23.4deg);
    transform-origin: left bottom;
    height: 240px;
    bottom: 0;
  }
  #recruitHome a {
    text-decoration: none;
    transition: all 0.3s;
  }
  #recruitHome .topCont {
    padding: 30px 0;
  }
  #recruitHome .homeH2 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
  }
  #recruitHome .homeH2:after {
    content: "";
    background: #0050ff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
  }
  #recruitHome .homeH2.taC:after {
    right: 0;
    margin: auto;
  }
  #recruitHome .homeH2.taR:after {
    right: 0;
    left: auto;
  }
  #recruitHome .homeH2En {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    font-size: 15px;
  }
  #recruitHome .homeH2En span {
    color: #0050ff;
  }
  #recruitHome .homeH2Jp {
    font-weight: 700;
    color: #222222;
    font-size: 20px;
  }
  #recruitHome .homeH3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
  }
  #recruitHome #homeTop {
    position: relative;
  }
  #recruitHome #homeTop:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #bedcff transparent transparent transparent;
    position: absolute;
    left: 0;
    z-index: -1;
    border-width: 75px 170px 0 0;
    top: 83.3333333333%;
  }
  #recruitHome #homeTop .homeTopSlider {
    overflow: hidden;
    margin: 0;
    padding-bottom: 10%;
  }
  #recruitHome #homeTop .homeTopSlider:before {
    content: "";
    width: 100%;
    background: #0050ff;
    mix-blend-mode: multiply;
    position: absolute;
    transform: skewY(-23.4deg);
    transform-origin: left bottom;
    opacity: 0.8;
    z-index: 5;
    padding-top: 31.4666666667%;
    bottom: 27.2%;
    left: calc(50% + 15px);
  }
  #recruitHome #homeTop .homeTopSlider:after {
    content: "";
    width: 100%;
    background: #0050ff;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    transform: skewY(-23.4deg);
    transform-origin: left bottom;
    opacity: 0.9;
    z-index: 5;
    padding-top: 31.4666666667%;
    left: calc(50% + 5px);
  }
  #recruitHome #homeTop .homeTopSliderItem {
    overflow: hidden;
  }
  #recruitHome #homeTop .homeTopSliderItem img {
    width: 100%;
  }
  #recruitHome #homeTop .homeTopSliderItem.anim img {
    transform: scale(1.1);
    transition: all 10s linear;
  }
  #recruitHome #homeTop .homeTopSlider .slick-slide {
    height: auto;
  }
  #recruitHome #homeTop .homeTopSlider .slick-dots {
    width: auto;
    bottom: calc(16.6666666667% + 10px);
    left: 20px;
  }
  #recruitHome #homeTop .homeTopSlider .slick-dots li {
    width: 16px;
    height: 2px;
    margin: 0 2px;
  }
  #recruitHome #homeTop .homeTopSlider .slick-dots li button {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    padding: 0;
    transform: skewX(-23.4deg);
  }
  #recruitHome #homeTop .homeTopSlider .slick-dots li.slick-active button {
    background: #0050ff;
  }
  #recruitHome #homeTop .homeTopBg01 > div {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 21.0666666667%;
    padding-top: 8%;
    right: 0.5333333333%;
    margin-top: 1.4666666667%;
  }
  #recruitHome #homeTop .homeTopBg01 > div:nth-child(2) {
    right: 31.2%;
    margin-top: 44%;
  }
  #recruitHome #homeTop .homeTopBg01 > div:before, #recruitHome #homeTop .homeTopBg01 > div:after {
    content: "";
    position: absolute;
    transform: skewY(-23.4deg);
    width: 56.9620253165%;
    padding-top: 7.5949367089%;
  }
  #recruitHome #homeTop .homeTopBg01 > div:before {
    background: #78b4ff;
    left: 0;
    bottom: 0;
    transform-origin: left bottom;
  }
  #recruitHome #homeTop .homeTopBg01 > div:after {
    background: #bedcff;
    right: 0;
    top: 0;
    transform-origin: right top;
  }
  #recruitHome #homeTop #homeTopH1 {
    position: absolute;
    z-index: 10;
    left: calc(50% + 30px);
    top: 45%;
    transform: translateY(-50%);
    width: 38.6%;
  }
  #recruitHome #homeTop #homeTopH1 img {
    width: 100%;
  }
  #recruitHome #recTopNews {
    padding-top: 0;
  }
  #recruitHome #recTopNews .homeH2 {
    padding-bottom: 0;
  }
  #recruitHome #recTopNews .homeH2:after {
    display: none;
  }
  #recruitHome #recTopNews .homeH2Jp {
    font-size: 18px;
  }
  #recruitHome #recTopNews .recTopNewsList {
    margin-bottom: 20px;
  }
  #recruitHome #recTopNews .recTopNewsList > li {
    border-bottom: 1px solid #c9c9ca;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
  }
  #recruitHome #recTopNews .recTopNewsList > li:first-child {
    padding-top: 0;
  }
  #recruitHome #recTopNews .recTopNewsList > li a {
    color: #333333;
    text-decoration: none;
  }
  #recruitHome #recTopNews .recTopNewsList > li time {
    font-size: 10px;
    display: block;
    margin-bottom: 4px;
  }
  #recruitHome #recTopWorks {
    position: relative;
  }
  #recruitHome #recTopWorks:before {
    content: "";
    width: 100%;
    background: #bedcff;
    position: absolute;
    left: 0;
    z-index: -1;
    transform: skewY(-23.4deg);
    transform-origin: top right;
    top: 46px;
    height: 185px;
  }
  #recruitHome #recTopWorks:after {
    content: "";
    background: #5a96ff;
    position: absolute;
    z-index: -1;
    transform: skewY(-23.4deg);
    transform-origin: top right;
    width: 70px;
    height: 10px;
    left: 10px;
    top: 0;
    margin-top: 40%;
  }
  #recruitHome #recTopWorks .recTopWorksList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 25px;
    margin: 0 auto 30px;
  }
  #recruitHome #recTopWorks .recTopWorksList > li {
    position: relative;
    width: 86.5671641791%;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a {
    color: #333333;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a .num {
    background: #222222;
    color: #fff;
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 2;
    font-size: 11.5px;
    padding: 6px 8px;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a .num:empty {
    display: none;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a .img {
    width: 100%;
    padding-top: 61.135371179%;
    display: block;
    position: relative;
    border: 1px solid #c6cdd3;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 3px 3px 0px 0px #c6cdd3;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a .img img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
  }
  #recruitHome #recTopMessage {
    position: relative;
    z-index: 1;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .homeH2 {
    margin-bottom: 0;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg {
    position: relative;
    margin: -40px auto 10px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg:before {
    content: "";
    width: calc(50% + 20px);
    height: 185px;
    background: #bedcff;
    position: absolute;
    right: -20px;
    top: -82px;
    z-index: -1;
    transform: skewY(-23.4deg);
    transform-origin: right top;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg:after {
    content: "";
    background: #5a96ff;
    position: absolute;
    top: 0;
    transform: skewY(-23.4deg);
    transform-origin: top right;
    z-index: -1;
    left: 40px;
    margin-top: 14.9253731343%;
    width: 17.9104477612%;
    padding-top: 2.3880597015%;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg .img {
    padding: 0 10px;
    max-width: 430px;
    margin: 0 auto;
    width: 67.1641791045%;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg .txt {
    position: absolute;
    top: 0;
    font-weight: 700;
    line-height: 1.25;
    right: 17.9104477612%;
    margin-top: 18.8059701493%;
    font-size: 13px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg .txt span {
    font-weight: 500;
    font-size: 10px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt {
    font-weight: 500;
    letter-spacing: 0.04em;
    font-feature-settings: "palt" 1;
    position: relative;
    font-size: 14px;
    line-height: 1.6428571429;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt dl + dl {
    margin-top: 5px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt dl dt {
    background-color: #edf3ff;
    font-weight: 700;
    border-radius: 3px;
    position: relative;
    padding: 25px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt dl dt:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #0050ff;
    border-bottom: 2px solid #0050ff;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 7px);
    right: 20px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar .qaNav {
    transform: scale(0);
    height: 0;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt {
    min-height: 100%;
    background-color: #edf3ff;
    border-radius: 3px;
    padding: 1em;
    padding-bottom: 50px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .qaNav {
    transform: scale(1);
    height: auto;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .ansQ {
    position: relative;
    font-weight: 700;
    border-bottom: 1px solid #0050ff;
    padding: 1em 0 1em 20px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #edf3ff;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .ansQ:hover {
    filter: brightness(0.8);
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .ansQ:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #0050ff;
    border-top: 2px solid #0050ff;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 7px);
    left: 3px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .ansA {
    margin-top: 1em;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar .qaNav {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar .qaNav span {
    cursor: pointer;
    color: #0050ff;
    text-decoration: underline;
  }
  #recruitHome #recTopBgImg {
    position: relative;
  }
  #recruitHome #recTopBgImg:before {
    content: "";
    background: #bedcff;
    position: absolute;
    transform: skewY(-23.4deg);
    z-index: -1;
    width: 145px;
    padding-top: 52px;
    right: 46.6666666667%;
    top: 15px;
    transform-origin: right top;
  }
  #recruitHome #recTopBgImg:after {
    content: "";
    background: url(../images/recruit/top-bg.webp) no-repeat left center/cover;
    width: 53.3333333333%;
    padding-top: 46.6666666667%;
    display: block;
    margin-left: auto;
  }
  #recruitHome #recTopWelfare {
    position: relative;
    padding: 30px 0 0;
  }
  #recruitHome #recTopWelfare:after {
    content: "";
    background: #5a96ff;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    transform: skewY(-23.4deg);
    width: 34.6666666667%;
    padding-top: 2.1333333333%;
    margin-bottom: -1.3333333333%;
    transform-origin: right top;
  }
  #recruitHome #recTopWelfare .recTopWelfareImg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 39.3333333333%;
  }
  #recruitHome #recTopWelfare .recTopWelfareImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #recruitHome #recTopWelfare .recTopWelfareContainer {
    width: 58.2089552239%;
    margin-left: auto;
  }
  #recruitHome #recTopWelfare .recTopWelfareContainer .txt {
    font-size: 13px;
    line-height: 1.6153846154;
  }
  #recruitHome #recTopWelfare .recTopWelfareContainer .txt + p {
    margin-top: 20px;
  }
  #recruitHome #recTopWelfare .recTopWelfareContainer .btn {
    width: 100%;
  }
  #recruitHome #recTopOthers {
    padding-bottom: 0;
  }
  #recruitHome #recTopOthers .recTopOthersList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  #recruitHome #recTopOthers .recTopOthersList > li {
    width: 48.5%;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a {
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    border: 1px solid #0050ff;
    padding: 20px 10px 15px;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a .jp {
    color: #333333;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    font-size: 15px;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a .en {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    color: #0050ff;
    transition: all 0.3s;
    font-size: 15px;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a svg {
    fill: #0050ff;
    transition: all 0.3s;
    width: 7px;
    height: 15px;
    margin-top: 10px;
  }
  /* import */
  /* use Slick */
  /* Slider */
  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
  }
  .slick-list:focus {
    outline: none;
  }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
  }
  .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table;
  }
  .slick-track:after {
    clear: both;
  }
  .slick-loading .slick-track {
    visibility: hidden;
  }
  .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
  }
  [dir=rtl] .slick-slide {
    float: right;
  }
  .slick-slide img {
    display: block;
  }
  .slick-slide.slick-loading img {
    display: none;
  }
  .slick-slide.dragging img {
    pointer-events: none;
  }
  .slick-initialized .slick-slide {
    display: block;
  }
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }
  .slick-arrow.slick-hidden {
    display: none;
  }
  /*
  $slick-font-path: "./fonts/" !default;
  $slick-font-family: "slick" !default;
  $slick-loader-path: "./" !default;
  $slick-arrow-color: white !default;
  $slick-dot-color: black !default;
  $slick-dot-color-active: $slick-dot-color !default;
  $slick-prev-character: "\2190" !default;
  $slick-next-character: "\2192" !default;
  $slick-dot-character: "\2022" !default;
  */
  /*
  @function slick-image-url($url) {
  	@if function-exists(image-url) {
  			@return image-url($url);
  	}
  	@else {
  			@return url($slick-loader-path + $url);
  	}
  }

  @function slick-font-url($url) {
  	@if function-exists(font-url) {
  			@return font-url($url);
  	}
  	@else {
  			@return url($slick-font-path + $url);
  	}
  }
  */
  /* Slider

  .slick-list {
  	.slick-loading & {
  			background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
  	}
  }
  */
  /* Icons 
  @if $slick-font-family == "slick" {
  	@font-face {
  			font-family: "slick";
  			src: slick-font-url("slick.eot");
  			src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
  			font-weight: normal;
  			font-style: normal;
  	}
  }
  */
  /* Arrows */
  .slick-prev,
  .slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
  }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
  }
  .slick-prev:hover:before, .slick-prev:focus:before,
  .slick-next:hover:before,
  .slick-next:focus:before {
    opacity: 1;
  }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 20px;
    line-height: 1;
    color: #000;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .slick-prev {
    left: -25px;
  }
  [dir=rtl] .slick-prev {
    left: auto;
    right: -25px;
  }
  .slick-next {
    right: -25px;
  }
  [dir=rtl] .slick-next {
    left: -25px;
    right: auto;
  }
  /* Dots */
  .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }
  .slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }
  .slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
  }
  .slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
  }
  .slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
  }
  .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: #000;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .slick-dots li.slick-active button:before {
    color: #000;
    opacity: 0.75;
  }
  article ul {
    list-style: none;
  }
  article img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  article img.aligncenter {
    margin: 0 auto;
    display: block;
  }
  article img.alignright {
    margin: 0 0 0 auto;
    display: block;
  }
  .imgLine2, .imgLine3, .imgLine4, .twoCol, .colorBox, .borderBox, .ytWrap {
    margin-top: 30px;
  }
  .kome {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 10px;
    font-size: 12px;
  }
  .kome:before {
    content: "※";
  }
  .kome + .kome {
    margin-top: 0;
  }
  a.icon {
    display: inline-block;
    position: relative;
    padding-right: 20px;
  }
  a.icon:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    position: absolute;
    right: -5px;
    top: 0.1em;
  }
  a.icon[href$=pdf]:after {
    background-image: url(../images/common/icon_pdf.png);
  }
  a.icon[href$=xls]:after, a.icon[href$=xlsx]:after {
    background-image: url(../images/common/icon_xls.png);
  }
  .ico_blank {
    display: inline-block;
    width: 11px;
    height: 11px;
    background: url("../images/common/icon_blank.svg") no-repeat 0 0;
    background-size: cover;
    vertical-align: middle;
    margin-left: 5px;
    position: relative;
    top: -4px;
  }
  .imgLine2 li {
    text-align: center;
    margin-top: 20px;
  }
  .imgLine2 li img {
    max-width: 100%;
  }
  .imgLine2 .cap {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }
  .imgLine2_stc li {
    text-align: center;
    margin-top: 20px;
  }
  .imgLine2_stc li img {
    max-width: 100%;
  }
  .pdf_i {
    padding-right: 5px;
  }
  .imgLine3 li {
    text-align: center;
    margin-top: 20px;
  }
  .imgLine3 li img {
    max-width: 100%;
  }
  .imgLine3 .cap {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }
  .imgLine6 li {
    text-align: center;
    margin-top: 20px;
  }
  .imgLine6 li img {
    max-width: 100%;
  }
  .imgLine6 .cap {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }
  .imgLine4 {
    display: flex;
    flex-wrap: wrap;
  }
  .imgLine4 li {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  .imgLine4 li:nth-of-type(2n) {
    margin-right: 0;
  }
  .imgLine4 li:nth-child(n+3) {
    margin-top: 20px;
  }
  .imgLine4 li img {
    width: 100%;
  }
  .imgLine4 .cap {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }
  .imgInP .img {
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  .imgInP .img .cap {
    display: block;
    text-align: left;
    font-size: 13px;
    margin-top: 5px;
  }
  .imgInP.sp_img_btm {
    display: flex;
    flex-wrap: wrap;
  }
  .imgInP.sp_img_btm .img {
    display: block;
    order: 2;
    margin: 10px auto 0;
    padding-bottom: 0;
  }
  .imgInP.sp_img_btm .text {
    flex-basis: 100%;
    order: 1;
  }
  .twoCol .txt *:nth-child(1) {
    margin-top: 0;
  }
  .twoCol .txt + .img {
    margin-top: 10px;
  }
  .twoCol .img {
    width: 100%;
    text-align: center;
  }
  .twoCol .img.round {
    overflow: hidden;
    border-radius: 15px;
  }
  .twoCol .img + .txt {
    margin-top: 20px;
  }
  .twoCol .img img {
    width: 100%;
    height: auto;
  }
  .twoCol .img .cap {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    text-align: left;
  }
  .twoCol .img .modal_image {
    text-decoration: none;
  }
  .twoCol .img .modal_image span {
    display: block;
    margin-top: 5px;
    text-align: right;
    font-size: 10px;
  }
  .twoCol .img .modal_slide:not(:first-of-type) {
    display: none;
  }
  .twoCol.sp_reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .twoCol.sp_reverse > div:last-of-type {
    margin-bottom: 30px;
  }
  .scrollTable {
    overflow: auto;
  }
  .scrollTable table {
    white-space: nowrap;
  }
  .scrolltext {
    font-size: 12px;
    display: block;
    text-align: right;
    margin: 20px 0 -10px;
  }
  .colorBox {
    background-color: #f9f9f9;
    padding: 20px 20px;
  }
  .colorBox *:nth-child(1) {
    margin-top: 0;
  }
  .colorBox .title {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .colorBox.round {
    border-radius: 20px;
  }
  .colorBox.blue {
    background-color: #0050ff;
  }
  .borderBox {
    border: 1px solid #191919;
    padding: 30px 30px;
  }
  .borderBox .title {
    display: block;
    position: relative;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .borderBox .title:not(:first-of-type) {
    margin-top: 30px;
  }
  .borderBox .title:before {
    content: "";
    display: inline-block;
    background-color: #191919;
    position: absolute;
    height: 1px;
    width: 50px;
    width: 20px;
    left: -30px;
    top: 15px;
  }
  .borderBox *:nth-child(1) {
    margin-top: 0;
  }
  .border-box {
    border: 1px solid #ccc;
    padding: 20px;
  }
  .ytWrap .ytWrap_inner {
    position: relative;
    padding-bottom: 56.25%;
  }
  .ytWrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  /* common class */
  strong {
    font-weight: bold !important;
  }
  .taC {
    text-align: center !important;
  }
  .taL {
    text-align: left !important;
  }
  .taR {
    text-align: right !important;
  }
  .Center {
    margin: 0 auto !important;
  }
  .ovh {
    overflow: hidden !important;
  }
  .mw100 {
    max-width: 100% !important;
    width: auto !important;
  }
  .w100p {
    width: 100% !important;
  }
  .inline {
    display: inline !important;
  }
  .mB0 {
    margin-bottom: 0 !important;
  }
  .mB5 {
    margin-bottom: 5px !important;
  }
  .mB10 {
    margin-bottom: 10px !important;
  }
  .mB20 {
    margin-bottom: 20px !important;
  }
  .mB30 {
    margin-bottom: 30px !important;
  }
  .mB40 {
    margin-bottom: 40px !important;
  }
  .mB50 {
    margin-bottom: 50px !important;
  }
  .mT0 {
    margin-top: 0 !important;
  }
  .mT5 {
    margin-top: 5px !important;
  }
  .mT10 {
    margin-top: 10px !important;
  }
  .mT20 {
    margin-top: 20px !important;
  }
  .mT30 {
    margin-top: 30px !important;
  }
  .mT40 {
    margin-top: 40px !important;
  }
  .mT50 {
    margin-top: 50px !important;
  }
  .mL0 {
    margin-left: 0px !important;
  }
  .mL5 {
    margin-left: 5px !important;
  }
  .mL10 {
    margin-left: 10px !important;
  }
  .mL20 {
    margin-left: 20px !important;
  }
  .mL30 {
    margin-left: 30px !important;
  }
  .mL40 {
    margin-left: 40px !important;
  }
  .mL50 {
    margin-left: 50px !important;
  }
  .mR0 {
    margin-right: 0px !important;
  }
  .mR5 {
    margin-right: 5px !important;
  }
  .mR10 {
    margin-right: 10px !important;
  }
  .mR20 {
    margin-right: 20px !important;
  }
  .mR30 {
    margin-right: 30px !important;
  }
  .mR40 {
    margin-right: 40px !important;
  }
  .mR50 {
    margin-right: 50px !important;
  }
  .mB0 {
    margin-bottom: 0 !important;
  }
  .mB5_sp {
    margin-bottom: 5px !important;
  }
  .mB10_sp {
    margin-bottom: 10px !important;
  }
  .mB20_sp {
    margin-bottom: 20px !important;
  }
  .mB30_sp {
    margin-bottom: 30px !important;
  }
  .mB40_sp {
    margin-bottom: 40px !important;
  }
  .mB50_sp {
    margin-bottom: 50px !important;
  }
  .mT0 {
    margin-top: 0 !important;
  }
  .mT5_sp {
    margin-top: 5px !important;
  }
  .mT10_sp {
    margin-top: 10px !important;
  }
  .mT20_sp {
    margin-top: 20px !important;
  }
  .mT30_sp {
    margin-top: 30px !important;
  }
  .mT40_sp {
    margin-top: 40px !important;
  }
  .mT50_sp {
    margin-top: 50px !important;
  }
  .mL0_sp {
    margin-left: 0px !important;
  }
  .mL5_sp {
    margin-left: 5px !important;
  }
  .mL10_sp {
    margin-left: 10px !important;
  }
  .mL20_sp {
    margin-left: 20px !important;
  }
  .mL30_sp {
    margin-left: 30px !important;
  }
  .mL40_sp {
    margin-left: 40px !important;
  }
  .mL50_sp {
    margin-left: 50px !important;
  }
  .mR0_sp {
    margin-right: 0px !important;
  }
  .mR5_sp {
    margin-right: 5px !important;
  }
  .mR10_sp {
    margin-right: 10px !important;
  }
  .mR20_sp {
    margin-right: 20px !important;
  }
  .mR30_sp {
    margin-right: 30px !important;
  }
  .mR40_sp {
    margin-right: 40px !important;
  }
  .mR50_sp {
    margin-right: 50px !important;
  }
  .size12_sp {
    font-size: 12px !important;
  }
  .size14_sp {
    font-size: 14px !important;
  }
  .size16_sp {
    font-size: 16px !important;
  }
  .size18_sp {
    font-size: 18px !important;
  }
  .size20_sp {
    font-size: 20px !important;
  }
  .w50p_sp {
    width: 50% !important;
  }
  .textred {
    color: #E94141 !important;
  }
  .textblue {
    color: blue !important;
  }
  .bold {
    font-weight: bold !important;
  }
  .underline {
    text-decoration: underline !important;
  }
  .bdnone {
    border: none !important;
  }
  .floatL {
    float: left;
  }
  .floatR {
    float: right;
  }
  .preBox {
    background: #eff0f4;
    border: 1px solid #0050ff;
    padding: 15px;
    box-sizing: border-box;
    clear: both;
    overflow: hidden;
    margin-top: 30px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
  }
  .preBox pre {
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  body:before {
    width: 50vw;
    height: 30VW;
    content: "";
    display: block;
    position: fixed;
    background-color: #edf3ff;
    transform: rotate(-23.4deg);
    z-index: -1;
    transform-origin: left top;
    left: -50px;
    top: 5vh;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  body.mangaWrap:before, body.staffDetail:before, body#recuruitTop:before {
    display: none;
  }
  .inner {
    padding: 0 20px;
  }
  .hero {
    position: relative;
    height: 190px;
  }
  .hero.wide {
    height: 280px;
  }
  .hero.wide .page_title {
    padding-top: 100px;
    top: 0;
    left: 0;
    transform: none;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: calc((100% - 1120px) / 2);
  }
  .hero.wide .page_title img {
    display: inline-block;
    padding-left: 20px;
    height: 70%;
    margin-top: 50px;
  }
  .hero.production_second {
    background: url(../images/recruit/recruit_header_production_second.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .hero.production_second .page_title {
    justify-content: center;
    padding-left: 0;
    padding-top: 0;
  }
  .hero.production_second .page_title img {
    padding-left: 0;
  }
  .hero.production_second .page_title img {
    height: auto;
    width: 70%;
  }
  .hero_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero .page_title {
    font-family: "Oswald", "Noto Sans JP", sans-serif;
    color: #000;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 30px;
  }
  .hero .page_title span {
    display: block;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0.5em;
    font-size: 12px;
  }
  .hero .page_title.jp {
    font-style: normal;
  }
  .hero.newHero {
    width: 90%;
    margin: 0 auto;
    padding: 90px 0 40px;
    line-height: 1;
    height: auto;
  }
  .hero.newHero .engTit {
    font-size: 1.2rem;
    color: #0050ff;
    line-height: 1;
    text-transform: uppercase;
  }
  .hero.newHero h1 {
    color: #333;
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    text-align: left;
    transform: none;
    top: auto;
    left: auto;
    margin: 15px 0 0 0;
    font-style: normal;
  }
  .breadcrumb {
    padding: 5px 0;
  }
  .breadcrumb_list {
    line-height: 1;
    font-size: 11px;
  }
  .breadcrumb_list a {
    color: #000;
    text-decoration: none;
  }
  .breadcrumb_list > span:after {
    content: ">";
    margin: 0 0.5em;
  }
  .breadcrumb_list > span:last-child:after {
    display: none;
  }
  #recruitSecond {
    padding-top: 30px;
    font-size: 1.4rem;
    line-height: 1.7;
    line-height: 1.7;
  }
  #recruitSecond .recruit_h2_en {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 30px;
  }
  #recruitSecond .recruit_h2_en span {
    color: #0050ff;
  }
  #recruitSecond p {
    line-height: 1.8;
    margin-top: 20px;
  }
  #recruitSecond p.wide {
    margin-top: 30px;
  }
  #recruitSecond section + section {
    margin-top: 35px;
  }
  .recruit_tobira_list {
    margin-top: 40px;
  }
  .recruit_tobira_list .item {
    position: relative;
  }
  .recruit_tobira_list .item + .item {
    margin-top: 20px;
  }
  .recruit_tobira_list .item a {
    display: block;
  }
  .recruit_tobira_list .item figure img {
    width: 100%;
  }
  .recruit_tobira_list .item .title {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
  .recruit_tobira_list .item .title img {
    width: 50%;
  }
  .recruitH2 {
    font-weight: bold;
    line-height: 1.3;
    position: relative;
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0050ff;
    /*
    	&:before{
    	content: "";
    	display: inline-block;
    	background-color: $blu;
    	position: absolute;
    	bottom: -3px;
    	left: 0;
    	height: 3px;
    	width: 115px;
    	@if $type == sp{
    	bottom: -2px;
    	height: 2px;
    }
    }
    	*/
  }
  .recruitH2 + p {
    margin-top: 15px !important;
  }
  .recruitH3 {
    font-weight: bold;
    line-height: 1.3;
    background-color: #eaeafe;
    font-size: 18px;
    padding: 10px 20px;
    margin-top: 20px;
  }
  .recruitH4 {
    font-weight: bold;
    line-height: 1.3;
    color: #3131f5;
    padding-bottom: 10px;
    position: relative;
    font-size: 16px;
    margin-top: 20px;
  }
  .recruitH4 + p {
    margin-top: 10px !important;
  }
  .recruitH4:after {
    content: "";
    display: inline-block;
    background-color: #3131f5;
    height: 1px;
    width: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .catch_box {
    font-weight: bold;
    text-align: center;
    line-height: 2;
    text-align: center;
    background-color: #eaeafe;
    padding: 20px;
    margin-top: 20px;
  }
  .recruit_common_list {
    margin-top: 20px;
  }
  .recruit_common_list li {
    margin-top: 10px;
    position: relative;
    padding-left: 20px;
  }
  .recruit_common_list li:before {
    content: "";
    display: inline-block;
    background-color: #0050ff;
    position: absolute;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    top: 9px;
    left: 9px;
    width: 6px;
    height: 6px;
    top: 8px;
    left: 5px;
  }
  .btn {
    font-weight: 700;
    line-height: 1;
    background: #0050ff;
    border: 2px solid #0050ff;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    width: 80%;
    font-size: 15px;
    padding: 18px;
  }
  .btn:before {
    content: "";
    width: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    z-index: -1;
  }
  .btn:after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s;
    right: 18px;
  }
  .btn:hover {
    color: #0050ff;
    opacity: 1;
  }
  .btn:hover:before {
    width: 100%;
  }
  .btn.wht {
    background: #fff;
    color: #191919;
    border: 0;
  }
  .btn.wht:before {
    background: #191919;
  }
  .btn.wht:hover {
    color: #fff;
  }
  .btn.back:after {
    right: auto;
    transform: rotate(135deg);
    left: 18px;
  }
  .anchor_list {
    margin-bottom: 30px;
  }
  .anchor_list .btn:nth-of-type(1) {
    background-color: #32c83c;
    border: 2px solid #32c83c;
  }
  .anchor_list .btn:nth-of-type(2) {
    background-color: #3278ff;
    border: 2px solid #3278ff;
  }
  .anchor_list .btn:nth-of-type(3) {
    background-color: #ff91a0;
    border: 2px solid #ff91a0;
  }
  .anchor_list .btn:nth-of-type(4) {
    background-color: #ff91a0;
    border: 2px solid #ff91a0;
  }
  .anchor_list .btn:nth-of-type(5) {
    background-color: #ff91a0;
    border: 2px solid #ff91a0;
  }
  .anchor_list .btn:not(:first-of-type) {
    margin-top: 10px;
  }
  .anchor_list .btn:after {
    border-right: none;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }
  .production_detail_list .item + .item {
    margin-top: 50px;
  }
  .production_detail_list .item figure img {
    width: 100%;
  }
  .production_detail_list .item .text {
    margin-top: 20px;
    padding: 0 20px;
  }
  .production_detail_list .item .text .recruitH2 {
    font-size: 28px;
  }
  .production_link_list {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
  }
  .production_link_list a {
    display: block;
    text-decoration: none;
    color: #000;
    width: 50%;
  }
  .production_link_list a:nth-of-type(n + 3) {
    margin-top: 40px;
  }
  .production_link_list a.current figure {
    background-color: #0050ff;
  }
  .production_link_list a figure {
    margin: 0 auto;
    transition: 0.3s;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    transform: rotate(-20deg);
  }
  .production_link_list a figure img {
    transform: rotate(20deg);
  }
  .production_link_list a .title {
    display: block;
    text-align: center;
    margin-top: 25px;
  }
  .recruit_qa dl {
    margin-top: 20px;
  }
  .recruit_qa dl dt {
    font-weight: bold;
    position: relative;
    font-size: 16px;
    padding-left: 30px;
  }
  .recruit_qa dl dt:before {
    content: "Q.";
    font-family: "Oswald", sans-serif;
    color: #0050ff;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px;
  }
  .recruit_qa dl dd {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
  }
  .recruit_qa dl dd:before {
    content: "A.";
    font-family: "Oswald", sans-serif;
    color: #babacc;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px;
  }
  hr {
    border: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 30px 0;
  }
  .recruit_table {
    margin-top: 20px;
  }
  .recruit_table tr th {
    background-color: #d8d8f7;
    font-weight: bold;
    padding: 15px;
    font-size: 16px;
    border-bottom: 3px solid #fff;
  }
  .recruit_table tr td {
    background-color: #eaeafe;
    padding: 15px;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
  }
  .recruit_table tr td dl + dl {
    margin-top: 20px;
  }
  .recruit_table tr td dl dt {
    font-weight: bold;
    font-size: 15px;
  }
  .recruit_table tr td dl dd {
    margin-top: 5px;
  }
  .recruit_staff_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
  }
  .recruit_staff_list li {
    width: calc(50% - 10px);
  }
  .recruit_staff_list li:not(:nth-of-type(even)) {
    margin-right: 20px;
  }
  .recruit_staff_list li:nth-of-type(n + 3) {
    margin-top: 35px;
  }
  .recruit_staff_list a {
    text-decoration: none;
    color: #000;
    display: block;
  }
  .recruit_staff_list a figure {
    text-align: center;
    border-radius: 50%;
    box-shadow: -2px 2px 0px 0px #fff5a4;
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .recruit_staff_list a figure img {
    display: inline-block;
  }
  .recruit_staff_list a .text_wrap {
    margin-top: 10px;
  }
  .recruit_staff_list a .text_wrap span {
    display: block;
  }
  .recruit_staff_list a .text_wrap .title {
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 14px;
  }
  .recruit_staff_list a .text_wrap .title:after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .recruit_staff_list a .text_wrap .text {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
  }
  .interview_wrap {
    background: url(../images/recruit/staff/bg.jpg) repeat;
    margin-top: 20px;
    position: relative;
    padding: 20px 5vw;
    margin-top: 40px;
  }
  .interview_wrap .h1_wrap .tn {
    text-align: center;
    padding-bottom: 20px;
  }
  .interview_wrap .h1_wrap .tn img {
    max-width: 80%;
    width: auto;
    height: auto;
  }
  .interview_wrap .h1_wrap .en {
    color: #3131f5;
    font-weight: bold;
    font-size: 13px;
  }
  .interview_wrap .h1_wrap .staffH1 {
    line-height: 1.3;
    font-size: 32px;
    margin-top: 10px;
  }
  .interview_wrap .h1_wrap .title {
    display: block;
    font-weight: bold;
    line-height: 1.3;
    font-size: 18px;
    margin-top: 10px;
  }
  .interview_wrap .text_wrap {
    border-top: 1px solid #000;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .staff_qa .item {
    display: flex;
    flex-direction: column-reverse;
  }
  .staff_qa .item + .item {
    margin-top: 35px;
  }
  .staff_qa .item figure {
    margin-left: 8px;
    margin-top: 30px;
  }
  .staff_qa .item figure img {
    box-shadow: -8px 8px 0px 0px #fff5a4;
  }
  .staff_qa .item .text_wrap {
    background: url(../images/recruit/staff/bg.jpg) repeat;
    padding: 30px;
  }
  .staff_qa .item .text_wrap .recruitH2:not(:first-of-type) {
    margin-top: 30px;
  }
  .recruit_staff_sche {
    background: url(../images/recruit/staff/bg.jpg) repeat;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 50px;
  }
  .recruit_staff_sche .inner {
    background-color: #fff;
    padding: 30px 20px;
  }
  .recruit_staff_sche .scheH2 {
    text-align: center;
    font-weight: bold;
    position: relative;
    font-size: 22px;
    padding-top: 30px;
  }
  .recruit_staff_sche .scheH2:before {
    content: "";
    display: inline-block;
    background: url(../images/recruit/staff/icon_sche.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: calc(50% - 14px);
    width: 28px;
    height: 28px;
  }
  .recruit_staff_sche .staff_sche_wrap {
    margin-top: 30px;
  }
  .recruit_staff_sche .staff_sche_wrap .item + .item {
    margin-top: 30px;
  }
  .recruit_staff_sche .staff_sche_wrap .item figure {
    text-align: center;
  }
  .recruit_staff_sche .staff_sche_wrap .item .text_wrap {
    margin-top: 20px;
  }
  .recruit_staff_sche .twoCol .recruitH3 {
    border-left: 3px solid #0050ff;
  }
  .recruit_staff_message .inner {
    background-color: #fff;
    padding: 0px 20px 30px;
  }
  .recruit_staff_message .messageH2 {
    text-align: center;
    font-weight: bold;
    position: relative;
    font-size: 22px;
    padding-top: 30px;
  }
  .recruit_staff_message .messageH2:before {
    content: "";
    display: inline-block;
    background: url(../images/recruit/staff/icon_megafon.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: calc(50% - 20px);
    width: 40px;
    height: 35px;
  }
  .recruit_staff_message .message_box {
    background-color: #eaeafe;
    position: relative;
    margin-top: 20px;
    padding: 20px 20px 30px;
  }
  .recruit_staff_message .message_box:after {
    content: "";
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #eaeafe;
    border-right: 10px solid #eaeafe;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 10px);
    transform: rotate(45deg);
  }
  .recruit_staff_message .message_box .title {
    color: #0050ff;
    font-weight: bold;
    margin-top: 0px !important;
    font-size: 28px;
    text-align: center;
  }
  .recruit_staff_message .message_box .text {
    font-weight: bold;
    margin-top: 10px !important;
  }
  .recruit_staff_message img {
    width: 100%;
  }
  .business_list {
    margin-bottom: 40px;
  }
  .business_list_item {
    border: 1px solid #cbcbcb;
    text-align: center;
    margin-bottom: 15px;
    padding: 20px;
  }
  .business_list_item:last-child {
    margin-bottom: 0;
  }
  .business_list_item h3 {
    line-height: 1.3;
    font-weight: 700;
    border-bottom: 1px solid #cbcbcb;
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .business_list_item h3 span {
    color: #0050ff;
  }
  .business_list_item address {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    color: #0050ff;
    line-height: 1.5;
  }
  .business_list_item address span {
    color: #000;
    font-size: 16px;
  }
  .business_list_item address a {
    color: #0050ff;
    text-decoration: none;
  }
  .business_list_item address a.tel {
    font-size: 24px;
  }
  .business_list_item address a.cv_btn {
    display: block;
    font-weight: 700;
    line-height: 1;
    background: #0050ff;
    border: 2px solid #0050ff;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    width: -moz-fit-content;
    width: fit-content;
    width: 100%;
    font-size: 15px;
    padding: 18px;
  }
  .business_list_item address a.cv_btn:after {
    content: "";
    width: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    z-index: -1;
  }
  .business_list_item address a.cv_btn:before {
    content: "";
    width: 1.375em;
    height: 1em;
    background: url(../images/common/ico_mail.png) no-repeat center/contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1em;
    transition: all 0.3s;
  }
  .business_list_item address a.cv_btn:hover {
    opacity: 1;
    color: #0050ff;
  }
  .business_list_item address a.cv_btn:hover:after {
    width: 100%;
  }
  .business_list_item address a.cv_btn:hover:before {
    background: url(../images/common/ico_mail_blu.png) no-repeat center/contain;
  }
  .arwlist {
    text-align: center;
    width: auto;
    height: auto;
    padding: 2em 0;
  }
  .arwlist li {
    width: 80%;
    margin: 70px auto 0;
    padding: 1em 0;
    border: 1px solid #ccc;
    position: relative;
  }
  .arwlist + li {
    position: relative;
    margin-top: 50px;
    /*矢印画像の高さと配置を考慮して設定*/
  }
  .arwlist li + li:before {
    content: "";
    display: block;
    position: absolute;
    top: -40px;
    /*矢印画像の高さと配置を考慮して設定*/
    left: 49%;
    width: 10px;
    height: 10px;
    border-top: solid 3px #697b91;
    border-right: solid 3px #697b91;
    transform: rotate(135deg);
  }
  body.mangaWrap {
    background-color: #f7fbff;
  }
  #manga {
    padding-top: 80px;
    background-image: url(../images/recruit/manga-bg.png);
    background-repeat: no-repeat;
    background-size: auto 35vh;
    background-position: 50% 0;
  }
  .manga_detail .manga_head {
    background-color: #fff;
    padding-top: 30px;
  }
  .manga_detail .manga_head .date {
    font-size: 2rem;
    font-weight: 700;
    color: #0050ff;
    text-align: center;
  }
  .manga_detail .manga_head h1 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
  }
  .manga_detail .manga_body {
    background-color: #fff;
    padding-top: 20px;
  }
  .manga_detail .manga_body .manga {
    text-align: center;
    width: 95%;
    margin: 0 auto;
  }
  .manga_detail .manga_body .manga img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .manga_detail .manga_body .manga + .manga {
    margin-top: 30px;
  }
  .manga_detail .mangaNav {
    margin: 30px auto 0;
    padding: 0 10px;
  }
  .manga_detail .mangaNav > span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0050ff;
    border-bottom: 1px solid #cfd6dc;
    padding-bottom: 5px;
    display: block;
  }
  .manga_detail .mangaNav ul {
    margin-top: 5px;
  }
  .manga_detail .mangaNav ul li {
    margin-top: 6px;
    padding-left: 1em;
    position: relative;
  }
  .manga_detail .mangaNav ul li:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #8db1ff;
    position: absolute;
    top: 8px;
    left: 0;
  }
  .manga_detail .mangaNav ul li span {
    font-weight: 400;
  }
  .manga_detail .mangaNav ul li span:nth-of-type(1) {
    font-size: 1.4rem;
  }
  .manga_detail .mangaNav ul li span:nth-of-type(2) {
    font-size: 1.2rem;
  }
  .manga_detail .jobInfo {
    width: 95%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    margin: 30px auto 0;
    padding: 10px;
  }
  .manga_detail .jobInfo .img {
    width: 100%;
  }
  .manga_detail .jobInfo .img img {
    width: 100%;
    height: auto;
  }
  .manga_detail .jobInfo .txt {
    margin-top: 20px;
  }
  .manga_detail .jobInfo .txt .title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0050ff;
    border-bottom: 1px solid #cfd6dc;
    padding-bottom: 10px;
  }
  .manga_detail .jobInfo .txt p {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .manga_detail .jobInfo .txt a {
    font-size: 1.6rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
  }
  .manga_detail .jobInfo .txt a svg {
    width: 8px;
    height: 16px;
    fill: #0050ff;
    display: inline-block;
    margin-left: 0.5em;
  }
  .manga_detail .mangaBackWrap {
    background-color: #f7fbff;
    margin-top: 40px;
    padding-top: 30px;
  }
  .manga_detail .mangaBackWrap a {
    display: block;
    margin: 0 auto;
  }
  .mangaArchive {
    margin-top: 60px;
  }
  .mangaArchive h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0050ff;
  }
  .mangaArchive p {
    font-size: 1.6rem;
    margin-top: 15px;
  }
  .mangaArchive .mangaList {
    margin-top: 20px;
  }
  .mangaArchive .mangaList .mangaListItem + .mangaListItem {
    margin-top: 20px;
  }
  .mangaArchive .mangaList .mangaListItem a {
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid #c6cdd3;
    box-shadow: 4px 4px 0 #c6cdd3;
    overflow: hidden;
  }
  .mangaArchive .mangaList .mangaListItem a .thumb {
    width: 120px;
  }
  .mangaArchive .mangaList .mangaListItem a .thumb img {
    width: 100%;
    height: auto;
  }
  .mangaArchive .mangaList .mangaListItem a .date {
    flex: 1;
    padding-left: 25px;
  }
  .mangaArchive .mangaList .mangaListItem a .date .num {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0050ff;
    display: block;
  }
  .mangaArchive .mangaList .mangaListItem a .date .title {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
  }
  .aboutTop,
  .aboutFlow {
    margin-top: 20px;
  }
  .aboutTop:before,
  .aboutFlow:before {
    content: "";
    display: block;
    background-image: url(../images/recruit/work-bg.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    aspect-ratio: 742/614;
    width: 80%;
    margin: 0 auto;
  }
  .aboutTop h2,
  .aboutFlow h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0050ff;
    margin-top: 20px;
  }
  .aboutTop p.lead,
  .aboutFlow p.lead {
    font-size: 1.6rem;
    margin-top: 20px;
  }
  .aboutTop p.btnWrap,
  .aboutFlow p.btnWrap {
    margin-top: 35px;
  }
  .aboutFlow {
    margin-top: 60px;
  }
  .aboutFlow:before {
    content: "";
    display: block;
    background-image: url(../images/recruit/flow_tobira_img.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    aspect-ratio: 644/457;
    width: 80%;
    margin: 0 auto;
  }
  .recNews_list .recNews_item {
    border-bottom: 1px solid #cfd6dc;
  }
  .recNews_list .recNews_item a {
    font-size: 1.4rem;
    position: relative;
    text-decoration: none;
    width: 100%;
    align-items: center;
    padding: 30px 20px;
    display: block;
    padding: 15px 30px 15px 0;
  }
  .recNews_list .recNews_item a .date {
    color: #0050ff;
    display: block;
  }
  .recNews_list .recNews_item a .title {
    color: #333;
    margin-right: 10px;
    display: block;
    font-size: 1.6rem;
  }
  .recNews_list .recNews_item a svg {
    width: 7px;
    height: 14px;
    fill: #0050ff;
    margin: 0 0 0 auto;
    position: absolute;
    top: calc(50% - 7px);
    right: 5px;
  }
  .pagenation {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .pagenation span,
  .pagenation a {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    line-height: 1;
    position: relative;
    font-size: 14px;
    margin: 0 8px;
    padding: 0 5px 5px;
  }
  .pagenation span:after,
  .pagenation a:after {
    content: "";
    width: 0;
    background: #0050ff;
    transition: all 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
  }
  .pagenation a:hover {
    opacity: 1;
    color: #0050ff;
  }
  .pagenation a:hover:after {
    width: 100%;
  }
  .pagenation .current {
    color: #0050ff;
  }
  .pagenation .current:after {
    width: 100%;
  }
  .pagenation .prev {
    display: flex;
    align-items: center;
  }
  .pagenation .prev:before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 5px;
  }
  .pagenation .next {
    display: flex;
    align-items: center;
  }
  .pagenation .next:before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) scale(-1, 1);
    margin-left: 5px;
    order: 2;
  }
  .forPC {
    display: none !important;
  }
}
@media print, screen and (min-width: 960px) {
  footer {
    background-color: #edf3ff;
    margin-top: 120px;
    position: relative;
    padding: 50px 0 0;
  }
  footer #footerInner {
    max-width: 1080px;
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  footer #footerInner .footerEntry {
    grid-column: 1/span 3;
    grid-row: 1;
  }
  footer #footerInner .footerSub {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  footer #footerInner .footerSub a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #cfd6dc;
    position: relative;
    flex: 1;
    max-width: 275px;
    min-height: 64px;
    padding: 10px 28px;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s;
  }
  footer #footerInner .footerSub a .ja {
    color: #fff;
  }
  footer #footerInner .footerSub a svg {
    width: 10px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 15px;
    fill: #fff;
  }
  footer #footerInner .footerSub a:nth-of-type(1) {
    background-color: #32c83c;
  }
  footer #footerInner .footerSub a:nth-of-type(1):hover {
    background-color: rgba(50, 200, 60, 0.6);
  }
  footer #footerInner .footerSub a:nth-of-type(2) {
    background-color: #3278ff;
  }
  footer #footerInner .footerSub a:nth-of-type(2):hover {
    background-color: rgba(50, 120, 255, 0.6);
  }
  footer #footerInner .footerSub a:nth-of-type(3) {
    background-color: #ff91a0;
  }
  footer #footerInner .footerSub a:nth-of-type(3):hover {
    background-color: rgba(255, 145, 160, 0.6);
  }
  footer #footerInner .footerSub a:nth-of-type(4) {
    background-color: #ff91a0;
  }
  footer #footerInner .footerSub a:nth-of-type(4):hover {
    background-color: rgba(255, 145, 160, 0.6);
  }
  footer #footerInner .footerSub a:nth-of-type(5) {
    background-color: #ff91a0;
  }
  footer #footerInner .footerSub a:nth-of-type(5):hover {
    background-color: rgba(255, 145, 160, 0.6);
  }
  footer #footerInner .footerLogo {
    grid-column: 1;
    grid-row: 2;
    padding-top: 50px;
  }
  footer #footerInner .footerLogo .logo svg {
    width: 269px;
    height: 28px;
    fill: #0050ff;
  }
  footer #footerInner .footerLogo .myPage {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #3b4043;
    color: #fff;
    font-size: 1.6rem;
    position: relative;
    width: 245px;
    height: 64px;
    margin-top: 28px;
    transition: all 0.3s;
  }
  footer #footerInner .footerLogo .myPage svg {
    width: 8px;
    height: 14px;
    fill: #fff;
    position: absolute;
    top: calc(50% - 7px);
    right: 15px;
  }
  footer #footerInner .footerLogo .myPage:hover {
    opacity: 0.8;
  }
  footer #footerInner .footerLinks {
    grid-column: 2/span 2;
    grid-row: 2;
    display: flex;
    gap: 40px;
    padding-top: 50px;
  }
  footer #footerInner .footerLinks .obj {
    flex: 1;
  }
  footer #footerInner .footerLinks .obj .title {
    border-bottom: 1px solid #cfd6dc;
    font-size: 1.6rem;
    padding-bottom: 15px;
  }
  footer #footerInner .footerLinks .obj ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding-top: 5px;
  }
  footer #footerInner .footerLinks .obj ul li {
    width: 50%;
    font-size: 1.4rem;
    margin-top: 15px;
  }
  footer #footerInner .footerLinks .obj ul li a {
    color: #333;
    text-decoration: none;
  }
  footer #footerInner .footerLinks .obj ul li a:hover {
    text-decoration: underline;
  }
  footer .footerUnder {
    position: relative;
    margin-top: 130px;
    background-color: #313540;
  }
  footer .footerUnder .underInner {
    max-width: 1080px;
    width: 95%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
  }
  footer .footerUnder .copy {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
  }
  footer .footerUnder .footerMenu {
    display: flex;
    font-size: 1.4rem;
    line-height: 1;
    list-style: none;
    font-weight: 400;
  }
  footer .footerUnder .footerMenu li + li {
    margin-left: 40px;
  }
  footer .footerUnder .footerMenu li a {
    color: #fff;
    text-decoration: none;
  }
  footer .footerUnder .footerMenu li a:hover {
    text-decoration: underline;
  }
  footer .footerUnder .pageTop {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    position: absolute;
    width: 155px;
    height: 34px;
    top: -34px;
    right: 2.5vw;
    background-color: #0050ff;
    font-size: 1.4rem;
  }
  footer .footerUnder .pageTop span {
    display: block;
    margin-right: 5px;
  }
  footer .footerUnder .pageTop svg {
    width: 8px;
    height: 13px;
    transform: rotate(-90deg);
    fill: #fff;
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
  }
  footer .footerUnder .pageTop:hover svg {
    animation: pt 0.4s forwards;
  }
  @keyframes pt {
    50% {
      transform: rotate(-90deg) translateX(10px);
    }
    0%, 100% {
      transform: rotate(-90deg) translateX(0);
    }
  }
  footer .footerUnder #footImg {
    position: absolute;
    width: 524px;
    height: 90px;
    left: 2.5vw;
    top: -90px;
  }
  .groupRecruit {
    display: flex;
    justify-content: center;
    margin: 60px auto 0;
    border-top: solid 1px #cfd6dc;
    padding: 40px 0 0;
    max-width: 1080px;
    width: 95%;
  }
  .groupRecruit a {
    display: block;
    position: relative;
    padding-right: 1.3em;
    font-size: 2rem;
    font-weight: 700;
    color: #0050ff;
    text-decoration: none;
    transition: all 0.3s;
  }
  .groupRecruit a:after {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 512 512"><path d="M96,0v416h416V0H96z M472,376H136V40h336V376z" fill="%230050ff" /><polygon points="40,472 40,296 40,136 40,96 0,96 0,512 416,512 416,472 376,472" fill="%230050ff" /><polygon points="232.812,312.829 350.671,194.969 350.671,279.766 390.671,279.766 390.671,126.688 237.594,126.688 237.594,166.688 322.39,166.688 204.531,284.547" fill="%230050ff" /></svg>');
    background-size: 100% auto;
    position: absolute;
    top: -0.2em;
    right: 0;
  }
  .groupRecruit a:hover {
    opacity: 0.8;
  }
  .tool {
    position: absolute;
    background-color: #0050ff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s;
    font-weight: 700;
  }
  .tool.show {
    transform: scale(1);
    opacity: 1;
  }
  #recruitHome {
    color: #333333;
    position: relative;
    margin-top: 73px;
  }
  #recruitHome:before {
    content: "";
    width: 100%;
    background: #bedcff;
    position: absolute;
    left: 0;
    z-index: -1;
    transform: skewY(-23.4deg);
    transform-origin: left bottom;
    height: 310px;
    bottom: -105px;
  }
  #recruitHome a {
    text-decoration: none;
    transition: all 0.3s;
  }
  #recruitHome .topCont {
    padding: 40px 0;
  }
  #recruitHome .homeH2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 36px;
  }
  #recruitHome .homeH2:after {
    content: "";
    background: #0050ff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 59px;
    height: 2px;
  }
  #recruitHome .homeH2.taC:after {
    right: 0;
    margin: auto;
  }
  #recruitHome .homeH2.taR:after {
    right: 0;
    left: auto;
  }
  #recruitHome .homeH2En {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    font-size: 20px;
  }
  #recruitHome .homeH2En span {
    color: #0050ff;
  }
  #recruitHome .homeH2Jp {
    font-weight: 700;
    color: #222222;
    font-size: 38px;
  }
  #recruitHome .homeH3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 36px;
  }
  #recruitHome #homeTop {
    position: relative;
  }
  #recruitHome #homeTop:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #bedcff transparent transparent transparent;
    position: absolute;
    left: 0;
    z-index: -1;
    border-width: 205px 465px 0 0;
    top: 92%;
  }
  #recruitHome #homeTop .homeTopSlider {
    overflow: hidden;
    margin: 0;
    padding-bottom: 3.4722222222%;
  }
  #recruitHome #homeTop .homeTopSlider:before {
    content: "";
    width: 100%;
    background: #0050ff;
    mix-blend-mode: multiply;
    position: absolute;
    transform: skewY(-23.4deg);
    transform-origin: left bottom;
    opacity: 0.8;
    z-index: 5;
    padding-top: 20.8333333333%;
    bottom: 27.2%;
    left: calc(50% + 145px);
  }
  #recruitHome #homeTop .homeTopSlider:after {
    content: "";
    width: 100%;
    background: #0050ff;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    transform: skewY(-23.4deg);
    transform-origin: left bottom;
    opacity: 0.9;
    z-index: 5;
    padding-top: 22.2222222222%;
    left: calc(50% + 110px);
  }
  #recruitHome #homeTop .homeTopSliderItem {
    overflow: hidden;
  }
  #recruitHome #homeTop .homeTopSliderItem img {
    width: 100%;
  }
  #recruitHome #homeTop .homeTopSliderItem.anim img {
    transform: scale(1.1);
    transition: all 10s linear;
  }
  #recruitHome #homeTop .homeTopSlider .slick-slide {
    height: auto;
  }
  #recruitHome #homeTop .homeTopSlider .slick-dots {
    width: auto;
    bottom: calc(8% + 32px);
    left: 40px;
  }
  #recruitHome #homeTop .homeTopSlider .slick-dots li {
    width: 28px;
    height: 4px;
    margin: 0 4px;
  }
  #recruitHome #homeTop .homeTopSlider .slick-dots li button {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    padding: 0;
    transform: skewX(-23.4deg);
  }
  #recruitHome #homeTop .homeTopSlider .slick-dots li.slick-active button {
    background: #0050ff;
  }
  #recruitHome #homeTop .homeTopBg01 > div {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 13.8888888889%;
    padding-top: 5.2083333333%;
    right: 10.4166666667%;
    margin-top: 5.2083333333%;
  }
  #recruitHome #homeTop .homeTopBg01 > div:nth-child(2) {
    right: 30.2083333333%;
    margin-top: 32.4305555556%;
  }
  #recruitHome #homeTop .homeTopBg01 > div:before, #recruitHome #homeTop .homeTopBg01 > div:after {
    content: "";
    position: absolute;
    transform: skewY(-23.4deg);
    width: 56%;
    padding-top: 8%;
  }
  #recruitHome #homeTop .homeTopBg01 > div:before {
    background: #78b4ff;
    left: 0;
    bottom: 0;
    transform-origin: left bottom;
  }
  #recruitHome #homeTop .homeTopBg01 > div:after {
    background: #bedcff;
    right: 0;
    top: 0;
    transform-origin: right top;
  }
  #recruitHome #homeTop #homeTopH1 {
    position: absolute;
    z-index: 10;
    left: calc(50% + 176px);
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
  }
  #recruitHome #homeTop #homeTopH1 img {
    width: 100%;
  }
  #recruitHome #recTopNews .recTopNewsContainer {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto;
    gap: 0 7.4074074074%;
  }
  #recruitHome #recTopNews .homeH2 {
    padding-bottom: 0;
    margin-bottom: 40px;
  }
  #recruitHome #recTopNews .homeH2:after {
    display: none;
  }
  #recruitHome #recTopNews .homeH2Jp {
    font-size: 28px;
  }
  #recruitHome #recTopNews .recTopNewsList {
    grid-row: 1/4;
    grid-column: 2/3;
  }
  #recruitHome #recTopNews .recTopNewsList > li {
    border-bottom: 1px solid #c9c9ca;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 16px;
         column-gap: 16px;
    font-size: 16px;
    padding: 16px 0;
  }
  #recruitHome #recTopNews .recTopNewsList > li:first-child {
    padding-top: 0;
  }
  #recruitHome #recTopNews .recTopNewsList > li a {
    color: #333333;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  #recruitHome #recTopNews .recTopNewsList > li a:hover {
    color: #0050ff;
  }
  #recruitHome #recTopNews .recTopNewsList > li time {
    font-size: 13px;
    flex-shrink: 0;
  }
  #recruitHome #recTopNews .gotoNews .btn {
    max-width: 100%;
    font-size: 15px;
    padding: 15px;
  }
  #recruitHome #recTopWorks {
    position: relative;
  }
  #recruitHome #recTopWorks:before {
    content: "";
    width: 100%;
    background: #bedcff;
    position: absolute;
    left: 0;
    z-index: -1;
    transform: skewY(-23.4deg);
    transform-origin: top right;
    top: -130px;
    height: 310px;
  }
  #recruitHome #recTopWorks:after {
    content: "";
    background: #5a96ff;
    position: absolute;
    z-index: -1;
    transform: skewY(-23.4deg);
    transform-origin: top right;
    width: 144px;
    height: 20px;
    right: calc(50% + 410px);
    top: 0;
    margin-top: 20.8333333333%;
  }
  #recruitHome #recTopWorks .recTopWorksList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 55px;
  }
  #recruitHome #recTopWorks .recTopWorksList > li {
    position: relative;
    width: 48%;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a {
    color: #333333;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a:hover {
    color: #0050ff;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a:hover .img img {
    transform: scale(1.05);
  }
  #recruitHome #recTopWorks .recTopWorksList > li a .num {
    background: #222222;
    color: #fff;
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 2;
    font-size: 18px;
    padding: 10px 8px;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a .num:empty {
    display: none;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a .img {
    width: 100%;
    padding-top: 61.135371179%;
    display: block;
    position: relative;
    border: 1px solid #c6cdd3;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 5px 5px 0px 0px #c6cdd3;
  }
  #recruitHome #recTopWorks .recTopWorksList > li a .img img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
  }
  #recruitHome #recTopMessage .recTopMessageContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .homeH2 {
    padding-top: 45px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg {
    position: relative;
    grid-row: 1/3;
    grid-column: 2/3;
    margin-top: 150px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg:after {
    content: "";
    background: #5a96ff;
    position: absolute;
    top: 0;
    transform: skewY(-23.4deg);
    transform-origin: top right;
    z-index: -1;
    left: 5px;
    margin-top: 15.5555555556%;
    width: 22.2222222222%;
    padding-top: 2.962962963%;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg .img {
    padding: 0 10px;
    max-width: 430px;
    margin: 0 auto;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg .txt {
    position: absolute;
    top: 0;
    font-weight: 700;
    line-height: 1.25;
    right: 15.9259259259%;
    margin-top: 25.9259259259%;
    font-size: 22px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageImg .txt span {
    font-weight: 500;
    font-size: 15px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt {
    font-weight: 500;
    letter-spacing: 0.04em;
    font-feature-settings: "palt" 1;
    position: relative;
    font-size: 16px;
    line-height: 1.625;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt dl + dl {
    margin-top: 5px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt dl dt {
    background-color: #edf3ff;
    font-weight: 700;
    border-radius: 3px;
    position: relative;
    padding: 25px;
    cursor: pointer;
    width: calc(100% - 13px);
    transition: all 0.3s;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt dl dt:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: #edf3ff;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 10px);
    right: -10px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt dl dt:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #0050ff;
    border-bottom: 2px solid #0050ff;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 7px);
    right: 20px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt dl dt:hover {
    filter: brightness(0.8);
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar .qaNav {
    transform: scale(0);
    height: 0;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt {
    min-height: 100%;
    background-color: #edf3ff;
    border-radius: 3px;
    padding: 1em 1em 50px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .qaNav {
    transform: scale(1);
    height: auto;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .ansQ {
    position: relative;
    font-weight: 700;
    border-bottom: 1px solid #0050ff;
    padding: 1em 0 1em 20px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #edf3ff;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .ansQ:hover {
    filter: brightness(0.8);
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .ansQ:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #0050ff;
    border-top: 2px solid #0050ff;
    transform: rotate(-45deg);
    position: absolute;
    top: calc(50% - 7px);
    left: 3px;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar.hasTxt .ansA {
    margin-top: 1em;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar .qaNav {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar .qaNav span {
    cursor: pointer;
    color: #0050ff;
  }
  #recruitHome #recTopMessage .recTopMessageContainer .recTopMessageTxt #answar .qaNav span:hover {
    text-decoration: underline;
  }
  #recruitHome #recTopBgImg {
    position: relative;
  }
  #recruitHome #recTopBgImg:before {
    content: "";
    background: #bedcff;
    position: absolute;
    transform: skewY(-23.4deg);
    z-index: -1;
    width: 310px;
    height: 80px;
    right: 290px;
    top: 20px;
    transform-origin: left top;
  }
  #recruitHome #recTopBgImg:after {
    content: "";
    background: url(../images/recruit/top-bg.webp) no-repeat left center/cover;
    width: min(430px, 25vw);
    position: absolute;
    left: 90%;
    top: -130px;
    z-index: -1;
    transform: translateX(-100%);
    aspect-ratio: 400/329;
  }
  #recruitHome #recTopWelfare {
    position: relative;
    padding: 4.1666666667% 0 10.4166666667%;
    margin: 160px 0 30px;
  }
  #recruitHome #recTopWelfare:before {
    content: "";
    width: 9.7222222222%;
    padding-top: 1.1111111111%;
    background: #5a96ff;
    position: absolute;
    left: 0;
    bottom: 100%;
    margin-top: 1.8055555556%;
    z-index: -1;
    transform: skewY(-23.4deg);
  }
  #recruitHome #recTopWelfare:after {
    content: "";
    background: #5a96ff;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    transform: skewY(-23.4deg);
    width: 20.1388888889%;
    padding-top: 1.1111111111%;
    margin-bottom: 7.6388888889%;
  }
  #recruitHome #recTopWelfare .recTopWelfareImg {
    position: absolute;
    right: 50%;
    top: 0;
    height: 100%;
    width: 49.2361111111%;
  }
  #recruitHome #recTopWelfare .recTopWelfareImg img {
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: 0;
    aspect-ratio: 709/630;
    height: auto;
  }
  #recruitHome #recTopWelfare .recTopWelfareContainer {
    max-width: 470px;
    margin-left: auto;
  }
  #recruitHome #recTopWelfare .recTopWelfareContainer .txt {
    font-size: 16px;
    line-height: 2.09375;
  }
  #recruitHome #recTopWelfare .recTopWelfareContainer .txt + p {
    margin-top: 40px;
  }
  #recruitHome #recTopOthers {
    padding-bottom: 0;
  }
  #recruitHome #recTopOthers .recTopOthersList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  #recruitHome #recTopOthers .recTopOthersList > li {
    width: 32%;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a {
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    border: 2px solid #0050ff;
    padding: 30px 36px 25px;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a:hover:before {
    width: 100%;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a:hover .jp {
    color: #fff;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a:hover .en {
    color: #fff;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a:hover svg {
    fill: #fff;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a:before {
    content: "";
    width: 0;
    height: 100%;
    background: #0050ff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a .jp {
    color: #333333;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    font-size: 26px;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a .en {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    color: #0050ff;
    transition: all 0.3s;
    font-size: 20px;
  }
  #recruitHome #recTopOthers .recTopOthersList > li a svg {
    fill: #0050ff;
    transition: all 0.3s;
    width: 10px;
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  /* import */
  /* use Slick */
  /* Slider */
  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
  }
  .slick-list:focus {
    outline: none;
  }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
  }
  .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table;
  }
  .slick-track:after {
    clear: both;
  }
  .slick-loading .slick-track {
    visibility: hidden;
  }
  .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
  }
  [dir=rtl] .slick-slide {
    float: right;
  }
  .slick-slide img {
    display: block;
  }
  .slick-slide.slick-loading img {
    display: none;
  }
  .slick-slide.dragging img {
    pointer-events: none;
  }
  .slick-initialized .slick-slide {
    display: block;
  }
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }
  .slick-arrow.slick-hidden {
    display: none;
  }
  /*
  $slick-font-path: "./fonts/" !default;
  $slick-font-family: "slick" !default;
  $slick-loader-path: "./" !default;
  $slick-arrow-color: white !default;
  $slick-dot-color: black !default;
  $slick-dot-color-active: $slick-dot-color !default;
  $slick-prev-character: "\2190" !default;
  $slick-next-character: "\2192" !default;
  $slick-dot-character: "\2022" !default;
  */
  /*
  @function slick-image-url($url) {
  	@if function-exists(image-url) {
  			@return image-url($url);
  	}
  	@else {
  			@return url($slick-loader-path + $url);
  	}
  }

  @function slick-font-url($url) {
  	@if function-exists(font-url) {
  			@return font-url($url);
  	}
  	@else {
  			@return url($slick-font-path + $url);
  	}
  }
  */
  /* Slider

  .slick-list {
  	.slick-loading & {
  			background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
  	}
  }
  */
  /* Icons 
  @if $slick-font-family == "slick" {
  	@font-face {
  			font-family: "slick";
  			src: slick-font-url("slick.eot");
  			src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
  			font-weight: normal;
  			font-style: normal;
  	}
  }
  */
  /* Arrows */
  .slick-prev,
  .slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
  }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
  }
  .slick-prev:hover:before, .slick-prev:focus:before,
  .slick-next:hover:before,
  .slick-next:focus:before {
    opacity: 1;
  }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 20px;
    line-height: 1;
    color: #000;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .slick-prev {
    left: -25px;
  }
  [dir=rtl] .slick-prev {
    left: auto;
    right: -25px;
  }
  .slick-next {
    right: -25px;
  }
  [dir=rtl] .slick-next {
    left: -25px;
    right: auto;
  }
  /* Dots */
  .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }
  .slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }
  .slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
  }
  .slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
  }
  .slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
  }
  .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: #000;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .slick-dots li.slick-active button:before {
    color: #000;
    opacity: 0.75;
  }
  article ul {
    list-style: none;
  }
  article img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  article img.aligncenter {
    margin: 0 auto;
    display: block;
  }
  article img.alignright {
    margin: 0 0 0 auto;
    display: block;
  }
  .imgLine2, .imgLine3, .imgLine4, .twoCol, .colorBox, .borderBox, .ytWrap {
    margin-top: 50px;
  }
  .kome {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
    margin-top: 10px;
    font-size: 14px;
  }
  .kome:before {
    content: "※";
  }
  .kome + .kome {
    margin-top: 0;
  }
  a.icon {
    display: inline-block;
    position: relative;
    padding-right: 20px;
  }
  a.icon:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    position: absolute;
    right: -5px;
    top: 0.1em;
  }
  a.icon[href$=pdf]:after {
    background-image: url(../images/common/icon_pdf.png);
  }
  a.icon[href$=xls]:after, a.icon[href$=xlsx]:after {
    background-image: url(../images/common/icon_xls.png);
  }
  .ico_blank {
    display: inline-block;
    width: 11px;
    height: 11px;
    background: url("../images/common/icon_blank.svg") no-repeat 0 0;
    background-size: cover;
    vertical-align: middle;
    margin-left: 5px;
    position: relative;
    top: -4px;
  }
  .imgLine2 {
    display: flex;
    justify-content: center;
  }
  .imgLine2 li {
    text-align: center;
    width: calc(50% - 30px);
  }
  .imgLine2 li:nth-of-type(odd) {
    margin-right: 60px;
  }
  .imgLine2 li img {
    max-width: 100%;
  }
  .imgLine2.small li {
    width: calc(33% - 40px);
  }
  .imgLine2 .cap {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }
  .imgLine2 .stc {
    width: 230px;
  }
  .imgLine2 .stc_txt {
    font-size: 16px;
    margin: 0 0 15px;
  }
  .imgLine2_stc {
    display: flex;
    justify-content: flex-start;
  }
  .imgLine2_stc li {
    text-align: center;
    width: calc(50% - 30px);
  }
  .imgLine2_stc li:nth-of-type(odd) {
    margin-right: 20px;
  }
  .imgLine2_stc li img {
    max-width: 100%;
  }
  .pdf_i {
    padding-right: 5px;
  }
  .stc li {
    text-align: left;
  }
  .imgLine3 {
    display: flex;
    justify-content: center;
  }
  .imgLine3 li {
    text-align: center;
    width: calc(33% - 40px);
  }
  .imgLine3 li:not(:nth-of-type(3n)) {
    margin-right: 60px;
  }
  .imgLine3 li img {
    max-width: 100%;
  }
  .imgLine3 .cap {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }
  .imgLine6 {
    display: flex;
    justify-content: center;
  }
  .imgLine6 li {
    text-align: center;
    width: calc(33% - 40px);
  }
  .imgLine6 li:not(:nth-of-type(6n)) {
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .imgLine6 li img {
    max-width: 100%;
  }
  .imgLine6 .cap {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }
  .imgLine4 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .imgLine4 li {
    width: calc(25% - 36px);
    margin-right: 48px;
  }
  .imgLine4 li:nth-of-type(4n) {
    margin-right: 0;
  }
  .imgLine4 li:nth-of-type(n + 5) {
    margin-top: 48px;
  }
  .imgLine4 li a {
    display: block;
    transition: 0.4s;
  }
  .imgLine4 li a:hover {
    opacity: 0.7;
  }
  .imgLine4 li img {
    width: 100%;
  }
  .imgLine4 .cap {
    display: block;
    text-align: left;
    font-size: 12px;
    margin-top: 5px;
  }
  .imgInP {
    overflow: hidden;
  }
  .imgInP .img {
    max-width: 300px;
  }
  .imgInP .img img {
    width: 100%;
    height: auto;
  }
  .imgInP .img .cap {
    display: block;
    text-align: left;
    font-size: 13px;
    margin-top: 5px;
  }
  .imgInP .img.left {
    float: left;
    margin-right: 20px;
  }
  .imgInP .img.right {
    float: right;
    margin-left: 20px;
  }
  .twoCol {
    display: flex;
  }
  .twoCol.items_center {
    align-items: center;
  }
  .twoCol > div {
    width: 50%;
  }
  .twoCol > div:first-of-type {
    padding-right: 30px;
  }
  .twoCol > div:last-of-type {
    padding-left: 30px;
  }
  .twoCol .txt {
    flex: 1;
  }
  .twoCol .txt *:nth-child(1) {
    margin-top: 0;
  }
  .twoCol .img {
    width: 50%;
  }
  .twoCol .img.round {
    overflow: hidden;
    border-radius: 30px;
  }
  .twoCol .img img {
    width: 100%;
    height: auto;
  }
  .twoCol .img .cap {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    text-align: left;
  }
  .twoCol .img .modal_image {
    text-decoration: none;
    display: block;
    transition: 0.4s;
  }
  .twoCol .img .modal_image:hover {
    opacity: 0.7;
    color: #191919;
  }
  .twoCol .img .modal_image span {
    display: block;
    margin-top: 5px;
    text-align: right;
    font-size: 13px;
  }
  .twoCol .img .modal_slide:not(:first-of-type) {
    display: none;
  }
  .scrollTable {
    overflow: auto;
  }
  .scrolltext {
    font-size: 12px;
    display: block;
    text-align: right;
    margin: 20px 0 -10px;
  }
  .colorBox {
    background-color: #f9f9f9;
    padding: 30px 35px;
  }
  .colorBox *:nth-child(1) {
    margin-top: 0;
  }
  .colorBox .title {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .colorBox.round {
    border-radius: 20px;
  }
  .colorBox.blue {
    background-color: #0050ff;
  }
  .borderBox {
    border: 1px solid #191919;
    padding: 50px 80px 60px;
  }
  .borderBox .title {
    display: block;
    position: relative;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .borderBox .title:not(:first-of-type) {
    margin-top: 60px;
  }
  .borderBox .title:before {
    content: "";
    display: inline-block;
    background-color: #191919;
    position: absolute;
    height: 1px;
    width: 50px;
    left: -80px;
    top: 23px;
  }
  .borderBox *:nth-child(1) {
    margin-top: 0;
  }
  .col2_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .col2_wrap .left {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .col2_wrap .right {
    width: calc(50% - 15px);
  }
  .border-box {
    border: 1px solid #ccc;
    padding: 20px;
  }
  .ytWrap {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
  .ytWrap .ytWrap_inner {
    position: relative;
    padding-bottom: 56.25%;
  }
  .ytWrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  /* common class */
  strong {
    font-weight: bold !important;
  }
  .taC {
    text-align: center !important;
  }
  .taL {
    text-align: left !important;
  }
  .taR {
    text-align: right !important;
  }
  .Center {
    margin: 0 auto !important;
  }
  .ovh {
    overflow: hidden !important;
  }
  .mw100 {
    max-width: 100% !important;
    width: auto !important;
  }
  .w100p {
    width: 100% !important;
  }
  .inline {
    display: inline !important;
  }
  .mB0 {
    margin-bottom: 0 !important;
  }
  .mB5 {
    margin-bottom: 5px !important;
  }
  .mB10 {
    margin-bottom: 10px !important;
  }
  .mB20 {
    margin-bottom: 20px !important;
  }
  .mB30 {
    margin-bottom: 30px !important;
  }
  .mB40 {
    margin-bottom: 40px !important;
  }
  .mB50 {
    margin-bottom: 50px !important;
  }
  .mT0 {
    margin-top: 0 !important;
  }
  .mT5 {
    margin-top: 5px !important;
  }
  .mT10 {
    margin-top: 10px !important;
  }
  .mT20 {
    margin-top: 20px !important;
  }
  .mT30 {
    margin-top: 30px !important;
  }
  .mT40 {
    margin-top: 40px !important;
  }
  .mT50 {
    margin-top: 50px !important;
  }
  .mL0 {
    margin-left: 0px !important;
  }
  .mL5 {
    margin-left: 5px !important;
  }
  .mL10 {
    margin-left: 10px !important;
  }
  .mL20 {
    margin-left: 20px !important;
  }
  .mL30 {
    margin-left: 30px !important;
  }
  .mL40 {
    margin-left: 40px !important;
  }
  .mL50 {
    margin-left: 50px !important;
  }
  .mR0 {
    margin-right: 0px !important;
  }
  .mR5 {
    margin-right: 5px !important;
  }
  .mR10 {
    margin-right: 10px !important;
  }
  .mR20 {
    margin-right: 20px !important;
  }
  .mR30 {
    margin-right: 30px !important;
  }
  .mR40 {
    margin-right: 40px !important;
  }
  .mR50 {
    margin-right: 50px !important;
  }
  .mB0_pc {
    margin-bottom: 0 !important;
  }
  .mB5_pc {
    margin-bottom: 5px !important;
  }
  .mB10_pc {
    margin-bottom: 10px !important;
  }
  .mB20_pc {
    margin-bottom: 20px !important;
  }
  .mB30_pc {
    margin-bottom: 30px !important;
  }
  .mB40_pc {
    margin-bottom: 40px !important;
  }
  .mB50_pc {
    margin-bottom: 50px !important;
  }
  .mT0_pc {
    margin-top: 0 !important;
  }
  .mT5_pc {
    margin-top: 5px !important;
  }
  .mT10_pc {
    margin-top: 10px !important;
  }
  .mT20_pc {
    margin-top: 20px !important;
  }
  .mT30_pc {
    margin-top: 30px !important;
  }
  .mT40_pc {
    margin-top: 40px !important;
  }
  .mT50_pc {
    margin-top: 50px !important;
  }
  .mL0_pc {
    margin-left: 0px !important;
  }
  .mL5_pc {
    margin-left: 5px !important;
  }
  .mL10_pc {
    margin-left: 10px !important;
  }
  .mL20_pc {
    margin-left: 20px !important;
  }
  .mL30_pc {
    margin-left: 30px !important;
  }
  .mL40_pc {
    margin-left: 40px !important;
  }
  .mL50_pc {
    margin-left: 50px !important;
  }
  .mR0_pc {
    margin-right: 0px !important;
  }
  .mR5_pc {
    margin-right: 5px !important;
  }
  .mR10_pc {
    margin-right: 10px !important;
  }
  .mR20_pc {
    margin-right: 20px !important;
  }
  .mR30_pc {
    margin-right: 30px !important;
  }
  .mR40_pc {
    margin-right: 40px !important;
  }
  .mR50_pc {
    margin-right: 50px !important;
  }
  .size12 {
    font-size: 12px !important;
  }
  .size14 {
    font-size: 14px !important;
  }
  .size16 {
    font-size: 16px !important;
  }
  .size18 {
    font-size: 18px !important;
  }
  .size20 {
    font-size: 20px !important;
  }
  .taC_pc {
    text-align: center !important;
  }
  .pointerNone {
    cursor: default;
    text-decoration: none;
  }
  .pointerNone:hover {
    color: #191919;
  }
  .textred {
    color: #E94141 !important;
  }
  .textblue {
    color: blue !important;
  }
  .bold {
    font-weight: bold !important;
  }
  .underline {
    text-decoration: underline !important;
  }
  .bdnone {
    border: none !important;
  }
  .floatL {
    float: left;
  }
  .floatR {
    float: right;
  }
  .preBox {
    background: #eff0f4;
    border: 1px solid #0050ff;
    padding: 15px;
    box-sizing: border-box;
    clear: both;
    overflow: hidden;
    margin-top: 30px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
  }
  .preBox pre {
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  body:before {
    width: 50vw;
    height: 254px;
    content: "";
    display: block;
    position: fixed;
    background-color: #edf3ff;
    transform: rotate(-23.4deg);
    z-index: -1;
    transform-origin: left top;
    left: -110px;
    top: 110px;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  body.mangaWrap:before, body.staffDetail:before, body#recuruitTop:before {
    display: none;
  }
  .inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .inner.narrow {
    max-width: 860px;
  }
  .hero {
    position: relative;
    height: 300px;
  }
  .hero.wide {
    height: 520px;
  }
  .hero.wide .page_title {
    padding-top: 100px;
    top: 0;
    left: 0;
    transform: none;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: calc((100% - 1120px) / 2);
  }
  .hero.wide .page_title img {
    display: inline-block;
    padding-left: 40px;
  }
  .hero.production_second {
    background: url(../images/recruit/recruit_header_production_second.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .hero.production_second .page_title {
    justify-content: center;
    padding-left: 0;
  }
  .hero.production_second .page_title img {
    padding-left: 0;
  }
  .hero_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero .page_title {
    font-family: "Oswald", "Noto Sans JP", sans-serif;
    color: #000;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-transform: uppercase;
    font-size: 60px;
    margin-top: 40px;
  }
  .hero .page_title span {
    display: block;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0.5em;
    font-size: 20px;
  }
  .hero .page_title.jp {
    font-style: normal;
  }
  .hero.newHero {
    max-width: 1080px;
    width: 95%;
    margin: 0 auto;
    padding: 160px 0 70px;
    line-height: 1;
  }
  .hero.newHero .engTit {
    font-size: 1.4rem;
    color: #0050ff;
    line-height: 1;
    text-transform: uppercase;
  }
  .hero.newHero h1 {
    color: #333;
    font-size: 6rem;
    font-weight: 700;
    position: relative;
    text-align: left;
    transform: none;
    top: auto;
    left: auto;
    margin: 25px 0 0 0;
    font-style: normal;
  }
  .breadcrumb {
    padding: 10px 0;
  }
  .breadcrumb_list {
    line-height: 1;
    font-size: 14px;
  }
  .breadcrumb_list a {
    color: #000;
    text-decoration: none;
  }
  .breadcrumb_list a:hover {
    opacity: 0.7;
  }
  .breadcrumb_list > span:after {
    content: ">";
    margin: 0 0.5em;
  }
  .breadcrumb_list > span:last-child:after {
    display: none;
  }
  #recruitSecond {
    padding-top: 60px;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  #recruitSecond .recruit_h2_en {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 72px;
  }
  #recruitSecond .recruit_h2_en span {
    color: #0050ff;
  }
  #recruitSecond p {
    line-height: 1.8;
    margin-top: 30px;
  }
  #recruitSecond p.wide {
    margin-top: 60px;
  }
  #recruitSecond section + section {
    margin-top: 70px;
  }
  .recruit_tobira_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 110px;
  }
  .recruit_tobira_list .item {
    position: relative;
    width: calc(50% - 35px);
  }
  .recruit_tobira_list .item:nth-of-type(even) {
    margin-left: 70px;
  }
  .recruit_tobira_list .item:nth-of-type(n + 3) {
    margin-top: 70px;
  }
  .recruit_tobira_list .item a {
    display: block;
  }
  .recruit_tobira_list .item a:hover figure {
    opacity: 0.8;
  }
  .recruit_tobira_list .item figure {
    transition: 0.3s;
  }
  .recruit_tobira_list .item figure img {
    width: 100%;
  }
  .recruit_tobira_list .item .title {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
  .recruit_tobira_list .item .title img {
    width: 75%;
  }
  .recruitH2 {
    font-weight: bold;
    line-height: 1.3;
    position: relative;
    font-size: 26px;
    padding-bottom: 20px;
    border-bottom: 3px solid #0050ff;
    /*
    	&:before{
    	content: "";
    	display: inline-block;
    	background-color: $blu;
    	position: absolute;
    	bottom: -3px;
    	left: 0;
    	height: 3px;
    	width: 115px;
    	@if $type == sp{
    	bottom: -2px;
    	height: 2px;
    }
    }
    	*/
  }
  .recruitH2 + p {
    margin-top: 20px !important;
  }
  .recruitH3 {
    font-weight: bold;
    line-height: 1.3;
    background-color: #eaeafe;
    font-size: 22px;
    padding: 10px 20px;
    margin-top: 40px;
  }
  .recruitH4 {
    font-weight: bold;
    line-height: 1.3;
    color: #3131f5;
    padding-bottom: 10px;
    position: relative;
    font-size: 18px;
    margin-top: 20px;
  }
  .recruitH4 + p {
    margin-top: 10px !important;
  }
  .recruitH4:after {
    content: "";
    display: inline-block;
    background-color: #3131f5;
    height: 1px;
    width: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .catch_box {
    font-weight: bold;
    text-align: center;
    line-height: 2;
    text-align: center;
    background-color: #eaeafe;
    padding: 30px;
    margin-top: 30px;
  }
  .recruit_common_list {
    margin-top: 20px;
  }
  .recruit_common_list li {
    margin-top: 10px;
    position: relative;
    padding-left: 30px;
  }
  .recruit_common_list li:before {
    content: "";
    display: inline-block;
    background-color: #0050ff;
    position: absolute;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    top: 9px;
    left: 9px;
  }
  .btn {
    font-weight: 700;
    line-height: 1;
    background: #0050ff;
    border: 2px solid #0050ff;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
    width: 300px;
    font-size: 18px;
    padding: 20px;
  }
  .btn:before {
    content: "";
    width: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    z-index: -1;
  }
  .btn:after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s;
    right: 20px;
  }
  .btn:hover {
    color: #0050ff;
    opacity: 1;
  }
  .btn:hover:before {
    width: 100%;
  }
  .btn.wht {
    background: #fff;
    color: #191919;
    border: 0;
  }
  .btn.wht:before {
    background: #191919;
  }
  .btn.wht:hover {
    color: #fff;
  }
  .btn.back:after {
    right: auto;
    transform: rotate(135deg);
    left: 20px;
  }
  .anchor_list {
    display: flex;
    margin-bottom: 60px;
  }
  .anchor_list .btn {
    width: calc(33.334% - 20px);
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .anchor_list .btn:nth-of-type(1) {
    background-color: #32c83c;
    border: 2px solid #32c83c;
  }
  .anchor_list .btn:nth-of-type(2) {
    background-color: #3278ff;
    border: 2px solid #3278ff;
  }
  .anchor_list .btn:nth-of-type(3) {
    background-color: #ff91a0;
    border: 2px solid #ff91a0;
  }
  .anchor_list .btn:nth-of-type(4) {
    background-color: #ff91a0;
    border: 2px solid #ff91a0;
  }
  .anchor_list .btn:nth-of-type(5) {
    background-color: #ff91a0;
    border: 2px solid #ff91a0;
  }
  .anchor_list .btn:not(:first-of-type) {
    margin-left: 30px;
  }
  .anchor_list .btn:hover {
    color: #000;
  }
  .anchor_list .btn:after {
    border-right: none;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }
  .production_detail_list .item {
    display: flex;
    align-items: center;
  }
  .production_detail_list .item:nth-of-type(odd) .text {
    padding-left: 70px;
    padding-right: 70px;
  }
  .production_detail_list .item:nth-of-type(odd) figure {
    box-shadow: -8px 8px 0px 0px #fff5a4;
  }
  .production_detail_list .item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .production_detail_list .item:nth-of-type(even) .text {
    padding-right: 70px;
    padding-left: 70px;
  }
  .production_detail_list .item:nth-of-type(even) figure {
    box-shadow: -8px 8px 0px 0px #fff5a4;
  }
  .production_detail_list .item + .item {
    margin-top: 100px;
  }
  .production_detail_list .item figure {
    width: 50%;
  }
  .production_detail_list .item figure img {
    width: 100%;
  }
  .production_detail_list .item .text {
    width: 50%;
  }
  .production_detail_list .item .text .recruitH2 {
    font-size: 42px;
  }
  .production_link_list {
    display: flex;
    justify-content: center;
    margin-top: 80px;
  }
  .production_link_list a {
    display: block;
    text-decoration: none;
    color: #000;
  }
  .production_link_list a + a {
    margin-left: 80px;
  }
  .production_link_list a:hover figure {
    background-color: #0050ff;
  }
  .production_link_list a.current figure {
    background-color: #0050ff;
  }
  .production_link_list a figure {
    transition: 0.3s;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    transform: rotate(-20deg);
  }
  .production_link_list a figure img {
    transform: rotate(20deg);
  }
  .production_link_list a .title {
    display: block;
    text-align: center;
    margin-top: 25px;
  }
  .recruit_qa dl {
    margin-top: 35px;
  }
  .recruit_qa dl dt {
    font-weight: bold;
    position: relative;
    font-size: 20px;
    padding-left: 35px;
  }
  .recruit_qa dl dt:before {
    content: "Q.";
    font-family: "Oswald", sans-serif;
    color: #0050ff;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 26px;
  }
  .recruit_qa dl dd {
    position: relative;
    padding-left: 35px;
    margin-top: 20px;
  }
  .recruit_qa dl dd:before {
    content: "A.";
    font-family: "Oswald", sans-serif;
    color: #babacc;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 26px;
  }
  hr {
    border: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 50px 0;
  }
  .recruit_table {
    margin-top: 30px;
  }
  .recruit_table tr th {
    background-color: #d8d8f7;
    font-weight: bold;
    padding: 30px;
    font-size: 22px;
    border-bottom: 5px solid #fff;
  }
  .recruit_table tr td {
    background-color: #eaeafe;
    padding: 30px;
    border-bottom: 5px solid #fff;
    border-left: 5px solid #fff;
  }
  .recruit_table tr td dl + dl {
    margin-top: 20px;
  }
  .recruit_table tr td dl dt {
    font-weight: bold;
    font-size: 18px;
  }
  .recruit_table tr td dl dd {
    margin-top: 5px;
  }
  .recruit_staff_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 120px;
  }
  .recruit_staff_list li {
    width: 20.5%;
  }
  .recruit_staff_list li:not(:nth-of-type(4n)) {
    margin-right: 6%;
  }
  .recruit_staff_list li:nth-of-type(n + 5) {
    margin-top: 70px;
  }
  .recruit_staff_list a {
    text-decoration: none;
    color: #000;
    display: block;
  }
  .recruit_staff_list a:hover figure {
    box-shadow: 0px 0px 0px 0px #fff5a4;
  }
  .recruit_staff_list a:hover figure:before {
    opacity: 0.3;
  }
  .recruit_staff_list a figure {
    text-align: center;
    border-radius: 50%;
    box-shadow: -4px 4px 0px 0px #fff5a4;
    width: 202px;
    height: 202px;
    margin: 0 auto;
    transition: 0.3s;
    position: relative;
  }
  .recruit_staff_list a figure:before {
    content: "";
    display: block;
    background-color: #fff5a4;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
  }
  .recruit_staff_list a figure img {
    display: inline-block;
  }
  .recruit_staff_list a .text_wrap {
    margin-top: 20px;
  }
  .recruit_staff_list a .text_wrap span {
    display: block;
  }
  .recruit_staff_list a .text_wrap .title {
    font-weight: bold;
    text-align: center;
    position: relative;
    font-size: 20px;
  }
  .recruit_staff_list a .text_wrap .title:after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .recruit_staff_list a .text_wrap .text {
    margin-top: 10px;
    text-align: center;
  }
  .interview_wrap {
    background: url(../images/recruit/staff/bg.jpg) repeat;
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 25px 30px;
    margin-top: 60px;
  }
  .interview_wrap .h1_wrap {
    width: 50%;
    padding-right: 50px;
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-template-rows: auto auto;
  }
  .interview_wrap .h1_wrap .tn {
    grid-column: 1;
    grid-row: 1/span 2;
    padding-right: 30px;
  }
  .interview_wrap .h1_wrap .tn img {
    width: 100%;
    height: auto;
  }
  .interview_wrap .h1_wrap .en {
    grid-column: 2;
    grid-row: 1;
  }
  .interview_wrap .h1_wrap .staffH1 {
    grid-column: 2;
    grid-row: 2;
  }
  .interview_wrap .h1_wrap .en {
    color: #3131f5;
    font-weight: bold;
    font-size: 14px;
    align-self: flex-end;
  }
  .interview_wrap .h1_wrap .staffH1 {
    line-height: 1.3;
    font-size: 2rem;
    margin-top: 10px;
  }
  .interview_wrap .h1_wrap .title {
    display: block;
    font-weight: bold;
    line-height: 1.3;
    font-size: 2.4rem;
    margin-top: 10px;
  }
  .interview_wrap .text_wrap {
    width: 50%;
    padding-left: 50px;
    border-left: 1px solid #000;
    font-size: 1.6rem;
  }
  .staff_qa .item {
    display: flex;
    justify-content: space-between;
  }
  .staff_qa .item + .item {
    margin-top: 70px;
  }
  .staff_qa .item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .staff_qa .item figure {
    width: 370px;
    margin-left: 8px;
  }
  .staff_qa .item figure img {
    box-shadow: -8px 8px 0px 0px #fff5a4;
  }
  .staff_qa .item .text_wrap {
    background: url(../images/recruit/staff/bg.jpg) repeat;
    width: calc(100% - 405px);
    padding: 50px;
  }
  .staff_qa .item .text_wrap .recruitH2:not(:first-of-type) {
    margin-top: 50px;
  }
  .recruit_staff_sche {
    background: url(../images/recruit/staff/bg.jpg) repeat;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 100px;
  }
  .recruit_staff_sche .inner {
    background-color: #fff;
    max-width: 1080px;
    padding: 60px 115px;
  }
  .recruit_staff_sche .scheH2 {
    text-align: center;
    font-weight: bold;
    position: relative;
    font-size: 32px;
    padding-top: 70px;
  }
  .recruit_staff_sche .scheH2:before {
    content: "";
    display: inline-block;
    background: url(../images/recruit/staff/icon_sche.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: calc(50% - 28px);
    width: 56px;
    height: 56px;
  }
  .recruit_staff_sche .staff_sche_wrap {
    margin-top: 60px;
  }
  .recruit_staff_sche .staff_sche_wrap .item {
    display: flex;
  }
  .recruit_staff_sche .staff_sche_wrap .item + .item {
    margin-top: 30px;
  }
  .recruit_staff_sche .staff_sche_wrap .item figure {
    width: 223px;
  }
  .recruit_staff_sche .staff_sche_wrap .item .text_wrap {
    width: calc(100% - 183px);
    margin-left: 40px;
  }
  .recruit_staff_sche .twoCol > div:first-of-type {
    padding-right: 20px;
  }
  .recruit_staff_sche .twoCol > div:last-of-type {
    padding-left: 20px;
  }
  .recruit_staff_sche .twoCol .recruitH3 {
    border-left: 6px solid #0050ff;
  }
  .recruit_staff_message .inner {
    background-color: #fff;
    padding: 20px 0 60px;
  }
  .recruit_staff_message .messageH2 {
    text-align: center;
    font-weight: bold;
    position: relative;
    font-size: 32px;
    padding-top: 70px;
  }
  .recruit_staff_message .messageH2:before {
    content: "";
    display: inline-block;
    background: url(../images/recruit/staff/icon_megafon.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: calc(50% - 40px);
    width: 79px;
    height: 69px;
  }
  .recruit_staff_message .message_box {
    background-color: #eaeafe;
    position: relative;
    text-align: center;
    padding: 30px 30px 40px;
    margin: 40px auto 0 !important;
    max-width: 720px;
  }
  .recruit_staff_message .message_box:after {
    content: "";
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #eaeafe;
    border-right: 10px solid #eaeafe;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 10px);
    transform: rotate(45deg);
  }
  .recruit_staff_message .message_box .title {
    color: #0050ff;
    font-weight: bold;
    margin-top: 0px !important;
    font-size: 32px;
  }
  .recruit_staff_message .message_box .text {
    font-weight: bold;
    margin-top: 20px !important;
    font-size: 20px;
  }
  .recruit_staff_message img {
    width: 100%;
  }
  .business_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .business_list_item {
    border: 1px solid #cbcbcb;
    text-align: center;
    width: 48.8%;
    margin-bottom: 2.4%;
    padding: 40px 45px;
  }
  .business_list_item h3 {
    line-height: 1.3;
    font-weight: 700;
    border-bottom: 1px solid #cbcbcb;
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .business_list_item h3 span {
    color: #0050ff;
  }
  .business_list_item address {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    color: #0050ff;
    line-height: 1.5;
  }
  .business_list_item address span {
    color: #000;
    font-size: 20px;
  }
  .business_list_item address a {
    color: #0050ff;
    text-decoration: none;
  }
  .business_list_item address a.tel {
    font-size: 28px;
    pointer-events: none;
  }
  .business_list_item address a.cv_btn {
    display: block;
    font-weight: 700;
    line-height: 1;
    background: #0050ff;
    border: 2px solid #0050ff;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 40px;
  }
  .business_list_item address a.cv_btn:after {
    content: "";
    width: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    z-index: -1;
  }
  .business_list_item address a.cv_btn:before {
    content: "";
    width: 1.375em;
    height: 1em;
    background: url(../images/common/ico_mail.png) no-repeat center/contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1em;
    transition: all 0.3s;
  }
  .business_list_item address a.cv_btn:hover {
    opacity: 1;
    color: #0050ff;
  }
  .business_list_item address a.cv_btn:hover:after {
    width: 100%;
  }
  .business_list_item address a.cv_btn:hover:before {
    background: url(../images/common/ico_mail_blu.png) no-repeat center/contain;
  }
  .arwlist {
    text-align: center;
    width: auto;
    height: auto;
    padding: 2em 0;
  }
  .arwlist li {
    width: 80%;
    margin: 70px auto 0;
    padding: 1em 0;
    border: 1px solid #ccc;
    position: relative;
  }
  .arwlist + li {
    position: relative;
    margin-top: 50px;
    /*矢印画像の高さと配置を考慮して設定*/
  }
  .arwlist li + li:before {
    content: "";
    display: block;
    position: absolute;
    top: -40px;
    /*矢印画像の高さと配置を考慮して設定*/
    left: 49%;
    width: 10px;
    height: 10px;
    border-top: solid 3px #697b91;
    border-right: solid 3px #697b91;
    transform: rotate(135deg);
  }
  body.mangaWrap {
    background-color: #f7fbff;
  }
  #manga {
    padding-top: 100px;
    background-image: url(../images/recruit/manga-bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 50% 0;
  }
  .manga_detail .manga_head {
    background-color: #fff;
    padding-top: 55px;
  }
  .manga_detail .manga_head .date {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0050ff;
    text-align: center;
  }
  .manga_detail .manga_head h1 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
  }
  .manga_detail .manga_body {
    background-color: #fff;
    padding-top: 50px;
  }
  .manga_detail .manga_body .manga {
    text-align: center;
    max-width: 90%;
    width: 820px;
    margin: 0 auto;
  }
  .manga_detail .manga_body .manga img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .manga_detail .manga_body .manga + .manga {
    margin-top: 30px;
  }
  .manga_detail .mangaNav {
    max-width: 90%;
    width: 820px;
    margin: 30px auto 0;
  }
  .manga_detail .mangaNav > span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0050ff;
    border-bottom: 1px solid #cfd6dc;
    padding-bottom: 10px;
    display: block;
  }
  .manga_detail .mangaNav ul {
    font-size: 1.4rem;
  }
  .manga_detail .mangaNav ul li {
    margin-top: 0.5em;
    padding: 0 1em 0 1em;
    position: relative;
  }
  .manga_detail .mangaNav ul li:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #8db1ff;
    position: absolute;
    top: 8px;
    left: 0;
  }
  .manga_detail .mangaNav ul li span {
    font-weight: 400;
  }
  .manga_detail .jobInfo {
    display: flex;
    max-width: 90%;
    width: 820px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 60px auto 0;
    padding: 20px;
  }
  .manga_detail .jobInfo .img {
    max-width: 360px;
    width: 50%;
  }
  .manga_detail .jobInfo .img img {
    width: 100%;
    height: auto;
  }
  .manga_detail .jobInfo .txt {
    flex: 1;
    padding-left: 30px;
  }
  .manga_detail .jobInfo .txt .title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0050ff;
    border-bottom: 1px solid #cfd6dc;
    padding-bottom: 10px;
  }
  .manga_detail .jobInfo .txt p {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .manga_detail .jobInfo .txt a {
    font-size: 1.6rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
  }
  .manga_detail .jobInfo .txt a svg {
    width: 8px;
    height: 16px;
    fill: #0050ff;
    display: inline-block;
    margin-left: 0.5em;
  }
  .manga_detail .mangaBackWrap {
    background-color: #f7fbff;
    margin-top: 70px;
    padding-top: 80px;
  }
  .manga_detail .mangaBackWrap a {
    display: block;
    margin: 0 auto;
  }
  .mangaArchive {
    margin-top: 150px;
  }
  .mangaArchive h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0050ff;
  }
  .mangaArchive p {
    font-size: 1.6rem;
    margin-top: 20px;
  }
  .mangaArchive .mangaList {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
  }
  .mangaArchive .mangaList .mangaListItem {
    width: calc((100% - 24px) / 2);
  }
  .mangaArchive .mangaList .mangaListItem a {
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid #c6cdd3;
    box-shadow: 4px 4px 0 #c6cdd3;
    overflow: hidden;
  }
  .mangaArchive .mangaList .mangaListItem a .thumb {
    width: 160px;
    padding: 15px;
  }
  .mangaArchive .mangaList .mangaListItem a .thumb img {
    width: 100%;
    height: auto;
  }
  .mangaArchive .mangaList .mangaListItem a .date {
    flex: 1;
    padding: 15px 15px 15px 0;
  }
  .mangaArchive .mangaList .mangaListItem a .date .num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0050ff;
    display: block;
  }
  .mangaArchive .mangaList .mangaListItem a .date .title {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
  }
  .aboutTop,
  .aboutFlow {
    position: relative;
    z-index: 10;
    margin-top: 100px;
  }
  .aboutTop:before,
  .aboutFlow:before {
    content: "";
    display: block;
    background-image: url(../images/recruit/work-bg.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    aspect-ratio: 742/614;
    position: absolute;
    bottom: -80px;
    right: 0;
    max-width: 742px;
    width: 60%;
    z-index: -1;
  }
  .aboutTop h2,
  .aboutFlow h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0050ff;
  }
  .aboutTop p.lead,
  .aboutFlow p.lead {
    font-size: 1.6rem;
    margin-top: 20px;
    display: block;
    width: 35%;
  }
  .aboutTop p.btnWrap,
  .aboutFlow p.btnWrap {
    margin-top: 35px;
  }
  .aboutFlow {
    margin-top: 180px;
  }
  .aboutFlow:before {
    content: "";
    display: block;
    background-image: url(../images/recruit/flow_tobira_img.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    aspect-ratio: 644/457;
    position: absolute;
    bottom: -40px;
    right: 0;
    max-width: 390px;
    width: 50%;
    z-index: -1;
  }
  .recNews_list .recNews_item {
    border-bottom: 1px solid #cfd6dc;
  }
  .recNews_list .recNews_item a {
    font-size: 1.6rem;
    display: flex;
    position: relative;
    text-decoration: none;
    width: 100%;
    align-items: center;
    padding: 30px 20px;
    transition: all 0.3s;
  }
  .recNews_list .recNews_item a .date {
    color: #0050ff;
    width: 120px;
  }
  .recNews_list .recNews_item a .title {
    color: #333;
    margin-right: 10px;
  }
  .recNews_list .recNews_item a svg {
    width: 7px;
    height: 14px;
    fill: #0050ff;
    margin: 0 0 0 auto;
  }
  .recNews_list .recNews_item a:hover {
    background-color: rgba(0, 80, 255, 0.2);
  }
  .pagenation {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
  .pagenation span,
  .pagenation a {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    line-height: 1;
    position: relative;
    font-size: 18px;
    margin: 0 15px;
    padding: 0 5px 10px;
  }
  .pagenation span:after,
  .pagenation a:after {
    content: "";
    width: 0;
    background: #0050ff;
    transition: all 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
  }
  .pagenation a:hover {
    opacity: 1;
    color: #0050ff;
  }
  .pagenation a:hover:after {
    width: 100%;
  }
  .pagenation .current {
    color: #0050ff;
  }
  .pagenation .current:after {
    width: 100%;
  }
  .pagenation .prev {
    display: flex;
    align-items: center;
  }
  .pagenation .prev:before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 5px;
  }
  .pagenation .next {
    display: flex;
    align-items: center;
  }
  .pagenation .next:before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) scale(-1, 1);
    margin-left: 5px;
    order: 2;
  }
  .forSP {
    display: none !important;
  }
}
/*# sourceMappingURL=map/recruit.css.map */
