* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #7c7c7c;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

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

:root {
  --small_size: clamp(0.75rem, 0.646rem + 0.33vw, 0.875rem);
  --regular_size: clamp(0.875rem, 0.771rem + 0.33vw, 1rem);
  --semi_regular_size: clamp(1rem, 0.896rem + 0.33vw, 1.125rem);
  --medium_size: clamp(1.125rem, 1.021rem + 0.33vw, 1.25rem);
  --large_size: clamp(1.5rem, 0.979rem + 1.67vw, 2.125rem);
  --regular_weight: 400;
  --medium_weight: 500;
  --bold_weight: 700;
  --opacity: 0.7;
  --transition: 0.3s;
}

header {
  padding: 70px 40px 0 40px;
  display: flex;
  justify-content: end;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 1050px) {
  header {
    padding: 30px 20px 0 20px;
  }
}
@media screen and (max-width: 1050px) {
  header #gnav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(0, -100%);
    transition: 1s;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 2;
  }
  header #gnav.visible {
    transform: translate(0, 0);
  }
}
header #gnav ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1050px) {
  header #gnav ul {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
}
header #gnav ul li:nth-child(1) {
  width: 65px;
}
header #gnav ul li:nth-child(2) {
  width: 66px;
}
header #gnav ul li:nth-child(3) {
  width: 83px;
}
header #gnav ul li:nth-child(4) {
  width: 61px;
}
header #gnav ul li:nth-child(5) {
  width: 83px;
}
header #gnav ul li:nth-child(6) {
  width: 71px;
}
header #trigger {
  width: 30px;
  height: 20px;
  display: none;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1050px) {
  header #trigger {
    display: block;
  }
}
header #trigger span {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  background-color: #626262;
  transition: 0.2s;
}
header #trigger span:nth-of-type(1) {
  top: 0;
}
header #trigger span:nth-of-type(2) {
  top: 9px;
}
header #trigger span:nth-of-type(3) {
  bottom: 0;
}
header #trigger.on span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
header #trigger.on span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header #trigger.on span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}/*# sourceMappingURL=common.css.map */