@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');



/*-----------------------------
　変数
-----------------------------*/
:root {
    --default-font-color:#333333;
    --main-color: #3B1E89;
    --fontfamily01:"Noto Sans JP", serif;
    --fontfamily02:"Zen Maru Gothic", serif;
    --fontfamily03:"Lexend", sans-serif;
    --fontfamily04:"Yuji Syuku", serif;
    --default-lineheight: 1.8em;
}
.noto {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-style: normal;
}
.maru {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-style: normal;
}
.lexend {
     font-family: "Lexend", sans-serif;
     font-optical-sizing: auto;
     font-weight: 500;
     font-style: normal;
}
.yuji {
    font-family: "Yuji Syuku", serif;
    font-weight: 400;
    font-style: normal;
}

/*-------------------------------------*/
/*　　　 　　　　共通パーツ　　　　　　　*/
/*-------------------------------------*/
.job_descriptions a,
.entry a {
    white-space: nowrap;
    display: block;
    padding: 1em;
    width: 200px;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
    transition: .3s;
    font-size: 16px!important;
}
.entry a {
    background-color: #FFD700;
    color: var(--default-font-color);
    font-weight: 500;
    border: 2px solid #FFD700;
}
.job_descriptions a {
    background-color: #3B1E89;
    color: #fff;
    border: 2px solid #3B1E89;
}
.job_descriptions a:hover,
.entry a:hover {
    transition: .3s;
    opacity: 1!important;
    background-color: #fff;
}
.job_descriptions a:hover {
    color: #3B1E89;
}


/*矢印*/
.arrow_be a,
.arrow_af a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    width: 250px;
    padding: 1em;
    border-radius: 50px;
    box-shadow: 0 0 10px #00000017;
    transition: .3s;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
}
.arrow_be a::before,
.arrow_af a::after {
    font-family: FontAwesome;
    content: "\f054";
    font-size: 8px;
    background: #FFD700;
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    transition: .3s;
}
.arrow_be a:hover,
.arrow_af a:hover {
    opacity: 1!important;
    transition: .3s;
    box-shadow: 0 0 5px #0000000d;
}
.arrow_be a:hover::before,
.arrow_af a:hover::after {
    transform: translateX(3px);
    transition: .3s;
}


/*ーーータイトルの背景が伸びるアニメーションーーー*/
.title_animation span {
     color: transparent;
     display: block;
     position: relative;
     z-index: 2;
     width: fit-content !important;
     overflow: hidden;
     white-space: nowrap;
}
.title_animation.visible span {
    -webkit-animation: show_ani 1.2s forwards;
    animation: show_ani 1.2s forwards;
}
.title_animation span::before {
     position: absolute;
     top: 0px;
     bottom: 0px;
     left: 0px;
     right: 0px;
     transform: translate3d(-100%, 0px, 0px);
     z-index: -1;
     content: "";
    /*background: #000;*/
}
.title_animation.visible span::before {
    -webkit-animation: intro_ani 1.2s cubic-bezier(1,0,0,1);
    animation: intro_ani 1.2s cubic-bezier(1,0,0,1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes show_ani {
    30% {
        color: transparent;
    }
    100% {
        color: #fff;
    }
}
@keyframes intro_ani {
    0% {
        -webkit-transform: translate3d(-102%, 0, 0);
        transform: translate3d(-102%, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


/*ーーー１文字ずつしたから出るアニメーションーーー*/
.space{
    height: 100vh;
}

/*text animetions*/
@keyframes showTextFromBottom{
    0%{
        transform: translateY( 100% );
    }
    100%{
        transform: translateY( 0px );
    }
}
.anime-up.displayed span{
    animation: showText 1s backwards;
    display: inline-block;
}
.anime-up.displayed > span{
    overflow: hidden;
}
.anime-up.displayed > span > span{
    animation: showTextFromBottom 0.5s backwards;
}

/*ーーーふわっと表示ーーー*/
.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*-----------------------------
　全体
-----------------------------*/
html {
    height: 100%;
}
.MainContent {
    padding-top: 0 !important;
}
body {
    font-family: var(--fontfamily01);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(16px, 3vw, 20px);
    line-height: var(--default-lineheight);
    color: var(--default-font-color);
    background-color: unset;
    letter-spacing: .12em;
    font-feature-settings: "palt";
    max-width: 2560px;
    margin: 0 auto;
    counter-reset: number 0;
}
@media (min-width: 768px) {
    .main .none_430 {
        display: none;
    }
}
@media (max-width: 991px) {
    body {
        font-size: 15px;
    }
}
@media (max-width: 430px) {
    body {
        font-size: 14px;
    }
}
p {
    margin: 0px;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
.container {
    padding: 0;
    width: 100%;
}
.row {
    margin-right: 0;
    margin-left: 0;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-right: 0px;
    padding-left: 0px;
}
@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: none;
    }
}
.caret {
    display: none;
}
.layout_row::before,
.layout_row::after {
    display: none;
}
img {
    width: 100%;
    display: block;
}
ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
a {
    display: inline-block;
    width: fit-content;
    color: var(--default-font-color);
    transition: .3s;
}
a:before, a:after {
    transition: .2s;
}
a:active, a:visited, a:focus, a:hover {
    text-decoration: none !important;
    outline: none;
}
a:hover, a:focus {
    opacity: .7;
    color: unset;
    transition: .3s;
}
hr {
    margin: 0;
}
content {
    padding-top: 0!important;
    overflow: hidden;
}

header h1 {
    font-size: 1em;
}

.full_width > .full_box {
    max-width: 1920px;
    margin: 0 auto!important;
}

@media (min-width: 1200px) {
    .container {
        width: unset;
    }
}
@media (min-width: 992px) {
    .container {
        width: unset;
    }
}
@media (min-width: 768px) {
    .container {
        width: unset;
    }
}
.container {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}
/*ドロップダウン設定*/
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: unset;
}
.dropdown-toggle {
    pointer-events: none;
}
.dropdown-toggle:hover {
    opacity: 1!important;
}

/*-----------------------------
　ナビ再設定
-----------------------------*/
.open > .dropdown-menu {
    display: none;
}
header .navbox {
    position: relative;
}
.navbar-nav {
    float: none;
    margin: 0;
}
.navbar-nav > li {
    float: none;
}
header .container>.navbar-collapse {
    margin: 0;
    padding: 0;
}
header .navbar-nav > li > a {
    position: relative;
    color: var(--default-font-color);
    display: block;
}
footer .navbar-nav > li > a {
    padding: 0;
    position: relative;
    display: block;
    transition: .2s;
    margin: 16px .2em;
    white-space: nowrap;
}
footer .nav > li > a:hover, footer .nav > li > a:hover {
    background-color: transparent;
    opacity: .4;
}
.navbar-collapse.collapse {
    display: block!important;
    height: auto!important;
    border-top: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}
.navbar-header {
    display: none;
}





