.header{
  position: fixed;
  z-index: 1000;
  background-color: #fff;
  top: 0;
  width: 100%;
}
.header_wrapper{
  max-width: calc(1200px + 6%);
  width: 100%;
  padding: 13px 3%;
}
@media (min-width: 768px) {
  .header_wrapper{
  display: flex;
  justify-content: space-between;
  max-width: calc(1200px + 6%);
  width: 100%;
  padding: 12px 3%;
}
}
.body_header{
  margin-right: auto;
  margin-left: auto;
}
.header_heading{
  display: flex;
  align-items: center;
}
.body_headerHeading{
margin-top: 0;
margin-bottom: 0;
}
.header_heading a{
  font-family: 'Zen Old Mincho';
  font-weight: 900;
}
@media (min-width: 1024px) {
  .header_heading a{
  font-size: 28px;
  line-height: 40px;
}
}
.header_inner{
  display: flex;
}
.header_list{
  display: flex;
  column-gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
}
.header_item a{
  white-space: nowrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
.header_item a{
  font-size: 17px;
  line-height: 25px;
}
}
/* ハンバーガーメニュー */
/* ハンバーガーボタン（初期は非表示） */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 3%;
  top: 12px;
}
.menu-toggle .bar {
  width: 26px;
  height: 2px;
  background-color: #2D2D2D;
  transition: all 0.2s;
}
.menu-toggle p{
  font-size: 9px;
  line-height: 11px;
  letter-spacing: 0px;
}
/* メニューが開いているときの変形 */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(27deg) translate(2px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-27deg) translate(2px, -5px);
}
/* メニューが開いているときの変形おわり */

.copyRight-hamburger, .copyRight-hamburger span{
  display: none;
}
@media (max-width: 1023px) {
.menu-toggle {
  display: flex;
}
.header_list {
  position: absolute;
  top: 47px;
  right: 0;
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 30px 3%;
  display: none;
  align-items: initial;
  opacity: 0;
  transition: opacity 0.4s, display 0.4s;
  transition-behavior: allow-discrete;
}
.header_list.active {
  display: flex;
  opacity: 1;
}
@starting-style{
  .header_list.active {
  opacity: 0;
}
}
.header_item{
  padding-right: 10px;
  padding-left: 10px;
  border-bottom: 1px solid #EFEFEF;
}
.header_item a{
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}
.body_headerItem-button{
  position: fixed;
  bottom: 80px;
  width: calc(100% - 12%);
  left: 6%;
}
.copyRight-hamburger.active{
  display: flex;
  color: initial;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding-bottom: 0px;
}
.copyRight-hamburger span.active{
  display: block;
  padding-bottom: 9px;
}
}
.header_item a:hover{
  color: #075C8B;
}