@charset "utf-8";

* {
  box-sizing: border-box;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: PT Sans, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

li {
  list-style: none;
}
a {
  text-decoration: none;
  z-index: 100;
}
img {
  width: 100%;
}

/* ************************ヘッダーエリア*************************** */
.flex-header {
  margin-top: 80px;
  display: flex;
  align-items: center;
}
div.logo {
  width: 35%;
  padding: 0 60px;
}
div.main-img {
  width: 65%;
}

/*==================================================
ナビゲーション
===================================*/
.gnavi {
  margin: 0 auto;
  margin-top: 20px;
  width: 80%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin-bottom: 40px;
}

.gnavi li a {
  display: block;
  padding: 40px 30px 6px 30px;
  text-decoration: none;
  color: #333;
}

.gnavi li {
  margin-bottom: 20px;
}
.gnavi1 {
  margin: 0 auto;
  width: 80%;
  display: flex;
  justify-content: space-around;
  list-style: none;
}

.gnavi1 li a {
  display: block;
  padding: 30px 30px 6px 30px;
  text-decoration: none;
  color: #333;
}

.gnavi1 li {
  margin-bottom: 20px;
}
.border3{
  width: 100%;
  height: 30px;
  background-color: #ddd;
}

/*==================================================
ナビゲーション下線
===================================*/
.gnavi1 li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.gnavi1 li.current a,
.gnavi1 li a:hover {
  color: #f39c12;
}

.gnavi1 li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #f39c12;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: left top; /*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi1 li.current a::after,
.gnavi1 li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}
.gnavi li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.gnavi li.current a,
.gnavi li a:hover {
  color: #f39c12;
}

.gnavi li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #f39c12;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: left top; /*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

.main-item {
  position: relative;
}

.border1 {
  margin-top: 40px;
  border: 10px solid #ddd;
}
.border {
  margin-top: 100px;
  border: 10px solid #ddd;
}
.border2 {
  border: 5px solid #ddd;
}

/*==================================================
ログイン、会員登録ボタン
===================================*/
/* div.btn {
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  justify-content: end;
  gap: 30px;
  margin-right: 340px;
}
.animoDoubleDashed {
  width: 120px;
  height: 40px;
  padding: 0 14px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.animoDoubleDashed::after,
.animoDoubleDashed::before {
  position: absolute;
  content: "";
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #f39c12;
  transition: transform 0.2s ease-in-out;
}
.animoDoubleDashed::before {
  top: 0;
  transform: translateX(-100%);
}
.animoDoubleDashed::after {
  bottom: 0;
  transform: translateX(100%);
}
.animoDoubleDashed:hover::after,
.animoDoubleDashed:hover::before {
  transform: translateX(0);
}  */

/*==================================================
container
===================================*/
.container{
  margin: 0 auto;
  width: 70%;
}
.flex-container02{
  margin: 0 auto;
  display: block;
  
}
.flex-container{
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 60px;
}
.container-header h2{
  font-size: 30px;
  font-weight: bold;
  padding-left: 20px;
}

/* btn1*/
div.btn{
  display: flex;
  justify-content: end;
  margin-top: 80px;
  margin-right: 285px;
}
button.btn1 {
  margin-right: 80px;
  width: 9em;
  height: 3em;
  border-radius: 30em;
  font-size: 15px;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
 
  box-shadow: 6px 6px 12px #c3c3c3, -6px -6px 12px #ffffff;
}

button.btn1::before {
  content: "";
  width: 0;
  height: 3em;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #f0f0f0 0%, #f39c12 100%);
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

button.btn1:hover::before {
  width: 9em;
}
/* btn*/
button {
  margin-right: 70px;
  width: 12em;
  height: 3em;
  border-radius: 30em;
  font-size: 15px;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

button::before {
  content: "";
  width: 0;
  height: 3em;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #ffffff 0%, #ee9a12 100%);
  transition: 0.4s ease;
  display: block;
  z-index: -1;
}

button:hover::before {
  width: 12em;
}

/* card*/

a.card{
  width: 20%;
  color: #333;
  margin-right: 30px;
  margin: 0 auto;
  
}
.card-img{
  /* width: 80%; */
  max-width: 220px;
  /* border: solid 1px #c5c5c5; */
  border-radius: 6px;
  overflow: hidden;
}
.card-img img{
  padding-top: 20px;
  width: 100%;

}

.card-txt h3{
  margin: 0;
  padding-top:10 px;
  font-weight: bold;
}
.card-txt p{
  font-size: 14px;
}

/* rank*/
a.rank-item{
  display: flex;
  padding: 40px 0 20px 100px; 
  border-bottom: solid rgb(54, 54, 54) 1px;
  color: #000;
}

.torofi{
  width: 40px;
  margin-right: 30px;
  padding-top: 55px;
}
.rank-img{
  width: 140px;
  /* border: solid 1px #c5c5c5; */
  border-radius: 6%;
  overflow: hidden;
}
.rank-img img{
  padding-top: 10px;
  width: 100%;
 
}
.rank-txt{
  margin-left: 100px;
}
.rank-txt h3{
  padding-top: 30px;
  font-weight: bold;
  margin: 0;
}
.rank-txt p{
  font-size: 14px;
}
.artist{
  display: flex;
  padding-top: 4px;
 
}
.artist img{
  width: 24px;
  height: 24px;
}
.artist p{
  margin: 0 ;
}
.promotion{
  display: flex;
  padding-top: 6px;
  
}
.promotion p{
  margin: 0 auto;
  margin-left: 2px;

}
.promotion img{
  width: 20px;
  height: 20px;
}

/* ************************hutta-sinchaku トップ*************************** */
#footer{
 background-color: #999;
 margin-top: 80px;
  width: 100%;
  height: 200px;
}

.copy{
  padding-top: 100px;
}


/* ************************ヘッダーsinchaku トップ*************************** */

.header_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.header_top h1{
  margin: 0 auto;
  width: 200px;
  margin-top: 20px;
  margin-left: 100px;
}
/* 
div.btn2{
  display: flex;
}
button.btn2 {
  width: 9em;
  height: 3em;
  border-radius: 30em;
  font-size: 15px;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
 
  box-shadow: 6px 6px 12px #c3c3c3, -6px -6px 12px #ffffff;
}

button.btn2::before {
  content: "";
  width: 0;
  height: 3em;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #f0f0f0 0%, #f39c12 100%);
  transition: 0.5s ease;
  display: block;
  z-index: -1;
} */

/* ************************メインsinchaku トップ*************************** */

.sub-title{
  margin-top: 100px;
  margin-bottom: 80px;
  text-align: center;
}

/* ************************item-container*************************** */
.item-main{
  margin: 0 auto;
  width: 60%;
}
.item-container{
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
}
.item-img{
  width: 50%;
}
.item-img img{
  width: 80%;
}
.item-txt{
  width: 50%;
}
.item-txt h3{
  font-size: 30px;
  font-weight: bold;
  border-left: #ff9d00 solid 10px;
  padding-left: 15px;
}
.class-artist{
  padding-top: 10px;
  padding-left: 25px;
  color: #ff9d00;
}
.class-artist a{
  color:   #ff9d00
  ;
}
.item-info{
  padding-left: 10px;
  padding-top: 40px;
}

.button02{
  margin-top: 40px;
}
.button02 a {
  margin: 0 auto;
  padding: 0.7em 2em;
  color: #333;
  font-weight: 700;
  background-color: #ebebeb;
  border-radius: 50vh;
}

.button02 a::before {
  content: "▶ ";
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}

.button02 a:hover {
  text-decoration: none;
  background-color:  #ff9d00;
}
.btn-flex{
  display: flex;

  padding-top: 40px;
  padding-left: 10px;
  gap: 30px;
}
.btn-flex01{
  display: flex;
  justify-content: end;
  margin-top: 60px;
  margin-right: 40px;
}
.btn2 a{
  color: #000;
}
.button01{
  padding-right: 20px;
}

.button01 a {
  margin: 0 auto;

  padding: 0.7em 2em;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  background-color: #ebebeb;
  border-radius: 50vh;
}

.button01 a::before {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}

.button01 a:hover {
  text-decoration: none;
  transition: 0.4s;
  background-color:  #f5b650;
}

.top-btn-flex01{
  margin: 0 auto;
  margin-top: 40px;
  width: 70%;
  display: flex;
  justify-content: end;
  padding-right: 50px;
}