@charset "UTF-8";

/*+~+~+~+~+~+~+~+~+~+~~+~+~+~+~+~+~+~+~+~+~+~+~+~+~+~++~~++*/
/*スマホ用Animation*/
/*+~+~+~+~+~+~+~+~+~+~~+~+~+~+~+~+~+~+~+~+~+~+~+~+~+~++~~++*/
@-webkit-keyframes returnToNormal {
    0% { opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0); }
    100% { opacity: 1;-webkit-transform: none;transform: none; }
}
@keyframes returnToNormal {
    0% { opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0); }
    100% { opacity: 1;-webkit-transform: none;transform: none; }
}

/*+~+~+~+~+~+~+~+~+~+~~+~+~+~+~+~+~+~+~+~+~+~+~+~+~+~++~~++*/
/*responsive*/
/*+~+~+~+~+~+~+~+~+~+~~+~+~+~+~+~+~+~+~+~+~+~+~+~+~+~++~~++*/
@media screen and (max-width: 1024px) {
    .mdn_touchevents html, .mdn_touchevents input, .mdn_touchevents select, .mdn_touchevents textarea {
        font-weight: 400;
    }
    .mdn_touchevents body {
        -webkit-overflow-scrolling: touch !important;
    }

    .android figure {
        display: block;
    }

    .header-menu.js-hide {
        top: -100%;
    }
    .header-menu {
        display: block;
        top: 0;
        bottom: auto;
        background-color: transparent;
        transition: 0.3s;
    }


    .header-menu-inner {
        background-color: rgba(0, 0, 0, 0.9);
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header-menu.open {
        height: 100%;
    }
    .header-menu.open .header-menu-inner {
        background-color: #ffffff;
    }
    .header-menu.open .header-logo-svg path {
        fill: #111111;
    }

    .header-menu-nav {
        display: none;
        width: 100%;
        height: 100%;
        padding: 3em 1em;
        background-color: #ffffff;
    }

    .header-menu-nav .primary-nav-links {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: 80%;
        font-size: 20px;
    }
    .header-menu-nav .primary-nav-links li {
        width: 100%;
        margin-right: 0;
        font-size: 1.5em;
        text-align: right;
        -webkit-animation-name: returnToNormal;
        animation-name: returnToNormal;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

    .header-menu-nav .primary-nav-links li a {
        padding: 10px;
        color: #111111;
    }
    .header-menu-nav .primary-nav-links li a::after {
        content: none;
    }

    .header-menu-nav .primary-nav-links .tocall {
        display: block;
        padding-top: 3em;
        text-align: center;
    }
    .header-menu-nav .primary-nav-links .tocall a {
        border: 1px solid #88888b;
        color: #88888b;
    }

    .header-menu-inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: box;
        display: flex;
        width: 100%;
        padding: 10px 15px;
        -moz-box-pack:justify;
        -ms-box-pack:justify;
        box-pack:justify;
        flex-pack:justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
     .header-menu-inner .main-logo {
        position: static;
        -webkit-box-flex: 8;
        -ms-flex: 8;
        flex: 8;
        text-align: left;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .header-menu-inner .main-logo a {
        display: initial;
    }
    .header-menu-inner .main-logo .header-logo-svg {
        display: block;
        max-width: 97px;
        height: 0.8em;
    }

    .menu-trigger {
        display: block;
        position: relative;
        width: 40px;
        height: 30px;
    }
    .menu-trigger span {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        width: inherit;
        height: 2px;
        margin-left: -50%;
        background: #ffffff;
        -webkit-transition: width 0.2s, right 0.2s, left 0.2s;
        transition: width 0.2s, right 0.2s, left 0.2s;
    }

    .menu-trigger .one {
        right: 0;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
    .menu-trigger .two {
        position: relative;
        background: none;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .menu-trigger .two::before, .menu-trigger .two::after {
        display: block;
        position: absolute;
        right: -50%;
        width: inherit;
        height: 2px;
        background: #ffffff;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        content: '';
    }
    .menu-trigger .three {
        right: 0;
        -webkit-transform: translateY(12px);
        transform: translateY(12px);
    }
    .menu-trigger.open .one {
        left: 100%;
        width: 0;
    }
    .menu-trigger.open .two::before {
        background-color: #88888b;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .menu-trigger.open .two::after {
        background-color: #88888b;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .menu-trigger.open .three {
        right: 100%;
        width: 0;
    }

    /*common-parts*/
    .cm-site-links {
        width: 80%;
        max-width: none;
    }

    .site-link a::before {
        border-top: 6px solid #ffffff;
        border-left: 6px solid #ffffff;
    }
    .site-link a::after {
        border-right: 6px solid #ffffff;
        border-bottom: 6px solid #ffffff;
    }

    .cm-link-list {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cm-link {
        margin: 0 1em 1em 1em;
    }

    .section-title-inner {
        width: 90%;
    }

    .section-subtitle {
        margin-bottom: 3em;
        padding-bottom: 1.5em;
    }

    .section-content {
        width: 100%;
        padding: 5em 20px;
    }

    /*News*/
    .news .section-content {
        padding: 5em 20px;
    }

    /*Contact*/
    .contact .parsonal .parsonal-inner {
        padding: 10px;
        border: 1px solid #cbcbcb;
        background-color: #ffffff;
    }
    .contact .footer-form select, .contact .footer-form input[type="text"], .contact .footer-form textarea {
        -webkit-appeartance: none;
    }

    /*footer*/
    .main-footer {
        padding-top: 15%;
        padding-bottom: 15%;
    }
    .main-footer-inner .footer-nav {
        display: none;
    }
    .main-footer .copyright {
        padding: 3%;
    }
}

@media only screen and (max-width: 768px) {
    .news::after, .about::after, .project::after, .company::after {
        height: 350px;
    }

    .section-subtitle {
        margin-top: 0;
    }

    .site-link a::before {
        border-top: 5px solid #ffffff;
        border-left: 5px solid #ffffff;
    }
    .site-link a::after {
        border-right: 5px solid #ffffff;
        border-bottom: 5px solid #ffffff;
    }

    /*Concept*/
    .concept {
        margin-bottom: 40%;
    }

    /*About*/
    .about .ceo-message {
        text-align: left;
    }
    .about .ceo-message .pc-br {
        display: none;
    }
    .about .ceo-message h3 {
        margin-top: 0;
    }

    /*Project*/
    .project .project-concept .br-1 {
        display: block;
    }
    .project .official .project-content {
        text-align: left;
    }
    .project .official .project-content .pc-br {
        display: none;
    }

    /*Contact*/
    .contact .contact-start-message {
        text-align: left;
    }
}

@media screen and (max-width: 767px) and (min-width: 321px) {

    .section-title-content {
        font-size: -moz-calc( 25px + (32 - 25) * ( (100vw - 321px) / ( 767 - 321)));
        font-size: -webkit-calc( 25px + (32 - 25) * ( (100vw - 321px) / ( 767 - 321)));
        font-size: calc( 25px + (32 - 25) * ( (100vw - 321px) / ( 767 - 321)));
    }

    .concept-text {
        font-size: -moz-calc( 26px + (56 - 26) * ( (100vw - 321px) / ( 767 - 321)));
        font-size: -webkit-calc( 26px + (56 - 26) * ( (100vw - 321px) / ( 767 - 321)));
        font-size: calc( 26px + (56 - 26) * ( (100vw - 321px) / ( 767 - 321)));
    }

    .concept-text-s {
        font-size: -moz-calc( 20px + (30 - 20) * ( (100vw - 321px) / ( 767 - 321)));
        font-size: -webkit-calc( 20px + (30 - 20) * ( (100vw - 321px) / ( 767 - 321)));
        font-size: calc( 20px + (30 - 20) * ( (100vw - 321px) / ( 767 - 321)));
    }

    .about .ceo-message h3 {
        font-size: -moz-calc( 32px + (40 - 32) * ( (100vw - 321px) / ( 767 - 321)));
        font-size: -webkit-calc( 32px + (40 - 32) * ( (100vw - 321px) / ( 767 - 321)));
        font-size: calc( 32px + (40 - 32) * ( (100vw - 321px) / ( 767 - 321)));
    }

    .project .project-concept {
        font-size: -moz-calc( 16px + (20 - 16) * ( (100vw - 321px) / (767 - 321)));
        font-size: -webkit-calc( 16px + (20 - 16) * ( (100vw - 321px) / (767 - 321)));
        font-size: calc( 16px + (20 - 16) * ( (100vw - 321px) / (767 - 321)));
    }

    .error-page .error-title {
        font-size: -moz-calc( 28px + (56 - 28) * ( (100vw - 321px) / (767 - 321)));
        font-size: -webkit-calc( 28px + (56 - 28) * ( (100vw - 321px) / (767 - 321)));
        font-size: calc( 28px + (56 - 28) * ( (100vw - 321px) / (767 - 321)));
    }
    .error-page .error-message {
        font-size: -moz-calc( 18px + (30 - 18) * ( (100vw - 321px) / (767-321)) );
        font-size: -webkit-calc( 18px + (30 - 18) * ( (100vw - 321px) / (767-321)) );
        font-size: calc( 18px + (30 - 18) * ( (100vw - 321px) / (767-321)) );
    }
}


@media only screen and (max-width: 640px) {
    body, html {
        -webkit-overflow-scrolling: touch !important;
    }

    body {
        font-size: 14px;
        line-height: 1.6;
    }

    /*common-parts*/
    .header-menu-inner .main-logo .header-logo-svg {
        width: 84px;
        height: 24px;
    }

    .cm-site-links {
        width: 65%;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .site-link {
        width: 100%;
        margin-bottom: 8%;
    }
    .site-link img {
        max-height: 5em;
    }

    .cm-link {
        width: 100%;
        padding: 10px 20px;
    }

    .section-title {
        padding: 1em 0;
    }

    .news::after, .about::after, .project::after, .company::after {
        height: 300px;
    }

    /*Concept*/
    .android .concept-text {
        font-size: 42px;
    }
    .android .concept-text-s {
        font-size: 26px;
    }

    /*News*/
    .news-article-list {
        -webkit-align-items: stretch;
        align-items: stretch;
        -webkit-align-content: stretch;
        align-content: stretch;
    }
    .news-article-link {
        width: 48%;
    }
    .news-article-title {
        font-size: 1em;
    }
    .news-article-thumbnail {
        height: 100px;
    }

    /*About*/
    .about .ceo-message h4 {
        margin-bottom: 2.5em;
        font-size: 18px;
    }

    /*Project*/
    .project .blixzy-logo, .project .official-logo {
        width: 40%;
        height: auto;
    }
    .project .hv-content {
        margin-bottom: 5em;
    }
    .project .project-description dt {
        margin-bottom: 4em;
    }

    .sns-links {
        padding: 6% 0 3% 0;
    }

    /*Company*/
    .company .company-data {
        padding: 0;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .company .company-data-inner {
        width: 100%;
    }
    .company .company-data-inner .data {
        margin-bottom: 2em;
    }

    /*Contact*/
    .contact .form_area {
        width: 95%;
    }

    /*Error*/
    .error-content-inner {
        padding: 5em 20px;
    }
    .error-message-ja {
        font-size: 14px;
    }

    /*Footer*/
    .main-footer .pagetop {
        right: 50%;
        bottom: 20%;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}

@media only screen and (max-width: 460px) {
    .header-menu-nav .primary-nav-links {
        font-size: 15px;
    }

    /*Concept*/
    .android .concept-text {
        font-size: 30px;
    }
    .android .concept-text-s {
        font-size: 22px;
    }

    .project .project-concept .br-2 {
        display: block;
    }

    .site-link a::before {
        border-top: 3px solid #ffffff;
        border-left: 3px solid #ffffff;
    }
    .site-link a::after {
        border-right: 3px solid #ffffff;
        border-bottom: 3px solid #ffffff;
    }
}

@media only screen and (max-width: 320px) {
    .section-title-content {
        font-size: 25px;
    }

    /*Concept*/
    .concept-text {
        font-size: 26px;
    }
    .concept-text-s {
        font-size: 20px;
    }

    /*About*/
    .about .ceo-message h3 {
        font-size: 32px;
    }

    /*Project*/
    .project .project-concept {
        font-size: 16px;
    }

    /*error*/
    .error-page .error-title {
        font-size: 26px;
    }
    .error-message {
        font-size: 16px;
    }
}
