@charset "utf-8";
/* 画像保存禁止設定ここから */

img {
    /* PCの右クリック禁止 */
    /* pointer-events: none !important; */
}

img {
    /* SPの長押し禁止 */
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-touch-callout: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
}

@media print {
    body {
        /* 画像の印刷禁止 */
        display: none !important;
    }
}

a[data-lightbox] {
    -webkit-touch-callout: none !important;
    /* iOSの長押し禁止 */
    -webkit-user-select: none !important;
    user-select: none !important;
}

/* 画像保存禁止設定ここまで */

/* 全体ここから */

html {
    margin-top: 0px !important;
}

#staff .pc {
    display: block !important;
}

#staff .sp {
    display: none !important;
}

#staff-top .opa,
#staff .opa {
    transition: 0.4s;
}

#staff-top .opa:hover,
#staff .opa:hover {
    opacity: 0.7;
}

#staff .shadow {
    transition: 0.4;
}

#staff .shadow:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

#staff .bold {
    font-weight: bold;
}

#staff .section .section-inner {
    max-width: 1200px;
    padding: 100px 0;
}

#staff-top.section .section-inner {
    padding: 130px 0 50px;
}

#staff-top.single-staff .section-inner {
    padding: 50px 0 50px;
}

.section::before {
    content: none;
}

/* フェードインここから */

.scrollTriggerFadeIn {
    opacity: 0;
    transform: translateY(40px);
    /* transition: all .8s; */
    transition: all .8s;

    &.isActive {
        opacity: 1;
        transform: translateY(0px);
    }

    /* isActive */
}

/* scrollTriggerFadeIn */

/* UL の時は中身のLIに適応させる */
ul.scrollTriggerFadeIn {
    opacity: 1;
    transform: translateY(0px);

    li {
        opacity: 0;
        transform: translateY(40px);
        /* transition: all .8s; */
        transition: all .8s;
    }

    /* li */

    &.isActive {
        li {
            opacity: 1;
            transform: translateY(0px);

            &:nth-child(1) {
                transition-delay: 0s;
            }

            &:nth-child(2) {
                transition-delay: 0.125s;
            }

            &:nth-child(3) {
                transition-delay: 0.25s;
            }

            &:nth-child(4) {
                transition-delay: 0.375s;
            }

            &:nth-child(5) {
                transition-delay: 0.5s;
            }

            &:nth-child(6) {
                transition-delay: 0.625s;
            }

            &:nth-child(7) {
                transition-delay: 0.75s;
            }

            &:nth-child(8) {
                transition-delay: 0.875s;
            }

            &:nth-child(9) {
                transition-delay: 1s;
            }

            &:nth-child(10) {
                transition-delay: 1.125s;
            }

            &:nth-child(11) {
                transition-delay: 1.25s;
            }

            &:nth-child(12) {
                transition-delay: 1.5s;
            }
        }

        /* li */
    }

    /* isActive */
}

/* フェードインここまで */

@media (max-width: 767px) {
    #staff .section .section-inner {
        padding: 50px 0;
    }

    #staff .pc {
        display: none !important;
    }

    #staff .sp {
        display: block !important;
    }
}

/* 全体ここまで */


/**********************
 ヘッダーここから
 ********************** */

#staff #header.header-sub .header-top {
    background-color: #fff;
    height: 100px;
}

#staff #header.header-sub .header-top .header-top-container {
    max-width: 100%;
    width: 100%;
}

#staff #header.header-sub .header-top .header-top-container .header-logo {
    max-width: 300px;
    width: 100%;
    margin-left: 50px;
}

#staff #header.header-sub .header-top .header-top-container .header-logo img {
    width: 100%;
}

#staff #header.header-sub .header-top .header-top-container .header-nav .insta-logo {
    display: flex;
    align-items: center;
}

#staff #header.header-sub .header-top .header-top-container .header-nav .insta-logo img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

/* ハンバーガーメニューここから */

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
    width: 100px;
    height: 100%;
    position: relative;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background-color: #091138;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 4px;
    background-color: #fff;
    transition: all 0.5s;
}

.hamburger span::before {
    top: -10px;
}

.hamburger span::after {
    bottom: -10px;
}

.hamburger.open span {
    background-color: transparent;
}

.hamburger.open span::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.open span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ===============================================
  メニューのスタイリング
  =============================================== */
.nav {
    position: fixed;
    width: 100%;
    height: auto;
    top: 100px;
    right: -100%;
    background-color: #091138;
    padding: 100px 20px;
    transition: all 0.5s;
}

.nav .nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

.nav .nav__list .nav__item {
    width: 28.9%;
}

.nav__item a {
    display: block;
    font-size: min(30px, 2.34375vw);
    color: #fff;
    text-decoration: none;
    padding: 20px 0 20px 0px;
    text-transform: uppercase;
    border-bottom: 1px dotted #fff;
    font-family: "brandon-grotesque", sans-serif !important;
}

/* .nav__item a:hover {
    color: #091138;
    background-color: #fff;
} */

.nav.open {
    right: 0;
}


@media (min-width: 768px) {
    .nav .nav__list .nav__item:not(:nth-child(3n)) {
        margin-right: 6.6%;
    }

    .nav .nav__list .nav__item:nth-child(n+4) {
        margin-top: 40px;
    }

}

@media (max-width: 1024px) {
    .hamburger {
        width: 50px;
    }

    .hamburger span,
    .hamburger span::after,
    .hamburger span::before {
        width: 15px;
        height: 2px;
    }

    .hamburger span::before {
        top: -5px;
    }

    .hamburger span::after {
        bottom: -5px;
    }

    .nav {
        height: 100svh;
        top: 50px;
        padding: 30px 20px 80px;
    }

    .nav .nav__list {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .nav .nav__list .nav__item {
        width: 100%;
    }

    .nav__item a {
        display: block;
        font-size: 20px;
        color: #fff;
        text-decoration: none;
        padding: 15px 0;
        text-transform: uppercase;
        border-bottom: 1px dotted #fff;
        line-height: 1;
    }

}


/* ハンバーガーメニューここまで */

@media (max-width: 1024px) {

    #header .header-top {
        display: block;
    }

    #staff #header.header-sub .header-top {
        background-color: #fff;
        height: 50px;
    }

    #staff #header.header-sub .header-top .header-top-container .header-logo {
        max-width: 150px;
        width: 100%;
        margin-left: 20px;
    }

    #staff #header.header-sub .header-top .header-top-container .header-nav .insta-logo img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {}

/**********************
 ヘッダーここまで
 ********************** */

/**********************
フッターここから
 ********************** */

/* フッターコンタクト */

#staff-contact .staff-contact-bg {
    position: relative;
}

#staff-contact .staff-contact-bg img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

#staff-contact .contact-box {
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 50px;
    text-align: center;
    background-color: transparent;
    max-width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

#staff-contact .contact-section__ttl {
    padding-top: 0;
    margin-bottom: 40px;
    text-align: center;
}

#staff-contact .contact-section__ttl .section__ttl__main {
    color: #fff;
    font-size: 40px;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

#staff-contact .contact-section__ttl .section__ttl__sub {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    display: block;
}

#staff-contact .contact-box p {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    color: #fff;
}

#staff-contact .contact-box .contact-btn {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

#staff-contact .contact-box .contact-btn a {
    width: calc((100% - 20px) / 2);
}

#staff-contact .contact-box .contact-btn .contact-btn-line-box,
#staff-contact .contact-box .contact-btn .contact-btn-mail-box {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#staff-contact .contact-box .contact-btn .contact-btn-line-box {
    background-color: #fff;
    border-radius: 5px;
}

#staff-contact .contact-box .contact-btn .contact-btn-line-box img {
    width: 40px;
    height: 40px;
}

#staff-contact .contact-box .contact-btn .contact-btn-line-box p {
    color: #333333;
}

#staff-contact .contact-box .contact-btn .contact-btn-mail-box {
    background-color: #2ca6e0;
    border-radius: 5px;
}

#staff-contact .contact-box .contact-btn .contact-btn-mail-box img {
    height: 20px;
    width: auto;
}

#staff-contact .contact-box .contact-btn .contact-btn-mail-box p {
    color: #fff;
}

@media (max-width: 767px) {

    #staff-contact .staff-contact-bg img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    #staff-contact .contact-box {
        padding: 20px;
    }

    #staff-contact .contact-section__ttl {
        padding-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    #staff-contact .contact-section__ttl .section__ttl__main {
        color: #fff;
        font-size: 30px;
        margin-bottom: 5px;
    }

    #staff-contact .contact-section__ttl .section__ttl__sub {
        font-size: 10px;
    }

    #staff-contact .contact-box p {
        font-size: 15px;
        letter-spacing: 0.1em;
        line-height: 1.5;
        color: #fff;
        text-align: left;
    }

    #staff-contact .contact-box .contact-btn {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        flex-direction: column;
    }

    #staff-contact .contact-box .contact-btn a {
        width: 100%;
    }

    #staff-contact .contact-box .contact-btn .contact-btn-line-box,
    #staff-contact .contact-box .contact-btn .contact-btn-mail-box {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    #staff-contact .contact-box .contact-btn .contact-btn-line-box img {
        width: 30px;
        height: 30px;
    }
}

/* ここまで */


.footer-sub #footer-section {
    background-color: #000;
}

.footer-sub #footer-section .section-inner {
    padding: 100px 0;
}

.footer-sub #footer-section .footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-sub #footer-section .footer-wrap .footer-left img {
    max-width: 300px;
    width: 100%;
}

.footer-sub #footer-section .footer-wrap .footer-left p {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.7;
    color: #fff;
    margin-top: 20px;
}

.footer-sub #footer-section .footer-wrap .footer-right .copy {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.7;
    color: #fff;
}

@media (max-width: 767px) {
    .footer-sub #footer-section .section-inner {
        padding: 50px 0 15px;
    }

    .footer-sub #footer-section .footer-wrap {
        flex-direction: column;
        align-items: center;
    }

    .footer-sub #footer-section .footer-wrap .footer-left img {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .footer-sub #footer-section .footer-wrap .footer-left p {
        font-size: 15px;
        line-height: 1.5;
        margin-top: 20px;
    }

    .footer-sub #footer-section .footer-wrap .footer-right .copy {
        font-size: 10px;
        letter-spacing: 0.05em;
        line-height: 1.5;
        color: #fff;
        margin-top: 50px;
    }
}

@media (max-width: 411px) {
    .footer-sub #footer-section .footer-wrap .footer-left p {
        letter-spacing: 0;
    }
}

/**********************
フッターここまで
 ********************** */

/* staff-topここから */

#staff-top .staff-main-ffb {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto 50px;
    display: block;
}

#staff-top.single-staff .staff-main-ffb {
    margin-bottom: 0;
}

#staff-top .staff-main-ffb-sp {
    display: none !important;
}

#staff-top .staff-main-ffb-bottom-sp {
    display: none !important;
}

#staff-top .staff-main-txt {
    margin: 20px auto 50px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

#staff .staff-btn-wrap,
#staff-top .staff-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#staff .staff-btn-wrap .staff-btn-list,
#staff-top .staff-btn-wrap .staff-btn-list {
    width: calc((100% - 80px) / 5);
    position: relative;
}

#staff .staff-btn-wrap .staff-btn-list::before,
#staff-top .staff-btn-wrap .staff-btn-list::before {
    position: absolute;
    content: "";
    border-top: 30px solid transparent;
    border-right: 30px solid var(--staff-color, #2ca6e0);
    width: 0px;
    height: 0px;
    bottom: 0;
    right: 0;
}

@media (max-width: 1024px) {
    #staff-top.section .section-inner,
    #staff-top.single-staff .section-inner {
        padding: 100px 0 50px;
    }
}

@media (max-width: 767px) {
    #staff-top.section .section-inner,
    #staff-top.single-staff .section-inner {
        padding: 75px 0 50px;
    }

    #staff-top .staff-main-ffb {
        display: none !important;
    }

    #staff-top .staff-main-ffb-sp {
        display: block !important;
        width: 100%;
    }

    #staff-top .staff-main-ffb-bottom-sp {
        display: block !important;
        width: 100%;
        margin-top: 20px;
    }

    #staff-top .staff-main-txt {
        margin: 25px auto 15px;
        text-align: left;
        font-size: 15px;
        letter-spacing: 0.1em;
        line-height: 1.5;
    }

    #staff .staff-btn-wrap,
    #staff-top .staff-btn-wrap {
        margin-top: 50px;
    }

    #staff .staff-btn-wrap .staff-btn-list,
    #staff-top .staff-btn-wrap .staff-btn-list {
        width: calc((100% - 40px) / 3);
        position: relative;
    }
}

/* staff-topここまで */

/* パンくずリスト */

#breadcrumb.section .section-inner {
    padding: 0;
}

#breadcrumb-wrap {
    letter-spacing: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
}

#breadcrumb-wrap li {
    display: inline-block;
    font-size: 12px;
    color: #000;
    letter-spacing: 0.05em;
    opacity: 0.7;
    font-weight: 600;
}

#breadcrumb-wrap li::after {
    content: ">";
    display: inline-block;
    margin: 0 0 0 0.5em;
}

#breadcrumb-wrap li:last-child::after {
    content: none;
}

@media (max-width: 767px) {

    #breadcrumb li {
        font-size: 10px;
    }
}

/* パンくずリストここまで */

/* スタッフ一覧ここから */

#staff .staff-list-wrap .staff-list {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 100px;
    align-items: center;
}

#staff .staff-list-wrap .staff-list:last-child {
    margin-bottom: 0;
}

#staff .staff-list-wrap .staff-list .staff-list-right {
    max-width: 330px;
    width: 100%;
}

#staff .staff-list-wrap .staff-list .staff-list-right img {
    width: 100%;
}


#staff .staff-list-wrap .staff-list .staff-list-left span {
    display: inline-block;
    line-height: 1;
}

#staff .staff-list-wrap .staff-list .staff-list-left .member-position {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--staff-color, #2ca6e0);
}

#staff .staff-list-wrap .staff-list .staff-list-left .member-name {
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.1em;
    color: #000000;
    margin: 15px 0;
}

#staff .staff-list-wrap .staff-list .staff-list-left .member-shortname {
    font-size: 20px;
    letter-spacing: 0;
    color: #fff;
    padding: 5px 20px;
    background-color: var(--staff-color, #2ca6e0);
    color: var(--staff-font-color, #fff);
}

#staff .staff-list-wrap .staff-list .staff-list-left .member-title {
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #000;
    margin: 50px 0;
}

/* #staff .staff-list-wrap .staff-list .staff-list-left .staff-more-btn {
    background-color: #000000;
    border-radius: 20px;
    padding: 10px 0;
    width: 200px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0;
    display: block;
    line-height: 1;
} */

.staff-more-btn {
    background-color: #000000;
    border-radius: 20px;
    padding: 10px 0;
    width: 200px;
    text-align: center;
    font-size: 20px;
    color: #ffffff !important;
    font-weight: bold;
    letter-spacing: 0;
    display: block;
    line-height: 1;
}

@media (max-width: 820px) {
    #staff .staff-list-wrap .staff-list .staff-list-left .member-name {
        font-size: 35px;
    }

    #staff .staff-list-wrap .staff-list .staff-list-left .member-shortname {
        font-size: 16px;
    }

    #staff .staff-list-wrap .staff-list .staff-list-left .member-title {
        font-size: 25px;
        margin: 30px 0;
    }

    #staff .staff-list-wrap .staff-list .staff-list-right {
        width: 50%;
    }
}

@media (max-width: 767px) {
    #staff .staff-list-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 50px 20px;
    }

    #staff .staff-list-wrap .staff-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: space-between;
        margin-bottom: 0px;
        align-items: center;
        width: calc((100% - 20px) / 2);
    }

    #staff .staff-list-wrap .staff-list .staff-list-right {
        width: 100%;
    }

    #staff .staff-list-wrap .staff-list .staff-list-left {
        width: 100%;
    }

    #staff .staff-list-wrap .staff-list .staff-list-left .member-position {
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    #staff .staff-list-wrap .staff-list .staff-list-left .member-name {
        font-size: 20px;
        margin: 10px 0;
    }

    #staff .staff-list-wrap .staff-list .staff-list-left .member-shortname {
        font-size: 10px;
        padding: 3px 10px;
    }

    #staff .staff-list-wrap .staff-list .staff-list-left .member-title {
        font-weight: bold;
        font-size: 15px;
        margin: 20px 0 25px;
    }

    /* #staff .staff-list-wrap .staff-list .staff-list-left .staff-more-btn {
        background-color: #000000;
        border-radius: 20px;
        padding: 8px 0;
        width: 100%;
        text-align: center;
        font-size: 15px;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 0;
        display: block;
        line-height: 1;
    } */
    .staff-more-btn {
        background-color: #000000;
        border-radius: 20px;
        padding: 8px 0;
        width: 100%;
        text-align: center;
        font-size: 15px;
        color: #ffffff !important;
        font-weight: bold;
        letter-spacing: 0;
        display: block;
        line-height: 1;
    }
}

/* スタッフ一覧ここまで */


/* シングルページここから */

#staff-single .staff-single-wrap {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

#staff-single .staff-single-txt-wrap {
    flex: 1;
    width: 100%;
}


/* スライダーここから */
.slider-thumbnail .swiper-slide {
    opacity: 1;
    transition: opacity .5s;
    width: calc(100% / 3);
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

/* レイアウトのためのスタイル */
.swiper {
    max-width: 500px;
    width: 100%;
}

.swiper-slide img {
    height: auto;
    width: 100%;
}

#staff-single .staff-single-slide {
    /* background-color: var(--staff-color, #2ca6e0); */
    background-color: #2ca6e0;
    max-width: 500px;
    width: 100%;
    padding: 40px;
}

#staff-single .staff-single-slide .swiper {
    max-width: 500px;
    width: 100%;
    height: 280px;
}

#staff-single .staff-single-slide .slider-thumbnail {
    height: auto !important;
    width: 100%;
    padding: 0 20px;
}

#staff-single .staff-single-slide .slider-thumbnail .swiper-wrapper {
    /* gap: 10px; */
}

#staff-single .staff-single-slide .swiper-slide img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#staff-single .slider-thumbnail .swiper-slide {
    height: 123px;
    width: calc((100% - 10px) / 2) !important;
}

#staff-single .slider-thumbnail .swiper-slide img {
    height: 100%;
}

#staff-single .slide-favorite {
    width: 120px;
    margin: 40px auto 20px;
    display: block;
}

/* 矢印を消す、画像に変更 */
#staff-single .swiper-button-prev,
#staff-single .swiper-button-next {
    height: 40px;
    width: 40px;
}

#staff-single .swiper-button-prev:after,
#staff-single .swiper-button-next:after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
    margin: auto;
}

#staff-single .swiper-button-prev {
    left: 0;
}

#staff-single .swiper-button-next {
    right: 0;
}

/* 前に戻る画像パス */
#staff-single .swiper-button-prev:after {
    background-image: url(../img/staff/arrow_lft.png);
}

/* 次に進む画像パス */
#staff-single .swiper-button-next:after {
    background-image: url(../img/staff/arrow_rig.png);
}

.lb-loader,
.lightbox {
    text-align: center;
    line-height: 0;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translateY(-50%) translateX(-50%) !important;
    position: fixed !important;
}

.lb-outerContainer {
    /* position: relative; */
    *zoom: 1;
    /* width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px; */

    /* Background color behind image.
       This is visible during transitions. */

    /* background-color: white; */

    position: relative;
    width: 600px !important;
    height: auto !important;
    margin: 0 auto;
    display: flex;
    border-radius: 4px;
    background-color: #fff;
    justify-content: center;
}

.lightbox .lb-image {
    display: block;
    height: auto !important;
    width: 100% !important;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;

    /* Image border */
    border: 4px solid white;
}

.lb-container {
    width: 100% !important;
    padding: 20px !important;
    border: 2.5px solid #000 !important;
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 50px !important;
    height: 50px !important;
    background: url(../img/staff/close-new.png) top right no-repeat !important;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    background-size: 50px !important;
    opacity: 1 !important;
    margin-right: -30px !important;

}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    position: absolute !important;
    top: -30px !important;
    left: 50%;
    transform: translateX(-50%);
    width: 600px !important;
    margin: 0 auto !important;
}

.lb-data .lb-details {
    display: none !important;
}


.lightboxOverlay {
    opacity: .65 !important;
}

/* スライダーここまで */


#staff-single .staff-single-txt-wrap span {
    display: inline-block;
    line-height: 1;
}

#staff-single .staff-single-txt-wrap .member-position {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #2ca6e0;
}

#staff-single .staff-single-txt-wrap .member-name {
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.1em;
    color: #000000;
    margin: 15px 0;
}

#staff-single .staff-single-txt-wrap .member-shortname {
    font-size: 20px;
    letter-spacing: 0;
    color: #fff;
    padding: 5px 20px;
    background-color: #2ca6e0;
    color: #fff;
}

#staff-single .staff-single-txt-wrap .member-title {
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #000;
    margin: 50px 0 0;
}

#staff-single .staff-single-txt-wrap .link-wrap {
    display: flex;
    gap: 20px;
    margin: 20px 0 0px;
}

#staff-single .staff-single-txt-wrap .link-wrap a img {
    width: 30px;
    height: 30px;
}

#staff-single .staff-single-txt-wrap p {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0.1em;
    color: #000000;
}

#staff-single .staff-single-txt-wrap .member-detail {
    margin-top: 50px;
}

#staff-single .staff-single-txt-wrap .member_profile-wrap {
    margin-top: 50px;
}

#staff-single .staff-single-txt-wrap .group-title {
    font-size: 30px;
    letter-spacing: 0.1em;
    color: #2ea7e0;
    margin-bottom: 20px;
    line-height: 1;
    font-weight: bold;
}

#staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list {
    padding: 20px;
    border: 3px solid #2ea7e0;
    width: 100%;
}

#staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl {
    display: flex;
    margin-bottom: 10px
}

#staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl:last-child {
    margin-bottom: 0
}

#staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl dt {
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #2ea7e0;
    line-height: 1.3;
    width: 35%;
    margin-right: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

#staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl dd {
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: normal;
    color: #000000;
    line-height: 1.3;
    width: 65%;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

#staff-single .staff-single-txt-wrap .member_message-wrap {
    margin-top: 50px;
}

.gothic {
    font-family: "Zen Kaku Gothic New", sans-serif !important;
}

.brandon {
    font-family: "brandon-grotesque", sans-serif !important;
}

/* WORKSここから */
#staff-works {
    background-color: #f2f2f2;
}

#staff .section__ttl {
    margin-bottom: 50px;
    padding: 0;
    text-align: center;
}

#staff .section__ttl .staff__ttl__en {
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #000000;
    padding-bottom: 20px;
    font-weight: bold;
    font-family: "Zen Kaku Gothic New", sans-serif;
    display: block;
}

#staff .section__ttl .staff__ttl__ja {
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #000000;
    display: block;
}

#staff-works .mockup {
    position: absolute;
    display: inline-block;
    /* margin: 0 10px; */
    z-index: 2;
}

#staff-works .mockup.mockup--pc {
    width: 220px;
    left: 46%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

#staff-works .mockup.mockup--sp {
    width: 55px;
    right: 8%;
    bottom: 0;
    transform: translateY(-30%) translateX(-50%);
}

#staff-works .mockup.mockup--sp .mockup__screen {
    height: 85%;
}

#staff-works .mockup__frame {
    display: block;
    position: relative;
    z-index: 2;
}

#staff-works .mockup__screen {
    position: absolute;
    top: 8%;
    /* PCやスマホの枠に合わせて調整 */
    left: 8%;
    width: 84%;
    height: 70%;
    overflow: hidden;
    z-index: 1;
}

#staff-works .mockup__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#staff-works .works__list .item .item__thumb::before {
    content: none;
}


#staff-works .works__list {
    gap: 40px 20px;
}

#staff-works .works__list .item {
    position: relative;
    max-width: 100%;
    width: calc((100% - 60px) / 4);
    margin: 0;
    /* width: 31%;
    margin: 0 3.5% 0 0; */
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

/* #staff-works .works__list .item:last-child {
    margin-right: 0;
}

#staff-works .works__list .item:nth-child(4n) {
    margin-right: 0;
}

#staff-works .works__list .item:nth-child(4n) {
    margin-right: 0;
} */

#staff-works .works__list .item .item__thumb {
    position: relative;
    width: 100%;
    height: 260px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #FFF;
    /* box-shadow: 5px 1px 10px rgba(153, 153, 153, .3); */
}

#staff-works .works__list .item__cat .cat {
    font-size: 14px;
}

#staff-works .works__list .item__title {
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    color: #000000;
}

#staff-works .staff-more-btn {
    margin: 0 auto;
}

/* WORKSここまで */

/* OTHERここから */

#staff-other .staff-btn-wrap {
    margin-bottom: 50px;
}

#staff-other .staff-more-btn {
    margin: 0 auto;
}

/* OTHERここまで */

@media (max-width: 1200px) and (min-width: 821px) {

    #staff-single .staff-single-slide {
        max-width: 400px;
    }

    #staff-single .staff-single-slide .swiper {
        height: 240px;
    }

    #staff-single .staff-single-slide .slider-thumbnail {
        height: auto;
    }

    #staff-single .slider-thumbnail .swiper-slide {
        height: 103px;
    }

    #staff-works .mockup.mockup--pc {
        width: 180px;
        left: 47%;
    }

    #staff-works .mockup.mockup--sp {
        width: 50px;
        right: 8%;
        bottom: 20px;
        transform: translateY(-30%) translateX(-50%);
    }
}

@media (max-width: 1410px) and (min-width: 1025px) {
    #staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl dt {
        font-size: 17px;
        letter-spacing: 0.05em;
        font-weight: bold;
        color: #2ea7e0;
        line-height: 1.3;
        width: 45%;
        margin-right: 5px;
        font-family: "Zen Kaku Gothic New", sans-serif;
    }

    #staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl dd {
        font-size: 17px;
        letter-spacing: 0.05em;
        font-weight: normal;
        color: #000000;
        line-height: 1.3;
        width: 55%;
        font-family: "Zen Kaku Gothic New", sans-serif;
    }

    #staff-single .staff-single-wrap {
        gap: 50px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    #staff-single .staff-single-wrap {
        flex-direction: column;
    }

    #staff-single .staff-single-slide {
        max-width: 100%;
    }


    #staff-single .staff-single-slide .swiper {
        max-width: 100%;
        width: 100%;
        height: 360px;
        margin: 0;
    }

    #staff-single .staff-single-slide .swiper-slide img {
        height: 100%;
    }

    #staff-single .slider-thumbnail .swiper-slide {
        height: 163px;
    }

    #staff-works .works__list .item .item__thumb {
        height: 200px;
    }
}

@media (max-width: 820px) and (min-width: 768px) {

    #staff-works .mockup.mockup--pc {
        width: 65%;
        left: 46%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
    }

    #staff-works .mockup.mockup--sp {
        width: 20%;
        right: 0%;
        bottom: 0;
        transform: translateY(-50%) translateX(-50%);
    }

    #staff-works .works__list .item__title {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    #staff-single .staff-single-slide {
        padding: 20px;
    }

    #staff-single .staff-single-slide .swiper-slide img {
        height: 216px;
    }

    #staff-single .staff-single-slide .swiper {
        height: auto;
    }

    #staff-single .slide-favorite {
        width: 81px;
        margin: 20px auto 15px;
        display: block;
    }

    #staff-single .staff-single-slide .slider-thumbnail {
        height: auto;
        width: 100%;
        padding: 0 10px;
    }

    #staff-single .slider-thumbnail .swiper-slide img {
        height: 100% !important;
    }

    #staff-single .swiper-button-prev,
    #staff-single .swiper-button-next {
        height: 26.8px;
        width: 26.8px;
        top: 60%;
    }

    #staff-single .slider-thumbnail .swiper-slide {
        height: 108px;
    }

    #staff-single .staff-single-wrap {
        flex-direction: column;
        gap: 50px;
    }

    #staff-single .staff-single-txt-wrap p {
        font-size: 15px;
        line-height: 1.6;
    }

    #staff-single .staff-single-txt-wrap .member-position {
        font-size: 10px;
    }

    #staff-single .staff-single-txt-wrap .member-name {
        font-weight: bold;
        font-size: 30px;
        letter-spacing: 0.1em;
        color: #000000;
        margin: 10px 0;
    }

    #staff-single .staff-single-txt-wrap .member-shortname {
        font-size: 10px;
        padding: 3px 10px;
    }

    #staff-single .staff-single-txt-wrap .member-title {
        font-weight: bold;
        font-size: 20px;
        letter-spacing: 0.05em;
        line-height: 1.375;
        color: #000;
        margin: 20px 0 0;
    }

    #staff-single .staff-single-txt-wrap .link-wrap {
        display: flex;
        gap: 20px;
        margin: 25px 0 0;
    }

    #staff-single .staff-single-txt-wrap .member-detail {
        margin-top: 50px;
    }

    #staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl {
        flex-direction: column;
        margin-bottom: 20px;
    }

    #staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl dt {
        font-size: 15px;
        margin-bottom: 10px;
        width: 100%;
        margin-right: 0;
    }

    #staff-single .staff-single-txt-wrap .member_profile-wrap .member_profile-list dl dd {
        font-size: 15px;
        /* text-indent: 1em; */
        padding-left: 1em;
        width: 100%;
    }

    #staff .section__ttl {
        margin-bottom: 25px;
    }

    #staff .section__ttl .staff__ttl__en {
        font-size: 30px;
        padding-bottom: 10px;
    }

    #staff .section__ttl .staff__ttl__ja {
        font-size: 10px;
    }

    .works__list {
        padding: 0;
    }

    #staff-works .works__list .item {
        width: 100% !important;
        padding: 0;
        margin: 0 0 50px 0;
    }

    /* #staff-works .works__list .item:last-child {
        margin-bottom: 0;
    } */

    #staff-works .works__list .item .item__thumb {
        width: 100%;
        height: 223px;
        margin-bottom: 20px;
        padding: 25px;
        background-color: #FFF;
    }

    #staff-works .mockup.mockup--pc {
        width: 190px;
    }

    #staff-works .mockup.mockup--sp {
        width: 47px;
        right: 15%;
    }

    #staff-works .works__list .item__cat .cat {
        font-size: 10px;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    #staff-works .works__list .item__title {
        font-size: 20px;
    }

    #staff-works .staff-more-btn {
        margin: 0 auto;
        width: 150px;
    }

    #staff-other .staff-btn-wrap {
        margin-bottom: 50px;
        margin: 25px 0 50px;
        justify-content: center;
    }

    #staff-other .staff-more-btn {
        margin: 0 auto;
        width: 150px;
    }

    .lightbox {
        width: 80% !important;
        margin: 0 auto;
        /* top: 50% !important; */
        left: 50% !important;
        transform: translateX(-50%);
        display: block;
        z-index: 10000;
        font-weight: 400;
        outline: 0;
    }

    .lb-outerContainer {
        width: 100% !important;
    }

    .lb-dataContainer {
        width: 100% !important;
        top: -15px !important;
    }

    .lb-data .lb-close {
        background-size: 30px !important;
        opacity: 1 !important;
        margin-right: -15px !important;
        width: 30px !important;
        height: 30px !important;
    }



}

@media (max-width: 390px) {
    #staff-single .staff-single-slide .swiper-slide img {
        height: 196px;
    }

    #staff-single .slider-thumbnail .swiper-slide {
        height: 88px;
    }

    #staff-works .mockup.mockup--sp {
        right: 11%;
    }
}

/* シングルページここまで */