@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700;900&family=Zen+Maru+Gothic&display=swap");
:root {
  --color-text: #333;
  --color-white: #fff;
  --color-red: #c33;
  --color-black: #000;
  --color-main: #e4007f;
  --wf-01: 'Zen Maru Gothic', sans-serif;
  --wf-02: 'Barlow Condensed', sans-serif; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media (min-width: 1024px) {
    html {
      scroll-padding-top: 180px; } }

body {
  color: var(--color-text);
  font-size: 1.6rem;
  font-family: 'Zen Maru Gothic', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%; }

a[target='_blank']:has(img)::after {
  content: none; }

.t_c {
  text-align: center; }

.t_r {
  text-align: right; }

.t_l {
  text-align: left; }

details {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px;
  transition: all 0.3s; }
  details[open] {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); }
  details summary {
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    outline: none;
    display: flex;
    align-items: center; }
    details summary::before {
      content: '▶';
      font-size: 0.8em;
      margin-right: 10px;
      transition: transform 0.3s; }
  details[open] summary::before {
    transform: rotate(90deg); }

.btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px; }

.btn,
.btn-primary,
.btn-outline,
.btn-text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 12px 24px;
  font-size: 1.6rem; }

.btn-primary {
  background-color: var(--color-main);
  color: #fff; }
  .btn-primary:hover {
    background-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }

.btn-outline {
  background-color: transparent;
  border: 2px solid #333;
  color: #333; }
  .btn-outline:hover {
    background-color: #333;
    color: #fff; }

.btn-text {
  padding: 5px 0;
  background: none;
  position: relative; }
  .btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s;
    transform-origin: right;
    transform: scaleX(0); }
  .btn-text:hover::after {
    transform-origin: left;
    transform: scaleX(1); }

.header {
  position: relative;
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000; }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto; }
    @media (min-width: 1024px) {
      .header-inner {
        padding: 10px 20px; } }
  .header-decoration {
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    max-width: none;
    line-height: 0;
    pointer-events: none; }
    .header-decoration img {
      width: 100%;
      max-width: none;
      height: auto;
      transform: translateY(100%); }
  .header-logo a {
    display: block;
    text-decoration: none; }
    .header-logo a img {
      width: 250px;
      height: auto;
      display: block; }
      @media (min-width: 1024px) {
        .header-logo a img {
          width: 400px;
          height: auto; } }

.header-logo_sub {
  display: block;
  font-size: 1rem;
  color: #888;
  letter-spacing: 0.3em;
  margin-top: 5px;
  font-weight: normal;
  text-align: left; }
  @media (min-width: 1024px) {
    .header-logo_sub {
      font-size: 1.6rem;
      margin-top: 8px;
      letter-spacing: 0.3em; } }

.nav .nav-check {
  display: none; }
  .nav .nav-check:checked ~ .nav-menu {
    transform: translateX(0); }
  .nav .nav-check:checked ~ .nav-open span {
    background: transparent; }
    .nav .nav-check:checked ~ .nav-open span::before {
      transform: rotate(45deg);
      top: 0; }
    .nav .nav-check:checked ~ .nav-open span::after {
      transform: rotate(-45deg);
      top: 0; }
.nav .nav-open {
  display: block;
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  z-index: 100; }
  .nav .nav-open span,
  .nav .nav-open span::before,
  .nav .nav-open span::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-text);
    position: absolute;
    transition: 0.3s; }
  .nav .nav-open span {
    top: 11px; }
    .nav .nav-open span::before {
      top: -8px; }
    .nav .nav-open span::after {
      top: 8px; }
  @media (min-width: 1024px) {
    .nav .nav-open {
      display: none; } }
.nav .nav-menu {
  font-family: var(--wf-02);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.3s;
  margin: 0;
  padding: 0;
  list-style: none; }
  @media (min-width: 1024px) {
    .nav .nav-menu {
      position: static;
      width: auto;
      height: auto;
      flex-direction: row;
      background: none;
      transform: none; } }
  .nav .nav-menu a {
    text-decoration: none;
    font-size: 1.8rem;
    color: var(--color-text); }
    @media (min-width: 1024px) {
      .nav .nav-menu a {
        font-size: 3.6rem; } }

.imgarea {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url("../img/bg_img.webp");
  background-size: cover;
  background-position: center; }
  @media (min-width: 768px) {
    .imgarea {
      height: 40vh; } }
  @media (min-width: 1024px) {
    .imgarea {
      height: 60vh; } }

.sec-wrap {
  padding: 2em 0; }
  .home .sec-wrap {
    background-color: #f8f0f0; }

.sec {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 1.5em;
  scroll-margin-top: 100px; }
  @media (min-width: 1024px) {
    .sec {
      scroll-margin-top: 180px; } }
  .home .sec {
    background-color: #f8f0f0; }
  .sec-title {
    font-family: var(--wf-02);
    text-align: center;
    font-size: 4rem;
    background: url("../img/icon_squre.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-5deg); }
    @media (min-width: 1024px) {
      .sec-title {
        font-size: 8rem; } }
  .sec-h2 {
    font-size: 2rem;
    text-align: center; }
    @media (min-width: 1024px) {
      .sec-h2 {
        font-size: 2.4rem; } }
  .sec-h3 {
    font-size: 1.8rem;
    margin-top: 4em;
    border-bottom: 1px dotted var(--color-main);
    padding: 0.5em; }

.sec-parallax {
  width: 100%;
  height: 100px;
  background-image: url("../img/bg_para.webp");
  background-size: cover;
  background-position: center;
  background-attachment: scroll; }
  @media (min-width: 1024px) {
    .sec-parallax {
      background-attachment: fixed; } }
  @supports (-webkit-touch-callout: none) {
    .sec-parallax {
      background-attachment: scroll; } }

.social_links {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  gap: 30px; }
  @media (min-width: 1024px) {
    .social_links {
      gap: 100px; } }
  .social_links li {
    text-align: center; }
    .social_links li img {
      width: 80%;
      height: auto; }
      @media (min-width: 1024px) {
        .social_links li img {
          width: 100% !important;
          height: auto; } }

.sec-about _inner _header {
  text-align: center; }

@media (min-width: 1024px) {
  .profile-block {
    text-align: center; } }

.en-main {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: 0.02em; }

.en-bold {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #333; }

.jp-sub,
.jp-ruby {
  display: block;
  font-size: 1.3rem;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 8px; }

.en-sub {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em; }

.track-database-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px; }

.track-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease; }
  @media (min-width: 1024px) {
    .track-item {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      padding: 20px 25px; }
      .track-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        background: #fff; } }

.track-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1; }

.track-date {
  font-family: var(--wf-02);
  font-size: 1.4rem;
  color: #888;
  font-weight: bold; }

.track-title {
  font-size: 1.8rem;
  color: var(--color-text); }
  .track-title a {
    transition: color 0.2s ease; }
    .track-title a:hover {
      color: var(--color-main) !important; }

.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px; }

.tag {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.02em; }
  .tag-vocal {
    background-color: #333;
    color: #fff; }
  .tag-genre {
    background-color: transparent;
    border: 1px solid var(--color-main);
    color: var(--color-main); }
  .tag-mood {
    background-color: #f0f0f0;
    color: #555;
    border: 1px solid #ddd; }

.track-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  @media (min-width: 1024px) {
    .track-links {
      justify-content: flex-end; } }

.t-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--wf-02);
  font-size: 1.4rem;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.2s ease; }
  .t-link.l-stream {
    background: var(--color-main);
    color: #fff !important; }
    .t-link.l-stream:hover {
      background: #000; }
  .t-link.l-yt {
    background: #e62117;
    color: #fff !important; }
    .t-link.l-yt:hover {
      background: #b31209; }
  .t-link.l-nico {
    background: #252525;
    color: #fff !important; }
    .t-link.l-nico:hover {
      background: #000; }
  .t-link.l-piapro {
    background: #00a0e9;
    color: #fff !important; }
    .t-link.l-piapro:hover {
      background: #0077b3; }
  .t-link.l-spotify {
    background: #1db954;
    color: #fff !important; }
    .t-link.l-spotify:hover {
      background: #1aa34a; }
  .t-link.l-apple {
    background: #fa243c;
    color: #fff !important; }
    .t-link.l-apple:hover {
      background: #d91e32; }
  .t-link.l-ytmusic {
    background: #ff0000;
    color: #fff !important; }
    .t-link.l-ytmusic:hover {
      background: #cc0000; }
  .t-link.l-linemusic {
    background: #06c755;
    color: #fff !important; }
    .t-link.l-linemusic:hover {
      background: #05ab49; }
  .t-link.l-amazon {
    background: #146eb4;
    color: #fff !important; }
    .t-link.l-amazon:hover {
      background: #0f5288; }
  .t-link:hover {
    transform: scale(1.05); }

.sec-youtube _inner _header {
  text-align: center; }

.sec-yt_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px; }
  @media (min-width: 1024px) {
    .sec-yt_inner {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto; } }

.sec-inner_item {
  width: 100%; }

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9; }
  .youtube iframe {
    width: 100%;
    height: 100%;
    border: none; }

.yt-stream-btn-wrap {
  margin-top: 15px;
  text-align: center; }

.btn-stream {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: var(--color-main);
  color: #fff !important;
  text-decoration: none;
  font-family: var(--wf-02);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease; }
  .btn-stream:hover {
    background-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }

.news-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid #eee; }
  .news-list .news-item {
    border-bottom: 1px solid #eee; }
    .news-list .news-item a {
      display: flex;
      flex-direction: column;
      padding: 15px 10px;
      text-decoration: none;
      color: var(--color-text);
      transition: background 0.3s; }
      .news-list .news-item a:hover {
        background-color: #f9f9f9; }
      @media (min-width: 1024px) {
        .news-list .news-item a {
          flex-direction: row;
          align-items: center; } }
  .news-list .news-date {
    font-size: 1.4rem;
    color: #888;
    margin-bottom: 5px; }
    @media (min-width: 1024px) {
      .news-list .news-date {
        margin-bottom: 0;
        width: 120px; } }
  .news-list .news-label {
    display: inline-block;
    width: 85px;
    text-align: center;
    padding: 2px 0;
    font-size: 0.85rem;
    font-weight: bold; }
    @media (min-width: 1024px) {
      .news-list .news-label {
        margin-bottom: 0;
        margin-right: 20px; } }
  .news-list .news-title {
    margin: 0;
    font-size: 1.6rem;
    flex: 1; }

.inquiry-note {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px; }
  @media (min-width: 1024px) {
    .inquiry-note {
      text-align: center; } }

.footer-wrap {
  padding: 2em 0; }

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }
  .footer_inner {
    margin-bottom: 2em; }
  .footer_title {
    border-bottom: 1px dotted var(--color-main);
    padding: 0.6em;
    font-size: 1.6rem;
    color: var(--color-main); }
  .footer_list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0; }
    @media (min-width: 1024px) {
      .footer_list {
        flex-direction: row; } }
    .footer_list li {
      margin-left: 1em; }
      .footer_list li a {
        display: inline-block;
        text-decoration: none;
        padding: 0.6em;
        color: var(--color-text); }
        .footer_list li a img {
          width: 70%;
          height: auto; }
  .footer_bottom {
    font-size: 1.4rem; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  z-index: 1000;
  border-radius: 5px;
  transition: opacity 0.3s, transform 0.3s; }
  .back-to-top:hover {
    background-color: #000;
    transform: translateY(-5px); }

.single-track {
  background-color: #f8f0f0;
  padding: 120px 0 60px 0; }
  @media (min-width: 1024px) {
    .single-track {
      padding: 180px 0 60px 0; } }
  .single-track .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5em; }
  .single-track .container-sm {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px; }

/* ヘッダー */
.single-track_header {
  text-align: center;
  margin-bottom: 40px; }
  .single-track_header .track-date {
    font-family: var(--wf-02);
    font-size: 1.6rem;
    color: #888;
    font-weight: bold;
    display: block;
    margin-bottom: 10px; }
  .single-track_header .track-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-text);
    margin: 0 0 15px 0;
    letter-spacing: 0.02em; }
    @media (min-width: 1024px) {
      .single-track_header .track-title {
        font-size: 4.8rem; } }
  .single-track_header .track-tags {
    justify-content: center; }

/* 動画エリア ＆ タブ切り替えシステム */
.single-track_video {
  margin-bottom: 40px; }
  .single-track_video .video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden; }
    .single-track_video .video-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none; }
  .single-track_video .video-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem; }
    .single-track_video .video-tabs input[type='radio'] {
      display: none; }
    .single-track_video .video-tabs .tab-label {
      display: inline-block;
      padding: 12px 24px;
      font-weight: bold;
      font-size: 1.4rem;
      cursor: pointer;
      background: #1a1a1a;
      color: #777;
      border-radius: 4px 4px 0 0;
      margin-right: 4px;
      transition: all 0.3s ease;
      border: 1px solid #333;
      border-bottom: none; }
      .single-track_video .video-tabs .tab-label:hover {
        color: #fff;
        background: #222; }
    .single-track_video .video-tabs .video-content-container {
      width: 100%;
      background: #000;
      border-top: 2px solid #333;
      padding-top: 10px;
      border-radius: 0 8px 8px 8px;
      overflow: hidden; }
    .single-track_video .video-tabs .video-content {
      display: none; }
    .single-track_video .video-tabs #tab-niconico:checked ~ .tab-label[for='tab-niconico'] {
      background: #006699;
      color: #fff;
      border-color: #006699; }
    .single-track_video .video-tabs #tab-niconico:checked ~ .video-content-container {
      border-top-color: #006699; }
      .single-track_video .video-tabs #tab-niconico:checked ~ .video-content-container .niconico-pane {
        display: block; }
    .single-track_video .video-tabs #tab-youtube:checked ~ .tab-label[for='tab-youtube'] {
      background: #cc0000;
      color: #fff;
      border-color: #cc0000; }
    .single-track_video .video-tabs #tab-youtube:checked ~ .video-content-container {
      border-top-color: #cc0000; }
      .single-track_video .video-tabs #tab-youtube:checked ~ .video-content-container .youtube-pane {
        display: block; }
    @media (max-width: 768px) {
      .single-track_video .video-tabs .tab-label {
        flex: 1;
        text-align: center;
        margin-right: 0;
        font-size: 1.2rem;
        padding: 14px 8px; } }

/* リンクエリア */
.single-track_links {
  margin-bottom: 60px; }
  .single-track_links .track-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px; }
    @media (min-width: 640px) {
      .single-track_links .track-links-grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) {
      .single-track_links .track-links-grid {
        grid-template-columns: repeat(4, 1fr); } }
  .single-track_links .t-link {
    justify-content: center;
    padding: 15px 20px;
    font-size: 1.6rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); }

/* 歌詞エリア */
.single-track_lyric {
  background: #fff;
  border-radius: 8px;
  padding: 40px 20px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); }
  @media (min-width: 1024px) {
    .single-track_lyric {
      padding: 60px 40px; } }
  .single-track_lyric .lyric-heading {
    font-family: var(--wf-02);
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    color: var(--color-main);
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-main);
    display: inline-block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    padding-bottom: 5px; }
  .single-track_lyric .lyric-content {
    font-size: 1.6rem;
    line-height: 2.2;
    text-align: center;
    color: #444;
    letter-spacing: 0.05em; }
    .single-track_lyric .lyric-content p {
      margin: 0 0 1.5em 0; }
      .single-track_lyric .lyric-content p:last-child {
        margin-bottom: 0; }
  .single-track_lyric .no-lyric {
    color: #999;
    font-style: italic;
    text-align: center; }

/* 戻るボタン */
.single-track_back {
  margin-top: 40px; }
  .single-track_back .btn-outline {
    background: #fff; }
    .single-track_back .btn-outline:hover {
      background: var(--color-text);
      color: #fff; }

.track-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 40px; }
  .track-navigation div {
    flex: 1;
    text-align: center; }
  .track-navigation .btn-outline,
  .track-navigation .btn-disabled {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 10px;
    font-size: 1.4rem;
    font-family: var(--wf-02);
    font-weight: bold;
    border-radius: 4px;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.3s ease; }
  .track-navigation .btn-outline {
    background: #fff;
    border: 2px solid #333;
    color: #333; }
    .track-navigation .btn-outline:hover {
      background: var(--color-text);
      color: #fff; }
  .track-navigation .btn-disabled {
    background: #e9e9e9;
    border: 2px solid #ccc;
    color: #aaa;
    cursor: not-allowed; }
  .track-navigation .arrow {
    font-size: 1rem; }
  @media (max-width: 480px) {
    .track-navigation {
      gap: 6px; }
      .track-navigation .btn-outline,
      .track-navigation .btn-disabled {
        font-size: 1.2rem;
        padding: 12px 4px; } }

.track-title a.track-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 2.5rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding-bottom: 2px;
  transition: all 0.3s ease; }
  .track-title a.track-detail-link .icon-arrow {
    font-size: 0.75em;
    color: var(--color-main);
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease; }
  .track-title a.track-detail-link:hover {
    color: var(--color-main) !important;
    border-bottom-color: var(--color-main); }
    .track-title a.track-detail-link:hover .icon-arrow {
      opacity: 1;
      transform: translateX(4px); }

.t-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* アイコンとテキストの間隔 */
  text-decoration: none;
  font-size: 1.2rem;
  /* テキストのサイズ（小さめで上品に） */
  font-weight: 700;
  padding: 6px 12px;
  /* 上下と左右の余白（横長ボタンにする） */
  height: 32px;
  /* ボタンの高さを揃える */
  border-radius: 4px;
  box-sizing: border-box;
  white-space: nowrap;
  /* テキストの途中で改行させない */
  transition: all 0.2s ease; }
  .t-link i {
    font-size: 1.1rem;
    /* アイコンをテキストより少しだけ大きく */ }
  .t-link.l-yt {
    background: #e62117;
    color: #fff !important; }
    .t-link.l-yt:hover {
      background: #b31209; }
  .t-link.l-nico {
    background: #252525;
    color: #fff !important; }
    .t-link.l-nico:hover {
      background: #000; }
  .t-link.l-piapro {
    background: #00a0e9;
    color: #fff !important; }
    .t-link.l-piapro:hover {
      background: #0077b3; }
  .t-link.l-spotify {
    background: #1DB954;
    color: #fff !important; }
    .t-link.l-spotify:hover {
      background: #1aa34a; }
  .t-link.l-apple {
    background: #FA243C;
    color: #fff !important; }
    .t-link.l-apple:hover {
      background: #d91e32; }
  .t-link.l-ytmusic {
    background: #FF0000;
    color: #fff !important; }
    .t-link.l-ytmusic:hover {
      background: #cc0000; }
  .t-link.l-linemusic {
    background: #06C755;
    color: #fff !important; }
    .t-link.l-linemusic:hover {
      background: #05ab49; }
  .t-link.l-amazon {
    background: #146EB4;
    color: #fff !important; }
    .t-link.l-amazon:hover {
      background: #0f5288; }
  .t-link:hover {
    transform: scale(1.05);
    /* 横長なので膨らみ方は少し控えめに */ }

.news-item .news-link {
  display: flex !important;
  flex-direction: column;
  padding: 15px 10px;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.3s; }
  @media (min-width: 1024px) {
    .news-item .news-link {
      flex-direction: row;
      align-items: center; } }
  .news-item .news-link.no-link {
    cursor: default;
    background-color: transparent !important; }
    .news-item .news-link.no-link:hover {
      background-color: transparent !important; }

.pagination-wrap .page-numbers {
  display: inline-flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px; }
  .pagination-wrap .page-numbers li {
    margin: 0; }
  .pagination-wrap .page-numbers .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-family: var(--wf-02);
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: none;
    color: #333;
    border: 2px solid #333;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s ease; }
    .pagination-wrap .page-numbers .page-numbers:hover:not(span) {
      background: var(--color-text);
      color: #fff; }
    .pagination-wrap .page-numbers .page-numbers.current {
      background: var(--color-main);
      border-color: var(--color-main);
      color: #fff;
      cursor: default; }

.hero-rect-badge {
  position: fixed;
  right: 30px;
  z-index: 9999;
  top: 50%;
  transform: translateY(-50%); }
  @media (max-width: 768px) {
    .hero-rect-badge {
      top: auto;
      bottom: 25px;
      right: 20px;
      transform: translateY(0); } }
  .hero-rect-badge .badge-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    color: var(--color-text, #333);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 140px; }
    @media (max-width: 768px) {
      .hero-rect-badge .badge-link {
        max-width: 110px;
        padding: 8px; } }
    .hero-rect-badge .badge-link:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }
  .hero-rect-badge .badge-img-wrap {
    width: 100%;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 4px; }
    .hero-rect-badge .badge-img-wrap img {
      width: 100%;
      height: auto;
      display: block; }
  .hero-rect-badge .badge-text-wrap {
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0.03em; }
    @media (max-width: 768px) {
      .hero-rect-badge .badge-text-wrap {
        font-size: 1rem; } }
