@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: inherit;
  }
}

a:hover {
  opacity: 0.7;
  transition: 0.4s;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 16px 20px 16px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transition: background-color 0.3s;
  background: #fff;
  gap: 0 20px;
}
@media screen and (max-width: 1260px) {
  header {
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 0 3%;
  }
}
header .logo {
  max-width: 327px;
}
@media screen and (max-width: 1260px) {
  header .logo {
    width: 76%;
  }
}
header .spNavTgl {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 9;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .spNavTgl {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  header .spNavTgl {
    right: 5%;
  }
}
header .spNavTgl.ex i {
  background-color: rgba(0, 0, 0, 0);
}
header .spNavTgl.ex i::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .spNavTgl.ex i::after {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}
header .spNavTgl:not(.ex) + .nav {
  height: 0;
  padding-top: 0;
}
header .spNavTgl i {
  display: flex;
  position: relative;
}
header .spNavTgl i, header .spNavTgl i::before, header .spNavTgl i::after {
  width: 40px;
  height: 3px;
  background-color: #000;
}
header .spNavTgl i::before, header .spNavTgl i::after {
  content: "";
  position: absolute;
  left: 0;
}
header .spNavTgl i::before {
  top: -13px;
}
header .spNavTgl i::after {
  bottom: -13px;
}
header .nav {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px 30px;
  position: relative;
}
@media screen and (max-width: 1260px) {
  header .nav {
    gap: 10px 16px;
  }
}
@media screen and (max-width: 768px) {
  header .nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100vh;
    padding-top: 40px;
    position: absolute;
    top: 60px;
    left: 0;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
  }
}
header .nav li {
  font-size: 1.5rem;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  header .nav li {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 460px;
    width: 80%;
    border-bottom: 1px solid #000;
    font-size: 1.6rem;
    padding: 16px 0;
  }
  header .nav li:nth-of-type(1) {
    border-top: 1px solid #000;
  }
}
header .nav li a {
  color: #000;
  font-weight: bold;
}
header .nav .dropdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .nav .dropdown p {
  opacity: 1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  header .nav .dropdown {
    padding: 16px 0 0;
  }
  header .nav .dropdown a:first-child {
    padding-bottom: 16px;
  }
  header .nav .dropdown p {
    opacity: 0.4;
  }
}
header .nav .dropdown .dropitems {
  position: absolute;
  top: 42px;
  background: #f2f2f2;
  padding: 20px 30px;
  border-radius: 0 0 6px 6px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 0;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  header .nav .dropdown .dropitems {
    position: inherit;
    top: 0;
    padding: 16px 0;
    border-radius: 0;
    visibility: visible;
    opacity: 1;
    width: 100%;
    gap: 12px 0;
    background: #fff;
  }
  header .nav .dropdown .dropitems li {
    border: none;
    padding: 4px 0;
  }
  header .nav .dropdown .dropitems li a {
    font-size: 1.6rem;
    padding: 4px 0 10px !important;
  }
}
header .nav .dropdown .dropitems:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #f2f2f2;
  border-style: solid;
  border-color: transparent;
  border-width: 1.4rem 1.2rem;
  border-bottom-color: currentColor;
  border-top: 0;
}
@media screen and (max-width: 1100px) {
  header .nav .dropdown .dropitems:before {
    content: none;
  }
}
header .nav .dropdown:hover .dropitems {
  visibility: visible;
  opacity: 1;
}
header .nav .btn {
  border: none;
}
@media screen and (max-width: 768px) {
  header .nav .btn {
    padding: 0;
  }
}
header .nav .btn a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  width: 150px;
  height: 44px;
  border-radius: 6px;
  background: #b30024;
}
header .nav .btn a::before {
  content: "";
  width: 18px;
  height: 14px;
  background: url(/common/img/icn_mail.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  header .nav .btn a {
    width: 240px;
    height: 56px;
    margin-top: 30px;
    font-size: 2rem;
  }
}/*# sourceMappingURL=common_header.css.map */