@charset "UTF-8";
/*HEADER*/
/*******************************************************************/
#header {
  left: 0;
  position: fixed;
  top: 0px;
  z-index: 9000;
  height: 86px;
  width: 100%;
}

@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 {
  background: transparent;
  position: relative;
  max-width: 1280px;
  width: calc(100% - 40px);
  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;
  height: 72px;
  margin: 20px auto;
  border-radius: 8px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 768px) {
  #header .mw {
    padding: 0 10px;
    margin: 10px;
    width: calc(100% - 20px);
    border: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
  }
}

#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;
  width: 120px;
}

@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;
  }
}

@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-image: linear-gradient(120deg, #ff85d6 10%, #5e99ab 70%, #1d4262 100%);
  border-radius: 50px;
  padding: 10px;
  margin: 0;
  border-right: none;
}

#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 {
  top: 0;
}

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

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

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  display: block;
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 50%;
  height: 100vh;
  background: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media screen and (max-width: 1000px) {
  #g-nav {
    width: 100%;
  }
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
  }
}

#g-nav ul {
  padding: 120px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#g-nav ul li {
  padding: 0;
  width: 100%;
}

#g-nav ul li a {
  color: #333;
  font-weight: 600;
  display: block;
  padding: 20px 20px;
  font-size: 1.4rem;
  position: relative;
  font-family: 'Lexend Deca', 'Noto Sans JP', sans-serif;
  letter-spacing: 1px;
  border-bottom: 1px solid #eee;
  line-height: 1.3;
}

#g-nav ul li a:after {
  content: "〉";
  right: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #333;
}

#g-nav ul li a span {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

#g-nav ul li a i {
  font-size: 1.4rem;
  opacity: 0.8;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: absolute;
  z-index: 9999;
  top: 12px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.openbtn1 span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  border-radius: 2px;
  background-color: #333;
  width: 22px;
}

@media screen and (max-width: 1000px) {
  .openbtn1 span {
    background-color: #333;
  }
}

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

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

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

.openbtn1.active {
  background-color: rgba(255, 255, 255, 0.95);
}

.openbtn1.active span:nth-of-type(1) {
  top: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  width: 22px;
  background-color: #333 !important;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 22px;
  background-color: #333 !important;
}

/*============================
#float-cta
============================*/
.float-cta {
  position: fixed;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .float-cta {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: -webkit-gradient(linear, left top, right top, from(#4E10FF), to(#AB17DF));
    background: linear-gradient(90deg, #4E10FF 0%, #AB17DF 100%);
    -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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;
  }
  .float-cta__text {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
  }
  .float-cta__text span {
    display: block;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 2px;
  }
}

@media screen and (min-width: 769px) {
  .float-cta {
    right: 30px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4E10FF 0%, #AB17DF 100%);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    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: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;
  }
  .float-cta:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  }
  .float-cta__icon {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 5px;
  }
  .float-cta__text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }
  .float-cta__text span {
    display: block;
    font-size: 1.1rem;
    opacity: 0.8;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(171, 23, 223, 0.4);
            box-shadow: 0 0 0 0 rgba(171, 23, 223, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(171, 23, 223, 0);
            box-shadow: 0 0 0 15px rgba(171, 23, 223, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(171, 23, 223, 0);
            box-shadow: 0 0 0 0 rgba(171, 23, 223, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(171, 23, 223, 0.4);
            box-shadow: 0 0 0 0 rgba(171, 23, 223, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(171, 23, 223, 0);
            box-shadow: 0 0 0 15px rgba(171, 23, 223, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(171, 23, 223, 0);
            box-shadow: 0 0 0 0 rgba(171, 23, 223, 0);
  }
}

/*============================
#page-transition
============================*/
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4E10FF 0%, #AB17DF 100%);
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-transition-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.page-transition-overlay.fade-in {
  opacity: 1;
  visibility: visible;
}

body {
  opacity: 0;
  -webkit-animation: bodyFadeIn 1s ease forwards;
          animation: bodyFadeIn 1s ease forwards;
}

body.loaded {
  opacity: 1;
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes bodyFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bodyFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*============================
#contactform
============================*/
article#contactform {
  padding: 40px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  article#contactform {
    padding: 0px 20px 40px;
  }
}

article#contactform img.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.1;
}

article#contactform .container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#20c6c6), color-stop(#5b78e5), to(#9845e8)) !important;
  background: linear-gradient(to right, #20c6c6, #5b78e5, #9845e8) !important;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

article#contactform .container img.absolute {
  position: absolute;
  width: 60%;
  opacity: 0.1;
  bottom: 0;
  right: 0;
}

article#contactform .container header {
  width: auto;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  article#contactform .container header {
    width: auto;
  }
}

article#contactform .container header h2 {
  font-size: 3.6rem;
  color: #fff !important;
  text-shadow: none;
}

@media screen and (max-width: 768px) {
  article#contactform .container header h2 {
    width: auto;
  }
}

article#contactform .container header i {
  color: #fff !important;
  letter-spacing: 2px;
  padding-top: 20px;
  display: block;
  line-height: 2;
  font-weight: 300;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  article#contactform .container header i {
    font-size: 1.4rem;
  }
}

article#contactform .container section {
  padding-top: 0;
}

article#contactform .container section div.wrap {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#contactform .container section div.wrap {
    width: auto;
  }
}

article#contactform .container section div.wrap div.text__wrap {
  width: auto;
}

@media screen and (max-width: 768px) {
  article#contactform .container section div.wrap div.text__wrap {
    width: auto;
  }
}

article#contactform .container section div.wrap div.text__wrap div.btn__wrap {
  width: auto;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  article#contactform .container section div.wrap div.text__wrap div.btn__wrap {
    width: auto;
  }
}

article#contactform .container section div.wrap div.text__wrap div.btn__wrap a {
  color: #333 !important;
  margin: auto;
  position: relative;
  display: block;
  width: 240px;
  text-align: center;
  text-shadow: none;
  font-size: 1.2rem;
  letter-spacing: 2px;
  border-radius: 4px;
  background: #fff;
  padding: 20px 20px;
}

/*FOOTER*/
/*******************************************************************/
/*============================
#footer
============================*/
footer#footer {
  width: auto;
  background: #000;
  border-top: none;
  padding: 40px 0 20px;
  position: relative;
}

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

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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 0 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

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

footer#footer section div.content ul li {
  width: auto;
  padding: 0;
  letter-spacing: 2px;
}

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

footer#footer section div.content ul li a {
  font-family: 'Lexend Deca', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

footer#footer section div.content ul li a:hover {
  opacity: 0.7;
}

footer#footer section div.copyright {
  width: auto;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  font-size: 1rem;
}

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

img.bg.fix {
  display: none !important;
}

#container {
  background: -webkit-gradient(linear, left top, right top, from(#20c6c6), color-stop(#5b78e5), to(#9845e8)) !important;
  background: linear-gradient(to right, #20c6c6, #5b78e5, #9845e8) !important;
}

.cursor,
.follower {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: #333;
  z-index: 9999;
}

.follower {
  width: 40px;
  height: 40px;
  background-color: rgba(51, 51, 51, 0.2);
  z-index: 9998;
  -webkit-transition: width ease 0.1s, height ease 0.1s, -webkit-transform linear 0.2s;
  transition: width ease 0.1s, height ease 0.1s, -webkit-transform linear 0.2s;
  transition: transform linear 0.2s, width ease 0.1s, height ease 0.1s;
  transition: transform linear 0.2s, width ease 0.1s, height ease 0.1s, -webkit-transform linear 0.2s;
}

.follower.is-active {
  width: 120px;
  height: 120px;
}
/*# sourceMappingURL=main.css.map */