/* =========================
   Sound FV
========================= */

.sound-fv {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 651;
  overflow: hidden;
}

.sound-fv__background {
  position: absolute;
  inset: 0;
  display: block;
}

.sound-fv__background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-fv__sentence,
.sound-fv__subsentence {
  position: absolute;
  display: block;
}

.sound-fv__sentence {
  top: 10.91%;
  left: 7.56%;
  width: 31.06%;
}

.sound-fv__subsentence {
  top: 39.17%;
  left: 7.63%;
  width: 37.81%;
}

.sound-fv__sentence img,
.sound-fv__subsentence img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   Sound FV SP
========================= */

@media screen and (max-width: 767px) {
  .sound-fv {
    width: 100%;
    height: auto;
    aspect-ratio: 394 / 592;
  }

  .sound-fv__sentence {
    top: 3.38%;
    left: -1.52%;
    width: 81.73%;
  }

  .sound-fv__subsentence {
    top: 24.16%;
    left: -1.52%;
    width: 102.54%;
  }
}

/* =========================
   Sound System Cards
========================= */

.sound-systems {
  width: 100%;
  padding: 52px 20px 80px;
  background-color: #fff;
}

.sound-systems__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 238px));
  justify-content: center;
  gap: 23px;
  width: 100%;
  max-width: 1282px;
  margin: 0 auto;
}

/* カード */

.sound-system-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 283px;
  padding: 12px 10px 10px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

/* アイコン */

.sound-system-card__icon {
  display: block;
  width: 120px;
  height: 119px;
  object-fit: contain;
  flex-shrink: 0;
}

/* タイトル */

.sound-system-card__title {
  margin: 9px 0 0;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
}

/* タイトル下線画像 */

.sound-system-card__line {
  display: block;
  width: 75px;
  height: 3px;
  margin: 21px 0 0;
  object-fit: fill;
  flex-shrink: 0;
}

/* 説明文 */

.sound-system-card__text {
  margin: 18px 0 0;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

/* カードごとのタイトルカラー */

.sound-system-card--line-array .sound-system-card__title {
  color: #011b9d;
}

.sound-system-card--digital-console .sound-system-card__title {
  color: #0a8d80;
}

.sound-system-card--wireless .sound-system-card__title {
  color: #51369a;
}

.sound-system-card--lighting .sound-system-card__title {
  color: #f99a02;
}

.sound-system-card--total-support .sound-system-card__title {
  color: #ec4f80;
}

/* =========================
   Sound System Cards SP
========================= */

@media screen and (max-width: 767px) {
  .sound-systems {
    padding: 40px 3px 30px;
  }

  .sound-systems__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: initial;
    column-gap: 20px;
    row-gap: 26px;
    max-width: 100%;
  }

  .sound-system-card {
    height: 234px;
    padding: 8px 5px 8px;
    border-radius: 10px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  }

  .sound-system-card__icon {
    width: 87px;
    height: 87px;
  }

  .sound-system-card__title {
    margin-top: 15px;
    font-size: 13px;
    line-height: 15px;
  }

  .sound-system-card__line {
    width: 54px;
    height: 3px;
    margin-top: 21px;
  }

  .sound-system-card__text {
    margin-top: 17px;
    font-size: 10px;
    line-height: 20px;
  }

  /* 5枚目だけ最下段中央 */

  .sound-system-card--total-support {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 20px) / 2);
  }
}

/* =========================
   Sound Events
========================= */

.sound-events {
  width: 100%;
  padding: 67px 20px 80px;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-events__inner {
  display: grid;
  grid-template-columns: 440px 804px;
  column-gap: 36px;
  align-items: start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* 左側テキスト */

.sound-events__content {
  padding-top: 49px;
}

.sound-events__title {
  width: 448px;
  margin: 0;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
  color: #00126c;
  letter-spacing: 0;
}

.sound-events__text {
  width: 473px;
  margin: 57px 0 0;
  font-family: "Roboto Mono", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  color: #000;
}

/* イベント一覧 */

.sound-events__list {
  display: grid;
  grid-template-columns: repeat(3, 256px);
  column-gap: 18px;
  row-gap: 20px;
}

.sound-event-card {
  display: flex;
  flex-direction: column;
  width: 256px;
  height: 203px;
  margin: 0;
  overflow: hidden;
  background-color: #f3f3f3;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
}

.sound-event-card__image {
  display: block;
  width: 254px;
  height: 152px;
  object-fit: cover;
  flex-shrink: 0;
}

.sound-event-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  margin: 0;
  padding: 0 8px;
  font-family: "Roboto Mono", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  color: #000;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

/* =========================
   Sound Events SP
========================= */

@media screen and (max-width: 767px) {
  .sound-events {
    padding: 12px 10px 60px;
  }

  .sound-events__inner {
    display: block;
    max-width: 370px;
  }

  /* SPテキスト */

  .sound-events__content {
    padding: 0 8px;
  }

  .sound-events__title {
    width: 336px;
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    white-space: nowrap;
  }

  .sound-events__text {
    width: 100%;
    margin-top: 25px;
    font-size: 15px;
    line-height: 25px;
  }

  /* SPイベント一覧 */

  .sound-events__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 6px;
    row-gap: 10px;
    margin-top: 31px;
  }

  .sound-event-card {
    width: 100%;
    height: 146px;
  }

  .sound-event-card__image {
    width: 100%;
    height: 109px;
    object-fit: cover;
  }

  .sound-event-card__title {
    min-height: 35px;
    padding: 0 4px;
    font-size: 12px;
    line-height: 31px;
  }
}

/* =========================
   Sound Equipment
========================= */

.sound-equipment {
  width: 100%;
  padding: 20px 20px 64px;
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-equipment__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 460px;
  margin: 0 auto;
}

/* スピーカー画像 */

.sound-equipment__speaker {
  position: absolute;
  top: 0;
  left: 0;
  width: 182px;
  height: 460px;
}

.sound-equipment__speaker img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* テキスト */

.sound-equipment__content {
  position: absolute;
  top: 97px;
  left: 227px;
  width: 353px;
}

.sound-equipment__title {
  margin: 0;
  font-family: "Roboto Mono", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  color: #000;
  white-space: nowrap;
}

.sound-equipment__text {
  margin: 28px 0 0 5px;
  font-family: "Roboto Mono", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  color: #000;
  white-space: nowrap;
}

/* YouTube */

.sound-equipment__video {
  position: absolute;
  top: 32px;
  right: 1px;
  width: 640px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

.sound-equipment__video iframe,
.sound-equipment__video img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* =========================
   Sound Equipment SP
========================= */

@media screen and (max-width: 767px) {
  .sound-equipment {
    padding: 20px 10px 60px;
  }

  .sound-equipment__inner {
    width: 100%;
    max-width: 373px;
    height: auto;
    min-height: 466px;
  }

  /* SP上段 */

  .sound-equipment__speaker {
    top: 0;
    left: 7px;
    width: 92px;
    height: 234px;
  }

  .sound-equipment__content {
    top: 22px;
    left: 118px;
    width: 247px;
  }

  .sound-equipment__title {
    font-family: Roboto, "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
  }

  .sound-equipment__text {
    margin: 25px 0 0;
    font-family: Roboto, "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
  }

  /* SP動画 */

  .sound-equipment__video {
    top: 256px;
    right: auto;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* =========================
   Sound Rental
========================= */

.sound-rental {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1280px;
  aspect-ratio: 1280 / 853;
  margin: 0 auto;
  overflow: hidden;
  background-color: #000614;
  box-sizing: border-box;
}

.sound-rental__background {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.sound-rental__background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-rental__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

.sound-rental__content {
  position: absolute;
  top: 9.3%;
  left: 6.25%;
  z-index: 2;
}

/* 上部キャッチ */

.sound-rental__catch {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 4px;
}

.sound-rental__catch p {
  margin: 0;
  font-family: "Roboto Mono", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #e4b007;
  white-space: nowrap;
}

.sound-rental__catch-line {
  display: block;
  width: 110px;
  height: 3px;
  background-color: #e4b007;
}

/* メイン見出し */

.sound-rental__title {
  margin: 43px 0 0;
  font-family: "Roboto Mono", "Noto Sans JP", sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}

.sound-rental__english {
  margin: 25px 0 0 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #4763e3;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.sound-rental__text {
  margin: 39px 0 0 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}

/* 白いカード3枚 */

.sound-rental__points {
  display: flex;
  gap: 13px;
  margin: 31px 0 0 7px;
}

.sound-rental-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 157px;
  height: 220px;
  padding: 20px 5px 10px;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

.sound-rental-point__icon {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.sound-rental-point__content {
  width: 100%;
  text-align: center;
}

.sound-rental-point__lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #012050;
  white-space: nowrap;
}

.sound-rental-point__title {
  margin: -1px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #012050;
  white-space: nowrap;
}

.sound-rental-point__text {
  margin: 6px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
  white-space: nowrap;
}

/* 右側の丸 */

.sound-rental__badge {
  position: absolute;
  top: 8.5%;
  left: 63%;
  z-index: 3;
  width: 209px;
  height: 209px;
}

.sound-rental__badge-background {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sound-rental__badge-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 49px;
  box-sizing: border-box;
}

.sound-rental__badge-small {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
}

.sound-rental__badge-main {
  margin: 15px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  color: #e4b007;
  white-space: nowrap;
}

.sound-rental__badge-icon {
  display: block;
  width: 74px;
  height: 58px;
  margin-top: 5px;
  object-fit: contain;
}

/* =========================
   Sound Rental SP
========================= */

@media screen and (max-width: 767px) {
  .sound-rental {
    position: relative;
    width: 100%;
    max-width: none;
    height: 1116px;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: auto;
    background-color: #000614;
  }

  /* 下部の背景画像 */

  .sound-rental__background {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 430px;
  }

  .sound-rental__background img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center top;
  }

  .sound-rental__inner {
    width: 100%;
    max-width: 393px;
    height: 100%;
    min-height: 0;
    margin: 0 auto;
  }

  .sound-rental__content {
    top: 42px;
    left: 24px;
    width: calc(100% - 48px);
  }

  /* SPキャッチ */

  .sound-rental__catch {
    justify-content: center;
    gap: 12px;
    margin: 0;
  }

  .sound-rental__catch p {
    font-size: 16px;
    line-height: 30px;
  }

  .sound-rental__catch-line {
    width: 38px;
    height: 2px;
    flex-shrink: 0;
  }

  /* SP見出し */

  .sound-rental__title {
    margin: 23px 0 0;
    font-size: 32px;
    line-height: 38px;
    white-space: nowrap;
  }

  .sound-rental__english {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .sound-rental__text {
    width: 358px;
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 30px;
  }

  /* SPカード */

  .sound-rental__points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0 0;
  }

  .sound-rental-point {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 110px;
    padding: 0 24px;
    border-radius: 10px;
  }

  .sound-rental-point__icon {
    width: 80px;
    height: 80px;
    margin: 0 27px 0 0;
    flex-shrink: 0;
  }

  .sound-rental-point__content {
    width: auto;
    text-align: left;
  }

  .sound-rental-point__lead {
    font-size: 16px;
    line-height: 23px;
  }

  .sound-rental-point__title {
    font-size: 20px;
    line-height: 28px;
  }

  .sound-rental-point__text {
    margin-top: 3px;
    font-size: 12px;
    line-height: 15px;
  }

  /* SP丸バッジ */

  .sound-rental__badge {
    top: 718px;
    bottom: auto;
    left: 23px;
    width: 130px;
    height: 130px;
  }

  .sound-rental__badge-content {
    padding-top: 29px;
  }

  .sound-rental__badge-small {
    font-size: 10px;
    line-height: 20px;
  }

  .sound-rental__badge-main {
    margin-top: 1px;
    font-size: 16px;
    line-height: 20px;
  }

  .sound-rental__badge-icon {
    width: 46px;
    height: 36px;
    margin-top: 1px;
  }
}

/* =========================
   Small Event
========================= */

.sound-small-event {
  width: 100%;
  padding: 30px 20px 30px;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-small-event__inner {
  display: grid;
  grid-template-columns: 574px 640px;
  align-items: start;
  gap: 13px;
  width: 100%;
  max-width: 1227px;
  min-height: 360px;
  margin: 0 auto;
}

.sound-small-event__content {
  padding-top: 2px;
}

.sound-small-event__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 37px;
  color: #012050;
}

.sound-small-event__text {
  margin-top: 27px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
}

.sound-small-event__text p {
  margin: 0;
}

.sound-small-event__text p + p {
  margin-top: 20px;
}

/* YouTube */

.sound-small-event__movie {
  width: 640px;
  height: 360px;
  overflow: hidden;
  background-color: #000;
}

.sound-small-event__movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.sound-pc-only {
  display: block;
}

/* =========================
   Small Event SP
========================= */

@media screen and (max-width: 767px) {
  .sound-small-event {
    padding: 0 10px;
  }

  .sound-small-event__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 373px;
    min-height: 0;
  }

  .sound-small-event__content {
    width: 100%;
    padding-top: 0;
  }

  .sound-small-event__title {
    width: 100%;
    font-size: 32px;
    line-height: 47px;
    text-align: center;
    white-space: nowrap;
  }

  .sound-small-event__text {
    width: 100%;
    margin-top: 25px;
    font-size: 20px;
    line-height: 30px;
  }

  .sound-small-event__text p + p {
    margin-top: 30px;
  }

  .sound-pc-only {
    display: none;
  }

  .sound-small-event__movie {
    width: 100%;
    height: auto;
    margin-top: 32px;
    aspect-ratio: 373 / 212;
  }
}

/* =========================
   Small Sound Set
========================= */

.sound-small-set {
  width: 100%;
  padding: 70px 20px;
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-small-set__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 628px;
  margin: 0 auto;
}

/* 上部ラベル */

.sound-small-set__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 412px;
  height: 41px;
  z-index: 2;
}

.sound-small-set__label img {
  display: block;
  width: 100%;
  height: 100%;
}

.sound-small-set__label p {
  position: absolute;
  top: 10px;
  left: 50px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
}

/* 左側コンテンツ */

.sound-small-set__content {
  position: absolute;
  top: 84px;
  left: 50px;
  z-index: 2;
  width: 546px;
}

.sound-small-set__title {
  display: flex;
  align-items: center;
  height: 65px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  color: #011f50;
  white-space: nowrap;
}

.sound-small-set__lead {
  margin: 8px 0 0 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  white-space: nowrap;
}

/* 3つの特徴 */

.sound-small-set__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 450px;
  height: 146px;
  margin: 30px 0 0 5px;
}

.sound-small-set-point {
  position: relative;
  padding: 0 8px;
  text-align: center;
  box-sizing: border-box;
}

.sound-small-set-point + .sound-small-set-point {
  border-left: 1px solid #d9d9d9;
}

.sound-small-set-point__icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  object-fit: contain;
}

.sound-small-set-point__title {
  margin: 12px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #011f50;
  white-space: nowrap;
}

.sound-small-set-point__text {
  margin: 14px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
  white-space: nowrap;
}

/* セット内容 */

.sound-small-set__details {
  width: 447px;
  margin: 45px 0 0 2px;
}

.sound-small-set__details-heading {
  display: flex;
  align-items: center;
  gap: 17px;
}

.sound-small-set__details-heading h3 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #012050;
  white-space: nowrap;
}

.sound-small-set__details-heading span {
  display: block;
  width: 350px;
  height: 1px;
  background-color: #012050;
}

.sound-small-set__list {
  display: grid;
  grid-template-columns: 236px 210px;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, 20px);
  row-gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sound-small-set__list li {
  display: flex;
  align-items: center;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  white-space: nowrap;
}

.sound-small-set__list img {
  display: block;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.sound-small-set__list li:nth-child(n + 4) {
  padding-left: 20px;
}

/* 料金 */

.sound-small-set__price {
  display: flex;
  align-items: center;
  width: 546px;
  height: 67px;
  margin-top: 30px;
  padding: 0 11px;
  border: 1px solid #011f50;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-small-set__price-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 46px;
  margin: 0;
  border-radius: 5px;
  background-color: #011f50;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
}

.sound-small-set__price-value {
  display: flex;
  align-items: baseline;
  margin: 0 0 0 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.sound-small-set__price-value span {
  font-size: 24px;
  line-height: 1;
}

.sound-small-set__price-value strong {
  font-size: 40px;
  line-height: 1;
}

.sound-small-set__price-value small {
  margin-left: 4px;
  font-size: 14px;
  line-height: 1;
}

.sound-small-set__notes {
  margin-left: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  color: #000;
  white-space: nowrap;
}

.sound-small-set__notes p {
  margin: 0;
}

/* 右側の機材画像 */

.sound-small-set__image {
  position: absolute;
  top: 67px;
  left: 532px;
  z-index: 1;
  display: block;
  width: 748px;
  height: 561px;
  object-fit: contain;
  object-position: left top;
  pointer-events: none;
}

/* =========================
   Small Sound Set SP
========================= */

@media screen and (max-width: 767px) {
  .sound-small-set {
    width: 100%;
    padding: 60px 10px 60px;
    overflow: hidden;
  }

  .sound-small-set__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 393px;
    height: auto;
    margin: 0 auto;
  }

  /* 上部ラベル */

  .sound-small-set__label {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
    width: 100%;
    height: 39px;
  }

  .sound-small-set__label img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .sound-small-set__label p {
    top: 9px;
    left: 0;
    width: 100%;
    margin: 0;
    padding-right: 48px;
    font-size: 19px;
    line-height: 20px;
    text-align: center;
    box-sizing: border-box;
  }

  /* メインコンテンツ */

  .sound-small-set__content {
    display: contents;
  }

  .sound-small-set__title {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 357px;
    height: 58px;
    margin: 13px auto 0;
    font-size: 44px;
    line-height: 58px;
    text-align: center;
    white-space: nowrap;
  }

  .sound-small-set__lead {
    order: 3;
    width: 100%;
    margin: 1px 0 0;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
  }

  /* 3つの特徴 */

  .sound-small-set__points {
    order: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 144px;
    margin: 16px 0 0;
    padding: 0 13px;
    box-sizing: border-box;
  }

  .sound-small-set-point {
    position: relative;
    padding: 0 5px;
    text-align: center;
    box-sizing: border-box;
  }

  .sound-small-set-point + .sound-small-set-point {
    border-left: 1px solid #d9d9d9;
  }

  .sound-small-set-point__icon {
    width: 51.4px;
    height: 51.4px;
    margin: 0 auto;
  }

  .sound-small-set-point__title {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 20px;
    white-space: nowrap;
  }

  .sound-small-set-point__text {
    margin: 10px 0 0;
    font-size: 10px;
    line-height: 20px;
    white-space: nowrap;
  }

  /* 機材画像 */

  .sound-small-set__image {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    order: 5;
    display: block;
    width: 328px;
    height: 246px;
    margin: 20px auto 0;
    object-fit: contain;
    object-position: center;
  }

  /* セット内容 */

  .sound-small-set__details {
    order: 6;
    align-self: center;
    width: 370px;
    margin: 2px auto 0;
  }

  .sound-small-set__details-heading {
    display: flex;
    align-items: center;
    gap: 17px;
  }

  .sound-small-set__details-heading h3 {
    font-size: 13.282px;
    line-height: 16.602px;
  }

  .sound-small-set__details-heading span {
    width: auto;
    height: 1px;
    flex: 1;
  }

  .sound-small-set__list {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: repeat(3, 20px);
    grid-auto-flow: column;
    justify-content: space-between;
    width: 370px;
    margin: 11px auto 0;
    row-gap: 10px;
  }

  .sound-small-set__list li {
    padding: 0;
    font-size: 13.282px;
    line-height: 16.602px;
    white-space: nowrap;
  }

  .sound-small-set__list li:nth-child(n + 4) {
    padding-left: 0;
  }

  .sound-small-set__list img {
    width: 12.452px;
    height: 12.452px;
    margin-right: 7px;
  }

  /* 料金 */

  .sound-small-set__price {
    order: 7;
    display: grid;
    grid-template-columns: 125px 1fr;
    grid-template-rows: 52px 35px;
    align-items: center;
    width: 370px;
    height: 104px;
    margin: 16px auto 0;
    padding: 9px 10px;
    border: 1px solid #011f50;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .sound-small-set__price-label {
    grid-column: 1;
    grid-row: 1;
    width: 125px;
    height: 46px;
    margin: 0;
    border-radius: 5px;
    font-size: 16px;
    line-height: 20px;
  }

  .sound-small-set__price-value {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0;
  }

  .sound-small-set__price-value span {
    font-size: 24px;
    line-height: 20px;
  }

  .sound-small-set__price-value strong {
    font-size: 40px;
    line-height: 40px;
  }

  .sound-small-set__price-value small {
    margin-left: 4px;
    font-size: 14px;
    line-height: 20px;
  }

  .sound-small-set__notes {
    grid-column: 1 / 3;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 16.602px;
  }

  .sound-small-set__notes p {
    margin: 0;
  }
}

/* =========================
   Wireless System
========================= */

.sound-wireless {
  position: relative;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-wireless::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(1280px, calc(100% - 40px));
  height: 1px;
  background-color: #d9d9d9;
  transform: translateX(-50%);
}

.sound-wireless__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 464px;
  margin: 0 auto;
}

/* 左側 */

.sound-wireless__content {
  position: absolute;
  top: 95px;
  left: 50px;
  width: 707px;
}

.sound-wireless__lead {
  margin: 0 0 15px 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}

.sound-wireless__lead span {
  font-weight: 900;
  color: #ff440f;
}

.sound-wireless__title {
  width: 482.5px;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #012050;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 47px;
  color: #000;
  white-space: nowrap;
}

.sound-wireless__text {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  color: #000;
}

.sound-wireless__text p {
  margin: 0;
  white-space: nowrap;
}

/* 料金 */

.sound-wireless__price {
  display: flex;
  align-items: center;
  width: 391px;
  height: 67px;
  margin-top: 16px;
  padding: 0 11px;
  border: 1px solid #011f50;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-wireless__price-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 46px;
  margin: 0;
  border-radius: 5px;
  background-color: #011f50;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
}

.sound-wireless__price-value {
  display: flex;
  align-items: baseline;
  margin: 0 0 0 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.sound-wireless__price-value span {
  font-size: 24px;
  line-height: 1;
}

.sound-wireless__price-value strong {
  font-size: 40px;
  line-height: 1;
}

.sound-wireless__price-value small {
  margin-left: 4px;
  font-size: 14px;
  line-height: 1;
}

/* 右側画像 */

.sound-wireless__visual {
  position: absolute;
  top: 72px;
  left: 732px;
  width: 355px;
}

.sound-wireless__image {
  display: block;
  width: 355px;
  height: 355px;
  object-fit: contain;
}

.sound-wireless__note {
  margin: 11px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  color: #000;
  text-align: center;
  white-space: nowrap;
}
/* =========================
   Wireless System SP
========================= */

@media screen and (max-width: 767px) {
  .sound-wireless {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #d9d9d9;
  }

  .sound-wireless__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 393px;
    height: auto;
    margin: 0 auto;
    padding: 0 10px 44px;
    box-sizing: border-box;
  }

  /* 見出し・説明文 */

  .sound-wireless__content {
    display: contents;
  }

  .sound-wireless__lead {
    order: 1;
    width: 100%;
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
  }

  .sound-wireless__title {
    order: 2;
    width: 100%;
    margin: 10px 0 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #012050;
    font-size: 30px;
    font-weight: 500;
    line-height: 34px;
    white-space: nowrap;
  }

  .sound-wireless__text {
    order: 3;
    width: 100%;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .sound-wireless__text p {
    margin: 0;
    white-space: normal;
  }

  /* 商品画像 */

  .sound-wireless__visual {
    display: contents;
  }

  .sound-wireless__image {
    order: 4;
    display: block;
    width: 355px;
    height: 355px;
    margin: 7px auto 0;
    object-fit: contain;
  }

  .sound-wireless__note {
    order: 5;
    width: 100%;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
  }

  /* 料金 */

  .sound-wireless__price {
    order: 6;
    display: flex;
    align-items: center;
    width: 368px;
    height: 67px;
    margin: 28px auto 0;
    padding: 0 10px;
    border: 1px solid #011f50;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .sound-wireless__price-label {
    width: 120px;
    height: 46px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 5px;
    font-size: 16px;
    line-height: 20px;
  }

  .sound-wireless__price-value {
    display: flex;
    align-items: baseline;
    margin: 0 0 0 22px;
  }

  .sound-wireless__price-value span {
    font-size: 24px;
    line-height: 20px;
  }

  .sound-wireless__price-value strong {
    font-size: 40px;
    line-height: 40px;
  }

  .sound-wireless__price-value small {
    margin-left: 4px;
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 374px) {
  .sound-wireless__title {
    font-size: 28px;
  }

  .sound-wireless__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .sound-wireless__price {
    width: 100%;
  }

  .sound-wireless__price-value {
    margin-left: 15px;
  }

  .sound-wireless__price-value strong {
    font-size: 36px;
  }
}

/* =========================
   Portable Sound Equipment
========================= */

.sound-portable {
  width: 100%;
  padding: 36px 20px;
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-portable__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 414px;
  margin: 0 auto;
}

/* 左側コンテンツ */

.sound-portable__content {
  position: absolute;
  top: 0;
  left: 50px;
  width: 546px;
}

.sound-portable__lead {
  width: 270px;
  height: 24px;
  margin: 0 0 15px 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
  white-space: nowrap;
}

.sound-portable__title {
  width: 482.5px;
  margin: 0;
  padding: 0 0 15px 2px;
  border-bottom: 2px solid #012050;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 40px;
  color: #000;
  white-space: nowrap;
  box-sizing: border-box;
}

.sound-portable__title strong {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 6.4px;
  color: #012050;
}

.sound-portable__title span {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0;
}

/* 特徴リスト */

.sound-portable__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 24px 0 0 2px;
  padding: 0;
  list-style: none;
}

.sound-portable__list li {
  display: flex;
  align-items: center;
  min-height: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  white-space: nowrap;
}

.sound-portable__list img {
  display: block;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

/* レンタル料金 */

.sound-portable__price {
  display: flex;
  align-items: center;
  width: 391px;
  height: 67px;
  margin-top: 24px;
  padding: 0 11px;
  border: 1px solid #011f50;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-portable__price-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 46px;
  margin: 0;
  border-radius: 5px;
  background-color: #011f50;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.sound-portable__price-value {
  display: flex;
  align-items: baseline;
  margin: 0 0 0 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.sound-portable__price-value span {
  font-size: 24px;
  line-height: 20px;
}

.sound-portable__price-value strong {
  font-size: 40px;
  line-height: 40px;
}

.sound-portable__price-value small {
  margin-left: 4px;
  font-size: 14px;
  line-height: 20px;
}

/* 右側 */

.sound-portable__visual {
  position: absolute;
  top: 0;
  left: 607px;
  display: flex;
  align-items: flex-start;
}

/* 本体画像 */

.sound-portable__product {
  width: 258px;
}

.sound-portable__image {
  display: block;
  width: 198px;
  height: 360px;
  margin: 0 auto;
  object-fit: contain;
}

.sound-portable__note {
  margin: 15px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

/* 右側4項目 */

.sound-portable__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 330px;
  margin: 18px 0 0 12px;
}

.sound-portable-feature {
  display: flex;
  align-items: center;
  min-height: 73px;
}

.sound-portable-feature__icon {
  display: block;
  width: 69px;
  height: 73px;
  object-fit: contain;
  flex-shrink: 0;
}

.sound-portable-feature__text {
  margin: 0 0 0 28px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #012050;
  white-space: nowrap;
}
/* =========================
   Portable Sound Equipment SP
========================= */

@media screen and (max-width: 767px) {
  .sound-portable {
    width: 100%;
    padding: 0;
  }

  .sound-portable__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 393px;
    height: auto;
    margin: 0 auto;
    padding: 42px 0 44px;
    box-sizing: border-box;
  }

  /* 並び替え用 */

  .sound-portable__content,
  .sound-portable__visual,
  .sound-portable__product {
    display: contents;
  }

  /* 見出し */

  .sound-portable__lead {
    order: 1;
    width: 270px;
    height: 24px;
    margin: 0 0 15px 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
  }

  .sound-portable__title {
    order: 2;
    width: calc(100% - 25px);
    margin: 0 10px 0 15px;
    padding: 0 0 15px;
    border-bottom: 2px solid #012050;
    line-height: 40px;
    box-sizing: border-box;
  }

  .sound-portable__title strong {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 6.4px;
  }

  .sound-portable__title span {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
  }

  /* PC側の説明リストはSPでは非表示 */

  .sound-portable__list {
    order: 6;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: calc(100% - 30px);
    margin: 25px 15px 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
  }

  .sound-portable__list li {
    display: flex;
    align-items: flex-start;
    min-height: 20px;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
  }

  .sound-portable__list img {
    width: 15px;
    height: 15px;
    margin: 3px 6px 0 0;
    flex-shrink: 0;
  }

  /* 本体画像 */

  .sound-portable__image {
    order: 3;
    display: block;
    width: 198px;
    height: 360px;
    margin: 26px auto 0;
    object-fit: contain;
  }

  .sound-portable__note {
    order: 4;
    width: 100%;
    margin: 15px 0 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
  }

  /* 4つの特徴 */

  .sound-portable__features {
    order: 5;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: calc(100% - 116px);
    margin: 25px 28px 0;
  }

  .sound-portable-feature {
    display: grid;
    grid-template-columns: 69px 1fr;
    column-gap: 41px;
    align-items: center;
    width: 100%;
    min-height: 73px;
  }

  .sound-portable-feature__icon {
    display: block;
    width: 69px;
    height: 73px;
    object-fit: contain;
  }

  .sound-portable-feature__text {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #012050;
    white-space: nowrap;
  }

  /* レンタル料金 */

  .sound-portable__price {
    order: 7;
    display: flex;
    align-items: center;
    width: min(368px, calc(100% - 20px));
    height: 67px;
    margin: 30px auto 0;
    padding: 0 10px;
    border: 1px solid #011f50;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .sound-portable__price-label {
    width: 120px;
    height: 46px;
    flex-shrink: 0;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .sound-portable__price-value {
    display: flex;
    align-items: baseline;
    margin: 0 0 0 22px;
  }

  .sound-portable__price-value span {
    font-size: 24px;
    line-height: 20px;
  }

  .sound-portable__price-value strong {
    font-size: 40px;
    line-height: 40px;
  }

  .sound-portable__price-value small {
    margin-left: 4px;
    font-size: 14px;
    line-height: 20px;
  }
}

/* =========================
   LED Light Rental
========================= */

.sound-light {
  width: 100%;
  padding: 60px 20px;
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-light__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 680px;
  margin: 0 auto;
}

/* レンタルOKラベル */

.sound-light__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 412px;
  height: 41px;
}

.sound-light__label img {
  display: block;
  width: 412px;
  height: 41px;
}

.sound-light__label p {
  position: absolute;
  top: 50%;
  left: 50px;
  width: 330px;
  margin: 0;
  transform: translateY(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* 左側 */

.sound-light__content {
  position: absolute;
  top: 78px;
  left: 50px;
  width: 550px;
}

.sound-light__title {
  margin: 0;
  color: #011f50;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.sound-light__title-small {
  margin-left: 5px;
  font-size: 40px;
}

.sound-light__title span {
  font-size: 40px;
}

/* 説明文 */

.sound-light__text {
  margin-top: 35px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  color: #000;
}

.sound-light__text p {
  margin: 0;
  white-space: nowrap;
}

/* レンタル料金 */

.sound-light__price {
  display: flex;
  align-items: center;
  width: 391px;
  height: 67px;
  margin-top: 25px;
  padding: 0 10px;
  border: 1px solid #011f50;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.sound-light__price-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 46px;
  margin: 0;
  border-radius: 5px;
  background-color: #011f50;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.sound-light__price-value {
  display: flex;
  align-items: baseline;
  margin: 0 0 0 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.sound-light__price-value span {
  font-size: 24px;
  line-height: 20px;
}

.sound-light__price-value strong {
  font-size: 40px;
  line-height: 40px;
}

.sound-light__price-value small {
  margin-left: 4px;
  font-size: 14px;
  line-height: 20px;
}

/* セット内容 */

.sound-light__set {
  margin: 25px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}

/* 右側画像 */

.sound-light__visual {
  position: absolute;
  top: 0;
  right: 67px;
  width: 609px;
}

.sound-light__image {
  display: block;
  width: 609px;
  height: 669px;
  object-fit: contain;
}

.sound-light__pc-only {
  display: inline;
}

/* =========================
   LED Light Rental SP
========================= */

@media screen and (max-width: 767px) {
  .sound-light {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .sound-light__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 393px;
    height: auto;
    margin: 0 auto;
    padding: 50px 0 70px;
    box-sizing: border-box;
  }

  /* SPで要素を並び替える */

  .sound-light__content,
  .sound-light__visual {
    display: contents;
  }

  /* 上部ラベル */

  .sound-light__label {
    position: relative;
    top: auto;
    left: auto;
    order: 1;
    width: 100%;
    height: 41px;
  }

  .sound-light__label img {
    display: block;
    width: 100%;
    height: 41px;
  }

  .sound-light__label p {
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(100% - 40px);
    margin: 0;
    transform: translateY(-50%);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
  }

  /* 見出し */

  .sound-light__title {
    order: 2;
    width: calc(100% - 30px);
    margin: 16px 15px 0;
    color: #011f50;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .sound-light__title .sound-light__title-small {
    margin-left: 2px;
    font-size: 25px;
    font-weight: 700;
  }

  /* 説明文 */

  .sound-light__text {
    order: 3;
    width: 365px;
    margin: 17px 15px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    white-space: normal;
  }

  .sound-light__text p {
    display: block;
    margin: 0;
    white-space: normal;
  }

  .sound-light__pc-only {
    display: none;
  }

  /* 照明画像 */

  .sound-light__image {
    order: 4;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 395 / 434;
    margin-top: 13px;
    object-fit: cover;
  }

  /* レンタル料金 */

  .sound-light__price {
    order: 5;
    display: flex;
    align-items: center;
    width: calc(100% - 30px);
    height: 67px;
    margin: 26px 15px 0;
    padding: 0 10px;
    border: 1px solid #011f50;
    border-radius: 10px;
    background-color: #fff;
    box-sizing: border-box;
  }

  .sound-light__price-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 46px;
    margin: 0;
    border-radius: 5px;
    background-color: #011f50;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .sound-light__price-value {
    display: flex;
    align-items: baseline;
    margin: 0 0 0 20px;
    color: #000;
    white-space: nowrap;
  }

  .sound-light__price-value span {
    font-size: 24px;
    line-height: 20px;
  }

  .sound-light__price-value strong {
    font-size: 40px;
    line-height: 40px;
  }

  .sound-light__price-value small {
    margin-left: 4px;
    font-size: 14px;
    line-height: 20px;
  }

  /* セット内容 */

  .sound-light__set {
    order: 6;
    width: calc(100% - 40px);
    margin: 25px 20px 0;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }
}

/* =========================
   Instrument Rental
========================= */

.sound-instrument {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
}

.sound-instrument__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0 20px;
  box-sizing: border-box;
}

/* 楽器レンタルOK！ */

.sound-instrument__heading {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  margin-bottom: 70px;
}

.sound-instrument__heading::before,
.sound-instrument__heading::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #ff440f;
  flex: 1;
  min-width: 0;
}

.sound-instrument__heading p {
  margin: 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 楽器共通 */

.sound-instrument__item {
  position: relative;
  width: 100%;
  margin-top: 80px;
  padding-top: 21px;
  border-top: 1px solid #d9d9d9;
  box-sizing: border-box;
}

.sound-instrument__item:first-of-type {
  margin-top: 0;
}

/* 4カテゴリをPCで左右2カラムにする */

.sound-instrument__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 70px;
  row-gap: 43px;
  width: 100%;
}

/* 各カテゴリ */

.sound-instrument__item {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

/* オレンジラベル */

.sound-instrument__category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 247px;
  height: 43px;
  margin: 0;
  padding: 0 20px;
  background-color: #ff440f;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
}

/* ドラム・ギター・ベース */

.sound-instrument__body {
  position: relative;
  display: block;
  width: 100%;
  min-height: 250px;
  padding: 27px 0 0;
  box-sizing: border-box;
}

.sound-instrument__info {
  position: relative;
  z-index: 2;
  width: 100%;
}

.sound-instrument__name {
  margin: 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
}

.sound-instrument__description {
  margin: 10px 0 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

/* 商品画像 */

.sound-instrument__visual {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DRUM SET */
.sound-instrument__item--drum .sound-instrument__description {
  width: 321px;
  height: 110px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 137.5% */
}

.sound-instrument__item--drum .sound-instrument__name {
  margin: 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.sound-instrument__item--drum .sound-instrument__name-main {
  display: block;
  font-size: 40px;
  line-height: 1;
}

.sound-instrument__item--drum .sound-instrument__name-model {
  display: block;
  margin-top: 5px;
  font-size: 32px;
  line-height: 1;
}

/* GUITAR AMP */
.sound-instrument__item--guitar .sound-instrument__description {
  width: 357px;
  height: 101px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 137.5% */
}

/* BASS AMP */
.sound-instrument__item--bass .sound-instrument__description {
  width: 359px;
  height: 67px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 156.25% */
}

/* 料金 */

.sound-instrument__price {
  display: flex;
  align-items: center;
  width: 370px;
  height: 60px;
  margin-top: 18px;
  padding: 0 15px;
  border-radius: 5px;
  background-color: #e8e8e8;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  box-sizing: border-box;
  white-space: nowrap;
}

.sound-instrument__price::before {
  content: "■ レンタル料金";
  margin-right: 28px;
  font-size: 16px;
  line-height: 1;
}

/* ￥：数字の下側に合わせる */
.sound-instrument__price-yen {
  align-self: flex-end;
  margin-bottom: 13px;
  margin-right: 8px;
  font-size: 24px;
  line-height: 1;
}

/* 金額：料金枠の中央 */
.sound-instrument__price strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  transform: none;
}

/* 税別：数字の下側に合わせる */
.sound-instrument__price small {
  align-self: flex-end;
  margin: 0 0 13px 5px;
  font-size: 14px;
  line-height: 1;
}

/* 電子ピアノの料金枠 */

.sound-instrument__piano-item .sound-instrument__price {
  position: relative;
  z-index: 2;
  width: 370px;
  height: 45px;
  margin-top: 5px;
}

.sound-instrument__piano-item .sound-instrument__price strong {
  font-size: 32px;
}

/* 高さ45pxに合わせて下側の位置を調整 */
.sound-instrument__piano-item .sound-instrument__price-yen {
  margin-bottom: 6px;
}

.sound-instrument__piano-item .sound-instrument__price small {
  margin-bottom: 6px;
}

/* DRUM SET */
.sound-instrument__item--drum .sound-instrument__visual {
  top: 0;
  right: -20px;
  left: auto;
  width: 358px;
  height: 268px;
  aspect-ratio: 179 / 134;
}

.sound-instrument__item--drum .sound-instrument__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* GUITAR AMP */

.sound-instrument__item--guitar .sound-instrument__visual {
  top: -20px;
  right: 0;
  width: 269px;
  height: 269px;
  aspect-ratio: 1/1;
}

.sound-instrument__item--guitar .sound-instrument__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sound-instrument__item--guitar .sound-instrument__price {
  margin-top: 10px;
}

/* BASS AMP */

.sound-instrument__item--bass .sound-instrument__visual {
  top: -15px;
  right: 0;
  width: 234px;
  height: 234px;
  aspect-ratio: 1/1;
}

.sound-instrument__item--bass .sound-instrument__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sound-instrument__item--bass .sound-instrument__price {
  margin-top: 32px;
}

/* ELECTRIC PIANO */

.sound-instrument__item--piano {
  min-width: 0;
}

.sound-instrument__piano-description {
  display: none;
}

.sound-instrument__piano-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin: 4px 0 0;
}

.sound-instrument__piano-item {
  position: relative;
  min-height: 115px;
  padding-top: 0;
}

.sound-instrument__piano-name {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
}

.sound-instrument__piano-name::after {
  content: "88鍵ステージピアノ・シンセサイザー。";
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
}

/* =========================
   ELECTRIC PIANO 共通
========================= */

.sound-instrument__piano-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin: 4px 0 0;
}

.sound-instrument__piano-item {
  position: relative;

  /* 絶対配置された画像同士が重ならない高さを確保 */
  min-height: 150px;
}

.sound-instrument__piano-visual {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 329px;
  height: 187px;
  aspect-ratio: 95 / 54;
}

.sound-instrument__piano-visual img {
  display: block;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================
   YAMAHA S90ES
========================= */

.sound-instrument__piano-visual--yamaha {
  top: -50px;
  right: 0;
  width: 329px;
  height: 187px;
  aspect-ratio: 95 / 54;
  z-index: 1;
}

.sound-instrument__piano-visual--yamaha img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================
   ROLAND RD-700
========================= */

.sound-instrument__piano-visual--roland {
  top: -50px;
  right: -30px;
  width: 400px;
  height: 187px;
  aspect-ratio: auto;
  z-index: 1;
}

.sound-instrument__piano-visual--roland img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: scale(0.85);
  transform-origin: center;
}

.sound-instrument__piano-visual--yamaha,
.sound-instrument__piano-visual--roland {
  z-index: 1;
}

.sound-instrument__piano-description--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sound-instrument__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 0;
  }

  .sound-instrument__item,
  .sound-instrument__item--drum,
  .sound-instrument__item--guitar,
  .sound-instrument__item--bass,
  .sound-instrument__item--piano {
    grid-column: 1;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  /* HTMLの順番どおりに固定 */
  .sound-instrument__item--drum {
    order: 1;
  }

  .sound-instrument__item--guitar {
    order: 2;
  }

  .sound-instrument__item--bass {
    order: 3;
  }

  .sound-instrument__item--piano {
    order: 4;
  }

  /* =========================
     DRUM・GUITAR・BASS 共通
  ========================= */

  /* オレンジのカテゴリ見出し */

  .sound-instrument__item--drum .sound-instrument__category,
  .sound-instrument__item--guitar .sound-instrument__category,
  .sound-instrument__item--bass .sound-instrument__category {
    width: 247px;
    height: 43px;
    margin: 20px auto 0;
    padding: 7px 50px;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
  }

  /* 商品部分を縦積み */

  .sound-instrument__item--drum .sound-instrument__body,
  .sound-instrument__item--guitar .sound-instrument__body,
  .sound-instrument__item--bass .sound-instrument__body {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 33px;
    padding-top: 0;
  }

  .sound-instrument__item--drum .sound-instrument__info,
  .sound-instrument__item--guitar .sound-instrument__info,
  .sound-instrument__item--bass .sound-instrument__info {
    display: contents;
  }

  /* 商品名 */

  .sound-instrument__item--drum .sound-instrument__name,
  .sound-instrument__item--guitar .sound-instrument__name,
  .sound-instrument__item--bass .sound-instrument__name {
    position: static;
    order: 1;
    width: 100%;
    margin: 0;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
  }

  .sound-instrument__item--drum .sound-instrument__name-main,
  .sound-instrument__item--drum .sound-instrument__name-model,
  .sound-instrument__item--guitar .sound-instrument__name-main,
  .sound-instrument__item--guitar .sound-instrument__name-model,
  .sound-instrument__item--bass .sound-instrument__name-main,
  .sound-instrument__item--bass .sound-instrument__name-model {
    display: block;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
  }

  /* 商品画像 */

  .sound-instrument__item--drum .sound-instrument__visual,
  .sound-instrument__item--guitar .sound-instrument__visual,
  .sound-instrument__item--bass .sound-instrument__visual {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 356px;
    max-width: 100%;
    height: 267px;
    margin: 8px auto 0;
    aspect-ratio: 4 / 3;
  }

  .sound-instrument__item--drum .sound-instrument__visual img,
  .sound-instrument__item--guitar .sound-instrument__visual img,
  .sound-instrument__item--bass .sound-instrument__visual img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    transform: none;
  }

  /* 説明文 */

  .sound-instrument__item--drum .sound-instrument__description,
  .sound-instrument__item--guitar .sound-instrument__description,
  .sound-instrument__item--bass .sound-instrument__description {
    position: static;
    order: 3;
    width: 371px;
    max-width: 100%;
    min-height: 110px;
    margin: 0 auto;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    box-sizing: border-box;
  }

  /* 料金枠 */

  .sound-instrument__item--drum .sound-instrument__price,
  .sound-instrument__item--guitar .sound-instrument__price,
  .sound-instrument__item--bass .sound-instrument__price {
    position: relative;
    z-index: 2;
    order: 4;
    display: flex;
    align-items: center;
    width: 370px;
    max-width: 100%;
    height: 60px;
    margin: 8px auto 0;
    padding: 0 20px;
    border-radius: 5px;
    background-color: #e8e8e8;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .sound-instrument__item--drum .sound-instrument__price::before,
  .sound-instrument__item--guitar .sound-instrument__price::before,
  .sound-instrument__item--bass .sound-instrument__price::before {
    content: "■ レンタル料金";
    flex-shrink: 0;
    margin-right: 28px;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
  }

  .sound-instrument__item--drum .sound-instrument__price-yen,
  .sound-instrument__item--guitar .sound-instrument__price-yen,
  .sound-instrument__item--bass .sound-instrument__price-yen {
    align-self: flex-end;
    flex-shrink: 0;
    margin: 0 8px 10px 0;
    font-size: 24px;
    line-height: 1;
  }

  .sound-instrument__item--drum .sound-instrument__price strong,
  .sound-instrument__item--guitar .sound-instrument__price strong,
  .sound-instrument__item--bass .sound-instrument__price strong {
    display: block;
    flex-shrink: 0;
    margin: 0;
    font-size: 32px;
    line-height: 1;
    transform: none;
  }

  .sound-instrument__item--drum .sound-instrument__price small,
  .sound-instrument__item--guitar .sound-instrument__price small,
  .sound-instrument__item--bass .sound-instrument__price small {
    align-self: flex-end;
    flex-shrink: 0;
    margin: 0 0 10px 5px;
    font-size: 16px;
    line-height: 1;
  }

  /* =========================
     SP 全体
  ========================= */

  .sound-instrument {
    width: 100%;
    overflow: hidden;
  }

  .sound-instrument__inner {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* =========================
     楽器レンタルOK
  ========================= */

  .sound-instrument__heading {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
    overflow: visible;
  }

  .sound-instrument__heading p {
    width: auto;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    white-space: nowrap;
  }

  /* =========================
     カテゴリー
  ========================= */

  .sound-instrument__item--drum .sound-instrument__category,
  .sound-instrument__item--guitar .sound-instrument__category,
  .sound-instrument__item--bass .sound-instrument__category {
    width: 247px;
    height: 43px;
    margin: 20px 0 0;
    padding: 7px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
  }

  /* 商品名・説明文も左寄せ */

  .sound-instrument__item--drum .sound-instrument__body,
  .sound-instrument__item--guitar .sound-instrument__body,
  .sound-instrument__item--bass .sound-instrument__body {
    align-items: flex-start;
  }

  .sound-instrument__item--drum .sound-instrument__name,
  .sound-instrument__item--guitar .sound-instrument__name,
  .sound-instrument__item--bass .sound-instrument__name,
  .sound-instrument__item--drum .sound-instrument__description,
  .sound-instrument__item--guitar .sound-instrument__description,
  .sound-instrument__item--bass .sound-instrument__description {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  /* =========================
     レンタル料金
  ========================= */

  .sound-instrument__item--drum .sound-instrument__price,
  .sound-instrument__item--guitar .sound-instrument__price,
  .sound-instrument__item--bass .sound-instrument__price {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    margin: 8px 0 0;
    padding: 0 18px;
    box-sizing: border-box;
  }

  /* 「■ レンタル料金」は縦中央 */

  .sound-instrument__item--drum .sound-instrument__price::before,
  .sound-instrument__item--guitar .sound-instrument__price::before,
  .sound-instrument__item--bass .sound-instrument__price::before {
    align-self: center;
    flex-shrink: 0;
    margin-right: auto;
    font-size: 16px;
    line-height: 1;
  }

  /* ￥だけ数字の下側に合わせる */

  .sound-instrument__item--drum .sound-instrument__price-yen,
  .sound-instrument__item--guitar .sound-instrument__price-yen,
  .sound-instrument__item--bass .sound-instrument__price-yen {
    align-self: flex-end;
    flex-shrink: 0;
    margin: 0 8px 16px 0;
    font-size: 24px;
    line-height: 1;
  }

  /* 金額は縦中央 */

  .sound-instrument__item--drum .sound-instrument__price strong,
  .sound-instrument__item--guitar .sound-instrument__price strong,
  .sound-instrument__item--bass .sound-instrument__price strong {
    align-self: center;
    flex-shrink: 0;
    margin: 0;
    font-size: 32px;
    line-height: 1;
    transform: none;
  }

  /* （税別）だけ数字の下側に合わせる */

  .sound-instrument__item--drum .sound-instrument__price small,
  .sound-instrument__item--guitar .sound-instrument__price small,
  .sound-instrument__item--bass .sound-instrument__price small {
    align-self: flex-end;
    flex-shrink: 0;
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1;
  }

  .sound-instrument__item--guitar,
  .sound-instrument__item--bass {
    margin-top: 40px;
  }

  .sound-instrument__item--bass .sound-instrument__visual {
    width: 234px;
    height: 234px;
    aspect-ratio: 1 / 1;
    margin-right: auto;
    margin-left: auto;
  }

  .sound-instrument__item--bass .sound-instrument__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .sound-instrument__item--bass .sound-instrument__description {
    min-height: 0;
    margin-top: 29px;
    margin-bottom: 0;
  }

  .sound-instrument__item--bass .sound-instrument__price {
    margin-top: 8px;
  }

  /* =========================
     SP ELECTRIC PIANO
  ========================= */

  .sound-instrument__item--piano {
    display: block;
    width: 100%;
    margin-top: 40px;
  }

  /* 赤いカテゴリーラベル */

  .sound-instrument__item--piano .sound-instrument__category {
    width: 247px;
    height: 43px;
    margin: 20px 0 0;
    padding: 7px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
  }

  /* 共通説明文 */

  .sound-instrument__piano-description {
    position: static;
    width: 100%;
    margin: 25px 0 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    text-align: left;
  }

  /* YAMAHAとROLANDを縦積み */

  .sound-instrument__piano-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 35px;
    gap: 52px;
  }

  .sound-instrument__piano-item {
    position: static;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  /* 商品名 */

  .sound-instrument__piano-name {
    position: static;
    order: 1;
    width: 100%;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
  }

  /* 料金枠 */

  .sound-instrument__piano-item .sound-instrument__price {
    position: static;
    order: 2;
    display: flex;
    align-items: center;
    width: 370px;
    max-width: 100%;
    height: 60px;
    margin: 29px 0 0;
    padding: 0 18px;
    border-radius: 5px;
    background-color: #e8e8e8;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .sound-instrument__piano-item .sound-instrument__price::before {
    content: "■ レンタル料金";
    align-self: center;
    flex-shrink: 0;
    margin-right: auto;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }

  .sound-instrument__piano-item .sound-instrument__price-yen {
    align-self: flex-end;
    flex-shrink: 0;
    margin: 0 8px 15px 0;
    font-size: 24px;
    line-height: 1;
  }

  .sound-instrument__piano-item .sound-instrument__price strong {
    align-self: center;
    flex-shrink: 0;
    margin: 0;
    font-size: 32px;
    line-height: 1;
    transform: none;
  }

  .sound-instrument__piano-item .sound-instrument__price small {
    align-self: flex-end;
    flex-shrink: 0;
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1;
  }

  /* 画像を各商品の一番下に配置 */

  .sound-instrument__piano-visual,
  .sound-instrument__piano-visual--yamaha,
  .sound-instrument__piano-visual--roland {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 329px;
    max-width: 100%;
    height: 187px;
    margin: 29px auto 0;
    transform: none;
  }

  .sound-instrument__piano-visual img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    transform: none;
  }

  .sound-instrument__piano-visual--yamaha {
    position: relative;
    order: 2;
    width: 100%;
    height: 150px;
    margin: 0;
    overflow: visible;
  }

  .sound-instrument__piano-visual--yamaha img {
    position: absolute;
    left: 50%;
    bottom: 5px; /* 画像内の下側の白余白を外へ逃がす */
    width: 329px;
    max-width: none;
    height: auto;
    object-fit: initial;
    transform: translateX(-50%);
  }

  .sound-instrument__piano-description--sp {
    position: relative;
    z-index: 2;
    order: 3;
    margin: 0;
  }

  .sound-instrument__piano-description--pc {
    display: none;
  }

  .sound-instrument__piano-item:first-child .sound-instrument__price {
    order: 4;
    margin-top: 0;
  }

  .sound-instrument__piano-name::after {
    content: none;
    display: none;
  }

  .sound-instrument__piano-item:first-child .sound-instrument__price {
    order: 4;
    margin-top: 0;
  }

  .sound-instrument__piano-item:first-child
    .sound-instrument__piano-description--sp {
    position: static;
    order: 3;
    display: block !important;
    visibility: visible;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 1;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    color: #000;
    transform: none;
  }

  .sound-instrument__piano-item:first-child .sound-instrument__price {
    order: 4;
    margin-top: 0;
  }

  .sound-instrument__piano-description--sp {
    margin-top: 0;
  }

  .sound-instrument__piano-visual--roland {
    position: relative;
    order: 2;
    width: 100%;
    height: 140px;
    margin: 0;
    overflow: visible;
  }

  .sound-instrument__piano-visual--roland img {
    position: absolute;
    left: 50%;
    bottom: -65px;
    width: 351px;
    max-width: none;
    height: auto;
    object-fit: initial;
    transform: translateX(-50%);
  }

  /* 料金枠を画像より手前に表示 */
  .sound-instrument__piano-item:nth-child(2) .sound-instrument__price {
    position: relative;
    z-index: 2;
    order: 4;
    margin-top: 0;
  }

  .sound-instrument__piano-description--sp {
    position: relative;
    z-index: 2;
    order: 3;
    display: block !important;
    visibility: visible;
    width: 100%;
    margin: 0;
    opacity: 1;
    color: #000;
  }

  .sound-instrument__piano-item:first-child
    .sound-instrument__piano-description--sp {
    margin-top: -10px;
  }

  /* ROLAND：説明文以下を下げる */
  .sound-instrument__piano-item:nth-child(2)
    .sound-instrument__piano-description--sp {
    margin-top: 10px;
  }
}

/* =========================
   ONE STOP SUPPORT
========================= */

.sound-support {
  width: 100%;
  margin: 54px 0 50px;
}

.sound-support__inner {
  display: flex;
  width: min(1278px, calc(100% - 40px));
  height: 242px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #012050;
  background-color: #f4f4f4;
  box-sizing: border-box;
}

/* 左側 */

.sound-support__lead {
  position: relative;
  flex: 0 0 528.5px;
  height: 100%;
}

.sound-support__lead-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.sound-support__lead-content {
  position: relative;
  z-index: 1;
  padding: 25px 19px 19px 25px;
  box-sizing: border-box;
}

.sound-support__heading {
  display: inline-block;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 25px;
}

.sound-support__catch {
  margin: 12px 0 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0;
  white-space: nowrap;
}

.sound-support__catch span {
  color: #e4b007;
  font-size: 40px;
}

/* 右側 */

.sound-support__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0 35px 0 61px;
  list-style: none;
  box-sizing: border-box;
}

.sound-support__item {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
}

.sound-support__item + .sound-support__item {
  margin-top: 30px;
}

.sound-support__item img {
  display: block;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  margin-right: 19px;
  object-fit: contain;
}

.sound-support__item span {
  display: block;
}

/* =========================
   SP ONE STOP SUPPORT
========================= */

@media screen and (max-width: 767px) {
  .sound-support {
    margin-top: 50px;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .sound-support__inner {
    display: block;
    width: 100%;
    max-width: 384px;
    height: 340px;
    margin: 0 auto;
    overflow: hidden;
    border-width: 1px;
  }

  /* 上側 */

  .sound-support__lead {
    width: 100%;
    height: 180px;
    background-color: #012050;
  }

  /* SPでは背景SVGを使わない */
  .sound-support__lead-bg {
    display: none;
  }

  .sound-support__lead-content {
    padding: 15px 15px 12px 24px;
  }

  .sound-support__heading {
    padding-bottom: 4px;
    border-bottom-width: 1.5px;
    font-size: 17.88px;
    line-height: 18.62px;
  }

  .sound-support__catch {
    margin-top: 6px;
    font-size: 26.82px;
    line-height: 37.25px;
  }

  .sound-support__catch span {
    font-size: 29.8px;
  }

  /* 下側 */

  .sound-support__list {
    justify-content: flex-start;
    height: 160px;
    padding: 22px 10px 18px 13px;
  }

  .sound-support__item {
    font-size: 15.09px;
    line-height: 15px;
    white-space: nowrap;
  }

  .sound-support__item + .sound-support__item {
    margin-top: 15.7px;
  }

  .sound-support__item img {
    flex-basis: 15.7px;
    width: 15.7px;
    height: 15.7px;
    margin-right: 12px;
  }
}

/* お仕事日記バナー */

.sound-support__blog {
  display: block;
  width: min(1278px, calc(100% - 40px));
  margin: 60px auto 0;
}

.sound-support__blog img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   SP
========================= */

@media screen and (max-width: 767px) {
  .sound-support__blog {
    width: calc(100% - 10px);
    max-width: 394px;
    margin: 60px auto 0;
  }

  .sound-support__blog img {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .sound-support__blog {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
