@charset "utf-8";
/* CSS Document */

body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background: url("http://www.lesdaniels.net/assets/img/song_lists_bg.jpg") left top no-repeat;
  background-size: contain;
}

/* CONTENTS
-------------------------------------------------- */
main .container {
	margin-top: 50px;
}

main h2 {
	color: #D9B471;
}

main p {
	line-height: 1.75rem;
	margin-bottom: 50px;
}

main .input-group {
	margin: 20px 0!important;
}

/* Copy Button
-------------------------------------------------- */

.btn-copy {
    color: #fff;
    background-color: #8C6A2B;
    border-color: #8C6A2B;
}

.btn-balloon::before {
  /*Triangle*/
  content: "";
  position: absolute;
  top: 97%;
  right: 10px;
  border: 6px solid transparent;
  border-top: 6px solid #000000;
}

.btn-balloon {

  /*Position*/
  position: absolute;
  top: -10px;
  left: -90px;

  /*Display None*/
  display: none;
  opacity: 0;

  /*Style*/
  padding: 5px;
  border-radius: 5px;
  color: #cccccc;
  font-size: 12px;
  background-color: #000000;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);

  /*Animation*/
  animation-duration: 0.3s;
  animation-name: show-balloon;
}

.btn:hover .btn-balloon {
  /*Mousehover*/
  display: inline-block;
  opacity: 1;
  top: -40px;
}

@keyframes show-balloon {
  /*アニメーションを定義します*/
  0% {
    display: none;
    opacity: 0;
    top: -30px;
  }
  1% {
    display: inline-block;
    opacity: 0;
    top: -30px;
  }
  100% {
    display: inline-block;
    opacity: 1;
    top: -40px;
  }
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (max-width: 767.98px) {
	
}

