/*
Theme Name:original
*/
@charset "UTF-8";

*{
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  color: #464036;
  line-height: 1.6em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

img{
  display: block;
  width: 100%;
}

ul,ol{
  list-style: none;
}

a{
  text-decoration: none;
}

input{
  border: 1px solid #ccc;
  padding: 10px 10px 10px 44px;
  border-radius: 50px;
}
select{
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
}
/* パソコン時、電話のリンクを許可しない */
a[href^="tel:"] {
    pointer-events: none;
}

html{
  background: url('./images/bk.png') no-repeat;
  background-position: bottom right;
  background-size: contain;
}

footer{
  padding: 0 30px 30px 30px;
  position: relative;
}

/* ブレイクポイント毎のデザイン */
@media (max-width:768px) {
  *{
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
    color: #464036;
    line-height: 1.6em;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }

  html{
    background: url('./images/bk.png') no-repeat;
    background-position: bottom right;
  background-size: 310%;
  }

  footer{
    padding: 30px;
  }
}

/* ---------------------------------------------------------------------- */
/* 共通クラス ここから↓*/
/* ---------------------------------------------------------------------- */
.showPc{
  display: block;
}
.showSp{
  display: none;
}

/* ロゴ */
.logo{
  width: 80%;
  max-width: 400px;
  margin: 110px auto 50px auto;
}

.search-form-container{
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
  position: relative;
}

/* キーワード検索 */
.keyword-search{
  width: 100%;
  margin-bottom: 15px;
}

.keyword-search input{
  width: 100%;
  background: url('https://cdn-icons-png.flaticon.com/512/622/622669.png') no-repeat 8px center;
  background-size: 16px 16px;
  background-position: 16px center;
}

/* アーティスト名とジャンル検索エリア */
.taxonomies-search{
  display: flex;
  justify-content: space-between;
}
.taxonomies-search select{
  width: 49%;
}

/* 検索ボタン */
.search-button{
  width: 70%;
  max-width: 220px;
  margin: 40px auto;
}
.search-button button{
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: 100px;
  background-color: #c82424;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}
.search-button button:before,
.search-button button:after{
  content: "♥";
  padding: 0 5px;
}

/* エミムさんのイラスト */
.emimu{
  position: absolute;
  right: -60px;
  top: -280px;
  width: 32%;
}
.emimu img{
  width: 100%;
  position: relative;
  z-index: -1;
}

/* 検索結果の外枠 */
.page-container{
  margin: 0 auto;
  width: 90%;
  max-width: 1500px;
}

/* 検索結果 */
.song-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.song-item{
  width: 19%;
  border: 1px solid #ccc;
  border-radius: 3%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 10px;
  margin: 0 0.5% 2% 0.5%;
  background-color: rgba(255,255,255,0.5);
}
.song-item img{
  border-radius: 3% 3% 0 0;
}
.song-date{
  font-size: 14px;
  padding: 5px 0 0 0;
  text-align: center;
}
.song-name{
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
}
.youtube-button{
  display: block;
  width: 80%;
  margin: 10px auto;
  text-align: center;
  background-color: #eee;
  border-radius: 5px;
  padding: 5px;
  font-weight: bold;
  font-size: 14px;
}
.youtube-button:before,
.youtube-button:after{
  content: "♥";
  padding: 0 5px;
  color: #c82424;
}

/* リンク */
.link-lists{
  display: flex;
  width: 300px;
  padding: 0 0 10px 20px;
}
.link-lists li a{
  display: flex;
  align-items: center;
}
.link-lists li:nth-child(1){
  width: 40px;
  padding: 0 10px 0 0;
}
.link-lists li:nth-child(2){
  width: 150px;
  padding: 0 10px;
}
.link-lists li:nth-child(3){
  width: 150px;
  padding: 0 10px;
}
.link-lists li img,
.link-lists li svg{
  width: 100%;
}

/* 免責事項 */
.footer-disclaimer{
  display: flex;
}
.footer-disclaimer li{
  font-size: 12px;
  padding: 20px;
  background-color: rgba(255,255,255,0.5);
}
.footer-disclaimer li a{
  font-size: 12px;
  text-decoration: underline;
  color: #c82424;
}

/* Copyright */
.copyright{
  font-size: 12px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
/* ブレイクポイント毎のデザイン */
@media (max-width:768px) {
  .showPc{
    display: none;
  }
  .showSp{
    display: block;
  }

  /* ロゴ */
  .logo{
    width: 70%;
  max-width: 220px;
  margin: 60px auto 30px 60px;
  }

  .search-form-container{
    margin: 0 auto;
    width: 90%;
    max-width: 700px;
  }

  /* キーワード検索 */
  .keyword-search{
    width: 100%;
    margin-bottom: 10px;
  }
  .keyword-search input{
    width: 100%;
  }

  /* アーティスト名とジャンル検索エリア */
  .taxonomies-search{
    display: flex;
    justify-content: space-between;
  flex-direction: column;
  }
  .taxonomies-search select{
  width: 100%;
  margin-bottom: 10px;
  }

  /* 検索ボタン */
  .search-button{
    width: 70%;
    max-width: 300px;
    margin: 40px auto;
  }
  .search-button button{
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 100px;
    background-color: #c82424;
    color: #fff;
    font-weight: bold;
  }
  .search-button button:before,
  .search-button button:after{
    content: "♥";
    padding: 0 5px;
  }

  /* エミムさんのイラスト */
  .emimu{
    position: absolute;
    right: -20px;
    top: -150px;
    width: 120px;
  }
  .emimu img{
    width: 100%;
    position: relative;
    z-index: -1;
  }


  /* 検索結果の外枠 */
  .page-container{
    margin: 0 auto;
  width: 96%;
    max-width: 1500px;
  }

  /* 検索結果 */
  .song-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .song-item{
  width: 48%;
    border: 1px solid #ccc;
  border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 8px;
  margin: 0 1% 2% 1%;
    background-color: rgba(255,255,255,0.5);
  }
  .song-item img{
    border-radius: 10px 10px 0 0;
  }
  .song-date{
    font-size: 14px;
    padding: 5px 0 0 0;
    text-align: center;
  }
  .song-name{
    text-align: center;
    font-weight: bold;
    padding: 5px 0;
  }
  .youtube-button{
    display: block;
    width: 80%;
    margin: 10px auto;
    text-align: center;
    background-color: #eee;
    border-radius: 5px;
    padding: 5px;
    font-weight: bold;
  font-size: 12px;
  }
  .youtube-button:before,
  .youtube-button:after{
    content: "♥";
    padding: 0 5px;
    color: #c82424;
  }

  /* リンク */
  .link-lists{
    display: flex;
    width: 300px;
    padding: 0 0 10px 20px;
  }
  .link-lists li a{
    display: flex;
    align-items: center;
  }
  .link-lists li:nth-child(1){
    width: 40px;
    padding: 0 10px 0 0;
  }
  .link-lists li:nth-child(2){
    width: 150px;
    padding: 0 10px;
  }
  .link-lists li:nth-child(3){
    width: 150px;
    padding: 0 10px;
  }
  .link-lists li img,
  .link-lists li svg{
    width: 100%;
  }

  /* 免責事項 */
  .footer-disclaimer{
    display: flex;
  flex-direction: column;
  }
  .footer-disclaimer li{
    font-size: 12px;
    padding: 20px;
    background-color: rgba(255,255,255,0.5);
  }
  .footer-disclaimer li a{
    font-size: 12px;
    text-decoration: underline;
    color: #c82424;
  }

  /* Copyright */
  .copyright{
  font-size: 10px;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
}
/* ---------------------------------------------------------------------- */
/* 共通クラス ここまで↑*/
/* ---------------------------------------------------------------------- */
