/* =========================
  ALL
========================= */
main {
    margin-bottom: 6rem;
}
.inner {
    width: 90%;
    margin: 0 auto;
}
.page__head {
    text-align: center;
}
.page__head .title {
    font-size: 9vw;
    letter-spacing: .06em;
    padding: 1rem 0 0;
}
.page__head .desc {
    font-size: 1.3rem;
    padding: 1rem 0;
}
.page__head .img {
    padding: 1rem 0;
}
.sec {
    margin: 0 0 4rem;
    padding: 3rem 0 0;
}
.sec + .sec {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.sec__head {
    padding: 0 0 3rem;
}
.sec__head .number {
    font-size: calc(2rem + 2vw);
    color: #FFF;
}
.sec__head h2 {
    font-size: calc(1.5rem + 2vw);
    letter-spacing: .06em;
}
.sec__head .desc {
    font-size: calc(1rem + 0.5vw);
}
.sec__body__head {
    font-size: 1.2rem;
    color: #FFF;
}
.sec__block {
    margin-bottom: 4rem;
}
.sec .img-block {
    margin-bottom: 2rem;
}
.sec .img-block img {
    border-radius: 1rem;
}
.sec dl {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
}
.sec dt {
    color: #FFF;
}
/* =========================
  RECRUIT
========================= */
/* BTN */
.btn-apply {
    font-size: 1.4rem;
    width: 90%;
    max-width: 420px;
    height: 70px;
    color: #FFF;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .14em;
    margin: 1rem auto;
}
.btn-apply i {
    position: absolute;
    right: 1.4rem;
    width: 8px;
    height: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    transform: rotate(-45deg);
    transition: transform .3s ease;
}
.btn-apply:hover i {
    transform: translateX(0.25em) rotate(-45deg);
}
.btn-apply.zalo {
    background: #0068ff;
}
.btn-apply.facebook {
    background: #0866ff;
    letter-spacing: .08em;
}
.btn-apply.mail {
    background: #29abe2;
}
/* =========================
  ABOUT
========================= */
#about .organization {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
}
/* =========================
  SERVICE
========================= */
.works {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.works__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
}
.works__item {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #6f93b2 0%, #0c4f86 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
    /* 右上カット */
    -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.works__btn {
    position: relative;
    width: 100%;
    height: 64px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    letter-spacing: .14em;
}
.works__arrow {
    position: absolute;
    right: 20px;
    width: 7px;
    height: 7px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(-45deg);
}
/* =========================
   flow（SP：デフォルト）
========================= */
.flow {
    max-width: 980px;
    margin: 0 auto;
}
.flow__list {
    display: grid;
    grid-template-columns: 1fr; /* SPもPCも縦固定 */
    gap: 54px;
    max-width: 860px;
    margin: 0 auto;
}
.flow__item {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: .08em;
    background: linear-gradient(90deg, #6f93b2 0%, #0c4f86 100%);
}
.flow__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 14px);
    transform: translateX(-50%);
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, .9);
}
.flow__item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 24px);
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 1px solid rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(255, 255, 255, .9);
}
@media screen and (min-width: 768px) {
    .inner {
        max-width: 1200px;
    }
    .page__head .title {
        font-size: 5vw;
        padding: 3% 0 0;
    }
    .page__head .desc {
        font-size: 1.6vw;
    }
    .sec__block {
        display: flex;
        gap: 3rem;
        margin-bottom: 2rem;
    }
    .sec__block .img-block {
        width: 50%;
    }
    .sec__block .txt-block {
        width: 50%;
    }
    .sec__block:nth-child(even) {
        flex-direction: row-reverse;
    }
    .sec dl {
        grid-template-columns: 15% 1fr;
        column-gap: 1rem;
    }
    /* =========================
  SERVICE
========================= */
    .works__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 40px;
    }
    .works__item {
        height: 120px;
        /* PCは角を少し大きく */
        -webkit-clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
        clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
    }
    .works__btn {
        width: min(520px, 100%);
        height: 72px;
    }
    .works__arrow {
        right: 24px;
        width: 8px;
        height: 8px;
    }
    .flow__list {
        gap: 52px;
    }
}