@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
.humb,
nav.nav,
.sp_header{
  display: none;
}

@media screen and (max-width:750px){
  .pc_header{
    display: none;
  }
  .sp_header{
    display: block;
  }
  .introduction {
    position: static;
    font-size: 14px;
    background-color: #fff;
    padding-top: 3px;
    }
/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(55, 55, 55, 0.98);
  --humburger-line:rgba(250, 136, 193, 0.6);
  --english-font: "futura-pt", sans-serif;
}

.header {
  position: fixed;
  width: 100%;
  border-bottom:none;
  padding-bottom:1rem;
}
header.header.active {
background-color: rgba(255,255,255,0.5);
}
.sp_header_logo{
  position:fixed;
  display: block;
  width:90px;
  text-align: center;
  top:10px;
  left:20px;
}
.sp_header_logo img{
  width:100%;
}
/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 30px 0 30px 0;
  clear: both;
  background:  #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  border-bottom:1px solid #000;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: var(--background-navbar);
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
  font-size: 18px;
}
.menu li:first-child{
  border-top:none;
}
.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: block;
  position: relative;
  width:5%;
  cursor: pointer;
  padding: 25px 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin:0 0 0 auto;
}

.navicon {
  background: #fff;
  display: block;
  height: 1px;
  width: 18px;
  margin-top:2px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 130%;
  left:-15%;
  position: absolute;
  background: #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header.active .navicon,
header.active .navicon::before,
header.active .navicon::after,
header.no_home .navicon,
header.no_home .navicon::before,
header.no_home .navicon::after{
  background: #ffdc1d;
}


.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}
}
@media screen and (max-width:500px){
  .menu-icon{
    width:12%;
  }
}