.fat-nav {
  top: 0;
  left: 0;
  z-index: 996;
  position: fixed;
  display: none;  
  width: 100%;
  height: 100%;
  background: var(--BGCOLOR_GRAY_1);   
  -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_GAP: 30px;
}
.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);
}
.fn-logo{
  margin-bottom: 27px;
}
.fn-logo img{
  max-width: 180px;
}
.fn-user{
  display: flex;
  border: 1px solid var(--BDCOLOR_GRAY_2);
  border-left: none;
  border-right: none;
  margin-bottom: 20px;
}
.fn-user li{
  flex: 1;
  position: relative;
}
.fn-user li:first-child::after{
  content: "";
  display: inline-block;
  background: var(--BDCOLOR_GRAY_2);
  width: 1px;
  height: calc(100% - 16px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.fn-user__item{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  gap: 8px;
}
.fn-user__item::before{
  content: "";
  display: inline-block;
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--TXT_COLOR_BASE);
  width: 17px;
  aspect-ratio: 1/1;
}
.fn-user__item::after{
  content: var(--LABEL);
  display: inline-block;
  font-size: 11px;
}
.fn-userInfo{
  background-color: var(--WHITE);
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-bottom: 20px;
}
.fn-userInfo > div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.fn-userInfo__name{
  font-family: var(--FF_MINCHO);
  font-size: 14px;
  margin-bottom: 3px;
}
.fn-userInfo__name small{
  display: inline-block;
  margin-left: 2px;
}
.fn-userInfo__stage{
  background-color: var(--GRAY06);
  color: var(--WHITE);
  font-family: var(--FF_MINCHO);
  font-size: 12px;
  padding: 0 5px;
}
.fn-userInfo__point{
  font-family: var(--FF_MINCHO);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.03em;
}
.fn-userInfo__point small{
  font-family: var(--FF_BASE);
  font-size: 11px;
  display: inline-block;
  margin-left: 3px;
}
.fn-userInfo__pointExpiration{
  font-size: 10px;
}
.fn-search{
  margin-bottom: var(--FAT_NAV_GAP);
}
.fn-search__form{
  margin-bottom: 10px;
}
.fn-search__form input,
.fn-search__form input::placeholder{
  letter-spacing: 0.03em;
}
.fn-search__form button{
  background-color: var(--TXT_COLOR_BASE);
  width: 18px;
}
.fn-search__hotword .g-search__hotword__list{
  padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
}
.fn-search__hotword .g-search__hotword__list{
  -ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
.fn-search__hotword .g-search__hotword__list::-webkit-scrollbar{
  display: none;/* Chrome, Safari 対応 */
}
.fn-history{
  margin-bottom: var(--FAT_NAV_GAP);
}
[data-frame-id="history_hambuger"] .fr3-productListStatic{
  -ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
  display: flex;
	overflow-x: auto;
	white-space: nowrap;
  padding: 0 calc((100% - var(--INNER_WIDTH)) / 2) !important;
}
[data-frame-id="history_hambuger"] .fr3-productListStatic::-webkit-scrollbar{
  display: none;/* Chrome, Safari 対応 */
}
[data-frame-id="history_hambuger"] .fr3-item{
  --WIDTH: 100px;
  min-width: var(--WIDTH);
  max-width: var(--WIDTH);
  flex: 0 0 auto;
	margin-right: 10px;
}
[data-frame-id="history_hambuger"] .fr3-item__productName,
[data-frame-id="history_hambuger"] .fr3-item__productPrice{
  display: none;
}
.fn-menu{
  border-top: 1px solid var(--BDCOLOR_GRAY_2);
  margin-bottom: var(--FAT_NAV_GAP);
}
.fn-menu > li{
  border-bottom: 1px solid var(--BDCOLOR_GRAY_2);
}
.fn-menu .fs-c-productMark li,
.fn-menu .fs-c-productMark span,
.fn-menu .fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
  background-color: var(--WHITE);
}
.fn-menu__item{
  display: block;
  font-family: var(--FF_EN);
  padding: 18px 10px;
  font-size: 14px;
}
.fn-menu__item--hasChild{
  position: relative;
}
.fn-menu__item--hasChild::before,
.fn-menu__item--hasChild::after{
  content: "";
  display: inline-block;
  background: var(--TXT_COLOR_BASE);
  width: 14px;
  height: 1px;
  position: absolute;
  top: 30px;
  right: 12px;
}
.fn-menu__item--hasChild::after{
  transform: rotate(90deg);
  transition: .2s;
}
.fn-menu__item--hasChild.is-active::after{
  transform: rotate(0deg);
}
.fn-menu__child{
  display: none;
  padding-bottom: 30px;
}
.fn-menu__child .t-allItems .fs-c-productListCarousel__list__itemTrack .fs-c-productListCarousel__list__item:nth-of-type(n+5){
  display: block;
}
.fn-link{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-bottom: var(--FAT_NAV_GAP);
  gap: 15px;
}
.fn-link li a{
  font-size: 12px;
  display: block;
}
.fn-sns{
  padding: var(--FAT_NAV_GAP) 0 100px;
}
.fn-sns{
  justify-content: center;
}
.fn-sns li a{
	background-color: var(--TXT_COLOR_BASE);
}