@charset "utf-8";

/**************************
*
* リセット↓
*
**************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
    word-break: break-all;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a {
    text-decoration: none;
    transition: 0.3s all;
}

*:focus {
    outline: none;
}

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

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

sup {
    font-size: 0.7em;
}

/*****************************************************************************************************************
*
* 　初期設定
*
*****************************************************************************************************************/
button,
input,
select,
textarea,
body {
    font-family: 'Noto Sans JP', 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', '游ゴシック', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif
}

/* カラー定義 */
:root {
    --gray01: #F7F7F7;
    --gray02: #F2F2F2;
    --gray03: #EBEBEB;
    --gray04: #4b4b4b; /* ザイマックスグループボタン */
    --blue01: #1E2380;
    --blue02: #EBEBF1;
    --green01: #00873C;
    --green02: #EAF1ED;
    --black01: #1D1D1D;
    --font-zen:"Zen Old Mincho", serif;

}

body {
    box-sizing: border-box;
    font-family: 'Noto Sans JP';
    font-weight: 400;
    p, a {
        color: var(--black01);
    }
    img{
        width: 100%;
        height: auto;
        vertical-align: bottom;
    }
}



.sp-only{
    display: none!important;
}


header{
    width: 100%;
    position: sticky;
    margin: auto;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 5;
    .wrapper01 {
        padding: 14px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        left: 0;
        margin: auto;
        gap: 20px;

        li a {
            color: var(--black01);
            font-weight: 500;
            display: inline-block;
            position: relative;
            font-size: 16px;

            .company-logo {
                width: 400px;
            }
        }
        li a::before{
            background: var(--green01);
            content: '';
            width: 100%;
            height: 2px;
            position: absolute;
            left: 0;
            bottom: 0;
            transform-origin: center top;
            transform: scale(0, 1);
            transition: transform .3s;
        }
        li a:hover::before {
            transform-origin: center top;
            transform: scale(1, 1);
        }

        .menu{
            display: flex;
            flex-wrap: wrap;
            column-gap: 30px;
            row-gap: 10px;
            font-size: 15px;
            left: 0;
            top:0;
            li{
                position: relative;
                a.add-icon::after{
                    content: "";
                    position: relative;
                    display: inline-block;
                    background: url(/common/images/outside_icon.png);
                    width: 0.8em;
                    height: 0.8em;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                    margin-left: 5px;
                }
            }
        }

        /* ボタンのスタイル */
        .hamburger-btn {
            /*position: fixed;*/
            flex-shrink: 0;
            top: 20px;
            right: 20px;
            width: 30px;
            cursor: pointer;
            z-index: 20;
        }

        .hamburger-btn span {
            display: block;
            height: 2px;
            margin: 6px 0;
            background: #333;
            border-radius: 2px;
            transition: 0.4s;
        }

        /* バツ印に変化するスタイル */
        #menu-toggle:checked + .hamburger-btn span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }
        #menu-toggle:checked + .hamburger-btn span:nth-child(2) {
            opacity: 0;
        }
        #menu-toggle:checked + .hamburger-btn span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }
    }
    .company-logo{
        width: 395px;
        min-width: 395px;
    }
}

.sub-menu{
    position: absolute;
    top: -800px;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 750px;
    background: rgba(255,255,255,0.95);
    z-index: 3;
    margin: auto;
    transition: all 0.4s ease;

    .sub-menu-wrapper{
        max-width: 1135px;
        padding: 140px 30px 70px 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: auto;
        row-gap: 40px;
        column-gap: 20px;

        a{
            width: 30%;
        }

        p{
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--black01);
            position:relative;
            display: inline-block;
        }
        a p::before{
            background: var(--green01);
            content: '';
            width: 100%;
            height: 2px;
            position: absolute;
            left: 0;
            bottom: 0;
            transform-origin: center top;
            transform: scale(0, 1);
            transition: transform .3s;
        }
        a:hover p::before {
            transform-origin: center top;
            transform: scale(1, 1);
        }


    }

    .link-area{
        max-width: 1135px;
        padding: 0 30px;
        display: flex;
        justify-content: flex-end;
        margin-bottom: 100px;
        a{
            padding: 15px 60px 15px 50px;
            background: var(--gray03);
            color: var(--black01);
            text-align: center;
            font-size: 20px;
            font-weight: 500;
            position: relative;
            border-radius: 30px;
        }
        a:hover{
            background: var(--green01);
            color: #fff;
            transition: transform .3s;
        }
        a.add-icon:hover:after{
            content: "";
            position: relative;
            display: inline-block;
            background: url(/common/images/outside_icon_w.png);
            width: 0.8em;
            height: 0.8em;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-left: 5px;
        }


    }
    .add-icon:after{
        content: "";
        position: relative;
        display: inline-block;
        background: url(/common/images/outside_icon.png);
        width: 0.8em;
        height: 0.8em;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: 5px;
    }
}

nav:has(#menu-toggle:checked)  .sub-menu{

    position:fixed;
    top: 0;

}
body:has(#menu-toggle:checked){
    overflow: hidden;
}

main{
    position:relative;
}

.wrapper01{
    max-width: 1340px;
    margin: auto;
}

.wrapper02{
    max-width: 1340px;
    padding: 40px 38px;
    margin: auto;
    .center{
        text-align: center;
    }
}
.wrapper03{
    max-width: 1340px;
    padding: 40px 38px;
    margin: auto;
}

.wrapper04{
    max-width: 1340px;
    padding: 40px 0;
    margin: auto;
}


.bg-gray01{
    background: var(--gray01);
}
.bg-gray02{
    background: var(--gray02);
}
.bg-gray03{
    background: var(--gray03);
}

.key-visual{
    max-width: 796px;
    display: block;
    margin: auto;
}

.top-ttl{
    width: 100%;
    min-width: 700px;
    max-width: 1160px;
    margin-top: 70px;
    font-family: var(--font-zen);
    font-weight: 400;
    font-size: clamp(3.438rem, -0.419rem + 6.3vw, 4.5rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.top-lead-txt{
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 70px;
    margin-top: 70px;
    color: var(--black01);

}

.link-btn01{
    position: relative;
    padding: 12px 60px 12px 12px;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    width: 322px;
    display: block;
    text-align: center;
    border-radius: 30px;
    background-image: linear-gradient(90deg, var(--green01), var(--blue01));
}
.link-btn01:hover{
    background: var(--green01);
    transition: 0.3s opacity;
}

.link-btn01:after{
    content: "";
    position: absolute;
    right: 40px;
    top:50%;
    background: url(/common/images/arrow_w_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);

}

.btn-area01{
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.link-area01{
    padding-top: 110px;
    padding-bottom: 110px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: min(3vw, 50px);
    row-gap: min(3vw, 50px);
    .link-part {
        width: 48%;
        a {
            position:relative;
            display: block;
            img {
                width: 100%;
                vertical-align: bottom;
            }
        }
        .text-block{
            position:absolute;
            left: 0;
            bottom: 0;
            .lead-text{
                font-size: 16px;
                font-weight: 400;
                padding: 10px 20px;
                background:#fff;
                text-align: center;
                display: inline-block;
                transition: 0.3s all;
            }
            .ttl-text{
                font-size: 22px;
                font-weight: 500;
                padding: 10px 90px 10px 20px;
                background:#fff;
                text-align: center;
                display: block;
                position: relative;
                transition: 0.3s all;
            }
            .ttl-text::after{
                content: "";
                position: absolute;
                display: block;
                background:var(--blue01);
                background-image: url(/common/images/arrow_w_icon.png);
                background-repeat: no-repeat;
                background-size: 10px 7px;
                background-position: center;
                top:50%;
                right: 20px;
                width: 46px;
                height: 25px;
                border-radius: 30px;
                transform: translateY(-50%);
                transition: 0.3s all;
            }
        }
        a:hover{
            .text-block{
                .lead-text{
                    background: var(--blue01);
                    color: #fff;
                }
                .ttl-text{
                    background: var(--blue01);
                    color: #fff;
                };
                .ttl-text::after{
                    background:#fff;
                    background-image: url(/common/images/arrow_blue_icon.png);
                    background-repeat: no-repeat;
                    background-size: 10px 7px;
                    background-position: center;
                }
            }
        }
    }
}

.group-link{
    .wrapper02{
        padding-top: 55px;
        padding-bottom: 55px;
    }
    .center{
        display: flex;
        justify-content: center;
    }
    a{
        font-size: 22px;
        font-weight: 500;
        position: relative;
    }
    .add-icon:after{
        content: "";
        position: relative;
        display: inline-block;
        background: url(/common/images/outside_icon.png);
        width: 0.8em;
        height: 0.8em;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: 5px;
    }

    a::before{
        background: var(--green01);
        content: '';
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform .3s;
    }
    a:hover::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
}

.top-area{
    .wrapper02{
        padding-bottom: 100px;
    }
}

/* 働き方 */

.second-ttl{
    font-size: 26px;
    font-weight: 500;
    padding: 30px 55px;
    background: #fff;
    color: var(--black01);
    position: relative;
    z-index: 2;
}

.bg-specific01{
    position: relative;
    .wrapper03{
        padding: 30px 80px;
        display: flex;
        justify-content: space-between;
    }
    .text-block{
        width: 56%;
        margin-top: 70px;
        h2{
            width: 100%;
            font-size: min(3.78vw, 52px);
            font-family: var(--font-zen);
            color: var(--black01);
        }
        p{
            width: 100%;
            font-size: 24px;
            font-weight: 400;
            margin-top: 180px;
            line-height: 1.8;
        }
    }
    .image-block01{
        width: 44.5%;
    }
}

.bg-specific01::before{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: min(28vw, 377px);
    background: var(--gray01);
    z-index: -1;
}

.image-specific01 {
    margin-top: 30px;
    .image-block02 {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

        img:nth-child(1) {
            width: 490px;
            /*margin-left: 20%;*/
            margin-left: clamp(30px,calc(100vw - 1050px) ,268px);
            margin-top: 10%;
        }

        img:nth-child(2) {
            width: 376px;
        }
    }
}

.specific-block01{
    margin-top: 190px;
    .wrapper01{
        padding-left: 80px;
        padding-right: 80px;
        display: flex;
        justify-content: space-between;
    }

    .block-part{
        width: 45%;
        text-align: center;
        h3{
            font-size: min(2.7vw, 40px);
            font-weight: 400;
            color: var(--black01);
        }
        .lead-text{
            font-size: 24px;
            font-weight: 400;
            color: var(--black01);
            line-height: 1.8;
            margin-top: 70px;
        }
        .graph-area{
            width: 80%;
            margin: auto;
            margin-top: 40px;
            p{
                font-size: 24px;
                font-weight: 500;
                .large{
                    font-size: 50px;
                }
                .small{
                    font-size: 18px;
                    font-weight: 400;
                }
            }
        }
        .ttl-text{
            font-size: 26px;
            font-weight: 400;
            margin-top: 100px;
        }
    }
}

.specific-block02{

    background-image: linear-gradient(90deg, #D9EFE2, #DAEEE3 10%, #E3E6F3 90%, #E4E5F4);
    border-radius: 110px 100px 0 0;
    padding-top: 180px;
    padding-bottom: 130px;
    margin-top: 150px;
    .block-ttl{
        font-size: min(3.5vw, 50px);
        color: var(--black01);
        text-align: center;
    }
    .lead-text{
        font-size: 24px;
        font-weight: 400;
        text-align: center;
        color: var(--black01);
        line-height: 1.8;
        margin-top: 80px;
    }

    .block-area01{
        margin-top: 120px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        div{
            width: 40.5%;
            position:relative;
            p{
                position:absolute;
                font-size: 30px;
                color: #fff;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 100%;
                text-align: center;
            }
        }
        .plus-icon{
            width: 4%;
        }
    }

    .model-case {
        background: rgba(255, 255, 255, 0.6);
        border-radius: 10px;
        padding: 40px min(7.5vw, 40px);
        margin-top: 150px;
        .ttl-area{
            display: flex;
            align-items: center;
            column-gap: 40px;
            position: relative;
            border-bottom: 1px solid rgba(0,0,0,0.2);
            padding-bottom: 20px;
            .case{
                font-size: 22px;
                font-weight: 500;
                color: var(--black01);
                margin-right: 40px;
                position:relative;
            }
            .case::after{
                content: "";
                position: absolute;
                display: block;
                background: rgba(0,0,0,0.2);
                height: 140%;
                width: 1px;
                right: -40px;
                top:-10%;

            }
            .job01{
                color: var(--green01);
                font-size: 40px;
                font-weight: 500;
            }
            .job02{
                color: var(--blue01);
                font-size: 40px;
                font-weight: 500;
            }
            .plus-icon{
                width: 30px;
            }
        }

        .schedule-area{
            padding-top: 100px;
            display: grid;
            grid-template-columns: 6% 30% 58% 6%;
            position: relative;

            .start,
            .end{
                justify-content: center;
                align-items: center;
                background: #A3A3A3;
                position: relative;
                display: flex;
                align-items: center;
                grid-row: span 4;
                p {
                    color: #fff;
                    font-size: 22px;
                    font-weight: 500;
                }
            }
            .job01{
                background: var(--green02);
                position: relative;
                display: grid;
                grid-template-rows: subgrid;
                grid-row: span 4;
                .ttl-text{
                    background: var(--green01);
                    font-size: 22px;
                    font-weight: 500;
                    color: #fff;
                    padding: 5px 15px;
                    text-align: center;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                .detail{
                    padding: 35px 20px;
                    .place{
                        font-size: 22px;
                        font-weight: 500;
                        color: var(--green01);
                    }
                    .task{
                        font-size: 18px;
                        font-weight: 400;
                        color: var(--black01);
                        display: flex;
                        flex-wrap: wrap;
                        margin-top: 35px;
                        dt{
                            width: 1em;
                            font-size: 0.7em;
                            display: flex;
                            align-items: flex-start;
                            padding-top: 0.3em;
                            margin-bottom: 10px;
                            line-height: 1.2;
                        }
                        dd{
                            width:calc(100% - 1em);
                            line-height: 1.2;
                            margin-bottom: 10px;
                        }

                        dt:last-of-type,
                        dd:last-of-type{
                            margin-bottom: 0;
                        }
                    }
                }
            }

            .job02{
                background: var(--blue02);
                position: relative;
                display: grid;
                grid-template-rows: subgrid;
                grid-row: span 4;
                .schedule{
                    background: var(--blue01);
                    font-size: 22px;
                    line-height: 1.2;
                    color: #fff;
                    padding: 5px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    column-gap: 10px;
                    .ttl-text{
                        color: #fff;
                        text-align: center;
                    }
                    .ttl-text:first-child,
                    .ttl-text:nth-child(3){
                        margin-left: 15px;
                        border: 1px solid #fff;
                        padding: 10px 25px;
                        min-width: 5em;
                    }
                    .ttl-text:last-child{
                        margin-right: clamp(5px, calc(100vw - 1000px), 50px)
                    }
                }
                .detail{
                    padding: 35px 20px 35px 50px;
                    .place{
                        font-size: 22px;
                        color: var(--blue01);
                    }
                    .task{
                        font-size: 18px;
                        color: var(--black01);
                        display: flex;
                        flex-wrap: wrap;
                        margin-top: 35px;
                        dt{
                            width: 1em;
                            font-size: 0.7em;
                            display: flex;
                            align-items: flex-start;
                            padding-top: 0.3em;
                            margin-bottom: 10px;
                            line-height: 1.2;
                        }
                        dd{
                            width:calc(100% - 1em);
                            line-height: 1.2;
                            margin-bottom: 10px;
                        }

                        dt:last-of-type,
                        dd:last-of-type{
                            margin-bottom: 0;
                        }
                    }
                }
            }
            .start::before{
                content: "";
                position: absolute;
                display: block;
                top: -25px;
                right: 0;
                width: 1px;
                height: 17px;
                background: rgba(0,0,0,0.6);
            }
            .start::after{
                content: "6:00";
                position: absolute;
                display: block;
                top: -60px;
                right: -40%;
                font-size: 24px;
            }

            .job01::before{
                content: "";
                position: absolute;
                display: block;
                top: -25px;
                right: 0;
                width: 1px;
                height: 17px;
                background: rgba(0,0,0,0.6);
            }
            .job01::after{
                content: "9:00";
                position: absolute;
                display: block;
                top: -60px;
                right: -8%;
                font-size: 24px;
            }

            .job02::before{
                content: "";
                position: absolute;
                display: block;
                top: -25px;
                right: 0;
                width: 1px;
                height: 17px;
                background: rgba(0,0,0,0.6);
            }
            .job02::after{
                content: "15:00";
                position: absolute;
                display: block;
                top: -60px;
                right: -4%;
                font-size: 24px;
            }
        }
    }
}

.recruitment-area{
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    div {
        width: 600px;
        position: relative;

        p {
            padding: 10px 40px;
            background: var(--green01);
            color: #fff;
            font-size: 22px;
            font-weight: 500;
            position: absolute;
            bottom: 30px;
            left: 50%;
            border-radius: 30px;
            transform: translateX(-50%);
        }
        p.add-icon::after {                    content: "";
            position: relative;
            display: inline-block;
            background: url(/common/images/outside_icon_w.png);
            width: 0.8em;
            height: 0.8em;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-left: 20px;
        }
        a:hover{
            p {
                background: var(--blue01);
                transition: 0.3s;
            }
        }
    }
}


/* セカンドルーキーとは */
.rookie-page{

    .image-block01{
        position:absolute;
        right: 0;
        top:0;
        width: 54%;
        max-width: 720px;
        aspect-ratio: 720 / 715;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 100%;
    }

    h2{
        font-size: min(3.78vw, 54px);
        font-family: var(--font-zen);
        color: var(--black01);
        padding: clamp(30px, calc(100vw - 1150px), 150px) 50px;
    }


    .text-block.flex{
        display: flex;
        width: 100%;
        .lead-text{
            width: 50%;
            font-size: 22px;
            color: var(--black01);
            padding: 50px 30px 200px 50px;
            line-height: 2.3;
        }
        .dummy{
            width: 50%;
        }
    }
}

/* インタビュー */
.interview-page{
    position: relative;

    .wrapper02{
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .wrapper02 > .text-block{
        padding: 0 52px 40px 52px;
        .lead-text{
            font-size: 24px;
            font-weight: 500;
            color: var(--black01);
            line-height: 1.8;
        }
    }

    .outer-wrapper{
        padding-bottom: 100px;

    }

    .outer-wrapper01{
        background-image: linear-gradient(90deg, var(--blue02) 50%, var(--gray01) 50.01%, var(--gray01) 100%);
    }

    .outer-wrapper02{
        background-image: linear-gradient(90deg, var(--gray01) 50%, var(--green02) 50.01%, var(--green02) 100%);
    }

    .wrapper04{
        max-width: 1340px;
        padding: 0 38px;
    }

    .wrapper04.mt-adjust{
        margin-top: 120px;
    }
    .mb-adjust{
        margin-bottom: 100px;
    }

    .split-wrapper01{
        width: 100%;
        display: flex;
        justify-content: space-between;
        position: relative;

        .text-block{
            padding: 120px 20px 120px 52px;
            position: relative;

            h2{
                font-size: clamp(32px,3.3vw, 46px);
                line-height: 1.8;
                font-weight: 500;
            }
            .lead-text{
                padding: 60px 0 80px;
                font-size: 18px;
                font-weight: 500;
            }
            .main-text{
                margin-top: 80px;
                font-size: 20px;
                font-weight: 400;
                color: var(--black01);
                line-height: 1.8;
                max-width: 585px;
            }
        }

        .text-block.color-blue{
            background: var(--blue02);

            h2{
                color: var(--blue01);
            }
        }
        .text-block.color-green{
            background: var(--green02);

            h2{
                color: var(--green01);
            }
        }

        .image-block01.place-right{
            width: 540px;
            padding-right: 50px;
            padding-top: 120px;
            z-index: 2;
        }
        .image-block01.place-left{
            width: 540px;
            padding-left: 50px;
            padding-top: 120px;
            z-index: 2;
        }
    }

    .split-wrapper01 .text-block.color-blue::after{
        content: "";
        position: absolute;
        display: block;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100%;
        background: var(--blue02);
    }

    .split-wrapper01 .text-block.color-green::after{
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: -200px;
        width: 200px;
        height: 100%;
        background: var(--green02);
    }
}

/* 会社概要 */
.company-page{

    .pt-adjust{
        padding-top: 30px;
    }
    .image-block01{
        max-width: 768px;
        margin: auto;

    }

    .information-area{
        padding: 70px 20px 200px 20px;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        max-width: 1004px;
        width: 100%;
        font-weight: 500;
        font-size: 18px;
        color: var(--black01);
        dt{
            width: 20%;
            min-width: 5em;
            padding-top: 22px;
            padding-bottom: 20px;
            border-top: 1px solid #E0E0E0;
        }
        dd{
            font-weight: 400;
            width: 80%;
            padding-top: 22px;
            padding-bottom: 20px;
            border-top: 1px solid #E0E0E0;
            a{
                text-decoration: underline;
            }
            .task{
                display: flex;
                flex-wrap: wrap;
                dt{
                    width:3em;
                    min-width: 3em;
                    border-top: none;
                    padding-top: 10px;
                    padding-bottom: 10px;
                }
                dd{
                    width:calc(100% - 3em);
                    border-top: none;
                    padding-top: 10px;
                    padding-bottom: 10px;
                }
                dt:first-child,
                dd:first-of-type{
                    padding-top: 0;
                }
                dt:last-of-type,
                dd:last-of-type{
                    padding-bottom: 0;
                }
            }
            .executive{
                li{
                    padding-bottom: 10px;
                }
                li:last-child{
                    padding-bottom: 0;
                }
            }

            iframe{
                width: 100%;
                height: 380px;
            }
        }
    }
    .information-area > dt:last-of-type,
    .information-area > dd:last-of-type{
        border-bottom: 1px solid #E0E0E0;
    }
}

/* トップメッセージ */
.message-page {

    .pt-adjust {
        padding-top: 30px;
    }

    .bg-gray01{
        padding-bottom: 100px;
    }

    .pb-adjust01{
        padding-bottom: 0;
    }

    .image-block01 {
        max-width: 954px;
        margin: auto;
        position: relative;
        z-index: 1;
    }

    .message-area{
        position: relative;
        padding: 0 0 120px 0;
        background: #fff;
        position: relative;
    }

    .message-area::after{
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 342px;
        top: -342px;
        left: 0;
        background: #fff;
        z-index: 0;
    }

    .text-block01{
        h2{
            font-size: 54px;
            font-family: var(--font-zen);
            color: var(--black01);
            max-width: 768px;
            font-weight: 500;
            margin: auto;
        }
    }

    .main-text{
        max-width: 768px;
        margin: auto;
        margin-top: 110px;
        font-size: 22px;
        line-height: 2;
    }

    .text-block02{
        max-width: 964px;
        margin: auto;
        margin-top: 50px;
        display: flex;
        justify-content: flex-end;
        .ceo{
            font-size: 20px;
            .name{
                font-size: 26px;
            }
        }
    }
}



/* フッター */
footer {
    width: 100%;
    /*height: 85px;*/
    position: relative;
    margin: auto;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1;

    .wrapper01 {
        padding: 120px 38px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
        gap: 20px;

        a {
            width: 362px;
            flex-shrink: 0;

            .company-logo {
                width: 100%;
            }
        }

        .menu {
            display: flex;
            flex-wrap: wrap;
            column-gap: 30px;
            row-gap: 10px;
            font-size: 14px;
            font-weight: 400;
            margin-right: clamp(0px, calc(100vw - 1100px), 100px);;

            li {
                position: relative;
                a{
                    width: auto;
                    font-size: 15px;
                }

                a.add-icon::after {                    content: "";
                    position: relative;
                    display: inline-block;
                    background: url(/common/images/outside_icon.png);
                    width: 0.8em;
                    height: 0.8em;
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center;
                    margin-left: 5px;
                }
            }
            li a::before{
                background: var(--green01);
                content: '';
                width: 100%;
                height: 2px;
                position: absolute;
                left: 0;
                bottom: 0;
                transform-origin: center top;
                transform: scale(0, 1);
                transition: transform .3s;
            }
            li a:hover::before {
                transform-origin: center top;
                transform: scale(1, 1);
            }
        }
    }
    .copyright {
        font-size: 13px;
        text-align: center;
        padding-bottom: 60px;
    }
}

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

 specific size

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


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

    .rookie-page {
        .image-block01 {
            width: 48%;
            max-width: 720px;
        }
    }
}

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

    .link-area01 {
        .link-part {
            .text-block {
                .ttl-text {
                    font-size: 20px;
                }
            }
        }
    }
}


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

    header {
        .wrapper01 {
            .menu {
                display: none;

            }
        }
    }

    .top-ttl{
        width: 100%;
        min-width: auto;
        max-width: 100%;
        font-size: 60px;
        .sp-only{
            display: block!important;
        }
    }

    .link-area01 {
        padding-top: 110px;
        padding-bottom: 110px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: min(3vw, 50px);
        row-gap: min(3vw, 50px);
        .link-part {
            width: 100%;
        }
    }

    .specific-block01{
        .wrapper01{
            flex-wrap: wrap;
            .block-part{
                width: 100%;
            }

        }
    }

    .specific-block02 {
        .model-case {
            .ttl-area{
                .case{
                    font-size: 18px;
                }
                .job01{
                    font-size: 32px;
                }
                .job02{
                    font-size: 32px;
                }
            }

            .schedule-area {
                .job01{
                    .ttl-text{
                        font-size: 16px;
                    };
                }
                .job02 {
                    .schedule {
                        font-size: 16px;
                        .ttl-text:first-child, .ttl-text:nth-child(3) {
                            padding: 10px 15px;
                        }
                    }
                }
            }
        }
    }

    .image-specific01 {
        margin-top: 60px;
        .wrapper04{
            padding: 0;
        }
        .image-block02 {
            display: flex;
            flex-wrap: wrap;

            img:nth-child(1) {
                width: 65%;
                margin-left: 0;
                margin-top: 0;
                margin-bottom: 10px;
            }

            img:nth-child(2) {
                width: 100%;
                padding-left: 35%;
            }
        }
    }

    /* 働き方 */
    .bg-specific01{
        position: relative;
        .wrapper03{
            padding: 0;
            display: flex;
            flex-wrap: wrap;
        }
        .text-block{
            width: 100%;
            order: 2;
            margin-top: 0;
            h2{
                width: 100%;
                font-size: 38px;
                background: var(--gray01);
                padding: 50px 20px;
            }
            p{
                width: 100%;
                margin-top: 30px;
                padding: 0 20px;
            }
        }
        .image-block01{
            background: var(--gray01);
            padding-top: 10px;
            width: 100%;
            order: 1;

        }
    }
    .bg-specific01::before{
        display: none;
    }

    .specific-block02 {
        .block-ttl {
            font-size: 38px;
        }
    }

    .specific-block01 {
        .block-part {
            h3 {
                font-size: 36px;
            }
            .graph-area {
                p:last-of-type {
                    margin-bottom: 90px;
                }
            }
        }
    }

    /* セカンドルーキーとは */
    .rookie-page{

        .image-block01.pc-only{
            display: none;
        }

        .image-block02.sp-only{
            display: block!important;
        }

        h2{
            font-size: 38px;
            padding: 20px 0;
        }


        .text-block.flex{
            display: flex;
            width: 100%;
            .lead-text{
                width: 100%;
                font-size: 20px;
                padding: 20px 0 50px 0;
            }
            .dummy{
                width: 0%;
            }
        }

        .pb-adjust{
            padding-bottom: 100px;
        }

        .rookie-top-area > .image-block02{
            padding-top: 10px;
        }
    }



    /* インタビュー */
    .interview-page{

        .wrapper02 > .text-block{
            padding: 0 20px 40px 20px;
            .lead-text{
                /*font-size: 16px;*/
            }
        }
        .wrapper04{
            max-width: 100%;
            padding: 0;
        }

        .split-wrapper01{
            flex-wrap: wrap;

            .text-block{
                padding: 60px 58px 60px 58px;

                .lead-text{
                    padding: 60px 0 80px 0;
                }
                .main-text{
                    max-width: 100%;
                }

            }
            .image-block01.pc-only{
                display: none;

            }

            .image-block01.sp-only{
                width: 100%;
                padding-right: 0;
                padding-top: 60px;
                display: block!important;
            }
        }

        .split-wrapper01 .text-block.color-blue::before,
        .split-wrapper01 .text-block.color-green::before{
            display: none;
        }
        .split-wrapper01 .text-block.color-blue::after,
        .split-wrapper01 .text-block.color-green::after{
            display: none;
        }
    }

    /* 会社概要 */
    .company-page {
        .pt-adjust {
            padding-top: 10px;
        }

        .image-block01 {
            max-width: 100%;
        }
    }

    /* トップメッセージ */
    .message-page {

        .message-area{
            padding-left: 20px;
            padding-right: 20px;
        }
    }
}

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

 sp

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

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

    body:has(#menu-toggle:checked){
        overflow: hidden;
    }

    header:has(#menu-toggle:checked){
        position: fixed;
        top: 0;
    }

    .wrapper01{
        max-width: 100%;
        padding: 40px 20px;
    }

    .wrapper02 {
        max-width: 100%;
        padding: 20px 20px;
        margin: auto;
    }

    .wrapper03{
        max-width: 100%;
        padding: 20px 0;
        margin: auto;
    }


    .top-area{
        .wrapper02{
            padding: 0;
            .top-ttl {
                width: 85%;
                font-size: 8vw;
                padding-left: 20px;
                padding-right: 20px;
                min-width: auto;
                margin-top: 40px;
                margin-bottom: 40px;
            }
            .top-lead-txt{
                padding: 0 20px;
                margin-top: 30px;
                margin-bottom: 20px;
                font-size: 17px;
            }
        }
    }
    header{
        .company-logo{
            width: 252px;
            min-width: 252px;
        }
    }

    .sub-menu{

        .sub-menu-wrapper {
            max-width: 100%;
            padding: 70px 20px 40px 20px;
            justify-content: space-between;
            row-gap: 20px;
            column-gap: 20px;
            a{
                width: 100%;
            }

            .sub-menu-part {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                p{
                    font-size: 16px;
                    width: 100%;
                    text-align: center;
                }
                img{
                    /*width: 45%;*/
                }
            }
        }
        .link-area {
            max-width: 100%;
            width: 300px;
            padding: 0 ;
            justify-content: center;
            margin-bottom: 100px;
            a{
                font-size: 16px;
            }
        }
    }

    .link-btn01 {
        padding: 12px 40px 12px 12px;
        font-size: 17px;
        width: 300px;
        margin-bottom: 50px;
    }

    .link-area01 {
        padding-top: 50px;
        padding-bottom: 50px;
        column-gap: 0;
        row-gap: 30px;
        .link-part {
            .text-block{
                .lead-text{
                    font-size: 14px;
                }
                .ttl-text{
                    font-size: 17px;
                    text-align: left;
                }
            }
        }
    }

    .group-link{
        a{
            font-size: 17px;
        }
    }

    /* 働き方 */
    .second-ttl {
        font-size: 18px;
        padding: 20px;
        text-align: center;
    }

    .bg-specific01{
        .text-block{
            h2{
                font-size: 28px;
            }
            p{
                font-size: 16px;
            }
        }
    }


    .specific-block01{
        margin-top: 100px;
        .wrapper01{
            padding-left: 20px;
            padding-right: 20px;
        }

        .block-part{
            width: 100%;
            text-align: center;
            h3{
                font-size: 22px;
            }
            .lead-text{
                font-size: 16px;
                margin-top: 30px;
            }
            .graph-area{
                width: 100%;
                margin: auto;
                margin-top: 40px;
                p{
                    text-align: left;
                    padding-left: clamp(0.938rem, -11.917rem + 54.85vw, 14.375rem);
                }
                p:first-of-type{
                    margin-top: 20px;
                }
                p:last-of-type{
                    margin-bottom: 90px;
                }
            }
            .ttl-text{
                font-size: 18px;
                margin-top: 50px;
            }
        }
        .block-part:last-of-type .graph-area{
            margin-top: 10px;
        }
    }


    .specific-block02{

        border-radius: 30px 30px 0 0;
        padding-top: 100px;
        padding-bottom: 70px;
        margin-top: 70px;
        .block-ttl{
            font-size: 22px;
        }
        .lead-text{
            font-size: 16px;
            margin-top: 30px;
        }

        .block-area01{
            margin-top: 30px;
            flex-wrap: wrap;
            align-items: flex-start;
            div{
                width: 100%;
                p{
                    font-size: 24px;
                    width: 100%;
                }
            }
            .plus-icon{
                width: 10%;
                margin-top: 15px;
                margin-bottom: 15px;
            }
        }

        .model-case {
            border-radius: 10px;
            padding: 40px 20px 30px 20px;
            margin-top: 90px;
            .ttl-area{
                flex-wrap: wrap;
                column-gap: 15px;
                padding-bottom: 10px;
                justify-content: center;
                .case{
                    font-size: 18px;
                    width: 150px;
                    /*display: inline-block;*/
                    margin-right: calc(100% - 150px);
                    margin-bottom: 15px;
                }
                .case::after{
                    height: 100%;
                    right: 0;
                    top:-5%;
                }
                .job01{
                    font-size: 28px;
                }
                .job02{
                    font-size: 28px;
                }
                .plus-icon{
                    width: 25px;
                }
            }

            .schedule-area{
                display: flex;
                flex-wrap: wrap;
                padding-top: 30px;
                padding-left: 50px;

                .start,
                .end{
                    width: 100%;
                    p {
                        font-size: 15px;
                        padding: 5px 10px;
                    }
                }
                .job01{
                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    padding: 0;
                    .ttl-text{
                        width: 22%;
                        font-size: 14px;
                        padding: 5px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                    .detail{
                        padding: 15px 10px;
                        width: 78%;

                        .place{
                            font-size: 16px;
                        }
                        .task{
                            font-size: 13px;
                            margin-top: 10px;
                            dt{
                                align-items: flex-start;
                                padding-top: 0.3em;
                            }
                        }
                    }
                }

                .job02{
                    width: 100%;
                    display: flex;
                    .schedule{
                        width: 22%;
                        font-size: 14px;
                        row-gap: 20px;
                        display: flex;
                        flex-wrap: wrap;
                        flex-direction: column;
                        justify-content: center;
                        padding: 15px 5px;
                        .ttl-text{
                            color: #fff;
                            text-align: center;
                        }
                        .ttl-text:first-child,
                        .ttl-text:nth-child(3){
                            margin-left: 0;
                            padding: 5px 10px;
                            min-width: 1em;
                        }
                        .ttl-text:last-child{
                            margin-right: 0;
                            margin-bottom: 20px;
                        }
                    }
                    .detail{
                        width: 78%;
                        padding: 15px 10px;
                        .place{
                            font-size: 16px;
                        }
                        .task{
                            font-size: 13px;
                            display: flex;
                            flex-wrap: wrap;
                            margin-top: 15px;
                            dt{
                                align-items: flex-start;
                                padding-top: 0.3em;
                            }
                        }
                    }
                }
                .start::before{
                    display: none;
                }
                .start::after{
                    display: none;
                }

                .job01::before{
                    top: 0;
                    left: -14px;
                    right: auto;
                    width: 10px;
                    height: 1px;
                }
                .job01::after{
                    content: "6:00";
                    top: -10px;
                    right: auto;
                    left: -48px;
                    text-align:right;
                    font-size: 14px;
                }

                .job02::before{
                    top: 0;
                    left: -14px;
                    right: auto;
                    width: 10px;
                    height: 1px;
                }
                .job02::after{
                    content: "9:00";
                    top: -10px;
                    right: auto;
                    left: -48px;
                    text-align:right;
                    font-size: 14px;
                }
                .end::before{
                    content:"";
                    position:absolute;
                    display: block;
                    top: 0;
                    left: -14px;
                    right: auto;
                    width: 10px;
                    height: 1px;
                    background: rgba(0,0,0,0.6);
                }
                .end::after{
                    content: "15:00";
                    position: absolute;
                    display: block;
                    top: -10px;
                    right: auto;
                    left: -48px;
                    text-align:right;
                    font-size: 14px;
                }
            }
        }
    }

    .recruitment-area {
        padding-top: 50px;
        padding-bottom: 50px;
        div{
            a{
                p {
                    font-size: 17px;
                    padding: 10px 30px;
                }
            }
        }
    }

    /* セカンドルーキーとは */
    .rookie-page{

        h2{
            font-size: 28px;
            padding-top: 30px;
        }

        .text-block.flex{
            .lead-text{
                width: 100%;
                font-size: 16px;
                padding: 20px 0 30px 0;
                line-height: 1.8;
            }
        }
    }

    .rookie-top-area > .image-block02{
        padding-top: 10px;
    }


    /* インタビュー */
    .interview-page{
        position: relative;

        .wrapper02{
            padding: 0 20px;
        }

        .wrapper02.link-area01{
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .wrapper02.common-area{
            padding: 20px 20px;
            padding-top: 55px;
            padding-bottom: 55px;
        }

        .wrapper02 > .text-block{
            padding: 10px 0 30px 0;
            .lead-text{
                font-size: 16px;
            }
        }

        .wrapper04{
            max-width: 100%;
            padding: 0;
        }

        .wrapper04.mt-adjust{
            margin-top: 50px;
        }
        .mb-adjust{
            margin-bottom: 100px;
        }

        .split-wrapper01{
            width: 100%;
            display: flex;
            justify-content: space-between;
            position: relative;

            .text-block{
                padding: 50px 0;

                h2{
                    font-size: 28px;
                    padding-left: 20px;
                    padding-right: 20px;
                }
                .lead-text{
                    padding: 30px 20px;
                    font-size: 16px;
                }
                .main-text{
                    margin-top: 30px;
                    font-size: 15px;
                    max-width: 100%;
                    padding: 0 20px;
                }

            }

            .image-block01.sp-only{
                width: 100%;
                padding-right: 0;
                padding-left: 0;
                padding-top: 30px;
                z-index: 1;
            }
        }

        .recruitment-area {
            padding-top: 50px;
            padding-bottom: 50px;
        }
    }

    /* 会社概要 */
    .company-page{

        .pt-adjust{
            padding-top: 10px;
        }
        .image-block01{
            max-width: 100%;
        }

        .information-area{
            padding: 10px 20px 50px 20px;
            max-width: 100%;
            font-size: 15px;
            dt{
                width: 100%;
                padding-top: 10px;
                padding-bottom: 10px;
                border-top: none;
                border-bottom: 1px solid #E0E0E0;
                margin-bottom: 10px;
            }
            dd{
                width: 100%;
                padding-top: 5px;
                padding-bottom: 0;
                border-top: none;
                margin-bottom: 20px;
                .task{
                    display: flex;
                    flex-wrap: wrap;
                    dt{
                        border-top: none;
                        border-bottom: none;
                        padding-top: 10px;
                        padding-bottom: 0;
                        margin-bottom: 5px;
                    }
                    dd{
                        border-top: none;
                        padding-top: 10px;
                        padding-bottom: 0;
                        margin-bottom: 5px;
                    }
                    dt:first-child,
                    dd:first-of-type{
                        padding-top: 0;
                    }
                    dt:last-of-type,
                    dd:last-of-type{
                        padding-bottom: 0;
                    }
                }
                .executive{
                    li{
                        padding-bottom: 10px;
                    }
                    li:last-child{
                        padding-bottom: 0;
                    }
                }
            }
        }
        .information-area > dd:last-of-type{
            border-bottom: none;
        }
    }

    /* トップメッセージ */
    .message-page {

        .pt-adjust {
            padding-top: 10px;
        }

        .sp-pd-adjust02 {
            padding-bottom: 0;
        }

        .message-area{
            margin-right: 20px;
            margin-left: 20px;
            padding: 50px 15px;
        }

        .message-area::after{
            display: none;
        }

        .text-block01{
            h2{
                font-size: 28px;
            }
        }

        .main-text{
            margin-top: 50px;
            font-size: 16px;
        }

        .text-block02{
            .ceo{
                font-size: 16px;
                .name{
                    font-size: 20px;
                }
            }
        }
    }


    /* フッター */
    footer{

        .wrapper01{
            flex-wrap: wrap;
            flex-direction: column;
            row-gap: 0;
            padding: 50px 20px 20px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: auto;
            > a{
                order: 2;
                margin-top: 80px;
                width: 90%;
                max-width: 362px;
            }

            .menu{
                order: 1;
                flex-direction: column;
                text-align: center;
                font-size: 14px;
                row-gap: 15px;
            }
        }
    }







    .sp-only{
        display: block!important;
    }
    .pc-only{
        display: none!important;
    }


}





