.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1/1;
  padding: 10px 10px;
  position: fixed;
  top: 30px;
  right: 8px;
  z-index: 1200;
  -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: 7px;
  background-color: var(--WHITE_OP70);
}
.hamburger.active{
  background-color: unset;
}
/*
.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: 22px;
  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: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: 1100;
  position: fixed;
  display: none;  
  width: 100%;
  height: 100%;
  background: var(--BEIGE01);
  -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 {
  width: var(--INNER_WIDTH);
  margin:0 auto;
  height: 100%;
  padding: 120px 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-user{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.fn-user li a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  aspect-ratio: 15/10;
  background-color: var(--WHITE);
  position: relative;
}
.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(--TXT_COLOR_BASE);
  width: 26px;
  margin: 0 auto;
  position: relative;
}
.fn-user__label{
  font-size: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.fn-menu--lv1{
  border-top: 1px solid var(--BDCOLOR_GRAY_1);
  margin: 30px 0 20px;
}
.fn-menu--lv1 > li{
  border-bottom: 1px solid var(--BDCOLOR_GRAY_1);
}
.fn-menu__item{
  display: block;
  position: relative;
  font-size: 14px;
  padding: 10px 10px;
  font-weight: var(--FF_W_M);
}
.fn-menu__item::after{
  font-family: 'Font Awesome 5 Pro';
  font-weight: 100;
  content: '\f054';
  font-size: 13px;
  position: absolute;
}
.fn-menu__item--hasChild::after{
  right: 13px;
  top: 11px;
  transform: rotate(90deg);
}
.fn-menu__item--hasChild.is-active::after{
  transform: rotate(-90deg);
  right: 12px;
}
.fn-menu__item--link::after{
  right: 10px;
  top: 9px;
}
.fn-menu--lv2{
  display: none;
}
.fn-menu--lv2 li{
  border-top: 1px dashed var(--BDCOLOR_GRAY_1);
}
.fn-menu--lv2 li a{
  display: block;
  padding: 8px 10px;
  font-size: 12px;
}
.fn-menu--news li a{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
.fn-menu--news__ttl{
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.fn-link{
  margin-bottom: 30px;
  display: grid;
  gap: 7px;
  margin-left: 10px;
}
.fn-link li a{
  font-size: 12px;
  font-weight: var(--FF_W_M);
}
.fn-contact{
  margin-bottom: 30px;
}
.fn-contact__heading{
  font-size: 14px;
  font-weight: var(--FF_W_M);
  margin-left: 10px;
  margin-bottom: 10px;
}
.fn-contact__btn{
  display: grid;
  gap: 20px;
}
.fn-contact__btn li a{
  display: block;
  color: var(--WHITE);
  background-color: var(--GRAY04);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 50px;
}
.fn-contact__btn li a::before{
  content: "";
  display: inline-block;
  --MASK: var(--URL) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--WHITE);
  aspect-ratio: 1/1;
  width: 20px;
}
.fn-sns{
  justify-content: center;
  margin-bottom: 30px;
}
.fn-terms{
  padding-bottom: 50px;
  display: grid;
  gap: 7px;
}
.fn-terms li a{
  font-size: 12px;
}