.imagecontour {
 padding: 10px; 
 border: solid 1px #EFEFEF;
 background-color: #FFFFFF;
 }
 
.effect2
{
  position: relative;
}
.effect2:before, .effect2:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  box-shadow: 0 15px 10px #777;
  transform: rotate(-3deg);
}
.effect2:after
{
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

/* index.html用のカスタムスタイル */
:root {
	--primary-gradient: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
	--secondary-gradient: linear-gradient(135deg, #4a7ba7 0%, #6b9bc3 100%);
	--blue-gradient: linear-gradient(135deg, #2d5a8c 0%, #4a7ba7 100%);
	--green-gradient: linear-gradient(135deg, #c0c8d0 0%, #e8ecf0 100%);
	--dark-gradient: linear-gradient(135deg, #1a2f4a 0%, #2d4a6c 100%);
	--light-bg: #f8f9fa;
	--card-shadow: 0 10px 30px rgba(30, 58, 95, 0.15);
	--card-shadow-hover: 0 15px 40px rgba(30, 58, 95, 0.25);
}

body {
	font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
	overflow-x: hidden;
}

/* Modern Header */
.c-layout-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.c-navbar-wrapper {
	padding: 10px 0;
}

.c-mega-menu .nav > li > a {
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	position: relative;
}

.c-mega-menu .nav > li > a:hover {
	color: #2d5a8c !important;
}

.c-mega-menu .nav > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary-gradient);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.c-mega-menu .nav > li > a:hover::after {
	width: 80%;
}

/* Modern Slider */
.c-layout-revo-slider .tp-caption h3 {
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	font-weight: 700;
	letter-spacing: 1px;
}

.c-action-btn {
	background: var(--primary-gradient);
	border: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	box-shadow: 0 5px 20px rgba(30, 58, 95, 0.4);
	transition: all 0.3s ease;
}

.c-action-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(30, 58, 95, 0.6);
}

/* Mission Section */
.c-feature-15-container {
	border-radius: 20px;
	padding: 50px;
	box-shadow: var(--card-shadow);
	transition: all 0.3s ease;
}

.c-feature-15-container:hover {
	box-shadow: var(--card-shadow-hover);
	transform: translateY(-5px);
}

.c-feature-15-title {
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	letter-spacing: 2px;
	border-bottom: 4px solid transparent;
	border-image: var(--primary-gradient);
	border-image-slice: 1;
	padding-bottom: 15px;
}

/* News Cards */
.c-content-testimonial-3 {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: var(--card-shadow);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
	height: 100%;
}

.c-content-testimonial-3:hover {
	transform: translateY(-8px);
	box-shadow: var(--card-shadow-hover);
}

.c-content-testimonial-3 .c-content {
	margin-bottom: 25px;
	line-height: 1.8;
	color: #555;
}

.c-content-testimonial-3 .c-person {
	display: flex;
	align-items: center;
	padding-top: 20px;
	border-top: 2px solid #f0f0f0;
}

.c-content-testimonial-3 .c-person img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.c-position.c-theme-font {
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

/* Content Titles */
.c-content-title-1 h3 {
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 20px;
	position: relative;
}

.c-line-center {
	height: 4px;
	width: 100px;
	background: var(--primary-gradient);
	margin: 20px auto;
	border-radius: 2px;
}

.c-line-left {
	height: 4px;
	width: 100px;
	background: var(--primary-gradient);
	margin: 20px 0;
	border-radius: 2px;
}

.c-line-right {
	height: 4px;
	width: 100px;
	background: var(--primary-gradient);
	margin: 20px 0 20px auto;
	border-radius: 2px;
}

/* Business Section */
.c-content-feature-3 {
	background: white;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: var(--card-shadow);
	transition: all 0.3s ease;
	margin-bottom: 20px;
	height: calc(100% - 20px);
	text-align: center;
}

.c-content-feature-3:hover {
	transform: translateY(-10px);
	box-shadow: var(--card-shadow-hover);
}

.c-content-feature-3 .feature-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 25px;
	background: var(--primary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
	transition: all 0.3s ease;
}

.c-content-feature-3:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 30px rgba(30, 58, 95, 0.5);
}

.c-content-feature-3 .feature-icon i {
	font-size: 45px;
	color: white;
}

.c-content-feature-3 h4 {
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 20px;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.c-content-feature-3 p {
	line-height: 1.8;
	color: #555;
	margin-bottom: 30px;
	text-align: left;
}

.c-content-feature-3 .btn {
	background: var(--primary-gradient);
	border: none;
	color: white;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.c-content-feature-3 .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

/* Product Sections */
.c-content-product-1 .btn,
.c-content-feature-4 .btn {
	background: var(--primary-gradient);
	border: none;
	padding: 15px 35px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(30, 58, 95, 0.3);
}

.c-content-product-1 .btn:hover,
.c-content-feature-4 .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(30, 58, 95, 0.5);
}

/* Company Info */
.table {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table th {
	background: var(--dark-gradient);
	color: white;
	font-weight: 600;
	padding: 15px;
}

.table td {
	padding: 15px;
	line-height: 1.8;
}

/* Contact Form */
.c-contact .form-control {
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	padding: 15px;
	transition: all 0.3s ease;
}

.c-contact .form-control:focus {
	border-color: #2d5a8c;
	box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.25);
}

.c-contact .btn {
	background: var(--primary-gradient);
	border: none;
	padding: 15px 50px;
	border-radius: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(30, 58, 95, 0.4);
}

.c-contact .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(30, 58, 95, 0.6);
}

/* Background Parallax */
.c-bg-parallax {
	position: relative;
}

.c-bg-parallax::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(45, 90, 140, 0.9) 100%);
	opacity: 0.85;
}

.c-bg-parallax * {
	position: relative;
	z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.wow {
	animation: fadeInUp 0.8s ease;
}

/* Smartphone Mockup */
.smartphone-mockup {
	position: relative;
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	padding: 50px 15px;
	background: linear-gradient(145deg, #2d4a6c, #1a2f4a);
	border-radius: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
	            inset 0 0 0 3px rgba(255, 255, 255, 0.1);
	transform: perspective(1000px) rotateY(-5deg);
	transition: all 0.5s ease;
}

.smartphone-mockup:hover {
	transform: perspective(1000px) rotateY(0deg) translateY(-10px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 
	            inset 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.smartphone-mockup::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 6px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 3px;
}

.smartphone-mockup::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
}

.smartphone-screen {
	position: relative;
	width: 100%;
	height: 600px;
	background: #000;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05),
	            0 10px 30px rgba(0, 0, 0, 0.4);
}

.smartphone-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.smartphone-screen::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
	            rgba(255, 255, 255, 0.1) 0%, 
	            transparent 50%, 
	            rgba(0, 0, 0, 0.1) 100%);
	pointer-events: none;
	z-index: 1;
}

/* Slider Navigation Buttons */
.tp-leftarrow,
.tp-rightarrow {
	width: 60px !important;
	height: 60px !important;
	background: rgba(30, 58, 95, 0.95) !important;
	border-radius: 50% !important;
	transition: all 0.3s ease !important;
	border: 3px solid rgba(255, 255, 255, 0.8) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.tp-leftarrow:hover,
.tp-rightarrow:hover {
	background: rgba(45, 90, 140, 1) !important;
	border-color: rgba(255, 255, 255, 1) !important;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7) !important;
}

.tp-leftarrow::before {
	content: '‹' !important;
	color: white !important;
	font-size: 48px !important;
	font-weight: 900 !important;
	text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6) !important;
	display: block !important;
	line-height: 1 !important;
}

.tp-rightarrow::before {
	content: '›' !important;
	color: white !important;
	font-size: 48px !important;
	font-weight: 900 !important;
	text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6) !important;
	display: block !important;
	line-height: 1 !important;
}

/* Responsive */
@media (max-width: 768px) {
	.c-feature-15-container {
		padding: 30px 20px;
	}
	
	.c-content-feature-3 {
		margin-bottom: 20px;
	}

	.smartphone-mockup {
		max-width: 280px;
		margin-bottom: 30px;
		transform: perspective(1000px) rotateY(0deg);
	}

	.smartphone-screen {
		height: 500px;
	}

	/* スマホ表示時のスライダーボタン調整 */
	.tp-leftarrow,
	.tp-rightarrow {
		width: 50px !important;
		height: 50px !important;
		top: auto !important;
		bottom: 20px !important;
		background: rgba(30, 58, 95, 0.98) !important;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6) !important;
		border: 3px solid rgba(255, 255, 255, 0.9) !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.tp-leftarrow {
		left: 20px !important;
		transform: none !important;
	}

	.tp-rightarrow {
		left: auto !important;
		right: 20px !important;
		transform: none !important;
	}

	.tp-leftarrow::before {
		content: '‹' !important;
		color: white !important;
		font-size: 40px !important;
		font-weight: 900 !important;
		text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7) !important;
		display: block !important;
		line-height: 1 !important;
	}

	.tp-rightarrow::before {
		content: '›' !important;
		color: white !important;
		font-size: 40px !important;
		font-weight: 900 !important;
		text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7) !important;
		display: block !important;
		line-height: 1 !important;
	}
}
