.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--GRAY04);
  aspect-ratio: 1/1;
  padding: 10px 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 991;
  -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:hover{
  opacity: 1;
}
.hamburger__icon {
  position: relative;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--GRAY06);
  -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;
}

@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: 100% !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: #ffffff;
}
.hamburger.active .hamburger__icon:before {
  transform: translateY(var(--HAMBURGER_LINE_PS)) rotate(45deg);
  background-color: var(--GRAY06);
}
.hamburger.active .hamburger__icon:after {
  transform: translateY(calc(0px - var(--HAMBURGER_LINE_PS))) rotate(-45deg);
  background-color: var(--GRAY06);
}
@media screen and (min-width: 768px){
  .hamburger{
    width: 71px;
    --HAMBURGER_LINE_PS: 9px;
  }
  .hamburger .hamburger__icon{
    width: 33px !important;
  }
}
@media screen and (max-width: 767px){
  .hamburger{
    width: 49px;
    --HAMBURGER_LINE_PS: 6.5px;
  }
  .hamburger .hamburger__icon{
    width: 18px !important;
  }
}





.fat-nav {
  top: 0;
  left: -150%;
  z-index: 991;
  position: fixed;
  display: none;
  width: 100%;
  max-width: 375px;
  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;
      -webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all  0.3s;
}
.fat-nav__wrapper {
  margin:0 auto;
  height: 100%;

  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 {
	left: 0;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
    -webkit-transition: all 1.2s ease;
	-moz-transition: all 1.2s ease;
	-o-transition: all 1.2s ease;
	transition: all  1.2s;
}
body.no-scroll{
	overflow: hidden;
}
body.no-scroll::before {
	background: rgba(0,0,0,.5);
	content: '';
	display: block;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 100;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s;
 }

.ft-btn{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.ft-btn .beginner,
.ft-btn .feature{
  grid-column: 1 / 3;
}
.ft-btn .cart{
  position: relative;
}
.ft-btn .cart .count{
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.ft-btn a{
  display: block;
  border: 1px solid var(--GRAY01);
  border-radius: 3px;
  text-align: center;
  font-size: 17px;
  padding: 8px 0;
}
.ft-btn a .icon{
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 18px;
  padding-left: 25px;
}
.ft-btn .cart .icon{
  background-image: url(../images/common/cart.png);
}
.ft-btn .mypage .icon{
  background-image: url(../images/common/mypage.png);
}
.ft-link{
  margin-bottom: 30px;
}
.ft-link li a{
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--GRAY02);
}

.ft-link_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	padding:5px;
}
.ft-link_bnr p a{
	font-size: 12px;
	display: block;
	padding: 10px 0;
}

.ft-tel{
  width: fit-content;
  background: url(../images/common/tel.svg) no-repeat left center / 20px;
  padding-left: 40px;
  margin: 50px auto 20px;
  letter-spacing: 0.1em;
  font-size: 25px;
  color: var(--GRAY06);
}
.ft-hours{
  color: var(--GRAY06);
  font-size: 13px;
  text-align: center;
  margin-bottom: 30px;
}
.fat-nav__wrapper .sns-link{
  padding-bottom: 50px;
}
 @media screen and (min-width: 768px){
  .fat-nav__wrapper{
    width: 85%;
    padding: 100px 0% 50px;
  }
 }
 @media screen and (max-width: 767px){
  .fat-nav__wrapper{
    padding: 100px 0% 50px;
  }
  .ft-link li a{
    padding-left: 15px;
    font-size: 16px;
  }
  .fat-nav__wrapper .f-guide-ttl{
    font-weight: 700;
    border-bottom: 1px solid var(--GRAY02);
    padding: 15px;
  }
  .fat-nav__wrapper .f-guide li a{
    padding: 10px 0 10px 15px;
  }
 }