@charset "utf-8";
*{
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica', '游ゴシック', 'YuGothic', 'dnp-shuei-gothic-kin-std', sans-serif;
}


body {
    animation: fadeIn 1.3s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.3s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}



.header{
    width: 100%;
    height: 140px;
    position: relative;
}
.header-left{
    float: left;
    margin-top: 45px;
    margin-left: 5%;
}
.header-left a{
    text-decoration: none;
    line-height: 1.5;
    color: black;
}
.icon-en{
    font-size: 18px;
}
.icon-jp{
    font-size: 14px;
}


.gNav{
    float: right;
    padding-top: 55px;
    padding-right: 5%;
}
.gNav-menu a{
    text-decoration: none;
    margin-left: 20px;
    color: black;
    list-style: none;
}

ul{list-style: none;}

.gNav :hover{
    color: rgb(146, 146, 146);
    transition: color 0.15s;
}

.header .btn-gNav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.header .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 2.5px;
    background: #acacac;
    border-radius: 0.1px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.header .btn-gNav span:nth-child(1) {
    top: 0;
}

.header .btn-gNav span:nth-child(2) {
    top: 10px;
}

.header .btn-gNav span:nth-child(3) {
    top: 20px;
}

.header .btn-gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header .btn-gNav.open span:nth-child(2),
.header .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn-gNav {
    display: none;
    margin-top: 30px;
    margin-right: 5%;
}
.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
}
.gNav .gNav-menu li {
    margin: 0 auto;
}

@media screen and (max-width: 800px) {
    .btn-gNav {
        display: block;
    }
    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(233, 236, 227, 0.939);
        font-size: 16px;
        font-weight: lighter;
        box-sizing: border-box;
        z-index: 1;
        transition: 0.7s;
    }
    .gNav.open {
        right: 0;
    }
    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
    }
    .gNav .gNav-menu li {
      list-style: none;
      text-align: center;
        width: 86%;
        justify-content: space-between;
        padding-top: 8vh;
        font-size: 40px
    }
}





.footer{
    padding-top: 50px;
    padding-bottom: 10px;
    background-color: rgb(233, 236, 227);
}
.footer-adress{
    text-align: left;
    font-size: 12px;
    margin-left: 5%;
}
.footer-adress1{
    float: left;
}
.footer-adress2{
    float: left;
    margin-left: 70px;
}
.footer-clear{
    clear: both;
}
.back-home{
    text-align: right;
    margin-top: 40px;
    margin-right: 2%;
}
.back-home a{
    text-decoration: none;
    color: black;
}
.back-home :hover{
    color: rgb(146, 146, 146);
    transition: color 0.15s;
}
.footer-copyright{
    font-size: 10px;
    text-align: right;
    margin-top: 20px;
    margin-right: 2%;
    margin-bottom: 10px;
}


  

  