/*===　ヘッダー　===*/
.header_box {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header_inner {
  align-items: flex-start;
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 52%, #FFFFFF33 100%, #FFFFFF00 100%, #5D5D5D4D 100%) 0% 0% no-repeat padding-box;
  border-top: 2px solid #B7847A;
  box-sizing: border-box;
  display:flex;
  font: normal 10px YuGothic,sans-serif;
  justify-content: space-between;
  height: 50px;
  margin:0px;
}
.header_box a,
.header_box a:visited,
.header_box a:hover{
  text-decoration: none;
}
.header_box h1 {
    margin: 0;
    padding: 0;
    height: 20px;
    font-size: 1rem;
}
.header_logo_box,
.header_menu {
    overflow: hidden;
}

.header_logo_box{
  color: #492B2B;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 5px 20px 5px 10px;
  text-align:right;
}
.header_logo_box a{
    display: inline-block;
}

.header_logo_box p {
  margin: 0;
  padding: 0;
  font-size: 10px;
  line-height: unset;
}
.header_logo_box img {
    width: 155.26px;
}
.header_menu {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 auto;
  height: 100%;
}

.header_mail_box {
  text-align: center;
  background-color: #A6193A;
  box-sizing: border-box;
  padding: 5px;
  width:66px;
}
.header_mail_box > div {
  color: #fff;
  font-size: 12px;
  margin-bottom: 3.5px;
}

.header_mail_button{
    display: inline-block;
    margin: 0 4px 0 0;
    fill: #fff;
    stroke: #fff;
}
.header_mail_box img{
  vertical-align: top;
}
.header_mail_button img{
    height:16px;
    width: 21.33px;
}
.header_tel_button img{
    height:18px;
    width: 21px;
}

.header_tel_number {
  display: none;
}

.header_global_menu {
  display: none;
}

.header_margin {
    margin-bottom: 50px;
}

/*===============================================
●PC・タブレット用（700px以上）
===============================================*/
@media screen and (min-width:700px){
  .header_inner {
    flex-wrap: wrap;
    height: 100px;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 3px solid #265D5F;
  }
  .header_logo_box,
  .header_menu ,
  .header_global_menu {
    height: 50%;
  }
  .header_logo_box{
    flex-direction: row;
    text-align: right;
    padding-right: 0;
  }
  .header_logo_box img {
    height: 40px;
    width: 300px;
  }
  .header_logo_box p {
    align-self: flex-end;
    font-size: 12px;
    padding: 5px 10px;
  }
  .header_menu {
    justify-content: flex-end;
  }

  .header_mail_box {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    font-weight: bold;
    padding: 5px 16px;
    width: 200px;
    justify-content: space-evenly;
  }
  .header_mail_box > div {
    margin: 0;
    text-align: left;
  }

  .header_mail_box .header_tel_number {
    display: inline-block;
    font-size: 16px;
  }
  .header_mail_box,
  .header_mail_box .header_tel_number,
  .header_mail_box a.header_mail_button,
  .header_mail_box a:visited,
  .header_mail_box a:hover{
    color:#fff;
    fill:#fff;
    stroke: #fff;
  }

  .header_mail_button img {
    height: 22.5px;
    width: 30px;
  }

  .header_tel_button {
    display: none;
  }

  .header_tel_number {
    margin-top: -4px;
  }

  .header_global_menu {
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    padding: 0 10px;
    width: 100%;
  }
  .header_global_menu a {
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
  }
  .header_global_menu a:after {
    content: "";
    border-top: 1px solid #265D5F;
    width: 28px;
  }
  .header_global_menu li {
    height: 100%;
    list-style: none;
    margin-left: 16px;
    padding: 0;
  }
  .header_global_menu ul {
    display: flex;
    margin: 0;
    padding: 0;;
    align-items: center;
    height: 100%;
  }

  .header_margin {
    margin-bottom: 100px;
  }

}