@charset "UTF-8";

/* Theme Name: recruitNew */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
}

/* root */
:root {
    --color: #ff7c34;
    --white: #ffffff;
    --black: #333;
    --gray: #444;
    --gray2: #f6f6f6;
    --en: "Roboto", "Noto Sans JP", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5em;
}

/* 基本設定 */
body {
    background-color: var(--white);
    text-align: left;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--black);
}

/* 横幅768px以上で読み込む */
@media screen and (min-width: 768px) {
    body {
        font-size: 15px;
    }

}

/* 横幅1024px以上で読み込む */
@media screen and (min-width: 1024px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .spNone {
        display: none;
    }
}

/* リンク */
a {
    text-decoration: none;
    color: var(--color);
    transition: all .5s;
}

a:hover {
    color: var(--color);
}

a img:hover {
    opacity: 0.8;
}

.sliderWrap {
    position: relative;
}

.sliderWrap::after {
    position: absolute;
    display: block;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/sp_catch.png') center bottom/contain no-repeat;
}

/* 横幅768px以上で読み込む */
@media screen and (min-width: 768px) {
    .sliderWrap::after {
        background: url('img/pc_catch.png') center bottom/contain no-repeat;
    }
}

header {
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh;
}

header img,
.headerImage {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    object-fit: cover;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0.5em;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
}

.headerLogo {
    width: 30px;
    height: auto;
    vertical-align: text-bottom;
}

nav h1 {
    display: inline;
}

nav h1 a {
    color: var(--white);
}

.navLeft,
.navRight {
    flex-basis: auto;
}

.navRight {
    text-align: right;
}

.navFlex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navFlex div {
    margin-left: 5px;
    flex-basis: auto;
}


.pcMenu>li {
    margin-right: 1em;
    display: inline-block;
}

.pcMenu li a {
    font-weight: bold;
    color: var(--white);
}

.pcMenu li a:hover {
    color: var(--color);
}

.teamList,
.memberList {
    position: relative;
}

.teamListMenu,
.memberListMenu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    padding: 1.5em;
    position: absolute;
    width: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    top: 42px;
    left: -210px;
    background-color: var(--gray);
    text-align: left;
    list-style-type: none;
}

.teamList:hover::after,
.memberList:hover::after {
    position: absolute;
    content: '▼';
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
}

.teamListMenu li,
.memberListMenu li {
    border-bottom: thin solid var(--white);
    margin-bottom: 1em;
}

.teamListMenu li a,
.memberListMenu li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}


.teamListMenu li {
    flex-basis: 48%;
}

.first {
    position: relative;
    padding: 1em;
    border: thin solid var(--white);
    flex-basis: 100% !important;
}

.first::before,
.first::after {
    position: absolute;
    display: block;
    content: '';
    background-color: var(--white);
}

.first::before {
    width: 50px;
    height: 1px;
    top: 50%;
    right: 20px;
}

.first::after {
    width: 10px;
    height: 1px;
    transform: rotate(45deg);
    top: calc(50% - 4px);
    right: 20px;
}

.teamList:hover .teamListMenu,
.memberList:hover .memberListMenu {
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 1024px) {
    .menuList {
        columns: auto 2;
    }
}

@media screen and (max-width: 767px) {
    .pcMenu {
        display: none;
    }
}

.entryLink {
    display: inline-block;
    padding: 11.5px 5px;
    background-color: var(--white);
    border: thin solid var(--black);
    font-size: 10px;
    color: var(--black);
}

#navToggle {
    position: relative;
    cursor: pointer;
    width: 32px;
    height: 24px;
    padding: 20px;
    background-color: var(--white);
    border: thin solid var(--black);
}

#navToggle span {
    transition: all .3s;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    background-color: var(--black);
    width: 20px;
    z-index: 10;
}

#navToggle span:nth-of-type(1) {
    top: 30%;
}

#navToggle span:nth-of-type(2) {
    top: calc(50% - 1px);
}

#navToggle span:nth-of-type(3) {
    bottom: 30%;
}

.menu {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
}

#close {
    position: absolute;
    top: 25px;
    right: 15px;
    z-index: 999;
    cursor: pointer;
}

#close span {
    position: relative;
    display: block;
    width: 30px;
    height: 4px;
    background-color: var(--white);
}

#close span:nth-of-type(1) {
    top: 2px;
    transform: rotate(45deg);
}

#close span:nth-of-type(2) {
    bottom: 2px;
    transform: rotate(-45deg);
}

.menuBox {
    margin: 5em auto;
    width: 80%;
    max-width: 800px;
}

.menuBox img {
    width: 100%;
    height: auto;
}

.menuList {
    margin: 3em auto;
    list-style-type: none;
}

.menuList li {
    margin-bottom: 0.5em;
}

.menuList li a {
    border-bottom: 3px solid var(--white);
    font-size: 2.5em;
    font-weight: bold;
    color: var(--white);
}

main {
    margin: 5em auto 0;
}

.headline2 {
    font-weight: bold;
    font-size: 2.5em;
    font-family: var(--en);
}

.headline3 {
    font-weight: bold;
    font-size: 1.3em;
}

.headline4 {
    margin-bottom: 1em;
    display: inline-block;
    padding: 0.5em;
    background-color: var(--black);
    font-weight: bold;
    font-size: 1.2em;
}

.center {
    margin-bottom: 2em;
    text-align: center;
}

.messageFlex div img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.messageText {
    padding: 1.5em;
    text-align: left;
}

.textWrap {
    margin: 0 auto;
    max-width: 1000px;
}

@media screen and (min-width: 1024px) {
    .messageFlex {
        display: flex;
        margin: 3em auto;
    }

    .messageFlex div {
        flex-basis: 50%;
    }

    .messageText {
        padding: 3em;
    }
}

.philosophy {
    padding: 1.5em;
    background-color: var(--gray);
    color: var(--white);
}

.contentLeft {
    margin-bottom: 1.5em;
}

.contentRight {
    margin-bottom: 3em;
}

@media screen and (min-width: 1024px) {
    .philosophy {
        padding: 3em 10%;
    }

    .contentFlex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .contentLeft {
        flex-basis: 30%;
        text-align: right;
    }

    .contentRight {
        padding-top: 1em;
        flex-basis: 68%;
    }
}

@media screen and (min-width: 768px) {
    .big {
        font-size: 5em;
    }
}

.line {
    margin: 1.5em auto;
    width: 100%;
    height: 1px;
    background-color: var(--white);
}

.content {
    margin: 1.5em auto;
    width: 100%;
    max-width: 800px;
}

.content img {
    display: block;
    width: 100%;
    height: auto;
}

dl {
    margin: 1.5em auto;
}

dd {
    margin-bottom: 1.5em;
}

@media screen and (min-width: 768px) {
    dl:not(.career) {
        display: flex;
        flex-wrap: wrap;
    }

    dt {
        flex-basis: 30%;
    }

    dd {
        flex-basis: 70%;
    }
}

.career dt {
    font-weight: bold;
}

.career dd {
    margin-left: 1em;
    padding-left: 1em;
    border-left: thin solid var(--gray);
}

.job {
    list-style-position: inside;
}

.serviceWrap {
    margin: 3em auto;

}

@media screen and (min-width: 768px) {
    .serviceWrap {
        display: flex;
        flex-wrap: wrap;
        width: 90%;
    }

    .serviceWrap div {
        flex-basis: calc(100% / 3);
    }
}

.serviceWrap div img {
    display: block;
    width: 100%;
    height: auto;
}

footer {
    padding-bottom: 2em;
    background-color: var(--black);
}

.footerEntry {
    padding: 1.5em;
    background-color: var(--color);
}

.footerEntry .headline2 {
    color: var(--white);
}

.entryFlex div:nth-of-type(2) {
    color: var(--white);
}

@media screen and (min-width: 1024px) {
    .footerEntry {
        padding: 3em 10%;
    }

    .entryFlex div:nth-of-type(2) {
        font-size: 1.3em;
    }
}

@media screen and (min-width: 1440px) {

    .entryFlex div:nth-of-type(2) {
        font-size: 1.8em;
    }
}

@media screen and (min-width: 768px) {
    .entryFlex {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .entryFlex div:nth-of-type(2) {
        text-align: right;
    }

}

.footerEntryLink {
    margin: 1.5em auto;
    padding: 2em 0;
    width: 100%;
    display: block;
    background-color: var(--white);
}


.entryImage {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: auto;
    max-width: 1000px;
}

.logoLong {
    display: block;
    margin: 1.5em auto 0;
    width: 60%;
    max-width: 500px;
}

.snsMenu {
    margin: 1.5em auto;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: space-between;
}

.snsMenu li {
    flex-basis: 47%;
    margin-bottom: 1em;
    border-radius: 40px;
    background-color: var(--white);
}

@media screen and (min-width: 768px) {
    .snsMenu li {
        flex-basis: 23%;
    }
}

.snsMenu li a {
    display: inline-block;
    padding: 0.5em 0 0;
    width: 100%;
    height: 100%;
}

.snsMenu li img {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: auto;
}

.servicePage {
    margin: 1.5em auto;
    width: 100%;
    max-width: 1000px;
}

.servicePage div {
    flex-basis: 50%;
}

.footerMenu {
    margin: 1.5em auto;
    width: 90%;
    max-width: 1000px;
}

.footerMenu>li {
    margin-bottom: 2em;
}

.footerMenu li ul {
    margin-left: 1em;
    padding-left: 1em;
    border-left: thin solid var(--white);
    list-style-type: none;
}

@media screen and (min-width: 768px) {
    .footerMenu {
        display: flex;
        flex-wrap: wrap;
    }

    .footerMenu>li {
        flex-basis: 25%;
    }
}

.footerMenu li a {
    color: var(--white);
}

.footerMenu li a:hover {
    color: var(--color);
}

.fadeInBlock {
    transform: translateY(20px);
    opacity: 0;
    transition: .8s all;
}

.interviewWrap .fadeInBlock:nth-of-type(1),
.interviewWrap .fadeInBlock:nth-of-type(2) {
    transform: translateY(0);
    opacity: 1;
    transform: inherit;
}

.fadeIn {
    transform: translateY(0);
    opacity: 1;
}

.headWrap {
    display: flex;
    flex-wrap: wrap;
}

.headWrap div {
    flex-basis: 100%;
}

.headContentLeft {
    padding: 3em 1.5em;
    background-color: var(--gray);
    color: var(--white);
}

.headContentLeft .headContentMenu {
    margin: 1.5em auto;
    list-style-type: none;
}

.headContentLeft .headContentMenu li {
    position: relative;
}

.headContentLeft .headContentMenu li::before {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--white);
}

.headContentLeft .headContentMenu li a {
    display: inline-block;
    margin-left: 40px;
    color: var(--white);
}

.headContentLeft .headContentMenu li a:hover {
    color: var(--color);
}

.headContentRight img {
    display: block;
    width: 100%;
    height: calc(100% + 3em);
    min-height: 50vh;
    object-fit: cover;
}

@media screen and (min-width: 1024px) {

    .headWrap {
        margin-bottom: 8em;
    }

    .headWrap div {
        flex-basis: 50%;
    }

    .headContentLeft {
        padding: 5em 5% 5em 10%;
    }

}

@media screen and (max-width: 1023px) {
    .headWrap {
        flex-direction: column-reverse;
    }
}

section {
    margin: 5em auto;
}

@media screen and (min-width: 768px) {
    .numberList {
        display: flex;
        flex-wrap: wrap;
    }

    .numberList li {
        flex-basis: 50%;
        padding: 1em;
    }

    section .headContentLeft {
        margin-top: 3em;
    }

}

.numberList {
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
    list-style-type: none;
}

.numberList p {
    margin: 0.5em auto;
}

.numberList li {
    margin-bottom: 1.5em;
}

.numberList li h3 {
    padding: 0.5em;
    border: thin solid var(--color);
    color: var(--color);
}

.numberList li h3 span {
    display: inline-block;
    margin-right: 0.5em;
    padding-right: 0.5em;
    border-right: thin solid var(--color);
    font-weight: bold;
    font-family: var(--en);
}

.miryokuList {
    margin: 1.5em auto;
    list-style-type: none;
}

.miryokuList li {
    margin-bottom: 1.5em;
}

.miryokuList li span {
    display: inline-block;
    margin-bottom: 0.5em;
    border-bottom: 3px dashed var(--color);
    font-weight: bold;
}

.checkList,
.scheduleList {
    margin: 1.5em auto;
    width: 90%;
    max-width: 800px;
    list-style-type: none;
}

.checkList li {
    margin-bottom: 1.5em;
}

.checkList li img {
    margin-right: 0.5em;
    vertical-align: baseline;
    width: 20px;
    height: auto;
}

.checkList li span {
    display: inline-block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.headlineBg {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: var(--color);
    color: var(--white);
}

.scheduleList li h3 {
    display: block;
    max-width: 400px;
    margin-bottom: 0.5em;
    padding: 0.2em 0.5em;
    border: thin solid var(--color);
    color: var(--color);
}

.scheduleList li h3.listWidth100 {
    max-width: fit-content !important;
}

.scheduleList li h3 span {
    display: inline-block;
    margin-right: 0.5em;
    padding-right: 0.5em;
    border-right: thin solid var(--color);
    font-weight: bold;
    font-family: var(--en);
}

.scheduleList li {
    margin-bottom: 1.5em;
}

.futureBox {
    margin: 1.5em auto;
    width: 90%;
    max-width: 800px;
}

.futureBox h3 {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
    border-left: 10px solid var(--black);
}

.futureList {
    list-style-type: none;
}

.futureList li {
    margin-bottom: 1.5em;
}

.futureList li span {
    position: relative;
    padding-left: 30px;
    font-weight: bold;
}

.futureList li span::before {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--black);
}

.width1000 {
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
    border: thin solid var(--color);
    padding: 1.5em;
}

.width800 {
    margin: 0 auto;
    width: 90%;
    max-width: 800px;
}

.messageWrap {
    margin: 1.5em auto;
}

.messageWrap div:nth-of-type(1) {
    margin-bottom: 1.5em;
}

.messageWrap img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {
    .messageWrap {
        display: flex;
        align-items: center;
    }

    .messageWrap div:nth-of-type(1) {
        flex-basis: 40%;
        margin-bottom: 0;
    }

    .messageWrap div:nth-of-type(2) {
        flex-basis: 60%;
        padding: 1.5em;
    }
}

@media screen and (max-width: 1023px) {

    section>.box {
        width: 90%;
    }
}

.box {
    margin: 0 auto 1.5em;
    max-width: 1000px;
}

.teamMore {
    margin: 3em auto;
    width: 90%;
    max-width: 1000px;
    list-style-type: none;
}

.teamMore li {
    display: inline-block;
    margin-right: 1em;
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.teamMore li:first-of-type {
    position: relative;
    display: block;
    padding-left: 60px;
}

.teamMore li:first-of-type::before,
.teamMore li:first-of-type::after {
    position: absolute;
    display: block;
    content: '';
    background-color: var(--black);
}

.teamMore li:first-of-type::before {
    top: 50%;
    left: 0;
    width: 50px;
    height: 1px;
}

.teamMore li:first-of-type::after {
    width: 10px;
    height: 1px;
    transform: rotate(45deg);
    top: calc(50% - 4px);
    left: 40px;
}

.teamMore li a {
    display: inline-block;
    padding: 0 0.5em;
    background-color: var(--color);
    color: var(--white);
}

.interviewWrap {
    margin: 1.5em auto;
    width: 90%;
    max-width: 1000px;
}

.interviewWrap div {
    margin-bottom: 3em;
}

@media screen and (min-width: 768px) {
    .interviewWrap {
        display: flex;
        flex-wrap: wrap;
    }

    .interviewWrap div {
        margin-bottom: 0;
        padding: 1.5em;
        flex-basis: 50%;
    }
}

.underline {
    position: relative;
    margin-bottom: 1em;
}

.underline::after {
    position: absolute;
    display: block;
    content: '';
    bottom: -0.5em;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--black);
}

.interviewWrap img {
    width: 100%;
    height: auto;
}

.interviewWrap a,
.interviewMore a {
    color: var(--black);
}

.interviewWrap a:hover,
.interviewMore a:hover {
    color: var(--color);
}

@media screen and (max-width: 1023px) {
    body>.interviewHead {
        display: flex;
        flex-direction: column-reverse;
    }

    body>.interviewHead div:nth-of-type(1) {
        padding: 1.5em;
    }
}

section.interviewHead {
    width: 90%;
    max-width: 1400px;
}

.interviewBox {
    width: 90%;
    max-width: 1400px;
}

@media screen and (min-width: 1024px) {
    .interviewHead {
        display: flex;
        align-items: center;
    }

    .interviewHead div:nth-of-type(1) {
        padding-left: 3em;
        flex-basis: 40%;
    }

    .interviewHead div:nth-of-type(2) {
        flex-basis: 60%;
    }

    .interviewFlex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .interviewFlex div:not(.flexWidth) {
        flex-basis: 48%;
    }
}


@media screen and (min-width: 1440px) {

    .interviewHead div:nth-of-type(1) {
        padding-left: 10em;
    }
}

.interviewHead img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

main.interview section {
    margin: 5em auto 10em;
}

.interviewImage {
    width: 100%;
    height: auto;
}

.interviewImageShort {
    display: block;
    margin: 0 auto;
    width: 50%;
    height: auto;
}

.serviceMore {
    margin: 5em auto;
    padding: 1.5em;
    width: 90%;
    max-width: 600px;
    background-color: var(--gray2);
}

.icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5em;
    width: 30px;
    height: auto;
}

h3 a {
    color: var(--black);
}

h3 a:hover {
    color: var(--color);
}

.serviceMore .box {
    padding: 1.5em;
    background-color: var(--white);
}

.slick-prev {
    left: 0 !important;
    z-index: 999 !important;
}

.slick-next {
    right: 0 !important;
}

.slick-prev:before,
.slick-next:before {
    color: black !important;
}

.slick-dots li button:before {
    font-size: 18px;
    top: 6px;
}

.interviewMore {
    margin: 1.5em auto 5em !important;
    width: 90%;
    max-width: 800px;
}

@media screen and (min-width: 768px) {
    .interviewMoreBox {
        padding: 1.5em;
    }
}

.interviewMore img {
    width: 100%;
    height: auto;
}

.talkImage {
    width: 100%;
    max-width: 1440px;
    height: auto;
}

.talkMember {
    margin: 1.5em auto;
    width: 90%;
    max-width: 1000px;
}

.talkMember img {
    margin: 0 auto 1.5em;
    display: block;
    width: 60%;
    height: auto;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {

    .talkMember div:nth-of-type(1) {
        margin-bottom: 5em;
    }
}

@media screen and (min-width: 768px) {
    .talkMember {
        display: flex;
    }

    .talkMember div {
        padding: 1.5em;
        flex-basis: 50%;
    }

}

.talkMember p {
    margin: 1em auto;
    font-size: 12px;
}

.talk {
    width: 90%;
    max-width: calc(1000px - 3em);
}

.border {
    padding-left: 0.5em;
    border-left: 10px solid var(--black);
}

.talkLeft,
.talkRight {
    display: flex;
    margin: 1.5em auto;
}

@media screen and (min-width: 768px) {
    .talkLeft {
        margin-right: 60px;
    }

    .talkRight {
        margin-left: 60px;
    }
}

.talkLeftLeft,
.talkRightRight {
    width: 60px;
}

.talkLeft img,
.talkRight img {
    display: block;
    margin: 0 auto;
    width: 60px;
    height: auto;
    border-radius: 50%;
}

.talkLeftRight,
.talkRightLeft {
    height: fit-content;
    background-color: var(--gray2);
    padding: 1.5em;
}

.talkLeftRight {
    position: relative;
    margin-left: 30px;
}

.talkLeftRight::before {
    position: absolute;
    display: block;
    content: '';
    top: 15px;
    left: -10px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    background-color: var(--gray2);
}

.talkRightLeft {
    position: relative;
    margin-right: 30px;
}

.talkRightLeft::before {
    position: absolute;
    display: block;
    content: '';
    top: 15px;
    right: -10px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    background-color: var(--gray2);
}

.grayWrap {
    margin: 1.5em auto;
    width: 90%;
    max-width: 1000px;
}

@media screen and (min-width: 768px) {
    .grayWrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .grayWrap div {
        flex-basis: 48%;
    }
}

.grayWrap div {
    margin-bottom: 3em;
    padding: 1.5em;
    background-color: var(--gray2);
}

.grayWrap img,
.trainingBox img {
    width: 100%;
    height: auto;
}

.trainingBox {
    position: relative;
    margin: 1.5em auto 5em;
    padding: 1.5em;
    width: 90%;
    max-width: 800px;
    background-color: var(--gray2);
}

.trainingBox::before {
    position: absolute;
    display: block;
    content: '';
    top: calc(100% + 1.5em);
    left: 50%;
    width: 1px;
    height: 30px;
    background-color: var(--black);
}

.trainingBox::after {
    position: absolute;
    display: block;
    content: '';
    top: calc(100% + 1.5em + 12px);
    left: calc(50% + 7px);
    width: 1px;
    height: 20px;
    transform: rotate(45deg);
    background-color: var(--black);
}

.none::before,
.none::after {
    display: none;
}

.flexWidth {
    flex-basis: 100%;
}

.margin {
    margin-bottom: 1.5em;
}

.recruitBox {
    margin: 1.5em auto 3em;
    width: 90%;
    max-width: 800px;
}

table {
    margin: 2em auto;
    border-collapse: collapse;
    width: 100%;
}

table th,
table td {
    padding: 0.5em;
}

table th {
    background-color: var(--gray2);
    width: 30%;
}

.recruitBox img {
    width: 100%;
    height: auto;
}

.lineEntry {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: #00B900;
    text-align: center;
    border-radius: 20px;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--white);
}

.recruitList,
.envi_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
    max-width: 800px;
    justify-content: space-between;
    list-style-type: none;
}

.recruitList li,
.envi_list li {
    margin-bottom: 0.5em;
    flex-basis: 48%;
    padding: 0.5em;
    background-color: var(--color);
    border: thin solid var(--color);
    color: var(--white);
    cursor: pointer;
}

.envi_list li a {
	display: inline-block;
	width: 100%;
    color: var(--white);
}

.envi_list {
    margin-bottom: 2em;
}

@media screen and (min-width: 768px) {

    .recruitList li,
    .envi_list li {
        flex-basis: 32%;
    }
}

.recruitList li.click {
    background-color: var(--white);
    color: var(--color);
}

@media screen and (max-width: 767px) {
    .recruitList li.recruitList70 {
        flex-basis: 60%;
    }

    .recruitList li.recruitList30 {
        flex-basis: 36%;
    }
}


/* 上に戻るボタン着地点 */
#top {
    height: 1px;
}

/* 上に戻るボタン */
#pageTop {
    position: fixed;
    bottom: 4%;
    right: 5%;
    background-color: var(--white);
    border-radius: 50%;
    width: 40px;
    text-align: center;
}

/* 上に戻るボタンのフォントサイズ */
#pageTop a {
    font-size: 23px;
    color: var(--gray);
}