main {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: var(--full-height);
}

.section {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 700px) {
  .footer-view {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 72px;
  }
  .footer {
    width: 100%;
    max-width: 900px;
    padding: 0 24px 24px 24px;
  }
}
@media only screen and (max-width: 700px) {
  .footer-view {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    margin-bottom: 72px;
  }
  .footer {
    width: 100%;
    max-width: 800px;
    padding: 0 24px 24px 24px;
  }
}
.footer a,
.footer p {
  color: var(--color-text-secondary);
  font-size: 11.5px;
  line-height: 110%;
}

@media only screen and (min-width: 700px) {
  .details {
    margin-top: clamp(-120px, -16vmin, -16vmin);
    width: 100%;
    max-width: 900px;
    padding: 24px;
    z-index: 1;
  }
  .details-header {
    width: 100vw;
    height: clamp(200px, 32vmin, 32vmin);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  .details-header img {
    width: 100%;
    display: block;
  }
  .details-header::after {
    content: "";
    width: 100vw;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0), var(--color-fill) 80%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .title-podcast-global {
    font-size: clamp(40px, 2vw, 48px);
    line-height: 110%;
  }
}
@media only screen and (max-width: 700px) {
  .details {
    margin-top: -40px;
    width: 100%;
    padding: 24px 24px 0 24px;
    z-index: 1;
  }
  .details-header {
    width: 100vw;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  .details-header img {
    width: 100%;
    display: block;
  }
  .details-header::after {
    content: "";
    width: 100vw;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0), var(--color-fill));
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .title-podcast-global {
    font-size: 28px;
    line-height: 110%;
    margin-block-end: 8px;
  }
}

.subtitle-podcast-global span {
  font-size: 13px;
  color: var(--color-text-secondary);
}
.details p,
.details details {
  font-size: clamp(13px, 2vw, 16px);
  margin-top: 8px;
}

@media only screen and (min-width: 700px) {
  #trackList {
    width: 100%;
    max-width: 900px;
    padding: 24px;
  }
  .track {
    padding: clamp(10px, 1.5vw, 18px) 0;
    cursor: pointer;
    display: flex;
  }
  .trackList-title {
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--color-text);
    cursor: pointer;
    line-height: 110%;
  }
  .trackList-ep {
    font-size: 18px;
    line-height: 1;
    color: var(--color-text-secondary);
    cursor: pointer;
  }
}

@media only screen and (max-width: 700px) {
  #trackList {
    width: 100%;
    padding: 24px;
  }
  .track:first-child {
    border-top: solid 1px var(--color-text-secondary);
  }
  .track {
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px var(--color-text-secondary);
  }
  .trackList-title {
    font-size: 16px;
    color: var(--color-text);
    cursor: pointer;
    line-height: 110%;
    overflow: scroll;
    text-wrap: nowrap;
  }
  .trackList-ep {
    padding-left: 8px;
    font-size: 12px;
    line-height: 1;
    color: var(--color-text-secondary);
    cursor: pointer;
    text-align: right;
  }
}

/* プレイヤー */

.player-background-mask {
  position: fixed;
  left: 50%;
  width: calc(100% - 48px);
  max-width: 874px;
  height: 58px;
  border-radius: 100px;
  bottom: 16px;
  transform: translate3d(-50%, 0, 0);
  background: var(--color-fill);
  z-index: 777;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
  transition:
    border-radius 0.35s,
    height 0.35s,
    width 0.35s,
    max-width 0.35s,
    bottom 0.3s;
}

.player-close-trigger {
  position: absolute;
  width: 150px;
  height: 32px;
  border-radius: 30px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: 16px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 1s;
}
.player-close-trigger span {
  font-size: 16px;
  font-weight: 700;
}

.player-view {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.player-container {
  width: 100%;
  height: var(--full-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: scroll;
  padding: 0 24px 64px 24px;
}

.player-container .thumbnail-img {
  opacity: 0;
  border-radius: 8px;
  height: clamp(240px, 72vmin, 320px);
  width: clamp(240px, 72vmin, 320px);
  aspect-ratio: auto 100 / 100;
  margin: 0 24px;
  margin-bottom: 32px;
  transform: translateY(32px);
  box-shadow: 0 10px 20px 0 #00000019;
  transition: all 0.3s;
}

@media only screen and (max-height: 500px) {
  .thumbnail-img {
    display: none;
  }
}

.player-container .controll {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seekbar-container {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.3s;
}

.seekbar-container span {
  width: 54px;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
}

.player-track-ep {
  color: var(--color-text-secondary);
  font-size: 13.5px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.3s;
  transition: all 0.3s;
}

.player-track-title {
  max-width: 100%;
  overflow-y: hidden;
  overflow-x: scroll;
  text-wrap: nowrap;
  font-size: 25px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.3s;
}

.player-track-date {
  color: var(--color-text-secondary);
  font-size: 13.5px;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.3s;
}

.playpause-container {
  width: 320px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.3s;
}
.playpause-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.2s;
}

.player-secondary-view {
  position: fixed;
  width: calc(100% - 48px);
  max-width: 876px;
  bottom: 16px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 888;
  transition: all 0.2s;
}
.controll-secondary {
  width: 100%;
  height: 58px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.controll-secondary .container {
  width: 100%;
  border-radius: 100px 0 0 100px;
  padding: 16px 0 16px 24px;
  overflow: scroll;
}
.controll-secondary .container h1 {
  text-wrap: nowrap;
}
.controll-secondary #playPause {
  margin: 16px 18px 16px 16px;
}
.controll-secondary img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.2s;
}

/* シークバーのスタイル */
/*#seekBar {
  display: none;
}*/

.seek-bar {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  margin: 0;
  padding: 0;
  background: var(--color-text-secondary);
  transition: height 0.2s;
  overflow: hidden;
}
.seekbar-fill {
  width: 0;
  height: 100%;
  border-radius: 100px;
  margin: 0;
  background: var(--color-text);
}

/*
input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: #a6a6a6;
  margin: 0;
  transition: height 0.2s;
}

:root {
  --thumb-width: 10%;
  --thumb-height: 18px;
  --thumb-margin: -3;
  --thumb-radius: 100px;
}*/

/* サムのスタイル Webkit */
/*input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: var(--thumb-width);
  height: var(--thumb-height);
  margin-top: var(--thumb-margin);
  background: none;
  box-shadow: none;
  border: none;
}*/

/* サムのスタイル - Firefox */
/*input[type="range"]::-moz-range-thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  margin-top: var(--thumb-margin);
  background: none;
  box-shadow: none;
  border: none;
}*/

/* サムのスタイル - Edge */
/*input[type="range"]::-ms-thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  margin-top: var(--thumb-margin);
  background: none;
  box-shadow: none;
  border: none;
}*/
