.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 10px 10px;
  position: fixed;
  top: 2px;
  right: 2px;
  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(--WHITE);
  --HAMBURGER_LINE_PS: 9px;
}
/*
.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: 30px;
  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: #fff;   
  -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;
  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-bg{
  background: url(../images/cp/common/pattern.jpg) repeat top left / 30px;
  padding: 50px 0 80px;
}
.fn-logo{
  width: 92px;
  margin-left: 5%;
}
.fn-menu{
  border-top: 1px solid var(--GRAY03);
  margin: 40px 0 30px;
}
.fn-menu li a{
  display: block;
  position: relative;
  color: var(--WHITE);
  font-family: var(--FF_NOTO);
  font-size: 16px;
  border-bottom: 1px solid var(--GRAY03);
  padding: 15px 0;
}
.fn-menu li a::after{
  font-family: 'Font Awesome 5 Pro';
  font-weight: 500;
  content: '\f105';
  font-size: 18px;
  color: var(--GRAY03);
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}


.fat-nav .hd-nav__btn{
  display: grid;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--GRAY03);
  margin-bottom: 30px;
}
.fat-nav .hd-nav__btn li a{
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 15px;
  background-color: var(--WHITE);
  padding: 18px;
}
.fat-nav .hd-nav__btn__icon{
  background-color: var(--TXT_COLOR_BASE);
  aspect-ratio: 1/1;
}
.fat-nav .hd-nav__btn__label{
  font-size: 14px;
}
.fat-nav .hd-nav__btn__label br{
  display: none;
}


.fn-contact{
  font-size: 12px;
  color: var(--WHITE);
  text-align: center;
  margin: 40px 0;
  font-family: var(--FF_NOTO);
  line-height: 2;
}