@charset "utf-8";
/* CSS Document */


/* ========================================
   ツアーポイントセクション用CSS - point.css
======================================== */

.point-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9));
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.point-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #39FF14, #FFFF00, #FF69B4, #39FF14);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
    animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.point-container {
    position: relative;
    z-index: 1;
}

/* ヘッダー */
.point-header {
    text-align: center;
    margin-bottom: 3rem;
}

.point-title {
    font-size: 2rem;
    color: #39FF14;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    border-left: none !important;
    padding-left: 0 !important;
}

.point-title .point-icon {
    font-size: 1.5rem;
    color: #FFFF00;
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* グリッドレイアウト */
.point-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* ポイントアイテム */
.point-item {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.point-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.point-item:hover::before {
    left: 100%;
}

.point-item:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.6);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

/* ハイライトアイテム */
.point-item.highlight {
    border: 2px solid #FFFF00;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(0, 0, 0, 0.9));
}

.point-item.highlight:hover {
    border-color: #FFFF00;
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.3);
}

/* アイコンラッパー */
.point-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #39FF14, #00FF88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.point-item.highlight .point-icon-wrapper {
    background: linear-gradient(135deg, #FFFF00, #FFD700);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}

.point-icon-wrapper i {
    font-size: 1.5rem;
    color: #000000;
}

/* コンテンツ */
.point-content {
    flex: 1;
	text-align: center;
	margin: 0 auto;
}

.point-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 700;
    border-left: none !important;
    padding-left: 0 !important;
    text-shadow: none !important;
}

.point-item.highlight .point-content h3 {
    color: #FFFF00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.point-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.point-content .note {
    font-size: 0.85em;
    color: #FF69B4;
    font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .point-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .point-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .point-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .point-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .point-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .point-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .point-icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .point-content h3 {
        font-size: 1.5rem;
		text-align: center;
    }
}

@media (max-width: 480px) {
    .point-section {
        padding: 1.5rem 1rem;
    }
    
    .point-title {
        font-size: 1.4rem;
    }
    
    .point-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center!important;
        gap: 1rem;
		
    }
    
    .point-icon-wrapper {
        align-self: center;
    }
}

/* アニメーション効果 */
.point-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.point-item:nth-child(1) { animation-delay: 0.1s; }
.point-item:nth-child(2) { animation-delay: 0.2s; }
.point-item:nth-child(3) { animation-delay: 0.3s; }
.point-item:nth-child(4) { animation-delay: 0.4s; }
.point-item:nth-child(5) { animation-delay: 0.5s; }
.point-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}