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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #1a2332;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(56, 189, 248, 0.3);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    color: #e2e8f0;
    font-size: 0.9rem;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.cookie-btn.accept {
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
    color: white;
}

.cookie-btn.decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-container:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(56, 189, 248, 0.4);
}
.logo{
    font-size: 0;
}
.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #38bdf8;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(30, 58, 95, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: heroSlideIn 1s ease forwards;
}

.hero-line.accent {
    background: linear-gradient(45deg, #38bdf8, #0ea5e9, #06b6d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroSlideIn 1s ease 0.3s forwards, gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.6s forwards;
}

.cta-btn {
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    animation: heroFadeIn 1s ease 0.9s forwards;
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.btn-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-btn:hover .btn-wave {
    width: 300px;
    height: 300px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #38bdf8, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Voyage Section */
.voyage-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.voyage-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.voyage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.voyage-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.voyage-tag {
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.voyage-content {
    padding: 2rem;
}

.section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.voyage-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.voyage-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 400;
}

.info-value {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-value.price {
    color: #38bdf8;
    font-size: 1.3rem;
    font-weight: 700;
}

.voyage-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.reserve-btn {
    background: linear-gradient(45deg, #10b981, #059669);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Captains Section */
.captains-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.section-title-center {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
}

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

.captain-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.captain-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.captain-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.captain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.captain-card:hover .captain-image img {
    transform: scale(1.1);
}

.captain-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.captain-badge {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.captain-info {
    padding: 1.5rem;
}

.captain-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.captain-specialty {
    color: #38bdf8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Routes Section */
.routes-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.routes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.routes-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
}

.map-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.map-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.7) contrast(1.2);
}

.route-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.link-group{
    display: flex;
    flex-direction: column;
}
.link-group a{
    color: #fff!important;
    transition: 0.3s linear;

}

.link-group a:hover{
    color: #059669!important;
    transition: 0.3s linear;
}
.route-point {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.point-marker {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    animation: markerPulse 2s ease-in-out infinite;
}

.point-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(56, 189, 248, 0.3);
    border-radius: 50%;
    animation: markerRipple 2s ease-in-out infinite;
}

.point-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.route-point:hover .point-label {
    opacity: 1;
}

.route-point:hover {
    transform: scale(1.2);
}

.route-info {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

#routeTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

#routeDescription {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.route-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.route-details.hidden {
    display: none;
}

.route-duration {
    color: #94a3b8;
    font-size: 0.9rem;
}

.route-price {
    color: #38bdf8;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
}

.service-card.premium::before {
    background: linear-gradient(45deg, #10b981, #059669);
}

.service-card.luxury::before {
    background: linear-gradient(45deg, #f59e0b, #f97316);
}

.service-card.exclusive::before {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
}

.service-badge {
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card.premium .service-badge {
    background: linear-gradient(45deg, #10b981, #059669);
}

.service-card.luxury .service-badge {
    background: linear-gradient(45deg, #f59e0b, #f97316);
}

.service-card.exclusive .service-badge {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 900;
    color: #38bdf8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-btn {
    width: 100%;
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
    border: none;
    padding: 1rem;
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 2rem 0;
}

.contact-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-value {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-form {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 15px;
    padding: 1rem;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #38bdf8, #0ea5e9);
    border: none;
    padding: 1rem;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-text {
    text-align: center;
    color: #94a3b8;
}

.footer-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(45deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 50%;
    animation: waveMove 6s ease-in-out infinite;
}

.wave2 {
    animation-delay: -2s;
    animation-duration: 8s;
    opacity: 0.7;
}

.wave3 {
    animation-delay: -4s;
    animation-duration: 10s;
    opacity: 0.5;
}

/* Animations */
@keyframes heroSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes markerRipple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25%) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .voyage-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        width: 95%;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .section-title,
    .section-title-center {
        font-size: 2rem;
    }
    
    .captains-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .voyage-image {
        height: 300px;
    }
    
    .captain-image {
        height: 200px;
    }
    
    .map-background {
        height: 300px;
    }
}



.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
    padding: 20px;
    color: #fff;
}
.text-wrapper ul{
    list-style: initial!important;
}

.text-wrapper p{
    margin-bottom: 10px;
}