.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 10px;

  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(--TXT_COLOR);
  --HAMBURGER_LINE_PS: 7px;
}

.hamburger.active:after {
    content: "閉じる";
}




.hamburger__icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 24px;
}
.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: 20px !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: 20px !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;
  left: 0;
  z-index: 996;
  position: fixed;
  display: none;  
  width: 100%;
  height: 100%;
  background: var(--GRAY01);
  -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;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.fat-nav__wrapper {
  height: 100%;
  padding: 0 0 50px;
  max-width:1100px;
  -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
           -o-box-sizing: border-box;
          -ms-box-sizing: border-box;
              box-sizing: border-box;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}


.ft-logo{
  border-top: 34px solid var(--BLACK);
  background-color: var(--WHITE);
}
.ft-logo img{
  width: 81px;
  margin: 0 auto;
  padding: 22px 0;
}

.fat-nav .top-search-area{
  padding: 22px 0 30px;
  margin-bottom: 0;
}

.fat-nav .cat-search-sec{
  margin-bottom: 40px;
}
.ft-menu-top .inner{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  padding-bottom: 20px;
}
.ft-menu-top ul li:not(:last-child) a{
  border-bottom: 1px solid var(--WHITE);
}
.ft-menu-top a,
.ft-menu-bottom a{
  display: block;
  padding: 12px 0;
  font-size: 14px;
}
.ft-menu-bottom{
  background-color: var(--WHITE);
  padding: 20px 0 100px;
}
.ft-menu-bottom ul li:not(:last-child) a{
  border-bottom: 1px solid var(--GRAY01);
}
.ft-history{
  margin-bottom: 40px;
}
.ft-history .ttl{
  font-size: var(--FZ16);
  margin-bottom: var(--MG_50);
  text-align: center;
  font-weight: 700;
}

.fat-nav__wrapper .top-search-area .more-btn{
  display: none;
}