@charset "UTF-8"; /*---------------------------------------------
    Browser Default Initialization
  ---------------------------------------------*/
html {
    overflow-y: scroll;
    height: 100%;
}

body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, section, nav, article, aside, header, address, figure, figcaption {
    margin: 0;
    padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th {
    text-align: left;
}

q::before, q::after {
    content: '';
}

object, embed {
    vertical-align: top;
}

hr, legend {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

img, abbr, acronym, fieldset {
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
}

ul li {
    list-style-type: none;
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

button {
    outline: none;
}

.flex-box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}

/*---------------------------------------------
    body
  ---------------------------------------------*/
body {
    height: 100%;
    font-family: -apple-system, blinkMacSystemFont, "Helvetica Neue", "Hiragino kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", YuGothicM, YuGothic, Meiryo, sans-serif;
    color: #555;
    line-height: 1.6;
    text-align: left;
    background-color: #FFFFFF;
}

/* IE8〜11はメイリオ */
@media screen\0 {
    body {
        font-family: 'Segoe UI', Meiryo, sans-serif;
    }
}

/* Windows */
@font-face {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothicM;
    font-weight: normal;
    src: local('YuGothic-Medium'), /* Mediumを明示的に指定 */ local('Yu Gothic Medium'), /* Chrome用 */ local('YuGothic-Regular');
    /* Windows8.1ではMediumがないのでRegularを指定 */
}

@font-face {
    font-family: YuGothicM;
    font-weight: bold;
    src: local('YoGothic-Bold'), /* Boldはそのまま */ local('Yu Gothic');
    /* Chrome用 */
}

/*---------------------------------------------
    Anchor
  ---------------------------------------------*/
a {
    outline: none;
    text-decoration: none;
    color: inherit;
}

/*---------------------------------------------
    General Settings
  ---------------------------------------------*/
#wrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    overflow: hidden;
}

p {
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
}

button {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino kaku Gothic ProN", MyYuGothicM, Meiryo, sans-serif;
}

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

.left {
    float: left;
}

.right {
    float: right;
}

.pc_only {
    display: none;
}

@media screen and (min-width : 600px) {
    .pc_only {
        display: block;
    }

    .sp_only {
        display: none;
    }
}

/*---------------------------------------------
    Header
  ---------------------------------------------*/
@media screen and (min-width: 1000px) {
    header {
        display: block !important;
    }

    #header-bar {
        position: fixed;
        z-index: 5;
        width: 100%;
        height: 40px;
        top: 0;
        left: 0;
        background-color: #3d3d3d;
    }

    #header-bar p.lead {
        float: left;
        line-height: 40px;
        color: #fff;
        font-size: 12px;
        margin-left: 30px;
    }

    #header-bar nav {
        float: right;
    }

    #target-menu li {
        float: left;
    }

    #target-menu li a {
        display: block;
        padding: 0 13px;
        line-height: 40px;
        font-size: 14px;
        color: #ccc;
        text-decoration: none;
        border-left: solid 1px #343434;
        -webkit-transition: background-color .2s linear, color .2s linear;
        transition: background-color .2s linear, color .2s linear;
    }

    #target-menu li:first-child a {
        border-left: none;
    }

    html:not(.sp) #target-menu li a:hover {
        color: #fff;
        background-color: #008099;
    }
}

#logo {
    position: fixed;
    display: table;
    width: 180px;
    height: 130px;
    top: 70px;
    left: 30px;
    padding: 0;
    overflow: hidden;
    background-color: rgba(255,255,255,1.00);
    z-index: 150;
}

#logo a {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

/*---------------------------------------------
    Global Navigation
  ---------------------------------------------*/
@media screen and (min-width: 1000px) {
    #gnav {
        position: fixed;
        z-index: 2;
        width: 180px;
        height: 360px;
        top: 200px;
        left: 30px;
    }

    #gnav:hover {
        z-index: 6;
    }

    #gnav > ul {
        height: 100%;
        background-color: rgba(0, 0, 0, .7);
    }

    #gnav.gnav-item-6 > ul > li {
        height: 16.66666666%;
    }

    #gnav.gnav-item-7 > ul > li {
        height: 14.28571429%;
    }

    #gnav > ul > li#gnav-icon-search {
        display: none;
    }

    #gnav > ul > li > span {
        position: relative;
        display: table;
        height: 100%;
    }

    #gnav > ul > li > span > a {
        display: table-cell;
        width: 180px;
        padding: 0 10px 0 20px;
        line-height: 140%;
        color: #fff;
        font-size: 83%;
        text-decoration: none;
        border-bottom: solid 1px #008099;
        vertical-align: middle;
        -webkit-transition: background-color .2s linear, border-bottom .2s linear;
        transition: background-color .2s linear, border-bottom .2s linear;
    }

    #gnav > ul > li.gnav-icon > span > a {
        padding: 0 10px 0 50px;
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon {
        display: none;
    }

    #gnav > ul > li:last-child > span > a {
        border-bottom: 0 none;
    }

    html:not(.sp) #gnav > ul > li:hover > span > a, #gnav > ul > li.parent > span > a {
        background-color: rgba(255, 255, 255, .1);
    }

    #gnav > ul > li.parent:not(:last-child) > span > a {
        border-bottom: solid 1px rgba(255, 255, 255, .0);
    }

    html:not(.sp) #gnav > ul > li:last-child:hover > span > a {
        border-bottom: 0 none;
    }

    html:not(.sp) #gnav > ul > li > span > a:hover, #gnav > ul > li.current > span > a {
        background-color: #008099 !important;
    }

    #gnav > ul > li > ul {
        position: fixed;
        display: block !important;
        width: 0;
        height: 490px;
        height: auto;
        /* min-height: calc(100% - 235px); */
        top: 70px;
        margin: 0 0 0 180px;
        overflow: hidden;
        background-color: rgba(24, 24, 24, .7);
        -webkit-transition: width .2s ease-out, height .2s ease-out;
        transition: width .2s ease-out, height .2s ease-out;
    }
    #gnav > ul > li#gnav-icon-works > ul{
    top: 318px;
}

    #gnav > ul > li:hover > ul {
        width: 180px;
    }

    #gnav > ul > li > ul:hover {
        overflow: visible;
    }

    #gnav > ul > li > ul > li {
        clear: both;
        float: right;
    }

    #gnav > ul > li > ul > li > span > a {
        position: relative;
        display: block;
        width: 180px;
        padding: 10px 20px;
        line-height: 140%;
        color: #fff;
        font-size: 83%;
        text-decoration: none;
        -webkit-transition: background-color .2s linear;
        transition: background-color .2s linear;
    }

    html:not(.sp) #gnav > ul > li > ul > li:hover > span > a, #gnav > ul > li > ul > li.parent > span > a {
        background-color: rgba(255, 255, 255, .1);
    }

    html:not(.sp) #gnav > ul > li > ul > li > span > a:hover, #gnav > ul > li > ul > li.current > span > a {
        background-color: #008099 !important;
    }

    #gnav > ul > li > ul > li > ul {
        position: fixed;
        display: block !important;
        width: 0;
        height: 540px;
        top: 70px;
        margin: 0 0 0 180px;
        overflow: hidden;
        background-color: rgba(47, 47, 47, .7);
        -webkit-transition: width .2s ease-out, height .2s ease-out;
        transition: width .2s ease-out, height .2s ease-out;
    }

    #gnav > ul > li > ul:hover > li > ul {
        height: 88%;
    }

    #gnav > ul > li > ul > li:hover > ul {
        width: 180px;
    }

    #gnav > ul > li > ul > li > ul > li {
        clear: both;
        float: right;
    }

    #gnav > ul > li > ul > li > ul > li > span > a {
        position: relative;
        display: block;
        width: 180px;
        padding: 15px 20px;
        line-height: 140%;
        color: #fff;
        font-size: 83%;
        text-decoration: none;
        -webkit-transition: background-color .2s linear;
        transition: background-color .2s linear;
    }

    html:not(.sp) #gnav > ul > li > ul > li > ul > li > span > a:hover, #gnav > ul > li > ul > li > ul > li.current > span > a {
        background-color: #9fd25b;
    }
}

#gnav > ul > li.gnav-icon > span > a:after {
    content: "";
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 15px;
    margin: -12px 0 0;
    background-repeat: no-repeat;
    background-position: 0 center;
}

#gnav-icon-company > span > a:after {
    background-image: url(../../img/gnav01.png);
    background-size: 15px 22px;
}

#gnav-icon-company > span > a:hover:after {
    background-image: url(../../img/gnav01_on.png);
}

#gnav-icon-service > span > a:after {
    background-image: url(../../img/gnav02.png);
    background-size: 20px 20px;
}

#gnav-icon-service > span > a:hover:after {
    background-image: url(../../img/gnav02_on.png);
}

#gnav-icon-works > span > a:after {
    background-image: url(../../img/gnav03.png);
    background-size: 13px 21px;
}

#gnav-icon-works > span > a:hover:after {
    background-image: url(../../img/gnav03_on.png);
}

#gnav-icon-recruit > span > a:after {
    background-image: url(../../img/gnav04.png);
    background-size: 12px 18px;
}

#gnav-icon-recruit > span > a:hover:after {
    background-image: url(../../img/gnav04_on.png);
}

#gnav-icon-access > span > a:after {
    background-image: url(../../img/gnav05.png);
    background-size: 15px 21px;
}

#gnav-icon-access > span > a:hover:after {
    background-image: url(../../img/gnav05_on.png);
}

#gnav-icon-inquiry > span > a:after {
    background-image: url(../../img/gnav06.png);
    background-size: 22px 22px;
}

#gnav-icon-inquiry > span > a:hover:after {
    background-image: url(../../img/gnav06_on.png);
}

#sp-gnav-btn {
    display: none;
}

/*---------------------------------------------
    Branding Image
  ---------------------------------------------*/
#branding-container {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 40px 55% 0 0;
}

#branding-element {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #008099;
    background-image: url(../../img/main_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#telework #branding-element {
    background-image: url(../../img/telework/main_bg.jpg);
}

.branding-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

.branding-img:not(:first-of-type) {
    display: none;
}

.branding-movie {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.branding-movie video {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

.branding-text.pc {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 570px 30px 100px 30px;
    z-index: 100;
}

.branding-text.sp {
    display: none;
}

.branding-text p {
    position: absolute;
    bottom: 100px;
    padding: 0;
    color: #fff;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝B", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    font-size: 215%;
    line-height: 140%;
    vertical-align: middle;
}

@media screen and (max-width: 1160px) {
    .branding-text p {
        font-size: 180%;
    }
}

.branding-text p.small {
    display: none;
}

/*---------------------------------------------
    Contents
  ---------------------------------------------*/
#contents-container {
    position: relative;
    z-index: 4;
    width: 55%;
    padding: 40px 0 0;
    left: 45%;
}

/*---------------------------------------------
    Promotion
  ---------------------------------------------*/
.promotion-container {
    height: 0;
    padding-bottom: 37.5%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.promotion-element li {
    background-color: #000;
    overflow: hidden;
}

.promotion-element li a {
    display: block;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

html:not(.sp) .promotion-element a:hover {
    opacity: .8;
}

.promotion-element img {
    width: 100%;
}

.promotion-pagenation {
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    line-height: 0;
}

.promotion-pagenation ol {
    padding: 0;
}

.promotion-pagenation li {
    position: relative;
    display: inline-block;
    top: -30px;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    vertical-align: middle;
}

.promotion-pagenation li a {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #fff;
    text-indent: -9999px;
    text-align: left;
    overflow: hidden;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background-color .2s linear;
    transition: background-color .2s linear;
}

html:not(.sp) .promotion-pagenation a:not(.flex-active):hover {
    background-color: #9fd25b;
}

.promotion-pagenation .flex-active {
    background-color: transparent;
}

.promotion-pagenation .flex-active:before, .promotion-pagenation .flex-active:after {
    content: "";
    position: absolute;
    display: block;
    background-color: #094;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.promotion-pagenation .flex-active:before {
    width: 20px;
    height: 20px;
    top: -5px;
    left: -5px;
    opacity: .5;
}

.promotion-pagenation .flex-active:after {
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
}

.promotion-btn-back, .promotion-btn-next {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    top: 50%;
    margin: -20px 0 0;
}

.promotion-btn-back {
    left: 3%;
}

.promotion-btn-next {
    right: 3%;
}

.promotion-btn-back a, .promotion-btn-next a {
    display: block;
    width: 100%;
    height: 100%;
    border: solid 2px #fff;
    text-indent: -9999px;
    overflow: hidden;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: background-color .2s linear, border .2s linear;
    transition: background-color .2s linear, border .2s linear;
}

.promotion-btn-back a:before, .promotion-btn-next a:before {
    content: "";
    position: absolute;
    display: block;
    width: 17px;
    height: 1px;
    top: 20px;
    left: 11px;
    background-color: #fff;
}

.promotion-btn-back a:after {
    content: "";
    position: absolute;
    display: block;
    width: 9px;
    height: 9px;
    top: 16px;
    left: 12px;
    border-bottom: solid 1px #fff;
    border-left: solid 1px #fff;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.promotion-btn-next a:after {
    content: "";
    position: absolute;
    display: block;
    width: 9px;
    height: 9px;
    top: 16px;
    right: 12px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

html:not(.sp) .promotion-btn-back a:hover, html:not(.sp) .promotion-btn-next a:hover {
    background-color: #008099;
    border: solid 2px #008099;
}

/*---------------------------------------------
    common-contents
  ---------------------------------------------*/
.link ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.link ul li {
    width: 48%;
    max-width: 560px;
    margin-bottom: 15px;
}

.link ul li a {
    display: block;
}

.link ul li a:hover {
    opacity: 0.7;
}

.link ul li a img {
    width: 100%;
}

/*---------------------------------------------
    Footer
  ---------------------------------------------*/
footer {
    color: #fff;
    padding: 40px 4% 30px;
    background-color: #008099;
}

footer .logo {
    margin-bottom: 50px;
}

footer .inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}

footer .row1 ul:last-child {
    margin-top: 50px;
}

footer ul li a {
    display: inline-block;
}

footer ul li.cate {
    margin-bottom: 12px;
}

footer ul li.cate a {
    font-size: 16px;
    font-weight: bold;
    padding-left: 20px;
    position: relative;
}

footer ul li.cate a:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 16px;
    height: 16px;
    top: 5px;
    left: 0;
}

footer ul li:not(.cate) {
    margin-bottom: 7px;
}

footer ul li:not(.cate) a {
    font-size: 14px;
    font-weight: normal;
    margin-left: 20px;
    padding-left: 12px;
    position: relative;
}

footer ul li:not(.cate) a:before {
    position: absolute;
    content: '';
    left: 0;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #fff;
}

footer .copy {
    text-align: right;
    font-size: 14px;
    margin-top: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb20 {
    margin-bottom: 20px;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-around;
    justify-content: space-between;
}

.icon_lists {
    margin: 0 0 60px;
    padding: 20px;
    background-color: #008099;
}

#main .icon_lists .txt {
    font-size: 26px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
}

.icon_lists ul {
    margin: 0 0 20px;
}

.icon_lists li {
    width: 22%;
}

.icon_lists h3 {
    text-align: center;
    font-weight: bold;
    color: #008099;
    color: #FFF;
    margin: 0 0 0px;
}

.icon_lists .img {
    background: #008099;
    padding: 0px;
    border-radius: 100%;
    padding: 20px;
    display: block;
    margin: auto;
}

.icon_lists img {
    max-width: 100%;
    height: auto;
}

.imgText {
    max-width: 600px;
    margin: 0 auto 80px;
    border: 1px solid #404040;
    border-radius: 10px 10px 0 0;
}

.imgText .img {
    margin: 0 auto 20px;
    position: relative;
    /*     filter: brightness(50%); */
}

.imgText img {
    border-radius: 10px 10px 0 0;
}

.imgText .txt {
    padding: 0 20px;
}

.imgText h3 {
    font-size: 40px;
    margin: 0 0 20px;
}

.imgText p {
    margin: 0 0 20px;
}

.imgText ul {
    background: #efefef;
    border-radius: 10px;
    padding: 20px;
    margin: 0 0 20px;
}

.imgText li {
    font-size: 18px;
    text-indent: -1em;
    padding-left: 1em;
}

.btn_detail {
    font-size: 20px;
    display: block;
    padding: 20px 0;
    margin: 0 auto 40px;
    max-width: 300px;
    background: #77bc28;
    width: 100%;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 5px #a59f9f;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn_detail:hover {
    background: #008099;
    box-shadow: 0 0 10px #a59f9f;
    border-radius: 10px;
}

.greeting_block {
    margin: 0 0 50px;
}

.greeting_block .txt {
    width: 55%;
}

.greeting_block .txt p {
}

.greeting_block .img {
    width: 40%;
}

.greeting_block img {
}

.greeting_block .name {
}

.greeting_block .name span {
}

.greeting_block .name img {
}

.company_links {
    margin: 0 0 50px;
}

.company_links ul {
}

.company_links li {
    width: 32%;
    border: 1px solid #000;
    margin: 0 0 20px;
}

.company_links a {
    color: #000;
    font-weight: bold;
    font-size: 14px;
    display: block;
    padding: 10px;
    text-align: center;
}

/*---------------------------------------------
    For - 999px and Print
  ---------------------------------------------*/
@media screen and (max-width: 999px) {
    body {
        background-color: #fff;
        position: relative;
    }

    #wrapper {
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
    }

    #logo {
        position: absolute;
        width: 150px;
        height: 100px;
        top: 30px;
        left: 30px;
    }

    #logo img {
        width: 150px;
    }

    header {
        width: 90%;
        margin: 0 auto;
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
        z-index: 999;
        background: #3d3d3d;
        display: none;
    }

    #header-bar {
        display: none;
    }

    #gnav {
        display: block;
    }

    #gnav a {
        color: #fff;
        line-height: 140%;
        -webkit-transition: background-color .2s linear, color .2s linear;
        transition: background-color .2s linear, color .2s linear;
    }

    html:not(.sp) #gnav a:hover, #gnav .current > span > a {
        background-color: #008099;
    }

    #gnav > ul > li#gnav-icon-search {
        display: block;
    }

    #gnav li > span {
        position: relative;
        display: table;
        width: 100%;
    }

    #gnav > ul > li > span > a {
        display: table-cell;
        height: 60px;
        padding: 0 15px;
        font-size: 14px;
        border-bottom: solid 1px #008099;
        vertical-align: middle;
    }

    #gnav > ul > li:last-child > span > a {
        border-bottom: none;
    }

    #gnav > ul > li.gnav-icon > span > a {
        padding: 0 15px 0 50px;
    }

    #gnav-icon-search > span > a:after {
        background-image: url(../../img/gnav07.png);
        background-size: 16px 20px;
    }

    #gnav-icon-search > span > a:hover:after {
        background-image: url(../../img/gnav07_on.png);
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon {
        position: relative;
        width: 60px;
        padding: 0;
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon:after {
        content: none;
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon span {
        position: absolute;
        left: 15px;
        width: 50%;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        transition: all .3s;
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon span:nth-of-type(1) {
        top: 30px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon span:nth-of-type(2) {
        top: 30px;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    /*＋、－切り替え*/
    #gnav > ul > li.gnav-icon > span > a.accordion_icon.active span:nth-of-type(1) {
        display: none;
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon.active span:nth-of-type(2) {
        top: 30px;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    #gnav > ul ul {
        display: none;
    }

    #gnav > ul > li > ul {
        border-bottom: solid 1px #008099;
    }

    #gnav > ul > li > ul > li > span > a {
        display: table-cell;
        padding: 15px 15px 15px 50px;
        font-size: 14px;
        position: relative;
    }

    #gnav > ul > li > ul > li > span > a:before {
        position: absolute;
        content: '';
        top: 21px;
        left: 20px;
        width: 7px;
        height: 7px;
        border-top: 2px solid #008099;
        border-right: 2px solid #008099;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #sp-gnav-btn {
        position: absolute;
        display: block;
        top: 30px;
        right: 25px;
        cursor: pointer;
        z-index: 150;
    }

    #sp-gnav-btn a {
        display: inline-block;
        margin-left: 10px;
    }

    #branding-container {
        position: relative;
        width: 100%;
        height: 400px;
        padding: 0;
        z-index: 100;
    }

    #branding-element {
        position: relative;
    }

    .branding-movie {
        display: none;
    }

    .branding-movie video {
        display: none;
    }

    .branding-text.pc {
        display: none;
    }

    .branding-text.sp {
        display: block;
        position: absolute;
        bottom: 20px;
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
    }

    .branding-text p {
        font-size: 200%;
        display: block;
        position: static;
        margin-bottom: 12px;
    }

    .branding-text p.small {
        font-size: 100%;
        display: block;
        position: static;
    }

    #contents-container {
        width: 100%;
        padding: 0;
        left: 0;
    }
}

/*---------------------------------------------
    For - 599px
  ---------------------------------------------*/
@media screen and (max-width: 599px) {
    .sp_only {
        display: inline-block;
    }

    .sp_none {
        display: none;
    }

    #logo {
        position: absolute;
        width: 120px;
        height: 90px;
        top: 15px;
        left: 15px;
    }

    #logo img {
        width: 120px;
    }

    header {
        top: 60px;
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon {
        width: 40px;
    }

    #gnav > ul > li.gnav-icon > span > a.accordion_icon span {
        left: 10px;
    }

    #sp-gnav-btn {
        top: 15px;
        right: 10px;
    }

    #sp-gnav-btn a {
        width: 32px;
        margin-left: 5px;
    }

    #branding-container {
        box-sizing: border-box;
        width: 100%;
        height: 300px;
        position: static;
    }

    #branding-element {
    }

    .branding-movie {
    }

    .branding-text.sp {
    }

    .branding-text p {
        font-size: 24px;
        position: static;
    }

    .branding-text p.small {
        font-size: 13px;
        bottom: 100px;
        position: static;
    }

    .promotion-btn-back, .promotion-btn-next {
        width: 21px;
        height: 21px;
        margin-top: -10px;
    }

    .promotion-btn-back a:before, .promotion-btn-next a:before {
        width: 10px;
        top: 10px;
        left: 5px;
    }

    .promotion-btn-back a:after {
        width: 7px;
        height: 7px;
        top: 7px;
        left: 6px;
    }

    .promotion-btn-next a:after {
        width: 7px;
        height: 7px;
        top: 7px;
        right: 6px;
    }

    .contents-element:first-of-type {
        top: 0;
    }

    .contents-element {
        padding: 30px 4% 30px;
    }

    .contents-element h2 {
        font-size: 27px;
        margin-bottom: 5px;
    }

    .contents-element p.lead {
        font-size: 14px;
    }

    /*---------------------------------------------
    common-contents
  ---------------------------------------------*/
    .sns.sp_only {
        padding: 30px 4%;
    }

    .sns.sp_only ul {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
    }

    .sns.sp_only ul li {
        width: 48%;
    }

    .contents-element.link {
        padding-top: 0;
    }

    .link ul li {
        width: 100%;
    }

    footer {
        padding: 40px 4% 30px;
    }

    footer .logo {
        width: 60%;
        margin-bottom: 30px;
    }

    footer .inner {
        display: none;
    }

    footer .sp_menu {
        display: block;
    }

    footer .sp_menu ul {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    footer .sp_menu ul li {
        width: 50%;
    }

    footer .sp_menu ul li:not(.cate) a {
        margin-left: 0;
        font-weight: bold;
    }

    footer .copy {
        text-align: center;
        font-size: 12px;
    }

    .icon_lists {
        margin: 0 auto 40px;
        max-width: 600px;
    }

    #telework .icon_lists .txt {
        font-size: 14px;
    }

    .icon_lists ul {
        max-width: 240px;
        margin: 0 auto 20px;
    }

    .icon_lists li {
        width: 50%;
    }

    .icon_lists h3 {
        font-size: 14px;
    }

    .icon_lists .img {
        padding: 10px;
    }

    .icon_lists img {
    }

    .imgText {
        margin: 0 auto 60px;
    }

    .imgText .img {
    }

    .imgText img {
    }

    .imgText .txt {
    }

    .imgText h3 {
        font-size: 28px;
        margin: 0 0 10px;
        text-align: center;
    }

    .imgText p {
    }

    .imgText ul {
    }

    .imgText li {
        font-size: 14px;
    }

    .btn_detail {
        font-size: 18px;
        padding: 10px;
    }

    .btn_detail:hover {
    }

    .greeting_block {
    }

    .greeting_block .txt {
        width: 100%;
        margin: 0 0 30px;
    }

    .greeting_block .txt p {
    }

    .greeting_block .img {
        width: 100%;
        text-align: center;
    }

    .greeting_block img {
        max-width: 260px;
        margin: 0 auto;
        display: block;
    }

    #greeting #main .greeting_block .name {
        text-align: center;
    }

    .greeting_block .name span {
    }

    .greeting_block .name img {
    }

    .company_links {
    }

    .company_links ul {
    }

    .company_links li {
        width: 48%;
    }

    .company_links a {
    }
}

.error404 #main {
    padding: 50px 4%;
}
