@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Noto Sans JP', sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}

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

/* Header */
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
transition: all 0.3s ease;
}

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

.nav-brand {
display: flex;
align-items: center;
gap: 0.5rem;
}

.logo {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #667eea 0%, #136fff 100%);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: white;
}

.brand-name {
font-size: 1.5rem;
font-weight: 700;
color: #333;
}

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

.nav-menu a {
text-decoration: none;
color: #666;
font-weight: 500;
transition: color 0.3s ease;
}

.nav-menu a:hover {
color: #667eea;
}

.cta-button {
/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
background: linear-gradient(135deg, #222222 0%, #111111 100%);
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
background: linear-gradient(135deg, #136fff 0%, #136fff 100%);
overflow: hidden;
}

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

.floating-shapes {
position: absolute;
width: 100%;
height: 100%;
}

.floating-shapes .shape {
color: #000; /* 黒文字 */
}

.shape {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
animation: float 6s ease-in-out infinite;
}

.shape-1 {
width: 80px;
height: 80px;
top: 20%;
left: 10%;
animation-delay: 0s;
}

.shape-2 {
width: 120px;
height: 120px;
top: 60%;
right: 15%;
animation-delay: 2s;
}

.shape-3 {
width: 60px;
height: 60px;
bottom: 30%;
left: 20%;
animation-delay: 4s;
}

.shape-4 {
width: 100px;
height: 100px;
top: 10%;
right: 30%;
animation-delay: 1s;
}

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

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
z-index: 2;
}

.hero-text {
color: white;
}

.hero-title {
font-size: 3.5rem;
font-weight: 900;
line-height: 1.2;
margin-bottom: 1.5rem;
animation: slideInLeft 1s ease-out;
}

.highlight {
background: linear-gradient(45deg, #ff6b6b, #feca57);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-subtitle {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
animation: slideInLeft 1s ease-out 0.2s both;
}

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

.btn {
padding: 1rem 2rem;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
border: none;
}

.btn-primary {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}

.hero-image {
display: flex;
justify-content: center;
animation: slideInRight 1s ease-out 0.6s both;
}

.device-mockup {
position: relative;
width: 400px;
height: 300px;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-screen {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
}

.play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
animation: pulse 2s infinite;
}

.play-button:hover {
transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@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);
}
}

/* Creator Section */
.creator-section {
padding: 6rem 0;
background: white;
}

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

.section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 2rem;
color: #333;
}

.creator-story, .creator-vision {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
color: #666;
}

.creator-profile {
display: flex;
align-items: center;
gap: 1rem;
margin-top: 2rem;
}

.profile-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
}

.profile-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.profile-info h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.25rem;
}

.profile-info p {
color: #666;
font-size: 0.9rem;
}

.creator-stats {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
border-radius: 20px;
padding: 2rem;
}

.stats-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}

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

.stat-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #667eea 0%, #136FFF 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
color: white;
}

.stat-number {
font-size: 2rem;
font-weight: 700;
color: #333;
margin-bottom: 0.5rem;
}

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

/* Target Section */
.target-section {
padding: 6rem 0;
background: #f8fafc;
}

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

.section-subtitle {
font-size: 1.2rem;
color: #666;
margin-top: 1rem;
}

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

.target-card {
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
height: 200px;
overflow: hidden;
}

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

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

.card-content {
padding: 2rem;
}

.card-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #667eea 0%, #136FFF 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
margin-bottom: 1.5rem;
}

.card-content h3 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 1rem;
color: #333;
}

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

/* Problems Section */
.problems-section {
padding: 6rem 0;
background: white;
}

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

.problem-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.5rem;
background: #fff5f5;
border-radius: 12px;
border-left: 4px solid #ef4444;
transition: transform 0.3s ease;
}

.problem-item:hover {
transform: translateX(10px);
}

.problem-icon {
width: 40px;
height: 40px;
background: #fee2e2;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ef4444;
flex-shrink: 0;
}

.problem-item h3 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: #333;
}

.problem-item p {
color: #666;
font-size: 0.9rem;
line-height: 1.5;
}

/* Solutions Section */
.solutions-section {
padding: 6rem 0;
background: linear-gradient(135deg, #667eea 0%, #136fff 100%);
}

.solutions-section .section-title,
.solutions-section .section-subtitle {
color: white;
}

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

.solution-card {
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
overflow: hidden;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease;
}

.solution-card:hover {
transform: translateY(-10px);
}

.solution-image {
position: relative;
height: 200px;
overflow: hidden;
}

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

.solution-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.solution-card:hover .solution-overlay {
opacity: 1;
}

.play-icon, .chart-icon, .analytics-icon {
color: white;
}

.solution-content {
padding: 2rem;
color: white;
}

.solution-content h3 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 1rem;
}

.solution-content p {
margin-bottom: 1.5rem;
opacity: 0.9;
line-height: 1.6;
}

.feature-list {
list-style: none;
}

.feature-list li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
opacity: 0.8;
}

.feature-list li::before {
content: "✓";
position: absolute;
left: 0;
color: #4ade80;
font-weight: bold;
}

/* Benefits Section */
.benefits-section {
padding: 6rem 0;
background: #f8fafc;
}

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

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

.benefit-circle {
margin-bottom: 2rem;
}

.circle-progress {
width: 120px;
height: 120px;
border-radius: 50%;
background: conic-gradient(#667eea 0deg, #136fff 180deg, #e5e7eb 180deg);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
position: relative;
animation: rotateCircle 2s ease-in-out;
}

.circle-progress::before {
content: '';
width: 80px;
height: 80px;
background: #f8fafc;
border-radius: 50%;
position: absolute;
}

.percentage {
font-size: 1.5rem;
font-weight: 700;
color: #333;
z-index: 1;
}

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

.benefit-item h3 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 1rem;
color: #333;
}

.benefit-item p {
color: #666;
line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
padding: 6rem 0;
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.testimonial-card {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
}

.testimonial-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #667eea 0%, #136fff 100%);
}

.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
position: relative;
}

.quote-icon {
color: #667eea;
margin-bottom: 1.5rem;
opacity: 0.3;
}

.testimonial-text {
font-size: 1.1rem;
line-height: 1.8;
color: #4a5568;
margin-bottom: 2rem;
font-style: italic;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}

.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
border: 3px solid #667eea;
}

.author-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.author-info h4 {
font-size: 1.1rem;
font-weight: 600;
color: #2d3748;
margin-bottom: 0.25rem;
}

.author-info p {
color: #718096;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}

.rating {
display: flex;
align-items: center;
gap: 0.5rem;
}

.stars {
color: #fbbf24;
font-size: 1rem;
}

.rating-text {
color: #718096;
font-size: 0.9rem;
font-weight: 600;
}

.trust-indicators {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
background: white;
padding: 3rem 2rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.trust-number {
font-size: 2.5rem;
font-weight: 700;
background: linear-gradient(135deg, #667eea 0%, #136fff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}

.trust-label {
color: #718096;
font-weight: 500;
}

/* Pricing Section */
.pricing-section {
padding: 6rem 0;
background: white;
}

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

.pricing-card {
background: white;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
}

.pricing-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
border: 2px solid #667eea;
transform: scale(1.05);
}

.popular-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, #667eea 0%, #136fff 100%);
color: white;
padding: 0.5rem 1.5rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}

.pricing-header {
text-align: center;
margin-bottom: 2rem;
}

.pricing-header h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: #333;
}

.plan-description {
color: #666;
margin-bottom: 1.5rem;
}

.price {
display: flex;
align-items: baseline;
justify-content: center;
margin-bottom: 0.5rem;
}

.currency {
font-size: 1.2rem;
color: #666;
}

.amount {
font-size: 3rem;
font-weight: 700;
color: #333;
}

.period {
font-size: 1rem;
color: #666;
}

.user-limit {
color: #666;
font-size: 0.9rem;
}

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

.features-list li {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 0;
color: #666;
}

.features-list svg {
color: #4ade80;
flex-shrink: 0;
}

.plan-button {
width: 100%;
padding: 1rem;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid #e5e7eb;
background: white;
color: #666;
}

.plan-button.primary {
background: linear-gradient(135deg, #667eea 0%, #136fff 100%);
color: white;
border: none;
}

.plan-button:hover {
transform: translateY(-2px);
}

.plan-button.primary:hover {
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* CTA Section */
.cta-section {
padding: 6rem 0;
background: linear-gradient(135deg, #667eea 0%, #136fff 100%);
text-align: center;
}

.cta-content h2 {
font-size: 2.5rem;
font-weight: 700;
color: white;
margin-bottom: 1rem;
}

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

.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

/* Footer */
.footer {
background: #1a202c;
color: white;
padding: 3rem 0 1rem;
}

.footer-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 3rem;
margin-bottom: 2rem;
}

.footer-brand {
display: flex;
flex-direction: column;
gap: 1rem;
}

.footer-brand .logo {
width: 40px;
height: 40px;
}

.footer-brand .brand-name {
color: white;
font-size: 1.5rem;
font-weight: 700;
}

.footer-brand p {
color: #a0aec0;
line-height: 1.6;
}

.footer-links {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.link-group h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1rem;
color: white;
}

.link-group ul {
list-style: none;
}

.link-group li {
margin-bottom: 0.5rem;
}

.link-group a {
color: #a0aec0;
text-decoration: none;
transition: color 0.3s ease;
}

.link-group a:hover {
color: white;
}

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

/* Ripple Effect */
button {
position: relative;
overflow: hidden;
}

.ripple {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: scale(0);
animation: ripple-animation 0.6s linear;
pointer-events: none;
}

@keyframes ripple-animation {
to {
    transform: scale(4);
    opacity: 0;
}
}

/* Responsive Design */
@media (max-width: 768px) {
.hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
}

.hero-title {
    font-size: 2.5rem;
}

.creator-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stats-grid {
    grid-template-columns: 1fr 1fr;
}

.target-grid,
.solutions-grid {
    grid-template-columns: 1fr;
}

.problems-grid {
    grid-template-columns: 1fr;
}

.benefits-grid {
    grid-template-columns: repeat(2, 1fr);
}

.testimonials-grid {
    grid-template-columns: 1fr;
}

.trust-indicators {
    grid-template-columns: repeat(2, 1fr);
}

.pricing-grid {
    grid-template-columns: 1fr;
}

.pricing-card.featured {
    transform: none;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-links {
    grid-template-columns: 1fr;
}

.nav-menu {
    display: none;
}

.hero-buttons,
.cta-buttons {
    flex-direction: column;
    align-items: center;
}
}

@media (max-width: 480px) {
.hero-title {
    font-size: 2rem;
}

.section-title {
    font-size: 2rem;
}

.benefits-grid {
    grid-template-columns: 1fr;
}

.stats-grid {
    grid-template-columns: 1fr;
}

.trust-indicators {
    grid-template-columns: 1fr;
}
}

.floating-shapes {
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
margin: 40px 0;
}

.shape {
padding: 12px 24px;
background-color: #3399ff;
color: #fff;
font-size: 18px;
font-weight: bold;
border-radius: 30px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: default;
white-space: nowrap;
}

.shape:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.shape-1 {
background-color: #ff6b6b;
}

.shape-2 {
background-color: #4ecdc4;
}

.shape-3 {
background-color: #f7b731;
}

.shape-4 {
width: 40px;
height: 40px;
background-color: #ddd;
border-radius: 50%;
}

.cta-button {
display: inline-block;
padding: 12px 24px;
background-color: #3399ff;
color: #fff;
text-decoration: none;
border-radius: 6px;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease;
}

.cta-button:hover {
background-color: #007acc;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
