/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{

}
section{
    padding: 3em;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #3A3A3A;
    background-color: #F8F1F1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #AD7693;
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #3A3A3A;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #3A3A3A;
    margin: 3px 0;
    transition: 0.3s;
}

/* Blog Preview Hover Effect */
.topvar-contact-item {
    position: relative;
}

.topvar-blog-preview {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
   /*-- background: white; ---*/
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    min-width: 200px;
}

.topvar-contact-item:hover .topvar-blog-preview {
    opacity: 1;
    visibility: visible;
}

.topvar-blog-item {
    width: 200px;
    height: 200px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.topvar-blog-item:hover {
    transform: scale(1.05);
}

.topvar-blog-image {
    width: 130px;
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
}

.topvar-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topvar-blog-text {
    font-size: 8px;
    color: #3A3A3A;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topvar-blog-text a {
    color: #3A3A3A;
    text-decoration: none;
    font-size: 18px;
}

.topvar-blog-text a:hover {
    color: #AD7693;
}

/* Arrow indicator */
.topvar-blog-preview::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .topvar-blog-preview {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        min-width: 250px;
    }
    
    .topvar-blog-preview::before {
        display: none;
    }
} 
/* Responsive adjustments */
@media (max-width: 768px) {
    .topvar-blog-preview {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        min-width: 250px;
    }
    
    .topvar-blog-preview::before {
        display: none;
    }
}
/* Hero Section */
.hero {
    background: url('assets/img/business1-1.png') no-repeat center center;
    background-size: cover;
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #AD7693 0%, #C69DAF 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(173, 118, 147, 0.3);
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.2rem;
    color: #3A3A3A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-title-line {
    display: block;
    font-weight: 400;
}

.hero-title-highlight {
    display: block;
    font-weight: 700;
    background: linear-gradient(135deg, #AD7693 0%, #C69DAF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #555;
}

.hero-feature i {
    color: #AD7693;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn i {
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.4s both;
}

.hero-image-main {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: white;
}

.hero-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-main:hover .hero-main-img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(173, 118, 147, 0.1) 0%, rgba(198, 157, 175, 0.1) 100%);
    pointer-events: none;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: slideInUp 1s ease-out 0.8s both;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #AD7693;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    background: rgba(173, 118, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(173, 118, 147, 0.2);
    transform: translateY(-2px);
}

.scroll-arrow i {
    color: #AD7693;
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #AD7693 0%, #C69DAF 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(173, 118, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 118, 147, 0.4);
}

.btn-secondary {
    background: white;
    color: #AD7693;
    border: 2px solid #AD7693;
}

.btn-secondary:hover {
    background: #AD7693;
    color: white;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #3A3A3A;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #AD7693 0%, #C69DAF 100%);
    border-radius: 2px;
}

/* Intro Section */
.intro {
    background-color: #F8F1F1;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    z-index: 2;
    position: relative;
}

.intro-title {
    font-size: 2.5rem;
    color: #3A3A3A;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.intro-promotion {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-images {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.flowing-image {
    position: absolute;
    right: -200px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.1, 0.4, 0.5, 1);
    animation: flowLeft 6s linear infinite;
}

.flowing-image:nth-child(1) {
    top: 20px;
    animation-delay: 0s;
}

.flowing-image:nth-child(2) {
    top: 80px;
    animation-delay: 1.6s;
}

.flowing-image:nth-child(3) {
    top: 140px;
    animation-delay: 3.2s;
}

.flowing-image:nth-child(4) {
    top: 200px;
    animation-delay: 4.8s;
}

.flowing-image:nth-child(5) {
    top: 260px;
    animation-delay: 6.4s;
}

.flowing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0.5, 0, 0.1);
}

/* Expansion effect when image reaches center */
.flowing-image.expand {
    transform: scale(4);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(173, 118, 147, 0.3);
}

.flowing-image.expand img {
    transform: scale(1.1) transition 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes flowLeft {
    0% {
        right: -200px;
        transform: scale(1);
    }
    40% {
        right: 50%;
        transform: translateX(50%) scale(1);
    }
    50% {
        right: 50%;
        transform: translateX(50%) scale(1.5);
    }
    60% {
        right: 50%;
        transform: translateX(50%) scale(1);
    }
    100% {
        right: -200px;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-images {
        height: 300px;
    }
    
    .flowing-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .intro {
        padding: 60px 0;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .intro-promotion {
        font-size: 1rem;
    }
    
    .flowing-image {
        width: 100px;
        height: 100px;
    }
}
/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: url('./assets/img/city.png') no-repeat center center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
    border-radius: 15px;
}
.service-icon {
    height: 80px;
    width: 80px;
    background: linear-gradient(135deg, #F8F1F1 0%, #EFEFEF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #AD7693;
}

.service-card h3 {
    color: #3A3A3A;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #AD7693;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #8B5A7A;
}

.service-link.disabled {
    color: #999;
    cursor: not-allowed;
}

.badge {
    background: #FFB6C1;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.coming-soon {
    opacity: 0.8;
}

/* Features */
.features {
    padding: 80px 0;
    background: #F8F1F1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #AD7693;
}

.feature-item h3 {
    color: #3A3A3A;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    position: relative;
    background: linear-gradient(135deg, #AD7693 0%, #C69DAF 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}
.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.cta .btn-primary {
    background: white;
    color: #AD7693;
    font-weight: 600;
}

.cta .btn-primary:hover {
    background: #F8F1F1;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #3A3A3A;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #CCC;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #AD7693;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #CCC;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 0.8rem;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        justify-content: center;
    }
    
    .hero-stats {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F8F1F1 0%, #EFEFEF 100%);
    padding: 120px 0 60px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    object-position: center;
    object-fit: cover;
}

.page-header-image {
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0.5;
    border-radius: 10px;
    position: absolute;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #3A3A3A;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: white;
}

.service-detail-item {
    padding: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    position: relative;
    border: 1px solid #F0F0F0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-detail-img {
    top: 20%;
    right: 0;
    width: 40%;
    height: 60%;
    opacity: 1;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    transform: translate(-3em, -3em);
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F8F1F1 0%, #EFEFEF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 3rem;
    color: #AD7693;
}

.service-detail-text h2 {
    color: #3A3A3A;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.service-features,
.service-benefits,
.service-pricing {
    margin-bottom: 2rem;
}

.service-features h3,
.service-benefits h3,
.service-pricing h3 {
    color: #3A3A3A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-features ul,
.service-benefits ul {
    list-style: none;
    padding-left: 0;
}

.service-features ul li,
.service-benefits ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-features ul li::before,
.service-benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #AD7693;
    font-weight: bold;
}

.service-pricing p {
    color: #666;
    margin-bottom: 0.5rem;
}

.service-detail-item.coming-soon {
    opacity: 0.8;
}

.service-detail-item.coming-soon .service-detail-icon {
    background: linear-gradient(135deg, #FFE4E1 0%, #FFF0F5 100%);
}

/* Responsive for Services Detail */
@media (max-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .service-detail-icon {
        margin: 0 auto;
    }
    
    .service-detail-item {
        padding: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-img {
        transform: translate(-2em, -2em);
    }
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    color: #3A3A3A;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.mission {
    font-size: 1.3rem;
    color: #AD7693;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 1.5rem;
    background: linear-gradient(135deg, #F8F1F1 0%, #EFEFEF 100%);
    border-radius: 15px;
    border-left: 4px solid #AD7693;
}

.overview-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #F8F1F1 0%, #EFEFEF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overview-image i {
    font-size: 4rem;
    color: #AD7693;
}

/* Company Details */
.company-details {
    padding: 80px 0;
    background: #F8F1F1;
}

.details-table {
    max-width: 800px;
    margin: 0 auto;
}

.details-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.details-table th,
.details-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #F0F0F0;
}

.details-table th {
    background: #AD7693;
    color: white;
    font-weight: 600;
    width: 30%;
}

.details-table td {
    color: #3A3A3A;
}

.details-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-table ul li {
    padding: 0.3rem 0;
    color: #666;
}

.details-table ul li::before {
    content: '•';
    color: #AD7693;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Business History */
.business-history {
    padding: 80px 0;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #AD7693;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: #AD7693;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 0 2rem;
    flex: 1;
    position: relative;
}

.timeline-content h3 {
    color: #3A3A3A;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Values */
.values {
    padding: 80px 0;
    background: #F8F1F1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F8F1F1 0%, #EFEFEF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: #AD7693;
}

.value-item h3 {
    color: #3A3A3A;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .overview-image {
        width: 150px;
        height: 150px;
    }
    
    .overview-image i {
        font-size: 3rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 40px;
    }
    
    .timeline-date {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .details-table th,
    .details-table td {
        display: block;
        width: 100%;
    }
    
    .details-table th {
        background: #AD7693;
        color: white;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    color: #3A3A3A;
    margin-bottom: 1rem;
}

.form-lead {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #3A3A3A;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.required {
    color: #E74C3C;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #AD7693;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.checkbox-label a {
    color: #AD7693;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.submit-btn i {
    font-size: 1rem;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, #F8F1F1 0%, #EFEFEF 100%);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

.contact-info h2 {
    color: #3A3A3A;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-icon i {
    font-size: 1.2rem;
    color: #AD7693;
}

.info-content h3 {
    color: #3A3A3A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.info-content a {
    color: #AD7693;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #8B5A7A;
}

.contact-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
}

.contact-note h3 {
    color: #3A3A3A;
    margin-bottom: 1rem;
}

.contact-note ul {
    list-style: none;
    padding: 0;
}

.contact-note ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.contact-note ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #AD7693;
    font-weight: bold;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}

/* Privacy Policy Content */
.privacy-content {
    padding: 80px 0;
    background: white;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #3A3A3A;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-left: 4px solid #AD7693;
    padding-left: 1rem;
}

.policy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.policy-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.policy-section ul li::before {
    content: '•';
    color: #AD7693;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info-box {
    background: linear-gradient(135deg, #F8F1F1 0%, #EFEFEF 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: #3A3A3A;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
    text-align: center;
}

.policy-footer p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Tokusho Content */
.tokusho-content {
    padding: 80px 0;
    background: white;
}

.tokusho-table {
    max-width: 1000px;
    margin: 0 auto;
}

.tokusho-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tokusho-table th,
.tokusho-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #F0F0F0;
    vertical-align: top;
}

.tokusho-table th {
    background: #AD7693;
    color: white;
    font-weight: 600;
    width: 25%;
    min-width: 200px;
}

.tokusho-table td {
    color: #3A3A3A;
    line-height: 1.6;
}

.tokusho-table p {
    margin-bottom: 0.5rem;
    color: #666;
}

.tokusho-table ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.tokusho-table ul li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.tokusho-table ul li::before {
    content: '•';
    color: #AD7693;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tokusho-table a {
    color: #AD7693;
    text-decoration: none;
}

.tokusho-table a:hover {
    text-decoration: underline;
}

/* Responsive for Privacy and Tokusho Pages */
@media (max-width: 768px) {
    .policy-content,
    .tokusho-table {
        padding: 0 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .tokusho-table th,
    .tokusho-table td {
        display: block;
        width: 100%;
        padding: 1rem;
    }
    
    .tokusho-table th {
        background: #AD7693;
        color: white;
        font-weight: 600;
        border-bottom: none;
    }
    
    .tokusho-table td {
        border-bottom: 1px solid #F0F0F0;
    }
}