@charset "UTF-8";
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 BASE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/* どこでもOK：bodyでもsectionでも */
.soft-gradient-bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* ベースを明るめに */
  background: #0b1a33;
}

/* 2枚のグラデを交互にフェード */
.soft-gradient-bg::before,
.soft-gradient-bg::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  z-index: 0;
  /* 明るさを上げる：ぼかし弱め + 彩度/明度ちょい上げ */
  filter: blur(14px) saturate(1.12) brightness(1.08);
  transform: translateZ(0);
  opacity: 0.88;
  animation: floaty 10s ease-in-out infinite;
}

/* 青〜エメラルド寄り（明るめ） */
.soft-gradient-bg::before {
  background: radial-gradient(900px 700px at 18% 22%, rgba(81, 177, 255, 0.65), transparent 60%), radial-gradient(900px 700px at 82% 26%, rgba(52, 244, 206, 0.55), transparent 62%), radial-gradient(1000px 900px at 42% 86%, rgba(103, 241, 144, 0.281), transparent 62%), linear-gradient(180deg, #0c2a55 0%, #08162c 100%);
  animation: floaty 10s ease-in-out infinite, fadeA 14s ease-in-out infinite;
}

/* パステル寄り（明るめ） */
.soft-gradient-bg::after {
  background: radial-gradient(900px 700px at 24% 34%, rgba(185, 225, 255, 0.62), transparent 60%), radial-gradient(900px 700px at 76% 28%, rgba(185, 255, 235, 0.5), transparent 62%), radial-gradient(1000px 900px at 52% 86%, rgba(200, 255, 221, 0.34), transparent 62%), linear-gradient(180deg, #0d2b57 0%, #08162c 100%);
  animation: floaty 9s ease-in-out infinite reverse, fadeB 14s ease-in-out infinite;
  opacity: 0.22;
}

/* フェードを速める（24s→14s） */
@keyframes fadeA {
  0%, 46% {
    opacity: 0.9;
  }
  54%, 100% {
    opacity: 0.18;
  }
}
@keyframes fadeB {
  0%, 46% {
    opacity: 0.18;
  }
  54%, 100% {
    opacity: 0.86;
  }
}
/* 漂う動きを速める（22s→10s前後） */
@keyframes floaty {
  0% {
    transform: translate3d(-2.2%, -1.2%, 0) scale(1.03);
  }
  50% {
    transform: translate3d(2.2%, 1.2%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-2.2%, -1.2%, 0) scale(1.03);
  }
}
/* 中身を前に */
.soft-gradient-bg > * {
  position: relative;
  z-index: 1;
}

/* 中身を前に */
.soft-gradient-bg > * {
  position: relative;
  z-index: 1;
}

.hiptune {
  margin: 0;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
.hiptune .hiptune-container {
  position: relative;
  z-index: 2;
}
.hiptune .hiptune-container .bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 0;
}
.hiptune .hiptune-container .bg .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  transform: scale(1);
}
.hiptune .hiptune-container .bg .bg-img.is-on {
  opacity: 1;
}
.hiptune .hiptune-container .bg .bg-img.is-zoom {
  animation: kenburnsZoom 10s ease forwards;
  animation-delay: 0.6s;
}
@keyframes kenburnsZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.hiptune .hiptune-container .bg .bg-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.21) 68%, rgba(0, 0, 0, 0) 100%);
}
.hiptune .hiptune-container .screen {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  max-width: 840px;
  width: 100%;
  margin: 0 auto 0;
}
.hiptune .hiptune-container .screen.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hiptune .hiptune-container .screen .safe {
  position: relative;
  height: 100%;
}
.hiptune .hiptune-container #landing .safe {
  display: flex;
  align-items: center;
  max-width: 90%;
  width: 100%;
  margin: 0 auto 0;
}
.hiptune .hiptune-container #landing .safe .safe-inner {
  width: 100%;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy {
  position: relative;
  width: calc(100% - 76px);
  padding: 0 3rem 0 0;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker {
  opacity: 0.9;
  margin: 0;
  display: flex;
  align-items: center;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: #fff;
  margin: 0 0.5rem 0 0;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker span {
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 66px;
  margin: 6px 0 0;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-desc {
  opacity: 0.95;
  line-height: 1.6;
  margin: 0;
  font-size: 1.3rem;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top .fab {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: none;
  background: #ff2a7a;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.hiptune .hiptune-container #landing .safe .safe-inner .top .fab img {
  width: 34px;
  height: 34px;
}
.hiptune .hiptune-container #landing .safe .safe-inner .landing-points {
  margin: 1.5rem 0 0 0;
  padding: 0;
  list-style-type: none;
}
.hiptune .hiptune-container #landing .safe .safe-inner .landing-points li {
  margin: 0.25rem 0 0 0;
  line-height: 1.5;
  font-size: 1.2rem;
  opacity: 0.85;
}
.hiptune .hiptune-container #landing .safe .safe-inner .landing-points li::before {
  content: "・";
  font-size: 0.8em;
  padding: 0 0.5rem 0 0;
}
.hiptune .hiptune-container #landing .safe .safe-inner .landing-points li #lpImageCount,
.hiptune .hiptune-container #landing .safe .safe-inner .landing-points li #lpTrackCount {
  font-family: "Inter";
  font-weight: 700;
  font-size: 1.3em;
}
.hiptune .hiptune-container #player {
  height: 100%;
}
.hiptune .hiptune-container #player .safe {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hiptune .hiptune-container #player .safe .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
}
.hiptune .hiptune-container #player .safe .topbar .left .chip {
  border: none;
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(255, 42, 122, 0.95);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}
.hiptune .hiptune-container #player .safe .topbar .left .popover {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 64px);
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 8px;
  display: none;
  gap: 6px;
  z-index: 5;
}
.hiptune .hiptune-container #player .safe .topbar .left .popover.is-open {
  display: grid;
}
.hiptune .hiptune-container #player .safe .topbar .left .popover-item {
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  background: rgba(130, 110, 110, 0.08);
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
}
.hiptune .hiptune-container #player .safe .topbar .icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 42, 122, 0.95);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.hiptune .hiptune-container #player .safe .topbar .icon-btn img {
  width: 22px;
  height: 22px;
}
.hiptune .hiptune-container #player .bottom {
  padding: 0 0 5rem 0;
}
.hiptune .hiptune-container #player .bottom .quote {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  padding: 0 1.5rem;
}
.hiptune .hiptune-container #player .bottom .quote .quote-text {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}
.hiptune .hiptune-container #player .bottom .quote .quote-meta {
  margin-top: 6px;
  opacity: 0.9;
  display: flex;
  gap: 10px;
  font-size: 13px;
}
.hiptune .hiptune-container #player .bottom .player-modal {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  padding: 24px 14px 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  transform-origin: right top;
  transition: transform 0.45s ease, opacity 0.45s ease;
  margin: 2rem 0 0 0;
}
.hiptune .hiptune-container #player .bottom .player-modal.is-collapsed {
  transform: translate(40px, -80px) scale(0.12);
  opacity: 0;
  pointer-events: none;
}
.hiptune .hiptune-container #player .bottom .player-modal .modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.hiptune .hiptune-container #player .bottom .player-modal .modal-close img {
  width: 16px;
  height: 16px;
  opacity: 0.95;
}
.hiptune .hiptune-container #player .bottom .player-modal .progress-row {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  gap: 10px;
  align-items: center;
}
.hiptune .hiptune-container #player .bottom .player-modal .progress-row .time {
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
  font-size: 12px;
}
.hiptune .hiptune-container #player .bottom .player-modal .progress-row #timeRemain {
  text-align: right;
}
.hiptune .hiptune-container #player .bottom .player-modal .progress-row .progress {
  width: 100%;
}
.hiptune .hiptune-container #player .bottom .player-modal .track {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
.hiptune .hiptune-container #player .bottom .player-modal .track .track-jacket {
  width: 52px;
  height: 52px;
  border-radius: 0px;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(255, 255, 255, 0.07);
}
.hiptune .hiptune-container #player .bottom .player-modal .track .track-meta .track-title {
  font-weight: 800;
}
.hiptune .hiptune-container #player .bottom .player-modal .track .track-meta .track-artist {
  opacity: 0.8;
  font-size: 13px;
  margin-top: 2px;
}
.hiptune .hiptune-container #player .bottom .player-modal .track .controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn img {
  width: 22px;
  height: 22px;
  opacity: 0.95;
}
.hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn.ctrl-play {
  position: relative;
  width: 56px;
  height: 56px;
}
.hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn.ctrl-play img {
  position: relative;
  width: 24px;
  height: 24px;
}
.hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn .ctrl-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.hiptune .hiptune-container #player .mini-player {
  position: absolute;
  right: 18px;
  bottom: 30%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1.2);
  cursor: pointer;
  z-index: 6;
}
.hiptune .hiptune-container #player .mini-player img {
  width: 22px;
  height: 22px;
  opacity: 0.95;
}
.hiptune .hiptune-container #player .mini-player.is-hidden {
  opacity: 0;
  transform: translateY(10px) scale(0.85);
  pointer-events: none;
}
.hiptune .hiptune-container #player .mini-player {
  /* 表示（ひょこっ） */
}
.hiptune .hiptune-container #player .mini-player.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(小型PC)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .hiptune .hiptune-container .bg {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 0;
  }
  .hiptune .hiptune-container .bg .bg-img {
    transition: opacity 0.6s ease;
    transform: scale(1);
  }
  .hiptune .hiptune-container .bg .bg-img.is-on {
    opacity: 1;
  }
  .hiptune .hiptune-container .bg .bg-img.is-zoom {
    animation: kenburnsZoom 10s ease forwards;
    animation-delay: 0.6s;
  }
  @keyframes kenburnsZoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.1);
    }
  }
  .hiptune .hiptune-container .bg .bg-vignette {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.21) 68%, rgba(0, 0, 0, 0) 100%);
  }
  .hiptune .hiptune-container .screen {
    transition: opacity 0.4s ease;
    max-width: 840px;
    width: 100%;
    margin: 0 auto 0;
  }
  .hiptune .hiptune-container .screen.is-active {
    opacity: 1;
  }
  .hiptune .hiptune-container .screen .safe {
    height: 100%;
  }
  .hiptune .hiptune-container #landing .safe {
    max-width: 90%;
    width: 100%;
    margin: 0 auto 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner {
    width: 100%;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top {
    width: 100%;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy {
    width: calc(100% - 76px);
    padding: 0 3rem 0 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker {
    opacity: 0.9;
    margin: 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker::before {
    content: "";
    width: 3rem;
    height: 1px;
    margin: 0 0.5rem 0 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker span {
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-title {
    letter-spacing: 2px;
    font-size: 66px;
    margin: 6px 0 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-desc {
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
    font-size: 1.3rem;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .fab {
    width: 76px;
    height: 76px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .fab img {
    width: 34px;
    height: 34px;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points {
    margin: 1.5rem 0 0 0;
    padding: 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points li {
    margin: 0.25rem 0 0 0;
    line-height: 1.5;
    font-size: 1.2rem;
    opacity: 0.85;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points li::before {
    content: "・";
    font-size: 0.8em;
    padding: 0 0.5rem 0 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points li #lpImageCount,
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points li #lpTrackCount {
    font-size: 1.3em;
  }
  .hiptune .hiptune-container #player {
    height: 100%;
  }
  .hiptune .hiptune-container #player .safe .topbar {
    margin-top: 26px;
  }
  .hiptune .hiptune-container #player .safe .topbar .left .chip {
    padding: 8px 24px;
    font-size: 15px;
  }
  .hiptune .hiptune-container #player .safe .topbar .left .popover {
    top: calc(env(safe-area-inset-top) + 64px);
    left: 16px;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    gap: 6px;
  }
  .hiptune .hiptune-container #player .safe .topbar .left .popover.is-open {
    display: grid;
  }
  .hiptune .hiptune-container #player .safe .topbar .left .popover-item {
    padding: 8px 24px;
    font-size: 14px;
  }
  .hiptune .hiptune-container #player .safe .topbar .icon-btn {
    width: 44px;
    height: 44px;
  }
  .hiptune .hiptune-container #player .safe .topbar .icon-btn img {
    width: 22px;
    height: 22px;
  }
  .hiptune .hiptune-container #player .bottom {
    padding: 0 0 5rem 0;
  }
  .hiptune .hiptune-container #player .bottom .quote {
    padding: 0 1.5rem;
  }
  .hiptune .hiptune-container #player .bottom .quote .quote-text {
    font-size: 18px;
    line-height: 1.55;
  }
  .hiptune .hiptune-container #player .bottom .quote .quote-meta {
    margin-top: 6px;
    opacity: 0.9;
    gap: 10px;
    font-size: 13px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal {
    backdrop-filter: blur(12px);
    padding: 24px 14px 12px;
    transition: transform 0.45s ease, opacity 0.45s ease;
    margin: 2rem 0 0 0;
  }
  .hiptune .hiptune-container #player .bottom .player-modal.is-collapsed {
    transform: translate(40px, -80px) scale(0.12);
  }
  .hiptune .hiptune-container #player .bottom .player-modal .modal-close {
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .modal-close img {
    width: 16px;
    height: 16px;
    opacity: 0.95;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .progress-row {
    grid-template-columns: max-content 1fr max-content;
    gap: 10px;
    align-items: center;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .progress-row .time {
    font-size: 12px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .progress-row #timeRemain {
    text-align: right;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .progress-row .progress {
    width: 100%;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track {
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
    margin-top: 12px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .track-jacket {
    width: 52px;
    height: 52px;
    border-radius: 0px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .track-meta .track-title {
    font-weight: 800;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .track-meta .track-artist {
    opacity: 0.8;
    font-size: 13px;
    margin-top: 2px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls {
    gap: 10px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn {
    width: 44px;
    height: 44px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn img {
    width: 22px;
    height: 22px;
    opacity: 0.95;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn.ctrl-play {
    width: 56px;
    height: 56px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn.ctrl-play img {
    width: 24px;
    height: 24px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn .ctrl-ring {
    background: rgba(255, 255, 255, 0.08);
  }
  .hiptune .hiptune-container #player .mini-player {
    right: 18px;
    bottom: 30%;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1.2);
    z-index: 6;
  }
  .hiptune .hiptune-container #player .mini-player img {
    width: 22px;
    height: 22px;
    opacity: 0.95;
  }
  .hiptune .hiptune-container #player .mini-player.is-hidden {
    opacity: 0;
    transform: translateY(10px) scale(0.85);
  }
  .hiptune .hiptune-container #player .mini-player {
    /* 表示（ひょこっ） */
  }
  .hiptune .hiptune-container #player .mini-player.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
} /* 1024px～1280px responsive-close */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .hiptune .hiptune-container .bg {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 0;
  }
  .hiptune .hiptune-container .bg .bg-img {
    transition: opacity 0.6s ease;
    transform: scale(1);
  }
  .hiptune .hiptune-container .bg .bg-img.is-on {
    opacity: 1;
  }
  .hiptune .hiptune-container .bg .bg-img.is-zoom {
    animation: kenburnsZoom 10s ease forwards;
    animation-delay: 0.6s;
  }
  @keyframes kenburnsZoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.1);
    }
  }
  .hiptune .hiptune-container .bg .bg-vignette {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.17) 68%, rgba(0, 0, 0, 0) 100%);
  }
  .hiptune .hiptune-container .screen {
    transition: opacity 0.4s ease;
    max-width: 840px;
    width: 100%;
    margin: 0 auto 0;
  }
  .hiptune .hiptune-container .screen.is-active {
    opacity: 1;
  }
  .hiptune .hiptune-container .screen .safe {
    height: 100%;
  }
  .hiptune .hiptune-container #landing .safe {
    max-width: 92%;
    width: 100%;
    margin: 0 auto 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner {
    width: 100%;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top {
    width: 100%;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy {
    width: calc(100% - 14vw);
    padding: 0 2rem 0 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker {
    opacity: 0.9;
    margin: 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker::before {
    content: "";
    width: 3rem;
    height: 1px;
    margin: 0 1rem 0 0;
    display: none;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-kicker span {
    letter-spacing: 0.1rem;
    font-size: 3.75vw;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-title {
    letter-spacing: 2px;
    font-size: 13vw;
    margin: 6px 0 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .landing-copy .landing-desc {
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
    font-size: 4vw;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .fab {
    width: 14vw;
    height: 14vw;
    line-height: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .top .fab img {
    width: 60%;
    height: 60%;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points {
    margin: 1.5rem 0 0 0;
    padding: 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points li {
    margin: 0.25rem 0 0 0;
    line-height: 1.5;
    font-size: 4vw;
    opacity: 0.85;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points li::before {
    content: "・";
    font-size: 0.8em;
    padding: 0 0.5rem 0 0;
  }
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points li #lpImageCount,
  .hiptune .hiptune-container #landing .safe .safe-inner .landing-points li #lpTrackCount {
    font-size: 1.2em;
  }
  .hiptune .hiptune-container #player {
    height: 100%;
  }
  .hiptune .hiptune-container #player .safe .topbar {
    margin-top: 26px;
    padding: 0 3%;
  }
  .hiptune .hiptune-container #player .safe .topbar .left .chip {
    padding: 8px 24px;
    font-size: 15px;
  }
  .hiptune .hiptune-container #player .safe .topbar .left .popover {
    top: calc(env(safe-area-inset-top) + 64px);
    left: 16px;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    gap: 6px;
  }
  .hiptune .hiptune-container #player .safe .topbar .left .popover.is-open {
    display: grid;
  }
  .hiptune .hiptune-container #player .safe .topbar .left .popover-item {
    padding: 8px 24px;
    font-size: 14px;
  }
  .hiptune .hiptune-container #player .safe .topbar .icon-btn {
    width: 44px;
    height: 44px;
  }
  .hiptune .hiptune-container #player .safe .topbar .icon-btn img {
    width: 22px;
    height: 22px;
  }
  .hiptune .hiptune-container #player .bottom {
    padding: 0 0 5rem 0;
  }
  .hiptune .hiptune-container #player .bottom .quote {
    padding: 0 1.5rem;
  }
  .hiptune .hiptune-container #player .bottom .quote .quote-text {
    font-size: 18px;
    line-height: 1.55;
  }
  .hiptune .hiptune-container #player .bottom .quote .quote-meta {
    margin-top: 6px;
    opacity: 0.9;
    gap: 10px;
    font-size: 13px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal {
    width: 92%;
    backdrop-filter: blur(6px);
    padding: 24px 14px 12px;
    transition: transform 0.45s ease, opacity 0.45s ease;
    margin: 2rem auto 0;
    background: rgba(0, 0, 0, 0.25);
  }
  .hiptune .hiptune-container #player .bottom .player-modal.is-collapsed {
    transform: translate(40px, -80px) scale(0.12);
  }
  .hiptune .hiptune-container #player .bottom .player-modal .modal-close {
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.2);
  }
  .hiptune .hiptune-container #player .bottom .player-modal .modal-close img {
    width: 16px;
    height: 16px;
    opacity: 0.95;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .progress-row {
    grid-template-columns: max-content 1fr max-content;
    gap: 10px;
    align-items: center;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .progress-row .time {
    font-size: 12px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .progress-row #timeRemain {
    text-align: right;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .progress-row .progress {
    width: 100%;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track {
    grid-template-columns: 45px 1fr auto;
    gap: 12px;
    margin-top: 12px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .track-jacket {
    width: 45px;
    height: 45px;
    border-radius: 0px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .track-meta .track-title {
    font-weight: 800;
    font-size: 13px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .track-meta .track-artist {
    opacity: 0.8;
    font-size: 11px;
    margin-top: 2px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls {
    gap: 10px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn {
    width: 40px;
    height: 40px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn img {
    width: 18px;
    height: 18px;
    opacity: 0.95;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn.ctrl-play {
    width: 46px;
    height: 46px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn.ctrl-play img {
    width: 20px;
    height: 20px;
  }
  .hiptune .hiptune-container #player .bottom .player-modal .track .controls .ctrl-btn .ctrl-ring {
    background: rgba(255, 255, 255, 0.08);
  }
  .hiptune .hiptune-container #player .mini-player {
    right: 18px;
    bottom: 30%;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1.2);
    z-index: 6;
  }
  .hiptune .hiptune-container #player .mini-player img {
    width: 22px;
    height: 22px;
    opacity: 0.95;
  }
  .hiptune .hiptune-container #player .mini-player.is-hidden {
    opacity: 0;
    transform: translateY(10px) scale(0.85);
  }
  .hiptune .hiptune-container #player .mini-player {
    /* 表示（ひょこっ） */
  }
  .hiptune .hiptune-container #player .mini-player.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=style.css.map */