@charset "UTF-8";
/*====================================================================================
■00.Object
 ├ _00_1 layout
 ├ _00_2 animation
 └ _00_3 OverLayerConfig
■01.page-index

====================================================================================*/
/*====================================================================================
■00.Object
====================================================================================*/
/* _00_1 layout
-------------------------------------------------------------------- */
.page-index .l-container {
    max-width: 1040px;
}

/* _00_2 animation
-------------------------------------------------------------------- */
.l-loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
}

.l-loader .text {
    display: none;
    height: 22px;
    margin-right: 5px;
    opacity: 0;
    -webkit-animation: text 1s ease-out 1 1s normal forwards;
    animation: text 1s ease-out 1 1s normal forwards;
}

.l-loader.is-initialVisit .text {
    display: block;
}

@-webkit-keyframes text {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes text {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.l-loader .text2 {
    display: none;
    height: 22px;
    opacity: 0;
    -webkit-animation: text2 1s ease-out 1 2s normal forwards;
    animation: text2 1s ease-out 1 2s normal forwards;
}

.l-loader.is-initialVisit .text2 {
    display: block;
}

@-webkit-keyframes text2 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes text2 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* _00_3 OverLayerConfig
-------------------------------------------------------------------- */
.l-loader {
    z-index: 10000;
}

.l-loader.is-visited {
    z-index: 100;
}

/*====================================================================================
■01.page-index
====================================================================================*/
/* ---------------------------------------------------------------------------------------------------------
content_Layout

_00. component
 ├ _00_1 ttl
 ├ _00_2 hdg
 └ _00_3 mod
_01. mainImg
_02. lede
_03. service
_04. works
_05. recruit
_06. news
_07. company
_0*. ***
 ├ _0*_* ***
 ├ _0*_* ***
 └ _0*_* ***

 */
/* -----------------------------------------------------------------------------------
_00. component
----------------------------------------------------------------------------------- */
/* _00_1 ttl
-------------------------------------------------------------------- */
.ttl-topCommon {
    margin-bottom: 30px;
}

/* _00_2 hdg
-------------------------------------------------------------------- */
[class*="hdg-topCommon"] > * {
    line-height: 1;
}

[class*="hdg-topCommon"]:not([class*="hdg-topCommon__"]) {
    font-size: 2.2rem;
    line-height: 0;
}

@media (min-width: 768px) {
    [class*="hdg-topCommon"]:not([class*="hdg-topCommon__"]) {
        font-size: 2.4rem;
    }
}

.hdg-topCommon--blue {
    color: #1d2b59;
}

.hdg-topCommon--white {
    color: #fff;
}

[class*="hdg-topCommon__ruby"] {
    font-size: 1.4rem;
    display: inline-block;
    letter-spacing: 1px;
}

.hdg-topCommon__ruby--en {
    margin-bottom: 20px;
}

.hdg-topCommon__ruby--jp {
    margin-top: 10px;
}

/* _00_3 mod
-------------------------------------------------------------------- */
[class*="mod-section"] {
    margin-top: 45px;
}

@media (min-width: 768px) {
    [class*="mod-section"] {
        margin-top: 90px;
    }
}

.mod-section--bar {
    padding-top: 45px;
    padding-bottom: 45px;
}

@media (min-width: 768px) {
    .mod-section--bar {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

/* -----------------------------------------------------------------------------------
_01. mainImg
----------------------------------------------------------------------------------- */
.mainImgWrap {
    margin-bottom: 30px;
}

[class*="slider__item"] {
    height: 60vh !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    outline: none;
}

@media (min-width: 768px) {
    [class*="slider__item"] {
        height: calc(100vh - 60px) !important;
        min-height: 870px !important;
    }
}

@media (min-width: 1025px) {
    [class*="slider__item"] {
        background-size: 2200px;
    }
}

.slider__item01 {
    background-image: url(../images/mainImg01.png);
}

.slider__item03 {
    background-image: url(../images/mainImg03.png);
}

.slider__item04 {
    background-image: url(../images/mainImg04.png);
}
.slider__item05 {
    background-image: url(../images/mainImg05.png);
}

.slider__item06 {
    background-image: url(../images/mainImg06.png);
}

.slick-slide .slider__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    left: 20px;
    top: 50%;
    z-index: 1;
}

@media (min-width: 768px) {
    .slick-slide .slider__text {
        right: 0;
        left: 0;
    }
}

@media (min-width: 768px) {
    .slick-slide .slider__text img {
        width: auto;
        height: auto;
    }
}

.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 36px;
    right: 40px;
}

.slick-dots li button {
    font-size: 0;
    width: 60px;
    height: 5px;
    display: block;
    background-color: #fff;
}

.slick-dots li.slick-active button {
    background-color: #1d2b59;
}

.slick-dots li + li {
    margin-left: 10px;
}

/* -----------------------------------------------------------------------------------
_02. lede
----------------------------------------------------------------------------------- */
.ledeWrap {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url(../images/bg-lede--sp.png);
    margin-top: 0;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .ledeWrap {
        background-image: url(../images/bg-lede.png);
        margin-bottom: 40px;
    }
}

.ledeWrap .hdg-topCommon {
    text-align: center;
}

.ledeWrap .hdg-topCommon__ruby {
    font-weight: bold;
}

/* -----------------------------------------------------------------------------------
_03. service
----------------------------------------------------------------------------------- */
.serviceWrap {
    padding-top: 45px;
}

@media (min-width: 768px) {
    .serviceWrap {
        padding-top: 90px;
    }
}

[class*="mod-service"]:not([class*="mod-service__"]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    [class*="mod-service"]:not([class*="mod-service__"]) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    [class*="mod-service"]:not([class*="mod-service__"]):nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

[class*="mod-service"]:not([class*="mod-service__"]) + [class*="mod-service"]:not([class*="mod-service__"]) {
    margin-top: 30px;
}

@media (min-width: 768px) {
    [class*="mod-service"]:not([class*="mod-service__"]) + [class*="mod-service"]:not([class*="mod-service__"]) {
        margin-top: 80px;
    }
}

.mod-service__ttl {
    margin-bottom: 30px;
}

.mod-service__ttl img {
    max-height: 53px;
}

@media (min-width: 768px) {
    .mod-service__ttl img {
        max-height: none;
        width: auto;
    }
}

.mod-service__ttl--sub {
    font-weight: bold;
    font-size: 1.6rem;
}

.mod-service__content {
    background-color: #1d2b59;
    color: #fff;
    position: relative;
    margin-right: 40px;
    padding-top: 30vw;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
}

@media (min-width: 768px) {
    .mod-service__content {
        margin-right: 0;
        padding-top: 60px;
        padding-right: 80px;
        padding-bottom: 60px;
        padding-left: 40px;
    }
}

@media (min-width: 1025px) {
    .mod-service__content {
        padding-left: 120px;
        width: 70%;
    }
}

.mod-service__img {
    margin-left: 40px;
    margin-bottom: -25vw;
    position: relative;
    z-index: 1;
    min-width: 50%;
}

@media (min-width: 768px) {
    .mod-service__img {
        margin-top: -40px;
        margin-left: -40px;
        margin-bottom: 40px;
        min-width: 50%;
    }
}

@media (min-width: 1025px) {
    .mod-service__img {
        min-width: auto;
    }
}

.mod-service__img img {
    width: 100%;
}

[class*="mod-service"]:not([class*="mod-service__"]):nth-child(even) .mod-service__img {
    margin-right: 40px;
    margin-left: 0;
}

@media (min-width: 768px) {
    [class*="mod-service"]:not([class*="mod-service__"]):nth-child(even) .mod-service__img {
        margin-right: -40px;
    }
}

[class*="mod-service"]:not([class*="mod-service__"]):nth-child(even) .mod-service__content {
    margin-right: 0;
    margin-left: 40px;
}

@media (min-width: 768px) {
    [class*="mod-service"]:not([class*="mod-service__"]):nth-child(even) .mod-service__content {
        padding-right: 120px;
        padding-left: 80px;
        margin-left: 0;
    }
}

/* -----------------------------------------------------------------------------------
_04. works
----------------------------------------------------------------------------------- */
.worksWrap {
    background-color: #eee;
}

/* -----------------------------------------------------------------------------------
_05. recruit
----------------------------------------------------------------------------------- */
.recruitWrap {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/bg-recruit--sp.png);
}

@media (min-width: 768px) {
    .recruitWrap {
        background-image: url(../images/bg-recruit.png);
    }
}

/* -----------------------------------------------------------------------------------
_06. news
----------------------------------------------------------------------------------- */
.lst-newsList {
    overflow-y: scroll;
    height: 209px;
}

/* -----------------------------------------------------------------------------------
_07. company
----------------------------------------------------------------------------------- */
@media (min-width: 768px) {
    .companyWrap {
        background-color: #1d2b59;
    }
}

.companyWrap .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .companyWrap .row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.company__content {
    padding: 20px;
    margin-right: 30px;
    margin-left: 30px;
    background-color: #1d2b59;
}

@media (min-width: 768px) {
    .company__content {
        padding: 30px;
        margin-right: 0;
        margin-left: 0;
    }
}

.company__img {
    background-image: url(../images/img-company.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
}

.company__img img {
    width: 100%;
}

@media (min-width: 768px) {
    .company__img img {
        display: none;
    }
}

/*# sourceMappingURL=index.css.map */
