* {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  line-height: 1.75;
  font-family: sans-serif;
}
body {
  width: 100%;
  margin:0;
  padding:0;
  background-color: #f5f5f5;
}

td{
  border: 1px solid black;
  border-collapse: collapse;
}

th{
  border:1px solid black;
  background-color: #d3d3d3;
}

video {
position: relative;
right: 0;
bottom: 0;
width: 100%;
z-index: 1;
}

/*共通ヘッダー*/
.common_header{
  width: 90vw;
  margin: 0 auto;
  justify-content: space-between;
  padding: 10px;
}

.common_header p{
  text-align: center;
  width: 100%;
  display: block;
  font-size: 20px
}

.common_search{
  display: block;
  width: 80vw;
  margin: 0 auto;
}

.search_container_header{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  padding: 3px 10px;
  border-radius: 20px;
  height: 40px;
  width: 80vw;
  overflow: hidden;
  display: flex;
  background-color: white
}

.search_container_header input[type="text"]{
  border: none;
  height: 2.0em;
  width: 90%;
  height: 31px;
  margin: 0 auto;
  font-size: 15px;
}

.search_container_header input[type="text"]:focus {
  outline: 0;
}
.search_container_header input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #3879D9;
  position: absolute;
  right: 20px;
  outline : none;
}


.bpm_search{
  display: inline;
  width: 30vw;
  margin: 0;
}

.bpm_search p{
  color: white;
  display: inline;
  font-size: 15px;
  text-align: center;
}

.bpm_container_header{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  padding: 3px 10px;
  height: 40px;
  width: 50vw;
  overflow: hidden;
  display: block;
  background-color: white;
  margin: 10px auto;
}

.bpm_container_header input[type="text"]{
  border: none;
  height: 2.0em;
  width: 90%;
  height: 31px;
  margin: 0 auto;
  font-size: 15px;
  text-align: center;
}

.bpm_container_submit{
  position: relative;
  padding: 3px 0px;
  width: 50vw;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

.bpm_container_submit:hover{
  position: relative;
  padding: 3px 10px;
  width: 10vw;
  overflow: hidden;
  display: inline-flex;
  cursor: pointer;
  color: gray;
  background-color: white;
}



.bpm_container_submit input[type="submit"]{
    color: white;
    background: gray;
    padding: 10px;
    width: 100%;
    font-size: 13px;
}



/*bpm絞り込みのモーダル*/

#trigger{
  display: none;
}

.modal_overlay{
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.5s, transform 0s 0.5s;
    transform: scale(0);
}

.modal_trigger{
    position: absolute;
    width: 100%;
    height: 100%;
}

.modal_content{
    position: relative;
    align-self: center;
    width: 90vw;
    max-width: 800px;
    padding: 30px 30px 15px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transition: 0.5s;
}

.close_button{
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
}

.modal_wrap input:checked ~ .modal_overlay{
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
}

.open_button{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 8px 16px;
    color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.6);
    border-radius: 16px;
    cursor: pointer;
    font-size: 15px;
}

#fm_bpm_max,#fm_bpm_min{
    font-size: 15px;
    text-align: center;
}

/*
  header global-nav
                   */
header {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0;
  background-color: black;
}

header a{
  color: #fff;
  text-decoration: none;
  font-size: 25px;
}

#top_mv{

  width: 100vw;
  /*background-image: url(.././img/mv_top.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;*/
}

#search_box{
  text-align: center;
  padding-top: 5vh;
  position: absolute;
  z-index: 2;
  width: 100%
}

#search_box h2{
  color: white;
  font-size: 20px;
}

#search_box_inner{
  margin:20px auto;
  width: 80vw;
}

/*TOPの検索ボックス*/
.search_container{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  display: block;
  padding: 3px 10px;
  border-radius: 20px;
  height: 40px;
  width: 80vw;
  overflow: hidden;
  display: flex;
  background-color: white
}
.search_container input[type="text"]{
  border: none;
  height: 2.0em;
  width: 90%;
  height: 31px;
  margin: 0 auto;
  font-size: 12px;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #3879D9;
  position: absolute;
  right: 20px;
  outline : none;
}

/*本体*/
.wrapper{
  width: 90vw;
  margin: 0 auto;
  padding: 10px 0 30px 0;
}

.top_section{
  padding: 20px auto;
  border-bottom: 2px dotted #696969;
}

.top_section h2{
  text-align: center;
  font-size: 20px;
  margin: 10px auto 10px auto;
}


.top_section h3{
  font-size: 20px;
  margin:20px auto;
  display: inline-block;
}

.top_bottom_image{
  margin: 20px auto 0;
}
.top_bottom_image img{
  width: 100%;
}

.music_h3{
  font-size: 20px;
  margin:20px auto;
  display: inline-block;
}

.scroll_table{
  overflow: auto;
  white-space: nowrap;
}

.right-of-h3{
    display: inline-block;
    text-align: right;
    padding: 0 10px;
    font-size: 20px;
}

.music_right-of-h3{
    display: block;
    text-align: center;
    padding: 0 10px;
    font-size: 20px;
    width:100%;
}

/*アコーディオン*/
.right-of-h3{
    display: inline-block;
    text-align: right;
    padding: 0 10px;
    font-size: 20px;
}

.accordion-wrap{
    border-bottom: 1px dotted black;
}

.accordion-item{
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 30px;
}

.accordion-header{
  transition: ease-in-out 100ms;
}

.accordion-text{
  width: 100%;
  display: none;
  padding-top: 5px;
  padding-bottom: 20px;
 }

 .fa{
    transition: ease-in-out 300ms;
    font-size: 20px !important;
 }

 .rotate-fa{
    transform: rotate(180deg);
 }

/*BPMテーブル*/
.bpm-table{
  border: none;
  width: 100%;
  table-layout: fixed;
}

.bpm-table td{
  padding: 10px;
  display: block;
  border: none;
}

.bpm-table td a{
  text-decoration: underline;
  color: #696969;
}
/*アーティストテーブル*/

.artist-table{
  border: none;
  width: 100%;
  table-layout: fixed;
}

.artist-table td{
  padding: 10px;
  display: block;
  border: none;
}

.artist-table td a{
  text-decoration: underline;
  color: #696969;
}

/*ミュージックテーブル*/

.music-table{
  border: 1px solid gray;;
  width: 800px;
  table-layout: fixed;
  overflow-x: scroll;
}

#album{
  width: 100%;
}

#album .bpm_column{
  text-align: center;
}

#artist{
  width: 600px;
}

.music-table td{
  padding: 10px;
}

.music-table td a{
  text-decoration: underline;
  color: #696969;
}

/*アルバムテーブル*/

.album-table{
  border: 1px solid gray;
  width: 800px;
  table-layout: fixed;
}

.album-table td{
  padding: 10px;
}

.album-table td a{
  text-decoration: underline;
  color: #696969;
}

/*search_section*/


.search_section{
  padding: 20px auto;
  }

.search_section h1{
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.search_section h2{
  font-size: 20px;
  margin:40px auto 20px auto;
  border-left: solid black 5px;
  padding-left: 5px;
}

/*アンカーリンク*/

#anker_ul{
  text-align: left;
}

.anker_list{
  margin: 0 10px;
  list-style: none;
}

.anker_list a{
  text-decoration: none;
  color: gray;
}

/*ページャ*/

.pagination{
  text-align: center;
  margin: 20px 0;
}
.pager .pagination li{
  display: none;
  margin: 0 2px;
  padding: 0;
  background:black;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  }

.pager .pagination li.pre,
.pager .pagination li.next{
  display: inline-block;
  width: 40%;
  height: 50px;
  text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after{
    content: "　前の50件へ";
  }

  .pager .pagination li.next span::before{
    content: "次の50件へ　";
  }

  .pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #fff;
  text-decoration: none;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

/*bread crumb*/
.breadcrumb_area {
margin: 20px auto;
overflow-x: scroll;
overflow: auto;
overflow-y: hidden;
width: 100%;
white-space: nowrap;
}
.breadcrumb_area ul {
display: flex;
font-size: 13px;

}
.breadcrumb_area ul li {
margin: 0 10px 0 0;
font-size: 13px;
list-style: none;
display: inline-block;
}
.breadcrumb_area ul li:first-child::before {
padding: 0 3px 0 0;
content: "\f015";
font-family: FontAwesome;
font-size: 14px;
}
.breadcrumb_area ul li::before {
padding: 0 10px 0 0;
content: "\f105";
font-family: FontAwesome;
font-size: 14px;
}

/*album area*/
  /*albumページ*/
.album_area{
  width: 100%;
  margin: 20px auto;
  display: table;
  text-align: center;
}

.album_img{
  width: 30vw;
  text-align: right;
  display: table-cell;
  padding: 10px;
}
.album_img img{
  width: 100%;
}


.album_info{
  text-align: left;
  display: table-cell;
  vertical-align: middle;
  font-size: 25px;
  padding: 10px;
}

.album_info p{
  font-size: 20px;
}


  /*artistページ*/

.album_column{
  display: table-cell;
}

#album_column_img img{
  width: 70px;
}

#album_column_img{
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}

#album_column_info{
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding-left:20px;
}

.bpm_column{
  text-align: center;
}

/*footer*/
.footer{
  height: 20px;
  background-color: black;
  text-align: center;
}

.footer p {
  color: white;
  font-size: 12px;
}

.footer p a{
  color: white;
  text-decoration: none;
}

.google_ads{
  margin: 30px auto;
}
