@charst "UTF-8";

html{
    font-size: 100%;
}
body{
    color: #000;
    font-family: 'Roboto','Note Sans JP', sans-serif;
    font-weight: 400;
    padding: 0;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
li{
    list-style: none;
}
a{
    color: #000;
    text-decoration: none;
}
a:hover{
    opacity: 0.7;
}

/*ヘッダー*/
#header{
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 0 0 0 20px;
}
#header .logo{
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
}
#header .logo a{
  display: block;
}
#header .navi .menu{
  display: flex;  
  align-items: center;
  margin-right: 50px;
}
#header .navi .menu li{
  font-size: 14px;
  margin-left: 40px;
}
/*ページタイトル*/
.wrapper-1080{
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
.page-header{
  background-color: #ffed58;
  padding: 130px 0 60px;
  text-align: center;
}
.page-header .page-title .ja{
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
.page-header .page-title .en{
  display: block;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
/*フッター*/
#footer{
    border-top: solid 1px #707070;
    padding: 10px 0;
}
#footer .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 2% 10px 2%;
}
#footer .office{
    max-width: 100%;
    
}
#footer .menu{
    display: flex;
    align-items: center;
}
#footer .menu li{
    font-size: 14px;
    margin-left: 40px;
    position: relative;
}
#footer .menu li::after{
    content: "";
    width: 1px;
    height: 16px;
    background-color: #000;
    transform: rotate(30deg);
    position: absolute;
    top: 3px;
    right: -20px;
}
#footer .menu li:last-child::after{
    content: none;
}

/*-----------------------------------------------------
スマートフォン
-----------------------------------------------------*/
@media screen and (max-width: 767px){
  main{
    padding-top: 60px;
  }
  #header{
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #header .hamburger{
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 30;
  }
  #header .hamburger span{
    width: 30px;
    height: 3px;
    background-color: #000;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
  }
  #header .hamburger span:nth-of-type(1){
    top: 16px;
  }
  #header .hamburger span:nth-of-type(2){
    top: 25px;
  }
  #header .hamburger span:nth-of-type(3){
    top: 34px;
  }
  #header .navi {
    width: 80%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 20;
    transition: all 0.6s;
  }
  #header .navi .menu{
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 60px 0;
    overflow: auto;
  }
  #header .navi .menu li{
    padding: 10px 0;
    margin-left: 0;
  }
  #header .navi .active{
    right: 0;
  }
  #header .hamburger .active span:nth-of-type(1){
    top: 24px;
    transform: rotate(-45deg);
  }
  #header .hamburger .active span:nth-of-type(2){
    opacity: 0;
  }
  #header .hamburger .active span:nth-of-type(3){
    top: 24px;
    transform: rotate(45deg);
  }
  .pc{
    display: none;
  }
  .page-header{
    padding: 75px 0 20px;
  }
  .page-header .page-title .en{
    font-size: 30px;
  }
  #footer .inneer{
    flex-direction: column;
    margin-bottom: 40px;
  }
  #footer .office{
    margin-bottom: 20px;
  }
  #footer .menu li{
    margin-left: 30px;
  }
  #footer .menu li::after{
    right: -15px;
  }
  #footer .menu li::first-child{
    margin-left: 0;
  }
}