/* ===== 基本スタイル ===== */
:root {
  --primary-color: #59b3a1;
  --secondary-color: #e8f4ea;
  --accent-color: #f9dc5c;
  --text-color: #333;
  --light-text: #666;
  --white: #ffffff;
  --light-gray: #f7f9fa;
  --medium-gray: #e5e7e9;
  --border-radius: 8px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: #478d7e;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== ヘッダー ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

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

.logo img {
  height: 45px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

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

.nav-menu li {
  margin-left: 40px;
}

.nav-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ===== ヒーローセクション ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/1.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  animation: fadeIn 1.2s ease;
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(89, 179, 161, 0.3);
  transition: var(--transition);
}

.cta-button:hover {
  background-color: #478d7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(89, 179, 161, 0.4);
  color: var(--white);
}

/* ===== 特徴セクション ===== */
.features {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background-color: var(--secondary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
}

.feature-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-card p {
  color: var(--light-text);
}

/* ===== 製品セクション ===== */
.product-showcase {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.product-showcase::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
  border-radius: 0 0 0 100px;
}

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

.product-image {
  flex: 1;
  max-width: 45%;
  position: relative;
}

.product-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.product-image::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--accent-color);
  border-radius: 50%;
  z-index: -1;
  top: -30px;
  left: -30px;
  opacity: 0.3;
}

.product-info {
  flex: 1;
  padding-left: 60px;
}

.product-info h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.product-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--light-text);
}

.product-features-list {
  margin: 30px 0;
  list-style: none;
}

.product-features-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.product-features-list li::before {
  content: '✓';
  margin-right: 10px;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== お客様の声セクション ===== */
.testimonials {
  background-color: var(--light-gray);
  padding: 100px 0;
}

.testimonials-slider {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--light-text);
}

.testimonial-content p {
  color: var(--text-color);
  line-height: 1.7;
}

.testimonial-rating {
  margin-top: 15px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* ===== ブログセクション ===== */
.blog-section {
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--white);
  padding: 8px 12px;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-color);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  color: var(--light-text);
  margin-bottom: 20px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary-color);
}

.blog-link svg {
  width: 18px;
  margin-left: 5px;
  transition: var(--transition);
}

.blog-link:hover svg {
  transform: translateX(5px);
}

.view-all-link {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* ===== お問い合わせセクション ===== */
.contact {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--light-text);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item svg {
  width: 24px;
  margin-right: 15px;
  flex-shrink: 0;
  color: var(--primary-color);
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.contact-text p {
  margin: 0;
  color: var(--light-text);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  flex: 1;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(89, 179, 161, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
}

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

/* ===== フッター ===== */
footer {
  background-color: #2c3e50;
  color: var(--white);
  padding-top: 60px;
}

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

.footer-company {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.footer-company p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-newsletter p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: inherit;
  font-size: 0.9rem;
}

.newsletter-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0 15px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-button:hover {
  background-color: #478d7e;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 10px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== ブログページスタイル ===== */
.blog-header {
  background-color: var(--secondary-color);
  padding: 100px 0 50px;
  text-align: center;
  margin-top: 80px;
}

.blog-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.blog-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-text);
  font-size: 1.1rem;
}

.blog-container {
  padding: 80px 0;
}

.blog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.filter-categories {
  display: flex;
  gap: 15px;
}

.filter-button {
  padding: 8px 20px;
  border: none;
  background-color: var(--light-gray);
  color: var(--text-color);
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-button.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.filter-button:hover:not(.active) {
  background-color: var(--medium-gray);
}

.filter-search {
  position: relative;
  width: 300px;
}

.filter-search input {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: 1px solid var(--medium-gray);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.filter-search input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.filter-search svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  color: var(--light-text);
}

.blog-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-gray);
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.page-link.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.page-link:hover:not(.active) {
  background-color: var(--medium-gray);
}

/* ===== ブログ記事ページスタイル ===== */
.blog-post-header {
  background-color: var(--secondary-color);
  padding: 150px 0 80px;
  text-align: center;
  margin-top: 80px;
  position: relative;
}

.blog-post-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.blog-post-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.blog-post-header h1 {
  font-size: 2.8rem;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 0.95rem;
}

.blog-post-meta span {
  margin: 0 15px;
  display: flex;
  align-items: center;
}

.blog-post-meta svg {
  margin-right: 5px;
}

.blog-post-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-featured-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.blog-featured-image img {
  width: 100%;
}

.blog-text h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text-color);
}

.blog-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-color);
}

.blog-text blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  background-color: var(--light-gray);
  margin: 30px 0;
  font-style: italic;
  color: var(--light-text);
}

.blog-text ul, .blog-text ol {
  margin: 20px 0 20px 20px;
}

.blog-text li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.blog-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-tag {
  background-color: var(--light-gray);
  color: var(--light-text);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-tag:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.blog-author {
  margin-top: 60px;
  display: flex;
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius);
}

.blog-author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  flex-shrink: 0;
}

.blog-author-info h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.blog-author-info p {
  color: var(--light-text);
  margin-bottom: 15px;
}

.blog-author-social {
  display: flex;
  gap: 15px;
}

.blog-author-social a {
  color: var(--light-text);
  transition: var(--transition);
}

.blog-author-social a:hover {
  color: var(--primary-color);
}

.blog-related-posts {
  margin-top: 80px;
}

.blog-related-posts h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-color);
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.comments-section {
  margin-top: 80px;
}

.comments-section h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.comment {
  display: flex;
  margin-bottom: 30px;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.comment-body h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.comment-meta {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-bottom: 10px;
}

.comment-text p {
  color: var(--text-color);
}

.comment-form {
  margin-top: 50px;
}

.comment-form h3 {
  margin-bottom: 30px;
}

.comment-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.comment-form-group {
  flex: 1;
}

.comment-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.comment-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.comment-form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

textarea.comment-form-control {
  min-height: 150px;
  resize: vertical;
}

.comment-submit-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.comment-submit-button:hover {
  background-color: #478d7e;
  transform: translateY(-2px);
}

/* ===== お問い合わせページスタイル ===== */
.contact-header {
  background-color: var(--secondary-color);
  padding: 150px 0 80px;
  text-align: center;
  margin-top: 80px;
}

.contact-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-text);
  font-size: 1.1rem;
}

.contact-page-content {
  padding: 80px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  height: fit-content;
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-info-item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.contact-info-item svg {
  margin-right: 15px;
  width: 24px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-page-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-page-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.google-map {
  margin-top: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 450px;
}

.google-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== 会社概要ページスタイル ===== */
.about-header {
  background-color: var(--secondary-color);
  padding: 150px 0 80px;
  text-align: center;
  margin-top: 80px;
}

.about-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--light-text);
  font-size: 1.1rem;
}

.about-content {
  padding: 80px 0;
}

.about-story {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.about-story-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-story-text {
  flex: 1;
}

.about-story-text h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.about-story-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--light-text);
}

.about-values {
  margin-bottom: 80px;
  text-align: center;
}

.about-values h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.value-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.value-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 30px;
  color: var(--primary-color);
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.value-card p {
  color: var(--light-text);
}

.team-section {
  text-align: center;
  margin-bottom: 80px;
}

.team-section h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member-image {
  height: 300px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 20px;
}

.team-member-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.team-member-info p.role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-member-info p.bio {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.team-member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  color: var(--light-text);
  border-radius: 50%;
  transition: var(--transition);
}

.team-social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.stats-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item h4 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--light-text);
  font-size: 1.1rem;
}

/* ===== クッキー同意バナー ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  transform: translateY(200px);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-text {
  flex: 2;
  padding-right: 20px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--light-text);
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.cookie-accept {
  background-color: var(--primary-color);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: #478d7e;
}

.cookie-customize, .cookie-decline {
  background-color: var(--light-gray);
  color: var(--text-color);
}

.cookie-customize:hover, .cookie-decline:hover {
  background-color: var(--medium-gray);
}

/* ===== アニメーション ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== レスポンシブスタイル ===== */
@media screen and (max-width: 1024px) {
  .hero h2 {
    font-size: 3rem;
  }
  
  .section-title h3 {
    font-size: 2.2rem;
  }
  
  .product-container {
    flex-direction: column;
  }
  
  .product-image {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .product-info {
    padding-left: 0;
  }
  
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  
  .about-story {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 900;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero {
    height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .features-grid, .blog-grid, .values-grid, .team-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-form {
    margin-top: 50px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-company, .footer-links, .footer-newsletter {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .blog-filters {
    flex-direction: column;
    gap: 20px;
  }
  
  .filter-search {
    width: 100%;
  }
  
  .blog-post-header h1 {
    font-size: 2.2rem;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .blog-author {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-author-image {
    margin: 0 auto 20px;
  }
  
  .blog-author-social {
    justify-content: center;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    padding-right: 0;
    margin-bottom: 15px;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .section-title h3 {
    font-size: 1.8rem;
  }
  
  .product-info h3 {
    font-size: 2rem;
  }
  
  .blog-post-header h1 {
    font-size: 1.8rem;
  }
  
  .contact-header h2, .blog-header h2, .about-header h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    min-width: 280px;
  }
  
  .comment {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .comment-avatar {
    margin: 0 0 15px 0;
  }
}

/* 今日のおすすめセクションスタイル */
.daily-recommendations {
  background-color: var(--light-gray);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.daily-recommendations::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.daily-recommendations-title {
  text-align: center;
  margin-bottom: 40px;
}

.daily-recommendations-title h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.daily-recommendations-title p {
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.recommendation-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.recommendation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.recommendation-image {
  height: 180px;
  overflow: hidden;
}

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

.recommendation-card:hover .recommendation-image img {
  transform: scale(1.05);
}

.recommendation-content {
  padding: 20px;
}

.recommendation-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.recommendation-content p {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.recommendation-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.recommendation-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.recommendation-button:hover {
  background-color: #478d7e;
  transform: translateY(-2px);
}

/* 閲覧数カウンターのスタイル */
.view-counter {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--light-text);
  margin-top: 10px;
}

.view-counter svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
