* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

/* すべてのリンクからアンダーライン（下線）を削除 */
a {
	text-decoration: none !important;
}

@keyframes gradientAnimation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	height: 100%;
}
.hero {
	width: 100%;
}

/* Header and Hero sections full width */
.header .container,
.hero .container,
.mobile-section .container {
	max-width: 100%;
}

/* Header */
.header {
	background: white;
	padding: 15px 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

@media (max-width: 992px) {
	.header {
		padding: 12px 20px;
	}
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo {
	display: flex;
	align-items: center;
}

.logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo img {
	height: 40px;
	width: auto;
}

@media (max-width: 992px) {
	.logo img {
		height: 32px;
	}
	.logo {
		justify-content: center;
	}
}

.header-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.header-text-line {
	font-size: 14px;
	color: #666;
	line-height: 1.2;
	font-weight: bold;
}

@media (max-width: 992px) {
	.header-text-line {
		font-size: 12px;
	}

	.mobile-br {
		display: inline;
	}
}

@media (min-width: 993px) {
	.mobile-br {
		display: none;
	}
}

.header-nav {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #333;
	transition: all 0.3s;
}

@media (max-width: 992px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		padding: 20px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.nav-menu.active {
		display: flex;
	}

	.hamburger {
		display: flex;
	}

	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}


/* Hero Section */
.hero {
	color: white;
	position: relative;
	overflow: hidden;
	margin-top: 70px; /* ヘッダーの高さ分のマージン */
	display: flex;
	align-items: center;
	max-width: 100vw;
	aspect-ratio: 16 / 9;
	max-height: calc(100vw * 0.75); /* 4:3比率を超えないように */
	.container {
		max-width: 2000px;
	}
}
svg {
	vertical-align: bottom;
}

.wave-animation {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 1;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.hero-right {
		width: 55%;
	}
}

@media (max-width: 1000px) {
	.hero {
		margin-top: 56px; /* SPヘッダーの高さ分のマージン */
		aspect-ratio: unset;
		max-height: none;
	}
}

@media (max-width: 992px) {
	.hero {
		aspect-ratio: unset;
	}
}


/* Hero Container Padding */
@media (max-width: 1000px) {
	.hero .container {
		padding: 25px 0;
		max-width: 100%;
	}
}

@media (max-width: 992px) {
	.hero .container {
		padding: 30px 0;
	}
}

/* Hero Content Layout */
.hero-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 5%;
	max-width: 2000px;
}

@media (max-width: 992px) {
	.hero-content {
		padding: 0;
	}
}

/* Left Content */
.hero-left {
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 6%;
}

.price-badge {
	display: inline-block;
	margin-bottom: 24px;
	width: 60%;
}

.price-badge img {
	height: auto;
	width: 100%;
}

@media (max-width: 992px) {
	.price-badge img {
		width: 80%;
	}
}

.hero-title {
	margin-bottom: 5%;
	width: 100%;
}

.hero-title img {
	height: auto;
	width: 100%;
}

@media (max-width: 992px) {
	.hero-title img {
		width: 85%;
	}
}

.hero-subtitle {
	font-size: 32px;
	margin-bottom: 32px;
}

@media (max-width: 992px) {
	.hero-title img {
		width: 85%;
	}
	
	.hero-subtitle {
		font-size: 28px;
		margin-bottom: 28px;
	}
}

@media (max-width: 1000px) {
	.hero-subtitle {
		font-size: 24px;
		margin-bottom: 24px;
	}
}

.awards {
	display: flex;
	gap: 16px;
	margin-bottom: 12%;
}

.award {
	width: 20%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.award img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Tablet以下のhero-leftサイズ調整 */
@media (max-width: 992px) {
	.hero-content {
		align-items: center;
		padding: 0;
	}

	.hero-left {
		padding-right: 4%;
		margin-bottom: 40px;
		justify-content: center;
	}

	.price-badge {
		margin-bottom: 0;
		width: 50%;
	}

	.hero-title {
		margin-bottom: 4%;
	}

	.awards {
		margin-bottom: 10%;
	}

	.award {
		width: 25%;
	}
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
	.hero-content {
		flex-direction: column;
		padding: 0;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.hero-left {
		padding-right: 0;
		align-items: center;
		margin-bottom: 25px;
		justify-content: center;
	}



	.hero-title {
		margin-bottom: 3%;
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 22px;
		margin-bottom: 22px;
	}

	.awards {
		margin-bottom: 8%;
		justify-content: center;
	}

	.tall-image {
		width: 150px;
		height: 120px;
	}

	.phone-scroll-wrapper {
		gap: 15px;
	}

	.phone {
		width: 150px;
		height: 280px;
	}

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

	.feature:nth-child(4) {
		grid-column: 1;
		max-width: 100%;
	}

	.cta-buttons {
		justify-content: center;
	}

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

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

	/* スライダー設定 */
	.hero-slider-mobile .slider-container {
		display: block;
		width: 100%;
		height: 165px;
		margin-bottom: 15px;
		overflow: hidden;
	}

	.hero-slider-mobile .slider-container .slick-slide {
		margin: 0 5px !important;
		padding: 0 !important;
	}

	.hero-slider-mobile .slider-container .slick-track {
		display: flex;
		align-items: center;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.hero-slider-mobile .slider-container .slick-list {
		margin: 0 !important;
		padding: 0 !important;
	}

	.hero-slider-mobile .slider-container:last-child {
		margin-bottom: 0;
	}

	.horizontal-image {
		width: 253px;
		height: 142px;
		object-fit: cover;
		border-radius: 8px;
	}
}

.cta-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

@media (max-width: 1000px) {
	.cta-buttons {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.btn-c {
		font-size: 1rem;
		padding: 0.8rem 1.5rem;
		width: 240px;
		text-align: center;
	}
}

@media (max-width: 992px) {
	.cta-buttons {
		gap: 15px;
	}

	.btn-c {
		font-size: 1.1rem;
		padding: 0.9rem 1.8rem;
	}
}

.btn {
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	transition: all 0.3s;
}

.btn-c {
	font-size: 1.2rem;
	position: relative;
	padding: 1rem 2rem;
	border-radius: 100vh;
}

@media (max-width: 1000px) {
	.btn-c {
		font-size: 1rem;
		padding: 0.8rem 1.5rem;
		width: 240px;
		text-align: center;
	}
}

.fa-chevron-right {
	margin-left: 1rem;
}
.fa-file-text,
.fa-envelope {
	margin-right: 1rem;
}

/* .btn-c:before {
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		font-size: 1.2rem;
		line-height: 1;
		position: absolute;
		top: calc(50% - 0.8rem);
		right: 3rem;
		margin: 0;
		padding: 0;
		content: '\f054';
	} */

.btn--cubic {
	border-bottom: 5px solid;
}

.btn--cubic:hover {
	margin-top: 3px;
	border-bottom: 2px solid;
}

.btn-primary {
	background: #ffd700;
	color: #333;
}

.btn-primary.btn--cubic {
	border-bottom-color: #ccc100;
}

.btn-secondary {
	background: #ff6b6b;
	color: white;
}

.btn-secondary.btn--cubic {
	border-bottom-color: #cc5555;
}

/* Right Content */
.hero-right {
	flex: 1;
	height: 100%;
	width: 45%;
	/* max-width: 800px; */
	min-width: 300px;
	margin-left: auto;
}

.slider-container {
	height: 100% !important;
	width: 100%;
	min-width: 0;
}

/* レスポンシブ調整 - 大きなブレークポイントから小さなブレークポイントの順 */
@media (max-width: 1400px) {
	.hero-right {
		width: 50%;
	}
}

@media (max-width: 1200px) {
	.hero-right {
		width: 55%;
	}
}

@media (max-width: 1000px) {
	.hero-right {
		width: 100%;
		max-width: 100%;
		min-width: auto;
		margin-left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
}

/* PC用スライダー */
.hero-slider-desktop {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	height: 100%;
}

.hero-slider-mobile {
	display: none;
}

/* 横スライド用の画像スタイル */
.horizontal-image {
	width: 200px;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
}

.tall-image {
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
}

@media (max-width: 1000px) {
	.horizontal-image {
		width: 253px;
		height: 142px;
		object-fit: cover;
		border-radius: 8px;
	}
}

@media (max-width: 992px) {
	.hero-slider-desktop {
		display: none;
	}

	.hero-slider-mobile {
		display: block;
		width: 100%;
		height: auto;
	}

	.hero-slider-mobile .slider-container {
		display: block;
		width: 100%;
		height: 180px;
		margin-bottom: 20px;
		overflow: hidden;
	}

	.hero-slider-mobile .slider-container .slick-slide {
		margin: 0 5px !important;
		padding: 0 !important;
	}

	.hero-slider-mobile .slider-container .slick-track {
		display: flex;
		align-items: center;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.hero-slider-mobile .slider-container .slick-list {
		margin: 0 !important;
		padding: 0 !important;
	}

	.hero-slider-mobile .slider-container:last-child {
		margin-bottom: 0;
	}

	.horizontal-image {
		width: 280px;
		height: 157px;
		object-fit: cover;
		border-radius: 8px;
	}

	.tall-image {
		width: 200px;
		height: 150px;
	}
}

/* Slick Slider カスタマイズ */
.slick-slide {
	margin: 0 !important;
	padding: 0 !important;
}

.slick-track {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.slick-list {
	margin: 0 !important;
	padding: 0 !important;
}

/* モバイルスライダー設定 */
.hero-slider-mobile .slick-slide {
	padding: 0 !important;
	border: none !important;
}

/* スライド間の余白設定 */
.hero-slider-mobile .slider-horizontal-1 .slick-slide,
.hero-slider-mobile .slider-horizontal-2 .slick-slide {
	margin: 0 5px !important;
	padding: 0 !important;
	border: none !important;
}

.hero-slider-mobile .slick-track {
	margin: 0 !important;
	padding: 0 !important;
}

.hero-slider-mobile .slick-list {
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
}

.hero-slider-mobile .slider-horizontal-1 img,
.hero-slider-mobile .slider-horizontal-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	display: block;
}

/* アニメーション */
.move-up .tall-image-wrapper {
	animation: moveUp 12s linear infinite;
}
.move-down .tall-image-wrapper {
	animation: moveDown 12s linear infinite;
}
@keyframes moveUp {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-2000px);
	} /* 400px × 5 = 2000px */
}
@keyframes moveDown {
	0% {
		transform: translateY(-2000px);
	}
	100% {
		transform: translateY(0);
	}
}

/* Scroll Animations */
@keyframes slideUp {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-50%);
	}
}

@keyframes slideDown {
	0% {
		transform: translateY(-50%);
	}
	100% {
		transform: translateY(0);
	}
}

.sample-site {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 14px;
}

/* About Explanation */
.about-section {
	padding: 80px 0;
	background: #f8f9fa;
}

@media (max-width: 1000px) {
	.about-section {
		padding: 50px 0;
	}
}

.about-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 1000px) {
	.about-content {
		padding: 0 10px;
	}
}

.about-image {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease 0.3s; /* 0.3s遅延 */
}

.about-image.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.about-image img {
	width: 80%;
	height: auto;
}

.about-description {
	font-size: 18px;
	line-height: 1.8;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 80px 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 60px;
	position: relative;
	border: 1px solid #e9ecef;
}

@media (max-width: 1000px) {
	.about-description {
		padding: 40px 20px;
		margin-bottom: 40px;
		font-size: 16px;
	}
}

.about-description-title {
	background: #4169e1;
	border: 3px solid #4169e1;
	border-radius: 20px;
	padding: 20px 30px;
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	position: relative;
	display: inline-block;
	box-shadow: 0 5px 15px rgba(65, 105, 225, 0.2);
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

@media (max-width: 1000px) {
	.about-description-title {
		font-size: 18px;
		padding: 15px 20px;
		margin-bottom: 20px;
	}
}

.about-description-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid #4169e1;
}

.about-description-title.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.text.is_highlight {
	color: #4169e1;
	font-weight: bold;
}

.about-description-text {
	margin-top: 20px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease 0.6s; /* 0.6s遅延 */
}

.about-description-text.fade-in {
	opacity: 1;
	transform: translateY(0);
}

.about-description-text:nth-of-type(2) {
	transition-delay: 0.9s; /* 2つ目のテキストは0.9s遅延 */
}

/* Section Title Styling */
.section-title {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	font-size: 18px;
	font-weight: 400;
	color: #666;
	font-family: 'Noto Sans', sans-serif;
	font-style: normal;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(135deg, #4169e1, #6a5acd);
	border-radius: 2px;
}

.section-subtitle {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 32px;
	font-weight: bold;
	color: #333;
	font-style: normal;
	letter-spacing: 0;
}

/* Features section title (white text) */
.section-title--white {
	color: white;
}

.section-title--white::after {
	background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
}

.section-subtitle--white {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	letter-spacing: 0;
}

@media (max-width: 1000px) {
	.section-title {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.section-subtitle {
		font-size: 24px;
	}

	.section-subtitle--white {
		font-size: 24px;
	}
}

/* Features Section */
.features {
	padding: 80px 0;
	color: white;
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, #4169e1, #6a5acd);
	transition: background 1.5s ease;
}

@media (max-width: 1000px) {
	.features {
		padding: 50px 0;
	}
}

/* 弾けるアニメーション */
@keyframes popEffect {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.9;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* 紙吹雪アニメーション */
@keyframes confetti-left {
	0% {
		transform: translateX(0) translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateX(-100px) translateY(-50px) rotate(180deg);
		opacity: 0;
	}
}

@keyframes confetti-right {
	0% {
		transform: translateX(0) translateY(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateX(100px) translateY(-50px) rotate(-180deg);
		opacity: 0;
	}
}

.pop-animation {
	animation: popEffect 0.8s ease-out forwards;
	position: relative;
}

.pop-animation::before,
.pop-animation::after {
	content: '🎉';
	position: absolute;
	top: 20%;
	font-size: 24px;
	pointer-events: none;
	animation-duration: 1.2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

.pop-animation::before {
	left: 20%;
	animation-name: confetti-left;
}

.pop-animation::after {
	right: 20%;
	animation-name: confetti-right;
}

.features.gradient-animate {
	background: linear-gradient(135deg, #4169e1 0%, #6a5acd 25%, #7b68ee 50%, #5d7ce4 75%, #4169e1 100%);
	background-size: 400% 400%;
	animation: gradientAnimation 15s ease-in-out infinite;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 60px;
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 1000px) {
	.features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 10px;
	}
}

.features-grid > p {
	grid-column: 1 / -1;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin: 20px 0;
}

.feature:nth-child(4) {
	grid-column: 1 / -1;
	max-width: 500px;
	margin: 0 auto;
}

.feature.turn-color {
	grid-column: 1 / -1;
	max-width: 500px;
	margin: 0 auto;
}

.feature:last-child {
	grid-column: 1 / -1;
	max-width: 800px;
	margin: 0 auto;
	margin-top: 20px;
}

.feature {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px;
}

@media (max-width: 1000px) {
	.feature {
		padding: 30px 20px;
	}
}

.feature-icon {
	aspect-ratio: 16 / 9;
	border-radius: 5px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	color: #4169e1;
	text-align: center;
}

.feature-icon img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 8px;
}

.feature-title {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: bold;
}

@media (max-width: 1000px) {
	.feature-title {
		font-size: 20px;
		margin-bottom: 15px;
	}
}

.feature-description {
	font-size: 16px;
	line-height: 1.8;
}

@media (max-width: 1000px) {
	.feature-description {
		font-size: 14px;
		line-height: 1.6;
	}
}

/* Portfolio Section */
.portfolio {
	padding: 80px 0;
	background: white;
}

@media (max-width: 1000px) {
	.portfolio {
		padding: 50px 0;
	}
}

.portfolio-intro {
	text-align: center;
	margin-bottom: 60px;
}

.portfolio-description {
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 1.8;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

@media (max-width: 1000px) {
	.portfolio-grid {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
		padding: 0 10px;
	}
}

.portfolio-item {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.portfolio-item:hover {
	transform: translateY(-5px);
}

.portfolio-image {
	aspect-ratio: 16/10;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 14px;
	overflow: hidden;
}

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

.portfolio-info {
	padding: 15px;
}

.portfolio-category {
	background: #6bcf7f;
	color: white;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
	display: inline-block;
	margin-bottom: 10px;
}

.portfolio-title {
	font-size: 14px;
	color: #666;
}

/* Pricing Section */
.pricing {
	padding: 80px 0;
	background: linear-gradient(135deg, #4169e1, #6a5acd);
	color: white;
}

@media (max-width: 1000px) {
	.pricing {
		padding: 50px 0;
	}
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 20px;
}

.pricing-card {
	background: white;
	color: #333;
	border: 3px solid #6a93fa;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	margin-top: 20px;
}

.plan-name {
	background-color: #6a93fa;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	min-height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px 10px 0 0;
	margin-bottom: 20px;
}

.plan-detail {
	padding: 30px;
	text-align: center;
}

.plan-description {
	margin-bottom: 20px;
}

.pricing-card.featured {
	border: 3px solid #6bcf7f;
}

.pricing-card.featured .plan-name {
	background-color: #6bcf7f;
}

.plan-badge {
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	background: #ff6b6b;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	z-index: 10;
}

.plan-name {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	min-height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.plan-price {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	color: #333;
	min-height: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.plan-price .tax-text {
	font-size: 18px;
}

.plan-server-fee {
	font-size: 16px;
	color: #ff6b6b;
	margin-bottom: 20px;
	text-align: center;
	font-weight: bold;
	padding: 8px 16px;
	background: #fff5f5;
	border-radius: 8px;
	border: 1px solid #ffebee;
}

.plan-pages {
	font-size: 14px;
	color: #666;
	margin-bottom: 30px;
	text-align: center;
	line-height: 1.5;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	min-height: 80px;
}

.plan-section {
	margin-bottom: 30px;
}

.plan-section h4 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #333;
}

.page-examples {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}

.page-examples p {
	margin-bottom: 10px;
	font-weight: bold;
}

.page-examples ul {
	list-style: none;
	padding-left: 0;
}

.page-examples ul li {
	padding: 5px 0;
	border-bottom: 1px solid #eee;
}

.page-examples ul li:last-child {
	border-bottom: none;
}

.plan-features {
	list-style: none;
	text-align: left;
	padding-left: 0;
}

.plan-features li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	padding-left: 24px;
	text-indent: -24px;
	line-height: 1.6;
}

.plan-features li:last-child {
	border-bottom: none;
}

.plan-options {
	list-style: none;
	text-align: left;
	padding-left: 0;
}

.plan-options li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.plan-options li:last-child {
	border-bottom: none;
}

.option-detail {
	color: #666;
	font-size: 14px;
	margin-left: 20px;
}

@media (max-width: 1000px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0 10px;
	}

	.pricing-card {
		margin-top: 30px;
	}

	.pricing-card:first-child {
		grid-row: auto;
	}

	.pricing-card:nth-child(2),
	.pricing-card:nth-child(3) {
		grid-column: auto;
	}

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

	.plan-price {
		font-size: 36px;
	}

	.plan-detail {
		padding: 20px;
	}
}

/* Process Section */
.process {
	padding: 80px 0;
	background: white;
}

@media (max-width: 1000px) {
	.process {
		padding: 50px 0;
	}
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	justify-items: center;
}

@media (max-width: 1200px) {
	.process-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0 10px;
	}

	.process-grid .process-step:nth-child(3) {
		grid-column: 1;
		max-width: none;
	}

	.process-step {
		width: 100%;
	}
}

.process-step {
	background: white;
	color: #333;
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1000px) {
	.process-step {
		padding: 30px 20px;
	}
}

.process-icon {
	width: 80px;
	height: 80px;
	background: #f0f0f0;
	color: #333;
	border-radius: 10px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.process-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

@media (max-width: 1000px) {
	.process-title {
		font-size: 18px;
		margin-bottom: 15px;
	}
}

.process-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}

@media (max-width: 1000px) {
	.process-description {
		font-size: 14px;
		margin-bottom: 15px;
	}
}

.process-duration {
	background: #333;
	color: white;
	padding: 10px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
}

/* Front Blog Section */
.front-blog {
	padding: 80px 0;
	background: #f8f9fa; /* 薄いグレーの背景に変更 */
}

@media (max-width: 1000px) {
	.front-blog {
		padding: 60px 0;
	}
}

.front-blog-content {
	max-width: 1200px;
	margin: 0 auto;
}

.front-blog-list {
	list-style-type: none;
	padding: 20px;
	margin: 0 auto;
	max-width: 800px;
	margin-bottom: 40px;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(226, 232, 240, 0.8);
}

@media (max-width: 768px) {
	.front-blog-list {
		padding: 15px;
		border-radius: 12px;
	}
	
	.front-blog-link {
		align-items: flex-start;
	}
	
	.front-blog-thumbnail {
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}
	
	.front-blog-title {
		font-size: 0.95rem;
	}
}

.front-blog-item {
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	padding-bottom: 15px;
	transition: all 0.3s ease;
}

.front-blog-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.front-blog-item:hover {
	background-color: rgba(65, 105, 225, 0.05);
	border-radius: 8px;
}

.front-blog-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	padding: 12px;
	border-radius: 8px;
}

.front-blog-thumbnail {
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 8px;
	margin-right: 20px;
	flex-shrink: 0;
	background: linear-gradient(135deg, #f8fafc, #e2e8f0);
	border: 1px solid #e2e8f0;
}

.front-blog-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.front-blog-no-image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #94a3b8;
	font-size: 1.5rem;
	font-weight: 500;
}

.front-blog-info {
	flex: 1;
}

.front-blog-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.front-blog-date {
	color: #64748b;
	font-weight: 500;
	font-size: 0.85rem;
}

.front-blog-category {
	background: linear-gradient(135deg, #4169e1, #6a5acd);
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 700;
}

.front-blog-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
	color: #333;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.front-blog-item:hover .front-blog-title {
	color: #4169e1;
}

.front-blog-more {
	text-align: center;
	margin-top: 40px;
}

.front-blog-list {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.front-blog-list:hover {
	box-shadow: 0 15px 40px rgba(65, 105, 225, 0.1);
	transform: translateY(-5px);
}

.front-blog-no-posts {
	text-align: center;
	padding: 20px 0;
	background: #f8fafc;
	border-radius: 16px;
	color: #64748b;
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.front-blog-info {
		padding: 20px 16px;
	}
	
	.front-blog-title {
		font-size: 1rem;
	}
	
	.front-blog-excerpt {
		font-size: 0.85rem;
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}
}

/* FAQ Section */
.faq {
	padding: 80px 0;
	background: white;
}

@media (max-width: 1000px) {
	.faq {
		padding: 50px 0;
	}
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

@media (max-width: 1000px) {
	.faq-list {
		padding: 0 10px;
	}
}

.faq-item {
	background: #f8f9fa;
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	background: #f0f0f0;
	cursor: pointer;
	font-weight: bold;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

@media (max-width: 1000px) {
	.faq-question {
		padding: 15px;
		font-size: 14px;
	}
}

.faq-question:hover {
	background: #e0e0e0;
}

.faq-question i {
	transition: transform 0.3s ease;
	color: #666;
}

.faq-question.active i {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 20px;
	display: none;
	line-height: 1.8;
}

@media (max-width: 1000px) {
	.faq-answer {
		padding: 15px;
		font-size: 14px;
	}
}

/* Contact CTA */
.contact {
	padding: 80px 0;
	background: #f8f9fa;
}

@media (max-width: 1000px) {
	.contact {
		padding: 50px 0;
	}
}



.contact-cta {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

@media (max-width: 1000px) {
	.contact-cta {
		padding: 30px 20px;
	}
}

.contact-description {
	font-size: 18px;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.8;
	text-align: center;
}

@media (max-width: 1000px) {
	.contact-description {
		font-size: 16px;
		margin-bottom: 30px;
	}
}

.contact-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

@media (max-width: 1000px) {
	.contact-buttons {
		flex-direction: column;
		align-items: center;
	}
}

.contact-form {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1000px) {
	.contact-form {
		margin: 0 10px;
		padding: 30px 20px;
	}
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #333;
}

.required {
	color: #ff6b6b;
	margin-left: 4px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #4169e1;
}

.form-submit {
	text-align: center;
	margin-top: 40px;
}

.form-submit .btn {
	padding: 15px 60px;
	font-size: 18px;
}

.plan-features-accordion {
	margin-top: 20px;
}

.features-toggle {
	width: 100%;
	padding: 12px 16px;
	background: none;
	border: none;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.features-toggle:hover {
	color: #4169e1;
}

.features-toggle i {
	transition: transform 0.3s ease;
}

.features-toggle.hidden {
	display: none;
}

.plan-features {
	list-style: none;
	text-align: left;
	padding-left: 0;
	display: none;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e9ecef;
	animation: fadeInDown 0.3s ease;
}

.plan-features.active {
	display: block;
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Company Info Section */
.company-info-section {
	padding: 80px 0;
	background: white;
}

@media (max-width: 1000px) {
	.company-info-section {
		padding: 50px 0;
	}
}



.company-info-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 1000px) {
	.company-info-content {
		padding: 0 10px;
	}
}

.company-info-grid {
	display: grid;
	gap: 20px;
}

.company-info-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid #e9ecef;
}

@media (max-width: 1000px) {
	.company-info-item {
		grid-template-columns: 100px 1fr;
		gap: 15px;
		padding: 12px 0;
	}
}

.company-info-item:last-child {
	border-bottom: none;
}

.company-label {
	font-weight: bold;
	color: #333;
	font-size: 16px;
}

@media (max-width: 1000px) {
	.company-label {
		font-size: 14px;
	}
}

.company-value {
	color: #666;
	font-size: 16px;
}

@media (max-width: 1000px) {
	.company-value {
		font-size: 14px;
	}
}

.company-value a {
	color: #4169e1;
	text-decoration: none;
}

.company-value a:hover {
	text-decoration: underline;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 60px 0 40px;
	text-align: center;
}

.footer .logo {
	margin-bottom: 20px;
}

.footer .logo img {
	height: 40px;
	width: auto;
}

.footer-description {
	font-size: 18px;
	margin-bottom: 30px;
	color: #ccc;
}

.footer .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.footer .btn {
	padding: 12px 30px;
	font-size: 16px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer .btn-primary {
	background: #ffd700;
	color: #333;
}

.footer .btn-primary:hover {
	background: #ffed4a;
	transform: translateY(-2px);
}

.footer .btn-secondary {
	background: #ff6b6b;
	color: white;
}

.footer .btn-secondary:hover {
	background: #ff5252;
	transform: translateY(-2px);
}

.footer-copyright {
	font-size: 14px;
	color: #999;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #555;
}

@media (max-width: 1000px) {
	.footer {
		padding: 40px 0 30px;
	}

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

	.footer .btn {
		width: 200px;
		margin-bottom: 10px;
	}

	.footer-description {
		font-size: 16px;
	}
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Header link styles */
.nav-menu a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: #4169e1;
}

/* External link styling */
.nav-menu a[href^='/']:not([href^='/#']) {
	color: #ff6b6b;
}

.nav-menu a[href^='/']:not([href^='/#']):hover {
	color: #ff5252;
}

/* Contact Form Wrapper Styles */
.contact-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 1000px) {
	.contact-form-wrapper {
		padding: 0 10px;
	}
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
}

@media (max-width: 1000px) {
	.contact-form {
		padding: 30px 20px;
	}
}

/* Contact Form 7 Styling */
.wpcf7 {
	max-width: 100%;
}

.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wpcf7-form-control-wrap {
	position: relative;
	display: block;
	width: 100%;
}

.wpcf7-form-control {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	transition: all 0.3s ease;
	background: #fff;
}

.wpcf7-form-control:focus {
	outline: none;
	border-color: #4169e1;
	box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.wpcf7-textarea {
	min-height: 120px;
	resize: vertical;
}

.wpcf7-submit {
	background: linear-gradient(135deg, #4169e1, #6a5acd);
	color: white;
	border: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 20px auto 0;
	display: block;
	min-width: 200px;
}

.wpcf7-submit:hover {
	background: linear-gradient(135deg, #2c54c7, #5a4ba8);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
}

.wpcf7-submit:active {
	transform: translateY(0);
}

/* Form Labels */
.wpcf7 label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #333;
	font-size: 16px;
}

/* Required field indicator */
.wpcf7 .required::after {
	content: ' *';
	color: #ff6b6b;
}

/* Error styling */
.wpcf7-not-valid {
	border-color: #ff6b6b !important;
	box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1) !important;
}

.wpcf7-validation-errors {
	background: #fff5f5;
	border: 1px solid #feb2b2;
	border-radius: 8px;
	padding: 15px;
	margin: 15px 0;
	color: #e53e3e;
}

/* Success message */
.wpcf7-mail-sent-ok {
	background: #f0fff4;
	border: 1px solid #9ae6b4;
	border-radius: 8px;
	padding: 15px;
	margin: 15px 0;
	color: #2f855a;
	text-align: center;
	font-weight: bold;
}

/* Spinner */
.wpcf7-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #4169e1;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-left: 10px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Select styling */
.wpcf7-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: 40px;
	appearance: none;
}

/* Checkbox and Radio styling */
.wpcf7-checkbox,
.wpcf7-radio {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wpcf7-list-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wpcf7-list-item input[type="checkbox"],
.wpcf7-list-item input[type="radio"] {
	width: auto;
	margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.contact-form-wrapper {
		padding: 0 5px;
	}
	
	.contact-form {
		padding: 20px 15px;
		margin: 20px 5px 0;
	}
	
	.wpcf7-form-control {
		font-size: 16px; /* Prevents zoom on iOS */
		padding: 14px 16px;
	}
	
	.wpcf7-submit {
		width: 100%;
		font-size: 16px;
		padding: 14px 20px;
		margin: 25px auto 0;
	}
	
	.contact-description {
		font-size: 14px;
		margin-bottom: 25px;
		padding: 0 10px;
	}
}

/* Tablet responsiveness */
@media (max-width: 1000px) and (min-width: 769px) {
	.wpcf7-form {
		gap: 25px;
	}
	
	.wpcf7-submit {
		padding: 16px 50px;
		font-size: 17px;
	}
}
