@charset "UTF-8";

body {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-family: "Zen Old Mincho", serif, YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", sans-serif;
    min-width: auto;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior-y: none;
}

/* html,
body {
    overflow-x: hidden;
} */

a {
    text-decoration: none;
    color: #215BF3;
    opacity: 1;
}

a,
a img {
    transition: all 300ms 0s ease;
}

a:hover {
    opacity: 0.6;
    color: #000;
}

a:hover img {
    opacity: .6;
}

a:focus,
*:focus {
    outline: none;
}

.underline {
    text-decoration: underline;
}

p {
    text-align: left;
    line-height: 1.8;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
}


/*******************************
CommandCss
*******************************/
#wrap {
    position: relative;
}

.builder {
    width: 90%;
    max-width: 1132px;
    margin: 0 auto;
}

/*---fontStyle---*/
.bold {
    font-weight: bold;
}

/*---textLayout---*/
.txtright {
    text-align: right;
}

.txtleft {
    text-align: left;
}

.txtcenter {
    text-align: center;
}

ul.list-style-indent li {
    padding-left: 1em;
    text-indent: -1em;
    margin: 10px 0;
}

/*---layout---*/
.wrap-common {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.pc {
    display: block;
}

/*width 1024pxまで表示*/
.tablet {
    display: block;
}

/*width 768pxまで表示*/
.sp {
    display: none;
}

/*width 768pxから表示*/

/*---Flex---*/
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex.col2,
.flex.col3,
.flex.col4 {
    flex-wrap: nowrap;
    margin-right: -20px;
}

.flex.col2 .item,
.flex.col3 .item,
.flex.col4 .item {
    padding-right: 20px;
}

.flex.col2 .item {
    width: 50%;
}

.flex.col3 .item {
    width: 33.333%;
}

.flex.col4 .item {
    width: 25%;
}


/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
    .wrap-common {
        max-width: none;
        margin: 0 auto;
    }

}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .tablet {
        display: none;
    }

    .sp {
        display: block;
    }

    /*---Flex---*/
    .flex.col2,
    .flex.col3,
    .flex.col4 {
        flex-wrap: wrap;
    }

    .flex.col2 .item,
    .flex.col3 .item,
    .flex.col4 .item {
        width: 100%;
    }

}


/*******************************
LoadingCss
*******************************/
#loading {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #fff;
    opacity: 1.0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#loading .ball {
    border-radius: 100%;
    margin: 2px;
    border: 2px solid #000;
    border-bottom-color: transparent;
    height: 26px;
    width: 26px;
    display: inline-block;
    -webkit-animation: rotate .75s 0s linear infinite;
    animation: rotate .75s 0s linear infinite;
    position: absolute;
    top: 50%;
    left: 47%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


/*******************************
BtnCss
*******************************/

.entry-btn {
    padding: 10px 40px;
    background: #3b8fe8;
    font-family: "Marcellus", serif;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 2px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.entry-btn:hover {
    background: #fff;
    color: #3b8fe8;
    opacity: 1;
}


.link-btn {
    display: inline-block;
    padding: 20px 65px;
    background: #3b8fe8;
    font-family: "Marcellus", serif;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 2px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.link-btn:hover {
    background: #fff;
    color: #3b8fe8;
    opacity: 1;
}

.link-btn-w {
    display: inline-block;
    padding: 20px 65px;
    background: #fff;
    font-family: "Marcellus", serif;
    color: #0F9A27;
    font-size: 16px;
    letter-spacing: 2px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.link-btn-w:hover {
    background: #0F9A27;
    color: #fff;
    opacity: 1;
}

.link-btn-w.blue {
    position: relative;
    display: inline-block;
    padding: 20px 65px;
    background: #fff;
    font-family: "Marcellus", serif;
    color: #0090E6;
    font-size: 16px;
    letter-spacing: 2px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.link-btn-w.blue:hover {
    background: #0090E6;
    color: #fff;
    opacity: 1;
}

.link-btn-w.out {
    position: relative;
    display: inline-block;
    padding: 20px 65px;
    background: #fff;
    font-family: "Marcellus", serif;
    color: #0090E6;
    font-size: 16px;
    letter-spacing: 2px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.link-btn-w.out:hover {
    background: #0090E6;
    color: #fff;
    opacity: 1;
}

.link-btn-w.out::after {
    content: "";
    width: 12px;
    height: 10px;
    background-image: url(../img/common/outlink_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: calc(50% - 5px);
}

.link-btn-green {
    display: inline-block;
    padding: 20px 65px;
    background: #0F9A27;
    font-family: "Marcellus", serif;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.link-btn-green:hover {
    background: #fff;
    color: #0F9A27;
    opacity: 1;
}

#pagetop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 2;
}

#pagetop span {
    color: #fff;
    background: #0090E6;
    font-family: "Marcellus", serif;
    padding: 10px 30px;
    cursor: pointer;
}

#pagetop span::after {
    content: "";
    width: 13px;
    height: 8px;
    background-image: url(../img/common/pagetop_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-left: 10px;
    vertical-align: 1px;
}

@media screen and (max-width: 768px) {
    .entry-btn {
        padding: 7px 20px;
        font-size: 13px;
        letter-spacing: 2px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: background 0.25s ease, transform 0.2s ease;
    }

    .entry-btn:hover {
        background: #fff;
        color: #3b8fe8;
    }

    #pagetop {
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 2;
    }

    #pagetop span {
        display: block;
        width: 100vw;
        color: #fff;
        background: #0090E6;
        font-family: "Marcellus", serif;
        line-height: 1em;
        padding: 10px 0px;
        cursor: pointer;
    }

}


/*******************************
HeaderCss
*******************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 20px 3vw;
    z-index: 100;
    overflow: hidden;
    background: #fff;
}

.home header {
    background: none;
}

header .layout {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .layout h1 {
    font-size: 14px;
    font-family: "Marcellus", serif;
    display: flex;
    align-items: center;
    margin-right: auto;
}

header .layout h1 img {
    max-width: 220px;
    margin-right: 20px;
}

#spBtn {
    width: 60px;
    height: 40px;
    background-color: #3fa047;
    border: none;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
}

#spBtn.active {
    background-color: #4B4B4B;
}

#spBtn span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26px;
    height: 2px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0.0, 0.2, 1),
        opacity 0.25s ease;
}

#spBtn span:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-5px);
}

#spBtn span:nth-child(2) {
    transform: translate(-50%, -50%) translateY(5px);
}

#spBtn.active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    transition: 0.5s;
}

#spBtn.active span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: 0.5s;
}


#nav {
    position: fixed;
    top: 0;
    right: -50vw;
    z-index: 2;
    height: 100vh;
    min-width: 50vw;
    display: flex;
    flex-direction: column;
    background-color: #0F9A27;
    transition: 0.5s;
}

#nav.active {
    right: 0;
    transition: 0.5s;
}

.nav_wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.nav_content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav_content_wrap {
    width: 40vw;
    text-align: left;
}

.nav_content .nav_list {
    flex-basis: 100%;
    display: flex;
    margin-bottom: 40px;
    margin-left: -2%;
}

.nav_content .nav_list li {
    flex-basis: 23%;
    margin-left: 2%;
    text-align: left;
}

.nav_content .nav_list li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
}

.nav_content .nav_list li:nth-of-type(3) a {
    white-space: nowrap;
    position: relative;
}

.nav_content .nav_list li:nth-of-type(3) a::after {
    content: "";
    width: 12px;
    height: 10px;
    background-image: url(../img/common/outlink.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -20px;
    top: calc(50% - 5px);
}

.nav_content .nav_list2 {
    flex-basis: 100%;
    display: flex;
    margin-left: -2%;
}

.nav_content .nav_list2 li {
    flex-basis: 23%;
    margin-left: 2%;
    text-align: left;
}

.nav_content .nav_list2 li a {
    color: #fff;
}

.nav_content .nav_list2 li ul {
    padding-top: 15px;
    margin-left: -2%;
}

.nav_content .nav_list2 li ul li {
    margin-bottom: 10px;
}

.nav_content .nav_list2 li ul li a {
    font-size: 12px;
}

.nav_footer {
    width: 40vw;
    padding: 24px 0;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
}

.nav_footer>a {
    position: relative;
    color: #fff;
    font-size: 12px;
    margin-right: 50px;
}

.nav_footer>a.outlink::after {
    content: "";
    width: 12px;
    height: 10px;
    background-image: url(../img/common/outlink.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -20px;
    top: calc(50% - 5px);
}

.nav_footer .sns_btns {
    margin-left: auto;
    display: flex;
}

.nav_footer .sns_btns a {
    margin-left: 30px;
    width: 25px;
}


@media screen and (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        padding: 10px 3vw;
        z-index: 100;
        overflow: hidden;
    }

    header .layout {
        position: relative;
        z-index: 3;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .layout h1 {
        max-width: 150px;
        font-size: 10px;
        display: inline-block;
        margin-right: auto;
    }

    header .layout h1 img {
        max-width: 150px;
        margin-right: 0;
    }

    #spBtn {
        width: 40px;
        height: 30px;
    }

    #spBtn span {
        width: 20px;
        height: 2px;
    }

    #spBtn span:nth-child(1) {
        transform: translate(-50%, -50%) translateY(-3px);
    }

    #spBtn span:nth-child(2) {
        transform: translate(-50%, -50%) translateY(3px);
    }

    #nav {
        position: fixed;
        top: 0;
        right: -100vw;
        z-index: 2;
        height: 100vh;
        min-width: 100vw;
    }

    #nav.active {
        right: 0;
        transition: 0.5s;
    }

    .nav_wrap {
        min-height: 100vh;
        display: block;
        padding-top: 100px;
        overflow-y: scroll;
    }

    .nav_content {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .nav_content_wrap {
        width: 80vw;
        text-align: left;
    }

    .nav_content .nav_list {
        display: block;
        margin-left: 0;
        margin-bottom: 0;
    }

    .nav_content .nav_list li {
        margin-left: 0;
        margin-bottom: 5px;
        text-align: left;
    }

    .nav_content .nav_list li a {
        display: inline-block;
        color: #fff;
        font-size: 16px;
    }

    .nav_content .nav_list2 {
        display: block;
        margin-left: 0;
    }

    .nav_content .nav_list2 li {
        margin-left: 0;
        margin-bottom: 5px;
    }

    .nav_content .nav_list2 li a {
        color: #fff;
        font-size: 16px;
    }

    .nav_content .nav_list2 li ul {
        padding: 5px 0 15px;
        margin-left: -2%;
        display: flex;
        flex-wrap: wrap;
    }

    .nav_content .nav_list2 li ul li {
        flex-basis: 48%;
        margin-left: 2%;
        margin-bottom: 5px;
    }

    .nav_content .nav_list2 li ul li a {
        font-size: 12px;
    }

    .nav_footer {
        width: 80vw;
        padding: 24px 0;
        margin: 0 auto;
        display: block;
    }

    .nav_footer>a {
        display: inline-block;
        position: relative;
        color: #fff;
        font-size: 12px;
        margin-right: 30px;
    }

    .nav_footer .sns_btns {
        margin: 0 auto;
        display: flex;
        padding-top: 20px;
    }

    .nav_footer .sns_btns a {
        margin-right: 15px;
        margin-left: 0;
        width: 25px;
    }
}


/*******************************
footer Css
*******************************/

#footer_contact {
    position: relative;
    z-index: 1;
    background-image: url(../img/common/footer_contact_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 150px 0 120px;
}

#footer_contact ul.contact_btns li {
    max-width: 580px;
    margin-bottom: 30px;
}

#footer_contact ul.contact_btns li a {
    display: block;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 40px 80px;
    text-align: left;
    color: #000;
    font-family: "Marcellus", serif;
    font-size: 16px;
}

#footer_contact ul.contact_btns li a:hover {
    background: #0090E6;
    color: #fff;
    opacity: 1;
}

#footer_contact ul.contact_btns li a::after {
    content: "";
    width: 57px;
    height: 57px;
    background-image: url(../img/common/arrow_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#footer_contact ul.contact_btns li a.entry {
    padding: 60px 80px;
    font-size: 40px;
}

#footer_contact ul.contact_btns li a span {
    display: block;
    font-family: "Zen Old Mincho", serif;
    font-size: 26px;

}

footer {
    position: relative;
    z-index: 1;
    background-color: #0090E6;
    padding: 100px 0 50px;
}

footer .layout {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

footer .layout .item:nth-of-type(1) {
    flex-basis: 33%;
}

footer .layout .item:nth-of-type(1) img {
    border-radius: 50px 0 50px 0;
}

footer .layout .item:nth-of-type(2) {
    flex-basis: 55%;
}

footer .logo_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 0;
    padding-top: 30px;
    margin-bottom: 100px;
}

footer .logo_area .footer_logo {
    flex-basis: 100%;
}

footer .logo_area .footer_logo img{
    width: 100%;
    max-width: 385px;
}

footer .logo_area .footer_logo span {
    color: #fff;
    display: inline-block;
    position: relative;
    margin-top: 15px;
}

footer .logo_area .footer_logo span::after {
    content: "";
    width: 12px;
    height: 10px;
    background-image: url(../img/common/outlink.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -20px;
    top: calc(50% - 5px);
}

footer .sns_btns {
    padding-top: 10px;
    flex-basis: 100%;
    margin-left: auto;
    display: flex;
    justify-content: center;
}

footer .sns_btns a {
    margin-left: 30px;
    width: 30px;
}

footer .fooer_address {
    text-align: left;
}

footer .fooer_address a,
footer .fooer_address span {
    color: #fff;
    font-size: 12px;
    margin-right: 30px;
}

footer .fooer_address span{
    font-family: Marcellus;
    letter-spacing: 0.05em;
}


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

    #footer_contact {
        position: relative;
        z-index: 1;
        background-image: url(../img/common/footer_contact_bg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        padding: 60px 0 30px;
    }

    #footer_contact ul.contact_btns li {
        margin-bottom: 30px;
    }

    #footer_contact ul.contact_btns li a {
        padding: 30px 40px;
        font-size: 16px;
    }


    #footer_contact ul.contact_btns li a::after {
        width: 30px;
        height: 30px;
    }

    #footer_contact ul.contact_btns li a.entry {
        padding: 40px 40px;
        font-size: 36px;
    }

    #footer_contact ul.contact_btns li a span {
        display: block;
        font-family: "Zen Old Mincho", serif;
        font-size: 24px;

    }

    footer {
        padding: 40px 0 60px;
    }

    footer .layout {
        display: block;
        margin-bottom: 40px;
    }

    footer .layout .item:nth-of-type(1) {
        display: none;
    }

    footer .layout .item:nth-of-type(2) {
        flex-basis: 55%;
    }

    footer .logo_area {
        display: block;
        padding-top: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    footer .logo_area .footer_logo {
        width: 300px;
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    footer .logo_area .footer_logo span {
        margin-top: 10px;
    }

    footer .logo_area .footer_logo span::after {
        content: "";
        width: 12px;
        height: 10px;
        background-image: url(../img/common/outlink.png);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        right: -20px;
        top: calc(50% - 5px);
    }

    footer .sns_btns {
        padding-top: 10px;
        margin-left: 0 auto;
        display: flex;
        justify-content: center;
    }

    footer .sns_btns a {
        margin: 0 15px;
        width: 30px;
    }

    footer .nav_content {
        display: none;
    }

    footer .fooer_address {
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        gap: 20px 0;
    }

    footer .fooer_address a,
    footer .fooer_address span {
        display: block;
        color: #fff;
        font-size: 12px;
        margin-right: 0;
    }

    footer .fooer_address a{
        order: 1;
    }

    footer .fooer_address span{
        order: 2;
    }

}

@media screen and (max-width: 480px) {
    #footer_contact {
        padding: 40px 25% 30px 0;
        background-position: top 0 right 36%;
    }

    #footer_contact ul.contact_btns li {
        margin-bottom: 10px;
    }

    #footer_contact ul.contact_btns li a {
        padding: 20px 30px;
        font-size: 14px;
    }

    #footer_contact ul.contact_btns li a::after {
        right: 20px;
    }

    #footer_contact ul.contact_btns li a span {
        font-size: 20px;
    }

    #footer_contact ul.contact_btns li a.entry {
        padding: 20px 30px;
        font-size: 30px;
        letter-spacing: .05em;
    }
}



/*******************************
pages common Css
*******************************/
.clumb ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-left: auto;
    padding: 15px 0;
}

.clumb ul li {
    font-size: 12px;
}

.clumb ul li a {
    color: #000;
    position: relative;
    display: block;
    padding-right: 20px;
}

.clumb ul li a::after {
    content: "";
    width: 7px;
    height: 11px;
    background-image: url(../img/common/clumb_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 8px;
    top: calc(50% - 5px);
}

#pages_hero {
    display: block;
    margin-top: 90px;
    background-image: url(../img/common/under_herobg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#pages_hero .builder {
    text-align: left;
    padding: 150px 0 150px;
}

#pages_hero h2 {
    display: inline-block;
    font-family: "Marcellus", serif;
    font-size: 20px;
    color: #fff;
}

#pages_hero h2 span {
    display: block;
    padding: 5px 30px;
    font-family: "Zen Old Mincho", serif;
    font-size: 60px;
    color: #000;
    background: #fff;
    border-radius: 10px 0 10px 0;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    #pages_hero {
        margin-top: 70px;
    }

    #pages_hero .builder {
        text-align: center;
        padding: 60px 0;
    }

    #pages_hero h2 {
        font-size: 14px;
    }

    #pages_hero h2 span {
        font-size: 30px;
    }
}


/* youtube */
.youtubefix {
    max-width: 100%;
}

.youtubefix iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* ここで比率指定 */
    height: auto;
    border: 0;
}

/* staff list*/
.staff_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8%;
}

.staff_list li {
    flex-basis: 42%;
    margin-left: 8%;
    position: relative;
    text-align: left;
    margin-bottom: 80px;
}

.staff_list.col3 {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
}

.staff_list.col3 li {
    flex-basis: 28%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    position: relative;
    text-align: left;
    margin-bottom: 80px;
}

.staff_list li .img img {
    border-radius: 50px 0 50px 0;
}

.staff_list li .catch {
    display: block;
    position: absolute;
    top: -30px;
    right: 0px;
    text-align: left;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.staff_list li .catch span {
    display: inline-block;
    background-color: #0090E6;
    color: #fff;
    font-size: 24px;
    padding: 10px 5px;
    white-space: nowrap;
}

.staff_list li .name {
    display: block;
    border-left: 3px solid #fff;
    color: #fff;
    padding: 0 0 0 10px;
    font-size: 24px;
    margin: 15px 0 10px;
}

.staff_list.col3 li .name {
    border-left: 3px solid #0090E6;
    color: #000;
}

.staff_list li .years {
    color: #fff;
}

.staff_list.col3 li .years {
    color: #000;
}


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

    .staff_list li {
        margin-bottom: 60px;
    }

    .staff_list.col3 {
        display: flex;
        flex-wrap: wrap;
        margin-left: -8%;
    }

    .staff_list.col3 li {
        flex-basis: 42%;
        margin-left: 8%;
        margin-right: 0;
        position: relative;
        text-align: left;
        margin-bottom: 60px;
    }


    .staff_list li .img img {
        border-radius: 30px 0 30px 0;
    }

    .staff_list li .catch span {
        font-size: 12px;
    }

    .staff_list li .name {
        display: block;
        border-left: 3px solid #fff;
        color: #fff;
        padding: 0 0 0 10px;
        font-size: 16px;
        margin: 15px 0 10px;
    }

}

/*******************************
ScrollMagic アニメーション
*******************************/
/*フェードイン*/
.js-scroll-fade {
    position: relative;
    opacity: 0;
    transform: translate(0, 100px);
    -webkit-transform: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    -webkit-transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
}

.js-scroll-fade.is-animation {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

@-webkit-keyframes fade {
    100% {
        opacity: 1;
    }
}

@keyframes fade {
    100% {
        opacity: 1;
    }
}

/*ダウン フェードイン*/
.js-scroll-fade-down {
    position: relative;
    opacity: 0;
    transform: translate(0, -100px);
    -webkit-transform: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    -webkit-transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
}

.js-scroll-fade-down.is-animation {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

@-webkit-keyframes fade {
    100% {
        opacity: 1;
    }
}

@keyframes fade {
    100% {
        opacity: 1;
    }
}

/*左 フェードイン*/
.js-scroll-fade-left {
    opacity: 0;
    z-index: 2;
    transform: translate3d(-200px, 0, -1px);
    -webkit-transform: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    -webkit-transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
}

.js-scroll-fade-left.over {
    z-index: 1;
    -webkit-transform: translate3d(-200px, 0, -2px);
    transform: translate3d(-200px, 0, -2px);
}

.js-scroll-fade-left.is-animation {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, -1px);
    transform: translate3d(0, 0, -1px);
}

.js-scroll-fade-left.over.is-animation {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, -2px);
    transform: translate3d(0, 0, -2px);
}

@-webkit-keyframes fade {
    100% {
        opacity: 1;
    }
}

@keyframes fade {
    100% {
        opacity: 1;
    }
}

/*右 フェードイン*/
.js-scroll-fade-right {
    opacity: 0;
    z-index: 2;
    transform: translate3d(200px, 0, -1px);
    -webkit-transform: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    -webkit-transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
    transition: all 1s cubic-bezier(0.155, 0.910, 0.695, 0.950);
}

.js-scroll-fade-right.over {
    z-index: 1;
    -webkit-transform: translate3d(200px, 0, -2px);
    transform: translate3d(200px, 0, -2px);
}

.js-scroll-fade-right.is-animation {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, -1px);
    transform: translate3d(0, 0, -1px);
}

.js-scroll-fade-right.over.is-animation {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, -2px);
    transform: translate3d(0, 0, -2px);
}

@-webkit-keyframes fade {
    100% {
        opacity: 1;
    }
}

@keyframes fade {
    100% {
        opacity: 1;
    }
}