@charset "UTF-8";
/* Play Your Music の製品ページ用。このフォルダだけで完結させるため、
   サイト共通の txt-maker.css / f.css をコピーして 1 本にまとめたもの。 */

/* ---- ベース (txt-maker.css 由来) ---- */
body, html {
  color: #333;
  font-family: "MS Pゴシック",sans-serif;
  margin: 0;
}

header {
  max-width: 1200px;
  margin: auto;
  vertical-align: top;
  height: 70px;
}

header .header-nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header p {
  padding-left: 20px;
  text-align: right;
}

header ul {
  position: right;
}

header ul li {
  list-style-type: none;
  background-color: #fff;
  color: #000;
  padding: 0 5px 0 0;
}

header ul li button {
  height: 30px;
  width: 60px;
  background-color: lightgray;
  border: none;
  border-radius: 30px;
}

.product-name-wrapper {
  width: 821.91781px;
}

.header-navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 0 0 0;
}

.bottom-box {
  font-size: 16px;
  text-align: center;
}

.bottom-box p {
  padding: 10px 0 10px 0;
}

.eyecatch {
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 3rem 0 3rem 0;
  width: 100%;
  background-color: #f5f7fa;
  background-position: 50%;
  background-blend-mode: lighten;
  margin-bottom: 50px;
}

.eyecatch h2 {
  font-size: 20px;
}

.eyecatch img {
  padding: 0.5rem;
  max-width: 250px;
}

.tarms p {
  font-size: 12px;
}

.tarms h2 {
  font-size: 16px;
  text-align: center;
}

.tarms h3 {
  font-size: 14px;
  padding-top: 10px;
}

.tarms ol {
  padding: 14px;
}

.tarms ol li {
  font-size: 12px;
}

h1 {
  font-size: 20px;
}

h1 hr {
  margin-bottom: 10px;
}
#main-functions {
  width: fit-content;
  margin: auto;
}
#main-functions li {
  width: fit-content;
}

/* ---- フッター・パンくず (f.css 由来) ---- */
footer {
  max-width: 1200px;
  margin: 120px auto 30px auto;
  border-top: solid 1px #bbb;
  padding: 25px 0;
  text-align: center;
}

footer #footer-description {
  margin: 10px 0 0 10px;
}

footer strong {
  font-weight: normal;
}

footer .company {
  padding: 30px 0 10px 0;
  width: 97%;
  margin: 10px 0 0 10px;
}

footer .pickup-links {
  padding: 30px 0 2px 0;
  margin: 20px 0 2px 10px;
}

footer a {
  color: black;
}

footer .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

footer .links li {
  margin: 0 30px 20px 0;
}

.breadcrumbList {
  font-size: 16px;
  color: #888888;
  margin: 30px auto;
  list-style: none;
  padding: 10px;
  max-width: 1200px;
}

.breadcrumbList a, .breadcrumbList span {
  color: #888888;
  word-break: break-all;
}

.breadcrumbList .breadcrumb {
  display: inline-block;
  padding: 0 0 0 10px;
  word-break: break-all;
}

.breadcrumbList .breadcrumb::after {
  content: ">";
}

.breadcrumbList .breadcrumb:last-child::after {
  content: "";
}

.breadcrumbList .breadcrumb:first-child::after {
  content: ">";
}

@media screen and (max-width: 627px) {
  footer .links {
    display: inline-block;
  }
}

/* ---- 言語スイッチャー・本文・FAQ ---- */
.lang-switcher { position: relative; }
    .lang-switcher summary {
        list-style: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 12px;
        border: 1px solid #e0e0e0;
        border-radius: 20px;
        background: #fff;
        font-size: 14px;
        color: #333;
        transition: border-color 0.15s, color 0.15s;
        user-select: none;
    }
    .lang-switcher summary::-webkit-details-marker { display: none; }
    .lang-switcher summary::marker { display: none; }
    .lang-switcher summary:hover { border-color: #007AFF; color: #007AFF; }
    .lang-switcher[open] summary { border-color: #007AFF; color: #007AFF; }
    .lang-switcher summary svg { flex-shrink: 0; }
    .lang-switcher[open] .chevron { transform: rotate(180deg); }
    .chevron { transition: transform 0.2s; }
    .lang-menu {
        position: absolute;
        top: calc(100% + 8px);
        inset-inline-end: 0;
        min-width: 220px;
        max-height: 60vh;
        overflow-y: auto;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        z-index: 100;
        padding: 6px;
    }
    .lang-menu a {
        display: block;
        padding: 9px 14px;
        border-radius: 8px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        line-height: 1.3;
        white-space: nowrap;
    }
    .lang-menu a:hover { background: #f0f4ff; color: #007AFF; }
    .lang-menu a.active { background: #007AFF; color: #fff; font-weight: 600; }
    @media (max-width: 480px) {
        .lang-switcher summary .lang-label { display: none; }
        .lang-menu { min-width: 180px; }
    }
    /* --- Content & FAQ (self-contained) --- */
    .content-section {
        max-width: 720px;
        margin: 48px auto 0;
        padding: 0 20px;
        line-height: 1.75;
        color: #333;
    }
    .content-section h2 {
        font-size: 22px;
        margin: 40px 0 16px;
        color: #111;
    }
    .content-section h3 {
        font-size: 18px;
        margin: 28px 0 12px;
        color: #111;
    }
    .content-section p { margin: 0 0 16px; font-size: 16px; }
    .content-section code {
        background: #f2f4f7;
        padding: 1px 6px;
        border-radius: 5px;
        font-size: 0.92em;
    }
    .feature-list { margin: 0 0 8px; padding: 0; list-style: none; }
    .feature-list li {
        position: relative;
        padding-block: 10px;
        padding-inline-start: 28px;
        border-bottom: 1px solid #eee;
        font-size: 16px;
    }
    .feature-list li::before {
        content: "";
        position: absolute;
        inset-inline-start: 4px; top: 16px;
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #007AFF;
    }
    .faq details { border-bottom: 1px solid #eee; }
    .faq summary {
        list-style: none;
        cursor: pointer;
        font-weight: 600;
        font-size: 16px;
        color: #111;
        padding: 16px 32px 16px 0;
        position: relative;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::before { content: "Q. "; color: #007AFF; }
    .faq summary::after {
        content: "";
        position: absolute;
        inset-inline-end: 6px; top: 21px;
        width: 8px; height: 8px;
        border-right: 2px solid #999;
        border-bottom: 2px solid #999;
        transform: rotate(45deg);
        transition: transform 0.2s;
    }
    .faq details[open] summary::after { transform: rotate(-135deg); top: 25px; }
    .faq p { margin: 0 0 16px; padding-inline-start: 20px; font-size: 16px; }
