:root {
	--primary: #FF6B6B;
	--secondary: #6B76FF;
	--accent: #FFD166;
	--light: #F9F9F9;
	--dark: #333333;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
}

body {
	background-color: var(--light);
	color: var(--dark);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header */
header {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo h1 {
	color: var(--primary);
	font-size: 24px;
	margin-left: 10px;
}

.logo i {
	font-size: 28px;
	color: var(--primary);
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 20px;
}

.nav-menu a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: var(--primary);
}

.cta-button {
	background-color: var(--primary);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s;
}

.cta-button:hover {
	background-color: #ff5252;
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(107, 118, 255, 0.1) 100%);
	display: flex;
	align-items: center;
	padding-top: 60px;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero-text {
	width: 50%;
}

.hero-text h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	line-height: 1.2;
	color: var(--dark);
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	line-height: 1.6;
	color: #666;
}

.hero-image {
	width: 45%;
}

.hero-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features */
.features {
	padding: 100px 0;
	background-color: white;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h3 {
	font-size: 2.5rem;
	color: var(--dark);
	margin-bottom: 15px;
}

.section-title p {
	color: #666;
	font-size: 1.1rem;
}

.features-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.feature-card {
	width: calc(33.333% - 30px);
	margin: 15px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	padding: 30px;
	text-align: center;
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background-color: rgba(255, 107, 107, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.feature-icon i {
	font-size: 32px;
	color: var(--primary);
}

.feature-card h4 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--dark);
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}

/* Testimonials */
.testimonials {
	padding: 100px 0;
	background-color: #f5f5f5;
}

.swiper {
	width: 100%;
	padding: 30px 0;
}

.testimonial-card {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin: 20px;
}

.testimonial-content {
	margin-bottom: 20px;
	position: relative;
}

.testimonial-content p {
	font-style: italic;
	line-height: 1.6;
	color: #666;
}

.testimonial-content::before {
	content: """;
font-size: 60px;
	color: rgba(255, 107, 107, 0.2);
	position: absolute;
	top: -20px;
	left: -10px;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h5 {
	font-size: 1.2rem;
	margin-bottom: 5px;
	color: var(--dark);
}

.author-info span {
	color: #999;
	font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
	padding: 100px 0;
	background-color: white;
}

.steps {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.step {
	width: 23%;
	text-align: center;
	position: relative;
}

.step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 30px;
	right: -15%;
	width: 30%;
	height: 2px;
	background-color: #ddd;
}

.step-number {
	width: 60px;
	height: 60px;
	background-color: var(--secondary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	margin: 0 auto 20px;
}

.step h4 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: var(--dark);
}

.step p {
	color: #666;
	line-height: 1.6;
}

/* Pricing */
.pricing {
	padding: 100px 0;
	background-color: #f5f5f5;
}

.pricing-plans {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.pricing-card {
	width: 30%;
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin: 0 15px;
	transition: transform 0.3s;
}

.pricing-card:hover {
	transform: scale(1.03);
}

.pricing-header {
	padding: 30px;
	background-color: var(--primary);
	color: white;
	text-align: center;
}

.pricing-header h4 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.price {
	font-size: 3rem;
	font-weight: bold;
}

.price span {
	font-size: 1rem;
	font-weight: normal;
}

.pricing-features {
	padding: 30px;
	list-style: none;
}

.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	color: #666;
}

.pricing-features li i {
	color: var(--primary);
	margin-right: 10px;
}

.pricing-card button {
	display: block;
	width: 80%;
	margin: 20px auto 30px;
	padding: 15px;
	border: none;
	background-color: var(--primary);
	color: white;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

.pricing-card button:hover {
	background-color: #ff5252;
}

/* CTA */
.cta {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	text-align: center;
}

.cta h3 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 30px;
	line-height: 1.6;
}

.cta button {
	background-color: white;
	color: var(--primary);
	padding: 15px 30px;
	border: none;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta button:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
	background-color: #333;
	color: white;
	padding: 50px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.footer-column {
	width: 23%;
}

.footer-column h4 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h4::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--primary);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.social-icons {
	display: flex;
	margin-top: 20px;
}

.social-icons a {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: background-color 0.3s;
}

.social-icons a:hover {
	background-color: var(--primary);
}

.social-icons i {
	color: white;
	font-size: 18px;
}

.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: #999;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
	.hero-text h2 {
		font-size: 2.5rem;
	}

	.feature-card {
		width: calc(50% - 30px);
	}

	.step:not(:last-child)::after {
		display: none;
	}

	.steps {
		flex-wrap: wrap;
	}

	.step {
		width: 48%;
		margin-bottom: 30px;
	}

	.pricing-card {
		width: 45%;
		margin-bottom: 30px;
	}

	.pricing-plans {
		flex-wrap: wrap;
	}

	.footer-column {
		width: 48%;
		margin-bottom: 30px;
	}

	.footer-content {
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.nav-menu {
		display: none;
	}

	.hero-content {
		flex-direction: column;
	}

	.hero-text,
	.hero-image {
		width: 100%;
	}

	.hero-text {
		margin-bottom: 30px;
		text-align: center;
	}

	.feature-card {
		width: 100%;
	}

	.step,
	.pricing-card,
	.footer-column {
		width: 100%;
	}
}

/* 会員紹介セクション */
.members {
	padding: 80px 0;
	background-color: #f9f9f9;
	position: relative;
	overflow: hidden;
}

.members::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, rgba(78, 205, 196, 0) 70%);
	z-index: 0;
}

.members::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0) 70%);
	z-index: 0;
}

.members-container {
	position: relative;
	z-index: 1;
}

.swiper {
	width: 100%;
	padding: 30px 0;
}

.member-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.member-card:hover {
	transform: translateY(-5px);
}

.member-image {
	height: 280px;
	overflow: hidden;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.member-card:hover .member-image img {
	transform: scale(1.1);
}

.member-info {
	padding: 20px;
}

.member-info h3 {
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.member-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	color: #777;
	margin-bottom: 15px;
}

.member-bio {
	color: #555;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 15px;
	overflow: hidden;
}

.member-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 15px;
}

.tag {
	background-color: rgba(78, 205, 196, 0.1);
	color: var(--secondary);
	padding: 5px 10px;
	border-radius: 50px;
	font-size: 0.8rem;
}

.member-action {
	display: flex;
	justify-content: space-between;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--primary);
}

.swiper-pagination-bullet-active {
	background-color: var(--primary);
}

.btn {
	display: inline-block;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	user-select: none;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: all 0.15s ease-in-out;
	text-decoration: none;
}

.btn-outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
}

/* 固定图标容器 */
.floating-icon {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s ease;
	animation: bounce 2s infinite;
}

/* 图标悬停效果 */
.floating-icon:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* 图标内部样式 */
.icon {
	color: white;
	font-size: 24px;
}

/* 跳动动画 */
@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-20px);
	}

	60% {
		transform: translateY(-10px);
	}
}
