/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "tsukuhou";
  src: url("../font/Tsukuhou-35Point-Gothic.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@keyframes loopCl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loopClRv {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
:root {
  --font-main: "helvetica-lt-pro", "ryo-gothic-plusn", sans-serif;
  --color-bk: 8 8 10;
  --color-bg: 230 230 230;
  --color-white: 255 255 255;
  --color-blue: 7 21 222;
  --color-blue-deep: 0 28 210;
  --color-cyan: 18 169 188;
  --color-gray: 116 116 116;
  --radius-lg: 2.4rem;
  --radius-xl: 3.2rem;
  --radius-round: 999rem;
  --duration: .34s;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  scrollbar-width: none;
  color: rgb(var(--color-bk));
  margin-top: 0 !important;
}
@media screen and (min-width: 320px) {
  html {
    font-size: 2.56411vw;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.5208335vw;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 0.5208335vw;
  }
}
html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background: rgb(var(--color-bg));
  font-family: var(--font-main);
  font-feature-settings: "palt";
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

.u-pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .u-pc {
    display: block;
  }
}

/* Header
--------------------------------------------- */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
}
@media screen and (min-width: 320px) {
  .siteHeader {
    padding: 8px 16px 0;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader {
    padding: 16px 40px 0;
  }
}

.siteHeader_logo {
  pointer-events: auto;
}

.siteHeader_logoLink {
  display: block;
}

@media screen and (min-width: 320px) {
  .siteHeader_logoImg {
    width: 15.2rem;
    transform: translateY(0.8rem);
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_logoImg {
    width: 18.8rem;
    transform: translateY(1.4rem);
  }
}

.siteHeader_right {
  display: flex;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
}
@media screen and (min-width: 1025px) {
  .siteHeader_right {
    gap: 28px;
  }
}

.siteHeader_nav {
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(24px) saturate(140%);
  border-radius: 999vw;
  border: solid 1px rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 24px -8px rgba(0, 0, 0, 0.16);
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
@media screen and (min-width: 320px) {
  .siteHeader_nav {
    display: grid;
    position: fixed;
    inset: auto 16px 8px 16px;
    gap: 0px;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_nav {
    display: flex;
    position: relative;
    inset: auto;
    gap: 40px;
    background: transparent;
    backdrop-filter: unset;
    border-radius: unset;
    border: none;
    box-shadow: unset;
  }
}

.siteHeader_navLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgb(var(--color-bk));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: opacity var(--duration) var(--ease);
}
@media screen and (min-width: 320px) {
  .siteHeader_navLink {
    font-size: 1.2rem;
    justify-content: center;
    padding: 12px 0;
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_navLink {
    font-size: 1.9rem;
    justify-content: flex-start;
    padding: 0;
  }
}
.siteHeader_navLink::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: rgb(var(--color-blue));
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--duration) var(--ease);
}
.siteHeader_navLink:hover {
  opacity: 0.74;
}
.siteHeader_navLink:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.siteHeader_contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, rgb(var(--color-blue-deep)), rgb(var(--color-cyan)));
  color: rgb(var(--color-white));
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 320px) {
  .siteHeader_contact {
    font-size: 1.4rem;
    padding: 12px 20px 10px;
    transform: translateY(0.4rem);
  }
}
@media screen and (min-width: 600px) {
  .siteHeader_contact {
    font-size: 1.8rem;
    padding: 16px 28px 14px;
    transform: unset;
  }
}

.siteHeader_menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  gap: 8px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .siteHeader_menu {
    width: 5.6rem;
    height: 5.6rem;
  }
}

.siteHeader_menuLine {
  display: block;
  width: 100%;
  height: 3px;
  background: rgb(var(--color-bk));
  border-radius: var(--radius-round);
}/*# sourceMappingURL=style.css.map */