@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Fjalla+One&family=Hachi+Maru+Pop&family=Kaisei+HarunoUmi&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=RocknRoll+One&family=Sawarabi+Gothic&family=Yuji+Boku&family=Zen+Maru+Gothic&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "EB Garamond", serif;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
}
body {
    margin: 0px;
    padding: 0px;
    background: #000;
    background-image: url('img/background.jpg');
     background-attachment: fixed;
     background-repeat: no-repeat;
     background-size: cover;
}
h1{
    color:#000;
    font-size: 3rem;
    margin: 20px auto;
}
.container{
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    width: 70%;
    height: auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}
.container p {
    color: #000;
    font-size: 1.5rem;
    margin: 20px auto;
}
.container p span{
    color: green;
    font-size: 1.8rem;
    font-weight: bold;
}
.container .supported{
    margin: 10px auto;
    gap:10px;
    width: 90px;
    background: #5F182B;
    width: 120px; 
    height:auto;
    border-radius: 5px;
    padding: 3px;
}
.container .supported h5{
    color: #fff;
    text-align: center;
}
.container .supported h4{
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
}
.container .supported h4 span{
    color: red; 
}
.scale {
    margin: 40px auto;
    background: pink;
    width: 80%;
    padding: 20px;
    justify-content: center;
    background-image: url('img/guitar.png');
    background-position: 2% 4%;           /* 画像の中央を表示 */
    background-repeat: no-repeat; 
    background-size: 50px;
}
.scale h2{
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.scale p{
    color: #000;
    font-size: 1.2rem;
    margin-top: 10px;
}
.scale img{
    width:500px;
    height: auto;
}
.scale h4{
    font-size: 2rem
}
.scale .review{
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.scale .review .good, .scale .review .bad{
    display: flex;
    gap: 5px;
    align-items: center;
}

.like-container {
  display: flex;
  margin: 20px auto;
  width: 30%;
  height: 40px;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.like-button {
  display: flex;
  width: 100%;
  height: 25px;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #ff4757;
  background: #ffe2e5;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.like-button:hover {
  background: #ff4757;
  color: white;
  transform: translateY(-2px);
}

.like-count {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.counter {
    margin: 0 auto;
    width: 100%;
    height: auto;
    text-align: center;
}
.counter img {
    height:auto;
    width: 70px
}

@media screen and (max-width: 500px){
    h1{
        font-size: 2.5rem;
    }
    .container{
        width: 90%;
    }
     .container p{
        font-size: 1.2rem;
     }
    .scale {
        padding:5px;
        background-size: 20px;
    }
     .scale h2{
        font-size: 1rem;
     }
     .scale p{
        font-size: .9rem;
     }

    .scale img{
        width: 90%;
    }
}
