/* ありがとう倶楽部について ページ専用スタイル */

/* ビジョンセクション */
.vision-section {
    background: linear-gradient(135deg, var(--wa-bg-light) 0%, var(--wa-bg-cream) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 198, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.okonomiyaki-concept {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.concept-visual {
    text-align: center;
}

.okonomiyaki-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--wa-secondary) 0%, var(--wa-accent) 50%, var(--wa-gold) 100%);
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(164, 198, 36, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
    position: relative;
}

.okonomiyaki-circle .emoji {
    font-size: 80px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
    animation: rotate-slow 10s linear infinite;
}

.okonomiyaki-circle .okonomiyaki-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: rotate-slow 10s linear infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(164, 198, 36, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(164, 198, 36, 0.4);
    }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.concept-text h3 {
    font-size: 2rem;
    color: var(--wa-primary);
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Klee One', cursive;
    font-weight: 600;
}

.concept-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--wa-text-dark);
    margin-bottom: 0;
    background: white;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--wa-secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ミッションセクション */
.mission-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

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

.mission-statement {
    background: linear-gradient(135deg, var(--wa-secondary), var(--wa-accent));
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(164, 198, 36, 0.25);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    opacity: 0.3;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.mission-main {
    font-size: 1.3rem;
    line-height: 2;
    color: white;
    font-weight: 500;
    text-align: left;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 12の方向性セクション */
.directions-section {
    background: var(--wa-bg-light);
    padding: 80px 0;
    position: relative;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.direction-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 3px solid var(--wa-secondary);
    overflow: hidden;
}

.direction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wa-secondary), var(--wa-accent), var(--wa-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.direction-card:hover::before {
    transform: scaleX(1);
}

.direction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(164, 198, 36, 0.2);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--wa-secondary), var(--wa-accent));
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(164, 198, 36, 0.3);
}

.direction-card h3 {
    color: var(--wa-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0 10px;
}

.card-content p {
    color: var(--wa-text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* バリューセクション */
.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--wa-bg-cream) 100%);
}

.values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--wa-secondary), var(--wa-accent));
    opacity: 0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: var(--wa-secondary);
    box-shadow: 0 20px 40px rgba(164, 198, 36, 0.2);
}

.value-item:hover::after {
    opacity: 1;
    width: 80%;
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: bounce-slow 3s ease-in-out infinite;
    color: var(--wa-primary);
}

.value-icon i {
    font-size: inherit;
    color: inherit;
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.value-item h3 {
    color: var(--wa-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: var(--wa-text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
    .okonomiyaki-concept {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }
    
    .okonomiyaki-circle {
        width: 250px;
        height: 250px;
    }
    
    .okonomiyaki-circle .emoji {
        font-size: 100px;
    }
    
    .concept-text h3 {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .directions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* アニメーション */
.vision-section,
.mission-section,
.directions-section,
.values-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.vision-section { animation-delay: 0.1s; }
.mission-section { animation-delay: 0.2s; }
.directions-section { animation-delay: 0.3s; }
.values-section { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 既存セクションとの調和 */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-marker {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--wa-secondary), var(--wa-accent));
    border-radius: 50%;
    margin-bottom: 15px;
    animation: rotate-slow 10s linear infinite;
}

.section-title {
    font-size: 2.5rem;
    color: var(--wa-primary);
    font-family: 'Klee One', cursive;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ホバー効果の統一 */
.direction-card,
.value-item {
    cursor: pointer;
}

/* スクロールトリガーアニメーション用 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}/* ありがとう倶楽部について ページ専用スタイル */

/* 代表挨拶セクション */
.greeting-section {
    background: white;
    padding: 80px 0;
}

.greeting-content {
    max-width: 900px;
    margin: 0 auto;
}

/* 代表者プロフィール */
.representative-profile {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--wa-bg-cream);
    border-radius: 15px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.08);
}

.profile-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
    background: white;
    border: 3px solid var(--wa-secondary);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.profile-photo:hover img {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
    padding-top: 20px;
}

.representative-name {
    font-size: 2rem;
    color: var(--wa-primary);
    margin-bottom: 10px;
    font-family: "Klee One", serif;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.representative-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--wa-secondary), transparent);
}

.representative-title {
    font-size: 1.1rem;
    color: var(--wa-text-dark);
    opacity: 0.8;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.greeting-message {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--wa-text-dark);
}

.greeting-message.with-photo {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.greeting-intro {
    font-size: 1.2rem;
    color: var(--wa-secondary);
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.greeting-intro::before {
    content: '◯';
    position: absolute;
    left: 0;
    color: var(--wa-accent);
}

.greeting-message p {
    margin-bottom: 20px;
    text-indent: 1em;
}

.greeting-closing {
    margin-top: 30px;
    padding: 20px;
    background: var(--wa-bg-light);
    border-left: 4px solid var(--wa-secondary);
    font-weight: 500;
    border-radius: 5px;
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .representative-profile {
        gap: 30px;
    }
    
    .profile-photo {
        width: 170px;
        height: 170px;
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    /* 本文テキストを左寄せ */
    .greeting-message p,
    .greeting-intro,
    .greeting-closing,
    .purpose-card p,
    .note-item p,
    .direction-card p,
    .concept-description,
    .membership-body p,
    .corporate-benefits li,
    .membership-benefits li {
        text-align: left !important;
    }
    
    .greeting-section {
        padding: 60px 0;
    }
    
    .representative-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 10px;
    }
    
    .profile-info {
        padding-top: 0;
        width: 100%;
    }
    
    .representative-name {
        font-size: 1.8rem;
    }
    
    .representative-name::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .greeting-message.with-photo {
        padding: 20px;
        margin-top: 20px;
    }
    
    .greeting-intro {
        font-size: 1.1rem;
        padding-left: 15px;
    }
    
    .greeting-message p {
        text-indent: 0.5em;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    
    .representative-name {
        font-size: 1.5rem;
    }
    
    .representative-title {
        font-size: 1rem;
    }
    
    .greeting-message {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .greeting-intro {
        font-size: 1rem;
    }
}