@charset "utf-8";

.wrapper {
    overflow: hidden;
}

/*============================
採用メッセージ
============================*/

#recruit_message {
    padding-bottom: 155px;
}

#recruit_message .inner {
    position: relative;
}

#recruit_message .text {
    width: 650px;
    font-feature-settings: "palt";
}

#recruit_message h2 {
    margin-bottom: 25px;
}

#recruit_message h2 i {
    color: #0077d0;
}

#recruit_message h2::before {
    content: none;
}

#recruit_message .photo {
    width: 340px;
    height: 439px;
    position: absolute;
    top: 0;
    right: 0;
}

#recruit_message .mark {
    position: relative;
}

#recruit_message .mark::after {
    content: "";
    background: url(../images/message/mark.png)no-repeat center center;
    background-size: 100%;
    width: 180px;
    height: 11px;
    display: block;
    position: absolute;
    left: 5px;
    bottom: -3px;
    z-index: -1;
}

#recruit_message > .inner {
    margin-bottom: 100px;
}

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

    #recruit_message {
        padding-bottom: 80px;
    }

    #recruit_message .text {
        width: 100%;
    }

    #recruit_message h2 {
        margin-bottom: 20px;
    }

    #recruit_message h2::before {
        content: none;
    }

    #recruit_message .photo {
        width: 100%;
        height: 0;
        padding-top: 80%;
        position: relative;
        margin-bottom: 20px;
    }

    #recruit_message .photo img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #recruit_message .mark {
        position: relative;
    }

    #recruit_message .mark::after {
        content: "";
        background: url(../images/message/mark.png)no-repeat center center;
        background-size: 100%;
        width: 180px;
        height: 11px;
        display: block;
        position: absolute;
        left: 5px;
        bottom: -3px;
        z-index: -1;
    }

    #recruit_message > .inner {
        margin-bottom: 50px;
    }

}

/*============================
ギャラリー
============================*/

.gallery {
    position: relative;
    padding: 105px 0;
}

.gallery::before,
.gallery::after {
    content: "";
    background: url(../images/message/gallery_bg_text.png)repeat-x center center;
    background-size: auto 100%;
    width: 100%;
    height: 65px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery::after {
    top: auto;
    bottom: 0;
}

/*流れるスライダー*/

/*IE11対策
-----------------------------*/

_:-ms-lang(x)::-ms-backdrop,
.slide {
    display: -ms-grid;
    overflow: hidden;
}

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

.slide_wrap {
    display: flex;
    overflow: hidden;
}

.slide_wrap:not(:last-child) {
    margin-bottom: 40px;
}

.slide_list {
    display: flex;
    list-style: none;
}

.right-to-left {
    animation: infinity-scroll-left 90s infinite linear 0.5s both;
}

/*右から左へ*/

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*左から右へ*/

.left-to-right {
    animation: infinity-scroll-right 90s infinite linear 0.5s both;
}

@keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.slide_item {
    width: 100%;
    min-width: 325px;
    height: 240px;
    border-radius: 40px;
    overflow: hidden;
    margin-right: 40px;
}

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

#recruit .recruit_link.flex {
    width: 1040px;
    margin: auto;
}

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

    .gallery {
        position: relative;
        padding: 60px 0;
    }

    .gallery::before,
    .gallery::after {
        content: "";
        background: url(../images/message/gallery_bg_text.png) repeat-x center center;
        background-size: auto 100%;
        width: 100%;
        height: 40px;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }

    .gallery::after {
        top: auto;
        bottom: 0;
    }

    /*流れるスライダー*/
    .slide_wrap:not(:last-child) {
        margin-bottom: 20px;
    }

    .slide_item {
        width: 100%;
        min-width: 240px;
        height: 160px;
        margin-right: 20px;
    }
}

/*============================
ポイント
============================*/
#point {
    background: #0077d0;
    position: relative;
    padding-top: 40px;
}

#point h2 {
    color: #fff;
}

#point .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.video_area {
    width: 500px;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
/*    margin-bottom: 40px;*/
}

video {
    width: 100%;
    height: 510px;
    display: block;
}

.video_area p {
    background: #fff;
    padding: 15px 40px;
    display: block;
    font-size: 17px;
}

#point .flex {
    width: 500px;
    align-items: stretch;
    gap: 40px;
}

#point .flex li {
    width: 230px;
    background: #fff;
    border-radius: 40px;
    padding: 25px 26px 30px;
    font-size: 17px;
}

#point .flex li img {
    width: 170px;
    height: 140px;
    margin: auto;
    margin-bottom: 10px;
}

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

    #point {
        padding-top: 20px;
    }

    .video_area {
        margin-bottom: 20px;
    }

    video {
        width: 100%;
        height: 80vh;
        display: block;
    }

    .video_area p {
        padding: 12px 40px;
        font-size: 15px;
    }

    #point .flex {
        gap: 20px;
    }

    #point .flex li {
        width: calc(50% - 10px);
        padding: 20px 25px;
        font-size: 15px;
    }

    #point .flex li img {
        width: 100%;
        height: auto;
    }
}

/*============================
キャリアアップイメージ
============================*/
#career .flex {
    align-items: flex-end;
}

#career dl {
    width: 346px;
    background: #06aee1;
    overflow: hidden;
    border-top-left-radius: 40px;
    color: #fff;
    /* 追加 */
    display: flex;
    flex-direction: column;
}

#career dl:last-child {
    border-top-right-radius: 40px;
}

#career dl dt {
    background: #0077d0;
    line-height: 66px;
    padding: 0 35px;
    font-size: 26px;
    font-weight: 700;
}

#career dl dt .eng {
    font-size: 30px;
    font-weight: 600;
}

#career dl dd {}

#career dl dd > p:first-child {
    padding: 30px 30px 0;
}

#career dl dd {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*    上の記述が使えるようにするのに必要height: 100%*/
    flex: 1;
}

#career dl dd p.eng {
    width: 100%;
    display: block;
    border-top: 1px solid #fff;
    font-weight: 600;
    font-size: 34px;
    line-height: 80px;
    text-align: center;
    margin-top: auto;
    letter-spacing: 0.05em;
}

#career dl.step1 {
    height: 428px;
    border-bottom-left-radius: 40px;
}

#career dl.step2 {
    height: 494px;
    position: relative;
}

#career dl.step2::before {
    content: "";
    background: url(../images/career/step02_illst.png)no-repeat center center;
    background-size: 100%;
    width: 120px;
    height: 112px;
    display: block;
    position: absolute;
    right: 30px;
    bottom: 81px;
    z-index: 10;
}

#career dl.step3 {
    height: 560px;
    position: relative;
    border-bottom-right-radius: 40px;
}

#career dl.step3::before {
    content: "";
    background: url(../images/career/step03_illst.png)no-repeat center center;
    background-size: 100%;
    width: 240px;
    height: 162px;
    display: block;
    position: absolute;
    right: 30px;
    bottom: 81px;
    z-index: 10;
}

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

    #career .flex {
        align-items: flex-start;
    }

    #career dl {
        width: 100%;
        border-radius: 40px;
    }

    #career dl:not(:last-child) {
        margin-bottom: 20px;
    }

    #career dl:last-child {
        border-radius: 40px;
    }

    #career dl dt {
        line-height: inherit;
        padding: 10px 20px;
        font-size: 20px;
    }

    #career dl dt .eng {
        font-size: 24px;
    }

    #career dl dd > p:first-child {
        padding: 25px;
    }

    #career dl dd {}

    #career dl dd p.eng {
        font-size: 24px;
        line-height: 60px;
        text-align: left;
        padding-left: 25px;
    }

    #career dl.step1 {
        height: auto;
        border-radius: 40px;
    }

    #career dl.step2 {
        height: auto;
    }

    #career dl.step2::before {
        width: 80px;
        height: 74px;
        position: absolute;
        right: 25px;
        bottom: 0;
    }

    #career dl.step3 {
        height: 100%;
        border-radius: 40px;
    }

    #career dl.step3::before {
        width: 140px;
        height: 94px;
        position: absolute;
        right: 25px;
        bottom: 0;
    }
}

/*============================
ある1日の流れ
============================*/
#schedule {
    background: #f1f1f1;
    padding-bottom: 155px;
}

#schedule ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

#schedule ul::before {
    content: "";
    width: 100%;
    height: 5px;
    background: #0077d0;
    display: block;
    position: absolute;
    top: 46px;
}

#schedule ul li {
    width: 94px;
    text-align: center;
    position: relative;
    z-index: 1;
}

#schedule ul li.rest_box {
    width: 60px;
}

#schedule ul li .icon {
    background: #fff;
    border-radius: 47px;
    margin-bottom: 20px;
}

#schedule ul li .icon img {
    width: 100%;
}

#schedule ul li .rest {
    height: 94px;
    width: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}

#schedule ul li .rest span {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #0077d0;
}

#schedule ul li .box {
    width: 100%;
}

#schedule ul li .time {
    font-size: 24px;
    text-align: center;
    display: block;
    width: 100%;
    line-height: 1.4;
    color: #0077d0;
    font-weight: 600;
}

#schedule ul li .todo {
    font-size: 16px;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 0;
    line-height: 1.5;
}

@media only screen and (max-width: 768px) {
    #schedule {
        padding-bottom: 80px;
    }

    #schedule ul {}

    #schedule ul::before {
        content: "";
        width: 5px;
        height: 100%;
        background: #0077d0;
        display: block;
        position: absolute;
        top: 46px;
        left: 45px;
    }

    #schedule ul li {
        width: 100%;
        align-items: stretch;
    }

    #schedule ul li:not(:last-child) {
        margin-bottom: 20px;
    }

    #schedule ul li.rest_box {
        width: 100%;
    }

    #schedule ul li .icon {
        width: 94px;
        margin: 0;
    }

    #schedule ul li .icon img {
        width: 100%;
    }

    #schedule ul li .rest {
        margin-bottom: 0;
    }

    #schedule ul li .rest span {
        display: block;
        width: 30px;
        height: 30px;
        border-radius: 15px;
        background: #0077d0;
    }

    #schedule ul li .box {
        width: calc(100% - 114px);
        background: #fff;
        border-radius: 20px;
        padding: 18px 20px;
        align-self: center;
        position: relative;
    }

    #schedule ul li .box::before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 12px solid #fff;
        border-left: 0;
        position: absolute;
        left: -12px;
        top: calc(50% - 8px);
    }
}

/*============================
募集要項
============================*/
#recruit_info {
    background: #0077d0;
    padding-top: 45px;
    position: relative;
}

#recruit_info h2 {
    color: #fff;
}

/*タブの基本形*/
.tab-wrap > ul {
    display: flex;
    grid-column-gap: 5px;
}

.tab-btn {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 300px;
    padding: 10px 0;
    text-align: center;
    list-style: none;
    cursor: pointer;
    background: #cce4f6;
    border-radius: 20px 20px 0 0;
    border-bottom: 3px solid #0077d0;
    font-size: 20px;
}

.tab-btn:hover {
    opacity: 1;
    color: #0077d0;
}

.tab-btn.show {
    background: #fff;
    border-color: #fff;
}

/*タブ*/

.tab-contents {
    display: none;
}

.tab-contents.show {
    display: block;
    padding: 60px 40px;
    background: #fff;
    border-radius: 0 20px 20px 20px;
}

.tab-contents.show .flex {
    background: #fff;
}

table.info tbody {
    width: 460px;
    display: block;
}

table.info td > div {
    padding: 8px 0;
}

table.info td > div:first-child {
    padding-top: 0;
}

table.info td > div:last-child {
    padding-bottom: 0;
}

table.info td > div ul {
    margin-top: 5px;
}

table.info td > span {
    display: block;
}

#point::after,
#recruit_info::after {
    content: "";
    background: url(../../images/common/wave_b_half.png) repeat-x center bottom;
    background-size: auto 100%;
    width: 100%;
    height: 55px;
    display: block;
    position: absolute;
    top: -55px;
}

@media only screen and (max-width: 768px) {
    #recruit_info {
        padding-top: 20px;
    }

    /*タブの基本形*/
    .tab-btn {
        width: 33%;
        font-size: 16px;
    }

    /*タブ*/

    .tab-contents.show {
        padding: 25px;
        border-radius: 0 20px 20px 20px;
    }

    table.info tbody {
        width: 100%;
    }

    table.info td > div {
        padding: 8px 0;
    }

    table.info td > div:first-child {
        padding-top: 0;
    }

    table.info td > div:last-child {
        padding-bottom: 0;
    }

    table.info td > div ul {
        margin-top: 5px;
    }

    #point::after,
    #recruit_info::after {
        height: 30px;
        top: -30px;
    }
}

/*============================
エントリー
============================*/

#entry {
    background: #ffd73b;
}

#entry a {
    display: block;
    padding: 40px 0;
    color: #fff;
}

#entry .flex {
    align-items: center;
}

#entry .flex h2 {
    margin-bottom: 15px;
}

#entry .flex h2::before {
    content: none;
}

#entry .flex p.eng {
    font-size: 60px;
    font-weight: 600;
    display: block;
    position: relative;
    padding-right: 100px;
    line-height: 1.2;
}

#entry .flex p.eng::after {
    content: "\f061";
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: block;
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 30px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 40px;
    z-index: 10;
}

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

    #entry a {
        display: block;
        padding: 40px 0;
        color: #fff;
    }

    #entry .flex {
        width: 90.625%;
        margin: auto;
    }

    #entry .flex h2 {
        margin-bottom: 15px;
    }

    #entry .flex h2::before {
        content: none;
    }

    #entry .flex p.eng {
        font-size: 60px;
        font-weight: 600;
        display: block;
        position: relative;
        padding-right: 100px;
        width: 100%;
        margin-top: 10px;
    }

    #entry .flex p.eng::after {
        width: 60px;
        height: 60px;
        line-height: 60px;

    }
}

/*動画*/

#recruit video {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}

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

    /*動画*/

    #recruit video {
        margin-top: 15px;
    }

}
