.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 10px 10px;
  position: fixed;
  top: 0px;
  right: 1%;
  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: #070707;
  --HAMBURGER_LINE_PS: 8px;
}
/*
.hamburger:before {
    content: "MENU";
    position: absolute;
    top: 42px;
    right: 19px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0;
    color: #000;
}
*/

.hamburger__icon {
  position: relative;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 24px;
  height: 2px;
  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:before{
	width: 100% !important;
}
.hamburger .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-color: 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: 60px 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);
}

.fat-nav__wrapper > [class*="fn-"]{
  margin-bottom: 40px;
}

.fn-logo{
  width: 92px;
  margin: 0 0 20px 3%;
}
.fn-user{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.fn-user li a{
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1;
  background-color: var(--WHITE);
  position: relative;
  padding-top: 20px;
}
.fn-user li > span{
  width: 100%;
  height: 100%;
}
.fn-user__icon{
  display: block;
  aspect-ratio: 1/1;
  --MASK: var(--URL) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--GREEN01);
  width: 30px;
  margin: 0 auto;
  position: relative;
}
.fn-user li a .fs-client-cart-count{
  left: 55%;
  top: 20px;
  z-index: 2;
}
.fn-user__label{
  flex: 1;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}
.fn-search__form.formReset input[type="text"]{
  background-color: var(--WHITE);
  padding: 12px 40px 12px 20px;
}
.fn-search__form.formReset button{
  width: 25px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.fn-tab .g-search__tab{
  padding: 0;
}

.fn-link{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  padding-top: 40px;
  border-top: 1px solid var(--BDCOLOR_GRAY_1);
  margin-top: 40px;
  row-gap: 15px;
}
.fn-link li a{
  font-family: var(--FF_NOTO);
  font-size: 13px;
}
.fn-sns{
  padding-bottom: 80px;
}
.fn-sns li a{
  background-color: var(--TXT_COLOR_BASE);
}