@charset "UTF-8";
/*
Theme Name: Point_Thema
Theme URI: https://example.com/point-thema
Author: Antigravity
Author URI: https://google.com
Description: Custom theme for Point based on static HTML.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: point-thema
*/

:root {
    --bg: #fcfbf8;
    --fg: #1a1a18;
    --gold: #8B7A2E;
    --gold-faint: rgba(139, 122, 46, 0.05);
    --gold-line: rgba(139, 122, 46, 0.15);
    --dim: #999384;
    --muted: #c4bca8;
    --serif: 'Noto Serif JP', '游明朝', serif;
    --display: 'Cormorant Garamond', serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--serif);
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(139, 122, 46, 0.15);
}

.sp-br {
    display: none;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
}

.dot-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--gold-line);
    pointer-events: none;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(252, 251, 248, 0.92);
    backdrop-filter: blur(12px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--display);
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.3em;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 18px;
    letter-spacing: 0.15em;
    color: var(--dim);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
}


.hero-logo {
    width: clamp(120px, 20vw, 300px);
    max-width: 90%;
    object-fit: contain;
    margin-top: 220px;
    /* ロゴ上の余白 */
    margin-bottom: 180px;
    /* ロゴ下の余白 */
    opacity: 0;
    animation: fadeIn 2s ease-out 0.3s forwards;
}

.hero-tagline {
    font-weight: 200;
    font-size: clamp(26px, 4.2vw, 42px);
    color: var(--gold);
    margin-top: 140px;
    letter-spacing: 0.15em;
    line-height: 2.4;
    opacity: 0;
    animation: fadeIn 2s ease-out 1s forwards;
}

.hero-origin {
    font-weight: 300;
    font-size: clamp(42px, 6.5vw, 72px);
    color: var(--gold);
    margin-top: 96px;
    letter-spacing: 0.12em;
    line-height: 1.5;
    opacity: 0;
    animation: fadeIn 2s ease-out 0.8s forwards;
}

.hero-sub {
    font-weight: 300;
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--dim);
    margin-top: 56px;
    letter-spacing: 0.1em;
    line-height: 2;
    opacity: 0;
    animation: fadeIn 2s ease-out 1.6s forwards;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 2s ease-out 2.4s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

/* SECTIONS */
section {
    padding: 120px 24px;
    position: relative;
}

.container {
    max-width: 940px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--display);
    font-size: 16px;
    letter-spacing: 0.4em;
    color: var(--dim);
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(16px);
}

.section-title {
    font-weight: 200;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: 0.1em;
    line-height: 1.8;
    color: var(--fg);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.section-body {
    font-weight: 300;
    font-size: clamp(22px, 2.2vw, 24px);
    line-height: 2.4;
    color: #5a564e;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
}

.thin-rule {
    width: 28px;
    height: 1px;
    background: var(--gold-line);
    margin: 48px 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.sec-dots {
    position: relative;
}

.sec-dots .sd-1 {
    width: 5px;
    height: 5px;
    top: 60px;
    right: -40px;
    opacity: 0.15;
}

.sec-dots .sd-2 {
    width: 3px;
    height: 3px;
    top: 200px;
    left: -30px;
    opacity: 0.2;
}

.sec-dots .sd-3 {
    width: 7px;
    height: 7px;
    bottom: 80px;
    right: -20px;
    opacity: 0.1;
}

.sec-dots .sr-1 {
    width: 32px;
    height: 32px;
    top: 120px;
    right: -50px;
    opacity: 0.08;
}

/* SCHEDULE */
.schedule-section {
    background: var(--gold-faint);
}

.schedule-head-label {
    font-family: var(--display);
    font-size: clamp(26px, 3.2vw, 43px);
    letter-spacing: 0.05em;
    color: var(--gold);
    text-align: left;
    margin-bottom: 40px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(16px);
}

.schedule-list {
    display: flex;
    flex-direction: column;
}

.schedule-row {
    display: grid;
    grid-template-columns: 160px auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 22px 0;
    border-bottom: 1px solid var(--gold-line);
    opacity: 0;
    transform: translateY(12px);
}

.s-date {
    font-family: var(--display);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--fg);
    line-height: 1.05;
}

.s-date-main {
    display: block;
}

.s-date-day {
    display: block;
    font-size: 0.62em;
    letter-spacing: 0.12em;
    color: var(--dim);
    margin-top: 4px;
}

.s-city {
    font-family: var(--display);
    font-size: 26px;
    letter-spacing: 0.25em;
    color: var(--dim);
    white-space: nowrap;
}

.s-title {
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.05em;
    padding-left: 6px;
    min-width: 0;
}

.s-link {
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-decoration: none;
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--gold-line);
    white-space: nowrap;
    justify-self: start;
    align-self: center;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.s-link:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.s-link.sold-out {
    border-color: var(--muted);
    color: var(--muted);
    background: transparent;
    pointer-events: none;
    opacity: 0.8;
}

.schedule-list .schedule-row:nth-child(n+6) {
    display: none;
}

.schedule-list.expanded .schedule-row:nth-child(n+6) {
    display: grid;
}

.s-more-btn {
    display: block;
    margin: 40px auto 0;
    background: transparent;
    border: none;
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: 0.15em;
    color: var(--dim);
    cursor: pointer;
    border-bottom: 1px solid var(--dim);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
    opacity: 0;
    transform: translateY(16px);
}

.s-more-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* WHO */
.who-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 40px 0;
}

.who-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--gold-line);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.8;
    color: var(--fg);
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateY(12px);
}

/* NODES */
.nodes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gold-line);
    margin: 48px 0;
}

.node {
    background: var(--bg);
    padding: 40px 28px;
    opacity: 0;
    transform: translateY(16px);
    transition: background 0.3s;
    position: relative;
}

.node:hover {
    background: var(--gold-faint);
}

.node-id {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 16px;
}

.node-name {
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.node-city {
    font-family: var(--display);
    font-size: 17px;
    letter-spacing: 0.15em;
    color: var(--dim);
    margin-bottom: 16px;
}

.node-desc {
    font-weight: 300;
    font-size: 18px;
    line-height: 2;
    color: var(--dim);
}

.node-coord {
    font-family: var(--display);
    font-size: 11px;
    color: var(--muted);
    margin-top: 16px;
    letter-spacing: 0.08em;
    opacity: 0.5;
}

.node::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 28px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.15;
}

/* CTA - LINKS */
.cta-section {
    text-align: center;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.cta-mark {
    width: 44px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(16px);
}

.cta-text {
    font-weight: 200;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 2.6;
    color: var(--dim);
    letter-spacing: 0.1em;
    max-width: 400px;
    margin: 0 auto 56px;
    opacity: 0;
    transform: translateY(16px);
}

.cta-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(16px);
}

.cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold-line);
    padding: 14px 40px;
    width: 280px;
    transition: all 0.4s;
}

.cta-link:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.cta-disabled {
    color: var(--gold-line) !important;
    border-color: var(--gold-line) !important;
    pointer-events: none;
    cursor: default;
    position: relative;
}

.cta-disabled::after {
    content: '制作中';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dim);
    font-size: 16px;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.cta-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cta-link:hover svg path {
    fill: var(--bg);
}

.cta-section .cd-1 {
    width: 5px;
    height: 5px;
    top: 20%;
    left: 12%;
    opacity: 0.15;
}

.cta-section .cd-2 {
    width: 8px;
    height: 8px;
    bottom: 25%;
    right: 15%;
    opacity: 0.1;
}

.cta-section .cr-1 {
    width: 36px;
    height: 36px;
    top: 30%;
    right: 10%;
    opacity: 0.06;
}

/* FOOTER */
footer {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--gold-line);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--display);
    font-size: 16px;
    letter-spacing: 0.25em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-family: var(--display);
    font-size: 16px;
    color: var(--muted);
    letter-spacing: 0.15em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

.anim {
    opacity: 1 !important;
    transform: translateY(0) scaleX(1) !important;
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

@media (max-width:768px) {
    .sp-br {
        display: block;
    }

    .nav-logo img {
        height: 28px;
    }

    nav {
        padding: 20px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 12px;
    }

    section {
        padding: 80px 20px;
    }

    .hero-logo {
        margin-top: 120px;
        margin-bottom: 60px;
        /* Pull Origin up */
    }

    .hero-tagline {
        font-size: 16px;
        margin-top: 100px;
        /* Add space below Origin */
    }

    .hero-origin {
        font-size: 24px;
        margin-top: 2em !important;
    }

    .hero-sub {
        font-size: 13px;
        margin-top: 28px;
    }



    .section-label {
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-body {
        font-size: clamp(15px, 4.8vw, 17.5px);
    }

    .schedule-head-label {
        font-size: 22px;
    }

    .schedule-row {
        grid-template-columns: 1fr;
        /* Reset grid */
        display: flex;
        /* Use flexbox */
        flex-wrap: wrap;
        /* Allow wrapping */
        align-items: baseline;
        gap: 12px 20px;
        padding: 20px 0;
    }

    .schedule-list.expanded .schedule-row:nth-child(n+6) {
        display: flex;
    }

    .s-date {
        font-size: 24px;
        width: 100%;
        margin-bottom: 4px;
        display: flex;
        align-items: baseline;
        gap: 8px;
        font-weight: 500;
    }

    .s-date-day {
        margin-top: 0;
        font-size: 0.6em;
        /* Adjust to be relative to the new date size */
    }

    .s-city {
        font-size: 16px;
        width: auto;
        /* 固定幅を解除し、自然な余白（gap）で表示 */
        flex-shrink: 0;
    }

    .s-title {
        font-size: 15px;
    }

    .s-link {
        width: fit-content;
        justify-self: start;
        margin-left: auto;
        /* Push link to right side of 2nd line if space allows, or wrap to 3rd line */
    }

    .who-item {
        font-size: 15px;
    }

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

    .node {
        padding: 24px 12px;
    }

    .node-id {
        font-size: 17px;
    }

    .node-name {
        font-size: 18px;
    }

    .node-desc {
        font-size: 15px;
    }

    .node-coord {
        font-size: 12px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-link {
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .sec-dots .sd-3,
    .sec-dots .sr-1 {
        display: none;
    }
}