.c-header {
  width: 100%;
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  background: #F1E1BF;
  z-index: 1;
}

.c-btn01 {
  display: flex;
  align-items: center;
  padding: 0 4px;
  height: 48px;
  color: #FFF;
  font-size: 12px;
  background-color: #BD2B06;
  transition: .3s all;
}
@media (max-width: 800px) {
  .c-btn01 {
    font-size: 8px;
    padding: 0 0px;
  }
}
.c-btn01 .c3677{
  padding-left: 4px;
  padding-right: 4px;
}

.c-btn01:hover {
  opacity: 0.8;
  text-decoration: none !important;
  color: #FFF !important;
}

.c-header-logo {
  width: 150px;
}
@media (max-width: 800px) {
  .c-header-logo {
    width: 100px;
  }
}

.c-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-header-inner {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-header-content {
  display: flex;
  align-items: center;
  margin-left: auto;
  column-gap: 12px;
}
@media (max-width: 800px) {
  .c-header-content {
    column-gap: 5px;
  }
}

.c-header-nav  .c3677 {
  padding-left: 4px;
  padding-right: 4px;
}

.c-header-nav  a {
  text-decoration: none;
  font-weight: 700;
  color: #111;
  font-size: 12px;
}
@media (max-width: 800px) {
  .c-header-nav  a {
    font-size: 10px;
  }
}

.c-header-nav > div{
  display: flex;
}
.c-header-mega {
  position: relative;
  padding-right: 25px;
  display: flex;
  align-items: center;
  font-size: 12px;
}
@media (max-width: 800px) {
  .c-header-mega {
    font-size: 10px;
  }
}

.c-header-mega::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid #111111;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-50%) translateY(-2px) rotate(135deg);
  transition: .3s all;
}
@media (max-width: 800px) {
  .c-header-mega::before {
    width: 5px;
    height: 5px;
  }
}

.c-header-mega.is-active::before {
  transform: translateY(-50%) translateY(2px) rotate(-45deg);
}
.c-header-mega-content {
  position: absolute;
  width: calc(100% + 100px);
  display: flex;
  flex-direction: column;
  top: 100%;
  left: -50px;
  background: #f1e1bf;
  opacity: 0;
  pointer-events: none;
  transition: .3s all;
}
.c-header-mega-content.is-active {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .c-drawer {
    display: none;
  }
}
@media (max-width: 767px) {
  .c-header {
    height: 50px;
  }
  .c-drawer {
      width: 30px;
      height: 30px;
      z-index: 1;
      position: fixed;
      top: 10px;
      right: 10px;
  }
  .c-drawer img {
  	width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .c-header-inner {
    display: contents;
  }

  .c-header-logo {
    position: absolute;
    top: 10px;
    left: 10px;  
  }
  .c-header-content {
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px) translateX(100%);
    flex-direction: column;
    background: #F1E1BF;
    padding-bottom: 20px;
    transition: .3s all;
  }
  .c-header-content.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(50px) translateX(0);
  }
  .c-header-nav {
    width: 100%;
  }
  .c-header-nav > div {
    width: 100%;
    flex-direction: column;
  }
  .c-header-mega {
    display: block;
    padding: 5px;
  }
  .c-header-mega-content {
    position: static;
    width: 100%;
    height: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
  }
  .c-header-mega-content.is-active {
  	height: auto;
    opacity: 1;
    pointer-events: auto;
  }
  .c-header-mega::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 15px;
    width: 10px;
    height: 10px;
    border: 2px solid #111111;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(135deg);
  }
}
.c-header-sp {
  @media (min-width: 767px) {
  	display: none;
  }
  position: fixed;
  width: 100%;
  z-index: 100;
  transform: translateX(100%);
}
.c-header-sp.is-active {
  transform: translateX(0%);
}
.c-header-sp-content {
    display: none;
}