@charset "utf-8";
/*------------------------------------------------------------------

	base.css
 
------------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

body {
    position: relative;
    width: 100%;
    height: auto;
    color: #000;
}

header {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
}

header .headerInner {
    position: relative;
    top: 0px;
    left: 0px;
    margin: auto;
    width: 100%;
    height: 100%;
}

header .headerInner .headerLogo {
    position: absolute;
    top: 50%;
    left: 54px;
    display: inline-block;
    transform: translateY(-50%);
}

header .headerInner .headerMenu {
    position: absolute;
    top: 50%;
    right: 94px;
    transform: translateY(-50%);
}

header .headerInner .headerMenu li {
    position: relative;
    top: 0px;
    left: 0px;
    float: left;
    letter-spacing: 0.1em;
}

header .headerInner .headerMenu li:not(:last-child) {
    margin-right: 60px;
}

header .headerInner .headerMenu li a {
    color: #000;
        z-index: 99;
}

header .headerInner .headerMenu li a:hover:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 50%;
    width: 5px;
    height: 5px;
    font-size: 16px;
    background-color: #000;
    border-radius: 5px;
    transform: translateX(-50%);
}



header .headerInner .headerMenu .serviceMenuWrapper {
    position: relative;
    top: 0px;
    left: 0px;
        -webkit-transition: all .2s ease;
    transition: all .2s ease;

}
header .headerInner .headerMenu li.serviceMenuWrapper:hover ul.serviceMenu {
    top: -15px;
    visibility: visible;
    opacity: 1;
}

header .headerInner .headerMenu .serviceMenuWrapper .serviceMenu {
    position: absolute;
    top: 0px;
    left: -50%;
    width: 160px;
    height: auto;
    visibility: hidden;
    padding-top: 45px;
    background: rgba(255,255,255,.5);
}
header .headerInner .headerMenu .serviceMenuWrapper .serviceMenu li{
    padding: 8px 0;
}
header .headerInner .headerMenu .serviceMenuWrapper .serviceMenu li a:hover:before{
    display: none;
}



header .headerInner .headerMenu .serviceMenuWrapper .serviceMenu li {
    position: relative;
    top: 0px;
    left: 0px;
    margin-bottom: 4px;
    width: 100%;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    display: block;
    background-color: #fff;
    background-image: url('../../commons/img/bg_services.png');
}
header .headerInner .headerMenu .serviceMenuWrapper .serviceMenu li:last-child{
    margin-bottom: 0;
}

header .headerInner .headerMenu .serviceMenuWrapper .serviceMenu li a {
    width: 100%;
    height: 100%;
    display: block;
}

/* end headerMenu */

.fixMenu {
    z-index: 10;
    position: fixed;
    top: 80px;
    right: 0px;
    width: 50px;
    height: auto;
}

.fixMenu li:nth-of-type(1) {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 160px;
    text-align: center;
    font-size: 15px;
    background-color: #f0d200;
}

.fixMenu li:nth-of-type(1) a {
    background-image: url('../../commons/img/contact-icon.png');
    background-repeat: no-repeat;
    background-position: center top 20px;
}

.fixMenu li:nth-of-type(1) a img {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.fixMenu li:nth-of-type(2) {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.8);
    background-image: url('../../commons/img/arrow.png');
    background-repeat: no-repeat;
    background-position: center top 10px;
    cursor: pointer;
}

.fixMenu li:nth-of-type(2) span {
    position: absolute;
    bottom: 14px;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    color: #fff;
}

.fixMenu li a {
    width: 100%;
    height: 100%;
    color: #000;
    display: block;
}

/* fixMenu */

/* end header */

footer {}

/* end footer */

/*drag*/
::selection
{
    background: #000000;
    color: #ffffff;
}

/* drag for Firefox */
::-moz-selection
{
    background: #000000;
    color: #ffffff;
}