.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 100%;
  padding: 5px 13px 5px 11px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 998;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  --HAMBURGER_LINE_COLOR: var(--FONT_WHITE);
  --HAMBURGER_LINE_PS: 6px;
  border-left: 1px solid var(--FONT_WHITE);
}
body.scroll .hamburger {
  transform: translateX(0%);
}

.hamburger__icon {
  position: relative;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--HAMBURGER_LINE_COLOR);
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hamburger .hamburger__icon{
	width: 36px !important;
}
.hamburger .hamburger__icon:before{
	width: 100% !important;
}
.hamburger .hamburger__icon:after {
	width: 100% !important;
}

@media screen and (min-width:768px) { 
	.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after{right:0%;}
}
@media screen and (max-width:767px) { 
	.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after{right:0%;}
}

.hamburger.active .hamburger__icon{
	width: 100% !important;
}
.hamburger.active .hamburger__icon:before{
	width: 100% !important;
}
.hamburger.active .hamburger__icon:after {
	width: 100% !important;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: calc(0px - var(--HAMBURGER_LINE_PS));
}
.hamburger__icon:after {
  top: var(--HAMBURGER_LINE_PS);
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: var(--HAMBURGER_LINE_COLOR);
}
.hamburger.active .hamburger__icon:before {
  transform: translateY(var(--HAMBURGER_LINE_PS)) rotate(45deg);
  background-color: var(--HAMBURGER_LINE_COLOR);
}
.hamburger.active .hamburger__icon:after {
  transform: translateY(calc(0px - var(--HAMBURGER_LINE_PS))) rotate(-45deg);
  background-color: var(--HAMBURGER_LINE_COLOR);
}
.fat-nav {
  top: 0;
  right: -150%;
  z-index: 996;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-duration: 0.2s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
	transition: all  0.2s;
}
.fat-nav__wrapper {
  width: 100%;
  margin:0 auto;
  height: 100%;
  padding: 120px 0% 50px;
  max-width:1100px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
}
.fat-nav.active {
	right: 0;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
	transition: all  .5s;
}
 @media screen and (max-width: 767px){
  .fat-nav__copyContainer{
    padding-left: 5px;
    margin-right: 20px;
  }
  .fat-nav__copy{
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-family: var(--FF_EN);
    color: var(--GRAY03);
    font-size: 12px;
  }
  .fat-nav__search{
    width: 95%;
    margin-bottom: 30px;
  }
  #searchform input[type="text"]{
    font-size: 16px;
    padding: 8px 31px 8px 19px;
  }
  #searchform button[type="submit"]{
    font-size: 17px;
    right: 16px;
  }
  .popupSearch-keyword{
		margin-top: 15px;
	}
	.popupSearch__tags{
		gap: 12px 7px;
	}
	.popupSearch__tags li a{
    font-size: 10px;
    padding: 6px 4px 6px 11px;
	}
	.popupSearch__tags li a::before{
    width: 2px;
    left: 5px;
	}
  .header-nav{
    border-top: 1px solid var(--GRAY03);
  }
  .header-ttl{
    display: block;
    border-bottom: 1px solid var(--GRAY03);
    display: flex;
    align-items: baseline;
    gap: 7px;
    padding: 20px 8% 20px 0;
    position: relative;
  }
  p.header-ttl::after{
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    content: '\f067';
    font-size: 13px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  p.header-ttl.is-active::after{
    content: '\f068';
  }
  a.header-ttl::after{
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    content: '\f054';
    font-size: 13px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-ttl__en{
    font-size: 20px;
  }
  .header-ttl__ja{
    font-size: 11px;
    font-family: var(--FF_BASE);
  }
  .header-childContainer{
    display: none;
  }
  .header-child__nav{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .header-child__nav li{
    border-bottom: 1px solid var(--GRAY03);
    position: relative;
  }
  .header-child__nav li:nth-child(odd)::after{
    content: "";
    display: inline-block;
    background: var(--GRAY03);
    width: 1px;
    height: calc(100% - 20px);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-child__nav li a{
    display: block;
    font-size: 14px;
    padding: 10px 15px;
  }
}
