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

@media only screen and (max-width: 959px) {

	.logo {
    width: 100px;
		margin: 0 0 6px 6px;
	}
	.header-logo {
		top: 1px;
    left: 10px;
		text-align: left;
		    display: block;
		padding-top: 14px;
		z-index: 1;
		width: 80%;
	}
	.logo-keyword {
		margin: 0;
	}
	.main-visual {
    padding-right: 60px;
}
	.main-visual-area {
    padding-top: 100px;
}
	.en {
    font-size: 6rem;
	}
	.jp {
    font-size: 1.4rem;
	}
	.sec-copy {
		margin-top: 10%;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0rem;
	}
	.company-box {
    margin: 8% 0 0 0;
}
	.company-box tr {
    font-size: 1.4rem;
	}
	.company-box th {
    padding: 0px 3% 10% 2%;
		white-space: nowrap;
		    width: 30%;
	}
	.company-box td {
    padding: 0px 2% 10% 3%;
}
	
	
	
	.footer-logo {
    margin-bottom: 15px;
}
	.footer-logo a {
    width: 100px;
	}
	.footer-gnav li {
    margin: 0 30px 0 0;
}
	.footer-gnav {
    margin-bottom: 0;
	}
	.contact-form {
    width: 80%;
		margin: 5% auto 16%;
}
	.formTable th {
		margin-bottom: 5px;
	}
	.formTable td {
		margin-bottom: 10px;
	}
	.formTable th,
  .formTable td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
}


#nav-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
  cursor: pointer;
	}
  #nav-toggle div {
    position: relative;
    width: 30px;
  }
  #nav-toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: black;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
    &:nth-child(1) {
      top: 0;
    }
    &:nth-child(2) {
        top: 10px;
    }
    &:nth-child(3) {
        top: 20px;
  }
}
.open {
  #nav-toggle span {
    background: #fff;
    &:nth-child(1) {
        top: 7px;
        transform: rotate(45deg);
    }
    &:nth-child(2) {
        top: 14px;
        width: 0;
        left: 50%;
    }
    &:nth-child(3) {
        top: 7px;
        transform: rotate(-45deg);
    }
  }
}

#gloval-nav {
      background-color: rgb(60 60 60 / 70%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transform: translateX(-100%);
  transition: opacity .6s ease, visibility .6s ease;
}
#gloval-nav a {
    display: block;
    color: #fff;
    padding: 20px 0;
    transition: color .6s ease;
  }
#gloval-nav li {
      opacity: 0;
      transform: translateX(-200px);
      transition:  transform .6s ease, opacity .2s ease;
      &:nth-child(2) {
        transition-delay: .15s;
      }
      &:nth-child(3) {
        transition-delay: .3s;
      }
      &:nth-child(4) {
        transition-delay: .45s;
      }
    }
 
/* open */
.open {
  overflow: hidden;
  
  #gloval-nav {
    visibility: visible;
    transform: translateX(0);
    transition: transform .6s;
  }
  #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition:  transform 1s ease, opacity .9s ease;
  }
}


#nav-toggle {
    z-index: 100;
}
#gloval-nav {
    z-index: 10;
}







/*
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

* {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  font-size: 3em;
  text-align: center;
}

.outer-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  
  .checkbox-toggle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
    
    &:checked {
      & + .hamburger {
        > div {
          transform: rotate(135deg);
          
          &:before,
          &:after {
            top: 0;
            transform: rotate(90deg);
          }
          
          &:after {
            opacity: 0;
          }
        }
      }
      
      & ~ .menu  {
        pointer-events: auto;
        visibility: visible;
        
        > div {
          transform: scale(1);
          transition-duration: .75s;
          
          > div {
            opacity: 1;
            transition: opacity 0.4s ease 0.4s;
			  margin-top: 20%;
          }
        }
      }
    }
    
    &:hover + .hamburger {
      box-shadow: inset 0 0 10px rgba(0, 0, 0, .1);
    }
    
    &:checked:hover + .hamburger > div {
      transform: rotate(225deg);
    }
  }
  
  .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 2em 1em;
    background: rgb(255 255 255 / 100%);
    border-radius: 0 0.12em 0.12em 0;
    cursor: pointer;
    transition: box-shadow 0.4s ease;
    backface-visibility: hidden;
    .flex-center;
    
    > div {
      position: relative;
      flex: none;
      width: 100%;
      height: 1px;
      background: #999;
      transition: all 0.4s ease;
      .flex-center;
      
      &:before,
      &:after {
        content: '';
        position: absolute;
        z-index: 1;
        top: -10px;
        left: 0;
        width: 100%;
        height: 1px;
        background: inherit;
        transition: all 0.4s ease;
      }
      
      &:after {
        top: 10px;
      }
    }
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    .flex-center;
    
    > div {
      width: 200vw;
      height: 200vw;
      color: #999;
      background: rgb(255 255 255 / 95%);
      border-radius: 50%;
      transition: all 0.4s ease;
      flex: none;
      transform: scale(0);
      backface-visibility: hidden;
      overflow: hidden;
      .flex-center;
      
      > div {
        text-align: center;
        max-width: 90vw;
        max-height: 100vh;
        opacity: 0;
        transition: opacity 0.4s ease;
        overflow-y: auto;
        flex: none;
        .flex-center;
        
        > ul {
          list-style: none;
          padding: 0 1em;
          margin: 0;
          display: block;
          max-height: 100vh;
          
          > li {
            padding: 0;
            margin: 1em;
            font-size: 24px;
            display: block;
            
            > a {
              position: relative;
              display: inline;
              cursor: pointer;
              transition: color 0.4s ease;
              
              &:hover {
                color: darken(#999,10%);
                
                &:after {
                  width: 100%;
                }
              }
              
              &:after {
                content: '';
                position: absolute;
                z-index: 1;
                bottom: -.15em;
                left: 0;
                width: 0;
                height: 1px;
                background: #e5e5e5;
                transition: width 0.4s ease;
              }
            }
          }
        }
      }
    }
  }
}
*/