/* page.css */




/* ページ基本設定 */
main {
    background-color: var(--purple-bg);
}

.page-content {
    padding: 60px 0;
}

.page-content__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
@media screen and (max-width:768px) {
    .page-content__inner {
        padding: 0 3%;
    }
}

.page-header {
    position: relative;
}

.page-header__bg-area {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
}

.page-header__content {
    width: 100%;
    padding-left: 5%;
}

.page-header__img--pc {
    padding-top: 40px;
    box-sizing: border-box;
    position: relative;
}

.page-header__img--sp {
    display: none;
}

@media screen and (max-width:768px) {
    .page-header__img--pc {
        display: none;
    }

    .page-header__img--sp {
        display: block;
        padding-top: 20px;
        position: relative;
    }
}

.page-header__subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    position: relative;
}

.page-header__subtitle::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 4px solid var(--orange);
    border-radius: 100%;
    margin-right: 10px;
}

.page-header__title {
    font-size: 84px;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    color: #FFF;
    margin-top: 20px;
    position: relative;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .page-header__title {
        font-size: 62px;
        margin-top: 10px;
    }
}

@media screen and (max-width:425px) {
    .page-header__title {
        font-size: 40px;
        margin-top: 10px;
    }
}


@media screen and (max-width: 768px) {
    .page-content {
        padding: 50px 0;
    }
}

@media screen and (max-width: 425px) {
    .page-content_inner {
        padding: 0 15px;
    }

    .page-content {
        padding: 40px 0;
    }

    .page-content h2 {
        font-size: 22px;
    }

    .page-content p {
        font-size: 16px;
    }
}


/* 募集要項 */

@media screen and (max-width:768px) {
    .recruit .page-header__title {
        font-size: 50px;
    }
}

@media screen and (max-width:425px) {
    .recruit .page-header__title {
        font-size: 36px;
    }
}

.recruit__title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.recruit__title span {
    color: var(--orange);
}

.recruit__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 1080px;
    margin: 60px auto 0;
}

@media screen and (max-width:425px) {
    .recruit__grid {
        margin-top: 30px;
    }
}

.recruit__item {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}
@media screen and (max-width:768px) {
    .recruit__item {
        padding: 20px 5%;
        text-align: center;
    }
}

.recruit__item img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: inline-block;
}
@media screen and (max-width:768px) {
    .recruit__item img {
        width: 50%;
        height: auto;
        object-fit: contain;
        margin-bottom: 10px;
    }
}

.recruit__text-area {
    display: flex;
    align-items: center;
}

.recruit__num {
    font-size: 60px;
    font-weight: 600;
    color: var(--orange);
    font-family: "Josefin Sans", sans-serif;
    margin-right: 20px;
}
@media screen and (max-width:768px) {
    .recruit__num {
        position: absolute;
        top: 10px;
        left: 10px;
        line-height: 1;
        font-size: 24px;
    }
}

.recruit__text {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}
@media screen and (max-width:768px) {
    .recruit__text {
        font-size: 16px;
        text-align: center;
    }
}
@media screen and (max-width:425px) {
    .recruit__text {
        font-size: 15px;
    }
}

/* recruit インタビュー */

.recruit-interview__heading {
    text-align: center;
    margin-bottom: 50px;
}

@media screen and (max-width:768px) {
    .recruit-interview__heading {
        margin-bottom: 30px;
    }
}

.recruit-interview__en {
    display: block;
    font-size: 24px;
    color: var(--orange);
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif;
}

.recruit-interview__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
}

.recruit-interview__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.recruit-interview__item.is-even {
    flex-direction: row-reverse;
}

@media screen and (max-width:768px) {
    .recruit-interview__item {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto 80px;
    }

    .recruit-interview__item.is-even {
        flex-direction: column;
    }
}


.recruit-interview__item:nth-child(3n+2) .recruit-interview__photo {
    box-shadow: -20px 20px #73C2EB88;
}

.recruit-interview__item:nth-child(3n+3) .recruit-interview__photo {
    box-shadow: 20px 20px #8765C688;
}

.recruit-interview__item:nth-child(3n+4) .recruit-interview__photo {
    box-shadow: -20px 20px #BBD91488;
}

.recruit-interview__item:nth-child(3n+5) .recruit-interview__photo {
    box-shadow: -20px 20px #F7931D88;
}

.recruit-interview__item:last-child {
    margin-bottom: 0;
}

@media screen and (max-width:425px) {
    .recruit-interview__item:nth-child(3n+2) .recruit-interview__photo {
        box-shadow: -10px 10px #73C2EB88;
    }

    .recruit-interview__item:nth-child(3n+3) .recruit-interview__photo {
        box-shadow: 10px 10px #8765C688;
    }

    .recruit-interview__item:nth-child(3n+4) .recruit-interview__photo {
        box-shadow: -10px 10px #BBD91488;
    }

    .recruit-interview__item:nth-child(3n+5) .recruit-interview__photo {
        box-shadow: -10px 10px #F7931D88;
    }
}

.recruit-interview__photo {
    width: 46%;
    border-radius: 10px;
}

@media screen and (max-width:768px) {
    .recruit-interview__photo {
        width: 100%;
    }
}

.recruit-interview__photo img {
    height: auto;
    border-radius: 8px;
}

.recruit-interview__body {
    width: 46%;
    padding-left: 0;
    padding-right: 100px;
}

@media screen and (max-width:1024px) {
    .recruit-interview__body {
        padding-right: 0;
    }
}

@media screen and (max-width:768px) {
    .recruit-interview__body {
        width: 100%;
        margin-top: 20px;
    }
}

.recruit-interview__item.is-even .recruit-interview__body {
    padding-left: 100px;
    padding-right: 0;
}

@media screen and (max-width:1024px) {
    .recruit-interview__item.is-even .recruit-interview__body {
        padding-left: 0;
    }
}

.recruit-interview__number {
    font-size: 50px;
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif;
    text-align: right;
    color: #FFF;
}

@media screen and (max-width:1024px) {
    .recruit-interview__number {
        font-size: 45px;
    }
}

@media screen and (max-width:768px) {
    .recruit-interview__number {
        line-height: 1;
        font-size: 36px;
    }
}

@media screen and (max-width:425px) {
    .recruit-interview__number {
        font-size: 28px;
    }
}

.recruit-interview__item.is-even .recruit-interview__number {
    text-align: left;
}

.recruit-interview__profile {
    margin-bottom: 20px;
}

@media screen and (max-width:425px) {
    .recruit-interview__position {
        font-size: 14px;
    }
}

.recruit-interview__name-wrap {
    display: flex;
    align-items: baseline;
    gap: 20px;
    border-bottom: 1px solid var(--black-font);
}

.recruit-interview__name-ja {
    font-size: 28px;
    font-weight: bold;
}

@media screen and (max-width:425px) {
    .recruit-interview__name-ja {
        font-size: 20px;
    }
}

.recruit-interview__name-en {
    font-size: 14px;
    color: #999;
    font-family: "Josefin Sans", sans-serif;
}

@media screen and (max-width:425px) {
    .recruit-interview__name-en {
        font-size: 12px;
    }
}

.recruit-interview__qa .recruit-interview__question {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.recruit-interview__qa .recruit-interview__question::before {
    content: 'Q.';
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif;
}

.recruit-interview__item:nth-child(3n+2) .recruit-interview__question::before {
    color: #73C2EB;
}

.recruit-interview__item:nth-child(3n+3) .recruit-interview__question::before {
    color: var(--purple);
}

.recruit-interview__item:nth-child(3n+4) .recruit-interview__question::before {
    color: #BBD914;
}

.recruit-interview__item:nth-child(3n+5) .recruit-interview__question::before {
    color: var(--orange);
}

.recruit-interview__qa .recruit-interview__answer {
    line-height: 1.8;
}

@media screen and (max-width: 425px) {
    .recruit-interview__qa .recruit-interview__answer {
        font-size: 14px;
    }
}

/* recruit 募集要項 */
.jobinfo {
    padding: 60px 0;
}

.jobinfo__bg {
    background-color: #FFF;
    padding: 60px 0;
}

.jobinfo__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3%;
}

.jobinfo__title {
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid #ACA8A6;
    color: var(--purple);
}

.jobinfo__desc {
    font-size: 16px;
    margin-top: 20px;
}

.jobinfo .page-content__inner {
    max-width: 1080px;
}

.jobinfo__label {
    text-align: center;
    font-weight: 600;
    margin-top: 60px;
    font-size: 24px;
}

@media screen and (max-width: 425px) {
    .jobinfo__label {
        margin-top: 30px;
    }
}

.jobinfo__table {
    width: 100%;
    border-collapse: collapse;
    margin: 60px 0;
    font-size: 16px;
}

@media screen and (max-width: 425px) {
    .jobinfo__table {
        margin-top: 30px;
        font-size: 14px;
    }

    .jobinfo__table p {
        font-size: 14px;
    }
}

.jobinfo__table th,
.jobinfo__table td {
    border: 1px solid #A5A096;
    padding: 15px;
    vertical-align: top;
}

.jobinfo__table th {
    background: #EEECF0;
    width: 20%;
    text-align: left;
    font-weight: normal;
}

.jobinfo__table td {
    background: #fff;
}

@media screen and (max-width: 768px) {
    .jobinfo__table tr {
        display: block;
    }

    .jobinfo__table th,
    .jobinfo__table td {
        display: block;
        width: 100%;
        padding: 10px;
    }
}

.jobinfo__table td strong,
.jobinfo__table td b {
    color: #e60012;
}

.jobinfo__more a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    background-color: #FFF;
    border: 1px solid var(--orange);
    border-radius: 999px;
    color: var(--orange);
    font-size: 20px;
    font-weight: 600;
    width: 300px;
    height: 80px;
    padding: 0 20px;
}

.jobinfo__more a::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('../img/top/recruit_button-icon.png');
    background-size: contain;
}

@media screen and (max-width:425px) {
    .jobinfo__more a {
        width: 240px;
        height: 64px;
        font-size: 16px;
    }

    .jobinfo__more a::after {
        width: 20px;
        height: 20px;
    }
}


/* グループ紹介 */
.group {
    padding: 100px 0;
    background-color: #FFF;
}

@media screen and (max-width:768px) {
    .group {
        padding: 50px 0;
    }
}

.group .page-content__inner {
    display: flex;
    gap: 5%;
    align-items: flex-start;
}

@media screen and (max-width:1024px) {
    .group .page-content__inner {
        flex-direction: column-reverse;
        max-width: 700px;
    }
}

@media screen and (max-width:1024px) {
    .group__header {
        text-align: center;
    }
}

.group__map {
    flex: 1;
    aspect-ratio: 1/1;
}

@media screen and (max-width:1024px) {
    .group__map {
        width: 100%;
        margin-top: 50px;
    }
}

#groupMap {
    height: 100%;
}

.group__list {
    flex: 1;
}

.group__sbutitle {
    font-size: 24px;
    font-family: "Josefin Sans", sans-serif;
    color: var(--orange);
    line-height: 1;
}

.group__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.group__list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
}

.group__list li {
    width: 48%;
    padding: 15px 3%;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s ease;
}

@media screen and (max-width:768px) {
    .group__list li {
        padding: 15px 0;
    }
}

.group__list li:hover {
    background: #8765C633;
}

.group__name {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

@media screen and (max-width:768px) {
    .group__name {
        font-size: 16px;
    }
}

.group__name::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 4px solid var(--orange);
    border-radius: 100%;
    margin-right: 10px;
}

.group__addr,
.group__tel {
    font-size: 14px;
    display: block;
    color: #555;
}

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

    .group__addr,
    .group__tel {
        font-size: 12px;
    }
}



/* about */
/* ナビメニュー */
.about .content__title {
    text-align: center;
    position: relative;
    font-size: 32px;
    font-weight: bold;
}
@media screen and (max-width:768px) {
    .about .content__title {
        font-size: 25px;
    }
}
@media screen and (max-width:425px) {
    .about .content__title {
        font-size: 20px;
    }
}

.about .content__title::after {
    content: '';
    width: 50px;
    border: 1px solid var(--orange);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about .about__nav {
    margin-bottom: 40px;
    text-align: center;
}

.about .about__menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, auto));
    gap: 20px;
    list-style: none;
    padding: 0 3%;
    max-width: 1024px;
    margin: 80px auto 0;
}
@media screen and (max-width:425px) {
    .about .about__menu {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

.about .about__menu-item {
    display: block;
    padding: 25px 0;
    background-color: #fff;
    border: 2px solid var(--purple);
    color: var(--purple);
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    border-radius: 5px;
    line-height: 1;
}
@media screen and (max-width:425px) {
    .about .about__menu-item {
        font-size: 14px;
        padding: 13px 0;
    }
}

.about .about__menu-item:hover {
    background-color: var(--purple);
    color: #fff;
}

/* 福利厚生 */
.about .welfare__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
}
@media screen and (max-width:768px) {
    .about .welfare__grid {
        justify-content: center;
    }
}

.about .welfare-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    flex: 1 1 300px;
    text-align: center;
}

.about .welfare-card__icon img {
    width: 100px;
    height: 80px;
    margin-bottom: 12px;
    display: inline-block;
}

.about .welfare-card__title {
    font-weight: bold;
    margin-bottom: 13px;
}

.about .welfare-card__desc {
    font-size: 14px;
    text-align: left;
}

/* 組織 */
.about .organization {
    margin: 80px auto 0;
    max-width: 1080px;
}

.about .organization__title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--black-font);
    padding-bottom: 12px;
}
@media screen and (max-width:768px) {
    .about .organization__title {
        font-size: 20px;
    }
}
@media screen and (max-width:425px) {
    .about .organization__title {
        margin-bottom: 0px;
    }
}

.about .organization__list {
    margin: 0 0 40px;
}

.about .organization__list li {
    display: flex;
    align-items: baseline;
    padding: 32px 0;
    border-bottom: 1px solid #ccc;
}
@media screen and (max-width:768px) {
    .about .organization__list li {
        flex-wrap: wrap;
    }
}

.about .organization__list li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--orange);
    border-radius: 10px;
    margin-right: 8px;
}

.about .organization__label {
    font-weight: bold;
    width: 230px;
}
@media screen and (max-width:768px) {
    .about .organization__label {
        margin-bottom: 10px;
    }
}

.about .organization__desc {
    flex: 1;
}
@media screen and (max-width:768px) {
    .about .organization__desc {
        flex: 1 1 100%;
    }
}

.about .organization__images {
    display: flex;
    gap: 26px;
    margin-top: 50px;
}
@media screen and (max-width:768px) {
    .about .organization__images {
        flex-wrap: wrap;
    }
}

.about .organization__images img {
    width: 100%;
    max-width: calc(50% - 10px);
    border-radius: 8px;
}
@media screen and (max-width:768px) {
    .about .organization__images img {
        max-width: 100%;
    }
}

/* 評価制度 */
.about .evaluation .page-content__inner {
    max-width: 1080px;
}

.about .evaluation__section {
    margin-top: 60px;
}

.about .evaluation__heading {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--black-font);
    padding-bottom: 10px;
}
@media screen and (max-width:768px) {
    .about .evaluation__heading {
        font-size: 22px;
    }
}
@media screen and (max-width:425px) {
    .about .evaluation__heading {
        font-size: 18px;
    }
}

.about .evaluation__heading::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 4px solid var(--orange);
    border-radius: 100%;
    margin-right: 10px;
}

.about .evaluation__pyramid {
    margin: 60px auto;
    max-width: 900px;
}

.about .evaluation__pyramid img {
    max-width: 100%;
    height: auto;
}

.about .evaluation__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
    overflow: hidden;
}
@media screen and (max-width:768px) {
    .about .evaluation__grid {
        max-width: 500px;
        margin: 40px auto 0;
    }
}

.about .evaluation__card {
    background: #fff;
    border-radius: 10px;
    position: relative;
}

.about .evaluation__card::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(50%, -50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--black-font);
    border-bottom: 2px solid var(--black-font);
}

@media screen and (max-width:768px) {
    .about .evaluation__card::after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -20px;
        transform: translate(-50%, 0) rotate(45deg);
    }
}

.about .evaluation__card:last-child::after {
    display: none;
}

.about .evaluation__card-title {
    font-weight: 600;
    color: #FFF;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.about .evaluation__card-text {
    padding: 20px;
    height: calc(100% - 30px);
    border-radius: 0 0 10px 10px;
}

.about .evaluation__tag {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    line-height: 1;
    border-radius: 5px;
    margin-bottom: 10px;
}

.about .evaluation__card ul {
    padding-left: 20px;
    margin: 0;
    list-style-type: disc;
}

.about .level1 .evaluation__card-text {
    border: 2px solid var(--purple);
}

.about .level1 .evaluation__card-title {
    background-color: var(--purple);
}

.about .level1 .evaluation__tag {
    background-color: #8765C633;
}

.about .level2 .evaluation__card-text {
    border: 2px solid #696EC6;
}

.about .level2 .evaluation__card-title {
    background-color: #696EC6;
}

.about .level3 .evaluation__card-text {
    border: 2px solid #68B0E8;
}

.about .level3 .evaluation__card-title {
    background-color: #68B0E8;
}

.about .level4 .evaluation__card-text {
    border: 2px solid #61C492;
}

.about .level4 .evaluation__card-title {
    background-color: #61C492;
}

.about .level4 .evaluation__tag {
    background-color: #61C49233;
}

.about .level5 .evaluation__card-text {
    border: 2px solid #BBD914;
}

.about .level5 .evaluation__card-title {
    background-color: #BBD914;
}

.about .level5 .evaluation__tag {
    background-color: #BBD91433;
}

.about .level6 .evaluation__card-text {
    border: 2px solid var(--orange);
}

.about .level6 .evaluation__card-title {
    background-color: var(--orange);
}

.about .level6 .evaluation__tag {
    background-color: #F7931D33;
}


/* キャリア支援 */
.about .career .page-content__inner {
    max-width: 1080px;
}

.about .career__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}
@media screen and (max-width:768px) {
    .about .career__list {
        flex-direction: column;
    }
}

.about .career__item {
    background-color: #FFF;
    border-radius: 10px;
    padding: 30px;
}

.about .career__item h3 {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.about .career__item h3::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--orange);
    border-radius: 10px;
    margin-right: 8px;
}

.about .career__item p {
    margin-top: 10px;
}

/* 研修制度 */
.about .training__text-area {
    max-width: 1080px;
    margin: 60px auto;
}

.about .training__lead {
    font-size: 24px;
    font-weight: 600;
}
@media screen and (max-width:768px) {
    .about .training__lead {
        font-size: 20px;
    }
}

.about .training__text {
    margin-top: 20px;
}

.about .training__image-area {
    display: flex;
    gap: 30px;
}
@media screen and (max-width:768px) {
    .about .training__image-area {
        flex-wrap: wrap;
    }
    .training__image{
        width: 100%;
    }
}


/* 会社概要 */
.about .company .page-content__inner {
    max-width: 1080px;
}

.about .company__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 60px;
    border-top: 1px solid #C6C2D0;
}

.about .company__th,
.about .company__td {
    padding: 30px 0;
    border-bottom: 1px solid #C6C2D0;
    text-align: left;
}

.about .company__th {
    width: 25%;
    font-weight: bold;
}
@media screen and (max-width:768px) {
    .about .company__th {
        width: 30%;
    }
    .about .company__td{
        padding-left: 20px;
    }
}
@media screen and (max-width:425px) {
    .about .company__th {
        width: 40%;
    }
}

.about .company__more {
    margin-top: 50px;
}

.about .company__more a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    background-color: #FFF;
    border: 1px solid var(--orange);
    border-radius: 999px;
    color: var(--orange);
    font-size: 20px;
    font-weight: 600;
    width: 300px;
    height: 80px;
    padding: 0 20px;
}

.about .company__more a::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('../img/top/recruit_button-icon.png');
    background-size: contain;
}

@media screen and (max-width:425px) {
    .about .company__more a {
        font-size: 16px;
        width: 240px;
        height: 64px;
    }
}





/* reserve */
.recruit-form__wrap {
    max-width: 1080px;
    margin: 60px auto;
    background-color: #FFF;
}

@media screen and (max-width:425px) {
    .recruit-form__wrap {
        margin: 30px auto;
    }
}

.recruit-form__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
}

@media screen and (max-width: 1024px) {
    .recruit-form__inner {
        padding: 80px 3%;
    }
}

@media screen and (max-width:768px) {
    .recruit-form__inner {
        padding: 40px 3%;
    }
}

.form-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

@media screen and (max-width:768px) {
    .form-row {
        flex-direction: column;
    }
}

.form-label {
    display: flex;
    justify-content: space-between;
    width: 250px;
    padding-top: 5px;
    padding-right: 30px;
}

@media screen and (max-width:768px) {
    .form-label {
        width: auto;
        gap: 20px;
        font-size: 14px;
    }
}


.form-field {
    width: 100%;
    flex: 1;
}

@media screen and (max-width:768px) {
    .form-field {
        margin-top: 10px;
    }
}

.form-field input[type="text"].reserve-tel {
    width: 25%;
    max-width: 100px;
}

.date-list {
    display: flex;
    gap: 10px 20px;
    flex: 1;
}

@media screen and (max-width: 1024px) {
    .date-list {
        flex-wrap: wrap;
    }
}

.date-wrap {
    display: flex;
    align-items: center;
}


.date-label {
    flex: 1 0 5em;
    text-align: center;
}

.privacy-wrap {
    flex-direction: column;
    text-align: center;
}

.privacy-box {
    background-color: #F7F7F7;
    border-radius: 10px;
    padding: 30px 50px;
    margin-bottom: 20px;
    box-shadow: inset 5px 5px 8px rgba(0, 0, 0, .1),
        inset -5px -5px 8px rgba(0, 0, 0, .1);
}

@media screen and (max-width:768px) {
    .privacy-box {
        padding: 20px;
    }
}

.privacy-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width:768px) {
    .privacy-title {
        font-size: 16px;
    }

    .privacy-box p {
        font-size: 14px;
    }
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
}

.required {
    display: flex;
    align-items: center;
    color: #FFF;
    background-color: #D03838;
    font-size: 10px;
    padding: 0 5px;
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}

.form-buttons input[type="submit"] {
    display: none;
}

.mw_wp_form_input .form-buttons input[name="confirm"] {
    display: inline-block;
}

.mw_wp_form_confirm .form-buttons input[name="back"],
.mw_wp_form_confirm .form-buttons input[name="send"] {
    display: inline-block;
}

.form-steps {
    text-align: center;
}

.form-steps-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.form-steps-list .step {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 56px;
    border: 2px solid var(--orange);
    border-radius: 4px;
    color: var(--orange);
    background-color: white;
    position: relative;
}

@media screen and (max-width:768px) {
    .form-steps-list .step {
        max-width: 200px;
    }
}

@media screen and (max-width:425px) {
    .form-steps-list .step {
        font-size: 12px;
        height: 44px;
    }
}

.step-line--pc {
    color: var(--orange);
}

.step-line--sp {
    display: none;
}


@media screen and (max-width:768px) {
    .step-line--pc {
        display: none;
    }

    .step-line--sp {
        display: block;
        color: var(--orange);
    }
}

.form-steps-list .step:last-child::after {
    content: none;
}

.mw_wp_form_input .step1,
.mw_wp_form_confirm .step2,
.mw_wp_form_complete .step3 {
    background-color: var(--orange);
    color: white;
}

/* 送信完了ページ */
.form-complete {
    text-align: center;
    padding: 40px 0;
    max-width: 1080px;
    margin: 0 auto;
}

.complete-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.complete-sub {
    font-size: 16px;
    margin-bottom: 40px;
}

.complete-message {
    background: #fff;
    border-radius: 10px;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (max-width:768px) {
    .complete-message {
        padding: 40px 3%;
        word-break: auto-phrase;
    }
}


.complete-message .complete-lead {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 20px;
}

@media screen and (max-width:768px) {
    .complete-message .complete-lead {
        font-size: 16px;
    }

    .urgent {
        font-size: 14px;
    }
}

.complete-message strong {
    font-size: 16px;
}

.complete-message .attention {
    background: #A5A096;
    color: #fff;
    padding: 6px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 3px;
    font-size: 16px;
    margin: 30px auto 10px;
    max-width: 760px;
}

.complete-message .note {
    font-size: 14px;
}

.btn-wrap {
    margin-top: 50px;
}

.reserve-btn-orange {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 60px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.reserve-btn-gray {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 60px;
    background: #A5A5A5;
    color: #fff;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}


@media screen and (max-width: 425px) {
    .form-steps-list .step::after {
        display: none;
    }
}