@charset "UTF-8";
@font-face {
  font-family: "Boku2-Bold"; /* フォント名 */
  src: url("../fonts/Boku2-Bold.otf") format("opentype"); /* フォントファイルのパスと形式 */
}
html {
  font-size: 16px;
}

.liver-contents {
  margin-bottom: 150px;
}

h1 {
  font-size: min(7vw, 30px);
  color: #434343;
  margin: 40px 0;
  text-align: center;
  padding-top: 40px;
}
@media screen and (min-width: 935px) {
  h1 {
    margin: 20px 0 40px;
    font-size: 40px;
    width: 100%;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (min-width: 935px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px;
  }
}

.card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 935px) {
  .card {
    gap: 10px;
  }
}
.card .face-wrap {
  width: 100%;
}
.card .face-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.card .icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card .name p {
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  color: #434343;
}
.card .sns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
}
.card .sns a {
  width: clamp(30px, 10vw, 50px);
  height: clamp(30px, 10vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.card .sns a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card .sns a:hover {
  transform: scale(1.1);
}
.card .link {
  display: inline-flex;
  align-items: center;
  gap: 0rem;
  padding: 0.3rem 0.7rem 0.3rem 1rem;
  border-radius: 999px;
  background: #434343;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 12px;
}
@media screen and (min-width: 935px) {
  .card .link {
    padding: 0.3rem 0.7rem 0.5rem 1rem;
    font-size: 14px;
  }
}
.card .link:hover {
  background: #222;
}
.card .link .link__arrow {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.2s ease;
  margin-top: 0.24rem;
}
.card .link:hover .link__arrow {
  transform: translateX(3px);
}

.note {
  margin-top: 30px;
}
.note h2 {
  text-align: center;
  font-size: min(6vw, 30px);
  color: #434343;
  margin: 30px 0;
  text-align: center;
  padding-top: 30px;
}
@media screen and (min-width: 935px) {
  .note h2 {
    margin: 20px 0 40px;
    font-size: 30px;
    width: 100%;
  }
}
.note .notemagazine {
  margin: 40px auto;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 935px) {
  .note .notemagazine {
    padding: 8px 6px !important;
  }
}
@media screen and (min-width: 935px) {
  .note .notemagazine h4 {
    font-size: 20px !important;
  }
}
@media screen and (min-width: 935px) {
  .note .notemagazine p {
    font-size: 15px !important;
  }
}
@media screen and (min-width: 935px) {
  .note .notemagazine img {
    width: 130px !important;
    height: auto !important;
  }
}/*# sourceMappingURL=liver.css.map */