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

Primary style

-------------------------------- */
*, *::after, *::before {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    font-family: -apple-system, blinkMacSystemFont, "Hiragino Kaku Gothic ProN", YuGothic-M, YuGothic, Meiryo, sans-serif;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
}




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

 Header

-------------------------------- */
.cd-morph-dropdown {
    height: 60px;
    background-color: #fff;
    position: fixed;
    z-index: 10;
    top: 0px;
    left: 0px;
    width: 100%;
}
.cd-morph-dropdown::before {
    /* never visible - used in JS to check mq */
    content: 'mobile';
    display: none;
}
.cd-morph-dropdown .nav-trigger {
    /* menu icon - visible on small screens only */
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    /* replace text with icon */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
}
.cd-morph-dropdown .nav-trigger span, .cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
    /* these are the 3 lines of the menu icon */
    position: absolute;
    background-color: #000;
    height: 2px;
    width: 26px;
}
.cd-morph-dropdown .nav-trigger span {
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    -webkit-transition: background-color .3s;
            transition: background-color .3s;
}
.cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
    content: '';
    left: 0;
    -webkit-transition: -webkit-transform .3s;
            transition: -webkit-transform .3s;
            transition: transform .3s;
            transition: transform .3s, -webkit-transform .3s;
}
.cd-morph-dropdown .nav-trigger span::before {
    -webkit-transform: translateY(-9px);
        -ms-transform: translateY(-9px);
            transform: translateY(-9px);
}
.cd-morph-dropdown .nav-trigger span::after {
    -webkit-transform: translateY(9px);
        -ms-transform: translateY(9px);
            transform: translateY(9px);
}
.cd-morph-dropdown.nav-open .nav-trigger span {
    background-color: transparent;
}
.cd-morph-dropdown.nav-open .nav-trigger span::before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: #fff;
}
.cd-morph-dropdown.nav-open .nav-trigger span::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    background-color: #fff;
}
.cd-morph-dropdown.nav-open {
    background-color: #222;
}
.cd-morph-dropdown .header_block {
    display: block;
    position: relative;
    width: 100%;
    top: 0;
}
.cd-morph-dropdown .header_block .main-nav {
    display: none;
}
.cd-morph-dropdown .header_block .header_logo {
    display: none;
}
.cd-morph-dropdown .header_block .header_small_logo_black {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 20px;
}
.cd-morph-dropdown .header_block .header_small_logo_black img {
    height: 30px;
}
.cd-morph-dropdown.nav-open .header_block .header_small_logo_black {
    display: none;
}
.cd-morph-dropdown.nav-open .header_block .header_small_logo_white {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 20px;
}
.cd-morph-dropdown.nav-open .header_block .header_small_logo_white img {
    height: 30px;
}
.cd-morph-dropdown .header_block .header_small_logo_white {
    display: none;
}
.cd-morph-dropdown .header_block .header_btn {
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 60px;
}
.cd-morph-dropdown .header_block .header_btn .btn-flat-border {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    background: #fff;
    color: #1abc9c;
    border: solid 1px #1abc9c;
    border-radius: 0px;
    transition: .2s;
    font-size: 1.2rem;
    vertical-align: 11px;
}
.cd-morph-dropdown .header_block .header_btn .btn-flat-border:hover {
    background: #1abc9c;
    color: #fff;
}
.cd-morph-dropdown .header_block .header_btn .btn-flat-border_active {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    background: #1abc9c;
    color: #fff;
    border: solid 1px #1abc9c;
    border-radius: 0px;
    font-size: 1.2rem;
    vertical-align: 11px;
}
.cd-morph-dropdown .header_block .header_btn .header_btn_logo {
    display: inline-block;
    vertical-align: 0px;
    margin: 0 0 0 10px;
    transition: .2s;
}
.cd-morph-dropdown .header_block .header_btn .header_btn_logo img {
    height: 30px;
}


.cd-morph-dropdown .morph-dropdown-wrapper {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 1.5em 0em 1.5em 1.5em;
    background-color: #222;
}
.cd-morph-dropdown.nav-open .morph-dropdown-wrapper {
    display: block;
}
.cd-morph-dropdown .dropdown-list > ul > li {
    margin-bottom: 1.5em;
    display: block;
    float: left;
    width: 50%; /* 列の数 */
}
.cd-morph-dropdown .label {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5em;
    color: #fff;
    margin-bottom: 0.5em;
    text-decoration: none;
}
.cd-morph-dropdown .content li::after {
    clear: both;
    content: "";
    display: inline-block;
}
.cd-morph-dropdown .links-list a {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5em;
    margin: 0 0 0.5em 0.5em;
    color: #fff;
    text-decoration: none;
}
.cd-morph-dropdown .links-list a:hover {
    color: #777;
}




@media screen and (max-width: 767px) {
    .cd-morph-dropdown .label .jpn {
        display: none;
    }      
}




@media screen and (min-width: 768px) and (max-width: 1024px) {
    .cd-morph-dropdown {
        height: 80px;
    }
    .cd-morph-dropdown .nav-trigger {
        height: 80px;
        width: 80px;
    }
    .cd-morph-dropdown .nav-trigger span, .cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
        height: 2px;
        width: 36px;
    }
    .cd-morph-dropdown .nav-trigger span::before {
        -webkit-transform: translateY(-12px);
            -ms-transform: translateY(-12px);
                transform: translateY(-12px);
    }
    .cd-morph-dropdown .nav-trigger span::after {
        -webkit-transform: translateY(12px);
            -ms-transform: translateY(12px);
                transform: translateY(12px);
    }
    .cd-morph-dropdown .header_block .header_small_logo_black {
        top: 15px;
        left: 20px;
    }
    .cd-morph-dropdown .header_block .header_small_logo_black img {
        height: 50px;
    }
    .cd-morph-dropdown.nav-open .header_block .header_small_logo_black {
        display: none;
    }
    .cd-morph-dropdown.nav-open .header_block .header_small_logo_white {
        display: inline-block;
        position: absolute;
        top: 15px;
        left: 20px;
    }
    .cd-morph-dropdown.nav-open .header_block .header_small_logo_white img {
        height: 50px;
    }
    .cd-morph-dropdown .header_block .header_small_logo_white {
        display: none;
    }
    .cd-morph-dropdown .header_block .header_btn {
        display: inline-block;
        position: absolute;
        top: 20px;
        right: 80px;
    }
    .cd-morph-dropdown .header_block .header_btn .btn-flat-border {
        display: inline-block;
        padding: 0.3em 1em;
        text-decoration: none;
        background: #fff;
        color: #1abc9c;
        border: solid 1px #1abc9c;
        border-radius: 0px;
        transition: .2s;
        font-size: 1.2rem;
        vertical-align: 16px;
    }
    .cd-morph-dropdown .header_block .header_btn .btn-flat-border:hover {
        background: #1abc9c;
        color: #fff;
    }
    .cd-morph-dropdown .header_block .header_btn .btn-flat-border_active {
        display: inline-block;
        padding: 0.3em 1em;
        text-decoration: none;
        background: #1abc9c;
        color: #fff;
        border: solid 1px #1abc9c;
        border-radius: 0px;
        font-size: 1.2rem;
        vertical-align: 16px;
    }
    .cd-morph-dropdown .header_block .header_btn .header_btn_logo {
        display: inline-block;
        vertical-align: 0px;
        margin: 0 0 0 15px;
        transition: .2s;
    }
    .cd-morph-dropdown .header_block .header_btn .header_btn_logo img {
        height: 40px;
    }
    
    
    .cd-morph-dropdown .morph-dropdown-wrapper {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 4em;
        background-color: #222;
    }
    .cd-morph-dropdown.nav-open .morph-dropdown-wrapper {
        display: block;
    }
    .cd-morph-dropdown .dropdown-list > ul > li {
        margin-bottom: 4em;
        display: block;
        float: left;
        width: 50%; /* 列の数 */
    }
    .cd-morph-dropdown .label {
        display: inline-block;
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.5em;
        color: #fff;
        margin-bottom: 1em;
        text-decoration: none;
    }
    .cd-morph-dropdown .content li::after {
        clear: both;
        content: "";
        display: inline-block;
    }
    .cd-morph-dropdown .links-list a {
        display: inline-block;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.5em;
        margin: 0 0 0.5em 0.5em;
        color: #fff;
        text-decoration: none;
    }
    .cd-morph-dropdown .links-list a:hover {
        color: #777;
    }
    .cd-morph-dropdown .label .jpn {
        font-size: 1.6rem;
        font-weight: 400;
        margin-left: 1em;
    }
}




@media only screen and (min-width: 1025px) {
    .cd-morph-dropdown {
        position: fixed;
        z-index: 10;
        height: 120px;
        left: 0;
        top: 0;
        width: 100%;
        padding: 0;
        text-align: center;
        background-color: #fff;
    }
    .cd-morph-dropdown::before {
        content: 'desktop';
    }
    .cd-morph-dropdown .nav-trigger {
        display: none;
    }
    .cd-morph-dropdown .header_block {
        display: block;
        position: relative;
        width: 1000px;
        margin: 0 auto;
    }
    .cd-morph-dropdown .header_block .main-nav {
        display: inline-block;
        position: absolute;
        float: right;
        top: 55px;
        right: 0;
    }
    .cd-morph-dropdown .header_block .main-nav > ul > li {
        display: inline-block;
    }
    .cd-morph-dropdown .header_block .main-nav > ul > li > a {
        display: inline-block;
        padding: 0em 1em 0em 1em;
        line-height: 1.5em;
        color: #000;
        font-size: 1.6rem;
        font-weight: 700;
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transition: opacity .2s;
        transition: opacity .2s;
        position: relative;
    }
    .cd-morph-dropdown .header_block .main-nav .jpn {
        font-size: 1.4rem;
        font-weight: 400;
    }
    .cd-morph-dropdown.is-dropdown-visible .header_block .main-nav > ul > li > a {
        /* main navigation hover effect - on hover, reduce opacity of elements not hovered over */
        opacity: 0.4;
    }
    .cd-morph-dropdown.is-dropdown-visible .header_block .main-nav > ul > li.active > a {
        opacity: 1;
    }
    .cd-morph-dropdown .header_block .main-nav > ul > li > a::after {
        position: absolute;
        bottom: -5px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: #000;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform .2s;
    }
    .cd-morph-dropdown .header_block .main-nav > ul > li > a:hover::after {
        transform: scale(1, 1);
    }
    .cd-morph-dropdown .header_block .header_logo {
        display: block;
        position: absolute;
        top: 15px;
        left: 0;
    }
    .cd-morph-dropdown .header_block .header_logo img {
        height: 90px;
    }
    .cd-morph-dropdown .header_block .header_small_logo_black {
        display: none;
    }
    .cd-morph-dropdown .header_block .header_small_logo_white {
        display: none;
    }
    .cd-morph-dropdown .header_block .header_btn {
        display: inline-block;
        position: absolute;
        top: 15px;
        right: 0px;
    }
    .cd-morph-dropdown .header_block .header_btn .btn-flat-border {
        display: inline-block;
        padding: 0.3em 1em;
        text-decoration: none;
        color: #1abc9c;
        border: solid 1px #1abc9c;
        border-radius: 0px;
        transition: .2s;
        font-size: 1.2rem;
        vertical-align: 10px;
    }
    .cd-morph-dropdown .header_block .header_btn .btn-flat-border:hover {
        background: #1abc9c;
        color: #fff;
    }
    .cd-morph-dropdown .header_block .header_btn .btn-flat-border_active {
        display: inline-block;
        padding: 0.3em 1em;
        text-decoration: none;
        background: #1abc9c;
        color: #fff;
        border: solid 1px #1abc9c;
        border-radius: 0px;
        font-size: 1.2rem;
        vertical-align: 10px;
    }

    
    .cd-morph-dropdown .morph-dropdown-wrapper {
        /* dropdown wrapper - used to create the slide up/slide down effect when dropdown is revealed/hidden */
        display: block;
        top: 120px;
        /* overwrite mobile style */
        width: auto;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
        /* Force Hardware acceleration */
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        will-change: transform;
        -webkit-transform: translateY(20px);
            -ms-transform: translateY(20px);
                transform: translateY(20px);
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
      }
    .cd-morph-dropdown.is-dropdown-visible .morph-dropdown-wrapper {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
    .cd-morph-dropdown .dropdown-list {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
        visibility: hidden;
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        will-change: transform, width, height;
        -webkit-transition: visibility .3s;
        transition: visibility .3s;
        box-shadow: 0 10px 20px 10px rgba(0, 0, 0, 0.2);
    }
    .no-csstransitions .cd-morph-dropdown .dropdown-list {
        display: none;
    }
    .cd-morph-dropdown .dropdown-list::before {
        /* dropdown top triangle */
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #fff;
        opacity: 0;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
    }
    .cd-morph-dropdown .dropdown-list > ul {
        position: relative;
        z-index: 1;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }
    .cd-morph-dropdown.is-dropdown-visible .dropdown-list {
        visibility: visible;
        -webkit-transition: width .3s, height .3s, -webkit-transform .3s;
        transition: width .3s, height .3s, -webkit-transform .3s;
        transition: transform .3s, width .3s, height .3s;
        transition: transform .3s, width .3s, height .3s, -webkit-transform .3s;
    }
    .cd-morph-dropdown.is-dropdown-visible .dropdown-list::before {
        opacity: 1;
    }
    .cd-morph-dropdown .dropdown {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        -webkit-transition: opacity .3s, visibility .3s;
        transition: opacity .3s, visibility .3s;
    }
    .cd-morph-dropdown .dropdown.active {
        opacity: 1;
        visibility: visible;
    }
    .cd-morph-dropdown .dropdown.move-left .content {
        -webkit-transform: translateX(-100px);
            -ms-transform: translateX(-100px);
                transform: translateX(-100px);
    }
    .cd-morph-dropdown .dropdown.move-right .content {
        -webkit-transform: translateX(100px);
            -ms-transform: translateX(100px);
                transform: translateX(100px);
    }
    .cd-morph-dropdown .label {
        /* hide the label on bigger devices */
        display: none;
    }
    .cd-morph-dropdown .content {
        padding: 1.5em 2.5em;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
        text-align: left;
    }
    .cd-morph-dropdown .content > ul::after {
        clear: both;
        content: "";
        display: block;
    }
    .cd-morph-dropdown .content > ul > li {
        width: 100%;
        float: left;
    }
    .cd-morph-dropdown .content > ul > li:nth-of-type(2n) {
        margin-right: 0;
    }
    .cd-morph-dropdown .links .content > ul > li {
        margin-top: 0;
    }
    .cd-morph-dropdown .links .content,
    .cd-morph-dropdown .button .content {
        width: 200px;
    }
    .cd-morph-dropdown .links-list a {
        font-size: 1.6rem;
        margin-left: 0;
        color: #999;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-morph-dropdown .links-list a:hover, a:focus {
        color: #000;
        text-decoration: none;
        outline: 0;
    }
    .cd-morph-dropdown .links-list a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-morph-dropdown .bg-layer {
        /* morph dropdown background */
        position: absolute;
        top: 0;
        left: 0;
        height: 0;
        width: 0;
        background: #fff;
        opacity: 0;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
        -webkit-transform-origin: top left;
            -ms-transform-origin: top left;
                transform-origin: top left;
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        will-change: transform;
        -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
    }
    .cd-morph-dropdown.is-dropdown-visible .bg-layer {
        opacity: 1;
        -webkit-transition: opacity .3s, -webkit-transform .3s;
                transition: opacity .3s, -webkit-transform .3s;
        transition: transform .3s, opacity .3s;
        transition: transform .3s, opacity .3s, -webkit-transform .3s;
    }
}




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

Main site content

-------------------------------- */
@media only screen and (max-width: 767px) {
    .cd-main-content {
        min-height: 100vh;
        background-color: #fff;
        padding-top: 60px;
    }


    .top-img {
        background: url(../img/equipment.jpeg) no-repeat center top;
        background-attachment: scroll;
        background-position: 50% 50%;
        height: 250px;        
        width: auto;
        -webkit-background-size: 100%;
        -moz-background-size: 100%;
        -o-background-size: 100%;
        background-size: 100%;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
    .top-img .title {
        display: block;
        position: relative;
        width: 90%;
        height: 250px;
        margin: 0 auto;
    }
    .top-img .title h1 {
        display: inline-block;
        position: absolute;
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.5em;
        color: #fff;
        top: 50%;
        transform: translateY(-50%);
        text-shadow: 0px 0px 6px #000;
    }
    
     
    .band_1 {
        background-color: #fff;
        width: 100%;
        padding: 40px 0;
    }
    
    
    .content_1 {
        display: block;
        width: 90%;
        margin: 0 auto;
    }
    
    
    .text_1 {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 0 0 10px 0;
        text-align: justify;
        text-justify: inter-ideograph;
        word-wrap : break-word;
        overflow-wrap : break-word;
    }
    .text_2 {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 10px 0 0 0;
        text-align: justify;
        text-justify: inter-ideograph;
        word-wrap : break-word;
        overflow-wrap : break-word;
    }
    .cd-main-content i {
        margin-right: 0.5em;
    }
    

    .cd-main-content a {
        color: #0b735f;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content a:hover, a:focus {
        color: #1abc9c;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    
    
    .band_link {
        background-color: #000;
        position: relative;
        background-attachment: scroll;
        background-image: url(../img/background.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
        width: auto;
        padding: 10px 0 40px 0;
    }
    .band_link::before {
        content: '';
        background-color: rgba(0,0,0,.7);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .content_link {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        align-self: flex-start;
        width: 90%;
        margin: 0 auto;
    }
    .block_link {
        width: 50%;
        margin: 30px 0 0 0;
        border-left: solid 1px #fff;
        position: relative;
        z-index: 5;
    }
    .cd-main-content .text_link_1 a {
        display: block;
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.5em;
        color: #fff;
        margin: 0.5em 0 1em 1em;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_1 a:hover, a:focus {
        color: #777;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content .text_link_1 a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_2 a {
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #fff;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_2 li {
        margin: 0 0.5em 0.5em 1.5em;
        text-align: left;
    }
    .cd-main-content .text_link_2 a:hover, a:focus {
        color: #777;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content .text_link_2 a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
}




@media screen and (min-width: 768px) and (max-width: 1024px) {
    .cd-main-content {
        min-height: 100vh;
        background-color: #fff;
        padding-top: 80px;
    }


    .top-img {
        background: url(../img/equipment.jpeg) no-repeat center top;
        background-attachment: scroll;
        background-position: 50% 50%;
        height: 350px;        
        width: auto;
        -webkit-background-size: 100%;
        -moz-background-size: 100%;
        -o-background-size: 100%;
        background-size: 100%;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
    .top-img .title {
        display: block;
        position: relative;
        width: 90%;
        height: 350px;
        margin: 0 auto;
    }
    .top-img .title h1 {
        display: inline-block;
        position: absolute;
        font-size: 3.3rem;
        font-weight: 700;
        line-height: 1.5em;
        color: #fff;
        top: 50%;
        transform: translateY(-50%);
        text-shadow: 0px 0px 7px #000;
    }
    
     
    .band_1 {
        background-color: #fff;
        width: 100%;
        padding: 60px 0;
    }

    
    .content_1 {
        display: block;
        width: 90%;
        margin: 0 auto;
    }
    
    
    .text_1 {
        font-size: 1.7rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 0 0 15px 0;
        text-align: justify;
        text-justify: inter-ideograph;
        word-wrap : break-word;
        overflow-wrap : break-word;
    }
    .text_2 {
        font-size: 1.7rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 15px 0 0 0;
        text-align: justify;
        text-justify: inter-ideograph;
        word-wrap : break-word;
        overflow-wrap : break-word;
    }
    .cd-main-content i {
        margin-right: 0.5em;
    }
    

    .cd-main-content a {
        color: #0b735f;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content a:hover, a:focus {
        color: #1abc9c;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    
    
    .band_link {
        background-color: #000;
        position: relative;
        background-attachment: scroll;
        background-image: url(../img/background.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
        width: auto;
        padding: 20px 0 60px 0;
    }
    .band_link::before {
        content: '';
        background-color: rgba(0,0,0,.7);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .content_link {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        align-self: flex-start;
        width: 90%;
        margin: 0 auto;
    }
    .block_link {
        width: 50%;
        margin: 40px 0 0 0;
        border-left: solid 1px #fff;
        position: relative;
        z-index: 5;
    }
    .cd-main-content .text_link_1 a {
        display: block;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.5em;
        color: #fff;
        margin: 0.5em 0 1em 1em;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_1 a:hover, a:focus {
        color: #777;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content .text_link_1 a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_2 a {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #fff;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_2 li {
        margin: 0 1em 0.5em 1.5em;
        text-align: left;
    }
    .cd-main-content .text_link_2 a:hover, a:focus {
        color: #777;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content .text_link_2 a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
}




@media only screen and (min-width: 1025px) {
    .cd-main-content {
        min-height: 100vh;
        background-color: #fff;
        padding-top: 120px;
    }


    .top-img {
        background: url(../img/equipment.jpeg) no-repeat center top;
        background-attachment: scroll;
        background-position: 50% 50%;
        height: 400px;        
        width: auto;
        -webkit-background-size: 100%;
        -moz-background-size: 100%;
        -o-background-size: 100%;
        background-size: 100%;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
    .top-img .title {
        display: block;
        position: relative;
        width: 1000px;
        height: 400px;
        margin: 0 auto;
    }
    .top-img .title h1 {
        display: inline-block;
        position: absolute;
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 1.5em;
        color: #fff;
        top: 50%;
        transform: translateY(-50%);
        text-shadow: 0px 0px 8px #000;
    }
    
     
    .band_1 {
        background-color: #fff;
        width: 100%;
        padding: 80px 0;
    }
    
    
    .content_1 {
        display: block;
        width: 1000px;
        margin: 0 auto;
    }
    
    
    .text_1 {
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 0 0 20px 0;
        text-align: justify;
        text-justify: inter-ideograph;
        word-wrap : break-word;
        overflow-wrap : break-word;
    }
    .text_2 {
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 20px 0 0 0;
        text-align: justify;
        text-justify: inter-ideograph;
        word-wrap : break-word;
        overflow-wrap : break-word;
    }
    .cd-main-content i {
        margin-right: 0.5em;
    }
    

    .cd-main-content a {
        color: #0b735f;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content a:hover, a:focus {
        color: #1abc9c;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    
    
    .band_link {
        background-color: #000;
        position: relative;
        background-attachment: scroll;
        background-image: url(../img/background.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
        width: auto;
        padding: 40px 0 80px 0;
    }
    .band_link::before {
        content: '';
        background-color: rgba(0,0,0,.7);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .content_link {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        align-self: flex-start;
        width: 1000px;
        margin: 0 auto;
    }
    .block_link {
        width: 25%;
        margin: 40px 0 0 0;
        border-left: solid 1px #fff;
        position: relative;
        z-index: 5;
    }
    .cd-main-content .text_link_1 a {
        display: block;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.5em;
        color: #fff;
        margin: 0.5em 0 1em 1em;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_1 a:hover, a:focus {
        color: #777;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content .text_link_1 a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_2 a {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #fff;
        text-decoration: none;
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
    .cd-main-content .text_link_2 li {
        margin: 0 1em 0.5em 1.5em;
        text-align: left;
    }
    .cd-main-content .text_link_2 a:hover, a:focus {
        color: #777;
        text-decoration: none;
        outline: 0;
    }
    .cd-main-content .text_link_2 a:before, a:after {
        -webkit-transition: color .1s ease-in, background .1s ease-in;
        -moz-transition: color .1s ease-in, background .1s ease-in;
        -ms-transition: color .1s ease-in, background .1s ease-in;
        -o-transition: color .1s ease-in, background .1s ease-in;
        transition: color .1s ease-in, background .1s ease-in;
    }
}



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

 Footer

-------------------------------- */
@media only screen and (max-width: 767px) {
    .footer {
        background-color: #e2e2e2;
        width: 100%;
        padding: 30px 0 20px 0;
    }
    .footer_content {
        display: flex;
        margin: 0 auto;
        width: 90%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: flex-start;
        align-content: flex-start;
        align-self: flex-start;
    }
    .footer_content .footer_block_1 {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .footer_content .footer_btn {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 0.3em 1em;
        text-decoration: none;
        color: #777;
        border: solid 1px #777;
        border-radius: 0px;
        transition: .2s;
        margin: 0 0.5em 1em 0;
    }
    .footer_content .footer_btn:hover {
        background: #777;
        color: #e2e2e2;
    }
    .footer_content .footer_btn i {
        padding-right: 0.5em;
    }
    .footer_content .small_logo_gray {
        display: block;
        margin-bottom: 5px;
    }
    .footer_content .small_logo_gray img {
        height: 50px;
    }
    .footer_content .footer_univ {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #777;
        text-decoration: none;
        margin-bottom: 10px;
    }
    .footer_content .footer_copy {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #777;
        text-decoration: none;
    }
}




@media screen and (min-width: 768px) and (max-width: 1024px) {
    .footer {
        background-color: #e2e2e2;
        width: 100%;
        padding: 40px 0 20px 0;
    }
    .footer_content {
        display: flex;
        margin: 0 auto;
        width: 90%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items:flex-start;
        align-content: flex-start;
        align-self: flex-start;
    }
    .footer_content .footer_block_1 {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer_content .footer_btn {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 0.3em 2em;
        text-decoration: none;
        color: #777;
        border: solid 1px #777;
        border-radius: 0px;
        transition: .2s;
        margin: 0 1em 0 0;
    }
    .footer_content .footer_btn:hover {
        background: #777;
        color: #e2e2e2;
    }
    .footer_content .footer_btn i {
        padding-right: 0.5em;
    }
    .footer_content .small_logo_gray {
        display: block;
        margin-bottom: 5px;
    }
    .footer_content .small_logo_gray img {
        height: 50px;
    }
    .footer_content .footer_univ {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #777;
        text-decoration: none;
    }
    .footer_content .footer_copy {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #777;
        text-decoration: none;
    }
}




@media only screen and (min-width: 1025px) {
    .footer {
        background-color: #e2e2e2;
        width: 100%;
        padding: 40px 0 20px 0;
    }
    .footer_content {
        display: flex;
        margin: 0 auto;
        width: 1000px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items:flex-start;
        align-content: flex-start;
        align-self: flex-start;
    }
    .footer_block_1 {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer_content .footer_btn {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        padding: 0.3em 2em;
        text-decoration: none;
        color: #777;
        border: solid 1px #777;
        border-radius: 0px;
        transition: .2s;
        margin: 0 1em 0 0;
    }
    .footer_content .footer_btn:hover {
        background: #777;
        color: #e2e2e2;
    }
    .footer_content .footer_btn i {
        padding-right: 0.5em;
    }
    .footer_content .small_logo_gray {
        display: block;
        margin-bottom: 5px;
    }
    .footer_content .small_logo_gray img {
        height: 60px;
    }
    .footer_content .footer_univ {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #777;
        text-decoration: none;
    }
    .footer_content .footer_copy {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1.5em;
        color: #777;
        text-decoration: none;
    }
}
