@charset "UTF-8";

/* PC用スタイル */
.sp_only,
.hamburger,
.sp-menu {
    display: none !important;
}

body {
    font-family: "Mochiy Pop One", sans-serif;
    margin: 0;
}

img {
    width: 100%;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-wrap {
    display: flex;
    max-width: 1200px;
    width: calc(100% - 20px);
    height: 80px;
    justify-content: space-between;
    align-items: center;
    background: rgb(255 255 255 / 70%);
    border-radius: 20px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.header__menu a {
    text-decoration: none;
    color: #333;
}

.header__menu a:hover {
    opacity: 0.7;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo img {
    width: 50px;
}

.header__logo span {
    font-size: 25px;
    color: #237B3A;
}

/* top */
.top {
    position: relative;
    width: 100%;
    height: auto;
    background: linear-gradient(#7FB7FF 0%, #ffffff 100%);
    overflow: hidden;
}

.top-bg {
    pointer-events: none;
}

/* Cloud */
.cloud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cloud span {
    position: absolute;
    display: block;
}

.cloud span img {
    width: 100%;
    height: auto;
}

.cloud-01 {
    width: 200px;
    top: 20%;
    left: 5%;
    animation: floatAround1 6s ease-in-out infinite;
}

.cloud-02 {
    width: 200px;
    top: 12%;
    right: 10%;
    animation: floatAround2 7s ease-in-out infinite;
}

.cloud-03 {
    width: 200px;
    top: 15%;
    left: 0;
    right: 0;
    animation: floatAround3 5s ease-in-out infinite;
    margin: 0 auto;
}

.cloud-04 {
    width: 120px;
    top: 35%;
    right: 15%;
    animation: floatAround4 8s ease-in-out infinite;
}

.cloud-05 {
    width: 120px;
    top: 10%;
    left: 20%;
    animation: floatAround4 8s ease-in-out infinite;
}

/* フワフワ上下左右に動くアニメーション */
@keyframes floatAround1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10px, -8px);
    }

    50% {
        transform: translate(5px, 5px);
    }

    75% {
        transform: translate(-8px, -3px);
    }
}

@keyframes floatAround2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-8px, 6px);
    }

    50% {
        transform: translate(6px, -10px);
    }

    75% {
        transform: translate(10px, 4px);
    }
}

@keyframes floatAround3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(6px, 8px);
    }

    50% {
        transform: translate(-10px, -5px);
    }

    75% {
        transform: translate(-5px, 10px);
    }
}

@keyframes floatAround4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-6px, -10px);
    }

    50% {
        transform: translate(8px, 6px);
    }

    75% {
        transform: translate(12px, -8px);
    }
}

/* Title Area */
.title-area {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.title-area h1 {
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: normal;
    font-size: 48px;
    color: #237B3A;
    margin: 0 0 20px 0;
}

.copy-title {
    font-size: 24px;
    color: #333;
}

/* Top Chara */
.top-chara {
    position: absolute;
    bottom: 38%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(120px, 12vw, 180px);
    z-index: 10;
    animation: popUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(100px) scale(0.5);
    }

    60% {
        opacity: 1;
        transform: translateX(-50%) translateY(-20px) scale(1.1);
    }

    80% {
        transform: translateX(-50%) translateY(10px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Recommen */
.recommen {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(30px, 6vw, 80px);
    z-index: 10;
}

.recommen-cont {
    width: clamp(130px, 14vw, 170px);
    height: clamp(130px, 14vw, 170px);
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: clamp(14px, 1.3vw, 16px);
    padding: clamp(10px, 1.5vw, 20px);
    box-sizing: border-box;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    white-space: nowrap;
}

.recommen-cont:nth-child(1) {
    animation-delay: 0.3s;
}

.recommen-cont:nth-child(2) {
    transform: translateY(clamp(40px, 5vw, 75px));
    animation-delay: 0.6s;
}

.recommen-cont:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2番目は下にずらした状態で表示 */
.recommen-cont:nth-child(2) {
    animation-name: fadeInUpSecond;
}

@keyframes fadeInUpSecond {
    0% {
        opacity: 0;
        transform: translateY(105px);
    }

    100% {
        opacity: 1;
        transform: translateY(75px);
    }
}

/* アプリで出来ること */
.app {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.app h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.app-bg {
    position: relative;
    width: 100%;
}

.app-bg img {
    width: 100%;
}

.app-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    gap: 5%;
}

.app-left,
.app-right {
    position: relative;
    width: 46%;
    padding: 40px;
    box-sizing: border-box;
}

.app-left {
    text-align: center;
}

.app-right {}

/* 左側：ベン図 */
.app-left .text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('/imges/round.svg') no-repeat center center;
    background-size: contain;
    margin-bottom: 20px;
}

.app-left .text {
    color: #000000;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.app-left .text-wrap .text {
    width: 90px;
}

.app-left .text-wrap {
    display: flex;
    margin-top: -20px;
}

.app-left h3 {
    font-size: 24px;
    margin: 20px 0;
}

.app-left .img-wrap {
    width: 180px;
    margin: 0 auto;
}

/* 右側：テキスト */
.app-right p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    border-radius: 5px;
}

.app-right .wood {
    position: absolute;
    width: 200px;
    left: 0;
    right: 0;
    margin: 0px auto 20px auto;
}

/* 安否確認の仕組み */
.safety {
    position: relative;
    background: url('/imges/safety-bg.png') no-repeat center center;
    background-size: cover;
    padding: 80px 20px 200px 20px;
    overflow: hidden;
}

.safety h2 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.safety-subtitle {
    text-align: center;
    font-size: 18px;
    color: #000000;
    margin-bottom: 50px;
}

.safety-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 100px auto 0 auto;
}

.safety-step {
    position: relative;
    text-align: center;
}

.safety-step::after {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    bottom: -70px;
    right: -30px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 4;
}

.safety-step:nth-child(1)::after {
    background-image: url('/imges/chara-03.png');
}

.safety-step:nth-child(3)::after {
    background-image: url('/imges/chara-04.png');
}

.safety-step:nth-child(5)::after {
    background-image: url('/imges/chara-07.png');
}

.safety-box {
    position: relative;
    display: flex;
    width: 180px;
    height: 250px;
    padding: 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.safety-box::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -10px;
    right: -10px;
    background: #F5A623;
    z-index: 1;
}

.safety-box::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #F5A623;
    z-index: 2;
}

.safety-box .img-wrap {
    display: flex;
    height: 180px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.safety-box p {
    position: relative;
    z-index: 3;
}

.safety-step p {
    margin-top: 15px;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
}

.safety-arrow {
    color: #F5A623;
    font-size: 30px;
}

/* 家族との会話が生まれる理由 */
.family {
    position: relative;
    padding: 80px 20px 0 20px;
    overflow: hidden;
    background: #fff;
}

.family h2 {
    position: relative;
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    z-index: 2;
}

.family h2 span {
    color: #F5A623;
}

.family-subtitle {
    position: relative;
    text-align: center;
    font-size: 16px;
    color: #333;
    margin: 20px 0;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.family-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.family-circle-01 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    border: 10px solid #D9D9D9;
    animation-delay: 0s;
}

.family-circle-02 {
    width: 250px;
    height: 250px;
    top: 5%;
    right: 5%;
    border: 10px solid #CAFFBE;
    animation-delay: 0.5s;
}

.family-circle-03 {
    width: 250px;
    height: 250px;
    bottom: 5%;
    left: 5%;
    border: 10px solid rgb(255 165 0 / 50%);
    margin: auto;
    z-index: 2;
    animation-delay: 1s;
}

.family-circle-04 {
    width: 300px;
    height: 300px;
    bottom: -20%;
    left: 15%;
    background: #FFF7E0;
    animation-delay: 1.5s;
}

.family-circle-05 {
    width: 300px;
    height: 300px;
    right: 16%;
    bottom: 8%;
    background: #FFFEBB;
    animation-delay: 2s;
}

.family-content {
    position: relative;
    max-width: 700px;
    margin: 50px auto 0;
    z-index: 3;
}

.family-img {
    width: 100%;
    text-align: center;
    margin-bottom: -5px;
}

.family-img img {
    max-width: 500px;
}

.balloon-wrap {
    display: flex;
    justify-content: space-between;
}

.family-balloon {
    padding: 80px 45px;
    font-size: 14px;
    white-space: nowrap;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
}

.family-balloon-left {
    background-image: url('/imges/l-bubble.svg');
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

.family-balloon-right {
    background-image: url('/imges/r-bubble.svg');
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.family-chara {
    position: absolute;
    bottom: 30px;
    width: 120px;
    z-index: 2;
}

.family-chara-left {
    left: 15%;
}

.family-chara-right {
    right: 20%;
    bottom: 10px;
}

/* Lineup Section */
.lineup {
    position: relative;
    overflow: hidden;
}

.lineup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.lineup-overlay h2 {
    text-align: center;
    font-size: 40px;
    color: #333;
    margin-bottom: 30px;
}

.lineup-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    pointer-events: auto;
    margin-top: 120px;
}

.lineup-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.lineup-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/imges/puzzle.png') top/cover no-repeat;
    z-index: 2;
    pointer-events: none;
}

.lineup-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lineup-slider .slick-list,
.lineup-slider .slick-track,
.lineup-slider .slick-slide,
.lineup-slider .slick-slide>div {
    height: 100%;
}

.lineup-card {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.lineup-card:hover {
    transform: scale(1.05);
}

.lineup-tag {
    position: absolute;
    width: 320px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.lineup-tag span {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.lineup-card-img {
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.lineup-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.lineup-card-text {
    margin-top: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* YouTube Section */
.youtube {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(180deg, #E8F5E9 0%, #FFFFFF 100%);
}

.youtube h2 {
    font-size: 40px;
    color: #333;
    margin-bottom: 15px;
}

.youtube-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.youtube-content {
    max-width: 900px;
    margin: 0 auto;
}

.youtube-video {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
}

.youtube-video::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/imges/movie-bg01.png') center/contain no-repeat;
    z-index: 2;
    pointer-events: none;
}

.youtube-video iframe {
    position: absolute;
    top: 20%;
    left: 8%;
    width: 84%;
    height: 62%;
    border-radius: 16px;
    z-index: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.is-open {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 30px 25px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
}

.modal-title {
    font-size: 32px;
    color: #4CAF50;
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.modal-chara {
    width: 150px;
    margin: 0 auto 20px;
}

.modal-chara img {
    width: 100%;
    height: auto;
}

.modal-goal {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.modal-goal strong {
    color: #FF9800;
}

.modal-btn {
    display: block;
    width: 200px;
    margin: 10px auto;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.modal-btn-start {
    background: #FF9800;
    color: #fff;
}

.modal-btn-setting {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.modal-description {
    font-size: 14px;
    color: #666;
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.modal-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    text-align: left;
}

.modal-section-reverse {
    flex-direction: row-reverse;
}

.modal-section-img {
    flex-shrink: 0;
    width: 120px;
}

.modal-section-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-section-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.modal-section-text p {
    margin-bottom: 10px;
}

.modal-btn-line {
    display: block;
    width: 250px;
    margin-top: 30px;
    padding: 15px 20px;
    background: #11713B;
    color: #fff;
    border-radius: 20px;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    width: 70px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 15px;
    background: rgb(235 97 0 / 80%);
    border: none;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.floating-btn span {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    font-family: "Mochiy Pop One", sans-serif;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

/* 950px以下でレスポンシブ対応 */
@media (max-width: 950px) {
    .header__nav {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 3px;
        background: #237B3A;
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger span:nth-child(1) {
        margin-bottom: 5px;
    }

    .hamburger span:nth-child(3) {
        margin-top: 5px;
    }

    .hamburger.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .sp-menu {
        display: block;
        position: absolute;
        top: 100px;
        right: 20px;
        left: auto;
        width: 50%;
        max-width: 400px;
        background: rgb(255 255 255 / 95%);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        z-index: 999;
    }

    .sp-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .sp-menu__list {
        list-style: none;
        margin: 0;
        padding: 15px 0;
    }

    .sp-menu__list li {
        border-bottom: 1px solid #eee;
    }

    .sp-menu__list li:last-child {
        border-bottom: none;
    }

    .sp-menu__list a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        transition: background 0.2s;
    }

    .sp-menu__list a:hover,
    .sp-menu__list a:active {
        background: #f5f5f5;
    }

    .title-area h1 {
        font-size: clamp(28px, 5vw, 48px);
    }

    .floating-btn {
        width: clamp(50px, 7vw, 70px);
    }

    .floating-btn span {
        font-size: clamp(14px, 2vw, 20px);
    }

    /* App section */
    .app-left,
    .app-right {
        padding: clamp(20px, 4vw, 40px);
    }

    .app-right p {
        font-size: clamp(12px, 1.5vw, 14px);
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .app-right .wood {
        width: clamp(120px, 18vw, 200px);
        margin: 10px auto 0 auto;
    }

    .app-left .text {
        width: clamp(70px, 10vw, 100px);
        height: clamp(70px, 10vw, 100px);
        font-size: clamp(11px, 1.4vw, 14px);
    }

    .app-left .text-wrap .text {
        width: clamp(60px, 9vw, 90px);
    }

    .app-left h3 {
        font-size: clamp(18px, 2.5vw, 24px);
        margin: 15px 0;
    }

    .app-left .img-wrap {
        width: clamp(120px, 18vw, 180px);
    }

    /* Safety section */
    .safety h2 {
        font-size: clamp(24px, 3.5vw, 32px);
    }

    .safety-subtitle {
        font-size: clamp(14px, 2vw, 18px);
        margin-bottom: clamp(30px, 5vw, 50px);
    }

    .safety-flow {
        gap: clamp(15px, 3vw, 30px);
        margin-top: clamp(50px, 10vw, 100px);
    }

    .safety-box {
        width: clamp(130px, 18vw, 180px);
        height: clamp(180px, 26vw, 250px);
        padding: clamp(15px, 3vw, 30px);
    }

    .safety-box .img-wrap {
        height: clamp(120px, 18vw, 180px);
    }

    .safety-step p {
        font-size: clamp(12px, 1.7vw, 16px);
    }

    .safety-step::after {
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        bottom: clamp(-50px, -7vw, -70px);
        right: clamp(-20px, -3vw, -30px);
    }

    .safety-arrow {
        font-size: clamp(20px, 3vw, 30px);
    }

    /* Lineup section */
    .lineup-overlay h2 {
        font-size: clamp(28px, 4vw, 40px);
        margin-bottom: clamp(15px, 3vw, 30px);
    }

    .lineup-content {
        margin-top: clamp(60px, 9vw, 120px);
        gap: clamp(15px, 3vw, 30px);
    }

    .lineup-slider {
        aspect-ratio: 16 / 10;
    }

    .lineup-tag {
        width: clamp(220px, 32vw, 320px);
        top: clamp(-10px, -1.5vw, -15px);
    }

    .lineup-tag span {
        font-size: clamp(14px, 1.8vw, 18px);
    }

    .lineup-card-img {
        width: clamp(200px, 30vw, 300px);
    }

    .lineup-card-text {
        margin-top: clamp(10px, 1.5vw, 15px);
        font-size: clamp(16px, 2.5vw, 24px);
    }
}

/* Error Page */
.error-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(#7FB7FF 0%, #ffffff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
}

.error-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.error-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 90%;
    padding: 40px 20px;
}

.error-message {
    background: rgb(255 255 255 / 90%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.error-code {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 120px;
    font-weight: normal;
    color: #F5A623;
    margin: 0 0 20px 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-title {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 36px;
    font-weight: normal;
    color: #237B3A;
    margin: 0 0 30px 0;
}

.error-description {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.error-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #F5A623;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
    background: #e6951a;
}

@media (max-width: 950px) {
    .error-code {
        font-size: clamp(80px, 15vw, 120px);
    }

    .error-title {
        font-size: clamp(24px, 4vw, 36px);
    }

    .error-description {
        font-size: clamp(14px, 2.2vw, 18px);
    }

    .error-btn {
        padding: clamp(14px, 2.5vw, 18px) clamp(35px, 6vw, 50px);
        font-size: clamp(14px, 2.2vw, 18px);
    }

    .error-message {
        padding: clamp(40px, 7vw, 60px) clamp(25px, 5vw, 40px);
    }
}

/* Privacy Page */
.privacy-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(#7FB7FF 0%, #ffffff 100%);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.privacy-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    background: rgb(255 255 255 / 95%);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.privacy-lang-toggle {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 30px;
}

.lang-btn {
    padding: 10px 20px;
    background: #fff;
    color: #237B3A;
    border: 2px solid #237B3A;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Mochiy Pop One", sans-serif;
}

.lang-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.lang-btn.active {
    background: #237B3A;
    color: #fff;
    box-shadow: 0 2px 8px rgba(35, 123, 58, 0.3);
}

.privacy-lang-content {
    display: none;
}

.privacy-lang-content.active {
    display: block;
}

.privacy-title {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 42px;
    font-weight: normal;
    color: #237B3A;
    margin: 0 0 20px 0;
    text-align: center;
}

.privacy-subtitle {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-subtitle strong {
    color: #237B3A;
    font-size: 20px;
}

.privacy-subtitle em {
    color: #666;
    font-size: 14px;
}

.privacy-operator {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #F5A623;
}

.privacy-section {
    margin-bottom: 35px;
}

.privacy-section h2 {
    font-family: "Mochiy Pop One", sans-serif;
    font-size: 24px;
    font-weight: normal;
    color: #237B3A;
    margin: 0 0 15px 0;
    padding-top: 10px;
}

.privacy-section h3 {
    font-size: 18px;
    color: #F5A623;
    margin: 20px 0 10px 0;
    font-weight: bold;
}

.privacy-section p {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
}

.privacy-section a {
    color: #237B3A;
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-section a:hover {
    color: #F5A623;
}

.privacy-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #F5A623;
}

.privacy-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #F5A623;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.privacy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
    background: #e6951a;
}

@media (max-width: 950px) {
    .privacy-content {
        padding: clamp(40px, 7vw, 60px) clamp(25px, 5vw, 50px);
    }

    .privacy-lang-toggle {
        margin-bottom: clamp(20px, 4vw, 30px);
    }

    .lang-btn {
        padding: clamp(8px, 1.5vw, 10px) clamp(15px, 3vw, 20px);
        font-size: clamp(12px, 2vw, 14px);
    }

    .privacy-title {
        font-size: clamp(28px, 5vw, 42px);
    }

    .privacy-subtitle {
        font-size: clamp(14px, 2.5vw, 18px);
    }

    .privacy-subtitle strong {
        font-size: clamp(16px, 3vw, 20px);
    }

    .privacy-section h2 {
        font-size: clamp(20px, 3.5vw, 24px);
    }

    .privacy-section h3 {
        font-size: clamp(16px, 2.5vw, 18px);
    }

    .privacy-section p,
    .privacy-section li {
        font-size: clamp(13px, 2vw, 15px);
    }

    .privacy-btn {
        padding: clamp(14px, 2.5vw, 18px) clamp(35px, 6vw, 50px);
        font-size: clamp(14px, 2.2vw, 18px);
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 98%);
    border-top: 3px solid #F5A623;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    padding: 20px;
    box-sizing: border-box;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: #237B3A;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-banner-text a:hover {
    color: #F5A623;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Mochiy Pop One", sans-serif;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #237B3A;
    color: #fff;
    box-shadow: 0 2px 8px rgba(35, 123, 58, 0.3);
}

.cookie-btn-accept:hover {
    background: #1a5d2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(35, 123, 58, 0.4);
}

.cookie-btn-decline {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.cookie-btn-decline:hover {
    background: #f5f5f5;
    border-color: #999;
    transform: translateY(-2px);
}

@media (max-width: 950px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 200px;
    }

    .cookie-banner-text p {
        font-size: clamp(12px, 2vw, 14px);
    }
}