@charset "UTF-8";
@media (min-width: 1024px) {
  .mobile-nav {
    display: none; } }
.mobile-nav .Logo {
  z-index: 300;
  position: fixed;
  top: 0;
  margin: 15px 0 0 15px; }
  .mobile-nav .Logo img {
    width: 130px;
    height: auto; }

.circle-bg {
  position: fixed;
  z-index: 200;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #0077C8;
  transform: scale(0);
  top: -50px;
  right: calc(0% - 50px);
  transition: all 1s; }
  .circle-bg.circleactive {
    transform: scale(50); }

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }
  #g-nav-list .logo {
    position: absolute;
    top: 15px;
    left: 8%; }
    #g-nav-list .logo img:nth-child(1) {
      width: 230px;
      height: auto; }
    #g-nav-list .logo img:nth-child(2) {
      width: 150px;
      height: auto;
      margin-top: 10px; }

#g-nav.panelactive #g-nav-list {
  display: block; }
#g-nav ul {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 120px;
  left: 5%; }
#g-nav.panelactive ul {
  opacity: 1; }
  #g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1.5s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
    font-size: 1.2em; }
#g-nav li {
  text-align: center;
  list-style: none; }
  #g-nav li a {
    text-decoration: none;
    padding: 12px 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: left;
    color: #fff; }

@keyframes gnaviAnime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.openbtn {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 9999;
  cursor: pointer;
  width: 60px;
  height: 60px;
  overflow: hidden; }
  .openbtn .openbtn-area {
    transition: all .4s; }
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 2px;
    border-radius: 2px;
    background-color: #333;
    right: 17px;
    width: 26px; }
    .openbtn span:nth-of-type(1) {
      top: 16px; }
    .openbtn span:nth-of-type(2) {
      top: 24px; }
      .openbtn span:nth-of-type(2)::after {
        content: "MENU";
        position: absolute;
        top: 11px;
        left: -1.6px;
        color: #333;
        font-size: 0.60em;
        text-transform: uppercase;
        font-weight: 400; }
    .openbtn span:nth-of-type(3) {
      top: 32px; }
  .openbtn.active span {
    background-color: #fff; }
    .openbtn.active span:nth-of-type(1) {
      transform: translateY(6px) rotate(-45deg);
      top: 18px;
      right: 16px;
      width: 28px; }
    .openbtn.active span:nth-of-type(2) {
      background-color: rgba(248, 246, 240, 0); }
      .openbtn.active span:nth-of-type(2)::after {
        content: "CLOSE";
        position: absolute;
        top: 11px;
        left: -2.6px;
        color: #fff; }
    .openbtn.active span:nth-of-type(3) {
      transform: translateY(-6px) rotate(45deg);
      top: 30px;
      right: 16px;
      width: 28px; }
