html, body {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  z-index: 50;
}
header a {
  text-decoration: none;
  color: #333333;
}
@media screen and (max-width: 960px) {
  header {
    height: 60px;
  }
}

.site-logo {
  display: block;
  width: 252px;
  height: 78px;
  position: absolute;
  top: 8px;
  left: calc(50% - 815px);
  z-index: 1;
}
@media screen and (max-width: 1630px) {
  .site-logo {
    left: 8px;
  }
}
@media screen and (max-width: 960px) {
  .site-logo {
    top: 11px;
    width: 120px;
    height: 38px;
  }
}
.site-logo img {
  width: 100%;
  height: auto;
}

.sp-navi {
  display: none;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 960px) {
  .sp-navi {
    display: block;
  }
}
.sp-navi span {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #4D4746;
  left: 10px;
  transition: all 0.5s;
}
.sp-navi span:first-of-type {
  top: 20px;
}
.sp-navi span:nth-of-type(2) {
  top: 30px;
}
.sp-navi span:last-of-type {
  top: 40px;
}
.sp-navi.active span:first-of-type {
  transform: translateY(10px) rotate(45deg);
}
.sp-navi.active span:nth-of-type(2) {
  opacity: 0;
}
.sp-navi.active span:last-of-type {
  transform: translateY(-10px) rotate(-45deg);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 960px) {
  .header-inner {
    flex-direction: column-reverse;
    justify-content: flex-end;
    position: absolute;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    box-sizing: border-box;
    padding: 32px 16px;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    overflow: hidden;
  }
}

@media screen and (max-width: 960px) {
  .menu-open .header-inner {
    opacity: 1;
    visibility: visible;
  }
}
.gnav01-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  min-height: 100px;
  max-width: 1630px;
  padding-left: 280px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .gnav01-inner {
    flex-direction: column;
    padding-left: 0;
  }
}

.gnav01 {
  width: 100%;
  background-color: #ffffff;
}
.gnav01 .gnav01_sub {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  font-size: 15px;
  margin-right: 48px;
  column-gap: 32px;
  row-gap: 8px;
}
@media screen and (max-width: 960px) {
  .gnav01 .gnav01_sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
    column-gap: 0;
    row-gap: 0;
  }
}
.gnav01 .gnav01_sub li a {
  width: 100%;
  padding: 0 0 0 16px;
  position: relative;
  transition: all 0.2s;
}
.gnav01 .gnav01_sub li a:hover {
  opacity: 0.6;
}
.gnav01 .gnav01_sub li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0da";
}
@media screen and (max-width: 960px) {
  .gnav01 .gnav01_sub li a {
    padding: 0 0 0 20px;
  }
  .gnav01 .gnav01_sub li a::before {
    content: "\f138";
  }
}
.gnav01 .gnav01_cta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .gnav01 .gnav01_cta {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .gnav01 .gnav01_cta {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .gnav01 .gnav01_cta li:first-of-type, .gnav01 .gnav01_cta li:last-of-type {
    grid-column: 1/4;
  }
}
.gnav01 .gnav01_cta li a {
  width: 100%;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s;
}
.gnav01 .gnav01_cta li a:hover {
  opacity: 0.6;
}
.gnav01 .gnav01_cta li a i {
  font-size: 32px;
  margin-bottom: 10px;
  /* padding-top: 24px; */
}
@media screen and (max-width: 960px) {
  .gnav01 .gnav01_cta li a {
    border-radius: 4px;
    background-color: #ffffff;
    padding: 10px 0;
    border: 1px solid #4D4746;
  }
}
@media screen and (max-width: 768px) {
  .gnav01 .gnav01_cta li a {
    box-shadow: unset;
  }
  .gnav01 .gnav01_cta li a.header-cta--model {
    color: #ffffff;
    flex-direction: row;
    justify-content: space-around;
    border: unset;
    background-color: #4D4746;
    padding: 24px;
    font-size: 16px;
  }
  .gnav01 .gnav01_cta li a.header-cta--model i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
  }
  .gnav01 .gnav01_cta li a.header-cta--contact {
    flex-direction: row;
    justify-content: center;
    padding: 24px;
    font-size: 16px;
  }
  .gnav01 .gnav01_cta li a.header-cta--contact i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
  }
}
.gnav01 .gnav01_cta li a.header-cta--request {
  /* background-image: url(../images/icon_bg_xmas231208.png); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.gnav02 {
  width: 100%;
  background-color: #FBF8F1;
}
@media screen and (max-width: 960px) {
  .gnav02 {
    background-color: unset;
  }
}
.gnav02 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 1630px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .gnav02 ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    margin-bottom: 32px;
    font-size: 15px;
  }
}
.gnav02 ul li {
  flex: 1;
}
.gnav02 ul li a {
  width: 100%;
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  padding: 24px 0;
  color: #333333;
  transition: all 0.2s;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .gnav02 ul li a {
    text-align: left;
    padding: 0 0 0 20px;
  }
  .gnav02 ul li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f138";
  }
}
.gnav02 ul li a:hover {
  opacity: 0.5;
}/*# sourceMappingURL=header.css.map */