.p623-section {
  --p623-bg: #ffffff;
  --p623-text: #111111;
  --p623-panel: #f7f5f3;
  --p623-accent-bar: #ead056;
  --p623-teal: #12d0c8;
  --p623-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background: var(--p623-bg);
  color: var(--p623-text);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  width: 100%;
  min-width: 320px;
  padding: 40px 20px 48px;
  overflow: hidden;
}

.p623-section,
.p623-section *,
.p623-section *::before,
.p623-section *::after {
  box-sizing: border-box;
}

.p623-section h2{
  font-weight: bold;
  margin-top: 0;
}

.p623-section h3{
  margin-top: 20px;
}


.p623-section p {
  margin-top: 40px;
}

.p623-shell {
  width: min(100%, 120rem);
  margin: 0 auto;
}

.p623-header {
  text-align: center;
}

.p623-title-bar {
  width: min(100%, 756px);
  height: 14px;
  margin: 2px auto 0;
  background: rgba(232, 204, 77, 0.82);
}

.p623-title {
  margin: 0;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.05em;
}

.p623-title span {
  color: var(--p623-teal);
}

.p623-intro {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.75;
}

.p623-panel {
  margin-top: 70px;
  padding: 31px 44px 28px;
  border-radius: 4px;
  border: 1px solid #f1ede6;
  background: linear-gradient(180deg, #f8f7f5 0%, #f4f2f0 100%);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.p623-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
}

.p623-card {
  min-height: 412px;
  padding: 21px 14px 38px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: var(--p623-shadow);
  display: grid;
  grid-template-rows: 121px 58px 1fr 40px;
  align-items: start;
  justify-items: center;
}

.p623-icon-wrap {
  position: relative;
  width: 121px;
  height: 121px;
  margin-bottom: 20px;
}

.p623-icon-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f5f4f2;
}

.p623-icon-image {
  position: absolute;
  display: block;
  width: 112%;
  height: 100%;
  object-fit: contain;
}

.p623-card-title {
  margin: 0;
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p623-card--yellow .p623-card-title {
  color: #e8cc4d;
}

.p623-card--blue .p623-card-title {
  color: #4e6bae;
}

.p623-card--teal .p623-card-title {
  color: #1aaba3;
}

.p623-card--orange .p623-card-title {
  color: #ff9d00;
}

.p623-card-text {
  width: 100%;
  margin: 14px 0 10px 0 !important;
  padding: 0 6px;
  font-size: 15px;
  line-height: 1.5;
  
}

.p623-player {
  width: 180px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.p623-player-image {
  display: block;
  width: 142px;
  object-fit: contain;
  pointer-events: none;
}

.p623-player:hover {
  background: #efefef;
}

.p623-player:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.p623-player--playing {
  background: #ece9e5;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08) inset;
  transform: translateY(-1px);
}

.p623-note {
  margin: 16px 7px 0 0;
  font-size: 18px;
  line-height: 1.4;
  text-align: right;
  opacity: 0.7;
}

@media (max-width: 1180px) {
  .p623-panel {
    padding-inline: 24px;
  }
}

@media (max-width: 980px) {
  .p623-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p623-panel {
    margin-top: 48px;
  }
}

@media (max-width: 520px) {
  .p623-section {
    padding: 24px 14px 36px;
  }

  .p623-title-bar {
    width: 87%;
    height: 5px;
    margin-top: 0px;
  }

  .p623-title {
    margin: 0;
    font-size: 17px;
    white-space: nowrap;
  }

  .p623-player-image{
    width: 90%;
  }

  .p623-intro {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  .p623-panel {
    margin-top: 18px;
    padding: 30px 28px 36px;
  }

  .p623-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .p623-card {
    min-height: 103%;
    padding: 22px 22px 23px;
    grid-template-rows: 131px 58px 1fr 40px;
  }

  .p623-section p{
    margin-top: 20px;
  }

  .p623-icon-wrap {
    width: 131px;
    height: 131px;
    margin-bottom: 16px;
  }

  .p623-card-title {
    margin-bottom: 14px;
  }

  .p623-card-text {
    padding: 0;
    font-size: 16px;
    line-height: 1.62;
  }

  .p623-player {
    margin-top: 0;
    width: 100%;
    height: 46px;
  }

  .p623-note {
    margin-top: 18px;
    font-size: 11px;
  }
}
.p623-card {
  overflow: visible;
}

.p623-audio-wrap {
  display: block;
  width: 100%;
  margin-top: 14px;
  overflow: visible;
}

.p623-audio-wrap[hidden] {
  display: none !important;
}

.p623-audio {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  width: 100% !important;
  min-height: 54px !important;
  height: 54px !important;
  max-width: 100%;
  background: #fff;
}