@charset "UTF-8";
/* 全体 */
:root{
    --audio-border: #171719;
    --audio-text: #171719;
    --audio-sub: #666;
    --audio-line: #6f6f6f;
    --audio-progress: #2f7f7d;
    --audio-bg: #F7F5F0;
}

.p-articleContant .memo-p:not(blockquote) {
    padding-left: 0 !important;
}

/* 画像 */
figure {
    background: none;
}

.media--type-image {
    padding-left: 0 !important;
}

figure.caption .c-contentFigre {
    margin-bottom: 4px;
}

.caption > figcaption {
    padding: 0;
    font-family: "MFW-PIshiiGothicStdN-R";
    font-weight: 400;
    font-style: normal;
    background: none;
}


/* 動画 */
.embedded-content.type-3 {
    position: relative;
}

/* YouTube iframe をレスポンシブ（16:9）にする */
.embedded-content.type-3 .field--name-field-media-video-embed .field__item {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embedded-content.type-3 .field--name-field-media-video-embed .field__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button.save-memo-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.save-btn-icon {
    width: 32px;
    height: 32px;
}

/* 音声 */
.embedded-content.type-4.memo-embedded {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-areas:
    "thumb title"
    "thumb player";
  column-gap: 26px;
  row-gap: 8px;
  align-items: start;
  padding: 16px 18px 16px 16px;
  border: 1px solid var(--audio-border);

}

/* サムネイル */
.embedded-content.type-4.memo-embedded .audio-thumb {
  grid-area: thumb;
  width: 96px;
}

.embedded-content.type-4.memo-embedded .audio-thumb img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
}

/* タイトル */
.embedded-content.type-4.memo-embedded .audio-info {
  grid-area: title;
  min-width: 0;
  padding-right: 28px;
}

.embedded-content.type-4.memo-embedded .audio-title {
  margin: 0;
  color: var(--audio-text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 右上ブックマーク */
.embedded-content.type-4.memo-embedded .save-memo-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.embedded-content.type-4.memo-embedded .audio-player .ulizahtml5 {
  width: 100% !important;
  max-width: none !important;
  height: 64px !important;
  min-height: 64px !important;
}


/* 電子書籍 */
.embedded-content.type-5.memo-embedded {
  position: relative;
  border: 1px solid var(--audio-border);
  padding: 16px;
}

.embedded-content.type-5.memo-embedded > a {
  display: flex;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  color: #222;
  min-height: 156px;
  padding-right: 34px;
  box-shadow: none;
}

.embedded-content.type-5.memo-embedded .save-memo-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}

.embedded-content.type-5.memo-embedded .save-btn-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.embedded-content.type-5.memo-embedded .ebook-thumb {
  flex: 0 0 270px;
  width: 270px;
  height: 176px;
  background: var(--audio-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.embedded-content.type-5.memo-embedded .ebook-thumb img {
  display: block;
  width: auto;
  max-width: 96px;
  height: 140px;
  object-fit: cover;
  box-shadow: none;
}

.embedded-content.type-5.memo-embedded .ebook-info {
  flex: 1 1 auto;
  min-width: 0;
}

.embedded-content.type-5.memo-embedded .ebook-title {
  margin: 0 0 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #222;
}

.embedded-content.type-5.memo-embedded .ebook-title span {
  display: block;
}

.embedded-content.type-5.memo-embedded .ebook-contributor {
  margin: 0;
}

.embedded-content.type-5.memo-embedded .ebook-contributor .contributor-name {
  margin: 0;
  line-height: 1.4;
  color: var(--audio-text);
}


@media (max-width: 767px) {
  .embedded-content.type-5.memo-embedded {
    padding: 14px;
  }

  .embedded-content.type-5.memo-embedded > a {
    gap: 16px;
    align-items: flex-start;
    min-height: 0;
    padding-right: 30px;
  }

  .embedded-content.type-5.memo-embedded .ebook-thumb {
    flex: 0 0 120px;
    width: 120px;
    height: 140px;
  }

  .embedded-content.type-5.memo-embedded .ebook-thumb img {
    max-width: 72px;
    height: 104px;
  }

  .embedded-content.type-5.memo-embedded .ebook-title {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .embedded-content.type-5.memo-embedded .ebook-contributor .contributor-name {
    font-size: 14px;
    line-height: 1.7;
  }
}