@import url("./style.css");

/* ===========================
   作家紹介ページ（共通）
   =========================== */

.artist-main {
    background: linear-gradient(180deg, #1c1e22 0%, #2a313b 42%, #6e7d97 100%);
    min-height: 100vh;
    color: #fff;
}

.artist-page {
    width: min(1040px, 100% - 56px);
    margin: 0 auto;
    padding: 140px 0 120px;
    /* ヘッダー固定想定 */
}

.artist-hero {
    text-align: center;
    padding: 10px 0 56px;
}

.artist-name {
    margin: 0 0 42px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    letter-spacing: .14em;
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 600;
}

.artist-hero-img {
    width: min(760px, 100%);
    margin: 0 auto;
    background: rgba(255, 255, 255, .06);
    padding: 26px;
}

.artist-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.artist-lead {
    width: min(860px, 100%);
    margin: 34px auto 0;
    line-height: 2.0;
    font-size: 14px;
    color: rgba(255, 255, 255, .86);
}

.section {
    padding: 78px 0;
   text-align: center;
}
.section h3 {
font-size: 20px;
}
.desc {
text-align: left;
}
.section-title {
    text-align: center;
    margin: 0 0 22px;
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 500;
    letter-spacing: .18em;
}

.section-sub {
    text-align: center;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    letter-spacing: .08em;
}

.card {
    width: min(980px, 100%);
    margin: 0 auto;
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 26px 26px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px 22px;
    font-size: 13px;
    line-height: 1.9;
}

.profile-grid .year {
    opacity: .85;
    letter-spacing: .08em;
}

.profile-grid .desc {
    opacity: .92;
}

.list {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 0 8px;
    list-style: none;
   text-align:center;
}

.list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    font-size: 13px;
    line-height: 1.9;
    opacity: .92;
}

.two-col {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.block h3 {
    margin: 0 0 12px;
    font-size: 18px;
    letter-spacing: .10em;
    font-weight: 600;
}

.block p {
    margin: 0;
    font-size: 13px;
    line-height: 2.0;
    opacity: .90;
}

.block .img {
    margin-top: 22px;
    background: rgba(255, 255, 255, .06);
    padding: 22px;
}

.block .img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sns {
    width: min(980px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.sns a {
    color: rgba(255, 255, 255, .85);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 25px;
}

.nft-grid {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.nft-card {
    background: rgba(0, 0, 0, .10);
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 18px;
}

.nft-card img {
    width: 100%;
    height: auto;
    display: block;
    background: #111;
}

.nft-meta {
    margin-top: 12px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.nft-meta .artist {
    display: block;
    font-size: 14px;
    opacity: .92;
}

.nft-meta .title {
    display: block;
    font-size: 18px;
    margin-top: 6px;
    opacity: .98;
}

/* ===== Drawer（右から出る） ===== */
.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 88vw);
    background: rgba(10, 12, 16, .95);
    border-left: 1px solid rgba(255, 255, 255, .12);
    transform: translateX(105%);
    transition: transform .35s ease;
    z-index: 200;
    padding: 88px 26px 26px;
}

.nav-drawer.is-open {
    transform: translateX(0);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 190;
}

.nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.drawer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-nav a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    letter-spacing: .08em;
    font-size: 14px;
}

.nft_link  {
    color: rgba(255, 255, 255, .92);
    text-decoration: underline;
    letter-spacing: .08em;
   text-align: center;
   font-size: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .nft-grid {
        grid-template-columns: 1fr;
    }

    .artist-page {
        width: min(1040px, 100% - 32px);
    }

    .profile-grid {
        grid-template-columns: 110px 1fr;
    }
}



/* ここから下はTOPページ下5個セット要素のCSS↓ */
/* ========== minor elements (NFT/RWA/Arweave/TBA/SBT) ========== */
.minor-main {
    padding-top: 90px;
    /* header固定想定の余白。合わなければ調整 */
}

.minor-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 90px;
}

.minor-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    min-height: min(520px, 70vh);
    display: grid;
    place-items: center;
    margin: 0 auto 34px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.minor-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero);
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    transform: scale(1.02);
}

.minor-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, .30) 0%, rgba(0, 0, 0, .62) 60%, rgba(0, 0, 0, .78) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, .15), rgba(0, 0, 0, .55));
}

.minor-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 48px 22px;
    max-width: 820px;
    color: #fff;
}

.minor-title {
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: .08em;
    margin: 0 0 14px;
    font-weight: 600;
}

.minor-lead {
    margin: 0;
    line-height: 2.0;
    font-size: 14px;
    opacity: .92;
    white-space: pre-line;
}

.minor-media {
    margin-top: 26px;
    display: grid;
    place-items: center;
    gap: 14px;
}

.minor-media img {
    width: min(520px, 80vw);
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.minor-media-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

@media (min-width: 720px) {
    .minor-media-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .minor-media-grid img {
        width: 100%;
    }
}

.minor-footer-spacer {
    height: 36px;
}
