@charset "UTF-8";
/*HEADER*/
/*******************************************************************/
#header {
  left: 0;
  position: fixed;
  top: 0px;
  z-index: 9000;
  height: 86px;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), color-stop(80%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    top: 0;
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 72px;
    z-index: 9999;
    padding-bottom: 0;
    border-bottom: none;
  }
}

#header .mw {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #header .mw {
    padding: 0 20px;
  }
}

#header .logo-wrapper {
  width: 200px;
  padding: 0;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  #header .logo-wrapper {
    padding: 0;
    width: 200px;
  }
}

#header .logo-wrapper a {
  color: #fff;
}

#header .logo-wrapper img {
  padding: 0px;
}

@media screen and (max-width: 768px) {
  #header .logo-wrapper img {
    padding: 0px;
  }
}

#header #nav {
  width: auto;
}

@media screen and (max-width: 1000px) {
  #header #nav {
    pointer-events: none;
    display: none;
  }
}

#header #nav ul {
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
}

@media screen and (max-width: 768px) {
  #header #nav ul {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
    padding: 20px 20px 30px;
    background: #fff;
    border-radius: 10px;
  }
}

#header #nav ul li {
  display: inline-block;
  text-align: center;
  border-right: solid 1px #666;
  padding-right: 8px;
  margin-right: 8px;
  padding-bottom: 2px;
}

@media screen and (max-width: 768px) {
  #header #nav ul li {
    padding: 0px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}

#header #nav ul li:last-child {
  width: 120px;
  background: #00CDB7;
  border-radius: 50px;
  padding: 10px;
  margin: 0;
}

#header #nav ul li:last-child a {
  color: #fff !important;
}

#header #nav ul li a {
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 2.5px;
  font-family: 'Lexend Deca', 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 768px) {
  #header #nav ul li a {
    color: #000;
    height: auto;
    font-size: 1.4rem;
    line-height: 1.2;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

#header #nav ul li a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

@media screen and (max-width: 768px) {
  #header #nav ul li a:after {
    display: none;
  }
}

#header #nav ul li a span {
  font-size: 1.2rem;
  display: block;
  text-align: center;
  padding-top: 8px;
}

#header.fixed {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  -webkit-box-shadow: 0 4px 20px rgba(0, 205, 183, 0.3);
          box-shadow: 0 4px 20px rgba(0, 205, 183, 0.3);
  top: 0;
}

#header.fixed a {
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  #header.fixed a {
    color: #fff !important;
  }
}

#header.fixed .logo-wrapper a {
  color: #fff;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #004d45 50%, #000000 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.5s;
  transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.5s;
  overflow: hidden;
  /*アクティブクラスがついたら表示*/
}

#g-nav:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: radial-gradient(circle, rgba(0, 205, 183, 0.15) 1px, transparent 1px), radial-gradient(circle, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
  background-position: 0 0, 40px 60px;
  -webkit-animation: sparkleMove 30s linear infinite;
          animation: sparkleMove 30s linear infinite;
  opacity: 0.3;
}

#g-nav:after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 205, 183, 0.2) 0%, transparent 70%);
  -webkit-animation: pulse 8s ease-in-out infinite;
          animation: pulse 8s ease-in-out infinite;
}

#g-nav.panelactive {
  opacity: 1;
  visibility: visible;
}

#g-nav.panelactive ul li {
  -webkit-animation: slideInFromRight 0.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: slideInFromRight 0.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  opacity: 0;
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}

#g-nav.panelactive ul li:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

#g-nav.panelactive ul li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#g-nav.panelactive ul li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

#g-nav.panelactive ul li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#g-nav.panelactive ul li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

#g-nav #g-nav-list {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 60px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  #g-nav #g-nav-list {
    padding: 0 30px;
  }
}

#g-nav ul {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

#g-nav ul li {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

#g-nav ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(0, 205, 183, 0.1)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(0, 205, 183, 0.1), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

#g-nav ul li:hover:before {
  left: 100%;
}

#g-nav ul li:last-child {
  border-bottom: none;
}

#g-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px 40px;
  color: #fff;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

@media screen and (max-width: 768px) {
  #g-nav ul li a {
    padding: 24px 30px;
  }
}

#g-nav ul li a .menu-en {
  font-size: 3.6rem;
  font-weight: 800;
  font-family: 'Lexend Deca', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 768px) {
  #g-nav ul li a .menu-en {
    font-size: 2.4rem;
  }
}

#g-nav ul li a .menu-jp {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 768px) {
  #g-nav ul li a .menu-jp {
    font-size: 1.2rem;
  }
}

#g-nav ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#00CDB7), to(#ffd700));
  background: linear-gradient(90deg, #00CDB7, #ffd700);
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

#g-nav ul li a:after {
  content: "→";
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-20px);
          transform: translateY(-50%) translateX(-20px);
  font-size: 3rem;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

@media screen and (max-width: 768px) {
  #g-nav ul li a:after {
    font-size: 2rem;
    right: 30px;
  }
}

#g-nav ul li a:hover {
  padding-left: 60px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #g-nav ul li a:hover {
    padding-left: 45px;
  }
}

#g-nav ul li a:hover .menu-en {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

#g-nav ul li a:hover .menu-jp {
  color: rgba(255, 215, 0, 0.8);
}

#g-nav ul li a:hover:before {
  width: 100%;
}

#g-nav ul li a:hover:after {
  opacity: 1;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
}

@-webkit-keyframes slideInFromRight {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes sparkleMove {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-50px, -50px);
            transform: translate(-50px, -50px);
  }
}

@keyframes sparkleMove {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-50px, -50px);
            transform: translate(-50px, -50px);
  }
}

@-webkit-keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.3;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.5;
  }
}

@keyframes pulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.3;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.5;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 18px;
  right: 40px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1000px) {
  .openbtn1 {
    top: 12px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
}

.openbtn1:hover {
  background: rgba(0, 205, 183, 0.8);
  border-color: rgba(255, 215, 0, 0.5);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 20px rgba(0, 205, 183, 0.5);
          box-shadow: 0 0 20px rgba(0, 205, 183, 0.5);
}

.openbtn1 span {
  display: inline-block;
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  position: absolute;
  left: 50%;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 24px;
  margin-left: -12px;
  -webkit-box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 1000px) {
  .openbtn1 span {
    width: 22px;
    margin-left: -11px;
  }
}

.openbtn1 span:nth-of-type(1) {
  top: 20px;
}

@media screen and (max-width: 1000px) {
  .openbtn1 span:nth-of-type(1) {
    top: 16px;
  }
}

.openbtn1 span:nth-of-type(2) {
  top: 28.5px;
}

@media screen and (max-width: 1000px) {
  .openbtn1 span:nth-of-type(2) {
    top: 25px;
  }
}

.openbtn1 span:nth-of-type(3) {
  top: 37px;
}

@media screen and (max-width: 1000px) {
  .openbtn1 span:nth-of-type(3) {
    top: 34px;
  }
}

.openbtn1.active {
  background: rgba(0, 205, 183, 0.95);
  border-color: rgba(255, 215, 0, 0.8);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.openbtn1.active span {
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
          box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.openbtn1.active span:nth-of-type(1) {
  top: 28.5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 1000px) {
  .openbtn1.active span:nth-of-type(1) {
    top: 25px;
  }
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.openbtn1.active span:nth-of-type(3) {
  top: 28.5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 1000px) {
  .openbtn1.active span:nth-of-type(3) {
    top: 25px;
  }
}

/*FOOTER*/
/*******************************************************************/
/*============================
#footer
============================*/
footer#footer {
  width: auto;
  background: #333;
  padding: 40px 0 0;
}

@media screen and (max-width: 768px) {
  footer#footer {
    width: auto;
  }
}

footer#footer section {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  footer#footer section {
    display: block;
    padding: 0 20px 40px;
  }
}

footer#footer section .left .img {
  width: 200px;
}

footer#footer section .left .img a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

footer#footer section .left .img a:hover {
  opacity: 0.7;
}

footer#footer section .left .img img {
  width: 100%;
  height: auto;
}

footer#footer section .left p {
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.6;
  padding-top: 40px;
  color: #fff;
}

footer#footer section div.content {
  width: auto;
}

@media screen and (max-width: 768px) {
  footer#footer section div.content {
    width: auto;
  }
}

footer#footer section div.content ul {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  footer#footer section div.content ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 0 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

footer#footer section div.content ul li {
  width: auto;
  padding: 0 10px;
  letter-spacing: 2px;
  border-right: solid 1px;
  padding-bottom: 2px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  footer#footer section div.content ul li {
    width: 50%;
    font-size: 1.2rem;
    border: none;
    padding-left: 0;
  }
}

footer#footer section div.content ul li a {
  font-family: "Lexend Deca", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  white-space: nowrap;
}

footer#footer section div.content ul li:last-child {
  border: none;
}

footer#footer section div.content ul.mini li {
  border: none;
}

footer#footer section div.content ul.mini li a {
  font-size: 1rem;
}

footer#footer div.copyright {
  width: auto;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1rem;
  background: linear-gradient(135deg, #000000 0%, #004d45 50%, #000000 100%);
  padding: 20px;
  position: relative;
}

footer#footer div.copyright:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#00CDB7), color-stop(#ffd700), color-stop(#00CDB7), to(transparent));
  background: linear-gradient(90deg, transparent, #00CDB7, #ffd700, #00CDB7, transparent);
}

@media screen and (max-width: 768px) {
  footer#footer div.copyright {
    width: auto;
    padding: 20px 0;
  }
}
/*# sourceMappingURL=main.css.map */