/* setting */

.noto-sans-jp-mid {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

header {
  position: relative;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.8;
}

.mainVisual {
  width: 100%;
  height: 21rem;
  overflow: hidden;
}

.mainArea {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  background-color: #f1f1f1;
}

.mainArea>.mainContent {
  width: 100%;
}

.article {
  width: 75%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2rem 0;
}

.side {
  width: 25%;
  padding: 2rem 2.5% 0;
  background-color: #ffffff;
}

.forIndexSide {
  max-width: 1200px;
  margin: 0 auto;
}

.forIndexSide>.side {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 2rem 0 0;
}

.forIndexSide>.side>.sBox {
  margin-right: 2rem;
  width: 25%;
}

/* レスポンシブ対応 - mainAreaとside */
@media screen and (max-width: 768px) {
  .mainArea {
    flex-direction: column;
  }

  .article {
    width: 100%;
    padding: 1rem;
  }

  .side {
    width: 100%;
    padding: 0rem;
    order: 2;
    margin-top: 2rem;
    border-top: 2px solid #e0e0e0;
  }

  .mainArea>.mainContent {
    order: 1;
  }

  .forIndexSide>.side {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem 0 0;
  }

  .forIndexSide>.side>.sBox {
    margin-right: 2rem;
    width: 100%;
  }
}

/* article box */
.cBox {
  width: 30%;
  margin-bottom: 1rem;
  box-shadow: 1px 4px 3px 1px rgba(0, 0, 0, 0.4);
  position: relative;
  background-color: white;
  display: flex;
  flex-direction: column
}

.linkover {
  width: 100%;
  display: block;
  text-align: right;
  color: #939393;
  padding: 0 0.5rem 0.5rem 0;
  align-self: flex-end;
  margin-top: auto;
}

.cBox>.imgWrapper {
  height: 15rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 横方向も中央にしたい場合 */
  background-color: rgba(0, 0, 0, 0.2);
}

.cBox>.imgWrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.cBox>.txtWrapper {
  background-color: white;
  padding: 0 1rem 0.5rem;
}

.cBox>.txtWrapper>h2 {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.cBox>.txtWrapper>.date {
  margin: 0;
  font-weight: 400;
}

.cBox>.writterIcon {
  position: absolute;
  bottom: 228px;
  right: -15px;
  width: 6rem;
  height: 6rem;
}

.cBox>.writterIcon>.imgWrapper {
  position: relative;
  height: 100%;
}

.cBox .face {
  border-radius: 100%;
  width: 90%;
  height: 90%;
  position: absolute;
  left: 5%;
  top: 5%;
}

.cBox>.writterIcon>p {
  text-align: center;
  white-space: nowrap;
  position: absolute;
  bottom: 0.1rem;
  width: 100%;
  font-weight: 900;
  color: #e9e9e9;
}

.cBox>.writterIcon .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* side area */
.sBox {
  margin-bottom: 2rem;
  position: relative;
}

.sBox h2 {
  font-size: 1rem;
}

.sBox>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 以下AI追加、編集領域 */

.ps_header {
  width: 100%;
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;

}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.heder_massage {
  font-size: 1rem;
  margin-bottom: 0px;
  color: #222;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 0px !important;
}

.logo_row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0rem 1rem 1rem;
  border-top-left-radius: 0px !important;
}

.sg {
  /* ✅ すりガラス風の効果 */
  background-color: rgba(245, 245, 245, 0.589);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 6px;
}

.logo_sphone {
  width: 160px;
  height: auto;
}

.logo_title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  margin: 0;
}



/* ナビゲーションメニュー */
.main-nav {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  animation: fadeInNav 1s ease-in-out;
  max-width: 1200px;
  margin: 0 auto;
}

.main-nav ul {
  display: flex;
  justify-content: space-between;
  /* または space-evenly */
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.main-nav ul li {
  flex: 1;
  /* 各項目を均等に広げる */
  text-align: center;
  /* テキストを中央揃えに */
}


.main-nav ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  background-color: rgba(244, 244, 244, 0.9);
  border-radius: 1px;
  color: #2e7d32;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav ul li a:hover {
  background-color: #a5d6a7;
  transform: scale(1.05);
}

/* アニメーション */
@keyframes fadeInNav {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* hamburger menu*/
/* ハンバーガーメニュー全体（スマホ表示時のみ） */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}

/* メニューアイコン（≡と×）のスタイル */
.menu-icon {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1001;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(129, 199, 132, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  pointer-events: all;
}

.menu-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(129, 199, 132, 0.3);
  border-color: rgba(129, 199, 132, 0.5);
}

/* アイコンの切り替え（≡と×） */
.menu-open,
.menu-close {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #2e7d32;
  font-weight: 600;
}

.menu-open {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.menu-close {
  opacity: 0;
  transform: scale(0.8) rotate(180deg);
}

/* チェックされたらアイコンを切り替え */
#menu-toggle:checked+.menu-icon .menu-open {
  opacity: 0;
  transform: scale(0.8) rotate(-180deg);
}

#menu-toggle:checked+.menu-icon .menu-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

#menu-toggle:checked+.menu-icon {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  border-color: rgba(255, 107, 107, 0.5);
}

#menu-toggle:checked+.menu-icon .menu-close {
  color: #ffffff;
}

/* チェックボックスは非表示 */
#menu-toggle {
  display: none;
}

/* モバイルナビゲーションの初期状態（非表示） */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(129, 199, 132, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding-top: 100px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

/* チェックされたら表示 */
#menu-toggle:checked+.menu-icon+.mobile-nav {
  right: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* オーバーレイ背景 */
#menu-toggle:checked~.mobile-nav::before {
  content: '';
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: -1;
}

/* フッター - シンプルデザイン */
.site-footer {
  background-color: #e8f0e8;
  padding: 1.5rem 1rem 1rem;
  border-top: 1px solid #e9ecef;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 0rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-company {
  flex: 1 1 300px;
}

.footer-company h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2e7d32;
}

.footer-company p {
  margin: 0.3rem 0;
  line-height: 1.5;
}

.footer-links {
  flex: 2 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-link-block {
  flex: 1 1 180px;
}

.footer-link-block h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #495057;
}

.footer-link-block h3 a {
  color: #2e7d32;
  text-decoration: none;
}

.footer-link-block h3 a:hover {
  text-decoration: underline;
}

.footer-link-block p {
  font-size: 0.85rem;
  color: #1a1a1a;
  line-height: 1.4;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
  font-size: 0.8rem;
  color: #adb5bd;
}

/* レスポンシブ対応 - 768px以下 */
@media screen and (max-width: 768px) {
  .ps_header {
    padding: 8px;
  }

  .logo_sphone {
    width: 120px;
  }

  .logo_title {
    font-size: 1rem;
  }

  .heder_massage {
    font-size: 0.9rem;
  }

  .logo_row {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 2rem;
  }

  .mobile-nav ul li {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.4s ease forwards;
  }

  .mobile-nav ul li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .mobile-nav ul li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .mobile-nav ul li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .mobile-nav ul li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .mobile-nav ul li:nth-child(5) {
    animation-delay: 0.5s;
  }

  .mobile-nav ul li:nth-child(6) {
    animation-delay: 0.6s;
  }

  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .mobile-nav ul li a {
    display: block;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(129, 199, 132, 0.2);
    position: relative;
    overflow: hidden;
  }

  .mobile-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(129, 199, 132, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .mobile-nav ul li a:hover::before {
    left: 100%;
  }

  .mobile-nav ul li a:hover {
    background: rgba(129, 199, 132, 0.1);
    transform: translateX(8px);
    border-color: rgba(129, 199, 132, 0.4);
    box-shadow: 0 4px 12px rgba(129, 199, 132, 0.2);
  }

  .mobile-nav ul li a:active {
    transform: translateX(4px) scale(0.98);
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .contact-phone {
    flex-direction: column;
    text-align: center;
  }

  .phone-number {
    font-size: 1.5rem;
  }

  .site-footer {
    padding: 1rem;
    margin-top: 0rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-company {
    flex: 1 1 !important;
  }

  .footer-links {
    flex: 1 1;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-link-block {
    flex: 1 1 !important;
  }

  .section-link {
    font-size: 0.95rem;
  }
}

/* セクションリンクスタイル */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
  background: none;
  color: #2e7d32;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  position: relative;
}

.section-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2e7d32;
  transition: width 0.3s ease;
}

.section-link:hover::after {
  width: 100%;
}

.section-link:hover {
  color: #1b5e20;
}

.section-link.secondary {
  color: #6c757d;
}

.section-link.secondary::after {
  background-color: #6c757d;
}

.section-link.secondary:hover {
  color: #495057;
}

/* 以上AI追加、編集領域 */
.breadcrumb {
  padding: 1rem 2rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  font-size: 0.9rem;
}

.postItemWrapper {
  width: calc(100% - 48px);
  padding: 24px;
  background-color: #f5f9f6;
  /* やさしいグリーン系の背景 */
  border-radius: 8px;
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  color: #2f4f4f;
  /* 落ち着いたダークグリーン */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}

.postItemWrapper h1 {
  font-size: 1.8em;
  color: #3a5f3a;
  margin-bottom: 12px;
  border-bottom: 1px solid #cce3d8;
  padding-bottom: 6px;
}

.postItemWrapper .author,
.postItemWrapper .postedDate {
  font-size: 0.9em;
  color: #6b8e8e;
  margin-bottom: 4px;
}

.postItemWrapper p {
  font-size: 1em;
  line-height: 1.6;
  margin: 12px 0;
}

.postItemWrapper img {
  display: block;
  max-width: 600px;
  /* 最大幅を制限 */
  width: 100%;
  /* レスポンシブ対応 */
  height: auto;
  margin: 20px auto;
  /* 中央揃え */
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.postItemWrapper .postedDate {
  font-size: 0.9em;
  color: #6b8e8e;
  margin-bottom: 8px;
  text-align: left;
}

/* 
ランディングページ用スタイル */

/* ヒーローセクション */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 500px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #4e944f;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2e7d32;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* サービスセクション */
.services-section {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2e7d32;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  color: #4e944f;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.service-link {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.service-link:hover {
  background-color: #1b5e20;
}

/* 処理の流れセクション */
.process-section {
  padding: 5rem 2rem;
  background-color: white;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #2e7d32;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.1rem;
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.process-arrow {
  font-size: 1.5rem;
  color: #2e7d32;
  margin: 0 1rem;
}

/* 最新ブログセクション */
.latest-blog-section {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.blog-card:hover {
  transform: translateY(-5px);
}

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-summary {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.blog-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.blog-link:hover {
  text-decoration: underline;
}

.blog-more {
  text-align: center;
  margin-top: 3rem;
}

.btn-more {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-more:hover {
  background-color: #1b5e20;
}

/* CTAセクション */
.cta-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  color: white;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-contact {
  display: flex;
  justify-content: center;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.phone-icon {
  font-size: 2rem;
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-number {
  font-size: 1.8rem;
  font-weight: bold;
}

.phone-hours {
  font-size: 0.9rem;
  opacity: 0.8;
}



@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .services-section,
  .process-section,
  .latest-blog-section {
    padding: 3rem 1rem;
  }
}

.no-posts,
.error {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 2rem;
}

/* ランディング
ページ用の動的スタイル */

/* アニメーション定義 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

/* 基本アニメーションクラス */
.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}



.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  animation: pulse 2s infinite;
}

/* ヒーローセクション */
.landing-hero {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(135deg, #fafbfa 0%, #f7f9f7 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}





.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.landing-hero .hero-content {
  padding: 0.5rem 0;
  position: relative;
}

.landing-hero .hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: 4px;
  height: 50px;
  background: linear-gradient(to bottom, #4caf50, rgba(76, 175, 80, 0.5), transparent);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}

.landing-hero .hero-title {
  font-size: 4rem;
  font-weight: 200;
  line-height: 1.0;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  font-family: 'Noto Sans JP', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-line {
  display: block;
}

.highlight {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 50%, #81c784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  filter: drop-shadow(0 2px 10px rgba(76, 175, 80, 0.3));
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4caf50, rgba(76, 175, 80, 0.5), transparent);
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.4);
}

.landing-hero .hero-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  max-width: 98%;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.landing-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
  position: relative;
}

.landing-hero .stat-item {
  text-align: left;
  padding: 1rem 0;
  background: transparent;
  border-radius: 0;
  position: relative;
}

.landing-hero .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #4caf50, rgba(76, 175, 80, 0.6), transparent);
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.landing-hero .stat-number {
  display: block;
  font-size: 4rem;
  font-weight: 100;
  color: #ffffff;
  line-height: 0.7;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.landing-hero .stat-label {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.cta-icon {
  font-size: 1.5rem;
}

.visual-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transition: all 0.6s ease;
}

.visual-card:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.9);
}

.visual-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
}

.eco-badge {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.95));
  color: white;
  padding: 1rem 1.8rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(76, 175, 80, 0.3);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-triangle {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(46, 125, 50, 0.4), rgba(76, 175, 80, 0.2));
  border-radius: 1px;
  position: relative;
  animation: subtleScroll 4s ease-in-out infinite;
}

.scroll-triangle::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid rgba(46, 125, 50, 0.5);
}

@keyframes subtleScroll {

  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0px);
  }

  50% {
    opacity: 0.6;
    transform: translateY(8px);
  }
}

/* サービスセクション */
.services-showcase {
  padding: 6rem 2rem;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1b5e20;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 3rem;
  padding: 1rem;
  background: linear-gradient(45deg, #e8f5e9, #c8e6c9);
  border-radius: 15px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1b5e20;
}

.service-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #4e944f;
}

.check-icon {
  color: #4caf50;
  font-weight: bold;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2e7d32;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #1b5e20;
}

.link-arrow {
  transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
  transform: translateX(5px);
}

/* 処理の流れセクション */
.process-flow {
  padding: 6rem 2rem;
  background: white;
}

.flow-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #2e7d32, #4caf50);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.step-number {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  position: relative;
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: #1b5e20;
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

.timeline-icon {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 2rem;
  background: #f8f9fa;
  padding: 0.5rem;
  border-radius: 50%;
}

/* 最新ブログセクション */
.latest-blog {
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
  overflow: hidden;
}

.blog-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(46, 125, 50, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
  background-size: 400px 400px;
  background-position: 0 0, 200px 200px;
  animation: patternMove 20s linear infinite;
  z-index: 0;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
}

.blog-category {
  background: rgba(46, 125, 50, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1b5e20;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-summary {
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #737373;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

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

.blog-loading {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e8f5e9;
  border-top: 4px solid #2e7d32;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.blog-more {
  text-align: center;
  margin-top: 3rem;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
}

.btn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-more:hover .btn-arrow {
  transform: translateX(5px);
}

/* CTAセクション */
.contact-cta {
  padding: 5rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 2s ease-in-out;
  transform: scale(1.1);
}

.bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.bg-slide.next {
  opacity: 0;
  transform: scale(1.05);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.85) 0%,
      rgba(45, 52, 54, 0.75) 50%,
      rgba(26, 26, 26, 0.85) 100%);
  z-index: 1;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-text {
  padding: 1rem 0;
}

.cta-tag {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
}

.cta-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-label {
  font-size: 0.9rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-action {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.phone-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.phone-card:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px);
}

.phone-header {
  margin-bottom: 1rem;
}

.phone-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-number-link {
  display: block;
  text-decoration: none;
  color: white;
  margin-bottom: 1rem;
}

.phone-number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.phone-number-link:hover .phone-number {
  transform: scale(1.05);
}

.phone-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

.additional-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-outline {
  display: block;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/*
 セクション区切りの斜めデザイン */
.section-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, transparent 100%);
  transform: skewY(-2deg);
  transform-origin: top left;
}

.section-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(45deg, transparent 0%, #f8f9fa 100%);
  transform: skewY(-2deg);
  transform-origin: bottom right;
}

/* 共通スタイル */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.section-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.content-text {
  padding: 1rem 0;
}

.section-tag {
  display: inline-block;
  background: rgba(46, 125, 50, 0.2);
  color: #2c5530;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.section-tag.dark {
  background: rgba(73, 80, 87, 0.2);
  color: #495057;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
}

.section-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.content-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 300px;
}

.grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.grid-img:hover {
  transform: scale(1.02);
}

.grid-img.main {
  grid-row: 1 / 3;
}

/* 地域セクション */
.community-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.info-list {
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid #2c5530;
}

.info-item h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-item p {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
}

.btn-primary {
  display: inline-block;
  background: #2c5530;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

/* 施設セクション */
.approach-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

/* approach-section専用のモバイル対応 */
@media screen and (max-width: 768px) {
  .approach-section .section-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .approach-section .section-content.reverse {
    flex-direction: column;
  }

  .approach-section .content-images {
    order: 1;
    width: 100%;
  }

  .approach-section .content-text {
    order: -2;
    width: 100%;
  }

  .approach-section .image-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .approach-section .grid-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(73, 80, 87, 0.1);
}

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

.feature-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #495057;
  min-width: 40px;
  font-family: 'Noto Sans JP', sans-serif;
}

.feature-info h3 {
  font-size: 1.1rem;
  color: #2d3436;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-info p {
  color: #666;
  line-height: 1.5;
  font-size: 0.9rem;
}

.btn-secondary {
  display: inline-block;
  background: #495057;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }

  .section-content.reverse {
    flex-direction: column;
  }

  .section-content.reverse .content-images {
    order: -1;
  }

  .content-text,
  .content-images {
    width: 100%;
    flex: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: auto;
    gap: 0.8rem;
  }

  .grid-img {
    height: 180px;
  }

  .grid-img.main {
    grid-row: auto;
  }

  .feature-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .feature-num {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .section-content {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .grid-img {
    height: 150px;
  }

  .info-item,
  .feature-item {
    margin-bottom: 1rem;
    padding: 0.8rem 0 0.8rem 1.5rem;
  }
}

.facility-cta-card p {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.facility-button {
  background-color: white;
  color: #495057;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.facility-button:hover {
  background-color: #f8f9fa;
  transform: scale(1.05);
}

/* レスポンシブ対応の追加 */
@media screen and (max-width: 768px) {

  .community-section,
  .our-approach {
    padding: 3rem 1rem;
  }

  .community-title,
  .approach-title {
    font-size: 2rem;
  }

  .community-content,
  .approach-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-card,
  .facility-cta-card {
    padding: 2rem 1.5rem;
    max-width: none;
  }
}

@media screen and (max-width: 480px) {

  .eco-commitment,
  .team-voices {
    padding: 3rem 0;
  }

  .eco-container,
  .voices-container {
    padding: 1.5rem 1rem;
  }

  .eco-title,
  .voices-title {
    font-size: 2rem;
  }

  .eco-subtitle,
  .voices-subtitle {
    font-size: 1rem;
  }

  .eco-grid,
  .voices-grid {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .eco-feature,
  .voice-testimonial {
    padding: 1rem;
  }

  .feature-number {
    font-size: 2.5rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .landing-hero .hero-title {
    font-size: 3.5rem;
  }

  .landing-hero .stat-number {
    font-size: 3.5rem;
  }

  .landing-hero .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0rem;
  }

  .landing-hero .hero-stats {
    justify-content: center;
  }

  .visual-card {
    transform: none;
  }
}

@m edia screen and (max-width: 480px) {

  .eco-commitment,
  .team-voices {
    padding: 3rem 0;
  }

  .eco-container,
  .voices-container {
    padding: 1.5rem 1rem;
  }

  .eco-title,
  .voices-title {
    font-size: 2rem;
  }

  .eco-subtitle,
  .voices-subtitle {
    font-size: 1rem;
  }

  .message-text {
    font-size: 2.5rem;
  }

  .voice-text {
    font-size: 2rem;
  }

  .eco-message,
  .voices-message {
    min-height: 25vh;
    margin-top: 1.5rem;
  }

  .message-line,
  .voice-line {
    margin-bottom: 0.5rem;
    gap: 1rem;
  }
}

/* 新しいセクシ
ョンのレスポンシブ対応 */
@media screen and (max-width: 480px) {

  .community-section,
  .our-approach {
    padding: 2rem 1rem;
  }

  .community-title,
  .approach-title {
    font-size: 1.5rem;
  }

  .community-content,
  .approach-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .text-block,
  .feature-item {
    padding: 1.5rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cta-card,
  .facility-cta-card {
    padding: 1.5rem 1rem;
  }

  .feature-emoji,
  .cta-icon,
  .facility-icon {
    font-size: 2rem;
  }
}

/* 新しいセ
クションのレスポンシブ対応 */
@media screen and (max-width: 480px) {

  .community-section,
  .our-approach {
    padding: 2rem 1rem;
  }

  .community-title,
  .approach-title {
    font-size: 1.5rem;
  }

  .community-content,
  .approach-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .text-block,
  .feature-item {
    padding: 1.5rem;
  }

  .cta-card,
  .facility-cta-card {
    padding: 1.5rem 1rem;
  }
}

/* CTAセク
ション - 480px以下対応 */
@media screen and (max-width: 480px) {
  .contact-cta {
    padding: 3rem 1rem;
  }

  .cta-heading {
    font-size: 1.8rem;
  }

  .phone-number {
    font-size: 1.8rem;
  }

  .phone-card {
    padding: 1.5rem;
  }

  .additional-actions {
    gap: 0.8rem;
  }
}

/* CT
Aセクション */
.contact-cta {
  position: relative;
  min-height: 600px;
  padding: 0rem 2rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0;
  transform: scale(1.1);
  transition: all 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}

.bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.bg-slide.fade-in {
  opacity: 1;
  transform: scale(1);
}

.bg-slide.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(45, 55, 72, 0.85) 0%,
      rgba(74, 85, 104, 0.75) 50%,
      rgba(113, 128, 150, 0.65) 100%);
  z-index: 2;
}

.cta-layout {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-text {
  color: white;
}

.cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.contact-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.info-value {
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-action {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.phone-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.phone-header {
  margin-bottom: 1rem;
}

.phone-label {
  color: #666;
  font-size: 0.9rem;
  font-weight: bold;
}

.phone-number-link {
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.phone-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2e7d32;
  display: block;
  transition: color 0.3s ease;
}

.phone-number-link:hover .phone-number {
  color: #1b5e20;
}

.phone-note {
  color: #666;
  font-size: 0.9rem;
}

.additional-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
  color: #222;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* スライドアニメーション */
@keyframes smoothZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes smoothZoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

.bg-slide.zoom-in {
  animation: smoothZoomIn 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.bg-slide.zoom-out {
  animation: smoothZoomOut 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* CTAセクション - モバイル対応 */
@media screen and (max-width: 768px) {
  .bg-slide {
    background-attachment: scroll;
    width: 105%;
    height: 105%;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }

  .additional-actions {
    flex-direction: column;
  }
}

/* CTAセクション - 480px以下対応 */
@media screen and (max-width: 480px) {
  .contact-cta {
    padding: 3rem 1rem;
    min-height: 500px;
  }

  .cta-heading {
    font-size: 1.8rem;
  }

  .phone-number {
    font-size: 1.8rem;
  }

  .phone-card {
    padding: 1.5rem;
  }

  .additional-actions {
    gap: 0.8rem;
  }

  .bg-slide {
    background-attachment: scroll;
  }
}

/* ヒーローセクション背景スライドショー */
.hero-slideshow-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-section-slide {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1) translateX(0);
  transition: all 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}

.hero-section-slide.active {
  opacity: 0.8;
  transform: scale(1) translateX(0);
}

.hero-section-slide.fade-in {
  opacity: 0.8;
  transform: scale(1) translateX(0);
}

.hero-section-slide.fade-out {
  opacity: 0;
  transform: scale(0.95) translateX(0);
}

/* 動的アニメーション - 左右の動きとズーム */
.hero-section-slide:nth-child(1) {
  animation: slideZoomLeft 12s ease-in-out infinite;
}

.hero-section-slide:nth-child(2) {
  animation: slideZoomRight 12s ease-in-out infinite;
}

.hero-section-slide:nth-child(3) {
  animation: slideZoomCenter 12s ease-in-out infinite;
}

.hero-section-slide:nth-child(4) {
  animation: slideZoomLeftSlow 12s ease-in-out infinite;
}

.hero-section-slide:nth-child(5) {
  animation: slideZoomRightSlow 12s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(20, 20, 20, 0.6) 25%,
      rgba(40, 40, 40, 0.5) 50%,
      rgba(20, 20, 20, 0.6) 75%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

/* Hero Visual セクション - 企業ロゴ */

.logo-container {
  padding: 3rem 4rem 2.5rem;
  border-radius: 50%;
  /*box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.3);*/
  backdrop-filter: blur(20px);
  transition: all 0.6s ease;
  text-align: center;
  position: relative;
  /*overflow: hidden;*/
  animation: rotateGradient 20s linear infinite;
}
.logo-container:hover {
  transform: translateY(-3px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.4);
}

.company-logo {
  margin-bottom: 2rem;
}

.logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 50%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow:
    0 8px 25px rgba(76, 175, 80, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.logo-circle::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
}

.logo-initial {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}

.logo-text {
  margin-bottom: 2rem;
}

.company-name {
  font-size: 2rem;
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 0.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
}

.company-tagline {
  font-size: 1.1rem;
  color: #2e7d32;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.company-subtitle {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.3;
  font-weight: 300;
}

.logo-badge {
  display: flex;
  justify-content: center;
}

.eco-badge {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.95));
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(76, 175, 80, 0.3);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
  animation: pulse 3s ease-in-out infinite;
}

.badge-icon {
  font-size: 1.1rem;
}

.badge-text {
  font-weight: bold;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.3);
  }
}

/* ヒーローセクション背景アニメーション */
@keyframes slideZoomLeft {
  0% {
    transform: scale(1.1) translateX(-20px);
  }

  50% {
    transform: scale(1.05) translateX(10px);
  }

  100% {
    transform: scale(1.1) translateX(-20px);
  }
}

@keyframes slideZoomRight {
  0% {
    transform: scale(1.08) translateX(15px);
  }

  50% {
    transform: scale(1.03) translateX(-10px);
  }

  100% {
    transform: scale(1.08) translateX(15px);
  }
}

@keyframes slideZoomCenter {
  0% {
    transform: scale(1.06) translateX(0);
  }

  25% {
    transform: scale(1.02) translateX(-8px);
  }

  75% {
    transform: scale(1.02) translateX(8px);
  }

  100% {
    transform: scale(1.06) translateX(0);
  }
}

@keyframes slideZoomLeftSlow {
  0% {
    transform: scale(1.05) translateX(-10px);
  }

  33% {
    transform: scale(1.02) translateX(5px);
  }

  66% {
    transform: scale(1.08) translateX(-5px);
  }

  100% {
    transform: scale(1.05) translateX(-10px);
  }
}

@keyframes slideZoomRightSlow {
  0% {
    transform: scale(1.07) translateX(12px);
  }

  40% {
    transform: scale(1.03) translateX(-6px);
  }

  80% {
    transform: scale(1.06) translateX(8px);
  }

  100% {
    transform: scale(1.07) translateX(12px);
  }
}

/* Hero Visual アニメーション */
@keyframes heroZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroZoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

.hero-bg-slide.hero-zoom-in {
  animation: heroZoomIn 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-bg-slide.hero-zoom-out {
  animation: heroZoomOut 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ヒーローセクション レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .hero-section-slide {
    top: -3%;
    left: -3%;
    width: 106%;
    height: 106%;
    /* モバイルでは軽量なアニメーション */
    animation-duration: 8s !important;
  }

  /* モバイル用の軽量アニメーション */
  .hero-section-slide:nth-child(1) {
    animation: slideZoomMobile 8s ease-in-out infinite;
  }

  .hero-section-slide:nth-child(2) {
    animation: slideZoomMobile2 8s ease-in-out infinite;
  }

  .hero-section-slide:nth-child(3),
  .hero-section-slide:nth-child(4),
  .hero-section-slide:nth-child(5) {
    animation: slideZoomMobile3 8s ease-in-out infinite;
  }

  .logo-container {
    max-width: 350px;
    padding: 2rem 1.5rem;
  }

  .logo-circle {
    width: 100px;
    height: 100px;
  }

  .logo-initial {
    font-size: 2.5rem;
  }

  .company-name {
    font-size: 1.6rem;
  }

  .company-tagline {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-section-slide {
    top: -2%;
    left: -2%;
    width: 104%;
    height: 104%;
    animation-duration: 6s !important;
  }

  .logo-container {
    max-width: 300px;
    padding: 1.5rem 1rem;
  }

  .logo-circle {
    width: 80px;
    height: 80px;
  }

  .logo-initial {
    font-size: 2rem;
  }

  .company-subtitle {
    font-size: 0.8rem;
  }

  .company-name {
    font-size: 1.4rem;
  }

  .company-tagline {
    font-size: 0.85rem;
  }

  .eco-badge {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
}

/* モバイル用軽量アニメーション */
@keyframes slideZoomMobile {

  0%,
  100% {
    transform: scale(1.03) translateX(-5px);
  }

  50% {
    transform: scale(1.01) translateX(5px);
  }
}

@keyframes slideZoomMobile2 {

  0%,
  100% {
    transform: scale(1.02) translateX(3px);
  }

  50% {
    transform: scale(1.01) translateX(-3px);
  }
}

@keyframes slideZoomMobile3 {

  0%,
  100% {
    transform: scale(1.02) translateX(0);
  }

  50% {
    transform: scale(1.01) translateX(2px);
  }
}

/* Hero Visual セクション - ロゴボックス */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-logo {
  max-width: 400px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-text {
  margin-top: 1rem;
}

.company-name {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.5rem 0;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.company-tagline {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* 背景パターン - 緑寄りの単一パターン（アニメーション付き） */

@keyframes rotateGradient {
  0% {
    background:
      conic-gradient(from 90deg at 50% 50%,
        rgba(34, 197, 94, 0.08) 0deg,
        rgba(16, 185, 129, 0.06) 120deg,
        rgba(255, 193, 7, 0.05) 240deg,
        rgba(34, 197, 94, 0.08) 360deg),
      linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.92) 100%);
  }

  25% {
    background:
      conic-gradient(from 120deg at 50% 50%,
        rgba(34, 197, 94, 0.08) 0deg,
        rgba(16, 185, 129, 0.06) 120deg,
        rgba(255, 193, 7, 0.05) 240deg,
        rgba(34, 197, 94, 0.08) 360deg),
      linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.92) 100%);
  }

  50% {
    background:
      conic-gradient(from 180deg at 50% 50%,
        rgba(34, 197, 94, 0.08) 0deg,
        rgba(16, 185, 129, 0.06) 120deg,
        rgba(255, 193, 7, 0.05) 240deg,
        rgba(34, 197, 94, 0.08) 360deg),
      linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.92) 100%);
  }

  75% {
    background:
      conic-gradient(from 270deg at 50% 50%,
        rgba(34, 197, 94, 0.08) 0deg,
        rgba(16, 185, 129, 0.06) 120deg,
        rgba(255, 193, 7, 0.05) 240deg,
        rgba(34, 197, 94, 0.08) 360deg),
      linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.92) 100%);
  }

  100% {
    background:
      conic-gradient(from 360deg at 50% 50%,
        rgba(34, 197, 94, 0.08) 0deg,
        rgba(16, 185, 129, 0.06) 120deg,
        rgba(255, 193, 7, 0.05) 240deg,
        rgba(34, 197, 94, 0.08) 360deg),
      linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 244, 0.92) 100%);
  }
}

/* アニメーションを小さく抑制 */
.animate-float {
  animation: subtleFloat 6s ease-in-out infinite;
}

@keyframes subtleFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* CTAセクショ
ンの新しいボタンスタイル */
.line-btn {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #00c300 !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.line-btn:hover {
  background: rgba(255, 255, 255, 1) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  color: #00a000 !important;
}

.email-btn {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #007bff !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.email-btn:hover {
  background: rgba(255, 255, 255, 1) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  color: #0056b3 !important;
}

/* sideNavForIndexPageのFAQアイテム用スタイル */
.faq-item:hover {
  border-color: #17a2b8;
}

.faq-link {
  background: #17a2b8;
  color: white;
}

.faq-link:hover {
  background: #138496;
  transform: scale(1.05);
}

/* フィック
スお問い合わせボタン */
.fixed-contact-container {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.fixed-contact-btn {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #81c784, #a5d6a7, #c8e6c9);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(129, 199, 132, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.fixed-contact-text {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #2e7d32;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.fixed-contact-container:hover .fixed-contact-btn {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(129, 199, 132, 0.6);
  background: linear-gradient(135deg, #66bb6a, #81c784, #a5d6a7);
}

.fixed-contact-container:hover .fixed-contact-text {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.fixed-contact-btn::before {
  content: '💬';
  font-size: 46px;
  animation: gentle-bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes gentle-bounce {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-2px);
  }
}

/* お問い合わせポップアップ */
.contact-popup {
  position: fixed;
  right: 30px;
  bottom: 110px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 280px;
}

.contact-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.contact-popup::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 35px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(45deg);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

.popup-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e7d32;
  margin: 0;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-option {
  display: block;
  padding: 1rem;
  background: rgba(46, 125, 50, 0.08);
  border-radius: 8px;
  text-decoration: none;
  color: #2e7d32;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.contact-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.contact-option:hover::before {
  left: 100%;
}

.contact-option:hover {
  background: rgba(46, 125, 50, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.contact-option:active {
  transform: translateY(0);
}

/* 各ボタンの個別スタイル */
.contact-option[href^="tel"] {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
  color: #1976d2;
}

.contact-option[href^="tel"]:hover {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.1));
}

.contact-option[href*="line.me"] {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  color: #388e3c;
}

.contact-option[href*="line.me"]:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
}

.contact-option[href*="contact.php"] {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.05));
  color: #f57c00;
}

.contact-option[href*="contact.php"]:hover {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
}

/* クローズボタン */
.popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #999;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .fixed-contact-container {
    right: 20px;
    bottom: 20px;
  }

  .fixed-contact-btn {
    width: 60px;
    height: 60px;
  }

  .fixed-contact-btn::before {
    font-size: 38px;
  }

  .fixed-contact-text {
    font-size: 11px;
    margin-top: 6px;
    padding: 3px 6px;
  }

  .contact-popup {
    right: 20px;
    bottom: 90px;
    min-width: 260px;
    padding: 1.2rem;
  }

  .contact-popup::after {
    right: 25px;
  }
}

@media (max-width: 480px) {
  .contact-popup {
    right: 10px;
    left: 10px;
    min-width: auto;
    bottom: 90px;
  }

  .contact-popup::after {
    right: 35px;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .landing-hero .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .landing-hero .hero-title {
    font-size: 2.5rem;
  }

  .landing-hero .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .landing-hero .stat-number {
    font-size: 2rem;
  }

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

  .timeline-item {
    flex-direction: column !important;
  }

  .timeline-item:nth-child(even) {
    flex-direction: column !important;
  }

  .flow-timeline::before {
    left: 40px;
  }

  .timeline-marker {
    align-self: flex-start;
    margin-left: 40px;
  }

  .timeline-content {
    margin: 1rem 0 0 100px;
  }

  .section-title {
    font-size: 2rem;
  }

  /* CTAセクション - モバイル対応 */
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .phone-number {
    font-size: 2rem;
  }


}

@media screen and (max-width: 480px) {
  .landing-hero .hero-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .landing-hero,
  .services-showcase,
  .process-flow,
  .latest-blog,
  .final-cta {
    padding: 2rem 1rem;
  }

  .phone-number {
    font-size: 1.5rem;
  }
}