body{
    max-width: 430px;
    background-color: black;
    color: white;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
}

/*最上部の「X動画保存.com」*/

header h1{
    background-color: #334047;
    text-align: center;
    font-size: 16px;
    margin: 0;
    height: 52px;
    line-height: 52px;
}
h1>a{
    text-decoration: none;
    color: white;
}
/*ハンバーガー*/
div.hamburger{
    width:30px;
    height:52px;
    position: absolute;
    padding-right: 10px;
    top:0;
    right:0;
}
:root {
    --background-navbar: rgba(55, 55, 55, 0.98);
  }
header{
    position: relative;
}

/* Nav items */
.menu {
    list-style: none;
    position: absolute;
    width: 160px;
    height: auto;
    top: 0;
    right: 0;
    margin-top: 52px;
    padding-left: 0px;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    z-index: 999;
  }
  
  /* 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;
    font-size: 14px;
    text-transform: capitalize;
    color: #ddd;
    opacity: 0;
    transition: 0.5s;
  }
  
  .menu li {
    border-top: 1px solid rgb(75, 75, 75);
    padding: 15px 0;
    margin: 0 16px;
    opacity: 0;
    transition: 0.5s;
  }
  
  .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: inline-block;
    position: relative;
    cursor: pointer;
    padding: 26px 0px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .navicon {
    background: #ddd;
    display: block;
    height: 3px;
    width: 26px;
    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: 100%;
    position: absolute;
    background: #ddd;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .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 */


/*メインコンテンツ*/
main{
    margin: 16px auto;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
}
main h2{
  margin-top: 40px;
  margin-left: 20px;
  font-size: 18px;
  border-left: 5px solid #5db5bd;
}
main li{
  text-align: left;
  margin-bottom: 12px;
}
main p{
  text-align: left;
}
/*フッター*/
footer div.footer{
    text-align: center;
    margin: 0 auto;
    background-color: #334047;
    font-size: 11px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin: 0;
    height: 28px;
    line-height: 28px;
}