@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 14px;
  line-height: 1.9;
  font-family: inter, Helvetica, Arial, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  color: #333;
  background: #eee;
}

a {
  display: block;
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #aaa;
  opacity: 100%;
}

img {
  width: 100%;
}
img:hover {
  opacity: 100%;
}

a img {
  transition: 0.4s ease-out;
}
a img:hover {
  /* opacity: 80%; */
}

p {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 32px;
}

label {
  color: #333;
}

*::-moz-selection {
  background: #82A2DB;
  color: #fff;
}

*::selection {
  background: #82A2DB;
  color: #fff;
}

.pc-none {
  display: none;
}

.contents-wrap {
  overflow-x: hidden;
}

/*------------header--------------*/
header {
  width: 100%;
  height: 100px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 100;
  mix-blend-mode: difference;
  z-index: 3000;
}
header .header-text {
  position: absolute;
  left: 30px;
  z-index: 2000;
}
header .header-text p {
  font-size: 6px;
  font-weight: 100;
  line-height: 12px;
  letter-spacing: -0.01em;
  color: #eee;
}
header .header-left {
  z-index: 2000;
}
header .header-left h1 img {
  width: 100%;
  max-width: 160px;
  fill: #eee;
  opacity: 80%;
}
header .header-right {
  display: flex;
  margin-right: -20px;
}
header .header-right ul {
  display: flex;
}
header .header-right ul li {
  padding: 10px;
}
header .header-right ul li a {
  display: block;
  padding: 6px 30px;
  font-size: 12px;
  color: #eee;
}
header .header-right ul li:last-child a {
  color: #000;
  background-color: #aaa;
  border-radius: 100px;
}

/*------------footer--------------*/
footer {
  color: #eee;
  background: #333;
}
footer .footer-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-img img {
  width: 100%;
  max-width: 360px;
  margin: 100px 30px;
}
footer .footer-container {
  display: flex;
  border-top: #2a2a2a solid 1px;
}
footer .footer-container .footer-left {
  width: 50vw;
  border-right: #2a2a2a solid 1px;
  padding-bottom: 72px;
}
footer .footer-container .footer-left .footer-company {
  display: flex;
  align-items: center;
  padding: 30px 30px 30px 120px;
  border-bottom: #2a2a2a solid 1px;
}
footer .footer-container .footer-left .footer-company img {
  width: 160px;
  margin-right: 40px;
}
footer .footer-container .footer-left dl {
  display: grid;
  grid-template-columns: auto 1fr;
}
footer .footer-container .footer-left dl dt {
  color: #888;
  padding: 20px 30px 20px 120px;
  border-bottom: #2a2a2a solid 1px;
}
footer .footer-container .footer-left dl dd {
  padding: 20px 100px 20px 0;
  border-bottom: #2a2a2a solid 1px;
}
footer .footer-container .footer-left dl .footer-map a {
  display: inline;
  position: absolute;
  padding: 0 20px;
  margin-left: 20px;
  font-size: 10px;
  color: #eee;
  border: 1px solid #eee;
  border-radius: 20px;
  transition: 1s ease;
}
footer .footer-container .footer-left dl .footer-map a:hover {
  background: #eee;
  color: #333;
  transition: 0.1s ease;
}
footer .footer-container .footer-right {
  width: 50vw;
  position: relative;
}
footer .footer-container .footer-right ul {
  margin: 40px;
}
footer .footer-container .footer-right ul li {
  padding: 10px 0;
}
footer .footer-container .footer-right ul li a {
  position: relative;
  display: block;
  width: 120px;
  font-size: 16px;
  color: #eee;
}
footer .footer-container .footer-right ul li a::after {
  position: absolute;
  content: url(../img/footer-arrow.svg);
  right: 0;
}
footer .footer-container .footer-right ul li a:hover {
  opacity: 50%;
}
footer .footer-container .footer-right .policy {
  position: absolute;
  left: 40px;
  bottom: 40px;
}
footer .footer-container .footer-right .policy a {
  color: #eee;
  font-size: 12px;
  text-decoration: underline;
}
footer .footer-container .footer-right .policy:hover {
  opacity: 50%;
}
footer .footer-container .footer-right .copyright {
  position: absolute;
  right: 40px;
  bottom: 40px;
  font-size: 10px;
  line-height: 18px;
}

/*----------------------------responsive--------------------------*/
@media screen and (max-width: 960px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .break {
    flex-basis: 100%;
  }
  #header-logo {
    position: fixed;
    z-index: 1400;
  }
  #header-logo a img {
    width: 110px;
    height: auto;
    fill: #333;
    mix-blend-mode: difference;
  }
  /*------------header--------------*/
  header {
    justify-content: center;
    padding: 0 30px;
  }
  header .header-left h1 img {
    width: 100%;
    max-width: 140px;
  }
  header .header-right {
    display: none;
  }
  header .header-right-ham {
    padding-right: 30px;
    position: absolute;
    top: 26px;
    right: 0;
    display: flex;
  }
  /*------------footer--------------*/
  footer .footer-img img {
    width: 70%;
  }
  footer .footer-container {
    flex-direction: column;
  }
  footer .footer-container .footer-left {
    width: 100vw;
    border-right: none;
    border-bottom: #2a2a2a solid 1px;
  }
  footer .footer-container .footer-left .footer-company {
    padding: 30px;
  }
  footer .footer-container .footer-left dl dt {
    padding: 20px 30px 20px 30px;
  }
  footer .footer-container .footer-right {
    width: 100vw;
    height: 520px;
  }
  footer .footer-container .footer-right .policy {
    bottom: 30px;
  }
  footer .footer-container .footer-right .policy a {
    font-size: 10px;
  }
  footer .footer-container .footer-right .copyright {
    bottom: 30px;
    font-size: 10px;
  }
}
/*--------------menu------------*/
#nav-toggle {
  /* cursor: pointer; */
  margin-top: 10px;
  height: 30px;
}

#nav-toggle > div {
  position: relative;
  width: 24px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #eee;
  position: absolute;
  transition: transform 0.6s;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 6px;
}

/* #nav-toggle span:nth-child(3) {
  top: 8px;
} */
.open #nav-toggle span:nth-child(1) {
  top: 0px;
  transform: rotate(225deg);
}

/* .open #nav-toggle span:nth-child(2) {
  top: 0px;
  width: 0;
  left: 50%;
} */
.open #nav-toggle span:nth-child(2) {
  top: 0px;
  transform: rotate(-225deg);
}

#nav-toggle {
  z-index: 1200;
}

#gloval-nav {
  background: #333;
  color: #eee;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: start;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  /* .contact-btn {
      position: absolute;
      display: inline-block;
      width: 100vw;

      a {
          position: relative;
          display: inline-block;
          top: 760px;

          &:before {
              content: url(../img/contact-arrow.svg);
              position: absolute;
              left: -14px;
              top: 52px;
          }

          &:after {
              content: url(../img/contact-text.svg);
              position: absolute;
              width: 102px;
              height: 102px;
              animation: 30s linear infinite rotation;
              left: -51px;
          }
      }
  } */
}
#gloval-nav .gloval-nav-privacy {
  position: absolute;
  left: 30px;
  bottom: 0;
}
#gloval-nav .gloval-nav-privacy p {
  font-size: 10px;
  text-decoration: underline;
}

#gloval-nav a {
  display: block;
  text-decoration: none;
  padding: 15px 0;
  transition: color 0.6s ease;
  color: #eee;
}

#gloval-nav ul {
  list-style: none;
  flex-direction: column;
  /* padding: 30px 0; */
  margin-top: 100px;
  margin-bottom: 120px;
  flex-wrap: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#gloval-nav ul li {
  width: 100%;
  font-size: 14px;
  /* padding: 24px; */
  /* border-bottom: solid 1px #eee; */
  text-align: center;
  display: flex;
  position: relative;
  border-bottom: 1px solid #3a3a3a;
}
#gloval-nav ul li:nth-child(1) {
  border-top: 1px solid #3a3a3a;
}

/* #gloval-nav ul li:nth-child(1) {
  border-top: solid 1px #eee;
} */
#gloval-nav ul li a {
  font-size: 20px;
  display: -ms-flexbox;
  /* display: flex; */
  align-items: center;
  width: 100%;
  height: 100%;
  /* font-weight: 900; */
  padding: 42px 30px;
  text-align: start;
}
#gloval-nav ul li a:hover {
  background: #111;
  color: #fff;
}

#gloval-nav ul li .fas {
  color: #aaa;
  position: absolute;
  right: 10px;
}

/* open */
.open {
  overflow: hidden;
}

.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}

.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

#gloval-nav .menu_contact {
  max-width: 240px;
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, #88157B 0%, #E19EE5 100%);
  border-radius: 4px;
  text-align: center;
  margin: 40px auto 0;
}
#gloval-nav .menu_contact p a {
  color: #fff;
  display: block;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/*--------------cursor------------*/
/*デフォルトのマウスカーソルを非表示にする*/
html,
body,
div,
span,
a {
  cursor: none;
}

/*独自のマウスカーソルを作成*/
.cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  z-index: 1000;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s ease-in-out;
  transform: translate(0, 0);
  pointer-events: none;
  mix-blend-mode: difference;
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover {
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  opacity: 40%;
  mix-blend-mode: difference;
}/*# sourceMappingURL=common.css.map */