@charset "utf-8";

/*ヘルパー*/
.flex {
    display: flex;
}

.is_between {
    justify-content: space-between;
}

/*=============
top
==============*/
/*header*/
.header {
    background-image: url(../img/main_img@2x.jpg);
}

.header_inner {
    display: flex;
    width: 90%;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 67px auto;
    z-index: 1;
}

.header_logo {
    color: #fff;
    font-size: 30px;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.header_logo img {
    width: 30px;
}

.header_logo h1 {
    margin-left: 15px;
    margin-bottom: 10px;
}

.header_menu {
    display: flex;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 18px;
}

.header_menu li::before {
    content: "/";
    margin-left: .5em;
    margin-right: .5em;
}

.header_menu li:first-child::before {
    content: none;
}

.header_contact {
    background: #004471;
    width: 151px;
    height: 36px;
    color: #fff;
    border-radius: 18px;
    margin-left: 18px;
}

.header_contact p {
    text-align: center;
    margin-top: 3px;
}

.header_contact a {
    color: #fff;
}


@media screen and (max-width: 1024px) {
    .header_menu {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .header_inner {
        margin: 12px auto;
    }

    .header_logo {
        font-size: 19px;
    }

    .header_logo h1 {
        margin-left: 10px;
        margin-bottom: 0px;
    }
}

/*mv*/
.mv {
    position: absolute;
    max-width: 52%;
}

.mv_sp {
    display: none;
}

.mv_sp2 {
    display: none;
}

@media screen and (max-width: 1024px) {
    .mv_sp {
        display: block;
        width: 100%;
        position: absolute;
    }

    .mv {
        display: none;
    }

    .mv_sp2 {
        display: none;
    }

}

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

    .mv_sp {
        display: none;
    }


    .mv {
        display: none;
    }
}

/*=============
ハンバーガーメニュー
==============*/
.hamburger {
    display: none;
}

.globalMenuSp {
    display: none;
}

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

    .hamburger {
        display: block;
        position: fixed;
        z-index: 3;
        right: 0;
        top: 0;
        width: 55px;
        height: 55px;
        cursor: pointer;
        text-align: center;
        background: #000;
    }

    .hamburger span {
        position: absolute;
        width: 30px;
        height: 2px;
        left: 13px;
        background: #fff;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        margin-top: 5px;
    }

    .hamburger span:nth-child(1) {
        top: 10px;
    }

    .hamburger span:nth-child(2) {
        top: 20px;
    }

    .hamburger span:nth-child(3) {
        top: 30px;
    }

    .globalMenuSp {
        display: block;
    }

    .globalMenuSp li {
        text-align: center;
        margin: 42px auto;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .globalMenuSp ul {
        position: fixed;
        z-index: 2;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        letter-spacing: 0.2em;
        height: 100%;
        transform: translate(100%);
        transition: 0.6s;
    }

    .show .globalMenuSp ul {
        transform: translate(0);
    }

    .globalMenuSp a {
        color: #fff;
    }

    .sp_tel {
        border: 1px solid #fff;
        width: 70%;
        padding: 20px 0;
    }

    .sp_tel a {
        margin: 20px auto;
    }
}

/*メイン*/
.concept {
    color: #fff;
    position: relative;
    top: 220px;
}

.concept_img {
    max-width: 70%;
    position: relative;
    margin-left: 420px;
}

.concept_img_sp {
    display: none;
}

.concept_Wrap_sp {
    display: none;
}

.concept_Wrap {
    display: flex;
}

.concept_text {
    margin-left: 100px;
    z-index: 1;
}

.concept_text span {
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    border-bottom: 1px solid;
}

.concept_text p {
    margin-top: 230px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    position: absolute;
    letter-spacing: 0.2em;
    z-index: 1;
}

.text_sp {
    display: none;
}

.concept_text h2 {
    font-size: 45px;
    margin-right: 30px;
    margin-top: 40px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    position: absolute;
    z-index: 1;
}

.concept_img2 {
    display: flex;
    width: 90%;
    margin-left: 100px;
    margin-top: 59px;
}

.concept_img2 p {
    width: 880px;
    margin-right: 110px;
    margin-top: 50px;
}

.concept_img2 spam {
    width: 570px;
}

/*
.concept_img3 {
  margin-top: 380px;
}
*/

.news {
    margin: 300px auto 0px auto;
    padding: 40px;
    width: 960px;
    border: solid 1px #333;
}

.topics-title span {
    color: red;
}

.topics-title {
    margin-bottom: 20px;
    font-size: 20px;
}

.line{
    border-bottom: dotted 1px #aaa;
    margin-bottom: 32px;
}


@media screen and (max-width: 1024px) {
    concept_Wrap_sp {
        display: none;
    }

    .concept_img2 {
        display: none;
    }

    .concept_img {
        display: none;
    }

    .concept_img_sp {
        display: block;
        margin-left: 110px;
        margin-top: 510px;
    }

    .concept_text h2 {
        font-size: 40px;
    }

    .concept_text p {
        font-size: 14px;
    }

    .news {
        width: 80%;
    }

}

@media screen and (max-width: 768px) {
    .concept_Wrap {
        display: none;
    }

    .concept_Wrap_sp {
        display: block;
        padding-top: 120px;
        width: 80%;
        margin: 0 auto;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .concept {
        background-image: url(../img/mv_sp2@2x.jpg);
        background-size: cover;
        top: 0;
        padding-bottom: 40px;
    }

    .concept_Wrap_sp span {
        font-size: 14px;
        border-bottom: 1px solid;
        font-family: 'Oswald', sans-serif;
    }

    .concept_Wrap_sp h2 {
        font-size: 25px;
        font-weight: 700;
        margin: 50px 0 20px 0;
    }

    .concept_Wrap_sp p {
        font-weight: 300;
        letter-spacing: 0.2em;
    }

    .concept_img_sp {
        display: none;
    }

    .news {
        width: 70%;
        margin: 40px auto 200px auto;
    }
}



.service_Wrap {
    background: #E6E6E6;
    padding: 50px 0 50px 0;
    position: absolute;
    position: relative;
    top: 380px;
    width: 60%;
    margin-left: auto;
}

.service_section {
    margin-top: -20px;
    font-family: 'Roboto Condensed', sans-serif;
    width: 90%;
}

.service_img {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    width: 45%;
    margin-top: 280px;
}

.service_sectionBox {
    display: flex;
    margin-left: 200px;
}

.service_section h2 {
    font-size: 40px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.service_section span {
    font-size: 14px;
    color: #004471;
    font-family: 'Noto Sans JP',
        sans-serif;
    font-family: 'Oswald', sans-serif;
}

.service_text {
    display: flex;
    margin-top: 32px;
    max-width: 550px;
}

.service_text img {
    width: 65%;
    height: auto;
}

.service_title {
    margin-left: 130px;
    margin-top: -150px;
}

.service_text p {
    font-size: 14px;
    margin-top: 12px;
    text-align: justify;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    margin-left: 20px;
}

.service_section2 {
    margin-right: 23px;
    display: flex;
    flex-direction: column;
}

.service_sectionBox2 {
    display: flex;
    margin-top: 66px;
    margin-right: 33px;
}

.service_section2 span {
    font-size: 14px;
    color: #004471;
    font-family: 'Noto Sans JP',
        sans-serif;
    font-family: 'Oswald', sans-serif;
}

.service_section2 img {
    margin-top: 16px;
}

.service_text2 h2 {
    font-size: 25px;
    margin-top: -8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.service_text2 p {
    font-size: 14px;
    max-width: 160px;
    text-align: justify;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

.service_sectionBox2Wrap {
    display: flex;
    margin-left: 200px;
}

@media screen and (max-width: 1024px) {
    .service_img {
        display: none;
    }

    .service_Wrap {
        background: #E6E6E6;
        position: relative;
        top: 422px;
        width: 100%;
    }

    .service_title {
        margin-left: 50px;
        margin-top: -161px;
    }

    .service_sectionBox {
        width: 570px;
        margin: 0 auto;
    }

    .service_sectionBox2Wrap {
        width: 570px;
        margin: 0 auto;
    }

    .service_sectionBox2 {
        margin-right: 40px;
    }
}

@media screen and (max-width: 768px) {
    .service_Wrap {
        top: -130px;
        padding: 0;
        padding-bottom: 50px;
    }

    .service_sectionBox {
        width: 80%;
    }

    .service_sectionBox2 {
        margin-top: 52px;
        margin-right: 0;
    }

    .service_section h2 {
        font-size: 20px;
    }

    .service_sectionBox2Wrap {
        width: 80%;
        display: block;
    }

    .service_title {
        margin-left: 0;
        margin-top: 0;
        padding-top: 20px;
        margin-right: 140px;
    }

    .service_text {
        display: block;
        margin-top: 22px;
    }

    .service_text img {
        width: 100%;
    }

    .service_text2 h2 {
        font-size: 20px;
    }

    .service_text p {
        max-width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .service_section2 {
        margin-right: 29px;
    }

    .service_section {
        width: auto;
        margin-top: 20px;
    }

    .service_text2 p {
        max-width: 100%
    }
}

.product {
    background: #E6E6E6;
    margin-top: 640px;
    position: relative;
}

.product_inner {
    padding-top: 70px;
    padding-bottom: 100px;
}

.product_link {
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.product_link a span {
    font-size: 18px;
    color: #a09f9f;
    margin-left: 5px;
    font-weight: 300;
}

.product_link a {
    display: flex;
}

.product h2 {
    font-size: 32px;
    margin-left: 670px;
    padding-top: 13px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.product_title {
    font-size: 150px;
    position: absolute;
    top: -120px;
    left: 50px;
    display: flex;
    align-items: baseline;
}

.product_box {
    margin: 0 auto;
    width: 23%;
}

.product_box2 {
    width: 45%;
    margin: 0 auto;
}

.product_boxWrap {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 90px;
    justify-content: space-between;
}

.product_title2 {
    color: #004471;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    margin-top: 20px;
}

.product_box p {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .product h2 {
        margin-left: 50px;
        padding-top: 110px;
    }

    .product_link {
        font-size: 16px;
    }

    .product_title2 {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .product {
        background: #fff;
        margin-top: 0;
    }

    .product_title {
        top: -100px;
        left: -6px;
        right: 120px;
    }

    .product h2 {
        margin-left: 0;
        padding-top: 30px;
        font-size: 20px;
        text-align: center;
    }

    .product_boxWrap {
        padding: 0;
        width: 80%;
        flex-direction: column;
    }

    .product_title2 {
        margin-top: 5px;
    }

    .product_link {
        margin-bottom: 20px;
    }

    .product_box2 {
        width: 100%;
        margin-top: 20px;
    }

    .product_inner {
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .product_box {
        width: 100%;
        margin-bottom: 20px;
    }

    .product_box img {
        width: 100%;
    }

}


.recruit {
    margin-top: 250px;
    position: relative;
    background-image: url(../img/recruit_img@2x.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

.recruit_title {
    font-size: 150px;
    position: absolute;
    top: -120px;
    left: 50px;
    display: flex;
    align-items: baseline;
    z-index: 1;
}

.recruit_box {
    padding: 150px 0;
    z-index: 1;
    margin-left: 100px;
    width: 500px;
}
}
}

.recruit_box p {
    width: 475px;
    font-size: 14px;
    text-align: justify;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

.recruit_box h2 {
    font-size: 32px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.recruit_btn {
    background: #004471;
    width: 475px;
    height: 36px;
    border-radius: 18px;
    margin-top: 20px;
    font-family: 'Oswald', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
}

.recruit_btn a {
    display: block;
    color: #fff;
    text-align: center;
    padding-top: 6px;
}

.recruit_boxWrap {
    display: flex;
}

.recruit_img {
    position: absolute;
    width: 100%;
}

.recruit_img_sp {
    display: none;
}

@media screen and (max-width: 1024px) {
    .recruit_img {
        display: none;
    }

    .recruit {
        background: #e6e6e6;
        position: relative;
    }

    .recruit_box {
        padding: 110px 0;
    }

    .recruit_img_sp {
        display: block;
        position: absolute;
        margin-left: 200px;
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .recruit_box p {
        width: 100%;
    }

    .recruit_btn {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .recruit_title {
        top: 30px;
        left: -6px;
        right: 140px;
    }

    .recruit {
        margin-top: 0;
        height: 660px;
    }

    .recruit_img_sp {
        margin-left: 0;
    }
}

.contact {
    max-width: 1920px;
    position: relative;
    background: #fff;
    padding: 80px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    top: 100px;
    margin: 0 auto;
}

.contact_inner h3 {
    text-align: center;
    font-size: 20px;
}

.contact_btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contact_tel {
    color: #004471;
}

.contact_telWrap {
    display: flex;
    align-items: baseline;
}

.contact_tel p {
    font-size: 31px;
    margin-right: 10px;
}

.contact_tel span {
    font-size: 41px;
    font-weight: 500;
}

.concept_time {
    color: #333333;
    font-size: 14px;
}

.contact_mail {
    width: 400px;
    height: 84px;
    font-size: 20px;
    border: 1px solid;
    margin-left: 50px;
    display: block;
}

.contact_mail p {
    margin-left: 10px;
}

.contact_mailBox {
    margin: 27px auto;
    display: flex;
    justify-content: center;
}

.contact_mailBox img {
    height: 22px;
    margin-top: 5px;
}

@media screen and (max-width: 1024px) {
    .contact {
        top: 390px;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        top: 0;
        padding: 0;
        width: 80%;
        margin: 220px auto 0;
    }

    .recruit_box {
        padding: 0;
        margin: 140px 20px;
    }

    .contact_inner h3 {
        font-size: 16px;
    }

    .contact_btn {
        display: block;
    }

    .contact_tel p {
        font-size: 25px;
    }

    .contact_tel span {
        font-size: 33px;
    }

    .contact_mail {
        width: 100%;
        font-size: 18px;
        margin-left: 0;
        margin-top: 30px;
    }

    .recruit_box h2 {
        font-size: 20px;
    }

    .recruit_box p {
        font-size: 13px;
        margin: 20px 0;
    }

    .contact_telWrap {
        justify-content: center;
    }

    .concept_time {
        text-align: center;
    }
}


/*footer*/
.footer {
    background: #004471;
    color: #fff;
    margin-top: 180px;
}

.footer_inner {
    max-width: 960px;
    width: 80%;
    display: flex;
    padding: 40px 0;
    justify-content: space-between;
    margin: 0 auto;
}

.footer_address {
    font-size: 15px;
    letter-spacing: 0.2em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

.footer_list {
    margin-right: 90px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

.footer_list a {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.2em;
    margin-right: 20px;
}

.footer_list li :before {
    content: "\025b6";
    margin-right: 5px;
}

@media screen and (max-width: 1024px) {
    .footer {
        margin-top: 420px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        margin-top: 395px;
    }

    .footer_inner {
        display: block;
    }

    .footer_address {
        font-size: 16px;
        letter-spacing: normal;
    }

    .footer_list ul {
        display: block;
    }

    .footer_list {
        margin-right: 0;
        margin-top: 20px;
    }
}

copy {
    max-width: 960px;
    width: 80%;
    display: flex;
    padding: 15px 0 90px;
    margin: 0 auto;
    justify-content: center;
    font-size: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    copy {
        text-align: center;
        padding-bottom: 39px;
    }
}
