/* style.css */
:root {
    --primary: #FEF101;
    /* ベースカラー：イエロー */
    --secondary: #FF3366;
    /* アクセント：ピンク */
    --tertiary: #33CCFF;
    /* アクセント：水色 */
    --bg-light: #FAFAFA;
    --text-main: #222222;
    --text-light: #FFFFFF;
}

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

body {
    font-family: "M PLUS Rounded 1c", "Outfit", sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    /* 新素材bg.pngを背景に設定 */
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    object-fit: contain;
}

.nav a {
    font-family: "Outfit", sans-serif;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 900;
    margin-left: 30px;
    transition: color 0.3s;
}

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

/* Typography & Layout */
.section-title {
    font-family: "Outfit", "M PLUS Rounded 1c", sans-serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    letter-spacing: 2px;
    background: #FFF;
    display: inline-block;
    padding: 10px 30px;
    border: 4px solid var(--text-main);
    border-radius: 50px;
    box-shadow: 6px 6px 0 var(--text-main);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 190px);
    background-color: rgba(254, 241, 1, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: var(--text-main);
    color: var(--primary);
    padding: 12px 30px;
    font-weight: 900;
    border-radius: 50px;
    font-size: 1.3rem;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 #FFF;
}

.text-pop {
    color: var(--secondary);
    display: inline-block;
    animation: pop 2s infinite ease-in-out alternate;
}

.text-sub {
    font-size: 3.5rem;
}

.text-location {
    font-size: 2.5rem;
    color: var(--text-main);
    padding: 0 10px;
    margin: 10px 0;
    display: inline-block;
    border-bottom: 5px solid var(--secondary);
    font-weight: 800;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-coming-soon {
    font-family: "Outfit", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    background: #FFF;
    display: inline-block;
    padding: 15px 50px;
    transform: rotate(-3deg);
    box-shadow: 8px 8px 0 var(--text-main);
    border: 4px solid var(--text-main);
    border-radius: 15px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
    width: 95%;
    max-width: 900px;
    margin-top: 20px;
    /* 枠線を外し、透過素材をそのまま活かす */
    filter: drop-shadow(0px 15px 30px rgba(0, 0, 0, 0.2));
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Decorative Band */
.deco-band {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    margin-top: 70px;
    /* Header height calculation offset */
    border-bottom: 5px solid var(--text-main);
    background: var(--text-main);
}

.deco-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Concept section */
.concept {
    position: relative;
}

.concept-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card {
    flex: 1;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border: 5px solid var(--text-main);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 12px 12px 0 var(--secondary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 12px 20px 0 var(--tertiary);
}

.card-img {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--text-main);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 900;
}

.card p {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Recruit section */
.recruit {
    position: relative;
}

.recruit-lead {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
}

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

.recruit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    /* カードの高さを揃える */
}

.recruit-box {
    background: rgba(255, 255, 255, 0.98);
    border: 5px solid var(--text-main);
    border-radius: 30px;
    padding: 35px 30px;
    box-shadow: 12px 12px 0 var(--tertiary);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.recruit-box:hover {
    transform: translateY(-5px);
}

.recruit-box.influencer {
    box-shadow: 12px 12px 0 var(--secondary);
    border-color: var(--secondary);
}

.recruit-box-header {
    border-bottom: 4px dashed #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.recruit-box h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tag {
    display: inline-block;
    background: var(--text-main);
    color: #FFF;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
}

.tag.special {
    background: var(--secondary);
}

.job-details {
    list-style: none;
    flex-grow: 1;
    /* 余白を埋めて高さを揃える */
}

.job-details>li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.job-details strong {
    font-weight: 900;
    color: var(--text-main);
}

.highlight {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Buttons */
.recruit-action {
    margin-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    border: 4px solid var(--text-main);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    max-width: 340px;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
}

@keyframes shine-btn {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn:hover {
    animation: none;
    transform: translateY(-4px);
    box-shadow: 8px 12px 0 var(--text-main);
}

.btn-arrow {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* Urgency Note */
.urgency-container {
    margin-top: 40px;
    background: rgba(255, 51, 102, 0.05);
    border: 2px dashed var(--secondary);
    padding: 12px 40px;
    border-radius: 15px;
    display: inline-block;
}

.urgency-note {
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
}

.urgency-note::before {
    content: '※';
    margin-right: 5px;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    background: var(--tertiary);
    color: var(--text-main);
    box-shadow: 6px 6px 0 var(--text-main);
    animation: pulse-btn 2.5s infinite ease-in-out;
}

.btn-primary::before {
    animation: shine-btn 4s infinite 1s;
}

.btn-primary:active,
.btn-secondary:active,
.btn:hover:active {
    box-shadow: 0 0 0 var(--text-main) !important;
    transform: translate(6px, 6px) !important;
    transition: all 0.1s;
}

.btn-secondary {
    background: var(--secondary);
    color: #FFF;
    box-shadow: 6px 6px 0 var(--text-main);
    animation: pulse-btn 3s infinite ease-in-out 0.5s;
    /* Different duration and delay */
}

.btn-secondary::before {
    animation: shine-btn 5s infinite 2.5s;
    /* Different duration and delay */
}

.note {
    font-weight: 700;
    color: #444;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Location */
.location {
    position: relative;
}

.location-info {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 20px 40px;
    border-radius: 20px;
    border: 4px solid var(--text-main);
}

.location-info .open-date span {
    font-family: "Outfit", sans-serif;
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    margin-top: 10px;
}

.map-placeholder {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--text-main);
    color: #FFF;
    text-align: center;
    padding: 40px 20px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title .text-location {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .hero-title .text-sub {
        font-size: 2rem;
    }

    .nav a {
        margin: 0 12px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 5px 20px;
    }

    .urgency-note {
        font-size: 1rem;
    }
}