/* ----------------------------------------------

これはrecruit用のcssファイルです

----------------------------------------------- */



/* ----------------------------------------------
カラー
----------------------------------------------- */
:root{
    --color-bk: #212121;
    --color-wh: #fff;
    --color-red: #C6001B;
    --color-gray: #F2F2F2;
    --color-gray02: #727283;
    --color-transparent: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------
フォント
----------------------------------------------- */

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Heavy.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Bold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Normal.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-Light.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

@font-face {
    font-family: "Source Han Code JP";
    src: url("../fonts/SourceHanCodeJP-ExtraLight.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    unicode-range: U+0080-FFFF;
}

:root{
    --font-jp: "Source Han Code JP", sans-serif;
    --font-en: "IBM Plex Sans", sans-serif;
}



/* ----------------------------------------------
トップページ
----------------------------------------------- */

/* hero
----------------------------------------------- */

.p-recHeading__wrap{
    width: 100%;
    height: 100svh;
    position: relative;
}

.p-recHeading__txtBox{
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 2;
    color: var(--color-wh);
}

.p-recHeading__txtBox h2{
    font-size: 6.268em;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.p-recHeading__txtBox h2 span{
    font-size: 0.349em;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.15em;
    display: block;
    margin-top: 48px;
}

.p-recHeading__imageBox{
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100svh;
    top: 0;
    left: 0;
}

.p-recHeading__imageBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.p-recHeading__link{
    width: 400px;
    color: var(--color-bk);
}


.animation.p-recHeading__link{
    width: 262px;
    right: 30px;
    bottom: 30px;
}

.p-recHeading__linkItem a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: var(--color-wh);
    border: var(--color-red) 1px solid;
    border-radius: 10px;
    position: relative;
    gap: 0 32px;
    height: 130px;
}

.animation .p-recHeading__linkItem a{
    padding: 20px;
    gap: 0 40px;
    height: 80px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.p-recHeading__linkItem h3{
    font-weight: 600;
    font-size: 2.5em;
    letter-spacing: 0.1em;
}

.animation .p-recHeading__linkItem h3{
    font-size: 1.5em;
}

.p-recHeading__linkItem h3 span{
    display: block;
    font-weight: 500;
    font-size: 0.35em;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.animation .p-recHeading__linkItem h3 span{
    display: none;
}

.p-recHeading__linkItem i{
    margin-left: 0;
    width: 80px;
    height: 80px;
}

.animation .p-recHeading__linkItem .c-arr__icon01{
    width: 40px;
    height: 40px;
}

.animation .p-recHeading__linkItem .c-arr__icon01::before{
    width: 12px;
    height: 6.67px;
    background: url(../img/common/btn-arrow01_s.svg) no-repeat center center / cover;
}

.p-recHeading__linkItem .c-arr__icon01::after{
    display: none;
}

.p-recHeading__link.animation {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.p-recHeading__link {
    opacity: 0;
}

/*
.p-recHeading__imageBox::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, 0.6);
    position: absolute;
    top:0;
    left: 0;
    transition: ease 0.5s;
}
*/

@media screen and (min-width: 769px) {
    .p-recHeading__link{
        position: fixed;
        display: flex;
        flex-direction: column;
        gap: 8px 0;
        z-index: 999;
        right: 70px;
        bottom: 16px;
    }
    
    .p-recHeading__linkItem a{
        transition: ease 0.4s;
    }
    
    .p-recHeading__linkItem a:hover{
        color: var(--color-wh);
        background: var(--color-red);
        opacity: 1;
    }
    
    .p-recHeading__linkItem a:hover .c-arr__icon01{
        border: var(--color-wh) 1px solid;
    }
    
    .animation .p-recHeading__linkItem a:hover .c-arr__icon01::before{
        width: 12px;
        height: 6.67px;
        background: url(../img/common/btn-arrow01_s_wh.svg) no-repeat center center / cover;
    }
    
}

@media screen and (max-width: 768px) {
    
    .p-recHeading__imageBox{
        height: 100svh;
    }
    
    .p-recHeading__txtBox{
        width: 100%;
        left: 50%;
        bottom: 160px;
        transform: translateX(-50%);
    }
    
    .p-recHeading__txtBox h2{
        font-size: 4em;
        text-align: center;
    }
    
    .p-recHeading__txtBox h2 span{
        margin-top: 24px;
    }
    
    .p-recHeading__link{
        position: fixed;
        bottom: 8px;
        left: 8px;
        z-index: 999;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 0 8px;
        width: calc(100% - 16px);
    }
    
    .animation.p-recHeading__link{
        width: calc(100% - 16px);
        bottom: 8px;
        left: 8px;
        right: auto;
        gap: 0 8px;
    }
    
    .p-recHeading__linkItem h3{
        font-size: 1.5em;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .p-recHeading__linkItem h3 span{
        font-size: 0.375em;
        margin-top: 8px;
    }
    
    .p-recHeading__linkItem a{
        width: 100%;
        padding: 16px 8px;
        height: 80px;
        gap: 0 8px;
    }
    
    .animation .p-recHeading__linkItem a{
        padding: 16px 16px;
        gap: 0 16px;
        height: auto;
    }
    
    .p-recHeading__linkItem .c-arr__icon01 {
        width: 40px;
        height: 40px;
    }
    
    .p-recHeading__linkItem .c-arr__icon01::before {
        width: 12px;
        height: 6.67px;
        background: url(../img/common/btn-arrow01_s.svg) no-repeat center center / cover;
    }

      .p-recHeading__linkItem a{
        transition: ease 0.2s;
    }
    
    .p-recHeading__linkItem a:active{
        color: var(--color-wh);
        background: var(--color-red);
        opacity: 1;
    }
    
    .p-recHeading__linkItem a:active .c-arr__icon01{
        border: var(--color-wh) 1px solid;
    }
    
    .animation .p-recHeading__linkItem a:active .c-arr__icon01::before{
        width: 12px;
        height: 6.67px;
        background: url(../img/common/btn-arrow01_s_wh.svg) no-repeat center center / cover;
    }

    .animation .p-recHeading__linkItem h3{
        font-size: 3.8vw;
    }
    
    .animation .p-recHeading__linkItem h3 span{
        display: none;
    }
    
}

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

    .animation .p-recHeading__linkItem a{
        padding: 8px 16px;
        height: 60px;
    }

     .animation .p-recHeading__linkItem h3{
        font-size: 5.2vw;
    }
}


/* 社会人学校 & service
----------------------------------------------- */

.p-recruit__grid{
    position: relative;
    z-index: 2;
    padding-block: 140px calc(250vw / 13);
}

.p-recruit__grid .c-title02{
    position: relative;
    z-index: 2;
    font-size: clamp(3.5em, 4em, 4vw);
    margin-bottom: 60px;
    gap: 0 20px;
    flex-wrap: wrap;
    line-height: 1.4;
}

.p-recruit__grid .c-title04{
    margin-bottom: 60px;
}

.p-recruit__gridCopy{
    font-size: 2em;
    line-height:1.5;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.p-recruit__gridRead{
    text-align: left;
    color: var(--color-gray02);
    font-size: 1.125em;
    line-height: 2;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.c-btn__right{
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 769px) {
    .p-recruit__grid .l-container{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
        position: relative;
        z-index: 2;
    }
    
    .p-recruit__grid + .p-recruit__grid{
        padding-top: 120px;
    }
    
    .p-recruit__gridText{
        flex: 1 1 calc(735vw / 14.37);
        max-width: 735px;
        position: relative;
        z-index: 3;
        background: rgba(255, 255, 255, 0.95);
        padding-top: 80px;
        padding-bottom: 0;
        padding-right: 80px;
        border-radius: 0 10px 0 0;
        top: calc(215vw / 13);
        order: 0;
    }
    
    .p-recruit__gridImage{
        flex: 1 1 calc(1000vw / 14.37);
        max-width: 1000px;
        text-align: center;
        position: relative;
        z-index: 2;
        margin-left: -25.96vw;
        order: 1;
    }
    
    .p-recruit__gridImage img {
        max-width: 100%;
        height: auto;
    }
    
    .p-recruit__grid + .p-recruit__grid .p-recruit__gridText{
        order: 1;
        padding-left: 80px;
        padding-bottom: 120px;
        padding-right: 0;
        border-radius: 10px 0 0 0;
    }
    
    .p-recruit__grid + .p-recruit__grid .p-recruit__gridImage{
        order: 0;
        margin-right: -25.96vw;
        margin-left: 0;
    }
    
}

@media screen and (max-width: 768px) {
    
    .p-recruit__grid{
        padding-block: 80px 0;
    }
    
    .p-recruit__grid .l-container{
        padding-inline: 0;
    }
    
    .p-recruit__gridRead{
        font-size: 0.875em;
        line-height: 1.889;
        margin-bottom: 24px;
    }
    
    .p-recruit__gridImage{
        width: calc(100% - 40px);
        margin-left: auto;
        position: relative;
        z-index: 2;
    }
    
    .p-recruit__gridText{
        width: calc(100% - 32px);
        padding: 32px;
        margin-right: auto;
        border-radius: 0 10px 0 0;
        top:-10vw;
        position: relative;
        z-index: 3;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .p-recruit__grid .c-title02{
        font-size: 2.5em;
        margin-bottom: 24px;
    }
    
    .p-recruit__grid .c-title02 .large{
        font-size: 1.25em;
    }
    
    .p-recruit__gridCopy{
        font-size: 1.375em;
        margin-bottom: 24px;
    }
    
    .p-recruit__grid +    .p-recruit__grid{
        padding-top: 0;
    }
    
    .p-recruit__grid +    .p-recruit__grid .p-recruit__gridImage{
        margin-right: auto;
        margin-left: 0;
    }
    
    .p-recruit__grid +    .p-recruit__grid .p-recruit__gridText{
        margin-right: 0;
        margin-left: auto;
        border-radius: 10px 0 0 0;
    }
    
    .p-recruit__grid .c-title02{
        gap: 0 8px;
    }

    .p-recruit__grid .c-title04{
        margin-bottom: 20px;
    }
    
}
/* voice
----------------------------------------------- */

.p-recVoice__wrap{
    position: relative;
    z-index: 2;
    padding-block: 0 120px;
    overflow: hidden;
}

.p-recVoice__wrap .c-title04{
    margin-bottom: 60px;
}

.p-recVoice__list{
    display: flex;
    justify-content: flex-end;
    gap: 0 40px;
    margin-bottom: 40px;
}

.p-recVoice__listItem{
    width: calc(500vw / 14.4); /* 固定幅 */
    max-width: 500px;
    padding: 0 20px;
    box-sizing: border-box;
}

.p-recVoice__image{
    position: relative;
    aspect-ratio: 9 / 12;
}

.p-recVoice__image img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.p-recVoice__text{
    width: calc(100% - 14%);
    position: absolute;
    border-radius: 0 10px 10px 0;
    background: rgba(255, 255, 255, 0.9);
    left: 0;
    bottom: 20px;
    padding: 8%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-recVoice__text h5{
    font-size: 1.5em;
    font-size: clamp(1.1em, 1.5em, 1.5vw);
    font-weight: 600;
    line-height: 1.6;
    display: -webkit-box;              /* flexbox風の表示 */
    -webkit-line-clamp: 2;             /* 表示する行数 */
    -webkit-box-orient: vertical;      /* 縦方向に制御 */
    overflow: hidden;                  /* はみ出しを隠す */
    text-overflow: ellipsis;           /* 省略記号 (…) */
}

.p-recVoice__text p{
    font-size: 1em;
    font-size: clamp(0.75em, 1em, 1vw);
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-gray02);
}

.p-recVoice__wrap .slider-arrows {
    display: flex;
    gap: 20px;
    margin-left: auto;
    padding-bottom: 40px;
}

.p-recVoice__wrap .slider-prev,
.p-recVoice__wrap .slider-next {
    background: transparent;
    border: 1px solid var(--color-red);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.p-recVoice__wrap .slider-prev::before,
.p-recVoice__wrap .slider-next::before {
    content: '';
    width: 0;
    height: 100%;
    background: var(--color-red);
    position: absolute;
    top:0;
    left: 0;
    transition: ease 0.4s;
    opacity: 0;
    border-radius: 50%;
}

.p-recVoice__wrap .slider-prev::after,
.p-recVoice__wrap .slider-next::after{
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    border: 1px solid var(--color-red);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 48.5%;
    left: 25px;
    transition: ease 0.4s;
    z-index: 3;
}

.p-recVoice__wrap .slider-prev::after{
    transform: translateY(-50%) rotate(-135deg);
    left: 35px;
}

.custom-dots-container{
    margin-block: 8px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.p-recVoice__wrap .slick-dots{
    text-align: right;
    bottom: 0;
}

.slick-dots li{
    width: 16px;
    height: 16px;
}

.slick-dots li button:before{
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-wh);
    border: 1px solid var(--color-bk);
    border-radius: 50%;
    padding: 0;
    opacity: 1;
    line-height: 0;
}

.slick-dots li button{
    padding: 0;
    width: 16px;
    height: 16px;
}

.slick-dots li.slick-active button:before{
    background: var(--color-red);
    opacity: 1;
    border-color: var(--color-red);
}


@media screen and (min-width: 481px) {
    
    .p-recVoice__wrap .l-container{
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
        padding-inline: 70px;
        max-width: 1440px;
    }
    
    .p-recVoice__list.slick-slider{
        margin-left: 0;
    }
    
    .p-recVoice__wrap .slick-track{
        left: -20px;
    }
    
    .slider-prev:hover::before, .slider-next:hover::before {
        width: 100%;
        opacity: 1;
    }
    
    .slider-prev:hover::after,.slider-next:hover::after{
        border-color: var(--color-wh);
    }
}

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

    .p-recVoice__text{
        width: calc(100% - 5%);
        gap: 8px;
        bottom: 10px;
    }

     .p-recVoice__text h5{
        font-size: 0.8em;
    }

    .p-recVoice__text p{
        font-size: 0.65em;
    }
}

@media screen and (max-width: 480px) {
    
    .p-recVoice__wrap .c-title04{
        margin-bottom:24px;
    }
    
    .custom-dots-container{
        margin-block: 8px 16px;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    
    .p-recVoice__wrap .slick-dots{
        padding-right: 0;
    }
    
    .p-recVoice__listItem{
        padding:    0;
    }
    
    .p-recVoice__wrap .slider-prev,
    .p-recVoice__wrap .slider-next{
        width: 60px;
        height: 60px;
    }
    
    .p-recVoice__wrap .slider-prev::after,
    .p-recVoice__wrap .slider-next::after{
        width: 14px;
        height: 14px;
        left: 20px;
    }
    
    .p-recVoice__wrap .slider-prev::after{
        left: 25px;
    }

    .p-recVoice__wrap .slider-prev:active::before,
    .p-recVoice__wrap .slider-next:active::before {
        width: 100%;
        opacity: 1;
    }
    
    .p-recVoice__wrap .slider-prev:active::after,
    .p-recVoice__wrap .slider-next:active::after{
        border-color: var(--color-wh);
    }

    .p-recVoice__wrap .slider-arrows {
        padding-bottom: 8px;
    }

    .p-recVoice__text h5{
        font-size: 1.2em;
    }

    .p-recVoice__text{
        gap: 8px;
    }
}

/* culture
----------------------------------------------- */

.p-recCulture__wrap{
    position: relative;
    z-index: 2;
    padding-block: 0 100px;
}

.p-recCulture__title{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0 40px;
}

.p-recCulture__wrap .c-title04{
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}
.p-recCulture__grid{
    display: flex;
    flex-direction: row-reverse;
    gap: 0 56px;
}

.p-recCulture__grid + .p-recCulture__grid{
    margin-top: 80px;
}

.p-recCulture__left{
    width: calc(700vw / 14.37);
    max-width: 700px;
}

.p-recCulture__right{
    width: calc(544vw / 14.37);
    max-width: 544px;
    display: flex;
    flex-direction: column;
    padding-top: calc(80vw / 14.4);
}

.p-recCulture__right h4{
    font-size: clamp(1.5em,2.3vw,2.3em);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
}

.p-recCulture__text {
    font-size: 1em;
    font-weight: 500;
    line-height: 2;
    color: var(--color-gray02);
}

.p-recCulture__right .c-btn__right{
    margin-top: auto;
}

@media screen and (min-width: 481px) {
    .p-recCulture__title .c-btn__left{
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 480px) {
    
    .p-recCulture__wrap{
        padding-block: 0 80px;
    }
    
    .p-recCulture__title{
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }
    
    .p-recCulture__wrap .c-title04{
        margin-bottom: 16px;
    }
    
    .p-recCulture__grid{
        flex-direction: column-reverse;
        gap: 32px 0;
    }
    
    .p-recCulture__grid + .p-recCulture__grid{
        margin-top: 40px;
    }
    
    .p-recCulture__left{
        width: 100%;
    }
    
    .p-recCulture__right{
        width: 100%;
        padding-top: 0;
    }
    
    .p-recCulture__right h4{
        font-size: 1.5em;
        margin-bottom: 16px;
    }
    
    .p-recCulture__text{
        font-size: 0.875em;
        margin-bottom: 24px;
    }
}

/* benefits & training
----------------------------------------------- */

.p-recBnr__wrap{
    position: relative;
    z-index: 2;
    padding-block: 0 64px;
}


.p-recBnr__list{
    position: relative;
    z-index: 2;
}

.p-recBnr__list li{
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: #fff;
    max-width: 630px;
    height: calc(440vw / 14.4);
    max-height: 440px;
    transition: ease 0.4s;
    padding: calc(80vw / 63) calc(40vh / 63);
}

.p-recBnr__title{
    font-size: clamp(1.25em,2.5vw,2.5em);
    word-break: break-all;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-bottom: calc(40vh / 14.4);
}

.p-recBnr__text{
    position: relative;
    z-index: 2;
    word-break: break-all;
    font-size: clamp(1.05em,1.625vw,1.625em);
    font-weight: 500;
    line-height: 1.75;
    text-align: center;
}

.p-recBnr__list li:first-child{
    background: url(../img-recruit/top/benefits.webp) no-repeat center center /cover;
}

.p-recBnr__list li:nth-child(2){
    background: url(../img-recruit/top/study.webp) no-repeat center center /cover;
}

.p-recBnr__list li::before{
    content: '';
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    transition: ease 0.4s;
}

.p-recBnr__list .c-btn__center{
    margin-block: calc(40vw / 14.4) 0;
}


@media screen and (min-width: 481px) {
    .p-recBnr__list{
        display: flex;
        gap: 0 40px;
    }
    
    .p-recBnr__list li{
        width: calc((100% / 2) - 20px);
    }
    
    .p-recBnr__list li a:hover{
        color: var(--color-bk);
        opacity: 1;
    }
    
    .p-recBnr__list li a:hover::before{
        background: rgba(255, 255, 255, 0.6);
    }
    
}

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

    .p-recBnr__wrap{
        padding-bottom: 0;
    }

    .p-recBnr__list{
        display: flex;
        flex-direction: column;
        gap: 8px 0;
        padding-block: 0 80px;
    }
    
    .p-recBnr__list li{
        padding: 45px 16px;
        height: auto;
    }

     .p-recBnr__list li a:active{
        color: var(--color-bk);
        opacity: 1;
    }
    
    .p-recBnr__list li a:active::before{
        background: rgba(255, 255, 255, 0.6);
    }
    
}


/* ----------------------------------------------
社会人学校&reg;
----------------------------------------------- */

/* about
----------------------------------------------- */

.p-employee__cont01Wrap{
    padding-block:100px 80px;
    position: relative;
}

.p-employee__cont01Wrap .c-title01{
    position: relative;
    z-index: 2;
}

.p-employee__cont01Wrap::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--color-gray);
    width: 53%;
    height: calc(100% - 240px);
    border-radius: 10px 0 0 10px;
}

.p-employee__movieBlock{
    margin-inline: auto;
    max-width: 1300px;
    aspect-ratio: 16 / 9;
    z-index: 2;
    position: relative;
    margin-bottom: 80px;
}

.p-employee__movieBlock iframe {
    width: 100%;
    height: 100%;
}
.p-employee__cont01Grid{
    display: flex;
    align-items: flex-start;
    gap: 0 80px;
    z-index: 2;
    position: relative;
}

.p-employee__cont01Copy{
    font-size: clamp(2em,2.8vw,2.8em);
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
    padding-left: calc(64vw / 14.4);
}

.p-employee__cont01Copy strong{
    color: var(--color-red);
    font-weight: 600;
}

.p-employee__cont01Read{
    width: calc(640vw / 14.4);
    max-width: 640px;
    font-size: 1.125em;
    line-height: 2;
    font-weight: 500;
    color: var(--color-gray02);
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    
    .p-employee__cont01Wrap{
        padding-block: 80px 80px;
    }
    
    .p-employee__cont01Wrap::after{
        width: 80%;
        height: calc(100% - 240px);
    }
    
    .p-employee__cont01Grid{
        flex-direction: column;
        gap: 24px 0;
        align-items: center;
    }
    
    .p-employee__cont01Copy{
        padding-left: 0;
        font-size: 1.5em;
    }
    
    .p-employee__cont01Read{
        width: 100%;
        margin-inline: auto;
        font-size: 0.875em;
    }
    
    .p-employee__movieBlock{
        margin-bottom: 40px;
    }
}

.p-employee__cont02Wrap{
    padding-block: 110px 120px;
}

.p-employee__cont02Image{
    margin-inline: auto;
}

.p-employee__cont02Read{
    font-size: 1.125em;
    line-height: 2;
    font-weight: 500;
    color: var(--color-gray02);
    margin-top: 88px;
    max-width: 930px;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .p-employee__cont02Wrap{
        padding-block: 80px;
    }
    
    .p-employee__cont02Read{
        font-size: 0.875em;
        margin-top: 40px;
    }
}

.p-employee__cont03Wrap{
    padding-block:100px 120px;
    position: relative;
}

.p-employee__cont03Wrap::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-gray);
    width: 46.55%;
    height: calc(100% - 80px);
    border-radius: 0 10px 10px 0;
}

.p-employee__cont03Grid{
    display: flex;
    align-items: flex-start;
    gap: 0 80px;
    z-index: 2;
    position: relative;
    margin-bottom: 80px;
}

.p-employee__cont03Copy{
    font-size: clamp(2em,2.8vw,2.8em);
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
    padding-left: calc(64vw / 14.4);
}

.p-employee__cont03Copy strong{
    color: var(--color-red);
    font-weight: 600;
}

.p-employee__cont03Read{
    width: calc(640vw / 14.4);
    max-width: 640px;
    font-size: 1.125em;
    line-height: 2;
    font-weight: 500;
    color: var(--color-gray02);
    margin-left: auto;
}

.p-employee__cont03Image{
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    
    .p-employee__cont03Wrap{
        padding-block: 80px 80px;
    }
    
    .p-employee__cont03Wrap::after{
        width: 80%;
        height: calc(100% - 240px);
    }
    
    .p-employee__cont03Grid{
        flex-direction: column;
        gap: 24px 0;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .p-employee__cont03Copy{
        padding-left: 0;
        font-size: 1.5em;
    }
    
    .p-employee__cont03Read{
        width: 100%;
        margin-inline: auto;
        font-size: 0.875em;
    }
}

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

    .p-employee__cont02Image{
        width: 100%;
        overflow-x: scroll;
        display: block;
        padding-bottom: 20px;
    }

    .p-employee__cont02Image img{
        width: 650px;
        height: auto;
    }

}

/* career path
----------------------------------------------- */

.p-careerpath__cont01Wrap{
    padding-block: 100px;
}

.p-careerpath__read{
    font-size: 1.125em;
    font-weight: 400;
    line-height: 2;
    color: var(--color-gray02);
    word-break: auto-phrase;
}

.p-careerpath__cont01Image{
    margin-top: 60px;
    display: block;
}

@media screen and (max-width: 480px) {
    .p-careerpath__cont01Wrap{
        padding-block: 80px;
    }
    
    .p-careerpath__read{
        font-size: 0.875em;
        word-break: normal;
    }
    
    .p-careerpath__cont01Image{
        margin-top: 40px;
    }
    
    .p-careerpath__cont01Image{
        width: 100%;
        overflow-x: scroll;
    }
    
    .p-careerpath__cont01Image img{
        width: 700px;
        height: auto;
    }
}

.p-careerpath__cont02Wrap{
    padding-block: 100px;
}

.p-careerpath__systemDl{
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    background: var(--color-wh);
}

.p-careerpath__systemDl dt {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.417;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.p-careerpath__systemDl figure img {
    width: auto;
    height: 120px;
    margin-block: 0 20px;
}

.p-careerpath__systemDl figcaption {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.p-careerpath__systemDl figcaption span{
    font-size: 0.75em;
}

.p-careerpath__systemDl dd {
    font-weight: 400;
    line-height: 2;
    color: var(--color-gray02);
}

@media screen and (min-width: 481px) {
    .p-careerpath__systemList{
        margin-top: 32px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: calc(40vw / 13);
    }
    
    .p-careerpath__systemDl{
        width: calc((100% / 3) - (40vw / 13));
    }
    
}

@media screen and (max-width: 1050px) {
    
    .p-careerpath__systemDl {
        padding: 24px;
    }
    
    .p-careerpath__systemDl figure img{
        margin-block: 0 8px;
        height: 80px;
    }
    
    .p-careerpath__systemDl dt {
        font-size: 1em;
    }
    
    .p-careerpath__systemDl figcaption {
        height: auto;
        margin-top: 8px;
    }
    
    .p-careerpath__systemDl dd {
        font-size: 0.875em;
    }
}

@media screen and (max-width: 480px) {
    .p-careerpath__cont02Wrap{
        padding-block: 80px;
    }
    
    .p-careerpath__systemList{
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 20px;
    }
}

.p-careerpath__cont03Wrap{
    padding-block: 100px;
}

.p-careerpath__cont03Wrap .p-careerpath__grid01{
    margin-bottom: 80px;
}

.p-careerpath__cont03Wrap .c-title03.large{
    margin-bottom: 20px;
}

.p-careerpath__grid01{
    display: flex;
    justify-content: center;
    gap: 0 40px;
}

.p-careerpath__grid01Left{
    order: 0;
    width: 630px;
    display: flex;
    flex-direction: column;
}

.p-careerpath__grid01Left .c-title03.large,
.p-careerpath__grid01Right .c-title03.large{
    margin-bottom: 20px;
}

.p-careerpath__grid01Right{
    order: 1;
    width: 630px;
    display: flex;
    flex-direction: column;
}

.p-careerpath__grid01Right .p-careerpath__read,
.p-careerpath__grid01Left .p-careerpath__read{
    word-break: normal;
}

.p-careerpath__grid01 .c-btn__right{
    margin-top: auto;
}

.p-careerpath__grid01 .c-title02{
    margin-bottom: 40px;
}

.p-careerpattern__cont01Wrap{
    padding-block: 100px;
}

.p-largeBnr__block{
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.p-largeBnr__block a{
    position: relative;
    color: var(--color-wh);
    display: block;
    padding: 80px calc(95vw / 13);
    width: 100%;
    min-height: 400px;
}

.p-largeBnr__image{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.p-largeBnr__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.p-largeBnr__text {
    position: relative;
    z-index: 2;
    transition: ease 0.4s;
}

.p-largeBnr__text h3{
    font-size: clamp(4.2em,4.5em,4.5vw);
    font-weight: 700;
    line-height: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.p-largeBnr__text h3 span{
    font-size: 0.4em;
    display: flex;
    align-items: center;
    margin-top: 16px;
    gap: 16px;
    font-weight: 600;
}

.p-largeBnr__text h3 span::before{
    content: '';
    width: 14px;
    height: 14px;
    background: var(--color-wh);
    border-radius: 50%;
    display: inline-block;
    transition: ease 0.4s;
}

.p-largeBnr__text p{
    font-size: 1.5em;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 40px;
}

.p-largeBnr__text i{
    border: 1px solid var(--color-wh);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    transition: ease 0.4s;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top:50%;
    left: 260px;
    transform: translateY(-50%);
    overflow: hidden;
}

.p-largeBnr__text i::before{
    content: '';
    width: 36px;
    height: 20px;
    background: url(../img/common/btn-arrow01_wh.svg) no-repeat center center / cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: ease 0.4s;
}

.p-largeBnr__image::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top:0;
    left: 0;
    opacity: 0;
    transition: ease 0.4s;
}

@media screen and (max-width: 820px) {
    .p-largeBnr__block a{
        padding: calc(80vw / 13) calc(95vw / 13);
        min-height: auto;
    }
    
    .p-largeBnr__text i{
        width: calc(120vw / 13);
        height: calc(120vw / 13);
        left: calc(400vw / 13)
    }
    
    .p-largeBnr__text i::before{
        width: calc(36vw / 13);
        height: calc(20vw / 13);
        background: url(../img/common/btn-arrow01_s_wh.svg) no-repeat center center / cover;
    }
    
    .p-largeBnr__text h3{
        font-size: calc(120vw / 13);
    }
    
    .p-largeBnr__text h3 span{
        margin-top: calc(16vw / 13);
        gap: 8px;
    }
    
    .p-largeBnr__text h3 span::before{
        width: 12px;
        height: 12px;
    }
    
    .p-largeBnr__text p{
        font-size: calc(40vw / 13);
        margin-top: calc(40vw / 13);
    }
    
    .p-careerpath__grid01{
        flex-direction: column-reverse;
        gap: 24px 0;
        margin-bottom: 40px;
    }
    
    .p-careerpath__grid01.reverse{
        flex-direction: column;
    }
    
    .p-careerpath__grid01Right{
        width: 100%;
        order: 0;
    }
    
    .p-careerpath__grid01Left{
        width: 100%;
        order: 1;
    }
    
    .p-careerpattern__cont01Wrap{
        padding-block: 60px;
    }
    
    .p-careerpattern__cont01Wrap .p-careerpath__grid01{
        margin-bottom: 0;
    }
}

@media screen and (min-width: 481px) {
    
    .p-largeBnr__text i::after{
        content: '';
        width: 0;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        left: 0;
        right: 0;
        border-radius: 50%;
        opacity: 0;
        transition: ease 0.4s;
    }
    
    .p-largeBnr__block a:hover{
        opacity: 1;
    }
    
    .p-largeBnr__block a:hover .p-largeBnr__text{
        color: var(--color-bk);
    }
    
    .p-largeBnr__block a:hover h3 span::before{
        background: var(--color-bk);
    }
    
    .p-largeBnr__block a:hover i{
        border-color: var(--color-bk);
    }
    
    .p-largeBnr__block a:hover i::after{
        width: 100%;
        opacity: 1;
    }
    
    .p-largeBnr__block a:hover .p-largeBnr__image::before{
        opacity: 1;
    }
    
}

@media screen and (max-width: 480px) {
    .p-careerpath__grid01 .c-title02{
        margin-bottom: 16px;
    }

    .p-careerpath__grid01 .c-btn__right{
        margin-top: 20px;
    }

     .p-largeBnr__text i::after{
        content: '';
        width: 0;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        left: 0;
        right: 0;
        border-radius: 50%;
        opacity: 0;
        transition: ease 0.4s;
    }
    
    .p-largeBnr__block a:active{
        opacity: 1;
    }
    
    .p-largeBnr__block a:active .p-largeBnr__text{
        color: var(--color-bk);
    }
    
    .p-largeBnr__block a:active h3 span::before{
        background: var(--color-bk);
    }
    
    .p-largeBnr__block a:active i{
        border-color: var(--color-bk);
    }
    
    .p-largeBnr__block a:active i::after{
        width: 100%;
        opacity: 1;
    }
    
    .p-largeBnr__block a:active .p-largeBnr__image::before{
        opacity: 1;
    }
}


/* woman
----------------------------------------------- */

.p-woman__cont01Wrap{
    padding-block: 100px;
}

.p-woman__cont01Wrap .p-careerpath__grid01{
    margin-bottom: 100px;
}

.p-woman__cont01Wrap .p-careerpath__read{
    word-break: normal;
}

.p-card__grid01{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    background: var(--color-wh);
}

.p-card__grid01 + .p-card__grid01{
    margin-top: 40px;
}

.p-card__grid01Right{
    order: 1;
    width: 680px;
}



.p-card__grid01.reverse .p-card__grid01Right{
    order: 0;
}

.p-card__grid01Left{
    order: 0;
    width: 500px;
}

.p-card__grid01Left.mov{
    aspect-ratio: 16 / 9;
}

.p-card__grid01Left.mov iframe{
    width: 100%;
    height: 100%;
}

.p-card__grid01.reverse .p-card__grid01Left{
    order: 1;
}

.p-card__grid01Left img{
    border-radius: 10px;
}

.p-card__grid01 h4{
    font-size: 2em;
    line-height: 1.5;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    margin-bottom: 32px;
}

.p-card__grid01 h4 span{
    color: var(--color-red);
    font-size: 0.75em;
    line-height: 1.333;
}

.p-card__grid01 ul{
    font-size: 1em;
    line-height: 1.4;
    font-weight: 600;
    list-style-type: disc;
    padding-left: 1em;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}

.p-card__grid01 ul li::marker{
    color: var(--color-red);
}

.p-card__grid01 p{
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--color-red);
    color: var(--color-gray02);
    font-size: 1.125em;
    line-height: 2;
}


.p-woman__cont02Wrap{
    padding-block: 0 100px;
}

.p-woman__cont03Wrap{
    padding-block: 100px 120px;
}

.p-woman__voiceHeading{
    position: relative;
    margin-top:60px;
    padding-block: 40px;
}

.p-woman__voiceHeading::after{
    content: '';
    background: var(--color-gray);
    position: absolute;
    right: 0;
    top:0;
    width: calc(70% + 160px);
    height: 100%;
}

.p-woman__voiceHeading .l-container{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.p-woman__voiceHeading picture{
    width: calc(30% - 20px);
}

.p-woman__voiceProfile{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.p-woman__voiceProfile .name{
    order: 1;
    font-size: 2em;
    font-weight: 600;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.p-woman__voiceProfile .name ruby{
    color: var(--color-gray02);
    font-size: 0.438em;
}

.p-woman__voiceProfile .department{
    order: 0;
    font-size: 1em;
    line-height: 2;
    background: var(--color-wh);
    border: 1px solid var(--color-red);
    border-radius: 50px;
    padding: 2px 40px;
    color: var(--color-red);
}

.p-woman__voiceProfile .comment{
    order: 2;
    color: var(--color-gray02);
    line-height: 2;
    width: 100%;
    border-bottom: 1px solid var(--color-wh);
    padding-bottom: 20px;
}

.p-woman__voiceProfile .biography-title{
    order: 3;
    font-size: 1.25em;
    line-height: 1;
    font-weight: 600;
}

.p-woman__voiceProfile .biography{
    order: 4;
    font-size: 0.875em;
    line-height: 2;
    color: var(--color-gray02);
}

.p-woman__voiceInterview{
    display: flex;
    justify-content: flex-end;
    padding-top: 100px;
}

.p-woman__voiceInterview .inner{
    max-width: 850px;
}

.p-woman__voiceInterview dt{
    margin-bottom: 20px;
    font-size: 1.5em;
    line-height: 1.5;
    font-weight: 600;
    padding-left: 80px;
    position: relative;
}

.p-woman__voiceInterview dt::before{
    content: '';
    background: var(--color-red);
    width: 60px;
    height: 1px;
    position: absolute;
    top: 18px;
    left: 0;
}

.p-woman__voiceInterview dd{
    color: var(--color-gray02);
    font-size: 0.875em;
    line-height: 2;
}

.p-woman__voiceInterview dd + dt{
    margin-top: 80px;
}

.p-woman__voiceInterview picture{
    margin: 80px auto;
    display: block;
    width: 55%;
}

@media screen and (max-width: 480px) {
    
    .p-woman__cont01Wrap .p-careerpath__grid01{
        margin-bottom: 40px;
    }

    .p-careerpath__cont03Wrap .c-title03.large{
        margin-bottom: 20px;
    }


    .p-card__grid01{
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    
    .p-card__grid01Right{
        order: 1;
        width: 100%;
    }
    
    .p-card__grid01.reverse .p-card__grid01Right{
        order: 1;
    }
    
    .p-card__grid01Left{
        order: 0;
        width: 100%;
    }
    
    .p-card__grid01.reverse .p-card__grid01Left{
        order: 0;
    }
    
    .p-card__grid01 h4{
        font-size: 1em;
        margin-bottom: 16px;
    }
    
    .p-card__grid01 ul{
        font-size: 0.875em;
    }
    
    .p-card__grid01 p{
        font-size: 0.875em;
    }
    .p-woman__cont01Wrap{
        padding-block: 80px;
    }
    
    .p-woman__cont02Wrap{
        padding-block: 0 80px;
    }
    
    .p-woman__cont03Wrap{
        padding-block: 80px;
    }
    
    .p-woman__voiceHeading .l-container{
        flex-direction: column;
        gap: 20px;
    }
    
    .p-woman__voiceHeading::after{
        width: 80%;
        right: auto;
        left: 0;
    }
    
    .p-woman__voiceHeading picture{
        width: 100%;
    }
    
    .p-woman__voiceProfile .department{
        font-size: 0.75em;
    }
    
    .p-woman__voiceProfile .name{
        font-size: 1.5em;
    }
    
    .p-woman__voiceProfile .comment{
        font-size: 0.875em;
    }
    
    .p-woman__voiceProfile .biography-title{
        font-size: 1em;
    }
    
    .p-woman__voiceInterview{
        padding-top: 80px;
    }
    
    .p-woman__voiceInterview dt{
        font-size: 1em;
        padding-left: 64px;
    }
    
    .p-woman__voiceInterview dt::before{
        width: 50px;
        top:12px
    }
}

/* erp consultant
----------------------------------------------- */

.p-erp__cont01Wrap{
    padding-block: 100px;
}

.p-erp__cont02Wrap{
    padding-block:0 100px;
}

.p-erp__cont02Wrap .l-container + .l-container{
    margin-top: 80px;
}

.p-erp__cont02Wrap + .p-erp__cont02Wrap{
    padding-block: 100px;
}

.p-card__block01{
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    background: var(--color-wh);
}

.p-card__block01 +    .p-card__block01{
    margin-top: 40px;
}

.p-card__block01 h4{
    font-size: 2em;
    line-height: 1.5;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}

.p-card__block01 h4 span{
    color: var(--color-red);
    font-size: 0.75em;
    line-height: 1.333;
}

.p-card__block01 ul{
    font-size: 1em;
    line-height: 1.5;
    font-weight: 600;
    list-style-type: disc;
    padding-left: 1em;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    margin-top: 20px;
}

.p-card__block01 ul li::marker{
    color: var(--color-red);
}

.p-card__block01 p{
    color: var(--color-gray02);
    font-size: 1em;
    line-height: 1.967;
}

.p-card__block01Heading{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    gap: 0 40px;
}



@media screen and (max-width: 480px) {
    
    .p-erp__cont01Wrap{
        padding-block: 80px;
    }
    
    .p-erp__cont02Wrap{
        padding-block: 0 80px;
    }
    
    .p-card__block01{
        padding: 24px;
    }
    
    .p-card__block01Heading{
        gap: 0 16px;
        margin-bottom: 24px;
    }
    
    .p-card__block01Heading i{
        width: calc(60vw / 3.9);
    }
    
    .p-card__block01 h4{
        font-size: 1em;
    }
    
    .p-card__block01 p{
        font-size: 0.875em;
    }
    
    .p-card__block01 ul{
        font-size: 0.875em;
        gap: 8px 0;
    }
    
    .p-card__block01 picture{
        overflow-x: scroll;
        display: block;
    }
    
    .p-card__block01 picture img{
        width: 600px;
    }

    .p-erp__cont02Wrap + .p-erp__cont02Wrap{
        padding-block: 80px;
    }
    
}


.p-careerpath__cont04Wrap{
    padding-block: 100px;
}

.p-careerpath__envDl {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    background: var(--color-wh);
}

.p-careerpath__envDl dt {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.417;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.p-careerpath__envDl figure img {
    width: auto;
    height: 150px;
    margin-block: 0 20px;
}

.p-careerpath__envDl dd {
    font-weight: 400;
    line-height: 2;
    color: var(--color-gray02);
}

.p-careerpath__envDl figcaption {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-careerpath__envDl figcaption span{
    font-size: 0.667em;
    padding-left: 1em;
}

@media screen and (min-width: 481px) {
    .p-careerpath__envList{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 40px;
        margin-block: 40px 0;
    }
}

@media screen and (max-width: 1050px) {
    
    .p-careerpath__envDl {
        padding: 24px;
    }
    
    .p-careerpath__envDl figure img {
        width: auto;
        height: 100px;
        margin-block: 0 20px;
    }
    
    .p-careerpath__envDl dt {
        font-size: 1em;
    }
    
    .p-careerpath__envDl dd {
        font-size: 0.875em;
    }
}

@media screen and (max-width: 480px) {
    .p-careerpath__cont04Wrap{
        padding-block: 80px;
    }
    
    .p-careerpath__envList{
        display: flex;
        flex-direction: column;
        gap: 40px 0;
        margin-block: 24px 0;
    }
    
    
}


/* ----------------------------------------------
事業内容
----------------------------------------------- */

.p-service__heading{
    padding-block: 80px 60px;
}

.p-service__heading .p-careerpath__read{
    word-break: normal;
}

.p-service__heading .c-title03:last-child{
    margin-bottom: 0;
}

/* engineering solutions
----------------------------------------------- */

.p-work__main{
    margin-block: 80px;
    position: relative;
    color: var(--color-wh);
    display: block;
    width: 100%;
    min-height: 400px;
    padding: 80px;
}

.p-work__main picture {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.p-work__main picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.p-work__main h3{
    position: relative;
    z-index: 2;
    font-size: clamp(2.3em, 3em, 3vw);
    font-weight: 600;
    line-height: 1.5;
}

.p-work__list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px 40px;
}

.p-work__list li{
    border-bottom: 1px solid var(--color-red);
    padding: 16px 8px;
    font-size: 1em;
    line-height: 2;
    display: flex;
    align-items: center;
    min-height: 90px;
    position: relative;
    color: var(--color-gray02);
}

.p-work__list li span{
    position: relative;
    padding-left: calc(1em + 8px);
}

.p-work__list li span::before{
    content: '・';
    color: var(--color-red);
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 600;
}

.p-eng__wrap{
    padding-block: 0 120px;
}


@media screen and (max-width: 480px) {
    
    .p-work__main{
        margin-block: 40px;
        padding: 40px 24px;
        min-height: calc(520vw / 13);
    }
    
    .p-work__main h3{
        font-size: 1.25em;
    }
    
    .p-work__list{
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 24px;
    }
    
    .p-work__list li{
        min-height: auto;
        font-size: 0.8em;
        padding: 8px 0;
        line-height: 1.6;
        min-height: 60px;
    }
    
    .p-eng__wrap{
        padding-block: 0 80px;
    }
}


/* ai vr ar solutions
----------------------------------------------- */

.p-service__cont01Wrap{
    padding-block: 80px;
}

.p-service__cont01Wrap .p-card__grid01 p{
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.p-service__cont02Wrap{
    padding-block: 80px;
}

.p-service__cont02Wrap + .p-service__cont02Wrap{
    padding-top: 0;
}

.p-service__cont03Wrap{
    padding-block: 80px 120px;
}

.p-service__cont03Wrap + .p-service__cont03Wrap{
    padding-top: 0;
}

.p-guest__profile{
    display: flex;
    justify-content: center;
    background: var(--color-wh);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    gap: 40px;
}

.p-guest__profile picture{
    width: 350px;
}

.p-guest__text{
    width: 830px;
    display: flex;
    flex-direction: column;
}

.p-guest__text .position{
    order: 0;
    font-size: 1em;
}

.p-guest__text h4{
    order: 1;
    font-size: 2em;
    font-weight: 600;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 16px;
}

.p-guest__text h4 ruby{
    font-size: 0.438em;
    font-weight: 700;
    color: var(--color-gray02);
}

.p-guest__text .comment{
    order: 2;
    color: var(--color-gray02);
    line-height: 1.967;
}

@media screen and (max-width: 480px) {
    
    .p-guest__profile{
        flex-direction: column;
        padding: 24px;
    }
    
    .p-guest__profile picture{
        width: 100%;
    }
    
    .p-guest__text{
        width: 100%;
    }
    
    .p-guest__text .position{
        font-size: 0.875em;
    }
    
    .p-guest__text h4{
        font-size: 1.5em;
    }
    
    .p-guest__text .comment{
        font-size: 0.875em;
    }
    
    .p-service__cont03Wrap{
        padding-block: 80px 80px;
    }
}

/* ----------------------------------------------
社員の声
----------------------------------------------- */


/* 一覧
----------------------------------------------- */

.p-voice__listItem a{
    /* padding-bottom: 80px;*/
    display: block;
    height: calc(100% - 20%);
}

.p-voice__image{
    position: relative;
}

.p-voice__image img{
    border-radius: 10px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 12 / 7.869;
}

.p-voice__text{
    width: calc(100% - 25%);
    position: relative;
    border-radius: 0 10px 10px 0;
    background: rgba(255, 255, 255, 0.9);
    left: 0;
    top:-80px;
    /* bottom: -80px; */
    padding: 8%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.p-voice__text i{
    position: absolute;
    border: 1px solid var(--color-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    right: 8%;
    bottom: 25%;
    transition: ease 0.4s;
}

.p-voice__text i::before{
    content: '';
    width: 12px;
    height: 7px;
    background: url(../img/common/btn-arrow01_s.svg) no-repeat center center / cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.p-voice__text h5{
    font-size: clamp(1.25em, 1.5em, 1.5vw);
    font-weight: 600;
    line-height: 1.6;
}

.p-voice__text h5 span{
    padding-left: 10px;
}

.p-voice__text p{
    font-size: clamp(0.75em, 1em, 1vw);
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-gray02);
    padding-right: 40px;
}
.p-voice__listWrap{
    padding-block: 0 120px;
}

@media screen and (min-width: 481px) {
    .p-voice__list{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 80px;
        margin-block: 40px;
    }
    
    .p-voice__listItem a:hover .p-voice__text i{
        right: 6.5%;
    }
}

@media screen and (max-width: 480px) {
    
    .p-voice__listWrap{
        padding-block: 0 80px;
    }
    
    .p-careerpath__cont03Wrap{
        padding-block: 80px;
    }
    
    .p-voice__list{
        display: flex;
        flex-direction: column;
        margin-block: 24px;
        gap: 20px 0;
    }

    .p-voice__text h5{
        font-size: 1.1em;
    }
    
    .p-voice__text i{
        right: 4%;
        bottom: 18%;
    }

    .p-voice__text p{
        padding-right: 0;
    }

}

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

     .p-voice__text{
        width: calc(100% - 8%);
        padding: 6% 60px 6% 6%;
        top:-10vw;
    }
}

/* 詳細ページ
----------------------------------------------- */

.p-voiceSingle__heading{
    padding-block: 100px;
}

.p-voiceSingle__date{
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.p-voiceMovie__block{
    margin-inline: auto;
    max-width: 930px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.p-voiceMovie__block iframe{
    width: 100%;
    height: 100%;
}

.p-voiceProfile__block{
    margin-inline: auto;
    max-width: 930px;
    display: flex;
    justify-content: flex-start;
    gap: 0 20px;
    position: relative;
}

.p-voiceProfile__block::before{
    content: '';
    background: var(--color-gray);
    width: 200%;
    height: calc(100% + 40px);
    position: absolute;
    top: -40px;
    left: -200%;
}

.p-voiceProfile__left{
    width: 300px;
    background: var(--color-gray);
    padding-block: 40px;
    padding-inline: 40px 40px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px 0;
}

.p-voiceProfile__left .name{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px 0;
    font-size: 2em;
    font-weight: 600;
    line-height: 1;
}

.p-voiceProfile__left .name ruby{
    font-size: 0.438em;
    font-weight: 700;
    color: var(--color-gray02);
    text-transform: uppercase;
}

.p-voiceProfile__left .department{
    background: var(--color-wh);
    color:var(--color-red);
    border: 1px solid var(--color-red);
    border-radius: 30px;
    padding: 4px 20px;
    font-size: 0.875em;
    text-align: center;
    word-break: keep-all;
}

.p-voiceProfile__right{
    width: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray02);
    line-height: 2;
}

.p-voiceCont__wrap{
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    background: var(--color-wh);
}

.p-voiceCont__wrap h2{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-red);
    font-weight: 600;
    font-size: 1.5em;
}

.p-voiceCont__list{
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    font-size: 1em;
    font-weight: 600;
    padding-left: 16px;
}

.p-voiceCont__list li{
    position: relative;
    padding-left: 1em;
}

.p-voiceCont__list li::before{
    content: '・';
    display: inline-block;
    position:absolute;
    top:0;
    left: 0;
    color: var(--color-red);
}

.p-voiceDetail__wrap{
    padding-block: 20px 120px;
}

.p-voiceDetail__wrap h2{
    font-size: 2em;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 40px;
    padding-top: 100px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-red);
}

.p-voiceDetail__wrap dl{
    display: flex;
    flex-direction: column;
}

.p-voiceDetail__wrap dl dt{
    margin-bottom: 20px;
    font-size: 1.5em;
    line-height: 1.5;
    font-weight: 600;
    padding-left: 80px;
    position: relative;
}

.p-voiceDetail__wrap dl dt::before{
    content: '';
    background: var(--color-red);
    width: 60px;
    height: 1px;
    position: absolute;
    top:18px;
    left: 0;
}

.p-voiceDetail__wrap dl dd{
    color: var(--color-gray02);
    font-size: 0.875em;
    line-height: 2;
}

.p-voiceDetail__wrap dl dd + dt,
.p-voiceDetail__wrap figure +    dl{
    margin-top: 80px;
}

.p-voiceDetail__wrap p + p{
    margin-top: 20px;
}

.p-voice__listWrap.bottom{
    padding-top: 80px;
}

@media screen and (max-width: 480px) {
    .p-voiceProfile__block::before{
        display: none;
    }
    
    .p-voiceSingle__heading{
        padding-block: 60px;
    }
    
    .p-voiceSingle__heading .c-title03.large{
        margin-bottom: 40px;
    }
    
    .p-voiceProfile__block{
        flex-direction: column;
        gap: 24px 0;
    }
    
    .p-voiceProfile__right{
        width: 100%;
        font-size: 0.875em;
    }
    
    .p-voiceProfile__left{
        position: relative;
        width: 80%;
        padding-block: 20px;
        padding-inline: 0 20px;
        gap: 16px 0;
    }
    
    .p-voiceProfile__left::before{
        content: '';
        background: var(--color-gray);
        width: 200%;
        height: calc(100% + 40px);
        position: absolute;
        top: -40px;
        left: -200%;
    }
    
    .p-voiceProfile__left .name{
        font-size: 1.5em;
    }
    
    .p-voiceProfile__left .department{
        font-size: 0.75em;
    }
    
    .p-voiceCont__wrap{
        width: calc(100% - 64px);
        padding: 24px;
    }
    
    .p-voiceCont__wrap h2{
        font-size: 1em;
    }
    
    .p-voiceCont__list{
        font-size: 1em;
        padding-left: 8px;
    }
    
    .p-voiceDetail__wrap{
        padding-block: 0 80px;
    }
    
    .p-voiceDetail__wrap h2{
        font-size: 1.5em;
        padding-top: 80px;
    }
    
    .p-voiceDetail__wrap dl dd + dt, .p-voiceDetail__wrap figure + dl{
        margin-top: 40px;
    }
    
    .p-voiceDetail__wrap dl dt{
        padding-left: 64px;
        font-size: 1.25em;
    }
    
    .p-voiceDetail__wrap dl dt::before{
        width: 50px;
    }
    
    .p-voiceDetail__wrap dl dd + dt{
        margin-top: 40px;
    }
    
    .p-woman__voiceInterview picture{
        width: 100%;
        margin-block: 40px;
    }

    .p-woman__voiceInterview dd + dt{
        margin-top: 40px;
    }
}

/* ----------------------------------------------
企業文化
----------------------------------------------- */

.p-culture__heading{
    padding-block: 100px;
}

.p-culture__heading .p-careerpath__read{
    word-break: normal;
}


/* オフィス
----------------------------------------------- */

.p-culture__wrap01{
    padding-block: 80px;
}

.p-culture__grid01{
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.p-culture__grid01Left{
    width: 520px;
}

.p-culture__grid01Left .c-title02.-left{
    margin-bottom: 40px;
}

.p-culture__grid01Right{
    width: 740px;
    aspect-ratio: 16 / 9;
}

.p-culture__grid01Right iframe{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 480px) {
    
    .p-culture__heading{
        padding-block: 80px;
    }
    
    .p-culture__heading .c-title03.large{
        margin-bottom: 40px;
    }
    
    .p-culture__grid01{
        flex-direction: column;
        gap: 20px;
    }
    
    .p-culture__grid01Right{
        width: 100%;
    }
    
    .p-culture__grid01Left{
        width: 100%;
    }

    .p-culture__grid01Left .c-title02.-left{
        margin-bottom: 20px;
    }
}

/* イベント
----------------------------------------------- */

.p-culture__wrap02{
    padding-block: 80px 120px;
}

.p-culture__grid02{
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.p-culture__grid02Left{
    width: 716px;
}

.p-culture__grid02Left .c-title02.-left{
    margin-bottom: 40px;
}

.p-culture__grid02Right{
    width: 470px;
    margin-left: auto;
}

.p-culture__eventList{
    margin-top: 114px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

.p-culture__eventText{
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    margin-top: 20px;
}

.p-culture__eventText h4{
    font-weight: 600;
    font-size: 1.25em;
    line-height: 1.5;
}

.p-culture__eventText p{
    font-size: 0.8755em;
    line-height: 2;
    color: var(--color-gray02);
}

@media screen and (max-width: 480px) {
    .p-culture__wrap02{
        padding-block: 80px;
    }
    
    .p-culture__grid02{
        flex-direction: column;
        gap: 20px;
    }
    
    .p-culture__grid02Left{
        width: 100%;
    }
    
    .p-culture__grid02Right{
        width: 100%;
    }
    
    .p-culture__eventList{
        margin-top: 80px;
        grid-template-columns: repeat(1, 1fr);
    }
    
    .p-culture__eventText h4{
        font-size: 1em;
    }
    
    .p-culture__eventText p{
        font-size: 0.875em;
    }
}


/* ----------------------------------------------
福利厚生
----------------------------------------------- */

.p-benefit__wrap01{
    padding-block: 0 120px;
}

.p-card__list01{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.p-card__list01Dl{
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px 36px;
    background: var(--color-wh);
    display: flex;
    align-items: center;
    gap: 40px;
}

.p-card__list01Dl dt{
    width: 29.703%;
}

.p-card__list01Dl dt img{
    width: 100%;
    height: auto;
}

.p-card__list01Dl dd{
    flex: 1;
}

.p-card__list01Dl h4{
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.417;
    margin-bottom: 20px;
    letter-spacing: -0.06em;
}

.p-card__list01Dl p{
    font-weight: 400;
    line-height: 2;
    color: var(--color-gray02);
}

@media screen and (max-width: 768px) {
    .p-card__list01{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 40px;
    }

     .p-card__list01Dl dt{
        width: 80px;
    }
    
    .p-card__list01Dl dt img{
        width: 80px;
    }
}

@media screen and (max-width: 480px) {
    
    .p-card__list01Dl{
        padding: 24px;
        gap: 0 24px;
    }
    
    
    .p-card__list01Dl dd{
        flex: 1;
        width: auto;
    }
    
    .p-card__list01Dl h4{
        font-size: 1em;
    }
    
    .p-card__list01Dl p{
        font-size: 0.875em;
    }
    
    .p-benefit__wrap01{
        padding-block: 0 80px;
    }
}

/* ----------------------------------------------
研修・勉強会
----------------------------------------------- */

/* 冒頭
----------------------------------------------- */


.p-training__grid01{
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.p-training__grid01Left{
    width: 473px;
}

.p-training__grid02 .c-title02{
    margin-bottom: 40px;
}

.p-training__grid01Right{
    flex: 1;
}

p + .p-training__grid01{
    margin-top: 116px;
}

.p-training__grid02{
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.p-training__grid02Left{
    flex: 1;
    order: 0;
}

.p-training__grid02Right{
    width: 473px;
    order: 1;
}

@media screen and (max-width: 480px) {
    
    p + .p-training__grid01{
        margin-top: 60px;
    }
    
    .p-training__grid01{
        flex-direction: column;
        gap: 20px;
    }
    
    .p-training__grid01Left{
        width: 100%;
    }
    
    .p-training__grid02{
        flex-direction: column;
        gap: 20px;
    }
    
    .p-training__grid02Right{
        width: 100%;
    }

    .p-training__grid02 .c-title02{
        margin-bottom: 20px;
    }
}


.p-training__wrap01{
    padding-block: 80px;
}

.p-card__grid02{
    display: flex;
    flex-direction: column;
    gap: 0 3.4em;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;
    background: var(--color-wh);
}


.p-card__grid02 h4{
    font-size: 2em;
    line-height: 1.5;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    margin-bottom: 32px;
    width: 100%;
}

.p-card__grid02 h4 span{
    color: var(--color-red);
    font-size: 0.75em;
    line-height: 1.333;
}

.p-card__grid02 h5{
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.667;
    margin-bottom: 20px;
}

.p-card__grid02 p{
    color: var(--color-gray02);
    font-size: 1.125em;
    line-height: 2;
}

.p-card__grid02.none picture{
    margin-top: 40px;
}

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

    .p-card__grid02 .grid{
        display: flex;
        gap: 0 40px;
    }

    .p-card__grid02 .grid + .grid{
        margin-top: 40px;
        flex-direction: row-reverse;
    }

    .p-card__grid02Right{
        width: 680px;
        order: 2;
    }

    .p-card__grid02Left{
        width: 500px;
        order: 1;
    }

}

@media screen and (max-width: 480px) {
    
    .p-training__wrap01 .c-title03.large{
        margin-bottom: 40px;
    }
    
    .p-card__grid02{
        padding: 24px;
        gap: 0;
    }

    .p-card__grid02 .grid + .grid{
        margin-top: 40px;
    }
    
    .p-card__grid02Left{
        margin-top: 24px;
        display: block;
    }
    
    .p-card__grid02Left,
    .p-card__grid02Right{
        width: 100%;
    }
    
    .p-card__grid02 h4{
        font-size: 1em;
        margin-bottom: 16px;
    }
    
    .p-card__grid02 p{
        font-size: 0.875em;
    }
    
    .p-card__grid02 h5{
        font-size: 0.875em;
    }

    .p-card__grid02 h5 br{
        display: none;
    }
    
    .p-card__grid02.none picture{
        overflow-y: scroll;
        margin-top: 24px;
    }
    
    .p-card__grid02.none picture img{
        width: 700px;
    }
}


/* ----------------------------------------------
エントリー
----------------------------------------------- */


/* 冒頭
----------------------------------------------- */

.p-entry__heading{
    padding-block: 80px 0;
}

.p-entry__heading .c-title01{
    margin-block: 80px;
}

.p-entry__heading .bg-gray{
    padding-block: 80px;
}

.p-entry__headngGrid{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 65px;
}

.p-entry__headngGrid picture{
    width: 625px;
    flex: 1;
}

.p-entry__headngGrid picture img{
    height: auto;
}

.p-entry__headingText{
    flex: 1;
}

.p-entry__headingText h3{
    font-size: 1.5em;
    font-weight: 600;
    line-height: 2;
    margin-bottom: 30px;
}

.p-entry__headingText p{
    font-size: 1.125em;
    line-height: 2;
    color: var(--color-gray02);
}


@media (max-width: 768px) {
    .p-entry__headngGrid{
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .p-entry__headngGrid picture{
        width: 100%;
    }
    
    .p-entry__headingText h3{
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    .p-entry__headingText p{
        font-size: 0.875em;
    }
}

/* フリースペース
----------------------------------------------- */

.p-entry__freeBlock{
    padding-block: 80px 100px;
}

.p-entry__freeBlock h2{
    font-size: 2em;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom:64px;
    border-bottom: 2px solid var(--color-red);
    color:var(--color-red);
}

.p-entry__freeBlock h3{
    font-size: 1.5em;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom:20px;
    border-left: 4px solid var(--color-red);
    padding-left: 16px;
}

.p-entry__freeBlock h4{
    font-size: 1em;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom:20px;
}

.p-entry__freeBlock p{
    font-size: 0.875em;
    line-height: 2;
    color: var(--color-gray02);
}

.p-entry__freeBlock p + p{
    margin-top: 16px;
}

.wp-block-image + .wp-block-image{
    margin-top: 40px;
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.75em;
    gap: var(--wp--style--block-gap, 2em); /* ブロック間の隙間（Gutenberg 12以降） */
}

.wp-block-column {
    flex-grow: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.wp-block-columns.-col3 .wp-block-column{
    flex: 1 1 0;
}

.wp-block-columns + .wp-block-columns{
    margin-top: 40px;
}

.wp-block-columns + .wp-block-image,
.wp-block-image + .wp-block-columns,
.wp-block-columns + h3{
    margin-top: 60px;
}


.wp-block-columns + h2,
.wp-block-image + h2{
    margin-top: 100px;
}

p + .wp-block-columns{
    margin-top: 40px;
}


.wp-block-image figcaption{
    color: var(--color-gray02);
    font-size: 0.75em;
    line-height: 2;
    margin-top: 8px;
}

.wp-block-embed{
    margin: 40px auto;
}

.wp-block-embed__wrapper{
    max-width: 930px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.wp-block-embed__wrapper iframe{
    width: 100%;
    height: 100%;
}


@media (min-width: 481px) {
    .wp-block-column {
        flex-basis: calc(50% - 20px);
        flex-grow: 0;
    }
}

@media (max-width: 480px) {
    .wp-block-columns {
        flex-direction: column;
    }
    
    .p-entry__freeBlock h2{
        font-size: 1.35em;
        margin-bottom: 40px;
    }
    
    .p-entry__freeBlock h3{
        font-size: 1.25em;
    }
    
    .wp-block-columns + h2,
    .wp-block-image + h2{
        margin-top: 80px;
    }
    
    .p-entry__freeBlock{
        padding-block: 80px;
    }
}


/* 募集要項
----------------------------------------------- */

.p-entry__requirements{
    padding-block: 0 120px;
}

@media (max-width: 480px) {
    .p-entry__requirements {
        padding-block: 0 80px;
    }

    .p-entry__requirements .c-table__primary tr th{
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* お問い合わせ
----------------------------------------------- */

.p-entry__contactBlock{
    padding-block: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.p-entry__contactBlock p{
    font-size: 2em;
    font-weight: 600;
    line-height: 2;
    text-align: center;
}

.p-entry__contactBlock a{
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    padding: 27px;
    background: var(--color-wh);
    font-size: 2em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    min-width: 480px;
    max-width: 480px;
    letter-spacing: 0.1em;
}

.p-entry__contactBlock a i{
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--color-red);
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    transition: ease 0.4s;
}

.p-entry__contactBlock a i::before{
    content: '';
    width: 18px;
    height: 10px;
    background: url(../img/common/btn-arrow01.svg) no-repeat center center / cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: ease 0.4s;
    z-index: 3;
}

@media (min-width: 481px) {
    
    .p-entry__contactBlock a:hover i{
        right: -8px;
    }
}


@media (max-width: 480px) {
    
    .p-entry__contactBlock{
        gap: 20px;
    }
    
    .p-entry__contactBlock p{
        text-align: center;
        font-size: 1.5em;
    }
    
    .p-entry__contactBlock a{
        font-size: 1.5em;
        gap: 24px;
        padding: 16px 24px;
        min-width: 100%;
    }
}


.p-entry__block01{
    padding-block: 100px 180px;
}

.p-entry__block01 p{
    font-size: clamp(1.5em, 2em, 2vw);
    font-weight: 600;
    text-align: center;
    line-height: 1.75;
    margin-bottom: 80px;
}

.p-entry__btnList{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.p-entry__btnList.-col2{
    max-width: 840px;
    margin-inline: auto;
}

.p-entry__btnList li{
    width: calc((100% / 3) - 40px);
    border: #D9D9D9 solid 1px;
    background: var(--color-wh);
}

.p-entry__btnList.-col2 li{
    width: calc((100% / 2) - 40px);
}

.p-entry__btnList li a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3vw 3vw;
    max-height: 150px;
    height: 100%;
    background: var(--color-wh);
}

ul + .p-entry__areList{
    margin-top: 60px;
}

.p-entry__areList{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.p-entry__areList li a{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-wh);
    border-radius: 10px;
    border: solid var(--color-red) 1px;
    padding: 20px;
    min-width: 120px;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.5;
}

.p-entry__link{
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    padding: 31px;
    background: var(--color-red);
    font-size: 2.5em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    letter-spacing: 0.1em;
    margin-inline: auto;
    margin-bottom: 60px;
    color: var(--color-wh);
}

.p-entry__link i {
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--color-wh);
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    transition: ease 0.4s;
}

.p-entry__link i::before {
    content: '';
    width: 18px;
    height: 10px;
    background: url(../img/common/btn-arrow01_wh.svg) no-repeat center center / cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: ease 0.4s;
    z-index: 3;
}

@media screen and (max-width: 480px) {
    
    .p-entry__btnList{
        gap: 16px;
    }
    
    .p-entry__btnList li,
    .p-entry__btnList.-col2 li{
        width: calc((100% / 2) - 12px);
    }
    
    .p-entry__btnList li a{
        padding: 5vw 3vw;
    }
    
    .p-entry__block01{
        padding-block: 80px;
    }
    
    .p-entry__block01 p{
        margin-bottom: 40px;
    }
    
    .p-entry__link{
        font-size: 1.2em;
        gap: 0.5em;
        padding: 16px 24px;
        margin-bottom: 40px;
    }
    
    .p-entry__areList{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    
    .p-entry__areList li a{
        padding: 16px;
        min-width: 100%;
        font-size: 1em;
    }
    
    ul + .p-entry__areList{
        margin-top: 40px;
    }
}





/* ----------------------------------------------
Chatbot
----------------------------------------------- */
.c-chatbot__block{
    position: fixed;
    top:120px;
    right: 40px;
    z-index: 1000;
    width: 128px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.c-chatbot__block.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.c-chatbot__block a{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-comment{
    width: 128px;
    height: 56px;
    background: url(../img-recruit/chatbot-fukidashi.svg) no-repeat center top /cover;
    text-align: center;
    font-size: 0.75em;
    font-weight: 600;
    position: relative;
    z-index: 2;
    padding-top: 11px;
    top:0;
}

.chat-icon{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top:-12px;
    z-index: 1;
    transition: ease 0.3s;
}

.chat-icon img{
    width: 51px;
    height: auto;
}

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

     .c-chatbot__block a:hover{
        opacity: 1;
     }

    .c-chatbot__block a:hover .chat-comment{
        animation: pikopiko 0.6s ease-in-out infinite;
    }

    @keyframes pikopiko {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-5px);
      }
    }

    .c-chatbot__block a:hover .chat-icon{
        background: var(--color-bk);
    }
}

@media screen and (max-width: 768px) {
    .c-chatbot__block{
        top: auto;
        bottom: 8px;
        right: 20px;
        width: 104px;
    }

    .chat-comment{
        width: 104px;
        height: 38px;
        font-size: 0.625em;
        background: url(../img-recruit/chatbot-fukidashi_sp.svg) no-repeat center top /cover;
        padding-top: 5px;
    }

    .chat-icon{
        width: 60px;
        height: 60px;
        top:-8px;
    }

    .chat-icon img{
        width: 40px;
    }

    
}
