@charset "UTF-8";

header {
  background-color: #fff;
}
header .header_wrap {
  width: 1024px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
header .header_wrap .logo {
  width: 170px;
}
header .header_wrap .header_nav_wrap {
  margin: 0 0 0 auto;
}
header .header_wrap .header_nav_wrap ul {
  display: flex;
  align-items: center;
}
header .header_wrap ul li {
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 20px;
}
header .header_wrap ul li:last-child {
  margin: 0;
}
header .header_wrap ul li.header_btn {
  width: 124px;
}
header .header_wrap ul li.header_btn a {
  font-size: 1.6rem;
  line-height: 40px;
  height: 40px;
  background-color: #F4A823;
}
header .header_wrap ul li.header_btn a::after {
  width: 6px;
  height: 9px;
  right: 12px;
  margin-top: -4px;
}

/*-----SP
-------------------------*/
@media screen and (max-width: 39.9375em) {
  header .header_wrap {
    width: 100%;
    height: 60px;
    padding: 0 25px 0 15px;
    box-sizing: border-box;
    position: relative;
  }
  header .header_wrap .logo {
    width: 120px;
  }
  header .header_wrap .logo a {
    display: inline-block;
  }
  header .header_wrap .header_nav_wrap {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 75%;
    height: 100vh;
    background-color: #fff;
    transition: ease .4s;
    z-index: 999;
    transform: translateX(100%);
  }
  header .header_wrap .header_nav_wrap.active {
    transform: translateX(0);
    display: block;
  }
  header .header_wrap .header_nav_wrap .nav_box .logo {
    margin-bottom: 40px;
  }
  header .header_wrap .header_nav_wrap .nav_box {
    margin: 10px 30px 30px;
  }
  header .header_wrap .header_hamburger {
    width: 41px;
  }
  header .header_wrap .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    cursor: pointer;
    margin: 0 0 0 auto;
    position: fixed;
    right: 10px;
  }
  header .header_wrap .hamburger span {
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
    transition: ease .4s;
    display: block;
    border-radius: 2px;
  }
  header .header_wrap .hamburger span:nth-child(1) {
    top: 0;
  }
  header .header_wrap .hamburger span:nth-child(2) {
    margin:6px 0;
  }
  header .header_wrap .hamburger span:nth-child(3) {
    top: 0;
  }
  header .header_wrap .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }
  header .header_wrap .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  header .header_wrap .hamburger.active span:nth-child(3) {
    top: -11px;
    transform: rotate(-45deg);
  }
  header .header_wrap .header_nav_wrap ul {
    display: block;
  }
  header .header_wrap .nav_box .header_nav li{
    line-height: 1.5;
    margin: 0 0 10px 0;
  }
  header .header_wrap .nav_box .header_nav li a {
    line-height: 1.5;
    position: relative;
  }
  header .header_wrap .nav_box .header_nav li a::after {
    content: "";
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #FFDD91 3px, transparent 3px);
    background-size: 8px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
    display: inline-block;
    position: relative;
    top: -14px;
    right: 0;
  }
  .header_mask.active {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: rgba(0,0,0,0.55);
    transition: ease .4s;
  }
  .header.fixed-header {
    display: none;
  }
  header .header_wrap ul li.header_btn {
    width: 100%;
  }
  header .header_wrap .nav_box .header_nav li.header_btn a {
    line-height: 40px;
  }
  header .header_wrap .nav_box .header_nav li.header_btn a::after {
    content: "";
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #fff;
    width: 8px;
    height: 12px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -5px;
  }
}

/*-----PC
-------------------------*/
@media screen and (min-width: 39.9375em) {
  .header.fixed-header {
    background-color: rgba( 255, 255, 255, 0.8 );
    width: 100%;
    height: 90px;
    margin: 0 auto;
    position: fixed;
    top: -90px;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
  }
  .header.fixed-header.is-show {
    top: 0;
    visibility: visible;
    z-index: 1000;
  }
  .header.fixed-header .header_wrap {
    width: 1024px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .header.fixed-header .header_wrap .pc_header {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .header.fixed-header .header_wrap .logo {
    width: 170px;
  }
  .header.fixed-header .header_wrap .header_nav_wrap {
    margin: 0 0 0 auto;
  }
  .header.fixed-header .header_wrap .header_nav_wrap ul {
    display: flex;
    align-items: center;
  }
  .header.fixed-header .header_wrap ul li {
    font-size: 1.6rem;
    font-weight: bold;
    margin-right: 20px;
  }
  .header.fixed-header .header_wrap ul li:last-child {
    margin: 0;
  }
  .header.fixed-header .header_wrap .pc_header .nav_box ul.header_nav li.header_btn {
    width: 124px;
  }
  .header.fixed-header .header_wrap .pc_header .nav_box ul.header_nav li.header_btn a {
    font-size: 1.6rem;
    line-height: 40px;
    height: 40px;
	background-color: #F4A823;
  }
  .header.fixed-header .header_wrap .pc_header .nav_box ul.header_nav li.header_btn a::after {
    width: 6px;
    height: 9px;
    right: 12px;
    margin-top: -4px;
  }
}