@charset "utf-8";
/* CSS Document */
		
		html, body {
    overflow-x: hidden;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #faf8f5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 20px;
            font-weight: 300;
            color: #8B7355;
            letter-spacing: 2px;
        }
		
		.logo img{
			width: 80px;}

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #8B7355;
            font-weight: 300;
            transition: color 0.3s;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .nav-menu a:hover {
            color: #6B5A47;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: #8B7355;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 115, 85, 0.3);
            z-index: 2;
        }

        .hero-content {
            text-align: center;
            z-index: 3;
            position: relative;
        }

        .hero-image {
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(139, 115, 85, 0.2);
        }
		
.hero-image img{
	width: 90%;}

        .hero h1 {
            font-size: 48px;
            font-weight: 100;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: 4px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 16px;
            color: #fff;
            letter-spacing: 1px;
            opacity: 0.9;
            text-shadow: 0 1px 5px rgba(0,0,0,0.3);
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 100;
            color: #8B7355;
            margin-bottom: 20px;
            letter-spacing: 3px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.2s;
        }

        .section.visible .section-title {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: #C4A484;
        }

        .section-caption {
            text-align: center;
            font-size: 14px;
            color: #999;
            margin: 30px 0;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.4s;
        }

        .section.visible .section-caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* News Section */
        .news {
            background: #fff;
        }

        .news-item {
            padding: 30px;
            background: #faf8f5;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 4px solid #C4A484;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .section.visible .news-item {
            opacity: 1;
            transform: translateX(0);
        }

        .section.visible .news-item:nth-child(2) { transition-delay: 0.1s; }
        .section.visible .news-item:nth-child(3) { transition-delay: 0.2s; }

        .news-date {
            font-size: 12px;
            color: #999;
            margin-bottom: 10px;
        }

        .news-title a{
            font-size: 16px;
            color: #8B7355;
            line-height: 1.6;
        }
		
		 .news-title a:hover {
      color: #ccc;
      text-decoration: none;
  }
		
		

        /* About Section */
        .about {
            background: linear-gradient(to bottom, #fff, #f0f8ff);
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
            border-radius: 15px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease 0.3s;
        }

        .section.visible .about-image {
            opacity: 1;
            transform: scale(1);
        }

.about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 18px;
            letter-spacing: 2px;
            z-index: 1;
        }

        .about-text {
            text-align:left;
            max-width: 800px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.5s;
        }

        .section.visible .about-text {
            opacity: 1;
            transform: translateY(0);
        }

        /* Quality Section */
        .quality {
            background: #f8f6f2;
        }

        .quality-grid {
            display: flex;
            flex-direction: column;
            gap: 80px;
            margin-top: 60px;
        }

        .quality-item {

            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .section.visible .quality-item {
            opacity: 1;
            transform: translateY(0);
        }

        .section.visible .quality-item:nth-child(1) { transition-delay: 0.1s; }
        .section.visible .quality-item:nth-child(2) { transition-delay: 0.3s; }
        .section.visible .quality-item:nth-child(3) { transition-delay: 0.5s; }

        .quality-content {
            text-align: left;
        }

        .quality-number {
            font-size: 48px;
            font-weight: 100;
            color: #C4A484;
            margin-bottom: 20px;
        }

        .quality-title {
            font-size: 24px;
            color: #8B7355;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .quality-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
			text-align: left;
        }

        .quality-slider {
            position: relative;
            width: 400px;
            height: 400px;
            overflow: hidden;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

.slider-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .product-item {
            width: 100%;
            height: 100%;
            background: #e8ddd1;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .product-item:hover {
            transform: scale(1.1);
        }

/*        .product-item::before {
            content: '';
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, #f0f0f0 30%, #8B7355 32%, #8B7355 38%, transparent 40%);
            border-radius: 50%;
        }*/
		
		.product-item img{
			width: 100%;
		}

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slider-dot.active {
            background: #C4A484;
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .slider-arrow {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s ease;
            color: #8B7355;
            font-size: 18px;
        }

        .slider-arrow:hover {
            background: rgba(196,164,132,0.9);
            color: white;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #C4A484;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(196,164,132,0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #B09374;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196,164,132,0.6);
        }

        /* Tahiti Lagoon Section */
        .tahiti-lagoon {
            background: linear-gradient(to bottom, #f0f8ff, #e6f3ff);
        }

        .lagoon-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #4A90E2 0%, #2E8B57 100%);
            border-radius: 15px;
            margin: 30px 0;
            position: relative;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s ease 0.3s;
        }
		
        .lagoon-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .section.visible .lagoon-image {
            opacity: 1;
            transform: scale(1);
        }

        .lagoon-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 18px;
            letter-spacing: 2px;
            z-index: 1;
        }

        /* Nurturing Section */
        .nurturing {
            background: #f8f6f2;
        }

        .nurturing-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .nurturing-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #8B7355 0%, #6B5A47 100%);
            border-radius: 15px;
            position: relative;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease 0.3s;
        }
		
        .nurturing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .section.visible .nurturing-image {
            opacity: 1;
            transform: translateX(0);
        }

        .nurturing-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 18px;
            letter-spacing: 2px;
            z-index: 1;
        }

        .nurturing-text {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease 0.5s;
        }

        .section.visible .nurturing-text {
            opacity: 1;
            transform: translateX(0);
        }

        /* Movies Section */
        .movies {
            background: #fff;
        }

        .movies-hero {
            width: 100%;
            height: 500px;
            background: #000;
            border-radius: 15px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.8s ease 0.3s;
        }

        .section.visible .movies-hero {
            opacity: 1;
            transform: scale(1);
        }

        .movies-hero iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 15px;
        }

        .movies-hero-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #8B7355;
            font-size: 18px;
            background: #f0f0f0;
        }

        .movies-hero-placeholder::before {
            content: '▶';
            font-size: 48px;
            margin-right: 15px;
        }

        .movies-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .movie-thumbnail {
            width: 100%;
            height: 120px;
            background: #e0e0e0;
            border-radius: 8px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
            overflow: hidden;
            border: 3px solid transparent;
            opacity: 0;
            transform: translateY(30px);
        }

        .section.visible .movie-thumbnail {
            opacity: 1;
            transform: translateY(0);
        }

        .section.visible .movie-thumbnail:nth-child(1) { transition-delay: 0.5s; }
        .section.visible .movie-thumbnail:nth-child(2) { transition-delay: 0.6s; }
        .section.visible .movie-thumbnail:nth-child(3) { transition-delay: 0.7s; }
        .section.visible .movie-thumbnail:nth-child(4) { transition-delay: 0.8s; }

        .movie-thumbnail.active {
            border-color: #C4A484;
            transform: scale(1.02);
        }

        .movie-thumbnail:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .movie-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

        .movie-thumbnail::before {
            content: '▶';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 24px;
            z-index: 2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
        }

        .movie-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 1;
            transition: background 0.3s;
        }

        .movie-thumbnail:hover::after {
            background: rgba(0,0,0,0.1);
        }

        .movie-title {
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
            color: white;
            font-size: 12px;
            z-index: 3;
            text-shadow: 0 1px 3px rgba(0,0,0,0.7);
        }

        /* Links Section */
        .links {
            background: #2c2c2c;
            color: #fff;
        }

        .links .section-title {
            color: #C4A484;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .link-item {
            background: #3c3c3c;
            padding: 30px 20px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.5s ease;
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px);
        }
		
/* すべての .link-item の hover を削除 */
.link-item:hover {
    background: #3c3c3c; /* ←デフォルト背景色に戻す */
    transform: none;
}

/* aタグを持つ .link-item だけ hover 効くようにする */
.link-item:has(a):hover {
    background: #4c4c4c;
    transform: translateY(-5px);
}


.link-item a{color: #C4A484;}

        .link-item a:hover {
            background: #ccc;
        }

        .link-item h4 {
            color: #C4A484;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .section.visible .link-item {
            opacity: 1;
            transform: translateY(0);
        }
		
		

        .section.visible .link-item:nth-child(1) { transition-delay: 0.1s; }
        .section.visible .link-item:nth-child(2) { transition-delay: 0.2s; }
        .section.visible .link-item:nth-child(3) { transition-delay: 0.3s; }
        .section.visible .link-item:nth-child(4) { transition-delay: 0.4s; }
        .section.visible .link-item:nth-child(5) { transition-delay: 0.5s; }
        .section.visible .link-item:nth-child(6) { transition-delay: 0.6s; }
        .section.visible .link-item:nth-child(7) { transition-delay: 0.7s; }
        .section.visible .link-item:nth-child(8) { transition-delay: 0.8s; }
        .section.visible .link-item:nth-child(9) { transition-delay: 0.9s; }


        /* Footer */
        footer {
            background: #f8f6f2;
            padding: 60px 0 30px;
            text-align: center;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 100;
            color: #8B7355;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .footer-info {
            font-size: 12px;
            color: #999;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .footer-button {
            display: inline-block;
            padding: 15px 40px;
            background: #C4A484;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 14px;
            letter-spacing: 1px;
            transition: background 0.3s;
        }

        .footer-button:hover {
            background: #B09374;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100vw; 
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: right 0.3s ease;
                z-index: 999;
            }
			
			.logo img {
			width: 50px;}

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 20px 0;
            }

            .nav-menu a {
                font-size: 18px;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .hero h1 {
                font-size: 32px;
                letter-spacing: 2px;
            }

            .hero-image {
                width: 300px;
                height: 200px;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 28px;
                letter-spacing: 2px;
            }

            .quality-grid {
                gap: 40px;
            }

            .quality-item {
                grid-template-columns: 1fr !important;
                text-align: center;
                gap: 30px;
            }

            .quality-content {
                text-align: center;
            }

            .quality-slider {
                width: 100%;
				height: 350px;
                max-width: 350px;
                margin: 0 auto;
            }

            .nurturing-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .movies-hero {
                height: 250px;
            }

            .movies-thumbnails {
                grid-template-columns: repeat(2, 1fr);
            }

            .links-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 0 20px;
            }

            .hero h1 {
                font-size: 24px;
            }

            .hero-image {
                width: 250px;
                height: 180px;
            }

            .section-title {
                font-size: 24px;
            }

            .quality-number {
                font-size: 36px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }

.footer-social {
    display: flex;
    justify-content: center; /* 真ん中寄せ */
    gap: 20px; /* アイコンの間隔 */
    margin-top: 30px;
}

.footer-social .social-link {
    color: #C4A484; /* ベースカラー */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-link:hover {
    color: #888; /* ホバー時グレー */
    transform: translateY(-3px); /* ちょっと浮くアニメーション */
}

.footer-social svg {
    width: 40px;
    height: 40px;
}

.spbr{
	display: none;
}


@media (max-width: 480px) {.spbr{
	display:block;
}}