@charset "UTF-8";
.about-section {
  background-color: #ffffff;
}
.about-section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  align-items: center;
}
@media (min-width: 640px) {
  .about-section-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .about-section-content {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .about-section-content {
    padding: 0 3rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .about-section-text {
    order: 2;
  }
}
@media (min-width: 1024px) {
  .about-section-visual {
    order: 1;
  }
}
.about-section-title {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #262946;
}
@media (min-width: 1024px) {
  .about-section-title {
    font-size: 2.5rem;
  }
}
.about-section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 2rem;
}
.about-section-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.about-section-stats .stat-item {
  text-align: center;
}
.about-section-stats .stat-item .stat-number {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #009946;
  display: block;
  margin-bottom: 0.5rem;
}
.about-section-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.services-section {
  background-color: #f8fafc;
}
.services-section-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .services-section-grid {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .services-section-grid {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .services-section-grid {
    padding: 0 3rem;
  }
}
@media (min-width: 768px) {
  .services-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-section-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-section .service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.services-section .service-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background-color: #009946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section .service-card-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}
.services-section .service-card-title {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #262946;
}
.services-section .service-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 2rem;
}
.services-section .service-card-link {
  color: #009946;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.services-section .service-card-link:hover {
  text-decoration: underline;
}

.company-section {
  background-color: #ffffff;
}
.company-section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}
@media (min-width: 1024px) {
  .company-section-content {
    padding: 0 3rem;
    grid-template-columns: 1fr 1fr;
  }
}
.company-section-info .info-list {
  list-style: none;
}
.company-section-info .info-list .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}
.company-section-info .info-list .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.company-section-info .info-list .info-item .info-label {
  font-weight: 700;
  color: #262946;
  min-width: 120px;
  margin-right: 1.5rem;
}
@media (min-width: 768px) {
  .company-section-info .info-list .info-item .info-label {
    min-width: 150px;
  }
}
.company-section-info .info-list .info-item .info-value {
  color: #6b7280;
  flex: 1;
}
.company-section-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-section-visual .company-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-section {
  background-color: #f8fafc;
}
.news-section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .news-section-content {
    padding: 0 3rem;
  }
}
.news-section-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news-section-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-section-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-section .news-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.news-section .news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.news-section .news-item-date {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.news-section .news-item-title {
  font-weight: 700;
  color: #262946;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.news-section .news-item-excerpt {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}
.news-section-more {
  text-align: center;
  margin-top: 3rem;
}
.news-section-more .btn {
  background-color: #009946;
  color: white;
  padding: 1rem 3rem;
}
.news-section-more .btn:hover {
  background-color: rgb(0, 102, 46.6666666667);
}

.contact-section {
  background-color: #ffffff;
}
.contact-section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}
@media (min-width: 1024px) {
  .contact-section-content {
    padding: 0 3rem;
    grid-template-columns: 1fr 1fr;
  }
}
.contact-section-info .contact-methods {
  list-style: none;
  margin-bottom: 3rem;
}
.contact-section-info .contact-methods .contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.contact-section-info .contact-methods .contact-method .method-icon {
  width: 50px;
  height: 50px;
  background-color: #009946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}
.contact-section-info .contact-methods .contact-method .method-icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}
.contact-section-info .contact-methods .contact-method .method-details .method-label {
  font-weight: 700;
  color: #262946;
  margin-bottom: 0.5rem;
}
.contact-section-info .contact-methods .contact-method .method-details .method-value {
  color: #6b7280;
  font-size: 0.95rem;
}
.contact-section-form {
  background-color: #f8fafc;
  padding: 3rem;
  border-radius: 8px;
}
.contact-section-form .form-group {
  margin-bottom: 2rem;
}
.contact-section-form .form-group label {
  display: block;
  font-weight: 700;
  color: #262946;
  margin-bottom: 1rem;
}
.contact-section-form .form-group input,
.contact-section-form .form-group textarea,
.contact-section-form .form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-section-form .form-group input:focus,
.contact-section-form .form-group textarea:focus,
.contact-section-form .form-group select:focus {
  outline: none;
  border-color: #009946;
}
.contact-section-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section-form .form-submit {
  text-align: center;
}
.contact-section-form .form-submit .btn {
  background-color: #009946;
  color: white;
  padding: 1rem 3rem;
  font-size: 1.1rem;
}
.contact-section-form .form-submit .btn:hover {
  background-color: rgb(0, 102, 46.6666666667);
}

.about {
  background: transparent;
  padding: 8rem 0 8rem;
  position: relative;
  z-index: 10;
}
.about .about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}
@media (min-width: 1024px) {
  .about .about-content {
    grid-template-columns: 3fr 1.4fr;
    align-items: start;
    column-gap: 8rem;
  }
}
.about .about-text {
  max-width: 65ch;
}
.about .about-text .about-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(107, 114, 128, 0.2);
}
.about .about-text .about-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.about .about-text .about-item .about-item-title {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #262946;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.01em;
}
.about .about-text .about-item .about-item-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: rgba(0, 153, 70, 0.35);
  margin-top: 0.5rem;
}
.about .about-text .about-item .about-item-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6b7280;
}
.about .about-text .about-item .about-item-text p + p {
  margin-top: 0.9rem;
}
.about .about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.about .about-stats .stat-item {
  text-align: center;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 8px;
}
.about .about-stats .stat-item .stat-number {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #009946;
  display: block;
  margin-bottom: 0.5rem;
}
.about .about-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}
.about {
  /* 右カラム：リンク一覧（静的誘導） */
}
.about .about-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .about .about-links {
    grid-template-columns: 1fr;
  }
}
.about .about-links .about-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(107, 114, 128, 0.18);
  color: #262946;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
  font-feature-settings: "palt" 1;
  position: relative;
  z-index: 20;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.about .about-links .about-link::after {
  content: "›";
  font-size: 1.2rem;
  color: #6b7280;
  position: relative;
  top: 1px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.about .about-links .about-link:hover, .about .about-links .about-link:focus, .about .about-links .about-link:focus-visible {
  color: #262946;
  border-color: rgba(107, 114, 128, 0.28);
}
.about .about-links .about-link:hover::after, .about .about-links .about-link:focus::after, .about .about-links .about-link:focus-visible::after {
  transform: translateX(2px);
  color: #1e3a8a;
}

.services {
  background-color: #f8fafc;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.services .services-grid,
.services .section-header {
  position: relative;
  z-index: 1;
}
.services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services .service-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out; /* パララックス効果のスピードを向上 */
  min-height: 450px;
  opacity: 0;
  transform: translateY(30px); /* 50pxから30pxに減少 */
}
.services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.services .service-card:hover .service-wave-bg {
  transform: scale(1.05);
}
.services .service-card .service-card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services .service-card .service-card-background .service-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services .service-card .service-card-background .service-bg-image.plant-bg {
  background-image: url("./../images/plant-image-bg.webp");
}
.services .service-card .service-card-background .service-bg-image.mail-order-bg {
  background-image: url("./../images/mail-order-image-bg.webp");
}
.services .service-card .service-card-background .service-bg-image.ionature-bg {
  background-image: url("./../images/ionature-image-bg.webp");
}
.services .service-card .service-card-background .service-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1) rotate(0deg); /* 初期状態を明示的に設定 */
  transition: all 0.25s ease-out; /* パララックス効果のスピードを向上 */
  z-index: 2;
  will-change: transform; /* パフォーマンス最適化 */
}
.services .service-card .service-card-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-end;
  padding-right: 1.5rem;
  padding-left: 40%;
  padding-top: 60px;
}
.services .service-card .service-icon {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  z-index: 10;
}
.services .service-card .service-icon .service-img {
  width: 45px;
  height: 45px;
  filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.services .service-card .service-title {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #262946;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #2c3e50, #34495e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services .service-card .service-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #262946;
  margin-bottom: 1.5rem;
  max-width: 210px;
  text-align: right;
}
.services .service-card .service-link {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  background: linear-gradient(135deg, #009946, rgb(0, 102, 46.6666666667));
  padding: 1rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 4;
}
.services .service-card .service-link:hover {
  background: linear-gradient(135deg, rgb(0, 102, 46.6666666667), rgb(0, 51, 23.3333333333));
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service-card.fisheye-card-active .service-bg-image {
  transform: scale(1.1) perspective(1000px) rotateX(5deg);
  filter: brightness(1.05) contrast(1.1) saturate(1.1); /* 明度を調整 */
}
.service-card.fisheye-card-active .service-wave-bg {
  transform: scale(1.05) perspective(1000px) rotateX(-3deg);
  filter: brightness(1.05) contrast(1.05); /* 明度を調整 */
}

.service-bg-image.fisheye-active {
  transition: all 0.64s cubic-bezier(0.23, 1, 0.32, 1);
  transform: scale(1.1) perspective(1000px) rotateX(5deg);
  filter: brightness(1.05) contrast(1.1) saturate(1.1) drop-shadow(2px 0 0 rgba(255, 0, 0, 0.3)) drop-shadow(-2px 0 0 rgba(0, 255, 255, 0.3));
}

.service-card:hover .service-bg-image {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.05);
}
.service-card:hover .service-wave-bg {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.05); /* 明度を調整して自然な見た目に */
  transition: all 0.3s ease-out; /* パララックス効果のスピードを向上 */
}

@media (max-width: 640px) {
  .services .service-card .service-card-content {
    position: relative;
    padding-top: 3rem;
  }
  .services .service-card .service-title {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0.75rem;
    margin: 0;
    text-align: right;
  }
}
.recruit {
  position: relative;
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
  padding: 8rem 0;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.recruit .recruit-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.recruit .recruit-background .recruit-bg-images {
  display: flex;
  width: 100%;
  height: 100%;
}
.recruit .recruit-background .recruit-bg-images .recruit-bg-image {
  flex: 1;
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(30%) brightness(0.8);
  transition: all 0.5s ease-out;
  transform: scale(1.05);
}
.recruit .recruit-background .recruit-bg-images .recruit-bg-image:hover {
  opacity: 0.25;
  filter: grayscale(20%) brightness(0.9);
  transform: scale(1.1);
}
.recruit .recruit-background .recruit-bg-images .recruit-bg-image:nth-child(1) {
  animation: floatImage 8s ease-in-out infinite;
}
.recruit .recruit-background .recruit-bg-images .recruit-bg-image:nth-child(2) {
  animation: floatImage 8s ease-in-out infinite 2.5s;
}
.recruit .recruit-background .recruit-bg-images .recruit-bg-image:nth-child(3) {
  animation: floatImage 8s ease-in-out infinite 5s;
}
.recruit .recruit-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: backgroundShift 12s ease-in-out infinite;
}
@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px) scale(1.05);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
@keyframes backgroundShift {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}
.recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 95, 70, 0.4) 0%, rgba(4, 120, 87, 0.3) 50%, rgba(5, 150, 105, 0.4) 100%), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}
.recruit .container {
  position: relative;
  z-index: 3;
}
.recruit .section-header {
  text-align: center;
  margin-bottom: 8rem;
}
.recruit .section-header .section-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}
@media (max-width: 768px) {
  .recruit .section-header .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 640px) {
  .recruit .section-header .section-title {
    font-size: 2rem;
  }
}
.recruit .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .recruit .section-header .section-subtitle {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
}
.recruit .recruit-content {
  text-align: center;
  color: white;
}
.recruit .recruit-content .recruit-message {
  margin-bottom: 3rem;
}
.recruit .recruit-content .recruit-message p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}
@media (max-width: 768px) {
  .recruit .recruit-content .recruit-message p {
    font-size: 1.2rem;
  }
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-message p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
.recruit .recruit-content .recruit-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 8rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .recruit .recruit-content .recruit-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.recruit .recruit-content .recruit-features .feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
}
.recruit .recruit-content .recruit-features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.recruit .recruit-content .recruit-features .feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.recruit .recruit-content .recruit-features .feature-item:hover::before {
  opacity: 1;
}
.recruit .recruit-content .recruit-features .feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  color: #10b981;
}
.recruit .recruit-content .recruit-features .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease-out;
}
.recruit .recruit-content .recruit-features .feature-item .feature-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.recruit .recruit-content .recruit-features .feature-item .feature-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-features .feature-item .feature-text h4 {
    font-size: 1.1rem;
  }
}
.recruit .recruit-content .recruit-features .feature-item .feature-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-features .feature-item .feature-text p {
    font-size: 0.9rem;
  }
}
.recruit .recruit-content .recruit-cta .btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: 2px solid rgba(16, 185, 129, 0.3);
  padding: 2rem 8rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease-out;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.recruit .recruit-content .recruit-cta .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease-out;
}
.recruit .recruit-content .recruit-cta .btn:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(16, 185, 129, 0.5);
}
.recruit .recruit-content .recruit-cta .btn:hover::before {
  left: 100%;
}
.recruit .recruit-content .recruit-cta .btn:hover .btn-icon {
  transform: translateX(3px) translateY(-3px);
}
.recruit .recruit-content .recruit-cta .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.recruit .recruit-content .recruit-cta .btn .btn-text {
  position: relative;
  z-index: 1;
}
.recruit .recruit-content .recruit-cta .btn .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-out;
  position: relative;
  z-index: 1;
}
.recruit .recruit-content .recruit-cta .btn .btn-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-cta .btn {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    flex-direction: column;
    gap: 1rem;
  }
}
.recruit .recruit-content .recruit-jobs-section {
  margin-bottom: 8rem;
}
.recruit .recruit-content .recruit-jobs-section .jobs-header {
  text-align: center;
  margin-bottom: 3rem;
}
.recruit .recruit-content .recruit-jobs-section .jobs-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-header h3 {
    font-size: 1.5rem;
  }
}
.recruit .recruit-content .recruit-jobs-section .jobs-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-header p {
    font-size: 1rem;
  }
}
.recruit .recruit-content .recruit-jobs-section .jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.recruit .recruit-content .recruit-jobs-section .jobs-list .job-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  min-height: 150px;
}
.recruit .recruit-content .recruit-jobs-section .jobs-list .job-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list .job-card {
    min-height: 140px;
    padding: 1.5rem;
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list .job-card {
    flex-direction: row;
    text-align: left;
    min-height: auto;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}
.recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-image {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-image {
    width: 70px;
    height: 70px;
  }
}
.recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-info {
    flex: 1;
    justify-content: flex-start;
  }
}
.recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-info h4 {
    font-size: 1.1rem;
  }
}
@media (max-width: 640px) {
  .recruit .recruit-content .recruit-jobs-section .jobs-list .job-card .job-info h4 {
    font-size: 1.2rem;
  }
}

@keyframes recruit-slide-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .recruit {
    min-height: 50vh;
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .recruit {
    min-height: 40vh;
    padding: 2rem 0;
  }
  .recruit .section-header {
    margin-bottom: 3rem;
  }
  .recruit .recruit-content .recruit-message {
    margin-bottom: 2rem;
  }
}
@media (max-width: 640px) {
  .recruit {
    min-height: 35vh;
    padding: 1.5rem 0;
  }
  .recruit .section-header {
    margin-bottom: 2rem;
  }
  .recruit .recruit-content .recruit-message {
    margin-bottom: 1.5rem;
  }
}
.contact {
  background-color: #ffffff;
  padding: 8rem 0;
}
.contact .contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}
@media (min-width: 1024px) {
  .contact .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}
.contact .contact-info .contact-item {
  margin-bottom: 3rem;
}
.contact .contact-info .contact-item:last-child {
  margin-bottom: 0;
}
.contact .contact-info .contact-item .contact-item-title {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #262946;
  margin-bottom: 1.5rem;
}
.contact .contact-info .contact-item .contact-item-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}
.contact .contact-form {
  background-color: #f8fafc;
  padding: 3rem;
  border-radius: 8px;
}
.contact .contact-form .form .form-group {
  margin-bottom: 2rem;
}
.contact .contact-form .form .form-group .form-label {
  display: block;
  font-weight: 700;
  color: #262946;
  margin-bottom: 1rem;
}
.contact .contact-form .form .form-group .form-input,
.contact .contact-form .form .form-group .form-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact .contact-form .form .form-group .form-input:focus,
.contact .contact-form .form .form-group .form-textarea:focus {
  outline: none;
  border-color: #009946;
}
.contact .contact-form .form .form-group .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.news {
  background-color: #ffffff;
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .news {
    padding: 3rem 0;
  }
}
@media (max-width: 640px) {
  .news {
    padding: 2rem 0;
  }
}
.news .news-list {
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .news .news-list {
    margin-bottom: 2rem;
  }
}
.news .news-list .news-item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  min-height: 44px;
}
@media (max-width: 640px) {
  .news .news-list .news-item {
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.news .news-list .news-item:last-child {
  border-bottom: none;
}
@media (hover: hover) and (pointer: fine) {
  .news .news-list .news-item:hover {
    background-color: #f8fafc;
    padding-right: 1.5rem;
    border-radius: 4px;
    transform: translateX(1.5rem) !important;
  }
  .news .news-list .news-item:hover .news-title {
    color: #009946;
    text-decoration: underline;
  }
}
.news .news-list .news-item:active {
  background-color: #f8fafc;
}
@media (max-width: 640px) {
  .news .news-list .news-item:active {
    transform: scale(0.98);
  }
}
.news .news-list .news-item:focus {
  outline: 2px solid #009946;
  outline-offset: 2px;
  border-radius: 4px;
}
.news .news-list .news-item .news-category {
  background-color: #009946;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .news .news-list .news-item .news-category {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    margin-right: 1rem;
  }
}
@media (max-width: 480px) {
  .news .news-list .news-item .news-category {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
}
.news .news-list .news-item .news-date {
  font-size: 0.9rem;
  color: #6b7280;
  margin-right: 2rem;
  flex-shrink: 0;
  min-width: 80px;
}
@media (max-width: 640px) {
  .news .news-list .news-item .news-date {
    font-size: 0.85rem;
    margin-right: 1.5rem;
    min-width: 70px;
  }
}
@media (max-width: 480px) {
  .news .news-list .news-item .news-date {
    font-size: 0.8rem;
    min-width: 60px;
    margin-right: 1rem;
  }
}
.news .news-list .news-item .news-new-badge {
  display: inline-block;
  background-color: #c32121;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 0.5rem;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .news .news-list .news-item .news-new-badge {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    margin-right: 0.4rem;
  }
}
.news .news-list .news-item .news-title {
  font-weight: 600;
  color: #262946;
  text-decoration: none;
  line-height: 1.4;
  flex-grow: 1;
}
@media (max-width: 640px) {
  .news .news-list .news-item .news-title {
    font-size: 0.9rem;
    line-height: 1.5;
    width: 100%;
    margin-top: 0.25rem;
  }
}
@media (max-width: 480px) {
  .news .news-list .news-item .news-title {
    font-size: 0.85rem;
  }
}
.news .news-more {
  text-align: center;
}
@media (max-width: 640px) {
  .news .news-more {
    margin-top: 1.5rem;
  }
}

.manufacturers {
  background-color: #f8fafc;
  padding: 8rem 0;
}
.manufacturers .manufacturers-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}
.manufacturers .manufacturers-grid .manufacturer-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.manufacturers .manufacturers-grid .manufacturer-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner {
  position: relative;
  width: 100%;
  height: 18.75rem;
  background: #f1f5f9;
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box {
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  border-radius: 1.25rem;
  overflow: hidden;
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box .imgBox {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  position: relative;
  z-index: 1;
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box .icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 6rem;
  height: 6rem;
  background: var(--clr);
  border-top-left-radius: 50%;
  z-index: 10;
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box .icon:hover .iconBox {
  transform: scale(1.1);
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box .icon::before {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  left: -1.25rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box .icon::after {
  position: absolute;
  content: "";
  top: -1.25rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box .icon .iconBox {
  position: absolute;
  inset: 0.625rem;
  background: #282828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  z-index: 11;
}
.manufacturers .manufacturers-grid .manufacturer-card .card-inner .box .icon .iconBox .material-symbols-outlined {
  color: #fff;
  font-size: 1.5rem;
}
.manufacturers .manufacturers-grid .manufacturer-card .content {
  padding: 1.25rem 1.5rem 1.5rem;
  background-color: #f1f5f9;
}
.manufacturers .manufacturers-grid .manufacturer-card .content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.025em;
  height: 2em;
  display: flex;
  align-items: center;
}
.manufacturers .manufacturers-grid .manufacturer-card .content p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  font-weight: 400;
}
.manufacturers .manufacturers-grid .manufacturer-card:hover .card-inner .box .icon .iconBox {
  transform: scale(1.1);
}
.manufacturers .manufacturers-grid .manufacturer-card:focus {
  outline: 2px solid #009946;
  outline-offset: 2px;
}

.plant-detail {
  background-color: #ffffff;
  padding: 8rem 0;
}
.plant-detail .plant-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .plant-detail .plant-content {
    grid-template-columns: 1fr 1fr;
  }
}
.plant-detail .plant-text .plant-subtitle {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #262946;
  margin-bottom: 2rem;
}
.plant-detail .plant-text .plant-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 3rem;
}
.plant-detail .plant-text .plant-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .plant-detail .plant-text .plant-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.plant-detail .plant-text .plant-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.plant-detail .plant-text .plant-features .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background-color: #009946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plant-detail .plant-text .plant-features .feature-item .feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}
.plant-detail .plant-text .plant-features .feature-item .feature-text {
  font-weight: 600;
  color: #262946;
}
.plant-detail .plant-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.plant-detail .plant-visual .plant-operation-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}
.plant-detail .plant-visual .plant-animation {
  position: relative;
  width: 300px;
  height: 300px;
}
.plant-detail .plant-visual .plant-animation .plant-gear {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 4px solid #009946;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
}
.plant-detail .plant-visual .plant-animation .plant-flow {
  position: absolute;
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #009946, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: flow 3s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes flow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1.2);
  }
}
.hero-background .hero-grid-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -6;
  touch-action: none;
  pointer-events: auto;
  opacity: 1;
  clip-path: url(#heroCurveClipPath);
  transform: translateY(5%);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow: visible; /* はみ出しを許可するためにvisibleに変更 */
  width: 100%;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-background .hero-bg-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  filter: blur(0.2px) brightness(1.05) contrast(1.1) grayscale(100%);
  mask: url(#heroCurveMaskInverse);
  -webkit-mask: url(#heroCurveMaskInverse);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  z-index: -4;
}
.hero-background .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  filter: brightness(1.05) contrast(1.2) saturate(0.85);
}
.hero-background .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  z-index: -3;
}
.hero-background .hero-bg-image.reveal-in {
  /* 初期状態: 上から100%隠す */
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-background .hero-bg-image.reveal-in.animate-in {
  /* 最終状態: 全面表示 */
  clip-path: inset(0 0 0 0);
}
.hero-background {
  /* ベース画像の下部に白と透明のグラデーションをかけて境界線をぼかす */
}
.hero-background .hero-gradient-overlay {
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.6) 70%, rgb(255, 255, 255) 100%);
  pointer-events: none;
  z-index: -4;
}
.hero-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .hero-container {
    margin-top: 44vh;
  }
}
@media (min-width: 640px) {
  .hero-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  .hero-container {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .hero-container {
    margin-top: 20vh;
    padding: 0 3rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1920px) {
  .hero-container {
    margin-top: 20vh;
    margin-left: 4rem;
    margin-right: auto;
    padding: 0 3rem;
    max-width: 1600px;
  }
}
@media (min-width: 2560px) {
  .hero-container {
    margin-top: 20vh;
    margin-left: 6rem;
    margin-right: auto;
    padding: 0 3rem;
    max-width: 2000px;
  }
}
@media (min-width: 3840px) {
  .hero-container {
    margin-top: 20vh;
    margin-left: 8rem;
    margin-right: auto;
    padding: 0 3rem;
    max-width: 2200px;
  }
}
.hero-content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}
.hero-title {
  font-family: "Ryumin R-KL", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #262946;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}
.hero-title .title-line {
  display: block;
  opacity: 0;
  transform: translateY(12px);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-title .title-line.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #262946;
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(12px);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  font-weight: 500;
}
.hero-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.hero .no-wrap {
  white-space: nowrap;
  display: inline-block;
}
.hero-visual {
  display: none;
}
@media (min-width: 1024px) {
  .hero-visual {
    display: block;
    position: relative;
  }
}

.hero-title {
  word-break: keep-all;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-title {
    font-size: 3rem !important;
  }
}
.services::before {
  content: none;
  display: none;
}

/*# sourceMappingURL=index.css.map */
