@charset "UTF-8"; /*==========================
共通
===========================*/
* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #fff;
    color: #555;
    line-height: 2.1;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

.en {
    font-family: 'Raleway', sans-serif;
}

a:link {
    color: #000;
    transition: 0.6s;
    text-decoration: none;
}

a:visited {
    color: #000;
}

a:hover {
    color: #1C8AC7;
    transition: 0.3s;
}

a:active {
    color: #000;
}

img {
    display: block;
}

.small {
    font-size: 0.8em;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.xsp_only {
    display: none;
}

.t_r {
    text-align: right;
}

.t_l {
    text-align: left;
}

.t_c {
    text-align: center;
}

.pd2 {
    padding: 2em 0;
}

.pb1 {
    padding-bottom: 1em;
}

.pb2 {
    padding-bottom: 2em;
}

.pb3 {
    padding-bottom: 3em;
}

.od1 {
    order: 1;
}

.od2 {
    order: 2;
}

.bold {
    font-weight: 600;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

.blue {
    color: #1C8AC7;
}

.size_up {
    font-size: 1.8em;
}

.size_down {
    font-size: 0.7em;
    font-weight: 400;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1C8AC7;
    text-align: center;
    margin: 2em auto;
    width: 50%;
    border-bottom: 2px #1C8AC7 solid;
}

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

.key_img {
    margin: 0 auto;
    width: 80%;
}

.icon_key {
    height: 150px;
    padding: 2em 0;
    margin: 0 auto;
}

.w75 {
    width: 75%;
    margin: 0 auto;
    padding: 1.5em 1em 3em;
}

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

    .sp_only {
        display: block;
    }

    .xsp_only {
        display: none;
    }

    img {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .t_r {
        text-align: center;
    }

    .t_l {
        text-align: center;
    }

    h2 {
        font-size: 20px;
        width: 80%;
        margin: 1em auto 2em;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-weight: 500;
    }

    .xsp_only {
        display: block;
    }

    .sp_only_i {
        display: none;
    }

    .size_up {
        font-size: 1.3em;
    }

    .w75 {
        width: 85%;
        margin: 0 auto;
        padding-bottom: 2em;
    }
}

/*==========================
レイアウト
===========================*/
.container {
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
    .container {
        width: 100%;
        padding: 0 3%;
    }
}

/*==========================
ヘッダー
===========================*/
#header_group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav {
    display: block;
}
.logo img {
    height: 100px;
    padding: 5% 0 5% 10%;
}
header nav ul {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-left: auto;
    margin-top: 8px;
}
header nav ul li {
    padding: 0 1.8em;
}
header nav .lang a {
    color: #1C8AC7;
    border: 2px solid #1C8AC7;
    border-radius: 4px;
    padding: 0.4em 1em;
    margin: 3% auto;
    line-height: 1;
}
header nav .lang a:hover {
    color: #fff;
    background-color: #1C8AC7;
}

@media screen and (max-width: 1100px) {
    header nav ul li {
        font-size: 0.9em;
        padding: 1.4em;
    }
}

@media screen and (max-width: 960px) {
    .logo img {
        height: 20vw;
        max-height: 100px;
    }
}

/*ハンバーガーメニュー*/
@media screen and (max-width: 960px) {
    /*メニュー部分*/ nav {
        display: none;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.95);
        left: 0;
        z-index: 10;
    }

    header nav ul {
        display: block;
        width: 75%;
        height: 80%;
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        margin: auto;
    }

    header nav ul li {
        margin: 0 auto;
        text-align: center;
        padding: 1em;
        font-size: 1em;
    }

    header nav ul li:last-child {
        border: none;
    }

    header nav ul li a {
        display: block;
        color: #006598;
    }
}

@media screen and (max-width: 960px) {
    /*開閉ボタン*/ #nav_toggle {
        display: block;
        width: 40px;
        height: 40px;
        position: relative;
        top: 4px;
        z-index: 100;
        margin: 1% 6% 0;
    }

    #nav_toggle div {
        position: relative;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #1C8AC7;
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.5s ease-in-out;
    }

    #nav_toggle span:nth-child(1) {
        top: 0px;
    }

    #nav_toggle span:nth-child(2) {
        top: 12px;
    }

    #nav_toggle span:nth-child(3) {
        top: 24px;
    }

    /*開閉ボタンopen時*/
    .open #nav_toggle span:nth-child(1) {
        top: 12px;
        transform: rotate(135deg);
    }

    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav_toggle span:nth-child(3) {
        top: 12px;
        transform: rotate(-135deg);
    }
}

/*==========================
タイトル
===========================*/
#mainVisual .fv {
    background: url("img/fv_service.jpg") no-repeat;
    background-position: 50% 70%;
    background-size: cover;
    height: 400px;
    position: relative;
}

#mainVisual .fv .key {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(-45deg, #fff 25%, transparent 25%, transparent 50%, #fff 50%, #fff 75%, transparent 75%, transparent), rgba(255,255,255,0.5);
    background-size: 3px 3px;
}

#mainVisual .fv .key img {
    margin: 2em auto;
    height: 40px;
}

#mainVisual .title {
    margin: 3em auto;
    text-align: center;
}

#mainVisual .title h1 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
}

@media screen and (max-width: 480px) {
    #mainVisual .fv {
        height: 250px;
    }

    #mainVisual .fv .key img {
        margin: 1em auto;
        width: 40%;
    }

    #mainVisual .title {
        margin: 2em auto;
    }

    #mainVisual .title h1 {
        font-size: 24px;
    }
}

/*==========================
事業内容説明
===========================*/
#msg {
    background: url("img/msg_bg.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
    position: relative;
    padding: 5em 4em;
}

#msg .wrap {
    background: rgba(255,255,255,0.9);
    margin-left: 30%;
}

#msg .wrap h2 {
    border: none;
    padding-top: 12%;
    margin: 0 auto 1em;
}

#msg .wrap img {
    width: 65%;
    margin: 0 auto;
}

#msg .wrap p {
    padding: 1em 5em;
    line-height: 2.2;
    color: #333;
}

#msg .wrap ul {
    padding: 1em 5em 3em 6em;
    line-height: 2.2;
    color: #000;
}

#msg .wrap li {
    list-style: disc;
    padding-bottom: 1em;
}

@media screen and (min-width: 769px) and (max-width: 959px) {
    #msg {
        padding: 5em 4em;
    }

    #msg .wrap p {
        padding: 1em 4em;
    }

    #msg .wrap ul {
        padding: 1em 4em 5em;
    }

    #msg .wrap img {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    #msg {
        background-position: 3%;
        background-size: cover;
        padding: 1em;
    }

    #msg .wrap {
        margin: 10% 3%;
    }

    #msg .wrap p {
        padding: 1em;
        font-size: 14px;
    }

    #msg .wrap ul {
        padding: 1em 1.5em 1.5em 2.5em;
        font-size: 13px;
    }
}

/*==========================
お客様の要望に専門的な知見を生かしてご提案
===========================*/
#sec01 {
    background-color: rgba(103,188,226,0.1);
    padding: 2em 0;
    text-align: center;
}

.pr {
    display: flex;
    justify-content: space-around;
}

.box {
    padding: 2em 3%;
}

.box img {
    width: 100%;
}

#sec01 .box h3 {
    font-size: 1.5vw;
    padding-top: 1em;
}

#sec01 .box img {
	filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.07));
}

@media screen and (min-width: 1366px) {
    #sec01 .box h3 {
        font-size: 20px;
    }
}

@media screen and (min-width: 769px) and (max-width: 959px) {
    .pr {
        flex-wrap: wrap;
    }

    .box {
        width: 50%;
        padding: 2em 5% 0;
    }

    #sec01 .box h3 {
        font-size: 17px;
    }
}

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

    #sec01 .box {
        margin: 0 auto;
        width: 90%;
        padding: 2em 2% 0;
    }

    #sec01 .box img {
        margin: 0 auto;
        width: 80%;
        max-width: 350px;
    }

    #sec01 .box h3 {
        font-size: 18px;
        line-height: 1.7;
        padding-top: 1em;
    }
}

/*==========================
生産工場の手配
===========================*/
#sec02 {
    padding: 2em 0;
    text-align: center;
    background-color: #fff;
}

#sec02 .pr {
    width: 75%;
    margin: 0 auto;
    justify-content: center;
}

#sec02 .box {
    padding: 1em;
}

#sec02 .box img {
    padding: 0;
    width: 100%;
    margin: 0 auto;
}

#sec02 .box h3 {
    padding-bottom: 0.5em;
    line-height: 1.7;
    color: #000;
}

.factory {
    font-size: 24px;
    font-weight: 600;
    padding: 0 0 2em;
    width: 90%;
    margin: 0 auto;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
    #sec02 .pr {
        flex-wrap: nowrap;
    }

    #sec02 .box {
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    #sec02 .pr {
        padding: 0 0 2%;
        display: flex;
    }

    #sec02 .box {
        width: auto;
        padding: 0;
    }

    .factory {
        font-size: 22px;
        font-weight: 600;
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    #sec02 .pr {
        padding: 3% 0;
    }

    .factory {
        font-size: 18px;
        font-weight: 600;
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }
}

/*==========================
納品までをトータルコーディネート
===========================*/
#sec03 {
    padding: 2em 0;
    text-align: center;
    background: rgba(103,188,226,0.1);
}

#sec03 .pr {
    justify-content: space-around;
    margin: 1em 3%;
}

#sec03 .box {
    width: 33%;
    margin: 0 2%;
    padding: 4em 3% 2em;
    background-color: #fff;
}

#sec03 .box img {
    height: 70px;
}

#sec03 .box h3 {
    padding: 1em 0 0.5em;
    color: #000;
}

@media screen and (max-width: 960px) {
    #sec03 {
    }

    #sec03 .pr {
        display: block;
        margin: 1em 10%;
    }

    #sec03 .box {
        width: 100%;
        margin: 0 auto;
        padding: 3em 0 1.5em;
        margin-bottom: 8%;
    }
}

/*==========================
アフターフォローによりお客様のビジネスを支援
===========================*/
#sec04 {
    padding: 2em 0;
    text-align: center;
}

/*==========================
当社からのメッセージ
===========================*/
#sec05 {
    padding: 2em 0;
    text-align: center;
    background: rgba(103,188,226,0.1);
}

#sec05 h3 {
    padding: 0 1em;
    transform: translateY(-30px);
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    color: #1C8AC7;
}

#sec05 .txt {
    margin: 2% 17%;
    padding: 0.5em;
    border: 1px solid #000;
}

#sec05 .txt p {
    padding: 1em;
    font-size: 1.2em;
    color: #000;
    font-weight: 600;
    line-height: 1.8;
}

@media screen and (min-width: 769px) and (max-width: 959px) {
    .txt {
        margin: 3% 7%;
    }
}

@media screen and (max-width: 768px) {
    .txt {
        margin: 2% 10%;
    }

    .txt h3 {
        font-size: 15px;
        padding: 0 0.5em;
        line-height: 1.2;
        transform: translateY(-13px);
    }

    .txt p {
        line-height: 1.7;
        padding-bottom: 0.7em;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    #sec05 h3 {
        font-size: 15px;
    }
}

/*==========================
フッター
===========================*/
footer {
    color: #fff;
    font-size: 13px;
    background: url("../common/img/logo_w.svg") no-repeat bottom 60px right 20px, #3B4043;
    background-size: 100px auto;
}

footer a:link {
    color: #fff;
}

footer a:visited {
    color: #fff;
}

footer a:hover {
    color: #1C8AC7;
    transition: 0.3s;
}

footer a:active {
    color: #fff;
}

footer .footer_group {
    display: flex;
    padding: 4em 5em 9em;
    margin-right: 2em;
    margin: 0 auto;
}

footer .company {
    padding-right: 7%;
}

footer .company .comp {
    font-size: 13px;
    font-weight: 600;
    line-height: 3;
}

footer .company p {
    line-height: 2;
}

footer .footer_nav {
    margin: 0 auto;
}

footer .footer_nav li span {
    line-height: 3;
    font-weight: 600;
}

footer .copy p {
    text-align: center;
    border-top: 1px solid #707070;
    padding: 1em;
    margin: 0;
    vertical-align: bottom;
    font-size: 10px;
}

footer .fa {
    width: 36px;
    font-size: 22px;
    padding-top: 0.8em;
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: left;
        width: 38%;
        margin-bottom: 2em;
    }

    .clearfix:after {
        content: "";
        display: block;
        clear: both;
    }
}

@media screen and (max-width: 480px) {
    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: none;
        width: auto;
        margin-bottom: 1em;
    }

    footer .fa {
        padding-top: 1em;
    }
}
