/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* カスタムカーソル */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(159, 122, 73, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    filter: blur(1px);
    box-shadow: 0 0 10px rgba(159, 122, 73, 0.5);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(159, 122, 73, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
    filter: blur(2px);
}

.sparkle {
    position: fixed;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: sparkle-fade 0.8s ease-out forwards;
    filter: blur(0.8px);
}

@keyframes sparkle-fade {
    0% {
        opacity: 0.8;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translate(var(--tx), var(--ty));
    }
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #333;
    opacity: 0;
    animation: fadeInPage 1.5s ease-in-out forwards;
    cursor: none;
    background: #fff5f8;
    background-attachment: fixed;
}

body.loaded {
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

/* Navigation Styles */
.nav {
    display: block;
    margin-left: auto;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #9f7a49;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav a:hover {
    color: #9f7a49;
}

.nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav a.cta-button {
    display: inline-block;
    padding: 5px 0;
    background: none;
    color: #333;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
    width: auto;
}

.nav a.cta-button:hover {
    background: none;
    transform: none;
    color: #9f7a49;
}

.nav a.cta-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #9f7a49;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav a.cta-button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    width: 24px;
    height: 16px;
    position: fixed;
    right: 20px;
    top: 27px;
    z-index: 1001;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #9f7a49;
    position: absolute;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 7px;
    width: 85%;
    right: 0;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(5px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header-inner {
        justify-content: flex-start;
    }

    .nav {
        margin-left: 0;
    }

    .nav ul {
        justify-content: flex-start;
    }

    /* Base Adjustments */
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .container {
        padding: 0 15px;
    }

    /* Header & Navigation */
    .header {
        height: 70px;
    }

    .header-inner {
        height: 70px;
        padding: 0 15px;
    }

    .logo img {
        height: 35px;
    }

    .hamburger {
        display: block;
    }

    .nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        padding: 100px 30px 30px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nav a {
        display: block;
        color: #333;
        text-decoration: none;
        font-size: 1rem;
        padding: 10px 0;
    }

    .nav a.cta-button {
        display: block;
        color: #333;
        text-decoration: none;
        font-size: 1rem;
        padding: 10px 0;
        margin-top: 0;
    }

    /* Hero Section */
    .hero {
        margin-top: 70px;
    }
}

@media (max-width: 375px) {
    .header {
        height: 60px;
    }

    .header-inner {
        height: 60px;
        padding: 0 10px;
    }

    .logo img {
        height: 30px;
    }

    .hamburger {
        top: 22px;
        right: 15px;
        width: 22px;
        height: 14px;
    }

    .hamburger span:nth-child(2) {
        top: 6px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav {
        width: 80%;
        padding: 80px 20px 30px;
    }

    .hero {
        margin-top: 60px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeAnimation 15s linear infinite;
}

.slideshow-image:nth-child(1) {
    animation-delay: 0s;
}

.slideshow-image:nth-child(2) {
    animation-delay: 5s;
}

.slideshow-image:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fadeAnimation {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    28% {
        opacity: 1;
    }
    33% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-copy {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

.sub-copy {
    font-size: 1.5rem;
    margin-bottom: 50px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.08em;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    padding-bottom: 30px;
}

.sub-copy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0)
    );
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 8px 0;
    background: #9f7a49;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s, background 0.3s;
    width: 32%;
    text-align: center;
}

.cta-button:hover {
    background: #876540;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 12px 0;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(159, 122, 73, 0.3);
    margin: 0 auto;
    display: inline-block;
    background: linear-gradient(135deg, #9f7a49, #876540);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 32%;
}

.cta-button.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cta-button.large:hover {
    background: linear-gradient(135deg, #876540, #755732);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 122, 73, 0.4);
}

.cta-button.large:hover::before {
    left: 100%;
}

/* Section Divider */
.features .section-title::after,
.cases .section-title::after,
.flow .section-title::after,
.price .section-title::after,
.contact .section-title::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 800px;
    height: 1px;
    margin: 30px auto 60px;
    background: linear-gradient(
        to right,
        rgba(159, 122, 73, 0),
        rgba(159, 122, 73, 0.5) 20%,
        rgba(159, 122, 73, 0.5) 80%,
        rgba(159, 122, 73, 0)
    );
}

/* Story Section */
.story {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #9f7a49;
}

/* Story Section Image */
.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(159, 122, 73, 0.1), rgba(159, 122, 73, 0.05));
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(159, 122, 73, 0.2), transparent);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper::before {
    opacity: 1;
}

.feature-item i {
    font-size: 2.8rem;
    color: #9f7a49;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    color: #876540;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, rgba(159, 122, 73, 0.3), rgba(159, 122, 73, 0.6), rgba(159, 122, 73, 0.3));
}

.feature-item p {
    color: #666;
    line-height: 1.8;
    margin-top: 15px;
}

@keyframes iconFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.feature-item:hover .feature-icon-wrapper i {
    animation: iconFloat 2s ease-in-out infinite;
}

/* Cases Section */
.cases {
    padding: 100px 0;
    background: transparent;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(159, 122, 73, 0.15);
}

.case-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.05);
}

.case-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(159, 122, 73, 0.9);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.case-content {
    padding: 30px;
}

.case-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.case-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-info {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    margin-top: 20px;
}

.case-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.case-info-label {
    flex-shrink: 0;
    width: 100px;
    font-weight: 600;
    color: #9f7a49;
}

.case-info-value {
    color: #666;
}

.case-result {
    background: rgba(159, 122, 73, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.case-result-title {
    font-weight: 600;
    color: #9f7a49;
    margin-bottom: 10px;
}

.case-result-text {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .case-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding: 0 20px;
    }

    .case-content {
        padding: 25px;
    }

    .case-title {
        font-size: 1.3rem;
    }

    .case-info-item {
        flex-direction: column;
    }

    .case-info-label {
        width: 100%;
        margin-bottom: 5px;
    }

    .cta-button, .cta-button.large, .submit-button {
        width: 48%;
        padding: 10px 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .cta-button, .cta-button.large, .submit-button {
        width: 60%;
        padding: 8px 0;
        font-size: 0.85rem;
    }
}

/* Flow Section */
.flow {
    padding: 100px 0;
    background: transparent;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.flow-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #9f7a49;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* Price Section */
.price {
    padding: 100px 0;
    background: transparent;
}

.price-content {
    margin-bottom: 40px;
}

.cta-area {
    text-align: center;
    margin: 40px auto;
}

.price-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.9) translateZ(0);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-box.visible {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #9f7a49;
    margin: 20px 0;
}

.price-features ul {
    list-style: none;
    margin: 30px 0;
}

.price-features li {
    margin: 10px 0;
}

.campaign-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #e83929;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: transparent;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.required {
    color: #e83929;
    margin-left: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    height: 150px;
}

.submit-button {
    padding: 12px 0;
    font-size: 0.95rem;
    background: #9f7a49;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 50%;
    margin: 0 auto;
    display: block;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #876540;
}

/* Footer */
.footer {
    background: #9f7a49;
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, 
        rgba(122, 91, 58, 1) 0%,
        rgba(135, 101, 64, 0.95) 30%,
        rgba(159, 122, 73, 1) 100%
    );
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    padding: 0 40px;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-info {
    text-align: left;
}

.footer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 15px;
}

.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.footer-info p {
    margin: 15px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-nav-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 15px;
}

.footer-nav-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.footer-nav-section ul {
    list-style: none;
    padding: 0;
}

.footer-nav-section li {
    margin: 12px 0;
}

.footer-nav-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-nav-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.footer-nav-section a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-nav-section a:hover::before {
    width: 10px;
    background: #fff;
}

.footer-contact {
    text-align: left;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 15px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.footer-contact p {
    margin: 15px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-logo, .footer-info, .footer-contact {
        text-align: center;
    }

    .footer-info h4::after,
    .footer-nav-section h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav-section {
        text-align: center;
    }

    .footer-nav-section a {
        padding-left: 0;
    }

    .footer-nav-section a::before {
        display: none;
    }
}

/* Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Load Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo Text Style */
.logo-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: #9f7a49;
    text-decoration: none;
    letter-spacing: 2px;
}

a, button, input[type="submit"], .cta-button, label, select, textarea {
    cursor: none;
}

.cta-area {
    text-align: center;
    margin: 40px auto;
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.3s;
}

.cta-area.visible {
    opacity: 1;
    transform: translateY(0) translateZ(0);
} 