:root {
    --primary-color: #720e1e;
    --primary-dark: #4a000a;
    --accent-color: #dcb368;
    --text-color: #f4f4f4;
    --bg-color: #0a0a0a;
    --font-main: 'Shippori Mincho', serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}
body {
    background: radial-gradient(circle at center, #1a0205, #000000);
    position: relative;
    z-index: 0;
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/verification_silhouette.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
ul {
    list-style: none;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.container img {
    max-width: 550px;
}
.page-content-container {
    padding-top: 60px;
    padding-bottom: 60px;
}
@media (max-width: 768px) {
    .page-content-container {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0 0 0;
    z-index: 1000;
    transition: 0.4s;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
#header {
    position: relative;
    width: 100%;
    z-index: 1000;
}
.header-top-nav {
    background: linear-gradient(to bottom, rgba(176, 34, 34, 0.95), rgba(128, 0, 0, 0.95));
    padding: 10px 0;
    font-size: 1.05rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    border-bottom: 2px solid rgba(220, 179, 104, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.header-top-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
.header-top-nav li {
    margin: 0 15px;
}
.header-top-nav a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
}
.header-top-nav a span.nav-jp {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    font-weight: 400;
}
.header-top-nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(220, 179, 104, 0.4);
}
.header-top-nav a:hover span.nav-jp {
    color: #fff;
}
.header-main {
    background: rgba(10, 10, 10, 0.48);
    padding: 10px 0;
    border-bottom: 2px solid rgba(220, 179, 104, 0.3);
    margin-top: 44px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.header-main img {
    max-width: 300px;
}
.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-contact {
    text-align: right;
    border-left: 1px solid rgba(220, 179, 104, 0.2);
    padding-left: 25px;
}
.header-phone {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
    text-shadow: 0 0 10px rgba(220, 179, 104, 0.2);
}
.header-hours {
    font-size: 0.8rem;
    color: #aaa;
    letter-spacing: 0.1em;
    font-weight: 600;
}
body {
    padding-top: 0;
}
@media (max-width: 768px) {
    .header-top-nav {
        display: none;
    }
    .header-main {
        margin-top: 0;
        padding: 15px 0 0;
    }
    .header-main .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .header-contact {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(220, 179, 104, 0.1);
        padding-top: 10px;
        width: 100%;
        padding-bottom: 10px;
    }
    .header-phone {
        font-size: 1.6rem;
    }
}
header.scrolled {
    background: rgba(10, 0, 0, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-dark);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.1em;
    z-index: 100;
}
.pc-nav ul {
    display: flex;
    gap: 30px;
}
.pc-nav a {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    text-align: center;
}
.nav-jp {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0;
    font-weight: normal;
}
.pc-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: 0.3s;
}
.pc-nav a:hover {
    color: var(--accent-color);
}
.pc-nav a:hover .nav-jp {
    color: var(--accent-color);
}
.pc-nav a:hover::after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 99999;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 15px;
    right: 20px;
    background: rgba(114, 14, 30, 0.95);
    border-radius: 4px;
    padding: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.mobile-menu-btn:hover {
    background: rgba(114, 14, 30, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(176, 34, 34, 0.95), rgba(128, 0, 0, 0.95));
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: 0.4s ease-in-out;
    overflow-y: auto;
    padding: 80px 0;
    z-index: 9998;
    pointer-events: none;
}
.mobile-menu-overlay.active {
    right: 0;
    pointer-events: auto;
}
.mobile-nav ul {
    text-align: center;
    border-bottom: none;
}
.mobile-nav li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}
.mobile-menu-overlay.active .mobile-nav li {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(1) {
    transition-delay: 0.1s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(2) {
    transition-delay: 0.15s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(3) {
    transition-delay: 0.2s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(4) {
    transition-delay: 0.25s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(5) {
    transition-delay: 0.3s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(6) {
    transition-delay: 0.35s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(7) {
    transition-delay: 0.4s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(8) {
    transition-delay: 0.45s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(9) {
    transition-delay: 0.5s;
}
.mobile-menu-overlay.active .mobile-nav li:nth-child(10) {
    transition-delay: 0.55s;
}
.mobile-nav a {
    font-size: 1.3rem;
    color: #fff;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}
.mobile-nav a .nav-jp {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    font-weight: 400;
}
.mobile-nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(220, 179, 104, 0.4);
}
.mobile-nav a:hover .nav-jp {
    color: #fff;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/dark-matter.png');
    opacity: 0.5;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(220, 179, 104, 0.3);
}
.hero p {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}
.section {
    padding: 80px 0;
    position: relative;
    display: flex;
    flex-direction: column;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}
.concept-headline {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    letter-spacing: 0.15em;
}
.concept-text {
    text-align: center;
    font-size: 1.25rem;
    line-height: 2.2;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    color: #ddd;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.rules-list {
    max-width: 800px;
    margin: 4rem auto;
    border: none;
    border-top: 1px solid rgba(220, 179, 104, 0.3);
    border-bottom: 1px solid rgba(220, 179, 104, 0.3);
    padding: 20px 0;
    text-align: center;
    background: transparent;
}
.rules-list li {
    margin: 25px 0;
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.15em;
}
.rules-list li::before {
    content: '❖';
    margin-right: 15px;
    font-size: 0.8em;
    vertical-align: middle;
    color: var(--primary-color);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.section-schedule .cast-grid {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
	.cast-grid {
    margin: 0px auto 0;
}
	.profile-info {
    flex: 1;
    padding-top: 80px;
}
}
.news-item {
    display: block;
    background: #000000;
    border: 1px solid #8e6b23;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.news-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.news-content {
    padding: 1em 2em;
}
.news-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    text-align: right;
}
.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 80px;
    padding: 30px 0;
}
.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(220, 179, 104, 0.4);
    background: transparent;
    color: var(--accent-color);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.page-link:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(220, 179, 104, 0.3);
}
.page-link.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(220, 179, 104, 0.4);
}
.page-link:last-child {
    width: auto;
    padding: 0 20px;
}
.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.tab-item {
    padding: 10px 20px;
    margin: 0 5px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s;
}
.tab-item.active,
.tab-item:hover {
    background: var(--accent-color);
    color: #fff;
}
.cast-badge-new {
    position: absolute;
    top: -5px;
    left: -13px;
    background: linear-gradient(135deg, #8b0000 0%, #4b0000 100%);
    color: #fff;
    padding: 4px 40px;
    font-size: 0.65rem;
    font-weight: 900;
    transform: rotate(-45deg) translate(-22px, 0);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    letter-spacing: 1.2px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cast-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 0px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.cast-item {
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: transform 0.3s;
}
.cast-item:hover {
    transform: translateY(-5px);
}
.cast-img-box {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #1a0505;
}
.cast-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}
.cast-work-time {
    position: absolute;
    top: 10px;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
    z-index: 5;
}
.cast-info {
    position: relative;
    padding: 25px 15px 15px;
    text-align: center;
    color: #333;
}
.cast-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.cast-age {
    font-size: 0.9rem;
    color: #666;
}
.cast-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 4px;
}
.course-obi,
.system-obi {
    display: block;
    width: 100%;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.2rem;
    text-align: center;
}
.course-obi {
    padding: 6px 15px;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-bottom: 0;
	line-height: 1.2em;
}
.system-obi {
    padding: 10px 25px;
    font-size: 1.4rem;
    margin-bottom: 25px;
}
.course-tetra {
    background: linear-gradient(135deg, #4d2d00, #804a00);
    border: 1px solid #9c5c00;
}
.course-penta {
    background: linear-gradient(135deg, #555, #b0b0b0);
    border: 1px solid #ccc;
    color: #fff;
}
.course-octa {
    background: linear-gradient(135deg, #8e6b23, #dcb368);
    border: 1px solid #fde08d;
    color: #1a0505;
    text-shadow: none;
}
.course-kalon {
    background: linear-gradient(135deg, #000, #444, #000);
    border: 1px solid #dcb368;
    color: var(--accent-color);
    box-shadow: 0 0 15px rgba(220, 179, 104, 0.4);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--primary-dark);
    transition: 0.3s;
}
.feature-item:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}
.feature-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.btn-cta {
    display: inline-block;
    background: linear-gradient(45deg,
            #8E6B23 0%,
            #D4AF37 25%,
            #FDE08D 50%,
            #D4AF37 75%,
            #8E6B23 100%);
    background-size: 200% auto;
    color: #1a0505;
    padding: 10px 40px;
    font-size: 1rem;
    border-radius: 50px;
    margin-top: 2em;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 179, 104, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: 0.3s;
    border: 1px solid #FDE08D;
}
.btn-cta::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.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
    z-index: -1;
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 179, 104, 0.6);
    filter: brightness(1.1);
}
@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        left: 200%;
        opacity: 0;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}
.footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--primary-dark);
    font-size: 0.8rem;
    color: #666;
}
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg,
            #8E6B23 0%,
            #D4AF37 25%,
            #FDE08D 50%,
            #D4AF37 75%,
            #8E6B23 100%);
    background-size: 200% auto;
    color: #1a0505;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid #FDE08D;
    transition: 0.3s;
}
.floating-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.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite 1s;
}
.floating-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 0 25px rgba(220, 179, 104, 0.5);
}
.profile-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}
.gallery-container {
    flex: 1.2;
    max-width: 600px;
}
.main-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    object-position: top center;
    background: #1a0505;
    border: 1px solid #333;
    margin-bottom: 15px;
}
.thumbnail-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.thumbnail {
    width: 80px;
    height: 106px;
    object-fit: contain;
    object-position: top center;
    background: #1a0505;
    cursor: pointer;
    border: 1px solid #333;
    opacity: 0.6;
    transition: 0.3s;
}
.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--accent-color);
}
.profile-info {
    flex: 1;
    padding-top: 0px;
}
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-menu-close span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: 0.3s;
}
.mobile-menu-close span:nth-child(1) {
    transform: rotate(45deg);
}
.mobile-menu-close span:nth-child(2) {
    transform: rotate(-45deg);
}
.mobile-nav ul {
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.profile-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}
.profile-type {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border-radius: 50px;
}
.profile-name {
    font-family: var(--font-main);
    font-size: 3rem;
    color: var(--accent-color);
    line-height: 1.2;
}
.profile-age {
    font-size: 1.5rem;
    color: #888;
    margin-left: 10px;
}
.profile-specs {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-left: 4px solid var(--accent-color);
}
.spec-row {
    display: flex;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.spec-row:last-child {
    margin-bottom: 0;
}
.spec-label {
    width: 80px;
    color: var(--accent-color);
    font-weight: bold;
}
.spec-value {
    color: #ddd;
}
.profile-desc {
    font-size: 1.1rem;
    line-height: 2;
    color: #ccc;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .profile-layout {
        flex-direction: column;
        gap: 30px;
    }
    .gallery-container {
        max-width: 100%;
        flex: auto;
    }
    .profile-name {
        font-size: 2.2rem;
    }
    .header-inner {
        padding: 0 10px;
    }
    .logo {
        font-size: 1.2rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .rules-list {
        padding: 20px;
        width: 100%;
        margin: 30px auto;
    }
    .rules-list li {
        font-size: 1rem;
    }
    .pc-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .cast-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .cast-info {
        padding: 10px;
    }
    .cast-name {
        font-size: 0.9rem;
    }
    .cast-meta {
        font-size: 0.8rem;
    }
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
        width: 80%;
    }
    .floating-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .lightbox.active {
        opacity: 1;
        pointer-events: auto;
    }
    .lightbox-content {
        position: relative;
        max-width: 90%;
        max-height: 90vh;
        transform: scale(0.9);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .lightbox.active .lightbox-content {
        transform: scale(1);
    }
    .lightbox-content img {
        max-width: 100%;
        max-height: 80vh;
        border: 2px solid var(--accent-color);
        box-shadow: 0 0 30px rgba(220, 179, 104, 0.2);
        border-radius: 4px;
    }
    .lightbox-close {
        position: absolute;
        top: -40px;
        right: -10px;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
}
.cast-item {
    background: #000;
    border: 1px solid #333;
    transition: 0.3s;
    overflow: visible;
    position: relative;
}
.cast-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}
.cast-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a0505;
}
.cast-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transition: 0.5s;
}
.cast-item:hover .cast-img-box img {
    transform: scale(1.1);
}
.cast-badge {
    display: inline-block;
    background: linear-gradient(45deg,
            #8E6B23 0%,
            #D4AF37 25%,
            #FDE08D 50%,
            #D4AF37 75%,
            #8E6B23 100%);
    background-size: 200% auto;
    font-size: 0.8rem;
    font-family: var(--font-main);
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #1a0505;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 6px 16px;
    border: 1px solid #FDE08D;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: 0.3s;
}
.cast-badge::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.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: -1;
    transition: 0.5s;
}
.cast-item:hover .cast-badge {
    filter: brightness(1.1);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 15px rgba(220, 179, 104, 0.6);
}
.cast-item:hover .cast-badge::before {
    animation: shine 1.5s infinite;
}
.cast-info {
    position: relative;
    padding: 30px 15px 20px;
    text-align: center;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cast-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.05em;
}
.cast-age {
    font-size: 0.9rem;
    color: #aaa;
    margin-left: 5px;
    font-weight: 400;
}
.cast-meta {
    font-size: 0.9rem;
    color: #dcb368;
    letter-spacing: 0.05em;
    font-family: 'Times New Roman', serif;
}
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading.hidden {
    opacity: 0;
    visibility: hidden;
}
.loading-content {
    text-align: center;
}
.loading-logo {
    width: 100px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}
.loading-bar {
    width: 150px;
    height: 2px;
    background: #333;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-100%);
    animation: loading 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}
@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}
@media (max-width: 768px) {
    .cast-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.page-hero {
    padding: 40px 0 40px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
.page-hero+.section {
    padding-top: 20px;
}
.page-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}
.page-hero p {
    font-size: 1.2rem;
    color: #ccc;
    letter-spacing: 0.2em;
}
.system-container {
    max-width: 1200px;
    margin: 0 auto;
}
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.price-card {
    border: 1px solid #333;
    padding: 30px;
    margin-bottom: 0;
    background: rgb(44 1 1 / 75%);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 900px) {
    .course-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .price-card {
        margin-bottom: 20px;
    }
}
.price-card.highlight {
    border: 1px solid var(--accent-color);
    background: rgb(105 77 26 / 58%);
    box-shadow: 0 0 20px rgba(220, 179, 104, 0.1);
}
.price-header h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}
.jp-title {
    display: block;
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 20px;
}
.price-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}
.price-amount .yen {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 10px;
}
.options-section {
    margin-top: 60px;
    padding: 40px;
    border: 1px solid #333;
    background: #000;
}
.options-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}
.options-list {
    display: grid;
    gap: 20px;
}
.option-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #444;
    padding-bottom: 10px;
}
.option-row dt {
    color: #ccc;
}
.option-row dd {
    color: #fff;
    font-weight: bold;
}
.system-notes {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #888;
    text-align: right;
    line-height: 1.8;
}
.recruit-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}
.recruit-intro h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}
.recruit-intro p {
    font-size: 1.1em;
    line-height: 1.8em;
    color: #ddd;
}
.recruit-main-box {
    max-width: 900px;
    margin: 0 auto 80px;
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(220, 179, 104, 0.05), rgba(0, 0, 0, 0.3));
    padding: 60px;
    box-shadow: 0 0 30px rgba(220, 179, 104, 0.1);
    text-align: left;
}
.recruit-item {
    margin-bottom: 60px;
}
.recruit-item:last-child {
    margin-bottom: 0;
}
.recruit-item h3 {
    text-align: left;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #444;
}
.recruit-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.recruit-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #ddd;
    font-size: 1rem;
}
.recruit-item ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
    top: 2px;
}
.recruit-item p {
    margin: 0;
    line-height: 2;
    color: #ddd;
    text-align: left;
    font-size: 1.1rem;
}
.recruit-message-box {
    background: #111;
    border: 2px solid var(--accent-color);
    padding: 40px;
    margin-bottom: 80px;
    text-align: left;
}
.recruit-message-box h3 {
    text-align: left;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
}
.recruit-message-box ul {
    margin: 0;
    list-style: none;
}
.recruit-message-box ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #ddd;
    font-size: 1.1rem;
}
.recruit-message-box ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}
.application-section {
    text-align: left;
    background: linear-gradient(to bottom, #111, #000);
    padding: 60px 40px;
    border: 1px solid var(--accent-color);
    margin-bottom: 80px;
}
.application-section h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.application-section p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.contact-info-box {
    background: #624608;
    display: inline-block;
    padding: 30px 50px;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 20px;
}
.contact-methods {
    border-top: 1px solid #fff;
}
.contact-item {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #fff;
}
.contact-item .label {
    color: var(--accent-color);
    margin-right: 15px;
    font-weight: bold;
}
.terms-section {
    padding-top: 40px;
    color: #888;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .recruit-main-box {
        padding: 30px 20px;
    }
    .recruit-item h3 {
        font-size: 1.5rem;
    }

	.page-hero h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0px;
    letter-spacing: 0.1em;
}
.page-hero p {
    font-size: 1.1rem;
    color: #ccc;
    letter-spacing: 0.2em;
}

	.page-hero {
    padding: 20px 0 20px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
	.recruit-intro p {
    font-size: 0.9em;
    line-height: 1.4em;
    color: #ddd;
		text-align: left;
}
    /* Recruit 페이지 전용 - 모바일 여백 수정 */
    .recruit-message-box {
        padding: 25px 15px;
        margin-bottom: 40px;
    }
    .application-section {
        padding: 30px 15px;
        margin-bottom: 40px;
    }
    .contact-info-box {
        display: block;
        width: 100%;
        padding: 20px 15px;
        border-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .contact-item {
        font-size: 1rem;
        word-break: break-all;
    }
    .contact-item .label {
        display: block;
        margin-bottom: 5px;
    }
}
.policy-container {
    max-width: 800px;
    margin: 0 auto;
}
.policy-block {
    margin-bottom: 50px;
}
.policy-block h3 {
    font-size: 1.3rem;
    color: #fff;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 20px;
}
.policy-block p {
    color: #ccc;
    line-height: 2;
}
.footer-links {
    margin: 20px 0;
}
.footer-links a {
    display: inline-block;
    margin: 0 15px;
    color: #888;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--accent-color);
}
@media (max-width: 768px) {
    .recruit-row {
        flex-direction: column;
    }
    .recruit-row dt {
        margin-bottom: 10px;
    }
    .price-amount {
        min-width: auto;
        width: 100%;
    }
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
.mobile-bottom-nav {
    display: none;
}
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid #333;
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }
    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #d4af37;
        font-size: 0.6rem;
        width: 20%;
        height: 100%;
    }
    .nav-item svg {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
        stroke: #d4af37;
        transition: 0.3s;
    }
    .nav-item span {
        font-family: var(--font-main);
        letter-spacing: 0.05em;
        transition: 0.3s;
    }
    .nav-item:hover,
    .nav-item:active {
        color: var(--accent-color);
    }
    .nav-item:hover svg,
    .nav-item:active svg {
        stroke: var(--accent-color);
        filter: drop-shadow(0 0 5px var(--accent-color));
    }
}
.section-concept {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}
.section-cast {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0205 50%, #050505 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}
.section-ladies {
    background: radial-gradient(circle at top right, rgba(114, 14, 30, 0.1), transparent 70%),
        linear-gradient(to bottom, #050505, #000);
}
.section-contact {
    background: linear-gradient(to top, #1a0205, #000);
    border-top: 1px solid rgba(114, 14, 30, 0.2);
}
.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}
@media (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
}
.price-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    padding: 30px 40px 10px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    border-color: var(--accent-color);
    background: rgba(220, 179, 104, 0.05);
}
.price-header {
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-card.tetra {
    border-top: 2px solid #cd7f32;
}
.price-card.penta {
    border-top: 2px solid #e5e4e2;
}
.price-card.octa {
    border-top: 2px solid #dcb368;
}
.price-card.kalon {
    border-top: 2px solid #ffffff;
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0.8), rgba(0, 0, 0, 0.9));
}
.price-card .course-obi {
    margin-top: auto;
    margin-bottom: 20px;
}
.price-amount {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.price-amount div {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0;
}
.price-amount div+div {
    margin-top: 10px;
}
.price-desc {
    font-size: 0.9rem;
    color: #999;
}
.jp-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 6px 20px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-main);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-top: 15px;
}
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
}
.news-modal.active {
    display: flex;
}
.news-modal-content {
    background: #111;
    border: 1px solid #333;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    border-radius: 15px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(220, 179, 104, 0.2);
    animation: modalSlide 0.4s ease-out;
}
@keyframes modalSlide {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    color: #fff;
    transition: 0.3s;
}
.close-modal:hover {
    background: var(--accent-color);
    color: #000;
}
.modal-img-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: #000;
}
.modal-img-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(1);
    z-index: 1;
}
.modal-img-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
}
.modal-text-content {
    padding: 40px;
}
.modal-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.modal-title {
    font-size: 1.8rem;
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 25px;
    line-height: 1.4;
}
.modal-body {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
    white-space: pre-wrap;
}
@media (max-width: 768px) {
    .modal-img-wrapper {
        height: 250px;
    }
    .modal-text-content {
        padding: 25px;
    }
    .modal-title {
        font-size: 1.4rem;
    }
}
.footer-nav {
    margin-bottom: 30px;
    border-top: none;
    padding-top: 30px;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}
.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: var(--accent-color);
}

	.hidden_mo{ display: block;}
	.hidden_pc{ display: none;}

@media (max-width: 768px) {
    .footer-nav ul {
        gap: 10px 20px;
    }
    .footer-nav a {
        font-size: 0.8rem;
    }
    .header-main img {
        max-width: 200px;
    }
	.hidden_mo{ display: none;}
	.hidden_pc{ display: block;}
}
@media (max-width: 768px) {
    .section-concept .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .concept-headline {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    .concept-text {
        font-size: 0.9rem;
        line-height: 1.6;
        letter-spacing: 0.05em;
        margin-bottom: 1.5rem;
        padding: 0 10px;
        text-align: left;
    }
    .rules-list {
        margin: 2rem auto;
        padding: 20px 0;
    }
    .rules-list li {
        font-size: 1.3rem;
        margin: 6px 0;
        line-height: 1.4;
    }
}
@media (max-width: 768px) {
    .section-schedule-page .cast-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    .schedule-tabs {
        display: flex;
        justify-content: center;
        padding-bottom: 15px;
        margin-bottom: 30px;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .schedule-tabs .tab-item {
        font-size: 0.9rem;
        padding: 8px 15px;
        min-width: auto;
        flex-shrink: 0;
    }
}
.section-contact-page {
    padding-top: 150px;
}
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.contact-form {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px;
    border: 1px solid rgba(220, 179, 104, 0.2);
    border-radius: 8px;
    margin-bottom: 60px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 600;
}
.form-group label .required {
    color: #e74c3c;
    margin-left: 5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(220, 179, 104, 0.3);
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(220, 179, 104, 0.2);
    background: rgba(0, 0, 0, 0.5);
}
.form-notes {
    margin: 30px 0;
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.8;
}
.form-submit {
    text-align: center;
}
.form-submit .btn-form-submit {
    min-width: 250px;
    cursor: pointer;
    border: none;
    position: relative;
    background: linear-gradient(45deg,
            #8E6B23 0%,
            #D4AF37 25%,
            #FDE08D 50%,
            #D4AF37 75%,
            #8E6B23 100%);
    background-size: 200% auto;
    color: #1a0505;
    padding: 15px 50px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid #FDE08D;
    transition: 0.3s;
}
.form-submit .btn-form-submit::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.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite 1s;
}
.form-submit .btn-form-submit:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 0 25px rgba(220, 179, 104, 0.5);
}
.contact-tel-box {
    text-align: center;
    border-top: 1px solid rgba(220, 179, 104, 0.2);
    padding-top: 40px;
}
.tel-label {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #aaa;
}
.tel-number {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
.tel-hours {
    font-size: 0.9rem;
    color: #888;
}
@media (max-width: 768px) {
    .section-contact-page {
        padding-top: 120px;
    }
    .contact-form {
        padding: 25px 20px;
    }
    .tel-number {
        font-size: 2rem;
    }
    .profile-info {
        flex: 1;
        padding-top: 20px;
    }
}