@charset "UTF-8";
/* Font imports */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");
/* Reset CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

body {
  overflow-x: hidden;
  /* Colors */
  --color-text: #fff;
  --color-bg: #000;
  --color-link: #fff;
  --color-link-hover: #fff;
  /* Typography */
  --font-size-s: 13vw;
  --font-size-m: 16vw;
  --font-size-l: 24vw;
  --font-size-xl: 26vw;
  --font-family: widescreen-ex, sans-serif;
  --font-weight: 900;
  --font-case: uppercase;
  /* Layout */
  --content-offset: 20vh;
  /* Text Effect Variables */
  --color-rep-text: var(--color-text);
  --color-rep-text-main: var(--color-text);
  --color-rep-outline: var(--color-text);
  --color-rep-bg: var(--color-bg);
  --font-factor: 0.059;
  --font-line: 0.745;
  /* Base Styles */
  color: var(--color-text);
  background-color: var(--color-bg);
  margin: 0;
  font-family: halyard-micro, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
}

* {
  cursor: none;
}

/* スマートフォンではデフォルトのカーソルを使用 */
@media (max-width: 768px) {
  * {
    cursor: auto;
  }
  .Cursor {
    display: none !important;
    pointer-events: none !important;
  }
  /* スクロールの最適化 */
  body {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    touch-action: pan-y pinch-zoom;
  }
}
/* カーソルが必要な要素には個別に設定 */
a,
button,
input,
select,
textarea,
.clickable {
  cursor: none;
}

.Cursor {
  pointer-events: none;
  position: fixed;
  display: block;
  border-radius: 0;
  transform-origin: center center;
  mix-blend-mode: difference;
  top: 0;
  left: 0;
  z-index: 9999;
  filter: url("#goo");
  touch-action: none;
}
.Cursor span {
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 20px;
  background-color: white;
  transition: background-color 0.3s ease, border 0.3s ease;
  transform-origin: center center;
  transform: translate(-50%, -50%);
  touch-action: none;
}

/* SVGフィルターを追加 */
body::after {
  content: "";
  position: fixed;
  top: -100%;
  left: -100%;
  width: 1px;
  height: 1px;
  z-index: -1;
}

/* SVGフィルターを追加するためのスクリプト */
@keyframes addFilter {
  to {
    opacity: 1;
  }
}
.transition-shape {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
}
.transition-shape .shape {
  width: 100%;
  height: 100%;
}
.transition-shape .shape path {
  fill: #4b2cf2;
}

footer {
  background: #fff;
  padding: 120px 0 5px 0;
  position: relative;
  z-index: 1;
}
footer .footer_border {
  width: 100%;
  height: 1px;
  background: #000;
}
footer .footer_border.top {
  position: absolute;
  top: 0;
}
footer .footer_border.bottom {
  position: absolute;
  bottom: 0;
}
footer .footer_container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer_container {
    flex-direction: column;
    gap: 40px;
  }
}
footer .footer_left .footer_nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  footer .footer_left .footer_nav {
    gap: 20px;
    max-width: 90%;
  }
}
footer .footer_left .footer_menu_left {
  margin-right: 100px;
}
@media (max-width: 768px) {
  footer .footer_left .footer_menu_left {
    margin-right: 0;
  }
}
footer .footer_left .footer_menu_left, footer .footer_left .footer_menu_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
footer .footer_left .footer_menu_left a, footer .footer_left .footer_menu_right a {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #000;
  font-weight: 500;
}
footer .footer_left .footer_menu_left a:hover, footer .footer_left .footer_menu_right a:hover {
  opacity: 0.7;
}
footer .footer_left .footer_social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
footer .footer_left .footer_social .social_icon img {
  height: 35px;
  width: auto;
  transition: opacity 0.3s ease;
}
footer .footer_left .footer_social .social_icon:hover img {
  opacity: 0.7;
}
footer .footer_right {
  text-align: right;
}
@media (max-width: 768px) {
  footer .footer_right {
    text-align: center;
  }
}
footer .footer_right .footer_contact {
  margin-bottom: 40px;
}
footer .footer_right .footer_contact .contact_container {
  border: 1px solid #000;
  border-radius: 60px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: padding-right 0.3s ease;
  width: 60vw;
  position: relative;
  overflow: hidden;
}
footer .footer_right .footer_contact .contact_container:hover {
  padding-right: 20px;
}
footer .footer_right .footer_contact .contact_container:hover .contact_button {
  transform: translateX(10vw);
}
footer .footer_right .footer_contact .contact_container:hover .contact_text {
  opacity: 0;
}
footer .footer_right .footer_contact .contact_container:hover .contact_text_alt {
  opacity: 1;
}
footer .footer_right .footer_contact .contact_container .contact_button {
  background: #000;
  color: #fff;
  padding: 10px 70px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  margin-left: 10px;
}
footer .footer_right .footer_contact .contact_container .contact_text {
  padding: 10px 20px;
  color: #000;
  font-size: 14px;
  transition: opacity 0.3s ease;
  position: relative;
}
footer .footer_right .footer_contact .contact_container .contact_text_alt {
  position: absolute;
  right: 10%;
  color: #000;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  footer .footer_right .footer_contact .contact_container {
    width: 98%;
  }
  footer .footer_right .footer_contact .contact_container .contact_button {
    padding: 10px 30px;
    margin-left: 10px;
  }
}
footer .footer_right .contact_mail {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
footer .footer_right .contact_mail:hover {
  opacity: 0.7;
}
footer .footer_bottom {
  clear: both;
  text-align: center;
  margin: 60px 0 10px 0;
  padding-top: 80px;
}
footer .footer_bottom .footer_logo {
  width: 90%;
  height: auto;
  margin-bottom: 20px;
}
footer .footer_bottom .copyright {
  font-size: 12px;
  color: #000;
  font-weight: 500;
}

.loading-container .loading {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  background-color: #000;
}
.loading-container .loading.slide-out {
  animation: slideout 1s ease-out forwards;
  animation-delay: 1s;
}
.loading-container .loading.slide-in {
  animation: slidein 1s ease-out forwards;
}
.loading-container .loading-text {
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.loading-container .loading-text.fade-out {
  animation: fadeout 1s ease-out forwards;
  animation-delay: 0.8s;
}
.loading-container .loading-text.fade-in {
  animation: fadein 1s ease-out forwards;
}

@keyframes fadeup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes slideout {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100vw);
    visibility: hidden;
  }
}
@keyframes slidein {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}
/* スマートフォンでのタッチスクロールを最適化 */
@media (max-width: 768px) {
  body {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
  .fv {
    touch-action: pan-y pinch-zoom;
  }
}/*# sourceMappingURL=common.css.map */