@charset 'UTF-8';
/* --------------------------------------------------------------------------------
*
*   layout
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   color
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   font
*
-------------------------------------------------------------------------------- */
/*
*
*   web font
*
*/
/* --------------------------------------------------------------------------------
*
*   easing
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   prefix
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   media query
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   font-size対応表
*
-------------------------------------------------------------------------------- */
/*  ================================================================================
Base font = 12px
================================================================================ */
/* ================================================================================
Base font = 13px
================================================================================ */
/* ================================================================================
Base font = 15px
================================================================================ */
/* ================================================================================
Base font = 16px
================================================================================ */
/* --------------------------------------------------------------------------------
*
*   mixin
*
-------------------------------------------------------------------------------- */
/*
  *
  *   how to
  *
  */
/* --------------------------------------------------------------------------------
*
*   transform
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   transition
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   animation
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   media query
*
-------------------------------------------------------------------------------- */
/*
    *
    *   how to   
    *
    */
/* --------------------------------------------------------------------------------
*
*   portrait,landscape
*
-------------------------------------------------------------------------------- */
/*
  *
  *   how to
  *
  */
/* --------------------------------------------------------------------------------
*
*   function
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   common
*
-------------------------------------------------------------------------------- */
/*
*
*   how to
*
*/
/*
*
*   font
*
*/
/*
 *
 *   web font   
 *
 */
body
{
    margin: 0;
    padding: 0;

    border: none;
}

/* image */
img,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
form,
fieldset,
textarea
{
    font-size: 100%;
    font-weight: normal;
    font-style: normal;

    margin: 0;
    padding: 0;

    list-style: none;

    text-decoration: none;

    border: 0;
}

a
{
    cursor: pointer;
}

table
{
    font-size: 100%;
}

hr.separator
{
    display: none;
}

input,
button,
select,
textarea
{
    resize: none;

    border: none;
    border-radius: 0;
    outline: none;
    background-color: transparent;

    -webkit-appearance: none;
}

img
{
    vertical-align: bottom;
}

/* --------------------------------------------------------------------------------
*
*   html,body
*
-------------------------------------------------------------------------------- */
html
{
    font-family: 'FP-ヒラギノ角ゴ ProN W6', 'FP-HiraKakuProN-W6';
    font-size: 13px;

    letter-spacing: 0;

    color: #2c2c2c;
    background-color: #fff;

    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
}

/* --------------------------------------------------------------------------------
*
*   wrapper,inner
*
-------------------------------------------------------------------------------- */
#wrapper
{
    padding-top: 51px;

    opacity: 0;
}

/* --------------------------------------------------------------------------------
*
*   link
*
-------------------------------------------------------------------------------- */
a
{
    text-decoration: none;

    color: #fff;
}

a:hover
{
    text-decoration: none;

    color: #fff;
}

a:visited
{
    text-decoration: none;

    color: #fff;
}

a:active
{
    text-decoration: none;

    color: #fff;
}

/* --------------------------------------------------------------------------------
*
*   hover
*
-------------------------------------------------------------------------------- */
/*
    *
    *   img hovers
    *
    */
.op
{
    transition: opacity .25s cubic-bezier(.25, .46, .45, .94) 0s;
}

.op:hover
{
    cursor: pointer;

    opacity: .4 !important;
}

.scale
{
    transition: -webkit-transform 1.3s cubic-bezier(.39, .575, .565, 1) 0s;
    transition:         transform 1.3s cubic-bezier(.39, .575, .565, 1) 0s;
    transition:         transform 1.3s cubic-bezier(.39, .575, .565, 1) 0s, -webkit-transform 1.3s cubic-bezier(.39, .575, .565, 1) 0s;
}

.scale:hover
{
    cursor: pointer;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.scale_img
{
    transition: -webkit-transform .3s cubic-bezier(.25, .46, .45, .94) 0s;
    transition:         transform .3s cubic-bezier(.25, .46, .45, .94) 0s;
    transition:         transform .3s cubic-bezier(.25, .46, .45, .94) 0s, -webkit-transform .3s cubic-bezier(.25, .46, .45, .94) 0s;
}

.scale_img:hover
{
    cursor: pointer;
    -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
            transform: scale(1.15);
}

/*
    *
    *   text hover
    *   広がる、色が変わる(背景色と文字色)
    */
.under
{
    text-decoration: underline !important;
}

.under:hover
{
    text-decoration: none !important;
}

._under
{
    text-decoration: none !important;
}

._under:hover
{
    text-decoration: underline !important;
}

.under__red
{
    border-bottom: none;
}

.under__red:hover
{
    border-bottom: 1px solid #c30000;
}

/*
    *
    *   cursor
    *
    */
.cp
{
    cursor: pointer;
}

/* --------------------------------------------------------------------------------
*
*   title
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   p
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   header
*
-------------------------------------------------------------------------------- */
.menuFixed
{
    position: fixed !important;
}

#header
{
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    width: 100%;
    min-width: 320px;

    opacity: 0;
    border-bottom: 1px solid #f2f2f2;
    background-color: #fff;
    /*
  *
  *   shareDetail
  *
  */
    /*
  *
  *   menu
  *
  */
}

#header:after
{
    display: block;
    clear: both;

    content: '';
}

#header > .item
{
    float: left;
}

#header .logoWrap
{
    width: 50%;
    padding: 10px 0;

    text-align: center;
}

#header .menuBtnWrap
{
    width: 30%;
    padding: 19px 0 19px;

    color: #fff;
    background-color: #009b59;
}

#header .menuBtnWrap .img
{
    position: absolute;
    top: 0;
    left: -5px;
}

#header .menuBtnWrap .text
{
    font-size: 13px;

    margin-left: -25px;

    text-align: center;
    letter-spacing: 0;
}

#header .menuBtnWrap .menuBtn
{
    position: absolute;
    top: calc(50% - 2px);
    left: calc(50% + 29px);

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

#header .shareWrap
{
    width: 20%;
    padding: 7px 0 8px;

    text-align: center;

    background-color: #2c2c2c;
}

#header .shareDetail
{
    position: absolute;
    top: 51px;

    display: none;

    width: 100%;
    padding: 15px 0;

    background-color: #2c2c2c;
}

#header .shareDetail .item
{
    margin-right: 25px;
}

#header #menu
{
    font-size: 14px;

    position: fixed;
    top: 51px;

    box-sizing: border-box;
    width: 100%;

    letter-spacing: .08em;

    color: #2c2c2c;
    /*
    *
    *   accordion   
    *
    */
    /*
    *
    *   recruitlink
    *
    */
}

#header #menu .menuInner
{
    overflow: scroll;

    background-color: #2c2c2c;
}

#header #menu .accordionWrap
{
    box-sizing: border-box;
    padding: 37px;

    background-color: #009b59;
}

#header #menu .accordionWrap .accordion
{
    border-radius: 4px;
    background-color: #fff;
}

#header #menu .accordionWrap .item h3
{
    box-sizing: border-box;
    padding: 22px 20px 20px;

    color: #2c2c2c;
    border-bottom: 1px solid #dedede;
    background: url(/sp/recruit2017/assets/img/common/icon01.png) no-repeat;
    background-position: 94%;
    background-size: 7px 10px;
}

#header #menu .accordionWrap .item.subAccordion h3
{
    background: url(/sp/recruit2017/assets/img/common/icon03.png) no-repeat;
    background-position: 94%;
    background-size: 9px 9px;
}

#header #menu .accordionWrap .item.subAccordion h3.on
{
    background: url(/sp/recruit2017/assets/img/common/icon02.png) no-repeat;
    background-position: 94%;
    background-size: 9px 2px;
}

#header #menu .accordionWrap .item:last-child h3
{
    border-bottom: none;
}

#header #menu .accordionWrap .sItem
{
    box-sizing: border-box;
    padding: 17px 20px 15px;

    color: #009a5a;
    border-bottom: 1px solid #dedede;
    background: url(/sp/recruit2017/assets/img/common/icon01.png) no-repeat;
    background-color: #f1f1f1;
    background-position: 94%;
    background-size: 7px 10px;
}

#header #menu .recruitLink
{
    box-sizing: border-box;
    padding: 20px 0;

    background-color: #2c2c2c;
}

#header #menu .recruitLink .box
{
    width: 85%;
    margin: 0 auto;
    margin-bottom: 5px;
}

#header #menu .recruitLink .box .item:first-child
{
    font-size: 11px;

    box-sizing: border-box;
    width: 30%;
    padding: 16px 0 14px 25px;

    letter-spacing: .1em;

    color: #fff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background-color: #424242;
}

#header #menu .recruitLink .box .item:last-child
{
    font-size: 12px;

    box-sizing: border-box;
    width: 70%;
    padding: 15px 0 14px 20px;

    letter-spacing: .1em;

    color: #000;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background: url(/sp/recruit2017/assets/img/common/arrow_b.png) no-repeat, #fff;
    background-position: 94%;
    background-size: 19px 19px;
}

#header #menu .recruitLink a:last-child .box
{
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------------
*
*   nav
*
-------------------------------------------------------------------------------- */
/*
*
*   media query   
*
*/
/* --------------------------------------------------------------------------------
*
*   contents
*
-------------------------------------------------------------------------------- */
/*
*
*   top visual
*
*/
/*
*
*   media query   
*
*/
/* --------------------------------------------------------------------------------
*
*   footer
*
-------------------------------------------------------------------------------- */
#footer
{
    /*
  *
  *   recruitlink
  *
  */
    /*
  *
  *   linkArea
  *
  */
    /*
  *
  *   pagetop
  *
  */
    /*
  *
  *   copyright
  *
  */
}

#footer .recruitLink
{
    padding: 20px 0;

    background-color: #2c2c2c;
}

#footer .recruitLink .box
{
    width: 85%;
    margin: 0 auto;
    margin-bottom: 5px;
}

#footer .recruitLink .box .item:first-child
{
    font-size: 11px;

    box-sizing: border-box;
    width: 30%;
    padding: 16px 0 14px 25px;

    letter-spacing: .1em;

    color: #fff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background-color: #424242;
}

#footer .recruitLink .box .item:last-child
{
    font-size: 12px;

    box-sizing: border-box;
    width: 70%;
    padding: 15px 0 14px 20px;

    letter-spacing: .1em;

    color: #000;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background: url(/sp/recruit2017/assets/img/common/arrow_b.png) no-repeat, #fff;
    background-position: 94%;
    background-size: 19px 19px;
}

#footer .recruitLink a:last-child .box
{
    margin-bottom: 0;
}

#footer .linkArea
{
    padding: 15px 10px;
}

#footer .linkArea .item
{
    font-size: 11px;

    width: calc(50% - 4px);
    margin-right: 4px;

    letter-spacing: .06em;

    background-color: #f1f1f1;
}

#footer .linkArea .item:last-child
{
    width: calc(50% - 4px);
    margin-left: 4px;
}

#footer .linkArea a
{
    display: block;

    padding: 16px 0;

    color: #5a5a5a;
}

#footer .pageTop
{
    font-size: 10px;

    padding: 20px 0;

    text-align: center;

    color: #fff;
    background: url(/sp/recruit2017/assets/img/common/arrow_w.png) no-repeat, #424242;
    background-position: calc(50% + 40px) calc(50% + -1px);
    background-size: 11px 11px;
}

#footer .copyright
{
    font-size: 9px;

    padding: 20px 0;

    text-align: center;
}

/*
*
*   media query   
*
*/
/* --------------------------------------------------------------------------------
*
*   landscape
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   loading
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   pageTopWrap
*
-------------------------------------------------------------------------------- */
.pageTopWrap
{
    position: fixed;
    z-index: 9999;
    right: 0;
    bottom: 0;

    opacity: 0;
}

/* --------------------------------------------------------------------------------
*
*   bg
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   menu
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   menuBtn
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   menu btn
*
-------------------------------------------------------------------------------- */
.icon-animation
{
    display: block;

    width: 42px;
    height: 42px;
}

.icon-animation span
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 17px;
    height: 2px;
    margin-left: -8px;

    background: #fff;
}

/* --------------------------------------------------------------------------------
*
*   type1
*
-------------------------------------------------------------------------------- */
.type-1 span
{
    transition: all .3s;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

.type-1 .top
{
    -webkit-transform: translateY(-17px);
        -ms-transform: translateY(-17px);
            transform: translateY(-17px);
}

.type-1 .bottom
{
    -webkit-transform: translateY(17px);
        -ms-transform: translateY(17px);
            transform: translateY(17px);
}

.type-1.is-open .middle
{
    background: rgba(255, 255, 255, 0);
}

.type-1.is-open .top
{
    -webkit-transform: rotate(-45deg) translateY(0px);
        -ms-transform: rotate(-45deg) translateY(0px);
            transform: rotate(-45deg) translateY(0px);
}

.type-1.is-open .bottom
{
    -webkit-transform: rotate(45deg) translateY(0px);
        -ms-transform: rotate(45deg) translateY(0px);
            transform: rotate(45deg) translateY(0px);
}

/* --------------------------------------------------------------------------------
*
*   type2
*
-------------------------------------------------------------------------------- */
.type-2 span
{
    transition: all .3s;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

.type-2 .top
{
    -webkit-transform: translateY(-17px);
        -ms-transform: translateY(-17px);
            transform: translateY(-17px);
}

.type-2 .bottom
{
    -webkit-transform: translateY(17px);
        -ms-transform: translateY(17px);
            transform: translateY(17px);
}

.type-2:hover .top
{
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
}

.type-2:hover .bottom
{
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
}

.type-2.is-open .middle
{
    background: rgba(255, 255, 255, 0);
}

.type-2.is-open .top
{
    -webkit-transform: rotate(-45deg) translateY(0px);
        -ms-transform: rotate(-45deg) translateY(0px);
            transform: rotate(-45deg) translateY(0px);
}

.type-2.is-open .bottom
{
    -webkit-transform: rotate(45deg) translateY(0px);
        -ms-transform: rotate(45deg) translateY(0px);
            transform: rotate(45deg) translateY(0px);
}

/* --------------------------------------------------------------------------------
*
*   type3
*
-------------------------------------------------------------------------------- */
.type-3 span
{
    transition: all .3s;
}

.type-3 .middle
{
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
}

.type-3 .top
{
    -webkit-transform: translateY(-17px);
        -ms-transform: translateY(-17px);
            transform: translateY(-17px);
}

.type-3 .bottom
{
    -webkit-transform: translateY(17px);
        -ms-transform: translateY(17px);
            transform: translateY(17px);
}

.type-3.is-open .middle
{
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);

    background: rgba(255, 255, 255, 0);
}

.type-3.is-open .top
{
    -webkit-transform: rotate(-45deg) translateY(0px);
        -ms-transform: rotate(-45deg) translateY(0px);
            transform: rotate(-45deg) translateY(0px);
}

.type-3.is-open .bottom
{
    -webkit-transform: rotate(45deg) translateY(0px);
        -ms-transform: rotate(45deg) translateY(0px);
            transform: rotate(45deg) translateY(0px);
}

/* --------------------------------------------------------------------------------
*
*   type4
*
-------------------------------------------------------------------------------- */
.type-4 span
{
    transition: all .8s cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateY(0px) !important;
        -ms-transform: translateY(0px) !important;
            transform: translateY(0px) !important;

    background: #fff;
}

.type-4 .top
{
    margin-top: -7px;

    -webkit-transform: rotate(0deg) !important;
        -ms-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
}

.type-4 .bottom
{
    margin-top: 7px;

    -webkit-transform: rotate(0deg) !important;
        -ms-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
}

.type-4.is-open .middle
{
    background: transparent;
}

.type-4.is-open .top
{
    margin-top: 0;

    -webkit-transform: rotate(-405deg) !important;
        -ms-transform: rotate(-405deg) !important;
            transform: rotate(-405deg) !important;

    background: #fff;
}

.type-4.is-open .bottom
{
    margin-top: 0;

    -webkit-transform: rotate(405deg) !important;
        -ms-transform: rotate(405deg) !important;
            transform: rotate(405deg) !important;

    background: #fff;
}

/* --------------------------------------------------------------------------------
*
*   type5
*
-------------------------------------------------------------------------------- */
.type-5 .inner
{
    position: relative;

    width: 50px;
    height: 50px;
    margin: auto;
    padding: 75px 0;
}

.type-5 span
{
    transition: width .2s, right .2s, left .2s;
}

.type-5 .top
{
    right: 0;
    left: 0;

    -webkit-transform: translateY(-17px);
        -ms-transform: translateY(-17px);
            transform: translateY(-17px);
}

.type-5 .middle
{
    position: relative;

    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);

    background: none;
}

.type-5 .middle:before,
.type-5 .middle:after
{
    position: absolute;
    left: -25px;

    display: block;

    width: 50px;
    height: 1px;

    content: '';
    transition: all .2s;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);

    background: #000;
}

.type-5 .bottom
{
    right: 0;
    left: 0;

    -webkit-transform: translateY(17px);
        -ms-transform: translateY(17px);
            transform: translateY(17px);
}

.type-5.is-open .top
{
    left: 100%;

    width: 0;
}

.type-5.is-open .middle:before
{
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
}

.type-5.is-open .middle:after
{
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.type-5.is-open .bottom
{
    right: 100%;

    width: 0;
}

/* --------------------------------------------------------------------------------
*
*   type6
*
-------------------------------------------------------------------------------- */
.type-6 span
{
    position: relative;

    transition: .3s opacity;
}

.type-6 .top
{
    -webkit-animation: type6-top .5s;
            animation: type6-top .5s;

    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.type-6 .middle
{
    transition: .5s opacity;
    -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
            transform: translateY(-1px);

    opacity: 1;
}

.type-6 .bottom
{
    -webkit-animation: type6-bottom .5s;
            animation: type6-bottom .5s;

    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.type-6.is-open .middle
{
    transition: .5s opacity;

    opacity: 0;
}

.type-6.is-open .top
{
    -webkit-animation: type6-top-close .5s;
            animation: type6-top-close .5s;

    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.type-6.is-open .bottom
{
    -webkit-animation: type6-bottom-close .5s;
            animation: type6-bottom-close .5s;

    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes type6-top
{
    0%
    {
        -webkit-transform: translateY(0px) rotate(-45deg);
                transform: translateY(0px) rotate(-45deg);
    }
    50%
    {
        -webkit-transform: translateY(0px) rotate(0deg);
                transform: translateY(0px) rotate(0deg);
    }
    100%
    {
        -webkit-transform: translateY(-17px) rotate(0deg);
                transform: translateY(-17px) rotate(0deg);
    }
}

@keyframes type6-top
{
    0%
    {
        -webkit-transform: translateY(0px) rotate(-45deg);
                transform: translateY(0px) rotate(-45deg);
    }
    50%
    {
        -webkit-transform: translateY(0px) rotate(0deg);
                transform: translateY(0px) rotate(0deg);
    }
    100%
    {
        -webkit-transform: translateY(-17px) rotate(0deg);
                transform: translateY(-17px) rotate(0deg);
    }
}

@-webkit-keyframes type6-bottom
{
    0%
    {
        -webkit-transform: translateY(-1px) rotate(45deg);
                transform: translateY(-1px) rotate(45deg);
    }
    50%
    {
        -webkit-transform: translateY(0px) rotate(0deg);
                transform: translateY(0px) rotate(0deg);
    }
    100%
    {
        -webkit-transform: translateY(15px) rotate(0deg);
                transform: translateY(15px) rotate(0deg);
    }
}

@keyframes type6-bottom
{
    0%
    {
        -webkit-transform: translateY(-1px) rotate(45deg);
                transform: translateY(-1px) rotate(45deg);
    }
    50%
    {
        -webkit-transform: translateY(0px) rotate(0deg);
                transform: translateY(0px) rotate(0deg);
    }
    100%
    {
        -webkit-transform: translateY(15px) rotate(0deg);
                transform: translateY(15px) rotate(0deg);
    }
}

@-webkit-keyframes type6-top-close
{
    0%
    {
        -webkit-transform: translateY(-17px) rotate(0deg);
                transform: translateY(-17px) rotate(0deg);
    }
    50%
    {
        -webkit-transform: translateY(0px) rotate(0deg);
                transform: translateY(0px) rotate(0deg);
    }
    100%
    {
        -webkit-transform: translateY(0px) rotate(-45deg);
                transform: translateY(0px) rotate(-45deg);
    }
}

@keyframes type6-top-close
{
    0%
    {
        -webkit-transform: translateY(-17px) rotate(0deg);
                transform: translateY(-17px) rotate(0deg);
    }
    50%
    {
        -webkit-transform: translateY(0px) rotate(0deg);
                transform: translateY(0px) rotate(0deg);
    }
    100%
    {
        -webkit-transform: translateY(0px) rotate(-45deg);
                transform: translateY(0px) rotate(-45deg);
    }
}

@-webkit-keyframes type6-bottom-close
{
    0%
    {
        -webkit-transform: translateY(15px) rotate(0deg);
                transform: translateY(15px) rotate(0deg);
    }
    50%
    {
        -webkit-transform: translateY(0px) rotate(0deg);
                transform: translateY(0px) rotate(0deg);
    }
    100%
    {
        -webkit-transform: translateY(-1px) rotate(45deg);
                transform: translateY(-1px) rotate(45deg);
    }
}

@keyframes type6-bottom-close
{
    0%
    {
        -webkit-transform: translateY(15px) rotate(0deg);
                transform: translateY(15px) rotate(0deg);
    }
    50%
    {
        -webkit-transform: translateY(0px) rotate(0deg);
                transform: translateY(0px) rotate(0deg);
    }
    100%
    {
        -webkit-transform: translateY(-1px) rotate(45deg);
                transform: translateY(-1px) rotate(45deg);
    }
}

/* --------------------------------------------------------------------------------
*
*   type7
*
-------------------------------------------------------------------------------- */
.type-7 span
{
    transition: all .3s;
}

.type-7 .top
{
    -webkit-transform: translateY(-17px) scale(1);
        -ms-transform: translateY(-17px) scale(1);
            transform: translateY(-17px) scale(1);
}

.type-7 .middle
{
    position: relative;

    background: none;
}

.type-7 .middle:before,
.type-7 .middle:after
{
    position: absolute;

    display: block;

    width: 50px;
    height: 1px;

    content: '';
    transition: all .3s;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);

    background: #000;
}

.type-7 .bottom
{
    -webkit-transform: translateY(17px) scale(1);
        -ms-transform: translateY(17px) scale(1);
            transform: translateY(17px) scale(1);
}

.type-7.is-open .top
{
    -webkit-transform: translateY(0px) scale(0);
        -ms-transform: translateY(0px) scale(0);
            transform: translateY(0px) scale(0);
}

.type-7.is-open .bottom
{
    -webkit-transform: translateY(0px) scale(0);
        -ms-transform: translateY(0px) scale(0);
            transform: translateY(0px) scale(0);
}

.type-7.is-open .middle:before
{
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.type-7.is-open .middle:after
{
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------------
*
*   type8
*
-------------------------------------------------------------------------------- */
.type-8 span
{
    position: relative;

    transition: all .3s;

    background: none;
}

.type-8 span:before,
.type-8 span:after
{
    position: absolute;

    display: block;

    width: 25px;
    height: 1px;

    content: '';
    transition: all .3s;

    background: #000;
}

.type-8 span:before
{
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);

    opacity: 1;
}

.type-8 span:after
{
    -webkit-transform: translateX(25px);
        -ms-transform: translateX(25px);
            transform: translateX(25px);

    opacity: 1;
}

.type-8 .top
{
    -webkit-transform: translateY(-17px);
        -ms-transform: translateY(-17px);
            transform: translateY(-17px);
}

.type-8 .middle
{
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}

.type-8 .bottom
{
    -webkit-transform: translateY(17px);
        -ms-transform: translateY(17px);
            transform: translateY(17px);
}

.type-8.is-open .middle:before
{
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);

    opacity: 0;
}

.type-8.is-open .middle:after
{
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);

    opacity: 0;
}

.type-8.is-open .top
{
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
}

.type-8.is-open .top:before
{
    -webkit-transform: translateX(8px) rotate(45deg);
        -ms-transform: translateX(8px) rotate(45deg);
            transform: translateX(8px) rotate(45deg);
}

.type-8.is-open .top:after
{
    -webkit-transform: translateX(25px) rotate(-45deg);
        -ms-transform: translateX(25px) rotate(-45deg);
            transform: translateX(25px) rotate(-45deg);
}

.type-8.is-open .bottom
{
    -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
            transform: translateY(5px);
}

.type-8.is-open .bottom:before
{
    -webkit-transform: translateX(8px) rotate(-45deg);
        -ms-transform: translateX(8px) rotate(-45deg);
            transform: translateX(8px) rotate(-45deg);
}

.type-8.is-open .bottom:after
{
    -webkit-transform: translateX(25px) rotate(45deg);
        -ms-transform: translateX(25px) rotate(45deg);
            transform: translateX(25px) rotate(45deg);
}

/* --------------------------------------------------------------------------------
*
*   type9
*
-------------------------------------------------------------------------------- */
.type-9 span
{
    transition: all .4s .4s;
}

.type-9 span:before,
.type-9 span:after
{
    content: '';
}

.type-9 .top
{
    -webkit-transform: translateY(-17px);
        -ms-transform: translateY(-17px);
            transform: translateY(-17px);
}

.type-9 .middle
{
    position: relative;

    background: none;
}

.type-9 .middle:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;

    content: '';

    border-radius: 100%;
}

.type-9 .middle:before
{
    display: block;

    width: 50px;
    height: 1px;

    content: '';
    transition: all .4s;
    -webkit-transform: translateY(0px) translateX(0px);
        -ms-transform: translateY(0px) translateX(0px);
            transform: translateY(0px) translateX(0px);

    opacity: 1;
    background: #000;
}

.type-9 .bottom
{
    -webkit-transform: translateY(17px);
        -ms-transform: translateY(17px);
            transform: translateY(17px);
}

.type-9.is-open .bottom
{
    -webkit-transform: translateY(0px) rotate(45deg);
        -ms-transform: translateY(0px) rotate(45deg);
            transform: translateY(0px) rotate(45deg);
}

.type-9.is-open .top
{
    -webkit-transform: translateY(0px) rotate(-45deg);
        -ms-transform: translateY(0px) rotate(-45deg);
            transform: translateY(0px) rotate(-45deg);
}

.type-9.is-open .middle:before
{
    -webkit-transform: translateY(0px) translateX(100px);
        -ms-transform: translateY(0px) translateX(100px);
            transform: translateY(0px) translateX(100px);

    opacity: 0;
}

.type-9.is-open .middle:after
{
    content: '';
    -webkit-animation: type9-circle .5s;
            animation: type9-circle .5s;

    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes type9-circle
{
    0%
    {
        -webkit-transform: scale(0);
                transform: scale(0);

        opacity: 1;
        border: 1px solid #000;
    }
    100%
    {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);

        opacity: 0;
        border: 1px solid #000;
    }
}

@keyframes type9-circle
{
    0%
    {
        -webkit-transform: scale(0);
                transform: scale(0);

        opacity: 1;
        border: 1px solid #000;
    }
    100%
    {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);

        opacity: 0;
        border: 1px solid #000;
    }
}

/* --------------------------------------------------------------------------------
*
*   row
*
-------------------------------------------------------------------------------- */
.row
{
    font-size: 0;

    text-align: center;
}

.row .item
{
    display: inline-block;
}

.row.row_col2 > .item
{
    width: 50%;
}

.row.row_col3 > .item
{
    width: 33.3333%;
}

.row.row_col4 > .item
{
    width: 25%;
}

.row .item:last-child
{
    margin-right: 0 !important;
    padding-right: 0 !important;
}

/* --------------------------------------------------------------------------------
*
*   loading
*
-------------------------------------------------------------------------------- */
#loading
{
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

#loading .spinnerWrap
{
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

#loading .spinner
{
    width: 40px;
    height: 40px;
    margin: 100px auto;

    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
            animation: sk-scaleout 1.0s infinite ease-in-out;

    border-radius: 100%;
    background-color: #009a5a;
}

@-webkit-keyframes sk-scaleout
{
    0%
    {
        -webkit-transform: scale(0);
    }
    100%
    {
        -webkit-transform: scale(1);

        opacity: 0;
    }
}

@keyframes sk-scaleout
{
    0%
    {
        -webkit-transform: scale(0);
                transform: scale(0);
    }
    100%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 0;
    }
}

/* --------------------------------------------------------------------------------
*
*   table
*
-------------------------------------------------------------------------------- */
.table
{
    width: 100%;
    margin-bottom: 30px;

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

.table .tr
{
    position: static;
}

.table .td
{
    line-height: 24px;

    position: static;

    padding: 9px 20px 8px;

    border: 1px solid #ccc;
}

.table .map
{
    padding: 15px 20px;
}

.table #map
{
    margin-top: 5px;
    margin-bottom: 10px;
}

.table .td:nth-child(1)
{
    width: 25%;

    background-color: #f6f6f6;
}

.table__wrap
{
    max-width: 990px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media only screen and (max-width: 1100px)
{
    .table__wrap
    {
        padding: 0 30px;
    }
}

.table__wrap .businessOurs p
{
    line-height: 20px;

    margin-bottom: 20px;
}

.table__wrap .businessOurs p:last-child
{
    margin-bottom: 0;
}

.table__wrap .price
{
    padding-right: 40px;
}

/* --------------------------------------------------------------------------------
*
*   sp Menu
*
-------------------------------------------------------------------------------- */
.menu_button
{
    position: absolute;
    top: 19px;
    left: 25px;

    display: none;

    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
}

.menu_button .menu_button_inner
{
    top: 20px;
    left: 10px;
}

.type-1 span
{
    top: 50%;

    display: block;

    width: 20px;
    height: 2px;

    transition: all .3s;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);

    background: #fff;
}

.type-1 .top
{
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
}

.type-1 .bottom
{
    -webkit-transform: translateY(3px);
        -ms-transform: translateY(3px);
            transform: translateY(3px);
}

.type-1.is-open .middle
{
    background: rgba(255, 255, 255, 0);
}

.type-1.is-open .top
{
    -webkit-transform: rotate(-45deg) translateY(0);
        -ms-transform: rotate(-45deg) translateY(0);
            transform: rotate(-45deg) translateY(0);
}

.type-1.is-open .bottom
{
    -webkit-transform: rotate(45deg) translate(-1px, -1px);
        -ms-transform: rotate(45deg) translate(-1px, -1px);
            transform: rotate(45deg) translate(-1px, -1px);
}

/* --------------------------------------------------------------------------------
*
*   error
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   copy
*
-------------------------------------------------------------------------------- */
#copy
{
    line-height: 1;

    text-align: center;
}

/* --------------------------------------------------------------------------------
*
*   bread
*
-------------------------------------------------------------------------------- */
.bread
{
    font-size: 13px;

    position: absolute;
    z-index: 5;
    top: 56px;
    left: 27px;
}

.bread a
{
    color: #fff;
}

.bread .arrow
{
    position: relative;
    top: -1px;
}

/* --------------------------------------------------------------------------------
*
*   overlay
*
-------------------------------------------------------------------------------- */
.overlay
{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .6);
}

/* --------------------------------------------------------------------------------
*
*   checkbox
*
-------------------------------------------------------------------------------- */
[type='checkbox']:not(:checked),
[type='checkbox']:checked
{
    position: absolute;
    left: -9999px;
}

[type='checkbox']:not(:checked) + label,
[type='checkbox']:checked + label
{
    position: relative;

    padding-left: 25px;

    cursor: pointer;
}

[type='checkbox']:not(:checked) + label:before,
[type='checkbox']:checked + label:before
{
    position: absolute;
    top: 1px;
    left: 1px;

    box-sizing: border-box;
    width: 16px;
    height: 16px;

    content: '';

    border: 1px solid #aaa;
    background: #fff;
}

/* checked mark aspect */
[type='checkbox']:not(:checked) + label:after,
[type='checkbox']:checked + label:after
{
    font-size: 14px;

    position: absolute;
    top: 0;
    left: 4px;

    content: '✔';
    transition: all .2s;

    color: #00cdff;
}

/* checked mark aspect changes */
[type='checkbox']:not(:checked) + label:after
{
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);

    opacity: 0;
}

[type='checkbox']:checked + label:after
{
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);

    opacity: 1;
}

/* disabled checkbox */
[type='checkbox']:disabled:not(:checked) + label:before,
[type='checkbox']:disabled:checked + label:before
{
    border-color: #bbb;
    background-color: #ddd;
    box-shadow: none;
}

[type='checkbox']:disabled:checked + label:after
{
    color: #999;
}

[type='checkbox']:disabled + label
{
    color: #aaa;
}

[type='checkbox']:checked:focus + label:before,
[type='checkbox']:not(:checked):focus + label:before
{
    border: 1px dotted blue;
}

/* --------------------------------------------------------------------------------
*
*   select box
*
-------------------------------------------------------------------------------- */
.selectBox
{
    display: none;
}

.selectBoxArea
{
    box-sizing: border-box;
    width: 410px;
    height: 30px;

    border: 1px solid #bebebe;
}

.selectBoxArea .selectBoxArea__display
{
    line-height: 30px;

    height: 100%;
    padding-left: 20px;
}

.selectBoxArea .selectBoxArea__listWrap
{
    position: relative;
    z-index: 99999;
    left: -1px;

    display: none;
    overflow-y: scroll;

    box-sizing: border-box;
    width: calc(100% + 2px);
    height: 140px;

    border: 1px solid #bebebe;
    background-color: #fff;
}

.selectBoxArea .selectBoxArea__list
{
    height: 100%;
    padding-top: 3px;
}

.selectBoxArea .selectBoxArea__listItem
{
    line-height: 25px;

    padding: 2px 0;
}

.selectBoxArea .selectBoxArea__listItem .item
{
    display: block;

    box-sizing: border-box;
    margin-right: 10px;
    margin-left: 10px;
    padding-left: 10px;
}

.selectBoxArea .selectBoxArea__listItem .item:hover
{
    background-color: #eee;
}

/* --------------------------------------------------------------------------------
*
*   その他
*
-------------------------------------------------------------------------------- */
/*
*
*  transition 無効化s
*
*/
.preload *
{
    transition: none !important;
}

/*
*
*   triangle
*
*/
.triangle
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 0;
    height: 0;

    border-width: 7px 7px 7px 0;
    border-style: solid;
    border-color: transparent #eee transparent transparent;
}

.triangle.over
{
    z-index: 2;
}

/*
*
*   shadow
*
*/
.shadow
{
    box-shadow: 4px 2px 10px 1px #ccc inset;
}

/*
*
*   design(見本)
*
*/
.sample
{
    position: absolute;
    z-index: 2;
    top: 0;

    display: none;

    opacity: .7;
}

/* --------------------------------------------------------------------------------
*
*   font-size
*
-------------------------------------------------------------------------------- */
/* Font-Size */
.fz10
{
    font-size: 10px;
    font-size: .625rem;
}

.fz12
{
    font-size: 12px;
    font-size: .75rem;
}

.fz14
{
    font-size: 14px;
    font-size: .875rem;
}

.fz16
{
    font-size: 16px;
    font-size: 1rem;
}

.fz18
{
    font-size: 18px;
    font-size: 1.125rem;
}

.fz20
{
    font-size: 20px;
    font-size: 1.25rem;
}

.fz22
{
    font-size: 22px;
    font-size: 1.375rem;
}

.fz30
{
    font-size: 30px;
    font-size: 1.875rem;
}

.fz40
{
    font-size: 40px;
    font-size: 2.5rem;
}

.fz50
{
    font-size: 50px;
    font-size: 3.125rem;
}

.fz60
{
    font-size: 60px;
    font-size: 3.75rem;
}

.fz70
{
    font-size: 70px;
    font-size: 4.375rem;
}

.fz80
{
    font-size: 80px;
    font-size: 5rem;
}

.fz90
{
    font-size: 90px;
    font-size: 5.625rem;
}

/* Margin-Top & Padding-Top */
.mt00
{
    margin-top: 0 !important;
}

.pt00
{
    padding-top: 0 !important;
}

.mt05
{
    margin-top: 5px !important;
}

.pt05
{
    padding-top: 5px !important;
}

.mt10
{
    margin-top: 10px !important;
}

.pt10
{
    padding-top: 10px !important;
}

.mt15
{
    margin-top: 15px !important;
}

.pt15
{
    padding-top: 15px !important;
}

.mt20
{
    margin-top: 20px !important;
}

.pt20
{
    padding-top: 20px !important;
}

.mt25
{
    margin-top: 25px !important;
}

.pt25
{
    padding-top: 25px !important;
}

.mt30
{
    margin-top: 30px !important;
}

.pt30
{
    padding-top: 30px !important;
}

.mt35
{
    margin-top: 35px !important;
}

.pt35
{
    padding-top: 35px !important;
}

.mt40
{
    margin-top: 40px !important;
}

.pt40
{
    padding-top: 40px !important;
}

.mt45
{
    margin-top: 45px !important;
}

.pt45
{
    padding-top: 45px !important;
}

.mt50
{
    margin-top: 50px !important;
}

.pt50
{
    padding-top: 50px !important;
}

.mt55
{
    margin-top: 55px !important;
}

.pt55
{
    padding-top: 55px !important;
}

.mt60
{
    margin-top: 60px !important;
}

.pt60
{
    padding-top: 60px !important;
}

.mt65
{
    margin-top: 65px !important;
}

.pt65
{
    padding-top: 65px !important;
}

.mt70
{
    margin-top: 70px !important;
}

.pt70
{
    padding-top: 70px !important;
}

.mt75
{
    margin-top: 75px !important;
}

.pt75
{
    padding-top: 75px !important;
}

.mt80
{
    margin-top: 80px !important;
}

.pt80
{
    padding-top: 80px !important;
}

.mt85
{
    margin-top: 85px !important;
}

.pt85
{
    padding-top: 85px !important;
}

.mt90
{
    margin-top: 90px !important;
}

.pt90
{
    padding-top: 90px !important;
}

.mt95
{
    margin-top: 95px !important;
}

.pt95
{
    padding-top: 95px !important;
}

.mt100
{
    margin-top: 100px !important;
}

.pt100
{
    padding-top: 100px !important;
}

/* Margin-Right & Padding-Right */
.mr00
{
    margin-right: 0 !important;
}

.pr00
{
    padding-right: 0 !important;
}

.mr05
{
    margin-right: 5px !important;
}

.pr05
{
    padding-right: 5px !important;
}

.mr10
{
    margin-right: 10px !important;
}

.pr10
{
    padding-right: 10px !important;
}

.mr15
{
    margin-right: 15px !important;
}

.pr15
{
    padding-right: 15px !important;
}

.mr20
{
    margin-right: 20px !important;
}

.pr20
{
    padding-right: 20px !important;
}

.mr25
{
    margin-right: 25px !important;
}

.pr25
{
    padding-right: 25px !important;
}

.mr30
{
    margin-right: 30px !important;
}

.pr30
{
    padding-right: 30px !important;
}

.mr35
{
    margin-right: 35px !important;
}

.pr35
{
    padding-right: 35px !important;
}

.mr40
{
    margin-right: 40px !important;
}

.pr40
{
    padding-right: 40px !important;
}

.mr45
{
    margin-right: 45px !important;
}

.pr45
{
    padding-right: 45px !important;
}

.mr50
{
    margin-right: 50px !important;
}

.pr50
{
    padding-right: 50px !important;
}

.mr55
{
    margin-right: 55px !important;
}

.pr55
{
    padding-right: 55px !important;
}

.mr60
{
    margin-right: 60px !important;
}

.pr60
{
    padding-right: 60px !important;
}

.mr65
{
    margin-right: 65px !important;
}

.pr65
{
    padding-right: 65px !important;
}

.mr70
{
    margin-right: 70px !important;
}

.pr70
{
    padding-right: 70px !important;
}

.mr75
{
    margin-right: 75px !important;
}

.pr75
{
    padding-right: 75px !important;
}

.mr80
{
    margin-right: 80px !important;
}

.pr80
{
    padding-right: 80px !important;
}

.mr85
{
    margin-right: 85px !important;
}

.pr85
{
    padding-right: 85px !important;
}

.mr90
{
    margin-right: 90px !important;
}

.pr90
{
    padding-right: 90px !important;
}

.mr95
{
    margin-right: 95px !important;
}

.pr95
{
    padding-right: 95px !important;
}

.mr100
{
    margin-right: 100px !important;
}

.pr100
{
    padding-right: 100px !important;
}

/* Margin-Bottom & Padding-Bottom */
.mb00
{
    margin-bottom: 0 !important;
}

.pb00
{
    padding-bottom: 0 !important;
}

.mb05
{
    margin-bottom: 5px !important;
}

.pb05
{
    padding-bottom: 5px !important;
}

.mb10
{
    margin-bottom: 10px !important;
}

.pb10
{
    padding-bottom: 10px !important;
}

.mb15
{
    margin-bottom: 15px !important;
}

.pb15
{
    padding-bottom: 15px !important;
}

.mb20
{
    margin-bottom: 20px !important;
}

.pb20
{
    padding-bottom: 20px !important;
}

.mb25
{
    margin-bottom: 25px !important;
}

.pb25
{
    padding-bottom: 25px !important;
}

.mb30
{
    margin-bottom: 30px !important;
}

.pb30
{
    padding-bottom: 30px !important;
}

.mb35
{
    margin-bottom: 35px !important;
}

.pb35
{
    padding-bottom: 35px !important;
}

.mb40
{
    margin-bottom: 40px !important;
}

.pb40
{
    padding-bottom: 40px !important;
}

.mb45
{
    margin-bottom: 45px !important;
}

.pb45
{
    padding-bottom: 45px !important;
}

.mb50
{
    margin-bottom: 50px !important;
}

.pb50
{
    padding-bottom: 50px !important;
}

.mb55
{
    margin-bottom: 55px !important;
}

.pb55
{
    padding-bottom: 55px !important;
}

.mb60
{
    margin-bottom: 60px !important;
}

.pb60
{
    padding-bottom: 60px !important;
}

.mb65
{
    margin-bottom: 65px !important;
}

.pb65
{
    padding-bottom: 65px !important;
}

.mb70
{
    margin-bottom: 70px !important;
}

.pb70
{
    padding-bottom: 70px !important;
}

.mb75
{
    margin-bottom: 75px !important;
}

.pb75
{
    padding-bottom: 75px !important;
}

.mb80
{
    margin-bottom: 80px !important;
}

.pb80
{
    padding-bottom: 80px !important;
}

.mb85
{
    margin-bottom: 85px !important;
}

.pb85
{
    padding-bottom: 85px !important;
}

.mb90
{
    margin-bottom: 90px !important;
}

.pb90
{
    padding-bottom: 90px !important;
}

.mb95
{
    margin-bottom: 95px !important;
}

.pb95
{
    padding-bottom: 95px !important;
}

.mb100
{
    margin-bottom: 100px !important;
}

.pb100
{
    padding-bottom: 100px !important;
}

/* Margin-Left & Padding-Left */
.ml00
{
    margin-left: 0 !important;
}

.pl00
{
    padding-left: 0 !important;
}

.ml05
{
    margin-left: 5px !important;
}

.pl05
{
    padding-left: 5px !important;
}

.ml10
{
    margin-left: 10px !important;
}

.pl10
{
    padding-left: 10px !important;
}

.ml15
{
    margin-left: 15px !important;
}

.pl15
{
    padding-left: 15px !important;
}

.ml20
{
    margin-left: 20px !important;
}

.pl20
{
    padding-left: 20px !important;
}

.ml25
{
    margin-left: 25px !important;
}

.pl25
{
    padding-left: 25px !important;
}

.ml30
{
    margin-left: 30px !important;
}

.pl30
{
    padding-left: 30px !important;
}

.ml35
{
    margin-left: 35px !important;
}

.pl35
{
    padding-left: 35px !important;
}

.ml40
{
    margin-left: 40px !important;
}

.pl40
{
    padding-left: 40px !important;
}

.ml45
{
    margin-left: 45px !important;
}

.pl45
{
    padding-left: 45px !important;
}

.ml50
{
    margin-left: 50px !important;
}

.pl50
{
    padding-left: 50px !important;
}

.ml55
{
    margin-left: 55px !important;
}

.pl55
{
    padding-left: 55px !important;
}

.ml60
{
    margin-left: 60px !important;
}

.pl60
{
    padding-left: 60px !important;
}

.ml65
{
    margin-left: 65px !important;
}

.pl65
{
    padding-left: 65px !important;
}

.ml70
{
    margin-left: 70px !important;
}

.pl70
{
    padding-left: 70px !important;
}

.ml75
{
    margin-left: 75px !important;
}

.pl75
{
    padding-left: 75px !important;
}

.ml80
{
    margin-left: 80px !important;
}

.pl80
{
    padding-left: 80px !important;
}

.ml85
{
    margin-left: 85px !important;
}

.pl85
{
    padding-left: 85px !important;
}

.ml90
{
    margin-left: 90px !important;
}

.pl90
{
    padding-left: 90px !important;
}

.ml95
{
    margin-left: 95px !important;
}

.pl95
{
    padding-left: 95px !important;
}

.ml100
{
    margin-left: 100px !important;
}

.pl100
{
    padding-left: 100px !important;
}

/* line-height */
div,
p,
h1,
h2,
h3,
h4
{
    line-height: 1;
}

/* Float */
.fl
{
    float: left;
}

.fr
{
    float: right;
}

.cl
{
    clear: both;
}

.fList > li,
.fList > dt,
.fList > dd,
.fList > .item
{
    float: left;
}

.fBoth > li:first-child
{
    float: left;
}

.fBoth > li:last-child
{
    float: right;
}

.fBoth > dt,
.fBoth > .item:nth-child(1)
{
    float: left;
}

.fBoth > dd,
.fBoth > .item:nth-child(2)
{
    float: right;
}

/* Clearfix*/
.cf,
.wrap,
.fList
{
    zoom: 1;
}

.cf:after,
.wrap:after,
.fList:after,
.fBoth:after
{
    line-height: 0;

    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: '.';
}

/* TextAlign */
.al
{
    text-align: left;
}

.ar
{
    text-align: right;
}

.ac
{
    text-align: center;
}

/* TextAlign */
.vb
{
    vertical-align: baseline;
}

/* position relative */
div,
section,
article,
ul,
header,
footer,
tr,
td
{
    position: relative;
}

/* Nav*/
.nav
{
    zoom: 1;
}

.nav:after
{
    line-height: 0;

    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: '.';
}

/* --------------------------------------------------------------------------------
*
*   font
*
-------------------------------------------------------------------------------- */
.captalize
{
    text-transform: capitalize;
}

.uppercase
{
    text-transform: uppercase;
}

.lowercase
{
    text-transform: lowercase;
}

/* --------------------------------------------------------------------------------
*
*   responsive
*
-------------------------------------------------------------------------------- */
img.fitted
{
    width: 100% !important;
    height: auto !important;
}

img.flex
{
    width: 100% !important;
    height: auto !important;
}

/* --------------------------------------------------------------------------------
*
*   overflow hidden
*
-------------------------------------------------------------------------------- */
.oh
{
    overflow: hidden;
}

/* --------------------------------------------------------------------------------
*
*   word breadk
*
-------------------------------------------------------------------------------- */
.wb
{
    word-break: break-all;
}

/* --------------------------------------------------------------------------------
*
*   font-weight
*
-------------------------------------------------------------------------------- */
.fwb
{
    font-weight: bold;
}

/* --------------------------------------------------------------------------------
*
*   opacity
*
-------------------------------------------------------------------------------- */
.is-unvisible
{
    opacity: 0 !important;
}

.is-visible
{
    opacity: 1 !important;
}

/* --------------------------------------------------------------------------------
*
*   display
*
-------------------------------------------------------------------------------- */
.is-block
{
    display: block !important;
}

.is-none
{
    display: none !important;
}

/* --------------------------------------------------------------------------------
*
*   overflow
*
-------------------------------------------------------------------------------- */
.is-scroll
{
    overflow: scroll !important;
}

.is-scroll-x
{
    overflow-x: scroll !important;
}

.is-scroll-y
{
    overflow-y: scroll !important;
}

.is-hidden
{
    overflow: hidden !important;
}

.is-hidden-x
{
    overflow-x: hidden !important;
}

.is-hidden-y
{
    overflow-y: hidden !important;
}

/* --------------------------------------------------------------------------------
*
*   position
*
-------------------------------------------------------------------------------- */
.is-fixed
{
    position: fixed !important;
}

.is-absolute
{
    position: absolute !important;
}

.is-relative
{
    position: relative !important;
}

.is-static
{
    position: static !important;
}

/* --------------------------------------------------------------------------------
*
*   その他
*
-------------------------------------------------------------------------------- */
#work
{
    /* --------------------------------------------------------------------------------
*
*   section01
*
-------------------------------------------------------------------------------- */
    /* contsSelect
-----------------------------------------------------------------*/
}

#work .section01
{
    /*
  *
  *   ballWrap
  *
  */
    /*
  *
  *   block
  *
  */
}

#work .section01 > .tit
{
    position: relative;
    z-index: 10;

    text-align: center;
}

#work .section01 .slider
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#work .section01 .slider img
{
    position: absolute;
    top: 0;
    left: 0;
}

#work .section01 .sectionWrap .section01
{
    padding-top: 45px;

    text-align: center;
}

#work .section01 .sectionWrap .section01 h4
{
    font-family: 'FP-ヒラギノ明朝 StdN W5', 'FP-HiraMinStdN-W5';
    font-size: 17px;
    line-height: 2.0em;

    margin-bottom: 25px;

    color: #009b59;
}

#work .section01 .sectionWrap .section01 .sub_tit
{
    font-family: 'FP-ヒラギノ角ゴ StdN W7', 'FP-HiraKakuStdN-W7';
    font-size: 12px;
    line-height: 2.0em;

    margin-bottom: 100px;
}

#work .section01 .sectionWrap .section01 .contentBox
{
    position: relative;

    display: block;

    height: 844px;
    margin-bottom: 50px;

    background-color: #ebf8f3;
}

#work .section01 .sectionWrap .section01 .contentBox .tit
{
    top: -53px;
}

#work .section01 .sectionWrap .section01 .contentBox .sub_tit02
{
    font-family: 'FP-ヒラギノ角ゴ StdN W6', 'FP-HiraKakuStdN-W6';
    font-size: 14px;

    margin-top: -30px;
    margin-bottom: 23px;

    color: #1e9458;
}

#work .section01 .sectionWrap .section01 .contentBox .sec01_img
{
    margin-bottom: 17px;
}

#work .section01 .sectionWrap .section01 .contentBox .txt
{
    font-size: 15px;
    line-height: 2.0em;

    color: #1e9458;
}

#work .section01 .sectionWrap .section01 .linkBox
{
    padding: 40px 0;

    text-align: center;

    background-color: #ebf8f3;
}

#work .section01 .sectionWrap .section01 .linkBox .linkBtn01
{
    width: 355px;
    height: 42px;
    margin: 0 auto;

    border-radius: 30px;
    background-color: #009a5a;
}

#work .section01 .sectionWrap .section01 .linkBox .linkBtn01 a
{
    display: block;
}

#work .section01 .sectionWrap .section01 .linkBox .linkBtn01 a p
{
    font-family: 'FP-ヒラギノ角ゴ StdN W6', 'FP-HiraKakuStdN-W6';
    font-size: 12px;

    padding-top: 15px;
}

#work .section01 .sectionWrap .section01 .linkBox .linkBtn01 .close
{
    position: absolute;
    top: 12px;
    right: 13px;

    display: block;

    box-sizing: border-box;
    width: 19px;
    height: 19px;

    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    text-indent: -9999px;

    border: 1px solid #ddd;
    border-radius: 100px;
    background: #fff;
}

#work .section01 .sectionWrap .section01 .linkBox .linkBtn01 .close::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 2px;
    height: 7px;
    margin-top: -4px;
    margin-left: 1px;

    content: '';

    background: #222;
}

#work .section01 .sectionWrap .section01 .linkBox .linkBtn01 .close::before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 7px;
    height: 2px;
    margin-top: 1px;
    margin-left: -4px;

    content: '';

    background: #222;
}

#work .section01 .sectionWrap .section02
{
    padding-top: 45px;

    text-align: center;
}

#work .section01 .sectionWrap .section02 .accordionItem h3
{
    box-sizing: border-box;
    padding: 25px 23px 22px;

    text-align: left;

    color: #fff;
    border-bottom: 1px solid #0d7d4f;
    background: url(/sp/recruit2017/assets/img/top/icon03.png) no-repeat, #009a5a;
    background-position: 94%;
    background-size: 19px 19px;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner
{
    background-color: #f1f1f1;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .copy
{
    font-family: 'FP-ヒラギノ角ゴ StdN W6', 'FP-HiraKakuStdN-W6';
    font-size: 16px;
    line-height: 1.5em;

    width: 330px;
    margin: 0 0 40px 20px;
    padding-top: 35px;

    text-align: left;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .job_content
{
    padding-bottom: 40px;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .job_content .tit01
{
    display: block;

    width: 335px;
    margin: 0 auto 7px;

    text-align: left;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .job_content .tit01 .tit_txt
{
    font-family: 'FP-ヒラギノ角ゴ StdN W6', 'FP-HiraKakuStdN-W6';
    font-size: 16px;

    display: inline-block;

    margin-bottom: 16px;
    margin-left: 12px;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .job_content .txt
{
    font-family: 'FP-ヒラギノ角ゴ StdN W3', 'FP-HiraKakuStdN-W3';
    font-size: 12px;
    line-height: 1.7em;

    width: 335px;
    margin: 0 auto 36px;

    text-align: left;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .job_content ul
{
    width: 335px;
    margin: 0 auto;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .job_content ul li
{
    line-height: 1.7em;

    margin-bottom: 6px;
    padding-left: 1em;

    text-align: left;
    text-indent: -1em;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .job_content ul li:last-child
{
    margin-bottom: 0;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .linkBoxIn
{
    background-color: #fff;
}

#work .section01 .sectionWrap .section02 .accordionItem .subAccordionInner .linkBoxIn .linkBoxUnder
{
    box-sizing: border-box;
    margin-bottom: 1px;
    padding: 25px 23px 22px;

    text-align: left;

    color: #fff;
    color: #009a5a;
    /* border-bottom: 1px solid #dedede; */
    background: url(/sp/recruit2017/assets/img/top/icon03.png) no-repeat, #f1f1f1;
    background-position: 94%;
    background-size: 19px 19px;
}

#work .section01 .sectionWrap .section02 .subAccordion h3
{
    border-bottom: 1px solid #0d7d4f;
    background: url(/sp/recruit2017/assets/img/top/icon02.png) no-repeat, #009a5a;
    background-position: 94%;
    background-size: 19px 19px;
}

#work .section01 .sectionWrap .section02 .subAccordion h3.on
{
    background: url(/sp/recruit2017/assets/img/top/icon01.png) no-repeat, #009a5a;
    background-position: 94%;
    background-size: 19px 19px;
}

#work .section01 .sectionWrap .section02 .linkBox
{
    padding: 40px 0;

    text-align: center;

    background-color: #ebf8f3;
}

#work .section01 .sectionWrap .section02 .linkBox .linkBtn02
{
    width: 355px;
    height: 42px;
    margin: 0 auto;

    border-radius: 30px;
    background-color: #009a5a;
}

#work .section01 .sectionWrap .section02 .linkBox .linkBtn02 a
{
    display: block;
}

#work .section01 .sectionWrap .section02 .linkBox .linkBtn02 a p
{
    font-family: 'FP-ヒラギノ角ゴ StdN W6', 'FP-HiraKakuStdN-W6';
    font-size: 12px;

    padding-top: 15px;
}

#work .section01 .sectionWrap .section02 .linkBox .linkBtn02 .close
{
    position: absolute;
    top: 12px;
    right: 13px;

    display: block;

    box-sizing: border-box;
    width: 19px;
    height: 19px;

    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    text-indent: -9999px;

    border: 1px solid #ddd;
    border-radius: 100px;
    background: #fff;
}

#work .section01 .sectionWrap .section02 .linkBox .linkBtn02 .close::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 2px;
    height: 7px;
    margin-top: -4px;
    margin-left: 1px;

    content: '';

    background: #222;
}

#work .section01 .sectionWrap .section02 .linkBox .linkBtn02 .close::before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 7px;
    height: 2px;
    margin-top: 1px;
    margin-left: -4px;

    content: '';

    background: #222;
}

#work .section01 .sectionWrap .section02 #applyLinkBox
{
    /*
        *
        *   recruitlink
        *
        */
}

#work .section01 .sectionWrap .section02 #applyLinkBox .recruitLink
{
    padding: 40px 0;

    background-color: #fff;
}

#work .section01 .sectionWrap .section02 #applyLinkBox .recruitLink .box
{
    width: 85%;
    margin: 0 auto;
    margin-bottom: 5px;
}

#work .section01 .sectionWrap .section02 #applyLinkBox .recruitLink .box .item:first-child
{
    font-size: 11px;

    position: relative;

    box-sizing: border-box;
    width: 30%;
    padding: 16px 0 14px 25px;

    letter-spacing: .1em;

    color: #fff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background-color: #424242;
}

#work .section01 .sectionWrap .section02 #applyLinkBox .recruitLink .box .item:first-child .border
{
    position: absolute;
    top: 12px;
    right: -4px;

    display: inline-block;

    width: 1px;
    height: 20px;

    background-color: #fff;
}

#work .section01 .sectionWrap .section02 #applyLinkBox .recruitLink .box .item:last-child
{
    font-size: 12px;

    box-sizing: border-box;
    width: 70%;
    padding: 15px 0 14px 20px;

    text-align: left;
    letter-spacing: .1em;

    color: #fff;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background: url(/sp/recruit2017/assets/img/common/arrow_w.png) no-repeat, #fff;
    background-color: #424242;
    background-position: 94%;
    background-size: 19px 19px;
}

#work .section01 .sectionWrap .section02 #applyLinkBox .recruitLink a:last-child .box
{
    margin-bottom: 0;
}

#work .section01 .ballWrap
{
    display: inline-block;
    float: left;

    padding: 0;
}

#work .section01 .ballWrap .ball.big
{
    width: 17.5px;
    height: 17.5px;

    border-radius: 50%;
    background-color: #009b59;
}

#work .section01 .ballWrap .ball.big .ballInner
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 4px;
    height: 4px;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);

    border-radius: 50%;
    background-color: #fff;
}

#work .section01 .ballWrap .ball.big:nth-child(2)
{
    margin-left: -2px;
}

#work .section01 .ballWrap .ball.big:nth-child(3)
{
    margin-left: -2px;
}

#work .section01 .block
{
    padding-top: 56px;

    background-color: #ebf8f3;
    /*
    *
    *   illustBlock01
    *
    */
    /*
    *
    *   illustBlock02
    *
    */
}

#work .section01 .block > .tit
{
    font-size: 27px;
    line-height: 1.27;

    position: absolute;
    top: -36px;

    width: 100%;

    text-align: center;

    color: #1e9458;
}

#work .section01 .block > .tit img
{
    position: absolute;
    top: -11px;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

#work .section01 .block > .tit span:last-child
{
    padding-left: 18px;

    letter-spacing: -.1em;
}

#work .section01 .block .subTit
{
    font-size: 14px;

    margin-bottom: 25px;

    text-align: center;

    color: #1e9458;
}

#work .section01 .block .illustBlock01
{
    margin-bottom: 15px;
}

#work .section01 .block .illustBlock01 .item
{
    box-sizing: border-box;
    width: 50%;
    padding: 0 2px 0 20px;

    text-align: center;
}

#work .section01 .block .illustBlock01 .item .text
{
    font-size: 14px;
    line-height: 1.71;

    margin-bottom: 10px;
    padding-top: 10px;

    text-align: center;

    color: #1e9458;
}

#work .section01 .block .illustBlock01 .item .style
{
    font-family: 'FP-ヒラギノ角ゴ StdN W7', 'FP-HiraKakuStdN-W7';
    font-size: 17px;

    position: relative;

    padding: 14px;

    text-align: center;

    color: #fff;
    border-radius: 4px;
    background-color: #1e9458;
}

#work .section01 .block .illustBlock01 .item .style img
{
    position: absolute;
    bottom: -33px;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

#work .section01 .block .illustBlock01 .item:last-child
{
    box-sizing: border-box;
    width: 50%;
    padding: 0 20px 0 3px;

    text-align: center;
}

#work .section01 .block .illustBlock02 .imgWrap
{
    margin-bottom: 10px;
    padding-right: 10px;

    text-align: center;
}

#work .section01 .block .illustBlock02 .text01
{
    font-size: 12px;
    line-height: 1.66;

    position: relative;
    z-index: 2;

    width: 90%;
    margin: 0 auto;
    margin-bottom: 11px;
    padding: 12px 0 12px;

    text-align: center;

    color: #1e9458;
    border-radius: 12px;
    background-color: #fff;
}

#work .section01 .block .illustBlock02 .text01 img
{
    position: absolute;
    bottom: -17px;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

#work .section01 .block .illustBlock02 .text02
{
    font-family: 'FP-ヒラギノ角ゴ StdN W7', 'FP-HiraKakuStdN-W7';
    font-size: 17px;

    position: relative;

    width: 90%;
    margin: 0 auto;
    padding: 14px 0;

    text-align: center;

    color: #fff;
    border-radius: 4px;
    background-color: #1e9458;
}

#work .section01 .block .illustBlock02 .text03
{
    font-size: 15px;
    line-height: 1.66;

    margin-bottom: 25px;
    padding: 18px 0 23px;

    text-align: center;

    color: #1e9458;
}

#work .sectionWrap
{
    position: relative;
}

#work .sectionWrap .section
{
    display: none;
}

#work .sectionWrap .section.isCurrent
{
    display: block;
}

#work .sectionWrap .hideTtl
{
    display: none;
}

#work .contsSelect
{
    padding: 10px;

    background: #009b59;
}

#work .contsSelect.bottom
{
    padding: 20px 10px;

    background: #f4f4f4;
}

#work .pageNav
{
    font-size: 12px;

    box-sizing: border-box;
}

#work .pageNav .selectTxt
{
    position: relative;

    display: none;

    padding: 15px 25px;

    border-radius: 4px;
    background: #fff;
}

#work .pageNav .selectTxt::before
{
    position: absolute;
    top: 12px;
    left: 10px;

    display: block;

    width: 3px;
    height: 25px;

    content: '';

    background: #009b59;
}

#work .pageNav .accordion
{
    overflow: hidden;

    border-radius: 4px;
}

#work .pageNav .selectTtl
{
    font-weight: bold;

    position: relative;

    padding: 15px 25px;

    transition: all .4s ease;

    border-radius: 4px 4px 0 0;
    background: #fff;
}

#work .pageNav .selectTtl:before
{
    position: absolute;
    top: 12px;
    left: 10px;

    display: block;

    width: 3px;
    height: 25px;

    content: '';

    background: #009b59;
}

#work .pageNav .selectTtl.isActive
{
    color: #fff;
    background: #484848;
}

#work .pageNav .selectTtl.isActive:before
{
    opacity: 0;
}

#work .pageNav .selectTtl.isActive .close
{
    position: absolute;
    top: 8px;
    right: 15px;

    display: block;

    width: 25px;
    height: 25px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    text-indent: -9999px;

    border: 1px solid #222;
    border-radius: 13px;
    background: #222;
}

#work .pageNav .selectTtl.isActive .close::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 2px;
    height: 12px;
    margin-top: -6px;
    margin-left: -1px;

    content: '';

    background: #fff;
}

#work .pageNav .selectTtl.isActive .close::before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 12px;
    height: 2px;
    margin-top: -1px;
    margin-left: -6px;

    content: '';

    background: #fff;
}

#work .pageNav .selectTtl .close
{
    position: absolute;
    top: 8px;
    right: 15px;

    display: block;

    box-sizing: border-box;
    width: 25px;
    height: 25px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    text-indent: -9999px;

    border: 1px solid #ddd;
    border-radius: 100px;
    background: #fff;
}

#work .pageNav .selectTtl .close::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 2px;
    height: 7px;
    margin-top: -4px;
    margin-left: 1px;

    content: '';

    background: #222;
}

#work .pageNav .selectTtl .close::before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 7px;
    height: 2px;
    margin-top: 1px;
    margin-left: -4px;

    content: '';

    background: #222;
}

#work .pageNav ul
{
    overflow: hidden;

    height: 0;
}

#work .pageNav ul li
{
    position: relative;

    border-top: 1px solid #ddd;
}

#work .pageNav ul li a
{
    font-size: 13px;

    display: block;

    padding: 15px 23px;

    text-decoration: none;

    color: #222;
    background: #fff;
}

#work .pageNav ul li.current::before
{
    position: absolute;
    top: 10px;
    left: 10px;

    display: block;

    width: 3px;
    height: 25px;

    content: '';

    background: #009b59;
}

.bottom #work .pageNav
{
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bottom #work .pageNav .selectTtl
{
    color: #fff;
    background-color: #484848;
}

.bottom #work .pageNav .selectTtl:before
{
    display: none;
}

.bottom #work .pageNav ul
{
    height: auto;
}
