/* =========================================================
   ChocoMint za_style.css
========================================================= */
/* =========================================================
   BASE / RESET
========================================================= */
* {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    color: #222;
    background: #f4f4f4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}
img {
    max-width: 100%;
}
a {
    color: #006fc9;
    text-decoration: none;
}
a:hover {
    color: #004f96;
    text-decoration: underline;
}
.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.main {
    padding: 22px 0 42px;
}
/* =========================================================
   HEADER
========================================================= */
.site-head {
    background: #111;
    color: #fff;
    border-top: 1px solid #ff69b4;
}
.site-head .wrap.head-wrap {
    width: min(1180px, calc(100% - 32px));
    min-height: 56px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-head .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    margin: 0 24px 0 0;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}
.site-head .logo:hover {
    color: #fff;
    text-decoration: none;
}
.site-head .logo small,
.site-head .logo-sub {
    display: none !important;
}
.site-head .logo-mint {
    color: #ff69b4;
}
.site-head .head-find {
    flex: 0 1 530px;
    width: 530px;
    max-width: 530px;
    min-width: 220px;
    margin-left: auto;
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: #2b3038;
}
.site-head .head-find input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    height: 38px;
    padding: 0 14px;
    border: 1px solid #e4e7eb;
    border-radius: 6px 2px 2px 6px;
    background: #fff;
    color: #20242a;
    font-size: 14px;
}
.site-head .head-find input[type="search"]:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 255, 0, .18);
}
.site-head .head-find button[type="submit"] {
    flex: 0 0 78px;
    width: 78px;
    height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 2px 6px 6px 2px;
    background: linear-gradient(180deg, #66cc99 0%, #00ff99 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 1px 2px rgba(0,0,0,.18);
}
.site-head .head-find button[type="submit"]:hover {
    background: linear-gradient(180deg, #1bd4b3 0%, #119b83 100%);
}
.site-head .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.site-head .search-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}
.site-head .search-text {
    display: inline;
}
.site-head .head-actions,
.site-head .viewer-filter-options {
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-head .head-actions {
    flex: 0 0 auto;
}
.site-head .viewer-filter-options label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: #222;
    color: #e8e8e8;
    font-size: 12px;
    font-weight: 700;
    line-height: 30px;
    white-space: nowrap;
    cursor: pointer;
}
.site-head .viewer-filter-options label:has(input[type="checkbox"]:checked) {
    border-color: #ff69b4;
    background: #ff69b4;
    color: #111;
}
.site-head .viewer-filter-options input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.site-head .rss-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 5px;
    background: #222;
    color: #ff8c00;
}
.site-head .head-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 5px;
    background: #1d1d1d;
    color: #fff;
    cursor: pointer;
}
.site-head .head-menu-btn span,
.site-head .head-menu-btn::before,
.site-head .head-menu-btn::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

/* =========================================================
   NAVIGATION
========================================================= */
#site-nav.site-nav {
    display: block;
    background: #202020;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(0,0,0,.45);
}
#site-nav.site-nav .wrap.nav-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
#site-nav.site-nav .nav-wrap a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5px 18px 5px 28px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 5px;
    background: rgba(255,255,255,.03);
    color: #f3f3f3;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
#site-nav.site-nav .nav-wrap a::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border-top: 2px solid #ff69b4;
    border-right: 2px solid #ff69b4;
    transform: rotate(45deg);
}
#site-nav.site-nav .nav-wrap a:hover {
    color: #ff69b4;
    text-decoration: none;
}
/* =========================================================
   PAGE COMMON
========================================================= */
.page-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 42px;
}
.page-head {
    margin:0px 0 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.page-head h1 {
    margin: 0;
    font-size: 21px;
    line-height: 1.55;
}
.page-head p {
    margin: 0;
    color: #666;
    font-size: 14px;
}
.page-head:has(> p) {
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.page-head:has(> p) h1 {
    flex: 0 0 auto;
    white-space: nowrap;
}
.page-head:has(> p) p {
    min-width: 0;
}
.empty,
.empty-box {
    padding: 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}
/* =========================================================
   MAIN LAYOUT
========================================================= */
.clip-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: start;
}
.clip-content {
    min-width: 0;
}
.clip-sidebar {
    min-width: 0;
}
/* =========================================================
   WORK LIST / CARDS
========================================================= */
.work-grid,
.work-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.work-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
}
.work-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.work-card-link:hover {
    text-decoration: none;
}
.work-img {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
    padding: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 0;
    border-radius: 9px 9px 0 0;
    background: #f1f1f1;
    line-height: 0;
}
/* ======ZANZA?TlE?]===== */
.work-img img {
    display: block;
    width: calc(100% + 6px);
    max-width: none;
    height: auto;
    margin-left: -3px;
    object-fit: cover;
    object-position: center;
}
.work-card .work-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 10px 12px 11px;
}
.work-card .work-body h2 {
    min-height: 2.9em;
    margin: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
}
.work-card .work-body h2 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 2.9em;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    overflow-wrap: anywhere;
}
.work-card .work-info {
    display: grid;
    gap: 5px;
    flex: 0 0 auto;
    margin: auto 0 0;
    padding: 9px 0 0;
    border-top: 1px solid #ececec;
    list-style: none;
}
.work-card .work-info li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px;
    align-items: baseline;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
.work-card .work-info li::marker {
    content: "";
}
.work-card .work-info-label {
    color: #888;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}
.work-card .work-info strong,
.work-card .work-info time {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.work-card .work-actress strong {
    color: #222;
    font-weight: 700;
}
.work-card .work-maker strong {
    color: #666;
}
.work-card .work-release-date time {
    color: #555;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
}
/* =========================================================
   NAME LIST
   ?y??X?z?o????E???[?J?[?E???[?x???E?^?O??
========================================================= */
.name-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.name-list-item {
    min-width: 0;
    min-height: 54px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    color: #222;
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.name-list-item:hover {
    border-color: #111;
    background: #fffef0;
    color: #111;
    text-decoration: none;
    transform: translateY(-1px);
}
.name-list-item span {
    min-width: 0;
    overflow: hidden;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.name-list-item em {
    flex: 0 0 auto;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f1f1f1;
    color: #666;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}
.name-list-item:hover em {
    background: #ff69b4;
    color: #111;
}
/* =========================================================
   DETAIL PAGE
   ?y??X?z???y?[?W???????????i?p?l??????????
========================================================= */



.work-detail-head {
    margin: 0;
    padding: 0 0 18px;
}
.work-detail-head h1 {
    margin: 0;
    color: #202020;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.work-detail-movie {
    margin: 22px 0 12px;
    padding: 24px;
    background: #fafafa;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.work-detail-movie {
    text-align: center;
}

.work-detail-movie > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    line-height: 0;
}

.work-detail-movie iframe {
    display: block;
    width: 720px;
    max-width: 100%;
    margin: 0 auto;
    border: 0;
    flex: 0 0 auto;
}
/* ?y??X?z????u???b?N?????z?u???A????]?????? */
/* FANZA作品カード関連 */
.work-detail-image {
    margin: 10px 0 0;
    padding: 20px;
    background: #f6f6f6;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    text-align: center;
}
.work-detail-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}
/* ?y??X?z?????E??i???????????????u???b?N?????? */
.work-detail-section {
    margin: 22px 0 0;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}
.work-detail-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    color: #222;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
}
.work-detail-section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #d8d8d8, rgba(216,216,216,0));
}
.work-detail-description {
    color: #444;
    font-size: 14px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}
.work-detail-data {
    margin: 0;
    overflow: hidden;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
}
.work-detail-row {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    margin: 0;
    border-bottom: 1px solid #e3e3e3;
}
.work-detail-row:last-child {
    border-bottom: 0;
}
.work-detail-row dt,
.work-detail-row dd {
    margin: 0;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.65;
}
.work-detail-row dt {
    background: #f1f1f1;
    color: #555;
    font-weight: 700;
}
.work-detail-row dd {
    min-width: 0;
    background: #fff;
    color: #222;
    overflow-wrap: anywhere;
}
/* ?y??X?z?o???E???[?J?[?E???[?x???E?V???[?Y?E?W?????????m??????????N?\?? */
.work-detail-row dd a {
    display: inline;
    color: #006fc9;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.work-detail-row dd a:hover {
    color: #004f96;
    background: #fffbd6;
}
/* ?y??X?z?????{?^???????y?[?W???????????????z?u */
.work-detail-link {
    margin: 22px 0 0;
    display: flex;
    justify-content: center;
}
.go-btn{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;

    margin:0 auto;
    padding:8px 20px;

    background:#000;
    color:#fff;
    border-radius:6px;

    font-size:16px;
    font-weight:700;
    text-decoration:none;
width:100%;
max-width:420px;
    transition:color .3s ease;
}

.go-btn::before,
.go-btn::after{
    content:"";
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    background:#18c5a6;
    transition:transform .45s ease;
}

.go-btn::before{
    left:calc(-100% + 10px);
}

.go-btn::after{
    right:calc(-100% + 10px);
}

.go-btn:hover::before{
    transform:translateX(50%);
}

.go-btn:hover::after{
    transform:translateX(-50%);
}

.go-btn span{
    position:relative;
    z-index:1;
}

.go-btn:hover{
    color:#fff;
    text-decoration:none;
}
.page-bottom-btn{
    width: min(1180px, calc(100% - 0px));
    margin: 24px auto 0;
}
/* =========================================================
   SIDEBAR GUIDE
========================================================= */
.clip-guide {
    overflow: hidden;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.clip-guide-head {
    position: relative;
    padding: 22px 20px 20px;
    background: #111;
    color: #fff;
    border-bottom: 3px solid #ff69b4;
}
.clip-guide-head::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -28px;
    width: 92px;
    height: 92px;
    border: 18px solid rgba(255,255,0,.12);
    border-radius: 50%;
}
.clip-guide-kicker {
    margin: 0 0 6px;
    color: #ff69b4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
}
.clip-guide-head h2 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.35;
}
.clip-guide-head > p:last-child {
    margin: 9px 0 0;
    color: #cfcfcf;
    font-size: 12px;
    line-height: 1.7;
}
.clip-guide-list {
    display: grid;
}
.clip-guide-subhead {
    position: relative;
    margin: 0;
    padding: 10px 14px 9px 34px;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    background: #f7f7f7;
    color: #222;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}
.clip-guide-subhead::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
    transform: translateY(-55%) rotate(45deg);
}
.clip-guide-subhead-related {
    border-left: 3px solid #ff69b4;
}
.clip-guide-subhead-search {
    border-left: 3px solid #18c5a6;
}
.clip-guide-subhead-guide {
    border-left: 3px solid #111;
}
.clip-guide-item-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
}
.clip-guide-item-icon::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 7px;
    height: 7px;
    border: 2px solid #111;
    border-radius: 50%;
}
.clip-guide-item-icon::after {
    content: "";
    position: absolute;
    right: 1px;
    bottom: 2px;
    width: 7px;
    height: 2px;
    border-radius: 2px;
    background: #111;
    transform: rotate(45deg);
    transform-origin: right center;
}
.clip-guide-item-icon-related::before {
    border-radius: 2px;
    transform: rotate(45deg);
}
.clip-guide-item-icon-related::after {
    width: 8px;
    right: 0;
    bottom: 3px;
}
.clip-guide-item-icon-guide::before {
    left: 3px;
    top: 2px;
    width: 10px;
    height: 13px;
    border-radius: 2px;
}
.clip-guide-item-icon-guide::after {
    right: 3px;
    bottom: 3px;
    width: 7px;
    height: 2px;
    transform: none;
}
.clip-guide-item {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0,1fr) 14px;
    gap: 9px;
    align-items: center;
    min-height: 58px;
    padding: 9px 12px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    color: #222;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}
.clip-guide-item:last-child {
    border-bottom: 0;
}
.clip-guide-item:hover {
    background: #fffef0;
    color: #111;
    text-decoration: none;
    transform: translateX(3px);
}
.clip-guide-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #111;
    border-radius: 50%;
    color: #111;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}
.clip-guide-copy {
    min-width: 0;
    display: block;
}
.clip-guide-copy strong {
    display: block;
    color: #222;
    font-size: 13px;
    line-height: 1.35;
}
.clip-guide-copy small {
    display: block;
    margin-top: 1px;
    color: #777;
    font-size: 11px;
    line-height: 1.35;
}
.clip-guide-arrow {
    position: relative;
    width: 14px;
    height: 14px;
}
.clip-guide-arrow::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 1px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
    transform: rotate(45deg);
}
.clip-guide-item:hover .clip-guide-no {
    background: #ff69b4;
    border-color: #ff69b4;
}
/* =========================================================
   PAGER
========================================================= */
.pager {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.pager a,
.pager span {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:36px;
    padding:7px 10px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    color:#555;
    text-align:center;
    font-size:13px;
    line-height:1.3;
    text-decoration:none;
    box-sizing:border-box;
    transition:border-color .18s ease,color .18s ease;
}

.pager a:hover {
    background:#fff;
    border-color:#23c5a8;
    color:#23c5a8;
    text-decoration:none;
}

.pager strong,
.pager .current,
.pager span[aria-current="page"] {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:36px;
    padding:7px 10px;
    background:#23c5a8;
    color:#fff;
    border:1px solid #23c5a8;
    border-radius:6px;
    text-align:center;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
    box-sizing:border-box;
}
/* =========================================================
   FOOTER
========================================================= */
.site-foot {
    border-top: 1px solid #ddd;
    background: #151515;
    color: #ccc;
    padding: 24px 0;
    font-size: 14px;
}
.foot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.foot-links,
.copy {
    margin: 0;
}
.foot-links a {
    color: #fff;
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1000px) {
.page-head:has(> p) {
    display: block;
}

.page-head:has(> p) h1 {
    white-space: normal;
}

.page-head:has(> p) p {
    margin-top: 6px;
}

    .work-grid,
    .work-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .name-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .clip-layout {
        grid-template-columns: 1fr;
    }
    .clip-sidebar {
        position: static;
        top: auto;
    }
    .clip-guide-list {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .clip-guide-item:nth-child(odd) {
        border-right: 1px solid #e8e8e8;
    }
}
@media (max-width: 768px) {
    .site-head .wrap.head-wrap {
        width: 100%;
        padding: 10px 6px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "logo actions"
            "search search";
        gap: 8px 6px;
    }
    .site-head .logo {
        grid-area: logo;
        margin: 0;
    }
    .site-head .head-find {
        grid-area: search;
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
    }
    .site-head .head-actions {
        grid-area: actions;
        justify-content: flex-end;
        gap: 4px;
    }
    .site-head .rss-link {
        display: none;
    }
    .site-head .head-menu-btn {
        display: inline-flex;
    }
    .site-head .head-find .search-text {
        display:none;
    }
    .site-head .head-find .search-icon {
        width:18px;
        height:18px;
    }
    #site-nav.site-nav {
        display: none;
    }
    #site-nav.site-nav.is-open,
    body.nav-open #site-nav.site-nav {
        display: block;
    }
    #site-nav.site-nav .wrap.nav-wrap {
        width: 100%;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    #site-nav.site-nav .nav-wrap a {
        display: block;
        padding: 12px 14px 12px 42px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    #site-nav.site-nav .nav-wrap a::before {
        left: 16px;
    }

}
@media (max-width: 600px) {
    .name-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .name-list-item {
        min-height: 50px;
        padding: 10px 12px;
    }
    .wrap,
    .page-main {
        width: calc(100% - 16px);
    }
    .main,
    .page-main {
        padding-top: 10px;
    }
    .work-grid,
    .work-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .page-head {
        padding: 3px;
        border-radius: 8px;
    }
    .work-detail-head h1 {
        font-size: 19px;
    }
    /* ?y??X?z?X?}?z??????u???b?N??]?????k?? */
    .work-detail-movie,
    .work-detail-image,
    .work-detail-section,
    .work-detail-link {
        padding: 3px;
    }
    .work-detail-row {
        grid-template-columns: 86px minmax(0, 1fr);
    }
    .work-detail-row dt,
    .work-detail-row dd {
        padding: 10px;
        font-size: 13px;
    }
    .work-detail-link .go-btn,
    .work-detail-link > a.go-btn {
        width: 100% !important;
        min-width: 0 !important;
    }
    .clip-guide-head {
        padding: 18px 16px 17px;
    }
    .clip-guide-list {
        grid-template-columns: 1fr;
    }
    .clip-guide-item:nth-child(odd) {
        border-right: 0;
    }
    .clip-guide-item {
        min-height: 56px;
    }



}
/* =========================================================
   GUIDE PAGE
========================================================= */
.review-home {
    display: grid;
    gap: 16px;
}
.review-hero {
    position: relative;
    overflow: hidden;
    padding: 36px 38px 34px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background:
        linear-gradient(90deg, #ff69b4 0 3px, transparent 3px),
        #fff;
    color: #181818;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.review-hero::before {
    content: "GUIDE";
    position: absolute;
    right: 24px;
    top: 12px;
    color: #f1f1f1;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1;
    pointer-events: none;
}
.review-hero::after {
    content: "";
    position: absolute;
    left: 38px;
    bottom: 24px;
    width: 72px;
    height: 3px;
    background: #111;
}
.review-kicker {
    position: relative;
    margin: 0 0 8px;
    color: #777;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
}
.review-hero h1 {
    position: relative;
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.35;
}
.review-lead {
    position: relative;
    max-width: 680px;
    margin: 14px 0 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.85;
}
.review-home {
    counter-reset: guide-step;
}
.review-section {
    position: relative;
    overflow: hidden;
    padding: 24px 26px 24px 88px;
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.035);
}
.review-section::before {
    counter-increment: guide-step;
    content: counter(guide-step, decimal-leading-zero);
    position: absolute;
    left: 24px;
    top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    background: #f7f7f7;
    color: #111;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}
.review-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: #111;
}
.review-section-head {
    margin: 0 0 8px;
}
.review-section-head h2 {
    margin: 0;
    color: #181818;
    font-size: 18px;
    line-height: 1.45;
}
.review-section p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
}
.review-section:last-child {
    border-color: #d7d7d7;
    background: #fafafa;
}
.review-section:last-child::before {
    border-color: #111;
    background: #111;
    color: #fff;
}
@media (max-width: 600px) {
    .review-home {
        gap: 12px;
    }
    .review-hero {
        padding: 26px 22px 30px;
        border-radius: 9px;
    }
    .review-hero::before {
        right: 12px;
        top: 14px;
        font-size: 42px;
    }
    .review-hero::after {
        left: 22px;
        bottom: 18px;
    }
    .review-hero h1 {
        font-size: 24px;
    }
    .review-lead {
        font-size: 13px;
        line-height: 1.75;
    }
    .review-section {
        padding: 18px 16px 18px 64px;
        border-radius: 8px;
    }
    .review-section::before {
        left: 14px;
        top: 18px;
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
    .review-section-head h2 {
        font-size: 16px;
    }
    .review-section p {
        font-size: 13px;
        line-height: 1.8;
    }
}
/* =========================================================
   ARTICLE PAGES
========================================================= */
.policy-page {
    min-width: 0;
}
.policy-page > .page-head {
    position: relative;
    overflow: hidden;
    margin: 0 0 16px;
    padding: 34px 36px 30px;
    display: block;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background:
        linear-gradient(90deg, #ff69b4 0 3px, transparent 3px),
        #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.policy-page > .page-head::before {
    content: "CLIPMINT ARTICLE";
    display: block;
    margin: 0 0 10px;
    color: #777;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
}
.policy-page > .page-head h1 {
    position: relative;
    max-width: 720px;
    margin: 0;
    color: #181818;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
    white-space: normal;
}
.policy-body {
    counter-reset: article-step;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.045);
}
.policy-body > p {
    margin: 0;
    padding: 22px 26px;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
}
.policy-body > p:first-child {
    position: relative;
    padding: 24px 28px 24px 58px;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
    color: #333;
    font-weight: 600;
}
.policy-body > p:first-child::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 29px;
    width: 14px;
    height: 14px;
    border: 3px solid #111;
    border-radius: 50%;
    background: #ff69b4;
}
.policy-body > h2 {
    counter-increment: article-step;
    position: relative;
    margin: 0;
    padding: 24px 28px 8px 84px;
    border-top: 1px solid #ececec;
    color: #181818;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
}
.policy-body > h2::before {
    content: counter(article-step, decimal-leading-zero);
    position: absolute;
    left: 28px;
    top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #cfcfcf;
    border-radius: 9px;
    background: #f7f7f7;
    color: #111;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}
.policy-body > h2 + p {
    padding: 0 28px 24px 84px;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
}
.policy-body > p:last-child {
    padding: 22px 28px;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
    text-align: center;
}
.policy-body > p:last-child a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 22px;
    border: 1px solid #111;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}
.policy-body > p:last-child a:hover {
    border-color: #ff69b4;
    background: #ff69b4;
    color: #111;
    text-decoration: none;
}
@media (max-width: 600px) {
    .policy-page > .page-head {
        padding: 26px 22px 24px;
        border-radius: 9px;
    }
    .policy-page > .page-head h1 {
        padding-right: 42px;
        font-size: 20px;
    }
    .policy-body {
        border-radius: 9px;
    }
    .policy-body > p:first-child {
        padding: 20px 18px 20px 46px;
    }
    .policy-body > p:first-child::before {
        left: 18px;
        top: 25px;
        width: 12px;
        height: 12px;
    }
    .policy-body > h2 {
        padding: 20px 18px 7px 64px;
        font-size: 16px;
    }
    .policy-body > h2::before {
        left: 16px;
        top: 18px;
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }
    .policy-body > h2 + p {
        padding: 0 18px 20px 64px;
        font-size: 13px;
        line-height: 1.8;
    }
    .policy-body > p:last-child {
        padding: 18px;
    }
    .policy-body > p:last-child a {
        width: 100%;
    }
}



/* ===========================
   parts/za_sidebar.php から移動したスタイル
=========================== */
.clip-sidebar {
    align-self: stretch;
    min-width: 0;
}
.clip-ranking {
    overflow: hidden;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.clip-ranking-head {
    padding: 18px 16px 16px;
    background: #111;
    color: #fff;
    border-bottom: 3px solid #ff69b4;
}
.clip-ranking-head p {
    margin: 0 0 4px;
    color: #ff69b4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}
.clip-ranking-head h2 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.35;
}
.clip-ranking-list {
    display: grid;
}
.clip-ranking-item {
    position: relative;
    display: grid;
    grid-template-columns: 30px 64px minmax(0,1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 10px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    color: #222;
    text-decoration: none;
}
.clip-ranking-item:hover {
    background: #fffef0;
    color: #111;
    text-decoration: none;
}
.clip-ranking-item:last-child {
    border-bottom: 0;
}
.clip-ranking-thumb {
    position: relative;
    width: 64px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 5px;
    background: #f1f1f1;
}
.clip-ranking-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.clip-ranking-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}
.clip-ranking-item:nth-child(1) .clip-ranking-no {
    background: #d4a900;
}
.clip-ranking-item:nth-child(2) .clip-ranking-no {
    background: #8e969d;
}
.clip-ranking-item:nth-child(3) .clip-ranking-no {
    background: #a86634;
}
.clip-ranking-copy {
    min-width: 0;
    align-self: center;
}
.clip-ranking-copy strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #222;
    font-size: 12px;
    line-height: 1.45;
}
.clip-ranking-copy small {
    display: block;
    overflow: hidden;
    margin-top: 5px;
    color: #777;
    font-size: 11px;
    line-height: 1.4;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.clip-ranking-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid #ddd;
    background: #f7f7f7;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}
.clip-ranking-more::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #ff69b4;
    transition: transform .2s ease, border-left-color .2s ease;
}
.clip-ranking-more:hover {
    background: #111;
    color: #fff;
    text-decoration: none;
}
.clip-ranking-more:hover::before {
    border-left-color: #ff69b4;
    transform: translateX(3px);
}
.clip-ranking-empty {
    margin: 0;
    padding: 18px 14px;
    color: #666;
    font-size: 12px;
    line-height: 1.7;
}
.clip-ranking + .clip-ranking {
    margin-top: 18px;
}
.clip-actress-list {
    display: grid;
}
.clip-actress-item {
    display: grid;
    grid-template-columns: 28px 52px minmax(0,1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 10px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    color: #222;
    text-decoration: none;
}
.clip-actress-item:hover {
    background: #fffef0;
    color: #111;
    text-decoration: none;
}
.clip-actress-item:last-child {
    border-bottom: 0;
}
.clip-actress-thumb {
    display: block;
    width: 52px;
    height: 52px;
    overflow: hidden;
    border-radius: 50%;
    background: #f1f1f1;
}
.clip-actress-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.clip-actress-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}
.clip-actress-item:nth-child(1) .clip-actress-no {
    background: #d4a900;
}
.clip-actress-item:nth-child(2) .clip-actress-no {
    background: #8e969d;
}
.clip-actress-item:nth-child(3) .clip-actress-no {
    background: #a86634;
}
.clip-actress-copy {
    min-width: 0;
}
.clip-actress-copy strong {
    display: block;
    overflow: hidden;
    color: #222;
    font-size: 13px;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.clip-actress-copy small {
    display: block;
    margin-top: 2px;
    color: #777;
    font-size: 11px;
    line-height: 1.4;
}
.clip-mini-rankings {
    position: sticky;
    top: 20px;
    height: max-content;
    margin-top: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.clip-mini-ranking + .clip-mini-ranking {
    border-top: 1px solid #e3e3e3;
}
.clip-mini-ranking h2 {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin: 0;
    padding: 12px 14px 10px;
    background: #111;
    color: #fff;
    border-bottom: 3px solid #ff69b4;
    font-size: 15px;
    line-height: 1.35;
}
.clip-mini-ranking-title-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.clip-mini-ranking-title-link::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #ff69b4;
    transition: transform .2s ease;
}
.clip-mini-ranking-title-link:hover {
    border-color: #ff69b4;
    background: #ff69b4;
    color: #111;
    text-decoration: none;
}
.clip-mini-ranking-title-link:hover::before {
    border-left-color: #111;
    transform: translateX(2px);
}
.clip-mini-ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.clip-mini-ranking-list li + li {
    border-top: 1px solid #ededed;
}
.clip-mini-ranking-list a {
    display: grid;
    grid-template-columns: 28px minmax(0,1fr);
    gap: 8px;
    align-items: center;
    min-width: 0;
    padding: 11px 12px;
    color: #222;
    text-decoration: none;
}
.clip-mini-ranking-list a:hover {
    background: #fffef0;
    color: #111;
    text-decoration: none;
}
.clip-mini-ranking-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}
.clip-mini-ranking-list li:first-child .clip-mini-ranking-no {
    background: #d4a900;
}
.clip-mini-ranking-list li:nth-child(2) .clip-mini-ranking-no {
    background: #8e969d;
}
.clip-mini-ranking-name {
    display: block;
    overflow: hidden;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.clip-mini-ranking-empty {
    margin: 0;
    padding: 12px 14px;
    color: #777;
    font-size: 12px;
}
@media (max-width: 1000px) {
    .clip-mini-rankings {
        position: static;
        top: auto;
    }
    .clip-ranking-list,
    .clip-actress-list {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .clip-ranking-item:nth-child(odd),
    .clip-actress-item:nth-child(odd) {
        border-right: 1px solid #e8e8e8;
    }
}
@media (max-width: 600px) {
    .clip-ranking-list,
    .clip-actress-list {
        grid-template-columns: 1fr;
    }
    .clip-ranking-item:nth-child(odd),
    .clip-actress-item:nth-child(odd) {
        border-right: 0;
    }
}


/* ===========================
   za_actress_ranking.php から移動したスタイル
=========================== */
.actress-ranking-list {
    display: grid;
    gap: 10px;
}
.actress-ranking-item {
    display: grid;
    grid-template-columns: 48px 72px minmax(0,1fr) auto;
    gap: 14px;
    align-items: center;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: #222;
    text-decoration: none;
}
.actress-ranking-item:hover {
    border-color: #111;
    background: #fffef0;
    color: #111;
    text-decoration: none;
}
.actress-ranking-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.actress-ranking-item:nth-child(1) .actress-ranking-no {
    background: #d4a900;
}
.actress-ranking-item:nth-child(2) .actress-ranking-no {
    background: #8e969d;
}
.actress-ranking-item:nth-child(3) .actress-ranking-no {
    background: #a86634;
}
.actress-ranking-thumb {
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 50%;
    background: #f1f1f1;
}
.actress-ranking-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.actress-ranking-copy {
    min-width: 0;
}
.actress-ranking-copy strong {
    display: block;
    overflow: hidden;
    color: #222;
    font-size: 16px;
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.actress-ranking-copy small {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}
.actress-ranking-count {
    min-width: 92px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f1f1f1;
    color: #555;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .actress-ranking-item {
        grid-template-columns: 36px 58px minmax(0,1fr);
        gap: 9px;
        padding: 10px;
    }
    .actress-ranking-no {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .actress-ranking-thumb {
        width: 58px;
        height: 58px;
    }
    .actress-ranking-copy strong {
        font-size: 14px;
    }
    .actress-ranking-copy small {
        font-size: 11px;
    }
    .actress-ranking-count {
        display: none;
    }
}


/* ===========================
   za_item.php から移動したスタイル
=========================== */
.breadcrumb {
    margin: 0 0 14px;
    color: #666;
    font-size: 12px;
    line-height: 1.6;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb li {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}
.breadcrumb li + li::before {
    content: ">";
    margin-right: 6px;
    color: #999;
}
.breadcrumb a {
    color: inherit;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb [aria-current="page"] {
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.work-detail-description-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
}
.work-detail-gallery {
    margin: 22px 0 0;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}
.work-detail-gallery h2 {
    margin: 0 0 14px;
    color: #222;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
}
.work-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.work-detail-gallery-button {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: zoom-in;
    aspect-ratio: 4 / 3;
}
.work-detail-gallery-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.work-detail-gallery-button:hover img {
    transform: scale(1.04);
}
.work-gallery-dialog {
    width: min(1100px, calc(100% - 32px));
    max-width: 1100px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
}
.work-gallery-dialog::backdrop {
    background: rgba(0, 0, 0, .86);
}
.work-gallery-dialog-inner {
    position: relative;
    padding: 42px 16px 16px;
    border-radius: 10px;
    background: #111;
}
.work-gallery-dialog img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 82vh;
    margin: 0 auto;
}
.work-gallery-dialog-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 22px;
    line-height: 28px;
    cursor: pointer;
}
@media (max-width: 600px) {
    .work-detail-description-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .work-detail-gallery {
        padding: 12px;
    }
    .work-detail-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

}


/* ===========================
   mail/za_contact.php から移動したスタイル
=========================== */
.static-page-wrap{
    max-width:920px;
}

.static-card{
    overflow:hidden;
    background:#fff;
    border:1px solid #dcdcdc;
    border-radius:10px;
    box-shadow:0 1px 0 rgba(0,0,0,.02);
}

.static-card-inner{
    padding:28px 32px;
}

.static-hero{
    display:grid;
    grid-template-columns:58px minmax(0,1fr);
    gap:20px;
    align-items:center;
    padding-bottom:24px;
    border-bottom:1px solid #e5e5e5;
}

.static-hero h1{
    margin:0;
    font-size:28px;
    line-height:1.35;
    letter-spacing:.01em;
}

.static-hero p{
    margin:8px 0 0;
    color:#555;
    font-size:14px;
}

.static-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    color:#222;
    background:#fff3a8;
    border:1px solid #f0d24d;
    border-radius:50%;
    flex:0 0 auto;
}

.static-icon svg{
    width:30px;
    height:30px;
    stroke:currentColor;
}

.contact-form{
    margin-top:26px;
}

.form-row{
    margin:0 0 22px;
}

.form-row label{
    display:block;
    margin:0 0 8px;
    color:#111;
    font-size:14px;
    font-weight:800;
}

.req{
    display:inline-block;
    margin-left:7px;
    padding:1px 6px 2px;
    color:#fff;
    background:#ff7b7b;
    border-radius:4px;
    font-size:11px;
    line-height:1.4;
    vertical-align:1px;
}

.form-row input,
.form-row textarea{
    display:block;
    width:100%;
    max-width:none;
    padding:12px 13px;
    border:1px solid #cfcfcf;
    border-radius:6px;
    background:#fff;
    color:#222;
    font:inherit;
    font-size:15px;
    outline:none;
    transition:border-color .15s ease,box-shadow .15s ease;
}

.form-row input{
    height:44px;
}

.form-row textarea{
    min-height:180px;
    resize:vertical;
}

.form-row input:focus,
.form-row textarea:focus{
    border-color:#e3bd00;
    box-shadow:0 0 0 3px rgba(245,205,0,.20);
}

.submit-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    width:100%;
    min-height:48px;
    margin:8px 0 0;
    padding:13px 18px;
    border:1px solid #444;
    border-radius:6px;
    background:#555;
    color:#fff;
    font-size:16px;
    font-weight:800;
    line-height:1.4;
    cursor:pointer;
    transition:background .15s ease;
}

.submit-btn:hover{
    background:#333;
}

.submit-btn:active{
    transform:translateY(1px);
}

.submit-btn svg{
    width:18px;
    height:18px;
    fill:currentColor;
}

.contact-note{
    margin-top:28px;
    padding:18px 20px;
    background:#fffbea;
    border:1px solid #eadb8a;
    border-radius:8px;
}

.contact-note h2{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0 0 8px;
    font-size:15px;
}

.contact-note h2 svg{
    width:16px;
    height:16px;
    fill:currentColor;
}

.contact-note p{
    margin:0 0 8px;
    font-size:13px;
    line-height:1.7;
}

.contact-note p:last-child{
    margin-bottom:0;
}

@media (max-width:700px){

    .static-page-wrap{
        max-width:none;
    }

    .static-card-inner{
        padding:20px 16px;
    }

    .static-hero{
        grid-template-columns:46px minmax(0,1fr);
        gap:14px;
    }

    .static-hero h1{
        font-size:24px;
    }

    .static-icon{
        width:44px;
        height:44px;
    }

    .static-icon svg{
        width:25px;
        height:25px;
    }

    .form-row textarea{
        min-height:160px;
    }

}


/* ===========================
   ChocoMint 共通メディア表示
=========================== */
.sample-player-wrap {
    position: relative;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 60%;
}
.sample-player-frame {
    position: absolute;
    top: 0;
    left: 50%;
    width: 720px;
    max-width: 100%;
    transform: translateX(-50%);
}
.responsive-media {
    max-width: 100%;
    height: auto;
}


/* ===========================
   お問い合わせ完了・スパム対策
=========================== */
.contact-complete-title {
    margin-top: 0;
}
.contact-complete-back {
    margin-top: 28px;
    text-align: center;
}
.contact-honeypot {
    display: none;
}