@charset "UTF-8";

/*============================
loading
============================*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    background-color: #fff;
}

.loader,
.loader:after {
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: -30px;
}

.loader {
    position: relative;
    text-indent: -9999em;
    border-top: 5px solid #0077d0;
    border-right: 5px solid #0077d0;
    border-bottom: 5px solid #0077d0;
    border-left: 5px solid #069d7f;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

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

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

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

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

/*============================
ヘッダー
============================*/
#top .siteTitle a,
#top .globalNav > li > a {
    color: #fff;
}

#top .site-header.transform .siteTitle a,
#top .transform .globalNav > li > a {
    color: #222;
}

#top .upper img {
    background: url(../images/common/sns/white_insta_logo.svg)no-repeat center center;
    background-size: 100%;
    width: 36px;
    height: 0;
    padding-top: 36px;
    overflow: hidden;
}

#top .insta a img {
    background-image: url(../images/common/sns/white_insta_logo.svg);
}

#top .fb a img {
    background-image: url(../images/common/sns/white_fb_logo.svg);
}

#top .x a img {
    background-image: url(../images/common/sns/white_x_logo.svg);
}

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

    #top .siteTitle a,
    #top .globalNav > li > a {
        color: #222;
    }
}

/*============================
トップ共通
============================*/

h2 .eng {
    display: block;
}

/*============================
top_img
============================*/
#top_img {
    width: 100%;
    /*装飾の基準*/
    position: relative;
}

.swiper {
    height: 776px;
}

.swiper-wrapper {
    background: #f3f3f3;

}

.swiper-slide {
    /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
}

.slide-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide.slide01 {
    position: relative;

}

/*画像*/
.swiper-slide-active .slide-media img,
.swiper-slide-duplicate-active .slide-media img,
.swiper-slide-prev .slide-media img {
    animation: zoom-in 10s linear 0s 1 normal both;
}

@keyframes zoom-in {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

/*文字*/

h1 {
    width: 1040px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    z-index: 1;
    color: #fff;
    font-size: 46px;
}

h1 .eng {
    font-size: 30px;
    letter-spacing: 0.067em;
    display: block;
    color: #0077d0;
}

/*文字のアニメーション*/

.swiper-slide-active .slide-title,
.swiper-slide-duplicate-active .slide-title,
.swiper-slide-prev .slide-title {
    animation: mv01-fadeIn 1s 0.5s ease-in-out both;
}

@keyframes mv01-fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    .swiper {
        height: calc(100vh - 54px);
    }

    /*文字*/

    h1 {
        width: 90.625%;
        font-size: 24px;
        bottom: 20px;
    }

    h1 .eng {
        font-size: 18px;
        letter-spacing: 0.067em;
        display: block;
        color: #0077d0;
    }

}

/*============================
container
============================*/

.container {
    position: relative;
}

.primary {
    width: 100%;
    float: none;
}

.primary > article {
    padding: 100px 0 100px;
}

.primary .inner {
    width: 1040px;
    margin: auto;
}

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

    .primary > article {
        padding: 50px 0;
    }

    .primary .inner {
        width: 90.625%;
    }
}


/*============================
h2
============================*/

h2 {
    margin-bottom: 50px;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 700;
}

h2 span.eng {
    font-size: 60px;
    color: #0077d0;
    font-weight: 600;
}

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

    h2 {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    h2 span.eng {
        font-size: 40px;
        line-height: 1;
    }
}

/*============================
h3
============================*/

h3 {
    font-size: 18px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    h3 {
        font-size: 16px;
    }
}

/*============================
共通
============================*/

.lead {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

article a.sub_link {
    font-size: 23px;
    font-weight: 700;
    color: #0077d0;
    padding-right: 70px;
    cursor: pointer;
    z-index: 10;
    position: relative;
    display: inline-block;
    margin-top: 50px;
}

article a.sub_link::before {
    content: "";
    width: 40px;
    height: 40px;
    display: block;
    background: #ffd73b;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

article a.sub_link::after {
    content: "";
    width: 40px;
    height: 1px;
    display: block;
    background: #0077d0;
    position: absolute;
    right: 20px;
    top: 50%;
}

article a.sub_link::before,
#blog .inner .box a p span {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

article a.sub_link:hover,
#blog .inner .box a {
    opacity: 1;
}

article a.sub_link:hover::before {
    background: #069d7f;
}

#blog .inner .box a:hover p span {
    color: #069d7f;
}

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

    .lead {
        font-size: 20px;
    }

    article a.sub_link {
        font-size: 18px;
        padding-right: 60px;
        margin-top: 30px;
    }

    article a.sub_link::before {
        width: 30px;
        height: 30px;
    }

    article a.sub_link::after {
        right: 15px;
    }

    article a.sub_link::before,
    #blog .inner .box a p span {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    article a.sub_link:hover::before {
        background: #ffd73b;
    }

    #blog .inner .box a:hover p span {
        color: #0077d0;
    }
}

/*============================
service
============================*/

#service {
    background: #FFFFFF;
    overflow: hidden;
}

#service .inner {
    position: relative;
    overflow: visible;
}

#service .inner::before {
    content: "";
    background: url(../images/home/service/road.png)no-repeat center center;
    background-size: 100%;
    width: 329px;
    height: 755px;
    display: block;
    position: absolute;
    top: -100px;
    left: 170px;
}

#service .bg {
    position: relative;
    z-index: 1;
}

/*左側*/
#service .bg::before {
    content: "";
    background: url(../images/home/service/l_circle.png)no-repeat center center;
    background-size: 100%;
    width: 281px;
    height: 376px;
    display: block;
    position: absolute;
    top: -167px;
    left: -208px;
    z-index: -1;
}

#service .bg::after {
    content: "";
    background: url(../images/home/service/r_circle.png)no-repeat center center;
    background-size: 100%;
    width: 260px;
    height: 260px;
    display: block;
    position: absolute;
    right: -170px;
    bottom: 0;
    z-index: -1;
}

#service .photo {
    width: 500px;
    height: 560px;
    position: absolute;
    top: 0;
    right: 0;
}

#service .text {
    width: 500px;
    padding-top: 15px;
}

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

    /*左側*/
    #service .bg::before {
        width: 141px;
        height: 188px;
        top: -90px;
        left: -100px;
    }

    #service .bg::after {
        width: 130px;
        height: 130px;
        right: -100px;
        bottom: -40px;
    }

    #service .photo {
        width: 100%;
        height: 260px;
        position: static;
        margin-bottom: 20px;
    }

    #service .text {
        width: 100%;
        padding-top: 0;
    }

}

/*============================
works
============================*/

#works {
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 586px;
}

#works .slide_wrap {
    position: absolute;
    top: 226px;
    z-index: 10;
}

#works .photo {
    width: 1040px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#works .inner {
    height: 100%;
    padding: 100px 80px;
    position: relative;
}

#works h2,
#works h2 .eng {
    color: #fff;
    position: relative;
}

#works a.sub_link {
    color: #fff;
    position: absolute;
    top: 100px;
    right: 80px;
    margin-top: 0;
}

#works a.sub_link::after {
    background: #fff;
}

/*流れるスライダー*/

/*IE11対策
-----------------------------*/

_:-ms-lang(x)::-ms-backdrop,
.slide {
    display: -ms-grid;
    overflow: hidden;
}

/*----------------------------*/

.slide_wrap {
    display: flex;
    overflow: hidden;
}

.slide_wrap:not(:last-child) {
    margin-bottom: 40px;
}

.slide_list {
    display: flex;
    list-style: none;
}

.right-to-left {
    animation: infinity-scroll-left 90s infinite linear 0.5s both;
}

/*右から左へ*/

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.slide_item {
    width: 100%;
    min-width: 325px;
    height: 240px;
    border-radius: 40px;
    overflow: hidden;
    margin-right: 40px;
}

.slide_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

    /*このセクションは高さを固定*/
    #works {
        padding-top: 0;
        padding-bottom: 0;
        background: #fff;
        position: relative;
        overflow: hidden;
        height: 384px;
    }

    #works .slide_wrap {
        top: 130px;
    }

    #works .photo {
        width: 100%;
        height: 100%;
    }

    #works .inner {
        padding: 40px 35px;
    }

    #works a.sub_link {
        top: auto;
        right: 35px;
        bottom: 40px;
    }

    .slide_item {
        width: 100%;
        min-width: 240px;
        height: 160px;
        margin-right: 20px;
    }
}


/*============================
recruit
============================*/

#recruit {
    background: #fff;
    position: relative;
    overflow: hidden;
}

#recruit .inner {
    overflow: visible;
}

#recruit::after {
    content: "";
    background: url(../images/home/recruit/road.png)no-repeat center center;
    background-size: 100%;
    width: 502px;
    height: 346px;
    display: block;
    position: absolute;
    left: calc(50% + 90px);
    top: 0;
    bottom: 0;
    margin: auto;
}

#recruit h2 {
    width: 440px;
    margin-left: auto;
}

#recruit .photo {
    width: 560px;
    height: 425px;
    position: absolute;
    top: 0;
    left: 0;
}

#recruit .text {
    width: 440px;
    margin-left: auto;
}

#recruit .bg {
    position: relative;
    z-index: 1;
}

/*左側*/
#recruit .bg::before {
    content: "";
    background: url(../images/home/recruit/l_circle.png)no-repeat center center;
    background-size: 100%;
    width: 260px;
    height: 260px;
    display: block;
    position: absolute;
    top: -50px;
    left: -110px;
    z-index: -1;
}

/*右側*/
#recruit .bg::after {
    content: "";
    background: url(../images/home/recruit/r_circle.png)no-repeat center center;
    background-size: 100%;
    width: 252px;
    height: 243px;
    display: block;
    position: absolute;
    right: -100px;
    bottom: -65px;
    z-index: -1;
}

#recruit .mark {
    position: relative;
}

#recruit .mark::after {
    content: "";
    background: url(../recruit/images/message/mark.png)no-repeat center center;
    background-size: 100%;
    width: 180px;
    height: 11px;
    display: block;
    position: absolute;
    left: 5px;
    bottom: -3px;
    z-index: -1;
}

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

    #recruit::after {
        width: 502px;
        height: 346px;
        left: calc(25% + 90px);
        top: auto;
        bottom: 50px;
        margin: auto;
    }

    #recruit h2 {
        width: auto;
    }

    #recruit .photo {
        width: 100%;
        height: 0;
        padding-top: 60%;
        position: relative;
        margin-bottom: 20px;
    }

    #recruit .photo img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #recruit .text {
        width: 100%;
        margin-left: unset;
    }

    /*左側*/
    #recruit .bg::before {
        width: 130px;
        height: 130px;
        top: 30px;
        left: auto;
        right: -60px;
    }

    /*右側*/
    #recruit .bg::after {
        width: 126px;
        height: 122px;
        right: -70px;
        bottom: 0px;
    }

    #recruit .mark {
        /*流れた時に塊で動くために入れる*/
        display: inline-block;
    }

    #recruit .mark::after {
        content: "";
        background: url(../recruit/images/message/mark.png)no-repeat center center;
        background-size: 100%;
        width: 180px;
        height: 11px;
        display: block;
        position: absolute;
        left: 5px;
        bottom: -3px;
        z-index: -1;
    }
}

/*============================
interview
============================*/

#interview {
    background: linear-gradient(180deg, #fff 0%, #fff 150px, #0077d0 150px, #0077d0 100%);
    padding-top: 0;
    color: #fff;
    overflow: hidden;
	padding-bottom: 155px;
}

#interview .inner {
    position: relative;
    overflow: visible;
}

/*左側*/
#interview .inner::before {
    content: "";
    background: url(../images/home/interview/l_circle.png)no-repeat center center;
    background-size: 100%;
    width: 120px;
    height: 123px;
    position: absolute;
    left: -150px;
    top: 257px;
}

/*右側*/
#interview .inner::after {
    content: "";
    background: url(../images/home/interview/r_circle.png)no-repeat center center;
    background-size: 100%;
    width: 260px;
    height: 260px;
    position: absolute;
    right: -260px;
    top: 240px;
}

#interview .inner > .photo {
    margin-bottom: 90px;
    position: relative;
    z-index: 10;
}

#interview .text {
    min-height: 350px;
    position: relative;
}

#interview .text .flex {
    width: 610px;
    position: absolute;
    top: 0;
    right: 0;
    height: 350px;
    z-index: 10;
}

#interview h2 .eng {
    color: #fff;
}

#interview .img02 {
    width: 350px;
    border-radius: 50%;
}

#interview .img03 {
    width: 220px;
    border-radius: 50%;
    margin-top: 85px;
}

#interview a.sub_link {
    color: #fff;
}

#interview a.sub_link::after {
    background: #fff;
}

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

    #interview {
        background: linear-gradient(180deg, #fff 0%, #fff 70px, #0077d0 70px, #0077d0 100%);
        padding-top: 0;
		padding-bottom: 80px;
    }

    /*左側*/
    #interview .inner::before {
        width: 60px;
        height: 123px;
        position: absolute;
        left: -60px;
        /*        top: 480px;*/
        top: 70%;
    }

    /*右側*/
    #interview .inner::after {
        width: 130px;
        height: 130px;
        right: -100px;
        /*        top: 280px;*/
        top: 50%;
    }

    #interview .inner > .photo {
        height: 140px;
        margin-bottom: 45px;
    }

    #interview .text {
        min-height: auto;
    }

    #interview .lead {
        margin-bottom: 30px;
    }

    #interview .text .flex {
        width: 100%;
        position: static;
        height: auto;
        justify-content: center;
        gap: 20px;
    }

    #interview .img02 {
        width: 50%;
    }

    #interview .img03 {
        width: 40%;
        margin-top: 65px;
    }

    #interview a.sub_link {
        color: #0077d0;
        font-size: 16px;
        background: #e4f0fb;
        padding: 10px 20px;
        width: 100%;
        border-radius: 30px;
        text-align: center;
    }

    #interview a.sub_link::before {
        width: 30px;
        height: 30px;
        position: absolute;
        right: 10px;
        top: calc(50% - 15px);
    }

    #interview a.sub_link::after {
        background: #0077d0;
        right: 25px;
    }
}

/*============================
blog(wp)
============================*/

#blog {
    background: #f1f1f1;
	padding-top: 40px;
    position: relative;
}

#blog::before {
    content: "";
    background: url(../images/common/wave_g_half.png) repeat-x center center;
    background-size: auto 100%;
    width: 100%;
    height: 55px;
    display: block;
    position: absolute;
    top: -55px;
    left: 0;
}

#blog .inner {
    position: relative;
}

#blog .inner-bg {
    width: 700px;
    background-color: #fff;
    border-radius: 40px;
    padding: 20px 40px;
    height: 181px;
}

#blog .inner .box a {
    display: block;
    padding: 10px 0;
}

#blog .inner .box a:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

#blog .inner .box a p span {
    font-weight: 600;
    color: #0077d0;
    margin-right: 20px;
}

#blog a.sub_link {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media only screen and (max-width: 768px) {
    
    #blog {
        padding-top: 20px;
    }
    
    #blog::before {
        height: 30px;
        top: -30px;
    }
	
	#blog .inner-bg {
        height: auto;
    }
	
	#blog .inner .box a p span {
        display: block;
    }

    #blog a.sub_link {
        position: relative;
        margin-left: auto;
        margin-top: 20px;
    }
}


/*============================
company
============================*/

#company {
    background: #fff;
    position: relative;
    overflow: hidden;
}

#company::before {
    content: "";
    display: block;
    background: #0077d0;
    width: 100%;
    height: 100%;
    position: absolute;
    right: calc(50% - -100px);
    top: 0;
}

#company .inner {
    position: relative;
    overflow: visible;
}

#company .inner::after {
    content: "";
    background: url(../images/home/company/road.png)no-repeat center center;
    background-size: 100%;
    width: 482px;
    height: 541px;
    display: block;
    position: absolute;
    right: -80px;
    top: -100px;
}

#company .bg {
    position: relative;
    z-index: 10;
}

/*左側*/
#company .bg::before {
    content: "";
    background: url(../images/home/company/l_circle.png)no-repeat center center;
    background-size: 100%;
    width: 246px;
    height: 249px;
    position: absolute;
    top: -220px;
    left: -250px;
}

/*右側*/
#company .bg::after {
    content: "";
    background: url(../images/home/company/r_circle.png)no-repeat center center;
    background-size: 100%;
    width: 280px;
    height: 310px;
    position: absolute;
    right: -220px;
    bottom: -165px;
}

#company h2 {
    width: 440px;
    margin-left: auto;
}

#company .photo {
    width: 520px;
    position: absolute;
    top: 0;
    left: 0;
}

#company .text {
    width: 440px;
    margin-left: auto;
}

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


    #company::before {
        content: none;
    }

    #company .inner {
        position: relative;
        overflow: visible;
    }

    #company .inner::after {
        content: "";
        background: url(../images/home/company/road.png)no-repeat center center;
        background-size: 100%;
        width: 482px;
        height: 541px;
        display: block;
        position: absolute;
        right: -80px;
        top: -100px;
    }

    #company .bg {
        position: relative;
        z-index: 10;
    }

    /*左側*/
    #company .bg::before {
        width: 123px;
        height: 125px;
        top: -120px;
        left: -90px;
    }

    /*右側*/
    #company .bg::after {
        width: 140px;
        height: 155px;
        right: -80px;
        bottom: -85px;
    }

    #company h2 {
        width: 440px;
        margin-left: auto;
    }

    #company .photo {
        width: 100%;
        height: 0;
        padding-top: 60%;
        position: relative;
        margin-bottom: 20px;
    }

    #company .photo img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-position: top;
    }

    #company .text {
        width: 100%;
        margin-left: auto;
    }
}
