.dp-plus,
.dp-plus *,
.dp-plus *::before,
.dp-plus *::after {
    box-sizing: border-box;
}

.layout-fix {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.dp-plus a {
    text-decoration: none;
    cursor: pointer;
}

.dp-plus button {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

/*====================
フォントの振り分け
====================*/
:root {
    --font-sans: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-serif: "Noto Serif JP", "Noto Sans JP", serif;
}

.dp-plus {
    font-family: var(--font-serif);
}

.d-sans {
    font-family: var(--font-sans);
}

/*====================
ボタンアクション
====================*/
.dp-plus a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.dp-plus p {
    margin: 0;
    padding: 0;
}

.border-run {
    max-width: 250px;
    z-index: 10;
}

.btn-style {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 250px;
    height: 42px;
}

.dp-plus .btn-style-text {
    margin-left: 34px;
    font-weight: 400;
    font-feature-settings: "palt";
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

.dp-plus .btn-style-text-delta {
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

.dp-plus .btn-style-text-color-white {
    color: #FFFFFF;
}

.text-passive {
    opacity: 0;
    transition: all 0.3s linear;
}


.border-run {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #000000;
    text-decoration: none;

}

.border-run-color-white {
    color: #FFFFFF;
}

.border-run-line {
    position: absolute;
    background: currentColor;
    opacity: 1;
}

.border-run-line.t {
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease .18s;
}

.border-run-line.r {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .18s ease .36s;
}

.border-run-line.b {
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(1);
    transform-origin: right;
    transition: none;
}

.border-run-line.l {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .18s ease 0s;
}

.border-run:hover .border-run-line.t,
.border-run:hover .border-run-line.r,
.border-run:hover .border-run-line.l,
.border-run:focus-visible .border-run-line.t,
.border-run:focus-visible .border-run-line.r,
.border-run:focus-visible .border-run-line.l {
    transform: scale(1);
}

.border-run:hover .text-passive {
    opacity: 1;
}

.border-run:focus-visible {
    outline: none;
}

@media screen and (max-width:1030px) {
    .dp-plus a.border-run-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 6px;
        padding-bottom: 10px;
        border: 1px solid #000000;
        max-width: 320px;
        width: 100%;
        gap: 10px;
        z-index: 10;
    }

    .dp-plus a.btn-border-color {
        border: 1px solid #FFFFFF;
    }

    .border-run-mobile p.d-sans {
        font-size: 14px;
        line-height: normal;
    }
}

/*====================
#entry-btn
====================*/
#entry-btn {
    z-index: 999;
}
.entry-btn-area {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

@media screen and (min-width:1921px) {
    .entry-btn-area {
        left: calc((100% - 1920px) / 2);
    }
}

/*====================
#dp-hero
====================*/
.hero-area {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: fit-content;
}

.hero-area img.d-pc {
    display: block;
    width: 100%;
}

.hero-area img.d-mobile {
    display: none;
    width: 100%;
}

.dp-hero-text-area {
    position: absolute;
    top: calc((100% - clamp(42px, calc(7.49px + 6.9014vw), 140px)) / 2);
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .80);
    padding: clamp(10px, calc(-0.56px + 2.1127vw), 40px) clamp(20px, calc(-39.86px + 11.9718vw), 190px);
    width: fit-content;
    height: auto;
}

.dp-hero-text-area p {
    font-size: clamp(16px, calc(7.55px + 1.6901vw), 40px);
    color: #FFFFFF;
}

h1.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

@media screen and (max-width:500px) {
    .dp-hero-text-area {
        width: 100%;
        top: 200px;
    }

    .dp-hero-text-area p {
        font-size: 20px;
    }

    .dp-hero-text-area {
        display: none;
    }
}

/*====================
contents　汎用CSS
====================*/
.contents-item-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(100px, calc(0.00px + 7.8125vw), 150px) 20px;
    max-width: 1520px;
    width: 100%;
    gap: clamp(40px, calc(37.45px + 8.5106vw), 80px);
}

.contents-item-area.area-fix {
    margin-top: clamp(30px, calc(18.43px + 1.1236vw), 40px);
}

.contents-item {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(50px, calc(18.09px + 4.2662vw), 100px);
    width: 100%;
}

.item-passive {
    display: none;
}

.contents-item-area .c-text-heder {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    line-height: clamp(40px, calc(0.00px + 3.1250vw), 60px);
    font-weight: 600;
    color: #004097;
    font-weight: 600;
}

.contents-item-area .text-color-black {
    color: #000000;
}

.contents-item-area .c-text-label {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    line-height: clamp(36px, calc(31.07px + 0.9859vw), 50px);
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #000000;
}

.contents-item-text-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.contents-item-text-area ol.contents-item-text-area {
    gap: 10px;
}

ol.contents-item-text-area {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: item;
}

ol.contents-item-text-area .contents-item-text {
    position: relative;
    display: block;
    padding-left: 1.6em;
    counter-increment: item;
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    font-weight: 400;
    text-align: justify;
    color: #000000;
}

ol.contents-item-text-area .contents-item-text::before {
    content: counter(item) ".";
    position: absolute;
    top: 0;
    left: 0;
}

.contents-img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    max-width: clamp(500px, calc(199.10px + 29.2135vw), 760px);
    width: 100%;
    z-index: 2;
}

.contents-img img {
    display: block;
    width: 100%;
}

.contents-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: clamp(420px, calc(142.25px + 26.9663vw), 660px);
    width: 100%;
    gap: clamp(10px, calc(6.48px + 0.7042vw), 20px);
    z-index: 3;
}

.h-stretch {
    height: stretch;
    justify-content: space-between;
}

.contents-text .c-text-heder {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    line-height: clamp(40px, calc(0.00px + 3.1250vw), 60px);
    font-weight: 600;
    color: #004097;
    width: 100%;
}

.contents-text .c-text-label {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    line-height: clamp(36px, calc(31.07px + 0.9859vw), 50px);
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #000000;
    width: 100%;
}

.contents-deco-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
}

.contents-text .c-text-notes {
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-align: justify;
    width: 100%;
    color: #000000;
}

.contents-text .white-color-text {
    color: #FFFFFF;
}

.contents-movie-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
}

.contents-movie-item {
    overflow: hidden;
    display: flex;
    border-radius: 20px;
    width: 48%;
    aspect-ratio: 16 / 9;
}

.contents-movie-item iframe.iframe-style {
    width: 100%;
}

@media screen and (max-width:1030px) {
    .dp-uniqueness-area {
        max-width: 430px;
        padding: 50px 20px;
    }

    .contents-item {
        flex-direction: column;
        gap: 20px;
    }

    .contents-img {
        border-radius: 12px;
    }

    .contents-img img {
        width: 100%;
    }

    .contents-text {
        gap: 30px;
    }

    .contents-text .c-text-heder {
        font-feature-settings: "halt";
        text-align: center;
        justify-content: center;
    }

    .contents-text .c-text-label {
        font-size: clamp(18px, calc(4.36px + 3.6364vw), 20px);
        line-height: clamp(32px, calc(31.74px + 0.8511vw), 36px);
        font-feature-settings: "halt";
        text-align: center;
    }

    .contents-text .c-text-notes {
        font-size: clamp(14px, calc(8.00px + 1.6000vw), 16px);
        line-height: clamp(16px, calc(14.85px + 3.8298vw), 34px);
        font-feature-settings: "palt";
    }

    .contents-item-area {
        padding: 50px 20px;
        max-width: 430px;
    }

    .contents-item-area.area-fix {
        margin: 0;
    }

    .contents-movie-area {
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
    }

    .contents-movie-item {
        width: 100%;
        border-radius: 12px;
    }
}



/*====================
#recruit-intro
====================*/
.intro-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1920px;
    padding: 150px 20px;
    background-color: #FFFFFF;
    width: 100%;
    height: fit-content;
    gap: clamp(50px, calc(18.09px + 4.2662vw), 100px);
}

.intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
    gap: clamp(30px, calc(-10.00px + 3.1250vw), 50px);
}

.intro-text h2.label {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    font-weight: 600;
    width: 100%;
    text-align: center;
    justify-content: center;
    color: #000000;
}

.intro-text p.notes {
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    font-weight: 400;
    text-align: center;
    width: 100%;
    color: #000000;
}

.intro-text p.notes-bold {
    font-size: clamp(20px, calc(12.00px + 0.6250vw), 24px);
    font-weight: 400;
    line-height: clamp(36px, calc(8.00px + 2.1875vw), 50px);
    text-align: center;
    color: #000000;
}


.contents-text.professor-intro-fix {
    align-items: flex-start;
}


@media screen and (max-width:1030px) {
    .intro-area {
        padding: 60px 20px;
    }

    .intro-text {
        max-width: 430px;
    }

    .intro-img {
        max-width: 430px;
    }

    .intro-text .label {
        text-align: center;
        font-size: clamp(22px, calc(8.36px + 3.6364vw), 24px);
    }

    .intro-text .label-sub {
        text-align: center;
        font-size: clamp(18px, calc(4.36px + 3.6364vw), 20px);
    }

    .intro-text .notes {
        font-size: clamp(14px, calc(0.36px + 3.6364vw), 16px);
        line-height: clamp(30px, calc(2.73px + 7.2727vw), 34px);
    }

    .intro-text {
        gap: 30px;
    }

    .intro-text-fix {
        gap: 30px;
    }

    .contents-item.professor-intro-fix {
        max-width: 430px;
        justify-content: center;
    }

    .contents-text.professor-intro-fix {
        align-items: center;
    }

    .professor-intro-fix {
        max-width: 430px;
    }

    .intro-text p.notes-bold {
        font-feature-settings: "palt";
    }
}

/*====================
#recruit-intro-02
====================*/
.intro-area-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    max-width: 1920px;
    width: 100%;
    margin-top: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    margin-bottom: clamp(50px, calc(32.39px + 3.5211vw), 100px)
}

.contents-item-area.intro-fix {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    max-width: 1520px;
    width: 100%;
    gap: clamp(40px, calc(37.45px + 8.5106vw), 80px);
}

.contents-text h2.rad-professor-intro {
    color: #000000;
}

.introduction-column img {
    border-radius: 20px;
}

.introduction-column {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
}


@media screen and (max-width:1030px) {
    .d-r-and-d-professor-intro-area {
        padding: 60px 20px;
        padding-bottom: 100px;
        margin-top: 50px;
    }

    .contents-item.d-r-and-d-professor-intro-fix {
        max-width: 430px;
    }

    .contents-text.d-r-and-d-professor-intro-fix {
        gap: 50px;
    }

    .dh-about-layout-industry-fix {
        gap: 30px;
    }

    .contents-text p.d-r-and-d-professor-intro-fix {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .d-r-and-d-professor-intro-area h2.label {
        width: 100%;
        text-align: center;
    }

    .d-r-and-d-professor-intro-area h3.label-sub {
        width: 100%;
        text-align: center;
    }

    .introduction-column img {
        width: 150px;
        border-radius: 12px;
    }

    .introduction-column {
        align-items: center;
    }

    .contents-item-area.intro-fix {
        padding: 60px 20px;
        max-width: 430px;
    }
}

/*====================
#recruit-details
====================*/
.recruit-details-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 20px;
    padding-top: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    padding-bottom: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    gap: 20px;
}

.head-office-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2px;
    border: 1px solid #000000;
    max-width: 400px;
    width: 100%;
}

.head-office-header .label {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    line-height: clamp(36px, calc(31.07px + 0.9859vw), 50px);
    font-weight: 600;
    text-align: center;
    color: #000000;
    width: 100%;
}

.contents-item-area.details-fix {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    max-width: 1000px;
    width: 100%;
    gap: 100px;
}

.contents-img .img-active {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    max-width: 412px;
    width: 100%;
}

.contents-item-text-area.details-fix {
    max-width: 534px;
    width: 100%;
}

.details-select-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1520px;
    width: 100%;
    height: fit-content;
    gap: clamp(20px, calc(2.39px + 3.5211vw), 70px);
}

.details-select-area .product-select-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    max-width: clamp(250px, calc(176.06px + 14.7887vw), 460px);
    width: 100%;
    height: fit-content;
    background-color: #B4B4B4;
    border-radius: 50px;
    transition: all 0.2s linear;
}

.product-select-btn-img {
    overflow: hidden;
    max-width: clamp(30px, calc(15.92px + 2.8169vw), 70px);
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.product-select-btn-img img {
    width: clamp(30px, calc(15.92px + 2.8169vw), 70px);
}

.product-select-btn-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 0 15px;
    padding-bottom: 2px;
    gap: 10px;
}

.product-select-btn-text span {
    font-size: clamp(14px, calc(9.77px + 0.8451vw), 26px);
    color: #FFFFFF;
    font-weight: 400;
}

.details-select-area .product-select-btn:hover {
    background-color: #000000;
}

.details-select-area .product-select-btn-active {
    background-color: #000000;
}

.details-item-area {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 18px;
}

.area-active {
    display: flex;
}

.details-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 16px;
    border: 1px solid #000000;
}

.details-item-header {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 160px;
    width: 100%;
    padding: 16px;
    border-radius: 16px 0 0 16px;
    background-color: #000000;
}

.details-item-header .dt-header-text {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
}

.details-item-main {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 30px;
    width: calc(100% - 160px);
}

.details-item-main .dt-main-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-align: left;
    width: 100%;
}

@media screen and (max-width:1030px) {
    .contents-item-area.details-fix {
        max-width: 430px;
        gap: 30px;
    }

    .details-select-area .product-select-btn {
        padding: 8px;
    }

    .margin-fix {
        margin-bottom: 20px;
    }

    .details-item {
        flex-direction: column;
        border-radius: 12px;
    }

    .details-item-header {
        border-radius: 12px 12px 0 0;
        max-width: 100%;
        padding: 10px;
    }

    .details-item-main {
        width: 100%;
        padding: 16px;
    }

    .details-item-main .dt-main-text {
        text-align: left;
    }
}


/*====================
#recruit-comment
====================*/
.recruit-comment-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 80px 20px;
    margin-top: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    margin-bottom: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    background-color: #F5F5F5;
    gap: 20px;
}

.contents-item-area.comment-fix {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    max-width: 1000px;
    width: 100%;
    gap: 80px;
}

.comment-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 50px;
}

.comment-img-area {
    display: flex;
    flex-direction: column;
    max-width: 210px;
    width: 100%;
}

.comment-img {
    width: 100%;
    margin-bottom: 10px;
}

.comment-img-area .name {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-align: center;
}

.comment-img-area .position {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-align: center;
}

.comment-text-area {
    display: flex;
    flex-direction: column;
    width: calc(100% - 260px);
    gap: 40px;
}

.comment-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.comment-text-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    padding-bottom: 2px;
    border-radius: 14px 0 0 0;
    background-color: #000000;
    width: 100%;
    height: 44px;
}

.comment-text .ct-header {
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    color: #FFFFFF;
}

.comment-text .ct-notes {
    font-size: clamp(16px, calc(12.00px + 0.3125vw), 18px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    font-weight: 400;
    text-align: justify;
    width: 100%;
    color: #000000;
}

@media screen and (max-width:1030px) {
    .recruit-comment-area {
        padding: 60px 20px;
    }

    .contents-item-area.comment-fix {
        gap: 50px;
        max-width: 430px;
    }

    .comment-item {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .last-fix {
        margin: 0;
    }

    .comment-text-area {
        width: 100%;
        gap: 20px;
    }

    .comment-text .ct-header {
        font-size: 18px;
        text-align: center;
        width: 100%;
    }

    .comment-text-header {
        border-radius: 12px 12px 0 0;
    }

    .comment-text .ct-notes {
        font-size: clamp(14px, calc(8.00px + 1.6000vw), 16px);
        line-height: clamp(16px, calc(14.85px + 3.8298vw), 34px);
    }
}

/*====================
#recruit-movie
====================*/
.recruit-movie-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 20px;
    padding-top: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    padding-bottom: clamp(50px, calc(32.39px + 3.5211vw), 100px);
}

.contents-text.recruit-movie-fix {
    max-width: clamp(970px, calc(333.48px + 61.7978vw), 1520px);
    width: 100%;
}

.contents-text .recruit-movie-fix {
    text-align: center;
    width: 100%;
    color: #000000;
}

@media screen and (max-width:1030px) {
    .recruit-movie-area {
        max-width: 430px;
    }
}

/*====================
#recruit-flow
====================*/
.recruit-flow-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1920px;
    width: 100%;
    padding: 20px;
    padding-top: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    padding-bottom: clamp(50px, calc(32.39px + 3.5211vw), 100px);
    margin-bottom: 100px;
    gap: 30px;
}

.recruit-flow-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
}

.recruit-flow-area .label {
    font-size: clamp(24px, calc(5.48px + 1.7978vw), 40px);
    font-weight: 600;
    color: #000000;
    max-width: clamp(970px, calc(910.00px + 4.6875vw), 1000px);
    text-align: center;
    width: 100%;
    justify-content: center;
}

.recruit-flow-area .label-sub {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    line-height: clamp(36px, calc(31.07px + 0.9859vw), 50px);
    font-weight: 500;
    text-align: center;
    color: #000000;
    width: 100%;
}

.flow-item-area {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: clamp(970px, calc(910.00px + 4.6875vw), 1000px);
    width: 100%;
    gap: 30px;
}

.flow-item-h-deco {
    position: absolute;
    top: 0;
    right: 110px;
    width: 1.5px;
    height: 100%;
    background-color: #000000;
    z-index: -1;
}

.flow-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 100px;
    background-color: #000000;
    padding: 16px;
    padding-right: 50px;
    width: 100%;
    height: 130px;
    gap: 30px;
}


.flow-item-deco {
    width: 1px;
    height: stretch;
    background-color: #FFFFFF;
}

.num-area .num {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    color: #FFFFFF;
    text-align: center;
    padding-left: 70px;
}

.flow-main-text-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.flow-main-text-area .label {
    font-size: clamp(20px, calc(16.48px + 0.7042vw), 30px);
    color: #FFFFFF;
    text-align: left;
}

.flow-main-text-area .notes {
    font-size: clamp(16px, calc(15.30px + 0.1408vw), 18px);
    line-height: clamp(34px, calc(31.89px + 0.4225vw), 40px);
    font-weight: 400;
    color: #FFFFFF;
}

.recruit-flow-notes-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.recruit-flow-notes-item {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.recruit-flow-notes-item .notes {
    font-size: clamp(16px, calc(15.30px + 0.1408vw), 18px);
    font-weight: 300;
    color: #000000;
    text-align: justify;
}


@media screen and (max-width:1030px) {
    .recruit-flow-area {
        padding: 50px 20px;
        margin-bottom: 50px;
        max-width: 430px;
    }

    .recruit-flow-area .label {
        max-width: 430px;
    }

    .recruit-flow-notes-area {
        gap: 12px;
    }

    .flow-item-area {
        max-width: 430px;
        gap: 16px;
    }

    .flow-item {
        border-radius: 20px;
        padding: 16px;
        height: 100px;
    }

    .flow-main-text-area .label {
        font-size: 20px;
    }

    .num-area p.num {
        font-size: 20px;
        padding-left: 20px;
    }

    .flow-main-text-area .notes {
        line-height: 26px;
    }

    .flow-main-text-area {
        gap: 12px;
    }

    .recruit-flow-area .recruit-fix {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .flow-main-text-area img {
        width: 84px;
    }

    .flow-item-h-deco {
        display: none;
    }

    .recruit-flow-header {
        margin: 0;
    }

    .num-area .num {
        padding-left: 20px;
    }
}


/*====================
レスポンシブ切り替え
====================*/
.d-pc {
    display: flex;
}

.d-mobile {
    display: none;
}

img.d-pc {
    display: block;
}

img.d-mobile {
    display: none;
}

.hero-area img.d-pc {
    display: block;
}

.hero-area img.d-mobile {
    display: none;
}

.d-pc-s {
    display: inline-block;
}

.d-mobile-s {
    display: none;
}

@media screen and (max-width:1030px) {
    .d-pc {
        display: none;
    }

    .d-mobile {
        display: flex;
    }

    img.d-pc {
        display: none;
    }

    img.d-mobile {
        display: block;
    }

    .d-pc-s {
        display: none;
    }

    .d-mobile-s {
        display: inline-block;
    }
}

@media screen and (max-width:500px) {
    .hero-area img.d-pc {
        display: none;
    }

    .hero-area img.d-mobile {
        display: block;
    }
}

/*====================
v02 semantic support / no css deletion
====================*/
.details-select-area .product-select-btn .product-select-btn-text span {
    font-size: clamp(14px, calc(9.77px + 0.8451vw), 26px);
    color: #FFFFFF;
    font-weight: 400;
}

.details-item-area {
    margin: 0;
    padding: 0;
}

.details-item-area dt,
.details-item-area dd {
    margin: 0;
}

.details-item-header .dt-header-text,
.details-item-main .dt-main-text {
    display: block;
    width: 100%;
}

.contents-text h2.recruit-movie-fix {
    text-align: center;
    width: 100%;
    color: #000000;
}

.flow-item-area {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-item-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 110px;
    width: 1.5px;
    height: 100%;
    background-color: #000000;
    z-index: -1;
}

.flow-item {
    list-style: none;
}

.flow-main-text-area {
    width: 100%;
}

@media screen and (max-width:1030px) {
    .flow-item-area::after {
        content: none;
    }
}



.heading-break-adjust .heading-line {
    display: inline;
}

.heading-break-adjust .heading-break-pc {
    display: block;
}

.text-break-adjust .text-line {
    display: inline;
}

.text-break-adjust .text-break-pc {
    display: block;
}

@media screen and (max-width:1030px) {
    .heading-break-adjust .heading-line,
    .text-break-adjust .text-line {
        display: block;
        width: 100%;
    }

    .heading-break-adjust .heading-break-pc,
    .text-break-adjust .text-break-pc {
        display: none;
    }

    .recruit-intro-title .heading-line,
    .recruit-intro-notes .text-line,
    .recruit-intro-notes-bold .text-line,
    .recruit-intro-02-title .heading-line,
    .recruit-contents01-title .heading-line,
    .recruit-sales-title .heading-line,
    .recruit-assistant-title .heading-line,
    .recruit-flow-label-sub .text-line {
        width: 100%;
    }
}
