﻿@charset "UTF-8";

/* common
---------------------------------------------------*/
#Header .inner {
    background-color: rgba(255, 255, 255, 0.85);
}
/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    /* g-nav */
    #g-nav {
        background-color: rgba(255, 255, 255, 0.85);
    }
}

/* mv
---------------------------------------------------*/
#mv .inner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}
#mv .figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
#mv .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#mv .text-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 734px;
    color: var(--white-color);
    padding: 40px 80px;
}
#mv .text-wrap .title {
    line-height: 1.34em;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 24px;
}
#mv .text-wrap .phrase {
    line-height: 1.5em;
    font-size: var(--font-size-l);
    font-weight: 700;
    margin-bottom: 1em;
}
#mv .text-wrap .txt p {
    line-height: 1.8em;
    font-weight: 500;
}
#mv .text-wrap .txt p:not(:last-of-type) {
    margin-bottom: 1.8em;
}

/* video */
.video {
    position: relative;
    width: 100%;
    height: 100%;
    background: url("../asset/img/training/mv.webp") no-repeat center/cover;
    overflow: hidden;
}
.video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #mv .inner {
        height: auto;
        min-height: auto;
    }
    #mv .text-wrap {
        width: 80.7692vw;
        padding: 10.2564vw 4.1025vw;
    }
    #mv .text-wrap .title {
        line-height: 1.5em;
        font-size: 10.2564vw;
        margin-bottom: 6.1538vw;
    }
    #mv .text-wrap .phrase {
        line-height: 2em;
        font-size: var(--font-size-n);
        margin-bottom: 1.5em;
    }
    #mv .text-wrap .txt p {
        font-size: var(--font-size-s);
    }
    /* video */
    .video{
        min-height: 100vh;
        background: url("../asset/img/training/mv_sp.webp") no-repeat center/cover;
    }
    .video video {
        top: 40%;
        left: -50%;
    }
}

/* feature
---------------------------------------------------*/
#feature {
    width: 100%;
    background-color: var(--black-color);
}
#feature .feature-wrap {
    position: relative;
    overflow: hidden;
}
#feature .feature-list {
    position: relative;
    width: 100%;
    z-index: 1;
}
#feature .feature-list .feature {
    width: 100%;
}
#feature .feature-list .feature .figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#feature .feature-list .feature .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#feature .text-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    color: var(--white-color);
    padding: 60px 80px;
}
#feature .text-wrap .title {
    line-height: 1.5em;
    font-size: var(--font-size-l);
    font-weight: 700;
    margin-bottom: 40px;
}
/* pager */
#feature .text-wrap .pager {
    display: flex;
    flex-wrap: wrap;
}
#feature .text-wrap .pager .navi {
    position: relative;
    width: 264px;
    padding: 24px;
    user-select: none;
    cursor: pointer;
}
#feature .text-wrap .pager .navi::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 82%;
    height: 1px;
    background-color: var(--white-color);
}
#feature .text-wrap .pager .navi .num-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
#feature .text-wrap .pager .navi .num-wrap .num {
    width: 56px;
    line-height: 1.5em;
    font-size: 40px;
    font-weight: 700;
    border-right: 1px solid var(--white-color);
}
#feature .text-wrap .pager .navi .num-wrap dl {
    padding-left: 12px;
}
#feature .text-wrap .pager .navi .num-wrap dl dt {
    line-height: 1.8em;
    font-weight: 700;
    margin-bottom: 0.5em;
}
#feature .text-wrap .pager .navi .num-wrap dl dd {
    line-height: 1.4em;
    font-size: var(--font-size-s);
    font-weight: 700;
}
#feature .text-wrap .pager .navi .txt {
    line-height: 1.4em;
    min-height: 5.6em;
}
/* .is-current */
#feature .text-wrap .pager .navi.is-current {
    color: var(--black-color);
    background-color: var(--white-color);
}
#feature .text-wrap .pager .navi.is-current .num-wrap .num {
    border-color: var(--black-color);
}
/* navigator */
#feature ul.navigator {
    display: flex;
    gap: 40px;
    margin-top: 38px;
}
#feature ul.navigator li {
    width: 420px;
}
#feature ul.navigator li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    line-height: 1.8em;
    text-align: center;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 8px;
    padding: 24px;
}
#feature ul.navigator li a .icon {
    display: inline-block;
    width: 13px;
    margin-left: 0.2em;
}
/* 1280 */
@media screen and (max-width: 1280px) {
    #feature .feature-list .feature {
        width: 100%;
        height: 548px;
    }
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #feature .feature-list {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 137.6923vw;
        z-index: 1;
    }
    #feature .feature-list .feature {
        width: 100%;
        height: 100%;
    }
    #feature .text-wrap {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 41.0256vw 4.1025vw 8.2051vw;
    }
    #feature .text-wrap .title {
        margin-bottom: 10.2564vw;
    }
    /* .is-current */
    #feature .text-wrap .pager .navi.is-current {
        color: var(--white-color);
        background-color: transparent;
    }
    #feature .text-wrap .pager .navi.is-current .num-wrap .num {
        border-color: var(--white-color);
    }
    /* .slick-current */
    #feature .text-wrap .pager .navi.slick-current {
        color: var(--black-color);
        background-color: var(--white-color);
    }
    #feature .text-wrap .pager .navi.slick-current .num-wrap .num {
        border-color: var(--black-color);
    }

    /* pager */
    #feature .text-wrap .pager {
        display: block;
    }
    #feature .text-wrap .pager .navi {
        width: 67.6923vw;
        padding: 6.1538vw;
    }
    #feature .text-wrap .pager .navi .num-wrap {
        margin-bottom: 4.1025vw;
    }
    #feature .text-wrap .pager .navi .num-wrap .num {
        width: 14.3589vw;
        font-size: 10.2564vw;
    }
    #feature .text-wrap .pager .navi .num-wrap dl {
        padding-left: 3.0769vw;
    }

    /* slide */
    #feature .text-wrap .pager .slick-prev,
    #feature .text-wrap .pager .slick-next {
        display: block;
        width: 4.1025vw;
        height: 7.4358vw;
        background-color: rgba(0, 0, 0, 0.35);
    }
    #feature .text-wrap .pager .slick-prev {
        left: 0;
        background-image: url('../img/common/arrow_prev_w.svg');
    }
    #feature .text-wrap .pager .slick-next {
        left: 63.5897vw;
        right: 0;
        background-image: url('../img/common/arrow_next_w.svg');
    }

    /* navigator */
    #feature ul.navigator {
        display: flex;
        flex-direction: column;
        gap: 4.1025vw;
        margin-top: 29.7435vw;
    }
    #feature ul.navigator li {
        width: 100%;
    }
    #feature ul.navigator li a {
        border-radius: 2.0512vw;
        padding: 6.1538vw 3.589vw;
    }
    #feature ul.navigator li a .icon {
        display: none;
        width: 3.5897vw;
    }
}


/* training-method
---------------------------------------------------*/
#training-method {
    background-color: var(--black-color);
    margin-bottom: 64px;
}
#training-method .headline {
    position: relative;
}
#training-method .headline .figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
#training-method .headline .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#training-method .headline .text-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 730px;
    color: var(--white-color);
    padding: 40px 80px;
}
#training-method .headline .text-wrap .title {
    line-height: 1.5em;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 24px;
}
#training-method .headline .text-wrap .phrase {
    line-height: 1.5em;
    font-size: var(--font-size-l);
    font-weight: 700;
    margin-bottom: 1em;
}
#training-method .headline .text-wrap .txt p {
    line-height: 1.8em;
    font-weight: 500;
}
#training-method .headline .text-wrap .txt p:not(:last-of-type) {
    margin-bottom: 1.8em;
}

/* method */
#training-method .method-wrap {
    width: 96%;
    max-width: 1000px;
    padding: 40px 24px 64px;
    margin: 0 auto;
}
#training-method .method-wrap .title {
    line-height: 1.5em;
    color: var(--white-color);
    font-size: var(--font-size-l);
    font-weight: 700;
    margin-bottom: 1em;
}
#training-method .method {
    border-top: 1px solid var(--white-color);
    padding: 40px 0;
}
#training-method .method:first-of-type {
    border-top: 0;
    padding-top: 0;
}

#training-method .method .title-wrap {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white-color);
}
#training-method .method .title-wrap .num {
    width: 56px;
    line-height: 1.5em;
    font-size: 40px;
    font-weight: 700;
    border-right: 1px solid var(--white-color);
}
#training-method .method .title-wrap dl {
    padding-left: 12px;
}
#training-method .method .title-wrap dl dt {
    line-height: 1.8em;
    font-weight: 700;
    margin-bottom: 0.5em;
}
#training-method .method .title-wrap dl dd {
    line-height: 1.4em;
    font-size: var(--font-size-s);
    font-weight: 700;
}
#training-method .method .title-wrap dl dd span {
    display: inline-block;
    background-color: #0000B8;
    padding: 0.2em 0.1em;
}
#training-method .method .title-wrap .icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 24px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--white-color);
    border-radius: 50%;
}
#training-method .method .title-wrap .icon::before,
#training-method .method .title-wrap .icon::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
}
#training-method .method .title-wrap .icon::before {
    width: 50%;
    height: 2px;
}
#training-method .method .title-wrap .icon::after {
    width: 2px;
    height: 50%;
    transition: height 0.5s;
}
#training-method .method .title-wrap.is-active .icon::after {
    height: 0;
}

#training-method .method .content-wrap-inner {
    display: flex;
    color: var(--white-color);
    padding-top: 24px;
}
#training-method .method .content-wrap .fig {
    width: 318px;
    margin-right: 52px;
}
#training-method .method .content-wrap .fig img {
    width: 100%;
}
#training-method .method .content-wrap .explain {
    width: calc(100% - 370px);
    color: var(--white-color);
}
#training-method .method .content-wrap .explain > p {
    line-height: 1.4em;
    padding-right: 24px;
    margin-bottom: 40px;
}
#training-method .method .content-wrap .explain .list {
    display: inline-block;
    width: 310px;
    border: 1px solid var(--white-color);
    padding: 30px 40px;
}
#training-method .method .content-wrap .explain .list dl {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    line-height: 1.8em;
    z-index: 1;
}
#training-method .method .content-wrap .explain .list dl::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
    z-index: -1;
}
#training-method .method .content-wrap .explain .list dl:not(:last-of-type) {
    margin-bottom: 8px;
}
#training-method .method .content-wrap .explain dt {
    padding-right: 14px;
    background-color: var(--black-color);
}
#training-method .method .content-wrap .explain dd {
    min-width: 70px;
    padding-left: 9px;
    background-color: var(--black-color);
}

/* 1280 */
@media screen and (max-width: 1280px) {
    #training-method .headline {
        height: 490px;
    }
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #training-method {
        margin-bottom: 16.4102vw;
    }
    #training-method .headline {
        height: 155.3846vw;
    }
    #training-method .headline .text-wrap {
        width: 80.7692vw;
        padding: 10.7692vw 4.1025vw;
    }
    #training-method .headline .text-wrap .title {
        font-size: 10.2564vw;
        margin-bottom: 6.1538vw;
    }
    #training-method .headline .text-wrap .txt p {
        font-size: var(--font-size-s);
        font-weight: 400;
    }

    /* method */
    #training-method .method-wrap {
        width: 100%;
        padding: 10.2564vw 8.2051vw 16.4102vw;
    }
    #training-method .method:last-of-type {
        border-bottom: 1px solid var(--white-color);
    }
    #training-method .method {
        padding: 10.2564vw 0;
    }
    #training-method .method .title-wrap {
        padding-right: 8.2051vw;
    }
    #training-method .method .title-wrap .num {
        width: 14.3589vw;
        font-size: 10.2564vw;
    }
    #training-method .method .title-wrap dl {
        padding-left: 3.0769vw;
    }
    #training-method .method .title-wrap .icon {
        top: 0;
        transform: translate(0, 0);
        width: 6.1538vw;
    }
    #training-method .method .content-wrap-inner {
        display: block;
        padding-top: 6.1538vw;
    }
    #training-method .method .content-wrap .fig {
        width: 100%;
        margin-right: 0;
        margin-bottom: 6.1538vw;
    }
    #training-method .method .content-wrap .explain {
        width: 100%;
    }
    #training-method .method .content-wrap .explain > p {
        padding-right: 0;
        margin-bottom: 6.1538vw;
    }
    #training-method .method .content-wrap .explain .list {
        width: 100%;
        padding: 10.2564vw;
    }
    #training-method .method .content-wrap .explain .list dl {
    }
    #training-method .method .content-wrap .explain .list dl:not(:last-of-type) {
        margin-bottom: 2.0512vw;
    }
    #training-method .method .content-wrap .explain dt {
        padding-right: 3.5897vw;
    }
    #training-method .method .content-wrap .explain dd {
        min-width: 19.4871vw;
        padding-left: 3.0769vw;
    }
}


/* client
---------------------------------------------------*/
#client {
    width: 100%;
    margin-bottom: 128px;
    padding-bottom: 45px;
}
#client .ttl-section {
    margin-left: 80px;
    margin-bottom: 24px;
}
#client .client {
    position: relative;
    width: 320px;
    margin-left: 20px;
}
#client .client .figure {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
#client .client .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
#client .client .text-wrap {
    width: 100%;
    margin-top: 24px;
}
#client .client .text-wrap .category {
    display: inline-flex;
    line-height: 1.8em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: var(--white-color);
    background: var(--black-color);
    padding: 0px 8px;
}
#client .client .text-wrap .position {
    line-height: 1.8em;
    font-size: var(--font-size-s);
    margin-bottom: 0.5em;
}
#client .client .text-wrap .name {
    line-height: 1.45em;
    font-size: var(--font-size-l);
    font-weight: 700;
}

/* slide */
#client .slick-list {
    padding: 0 80px !important;
}
#client .slick-prev,
#client .slick-next {
    top: calc(100% + 24px);
    display: block;
    width: 10px;
    height: 20px;
    transform: translate(0, 0);
}
#client .slick-prev {
    left: 80px;
}
#client .slick-next {
    left: 120px;
    right: auto;
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #client {
        margin-bottom: 16.4102vw;
        padding-bottom: 0;
    }
    #client .ttl-section {
        margin-left: 4.1025vw;
        margin-bottom: 6.1538vw;
    }
    #client .client {
        width: 82.0512vw;
        margin-left: 5.1282vw;
    }
    #client .client .text-wrap {
        margin-top: 6.1538vw;
    }
    /* slide */
    #client .slick-list {
        padding: 0 4.1025vw !important;
    }
    #client .slick-prev,
    #client .slick-next {
        top: 38.4615vw;
        width: 2.5641vw;
        height: 5.1282vw;
    }
    #client .slick-prev {
        left: 4.1025vw;
        background-image: url('../img/common/arrow_prev_w.svg');
    }
    #client .slick-next {
        left: auto;
        right: 13.9487vw;
        background-image: url('../img/common/arrow_next_w.svg');
    }
}

/* gallery
---------------------------------------------------*/
#gallery {
    width: 100%;
}
#gallery .inner {
    width: 100%;
    padding: 0 80px;
}
#gallery .ttl-section {
    margin-bottom: 24px;
}
#gallery ul.gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 2.28%;
    margin-bottom: 48px;
}
#gallery ul.gallery-list li {
    width: 23.29%;
}
#gallery ul.gallery-list li a.gallery-link {
    display: block;
    width: 100%;
    transition: 0.3s ease;
}
#gallery ul.gallery-list li img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s ease;
}
#gallery ul.gallery-list li a.gallery-link:hover img {
    opacity: 0.6;
}
#gallery .btn-link a[target="_blank"] {
    padding: 0.7em 1.1em;
}
#gallery .btn-link a[target="_blank"]::after {
    display: none;
}

/* 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    #gallery .inner {
        padding: 0 4.1025vw;
    }
    #gallery .ttl-section {
        margin-bottom: 6.1538vw;
    }
    #gallery ul.gallery-list {
        gap: 4.1025vw 4.48%;
        margin-bottom: 6.1538vw;
    }
    #gallery ul.gallery-list li {
        width: 47.76%;
    }
    #gallery ul.gallery-list li img {
        border-radius: 2.0512vw;
    }
}