/*
Theme Name: SOAR Photo Session
Theme URI: https://soar-photosession.com
Author: SOAR
Author URI: https://soar-photosession.com
Description: SOAR PHOTO SESSION オリジナルテーマ - 撮影会の紹介、モデル一覧、スケジュール管理
Version: 1.0.1
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soar-theme
*/

/* ===========================
   SOAR — スマホファースト
   yolu.jp風 3カラムレイアウト
   =========================== */

:root {
    --sky-pink: #f8d0e0;
    --sky-lavender: #e8d5f0;
    --sky-blue: #c5dff8;
    --text-dark: #2d3748;
    --text-soft: #5a6578;
    --text-light: #8896a6;
    --white: #ffffff;
    --phone-width: 480px;
    --gradient-sky: linear-gradient(135deg, #6bb8e0 0%, #e8a0c0 25%, #b8a0d8 50%, #5ea8e0 75%, #c0a0d0 100%);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.8;
    background: #b0a0cc;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

/* 背景グラデーション */
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: #a890c8;
    min-height: -webkit-fill-available;
}

.bg-gradient::after {
    display: none;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    will-change: transform;
    pointer-events: none;
}

/* --- ノイズオーバーレイ（最前面） --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.12;
}

/* --- 星空レイヤー --- */
.stars-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    min-height: -webkit-fill-available;
}

.star-particle {
    position: absolute;
    border-radius: 50%;
    background: white;
    pointer-events: none;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.6);
    }

    50% {
        opacity: 0.9;
        transform: scale(1);
    }
}

@keyframes starTwinkleSlow {

    0%,
    100% {
        opacity: 0.05;
        transform: scale(0.4);
    }

    30% {
        opacity: 0.7;
        transform: scale(1.1);
    }

    70% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes starGlow {

    0%,
    100% {
        opacity: 0.2;
        box-shadow: 0 0 2px 0px rgba(255, 255, 255, 0.3);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.5);
    }
}

/* --- スパークル --- */
.sparkle-container {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    min-height: -webkit-fill-available;
}

/* 4芒星（ロゴと同じダイヤモンド形状）SVGで描画 */
.sparkle-star {
    position: absolute;
    pointer-events: none;
}

.sparkle-star svg {
    display: block;
    width: 100%;
    height: 100%;
    filter: blur(0.3px);
}

/* シンプルな丸 */
.sparkle-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 3px 0.5px rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* アニメーション - 複数バリエーション */
@keyframes twinkleA {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.2) rotate(0deg);
    }

    15% {
        opacity: 0.9;
        transform: scale(1) rotate(10deg);
    }

    40% {
        opacity: 0.3;
        transform: scale(0.6) rotate(-5deg);
    }

    70% {
        opacity: 0.7;
        transform: scale(0.85) rotate(3deg);
    }
}

@keyframes twinkleB {

    0%,
    100% {
        opacity: 0.05;
        transform: scale(0.3);
    }

    30% {
        opacity: 0.8;
        transform: scale(1.1);
    }

    60% {
        opacity: 0.15;
        transform: scale(0.5);
    }

    85% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

@keyframes twinkleC {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.1) rotate(45deg);
    }

    25% {
        opacity: 0.6;
        transform: scale(0.8) rotate(20deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    75% {
        opacity: 0.4;
        transform: scale(0.65) rotate(-15deg);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* ===========================
   3カラムレイアウト (PC)
   =========================== */
.app-shell {
    display: flex;
    min-height: 100vh;
    justify-content: center;
}

/* --- 左サイドパネル (PC固定) --- */
.side-left {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc((100vw - var(--phone-width)) / 2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2.5rem;
    z-index: 10;
}

.side-left-logo {
    height: 40px;
    align-self: flex-start;
}

.side-left-copy {
    writing-mode: vertical-rl;
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    line-height: 2;
    color: rgba(255, 255, 255, 0.92);
    align-self: flex-start;
    margin-top: 2rem;
    text-shadow: 0 1px 10px rgba(80, 50, 120, 0.5);
}

.side-left-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

/* --- 右サイドパネル (PC固定) --- */
.side-right {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: calc((100vw - var(--phone-width)) / 2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2.5rem;
    z-index: 10;
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.side-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
    text-shadow: 0 1px 8px rgba(80, 50, 120, 0.45);
}

.side-nav a:hover {
    color: white;
}

.side-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.side-social a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.side-social a:hover {
    color: white;
}

.side-footer {
    margin-top: auto;
}

.side-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.side-footer-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.side-footer-copy {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 1rem;
}

/* --- 中央コンテンツ (スマホ幅) --- */
.phone-frame {
    width: var(--phone-width);
    min-height: 100vh;
    position: relative;
    z-index: 5;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===========================
   コンテンツ (スマホ幅内)
   =========================== */

/* --- Hero --- */
.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform-origin: center center;
}

/* ヒーロー→グラデーション フェード用オーバーレイ */
.hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #6bb8e0 0%, #e8a0c0 25%, #b8a0d8 50%, #5ea8e0 75%, #c0a0d0 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(200, 180, 240, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem 30vh;
}

.hero-catch {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 1.6rem;
    color: white;
    line-height: 2;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.hero-catch-en {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3.5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: 0.05em;
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.hero-scroll span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    margin: 0.5rem auto 0;
}

/* --- Section base --- */
.section {
    padding: 4rem 1.5rem;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 6px rgba(80, 50, 120, 0.5);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
    color: white;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 12px rgba(80, 50, 120, 0.5);
}

/* --- Post Hero Content --- */
.post-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 15vh;
}

/* --- Message --- */
.message-section {
    background: transparent;
}

.message-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 2.2;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 10px rgba(80, 50, 120, 0.5);
}

.message-body {
    font-size: 0.85rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 6px rgba(80, 50, 120, 0.45);
}

.message-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-top: 2rem;
}

.message-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
}

/* 窓の光彩グロー */
.message-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center,
            rgba(200, 170, 230, 0.35) 0%,
            rgba(180, 150, 220, 0.15) 40%,
            transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* 窓の内側エッジぼかし */
.message-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow:
        inset 0 0 30px rgba(120, 90, 170, 0.3),
        inset 0 0 60px rgba(100, 80, 160, 0.15);
    z-index: 3;
    pointer-events: none;
}

/* --- Models --- */
.models-section {
    background: transparent;
}

.models-carousel {
    overflow: hidden;
    width: 100%;
    margin: 0 -1.5rem;
    padding: 0 0;
    width: calc(100% + 3rem);
}

.models-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.models-track.is-dragging {
    cursor: grabbing;
}

.models-track img {
    pointer-events: none;
}

.model-card {
    flex-shrink: 0;
    width: 220px;
}

.model-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 0;
    overflow: hidden;
}

.model-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-photo img {
    transform: scale(1.05);
}

.model-name {
    font-weight: 400;
    font-size: 0.8rem;
    color: white;
    margin-top: 0.6rem;
    text-align: center;
    text-shadow: 0 1px 8px rgba(80, 50, 120, 0.5);
}

.model-name-en {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    margin-top: 0.15rem;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 6px rgba(80, 50, 120, 0.45);
}

/* --- Model Archive (一覧ページ) --- */
.archive-models-grid,
.archive-models-grid.reveal,
.archive-models-grid.reveal.is-visible {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 0.8rem;
    padding: 0 1rem;
}

.archive-model-card {
    display: block;
    text-decoration: none;
    color: white;
    min-width: 0;
    overflow: hidden;
}

.archive-model-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2px;
}

.archive-model-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.archive-model-card:hover .archive-model-photo img {
    transform: scale(1.05);
}

.archive-model-name {
    font-weight: 400;
    font-size: 0.8rem;
    color: white;
    margin-top: 0.5rem;
    text-align: center;
    text-shadow: 0 1px 8px rgba(80, 50, 120, 0.5);
}

.archive-model-name-en {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 0.1rem;
    letter-spacing: 0.06em;
}


.schedule-section {
    background: transparent;
}

.schedule-timeline {
    position: relative;
    padding-left: 2rem;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-item-text {
    flex: 1;
}

.timeline-item:hover {
    transform: translateX(6px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.9rem;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.timeline-date {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    text-shadow: 0 1px 10px rgba(80, 50, 120, 0.5);
    font-feature-settings: 'lnum';
}

.timeline-day {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 0.4rem;
    text-shadow: 0 1px 6px rgba(80, 50, 120, 0.45);
}

.timeline-status {
    display: inline-block;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-top: 0.4rem;
}

.timeline-status--open {
    background: rgba(22, 163, 106, 0.2);
    color: #86efac;
}

.timeline-status--soon {
    background: rgba(217, 119, 6, 0.2);
    color: #fcd34d;
}

.timeline-status--closed {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
}

.timeline-reserve {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
    text-shadow: 0 1px 6px rgba(80, 50, 120, 0.4);
}

.timeline-action {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-top: 0.3rem;
    transition: color 0.3s;
}

.timeline-action:hover {
    color: white;
}

.timeline-img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 0;
    opacity: 0.85;
    flex-shrink: 0;
}

/* --- Recruit CTA --- */
.recruit-section {
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
}

.recruit-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 12px rgba(80, 50, 120, 0.5);
}

.recruit-sub {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 8px rgba(80, 50, 120, 0.45);
}

.recruit-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    line-height: 2;
    margin-bottom: 2rem;
    text-shadow: 0 1px 6px rgba(80, 50, 120, 0.4);
}

/* --- News --- */
.news-section {
    background: transparent;
}

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

.news-row {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    transition: padding-left 0.3s;
}

.news-row:hover {
    padding-left: 0.5rem;
}

.news-date {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    width: 6rem;
    text-shadow: 0 1px 5px rgba(80, 50, 120, 0.4);
}

.news-title-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(80, 50, 120, 0.4);
}

/* --- Mobile Footer (phone frame内) --- */
.phone-footer {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    background: transparent;
}

.phone-footer-logo {
    height: 28px;
    margin: 0 auto 1.5rem;
    display: block;
    opacity: 0.7;
}

.phone-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.phone-footer-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.phone-footer-copy {
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.2);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 1px 6px rgba(80, 50, 120, 0.4);
}

.btn:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.btn--white {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost-white {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

/* --- Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 2rem;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* フローティング募集バナー */
.recruit-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 450px;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(160, 130, 200, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 40%, rgba(140, 160, 220, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 90% 50% at 50% 80%, rgba(180, 140, 200, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 70% 20%, rgba(200, 170, 220, 0.35) 0%, transparent 60%),
        linear-gradient(135deg, rgba(150, 120, 190, 0.9) 0%, rgba(130, 140, 200, 0.85) 50%, rgba(160, 130, 200, 0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.recruit-banner.is-hidden {
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
}

.recruit-banner-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: white;
}

.recruit-banner-text {
    text-align: center;
}

.recruit-banner-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.recruit-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: white;
    letter-spacing: 0.05em;
}

.recruit-banner-arrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.recruit-banner-link:hover .recruit-banner-arrow {
    transform: translateX(4px);
}

.recruit-banner-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #7a5a9a;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.recruit-banner-close:hover {
    background: white;
    transform: scale(1.1);
}

/* ハンバーガー＆モバイルメニュー — デフォルトPC版で非表示 */
.hamburger,
.mobile-menu {
    display: none;
}

/* ===========================
   スマホ表示 — サイドパネル非表示
   =========================== */
@media (max-width: 768px) {

    .side-left,
    .side-right {
        display: none;
    }

    .phone-frame {
        width: 100%;
        border: none;
    }

    .hero {
        height: 100dvh;
        height: 100lvh;
    }

    .hero-content {
        padding: 0 1.5rem 40vh;
    }

    .hero-scroll {
        bottom: 5rem;
    }

    /* ハンバーガーメニュー（モバイルのみ） */
    .hamburger {
        position: fixed;
        top: 1.25rem;
        right: 1.25rem;
        z-index: 10001;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        transition: background 0.3s ease;
    }

    .hamburger:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .hamburger span {
        display: block;
        width: 16px;
        height: 1.5px;
        background: white;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(2px, 2px);
    }

    .hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(2px, -2px);
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 10000;
        background: rgba(120, 90, 160, 0.85);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu a {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobile-menu a:hover {
        color: white;
    }

    .mobile-menu-footer {
        position: absolute;
        bottom: 2rem;
        font-size: 0.6rem;
        color: rgba(255, 255, 255, 0.35);
        letter-spacing: 0.1em;
    }
}

/* ===========================
   WordPress 管理バー調整
   =========================== */
body.admin-bar .side-left,
body.admin-bar .side-right {
    top: 32px;
}

@media screen and (max-width: 782px) {

    body.admin-bar .side-left,
    body.admin-bar .side-right {
        top: 46px;
    }
}

/* WordPress デフォルトスタイルの上書き */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}