* {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  line-height: 1.75;
}
body {
  margin:0 auto;
  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: 80vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.common_header a{
  height: 40px;
}

.common_header p{
  text-align: left;
  width: 40vw;
  display: inline;
}

.common_search{
  display: inline;
  width: 25vw;
  text-align: right;
  margin: 0;
}

.common_search p{
  color: white;
}

.search_container_header{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  padding: 3px 10px;
  border-radius: 20px;
  height: 40px;
  width: 25vw;
  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: right;
}

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

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

.bpm_container_submit{
  position: relative;
  padding: 3px 10px;
  width: 10vw;
  overflow: hidden;
  display: inline-flex;
}

.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: 200px;
    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: 60%;
    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{
  width: 100%;
  padding:10px;
}


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

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;
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 120px;
}

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

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

/*TOPの検索ボックス*/
.search_container{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  display: block;
  padding: 3px 10px;
  border-radius: 20px;
  height: 40px;
  width: 50vw;
  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: 15px;
}
.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: 80vw;
  margin: 0 auto;
  padding-top: 100px;
}

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

.top_section h2{
  text-align: center;
  font-size: 30px;
  margin: 0 auto 40px auto;
}

.top_section h3{
  font-size: 20px;
  margin:20px auto;
  border-left: solid black 5px;
  display: inline-block;
  width: 50%;
}

.top_bottom_image{
  height: auto;
}
.top_bottom_image img{
  width: 100%;
}

.music_h3{
  font-size: 20px;
  margin:20px auto;
  display: inline-block;
  width: 80%;
  padding-left: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);
 }


 .accordion-header .fa{
    float: right;
    line-height: 35px;
 }

 .accordion-gold{
    color: #ddba4d;
 }

 .accordion-no-bar{
    border-bottom: 0;
}

.right-of-h3{
    display: inline-block;
    width: 50%;
    text-align: right;
    padding: 0 20px;
}

.music_right-of-h3{
    display: inline-block;
    width: 20%;
    text-align: right;
    padding: 0 20px;
}


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

.bpm-table td{
  padding: 10px;
  display: table-cell;
  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: table-cell;
  border: none;
}

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

/*ミュージックテーブル*/
.music-table{
  border: 1px solid gray;
  width: 100%;
  table-layout: fixed;
  margin: 0 auto;
}

#album{
  width: 80%;
}

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

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

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

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

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

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

/*検索結果ページ*/

.search_section{
  padding: 20px;
}

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

#album-h1{
  text-align: left;
  width: 80%;
  padding-left: 5px;
  font-size: 20px;
  margin:40px auto 20px auto;
  border-left: solid black 5px;
}

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

/*アンカーリンク*/

#anker_ul{
  text-align: center;
}

.anker_list{
  display: inline;
  margin: 0 10px;
}

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


/*ページャ*/

.pager{
  padding: 30px;
}

.pager  ul.pagination {
  text-align: center;
  margin: 0;
  padding: 0;
}

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

.pager .pagination li.pre,
.pager .pagination li.next{
  width: 20%;
}


.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;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #000;
  background: gray;
}

/*bread crumb*/
.breadcrumb_area {
width: 100%;
margin: 20px auto;
}
.breadcrumb_area ul {
display: table;
font-size: 13px;
}
.breadcrumb_area ul li {
margin: 0 10px 0 0;
font-size: 13px;
float: left;
list-style: none;
}
.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: 50%;
  text-align: right;
  display: table-cell;
  padding: 10px;
}

.album_img img{
  width: 10vw;
}

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

  /*artistページ*/

.album_column{
  display: table;
}

#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;
}

#artist{
  width: 100%;
}

.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: 20px auto;
}
