.pinkbuta-custom .logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    /* 1rem = 10px */
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}


.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 40px;
}

.entry-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

img {
    box-shadow: none !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Headings - Basic */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    text-align: center;
}

/* Size scale only */
h1 {
    font-size: 3.2rem !important;
}

h2 {
    font-size: 2.8rem !important;
}

h3 {
    font-size: 2.4rem !important;
}

h4 {
    font-size: 2rem !important;
}

h5 {
    font-size: 1.8rem !important;
}

h6 {
    font-size: 1.6rem !important;
    color: var(--text-light);
    font-weight: 600;
}

/* Reset decorative heading effects */
h1::before,
h1::after,
h2::before,
h2::after,
h3::before {
    content: none;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ==========================================================================
   Color Scheme
   ========================================================================== */




:root {
    --primary-color: #ff6b9d;
    --primary-dark: #e91e63;
    --secondary-color: #f06292;
    --accent-color: #ffb3d1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #fdf2f8;
    --border-color: #e1e8ed;
    --success-color: #1f2156;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   記事に使えるスタイル
   ========================================================================== */
/* 黄色いボックス */
.box25 {
    position: relative;
    overflow: hidden;
    background: #fff0cd;
    box-shadow: 0px 0px 0px 5px #fff0cd;
    border: dashed 2px white;
    padding: 0.2em 0.5em;
    color: #454545;
    margin: 1em 0;
}

.box25:after {
    position: absolute;
    content: '';
    right: -7px;
    top: -7px;
    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: #ffdb88 #fff #ffdb88;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.box25 p {
    margin: 0;
    padding: 0;
}

/* タイトル帯（ピンクの見出しバー） */
.box-title {
    background: #eb6ea5;
    color: #ffffff;
    padding: 6px 15px;
    margin-bottom: 0;
    margin-top: 1rem;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
}

/* 本文ボックス */
.box-content {
    background: #fbe4ee;
    padding: 15px;
    border-radius: 0 0 8px 8px;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ボタン */
.article-btn {
    display: flex;
    justify-content: center;
    /* 横中央 */
    align-items: center;
    /* 縦中央 */
    padding: 1rem 2.5rem;
    width: fit-content;
    margin: 0 auto;
    background: #f06292;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 10px rgba(240, 98, 146, 0.3);
    transition: all 0.3s ease;
}

.article-btn:hover {
    background: #ec407a;
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(240, 98, 146, 0.2);
}

/* サブボタン */
.article-btn-sub {

    display: flex;
    justify-content: center;
    /* 横中央 */
    align-items: center;
    /* 縦中央 */
    padding: 1rem 2.5rem;
    width: fit-content;
    margin: 0 auto;
    background: #fff;
    color: #f06292;
    border: 2px solid #f06292;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 10px rgba(240, 98, 146, 0.3);
    transition: all 0.3s ease;
}




.article-btn-sub:hover {
    background: #f06292;
    color: #fff;
    transform: translateY(2px);
}

/* ハイライト */
.article-highlight {
    background: linear-gradient(transparent 60%,
            #fffeb5 60%);
    font-weight: 700;
    padding: 0 0.2em;
}

/* 注意ボックス */
.article-warning {
    background: #fff8e1;
    border-left: 5px solid #ff9800;
    padding: 1.5rem;
}


.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .align-center {
        flex-direction: column;
        /* 縦並びにする */
    }
}


/* =========================================================
   PC：3列 / モバイル：2列 グリッド
   ========================================================= */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* さらに小さいスマホ（任意） */
@media (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* グリッド内アイテム例 */
.grid-item {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}












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

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
    position: relative;
}

/* ==========================================================================
   Color Scheme
   ========================================================================== */

:root {
    --primary-color: #ff6b9d;
    --primary-dark: #e91e63;
    --secondary-color: #f06292;
    --accent-color: #ffb3d1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #fdf2f8;
    --border-color: #e1e8ed;
    --success-color: #4caf50;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}



.works {
    padding: 0;
    background: var(--white);
}

.works-categories,
.sub-categories,
.area-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

button.focus {
    background: white; 
}
.works-categories .category-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,107,157,0.18);
  border-color: #ff6fa5;
}

.category-btn{
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #d9d9d9;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    color: #666666;
}

.category-btn.active {
    background: #ff6fa5;
    border-color: #ff6fa5;
    color: #ffffff;
}

.category-btn:not(.active){
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #d9d9d9;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    color: #666666;
}


.category-btn:hover {
    opacity: 0.8;
}

.area-tag-btn {
    padding: 1rem 2rem;
    background: #62c570;
    border: 3px #3c9448;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    color: #ffffff;
}

.area-tag-btn:hover{
    opacity: 0.5;
}

.area-tag-btn.active {
    background: #ffffff;
    border-color: #62c570;
    color: var(--text-light);
    border: 3px solid #3c9448;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.work-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.work-content {
    padding: 2rem;
}

.work-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.work-description {
    color: var(--text-light);
    font-size: 1.4rem;
    line-height: 1.5;
}

.work-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

/* FAQ More Button */
.faq-more {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
}

.faq-more .btn {
    min-width: 200px;
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-more {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .faq-more .btn {
        min-width: 160px;
        padding: 1rem 2rem;
        font-size: 1.4rem;
    }
}

#ez-toc-container,
.ez-toc-container {
    display: none !important;
}

/* Header-only tuning moved to header.css */

@media (min-width: 993px) {

    .ast-separate-container #primary,
    .ast-separate-container.ast-left-sidebar #primary,
    .ast-separate-container.ast-right-sidebar #primary {
        margin: 1.5em 0 !important;
        /* ここを 0 にすると余白ゼロ */
    }
}

/* カテゴリーページの背景色を白に統一 */
body.category.ast-separate-container,
body.category.ast-separate-container .site,
body.category.ast-separate-container .site-content,
body.category.ast-separate-container .ast-container,
body.category.ast-separate-container #primary {
    background: #ffffff !important;
}

.sharedaddy,
.sd-sharing,
.jp-sharing-input-touch,
.share-buttons,
.social-share,
.sns-share,
.heateor_sss_sharing_container {
    display: none !important;
}

:root {
    --ast-global-color-0: #ff6b9d;
    --ast-global-color-1: #f06292;
    --ast-global-color-2: #2c3e50;
    --ast-global-color-3: #7f8c8d;
    --ast-global-color-4: #ffffff;
    --ast-global-color-5: #fdf2f8;
    --ast-global-color-6: #e1e8ed;
    --ast-global-color-7: #4caf50;
    --ast-global-color-8: #333333;
    --ast-global-color-9: #000000;
}

/* Hatena / sb_* 系のデフォルトボタンを非表示 */
.sb_hatena,
.sb_icon,
.sb_default,
.sb_hatebu,
.hatena-bookmark-button,
a.hatena-bookmark-button,
iframe[src*="hatena.ne.jp"] {
    display: none !important;
    visibility: hidden !important;
}

/* 疑似要素で出るアイコン/ラベルも消す */
.sb_hatena::before,
.sb_hatena::after,
.sb_icon::before,
.sb_icon::after {
    content: none !important;
    display: none !important;
}

/* 全ページ: 固定ヘッダーぶん本文開始位置を下げる */
:root {
    --pb-header-offset: 120px;
    /* JSで上書きされる初期値 */
}

#content,
.site-content {
    padding-top: var(--pb-header-offset) !important;
}

/* 記事系ページはヘッダー2段ぶんを少し多めに確保 */
body.single #content,
body.single .site-content,
body.single-post #content,
body.single-post .site-content,
body.blog #content,
body.blog .site-content,
body.archive #content,
body.archive .site-content {
    padding-top: calc(var(--pb-header-offset) + 20px) !important;
}

/* WP管理バー表示時の補正 */
body.admin-bar #content,
body.admin-bar .site-content {
    padding-top: calc(var(--pb-header-offset) + 32px) !important;
}

body.admin-bar.single #content,
body.admin-bar.single .site-content,
body.admin-bar.single-post #content,
body.admin-bar.single-post .site-content,
body.admin-bar.blog #content,
body.admin-bar.blog .site-content,
body.admin-bar.archive #content,
body.admin-bar.archive .site-content {
    padding-top: calc(var(--pb-header-offset) + 52px) !important;
}

@media (max-width: 782px) {

    body.admin-bar #content,
    body.admin-bar .site-content {
        padding-top: calc(var(--pb-header-offset) + 46px) !important;
    }

    body.admin-bar.single #content,
    body.admin-bar.single .site-content,
    body.admin-bar.single-post #content,
    body.admin-bar.single-post .site-content,
    body.admin-bar.blog #content,
    body.admin-bar.blog .site-content,
    body.admin-bar.archive #content,
    body.admin-bar.archive .site-content {
        padding-top: calc(var(--pb-header-offset) + 66px) !important;
    }
}

/* Works grid: スマホ2列強制（ベーススタイル上書き対策） */
@media screen and (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .work-card .work-btn {
        font-size: 11px;
        padding: 5px 10px;
        margin-top: 8px;
        margin-bottom: 0;
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        min-height: unset;
    }

    .work-card .work-content {
        padding: 6px 8px !important;
    }
}

.works-categories .category-btn {
    transition: all 0.35s ease;
}

/* 選択時: 他ボタンをフェードアウト */
.works-categories.sub-active .category-btn:not(.active) {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
    width: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
    border-width: 0;
    overflow: hidden;
}

/* 選択ボタンをふわっと上に */
.category-btn.active.has-sub {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(255, 107, 157, 0.35);
}

/* サブカテゴリコンテナ */
.sub-categories {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-bottom 0.4s ease;
}

.sub-categories.visible {
    max-height: 120px;
    opacity: 1;
    margin-bottom: 3rem;
}

/* サブボタン本体（薄緑） */
.sub-category-btn {
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 2px solid #8dc98a;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.3rem;
    color: #4a8a46;
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.35s ease;
}

.sub-categories.visible .sub-category-btn {
    transform: translateY(0);
    opacity: 1;
}

/* 浮かび上がりに時間差 */
.sub-categories.visible .sub-category-btn:nth-child(1) {
    transition-delay: 0.05s;
}

.sub-categories.visible .sub-category-btn:nth-child(2) {
    transition-delay: 0.12s;
}

.sub-categories.visible .sub-category-btn:nth-child(3) {
    transition-delay: 0.19s;
}

.sub-categories.visible .sub-category-btn:nth-child(4) {
    transition-delay: 0.26s;
}

.sub-category-btn.active,
.sub-category-btn:hover {
    background: #8dc98a;
    border-color: #8dc98a;
    color: #fff;
}



.artist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

/* グリッド内アイテム例 */
.artist-grid-item {
    background: #fff;
    border-radius: 8px;
}

.artist-grid-item {
    position: relative;
}

.price-label {
    position: absolute;
    top: 0px;
    right: 0px;

    background: rgba(0, 0, 0, 0.7);
    color: #fff;

    font-size: 12px;
    font-weight: bold;

    padding: 4px 8px;
    border-radius: 20px;

    z-index: 2;
}

@media (max-width: 600px) {
    .price-label {
        font-size: 7px;
        padding: 2px 3px;
        top: 0px;
        right: 3px;
    }
}

.artist-info {
    margin: 16px 0;
    border-radius: 12px;
    padding: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.info-badge {
    background: #ffe8e8;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
}


.container {
    padding: 0 !important;
}

@media (max-width: 768px) {
    .entry-content {
        padding: 0 !important;
    }

    .entry-content>.wp-block-group,
    .entry-content>.wp-block-cover,
    .entry-content>.wp-block-columns {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
    }
}

.category-btn.highlight {
  background: #ff293f;
  border-color: #ff293f;
  color: #ffffff;
}