* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
}

html {
  font-size: 62.5%;
  background-color: #fff;
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  font-weight: 300;
  font-size: 1.6rem;
  @media (max-width: 575.98px) {
    font-size: 1.4rem;
  }
}

a {
  color: #000;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: #06e;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

audio {
  width: 100%;
  max-width: 30rem;
  height: auto;
}

.header {
  padding-top: 3rem;
}

/* .banner img {
} */

.about {
  padding-top: 1rem;
  text-align: center;
}

.audio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.audio img {
  width: 3rem !important;
  height: auto;
}

.about p {
  margin-bottom: 1rem;
}

.container {
  max-width: 990px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container h2 {
  font-size: 4rem;
  margin-bottom: 4rem;
  font-weight: 700;
  @media (max-width: 575.98px) {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.profile {
  padding-top: 6rem;
}
.profile .description {
  display: grid;
  display: -webkit-grid;
  grid-template-columns: 12% 88%;
  gap: 1rem;
  @media (max-width: 767.98px) {
    grid-template-columns: 14% 86%;
  }
  @media (max-width: 575.98px) {
    grid-template-columns: 16% 84%;
  }
  @media (max-width: 400px) {
    grid-template-columns: 20% 80%;
  }
}
.profile .description dt {
  font-weight: bold;
  padding: 1.2rem 0;
  white-space: nowrap;
}
.profile .description dd {
  margin: 0;
  padding: 1.2rem 1.8rem;
}
.profile .description dd:has(.x-icon) {
  padding-top: 0;
  padding-bottom: 0;
}
.profile .description .x-icon {
  height: 3rem;
  /* margin-top: 0.3rem; */
  width: auto;
}

.voice-collection {
  padding-top: 6rem;
}
.voice-collection .voice {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 6rem;
  @media (max-width: 575.98px) {
    flex-direction: column;
    gap: 4rem;
  }
}
.voice-collection .voice .voice-item {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  text-align: center;
  @media (max-width: 575.98px) {
    gap: 1rem;
  }
}
.voice-collection .voice .voice-item > img {
  width: 10rem;
  height: auto;
  margin: 0 auto;
  @media (max-width: 575.98px) {
    width: 8rem;
  }
}
.voice-collection .voice .voice-item p {
  font-weight: 500;
}
.pause-button {
  width: 30px;
  height: 30px;
  background: rgb(148, 148, 148);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  gap: 0.3rem;
}
.pause-button .squared {
  width: 4px;
  height: 12px;
  background: white;
}

.works {
  padding-top: 6rem;
  padding-bottom: 10rem;
}

.footer {
  padding-top: 6rem;
  padding-bottom: 2rem;
}
.footer .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer .content h3 {
  font-weight: 700;
  font-size: 2.5rem;
}
.footer .content p {
  font-weight: 500;
}

/* NEWS */
.news {
  margin-top: 8rem;
  background-color: #fff;
}
.news-item {
  padding: 1.6rem 0;
  border-bottom: 1px dashed #000;
}
.news-item:first-of-type {
  border-top: 1px dashed #000;
}
.news-date {
  display: block;
  font-size: 1.4rem;
}
.news-title {
  color: #000;
}

/* NEWS DETAIL */
.new-detail {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.new-detail .new-detail-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.sns-icons {
  display: flex;
  gap: 2rem;
  margin-top: 0.85rem;
}

.sns-icons img {
  width: 30px;
  height: 30px;
}
