/* 開くボタン */
.button-open {
display: block;
    font-size: 14px;
    color: #fff;
    padding: 0.5em;
    text-align: center;
    text-decoration: none;
    background: #c3b2a0;
  cursor: pointer;
  max-width: 150px;
  border-radius: 0;
}
/* モーダルウィンドウ */
.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: auto;
  max-height: 680px;
  max-width: 680px;
  background-color: #fff;
  z-index: 1000;
  padding: clamp(1em,2vw,2.2vw);
  overflow-y: auto;
}
/* 閉じるボタン */
.button-close {
position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 5px 5px 5px 8px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #eaeaea;
    border-radius: 0;
    cursor: pointer;
    font-size: 25px;
    line-height: 0;
    text-align: center;
    margin-top: 0;
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  z-index: 999;
}
.no_scroll {
  overflow: hidden;
}

.profile__wrap p, .profile__wrap {
  font-size: 0.9rem;
}

.instrument + h2 + h3{
  margin-bottom: .25em;
  font-size: 1.1rem;
  text-align: left;
}