@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(10px, 0.69vw, 16px);
}

body {
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2B3450;
  background-color: #ffffff;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

ul,
ol,
li {
  list-style: none;
}

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

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

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}

address {
  font-style: normal;
}

fieldset {
  border: none;
}

input[type=date],
input[type=time],
input[type=month],
input[type=week],
input[type=datetime-local] {
  appearance: auto;
  -webkit-appearance: auto;
  color: inherit;
  line-height: normal;
}

input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 1;
  filter: none;
}

input[type=date]::-webkit-datetime-edit {
  color: inherit;
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 935px) {
  .container {
    width: 85%;
  }
}

.kg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
body:not(.home) .kg-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.kg-header.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.kg-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 0;
}
.kg-header__logo .kg-logo svg {
  width: 14rem;
}
.kg-header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 480px) {
  .kg-header__cta {
    display: none;
  }
}
.kg-header__cta .kg-contact-btn {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  background: transparent;
  border: 1px solid #000;
  border-radius: 2.4rem;
  padding: 0.8rem 3rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.kg-header__cta .kg-contact-btn:hover {
  background: #000;
  color: #ffffff;
}

.kg-hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
}
@media (max-width: 968px) {
  .kg-hamburger {
    display: flex;
  }
}
.kg-hamburger span {
  width: 2.4rem;
  height: 2px;
  background: #000;
  transform-origin: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.kg-hamburger.active span:nth-child(1) {
  transform: translateY(calc(0.4rem + 1px)) rotate(45deg);
}
.kg-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.kg-hamburger.active span:nth-child(3) {
  transform: translateY(calc(-0.5rem - 1px)) rotate(-45deg);
}

.dropdown-menu {
  position: fixed;
  top: 1rem;
  right: 4vw;
  bottom: 1rem;
  width: 40rem;
  height: calc(100vh - 2rem);
  background: rgb(255, 255, 255);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: -1;
  padding: 8rem 4rem 4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 480px) {
  .dropdown-menu {
    right: 1rem;
    bottom: auto;
    height: auto;
    width: calc(100vw - 2rem);
    border-radius: 2rem;
    transform: translateX(1rem) translateY(0);
    bottom: auto;
    min-height: 40rem;
    max-height: calc(100vh - 2rem);
    padding: 12rem 3rem 4rem;
    background: rgba(0, 0, 0, 0.95);
  }
}
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 480px) {
  .dropdown-menu.active {
    transform: translateX(0) translateY(0);
  }
}
.dropdown-menu__nav {
  position: absolute;
  bottom: 4rem;
}
@media (max-width: 480px) {
  .dropdown-menu__nav {
    position: static;
    bottom: auto;
  }
}
.dropdown-menu__list {
  gap: 2.4rem;
  display: flex;
  flex-direction: column;
}
.dropdown-menu__list li a {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  display: block;
  font-size: 3.2rem;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}
.dropdown-menu__list li a:hover {
  transform: translateX(1rem);
  color: #666666;
}
@media (max-width: 480px) {
  .dropdown-menu__list li a {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
  }
  .dropdown-menu__list li a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}

body.menu-open {
  overflow: hidden;
}
@media (max-width: 480px) {
  body.menu-open .kg-header__logo svg .cls-1 {
    fill: white;
    transition: fill 0.3s ease;
  }
  body.menu-open .kg-hamburger span {
    background: white;
    transition: background 0.3s ease;
  }
}

@media (max-width: 480px) {
  .kg-header__logo svg .cls-1 {
    fill: #000;
    transition: fill 0.3s ease;
  }
  .kg-hamburger span {
    background: #000;
    transition: background 0.3s ease;
  }
}
.kg-header-sp {
  opacity: 0;
}/*# sourceMappingURL=header-main.css.map */