/* * {box-sizing: border-box;} */

body {
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	line-height: 1.8;
	color: #333;
}

/* プランセクション */
.plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

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

.plan-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.plan-image {
  height: 245px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
}
.plan-image a{ display:block; width:100%; height:100%; }
.plan-image img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.plan-content {
	padding: 25px;
}

@media (max-width: 768px) {
	.plan-image {  height: 265px;  }
}
.plan-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 20px;
}

.spec-item {
	text-align: center;
	padding: 12px;
	background: #f3f4f6;
	border-radius: 8px;
}

.spec-label {
	font-size: 12px;
	color: #6b7280;
	display: block;
	margin-bottom: 5px;
}

.spec-value {
	font-size: 18px;
	font-weight: bold;
	color: #1e3a8a;
}

.plan-price {
	text-align: center;
	padding: 20px;
	background: #fef3c7;
	border-radius: 10px;
	margin-top: 20px;
}

.price-label {
	font-size: 14px;
	color: #92400e;
	margin-bottom: 5px;
}

.price-value {
	font-size: 28px;
	font-weight: bold;
	color: #dc2626;
}

/* W制震セクション */
.features-section {
	padding: 60px 20px;
	background: white;
}

.features-section h2 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 50px;
	color: #1e3a8a;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto 40px;
}

.feature-card {
	text-align: center;
	padding: 30px;
	background: #f9fafb;
	border-radius: 15px;
}

.feature-card img {
	width: 100%;
	max-width: 250px;
	height: auto;
	border-radius: 10px;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 24px;
	color: #1e3a8a;
	margin-bottom: 15px;
}

.feature-card p {
	color: #4b5563;
	font-size: 15px;
}

.features-benefit {
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.features-benefit p {
	font-size: 18px;
	color: #1e40af;
	font-weight: bold;
	line-height: 1.8;
}

/* CTA セクション */
.cta-section {
	background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	padding: 60px 20px;
	text-align: center;
	color: white;
}

.cta-section h2 {
	font-size: 32px;
	margin-bottom: 30px;
}

.cta-button {
	display: inline-block;
	background: #ef4444;
	color: white;
	padding: 20px 60px;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
	background: #dc2626;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* フォームセクション */
.form-section {
	padding: 60px 20px;
	max-width: 800px;
	margin: 0 auto;
}

.form-section h2 {
	font-size: 28px;
	margin-bottom: 30px;
	text-align: center;
	color: #1e3a8a;
}

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

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

.required {
	color: #ef4444;
	margin-left: 5px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #3b82f6;
}

.submit-button {
	width: 100%;
	background: #ef4444;
	color: white;
	padding: 18px;
	font-size: 20px;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
}

.submit-button:hover {
	background: #dc2626;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.plans-grid {
		grid-template-columns: 1fr;
	}



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

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

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

/* 追加セクションのスタイル */
.special-section {
	padding: 60px 20px;
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	text-align: center;
}

.special-content h2 {
	font-size: 32px;
	color: #1e3a8a;
	margin-bottom: 25px;
	line-height: 1.5;
}
.special-content h2 strong{
	font-weight:bold;
}

.special-content p {
	font-size: 18px;
	color: #374151;
	line-height: 1.9;
	max-width: 900px;
	margin: 0 auto;
}
.special-content p strong{
	font-weight:bold;
}

.recommend-section {
	padding: 60px 20px;
	background: white;
}

.recommend-section h2 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 50px;
	color: #1e3a8a;
}

.recommend-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

.recommend-card {
	background: #f9fafb;
	padding: 40px 30px 20px 30px;
	border-radius: 15px;
	border: 3px solid #3b82f6;
	position: relative;
}

.recommend-number {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: #ef4444;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: bold;
}

.recommend-card h3 {
	font-size: 22px;
	font-weight:700;
	color: #1e3a8a;
	margin-bottom: 20px;
	margin-top: 10px;
}

.recommend-card p {
	color: #4b5563;
	line-height: 1.8;
	margin-bottom: 15px;
	text-align:left;
}

.recommend-card strong {
	color: #1e40af;
}

.performance-section {
	padding: 60px 20px;
	background: #f9fafb;
}

.performance-section h2 {
	text-align: center;
	font-size: 32px;
	font-weight:700;
	margin-bottom: 15px;
	color: #1e3a8a;
}

.performance-subtitle {
	text-align: center;
	font-size: 20px;
	font-weight:700;
	color: #6b7280;
	margin-bottom: 50px;
}

.performance-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

.performance-card {
	background: white;
	padding: 35px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.performance-card h3 {
	font-size: 20px;
	font-weight:700;
	color: #1e3a8a;
	margin-bottom: 15px;
}

.performance-card p {
	color: #4b5563;
	line-height: 1.8;
	margin-bottom: 20px;
}
.perf-title { margin: 0 0 10px; position: relative; z-index: 1; }
.perf-lead  { margin: 0 0 16px; position: relative; z-index: 1; }
.performance-media{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0; /* figure の余白リセット */
}

.performance-image {
	height: 300px; 
	background: #e5e7eb;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	font-size: 14px;
	overflow: hidden;    
}
.performance-image img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.performance-imag__seishin{
	height: 260px; 
}

@media (max-width: 768px) {
	.performance-image {	height: 202px; }
	.performance-imag__seishin { height: 170px; }
}


.zoom-btn{
  align-self: center;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid #3b82f6;
  background: #fff;
  color: #3b82f6;
  cursor: pointer;
  transition: .2s;
}
.zoom-btn:hover{ background:#3b82f6; color:#fff; }

.hiraya-point,
.hiraya-point * { text-align: left; }

@media (min-width: 980px){
  .hiraya-points{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

.hiraya-section {
	padding: 60px 20px;
	background: #f1f8e9;
}

.hiraya-section h2 {
	text-align: center;
	font-weight:700;
	font-size: 32px;
	margin-bottom: 50px;
	color: #2e7d32;
}

.hiraya-points {
  display: grid;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 980px){
  .hiraya-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hiraya-point {
	background: #fff;
	padding: 35px;
	border-radius: 15px;
	margin-bottom: 30px;
	border-left: 5px solid #2e7d32;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hiraya-number {
	display: inline-block;
	background: #2e7d32;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}

.hiraya-point h3 {
	font-size: 22px;
	font-weight:700;
	color: #1b5e20;
	margin-bottom: 15px;
}

.hiraya-point p {
	color: #2e4630;
	line-height: 1.8;
	margin-bottom: 10px;
}

.hiraya-detail {
	color: #388e3c  !important;
	font-weight: 500;
}

@media (min-width: 980px){
  .hiraya-point{
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
    align-items: start;
  }
  .hiraya-number{
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin-bottom: 0;
  }
  .hiraya-point h3{
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 10px;
    align-self: center;
    text-align: left;
  }
  .hiraya-point p{
    grid-column: 1 / -1;
  }
}

.campaign-detail-section {
	padding: 60px 20px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.campaign-detail-section h2 {
	text-align: center;
	font-size: 32px;
	font-weight:bold;
	margin-bottom: 40px;
	color: #92400e;
}

.campaign-message {
	max-width: 900px;
	margin: 0 auto 40px;
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.campaign-message p {
	font-size: 18px;
	color: #374151;
	line-height: 1.9;
	margin-bottom: 20px;
	text-align: center;
}

.campaign-message strong {
	color: #dc2626;
	font-size: 20px;
	font-weight:700;
}

.campaign-note {
	font-size: 16px !important;
	color: #6b7280 !important;
	border-top: 2px solid #e5e7eb;
	padding-top: 20px;
	margin-top: 25px;
}

.monitor-conditions {
	max-width: 700px;
	margin: 0 auto;
	background: white;
	padding: 35px;
	border-radius: 15px;
	border: 3px solid #f59e0b;
}

.monitor-conditions h3 {
	font-size: 24px;
	font-weight:700;
	color: #92400e;
	margin-bottom: 20px;
	text-align: center;
}

.monitor-conditions ul {
	list-style: none;
	padding: 0;
}

.monitor-conditions li {
	padding: 15px 20px;
	background: #fef3c7;
	margin-bottom: 12px;
	border-radius: 8px;
	font-size: 17px;
	color: #374151;
	position: relative;
	padding-left: 45px;
}

.monitor-conditions li:before {
	content: "✓";
	position: absolute;
	left: 15px;
	color: #f59e0b;
	font-size: 22px;
	font-weight: bold;
}

.plans-recap-section {
	padding: 60px 20px;
	background: white;
}

.plans-recap-section h2 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 50px;
	color: #1e3a8a;
}

.plan-zoom {
  text-align: center;
  margin-top: 10px;
}

.zoom-btn {
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid #3b82f6;
  background: #fff;
  color: #3b82f6;
  cursor: pointer;
  transition: .2s;
}

.zoom-btn:hover {
  background: #3b82f6;
  color: #fff;
}


.my-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
}
.my-gallery a {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	background: #f5f5f5;
}
.my-gallery img {
	width: 100%;
	height: auto;
	display: block;
}