/* more_service.php 専用スタイル */

.more-service {
  background: linear-gradient(135deg, #1794ac 0%, #0d7a8e 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.more-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    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.08) 0%, transparent 50%);
  pointer-events: none;
}

.more-service__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.more-service__header {
  text-align: center;
  margin-bottom: 60px;
}

.more-service__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.more-service__title-main {
  font-size: 28px;
  font-weight: 500;
  opacity: 0.9;
}

.more-service__title-highlight {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(45deg, #fff, #e0f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.more-service__subtitle {
  font-size: 18px;
  opacity: 0.85;
  margin: 0;
}

.more-service__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.more-service__item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.more-service__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fff, #e0f7ff);
}

.more-service__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.more-service__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.more-service__logo {
  flex: 1;
}

.more-service__logo img {
  max-width: 100%;
  height: auto;
}

.more-service__badge {
  background: rgba(255, 255, 255, 0.9);
  color: #1794ac;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-left: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.more-service__badge--recruiting {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: #fff;
}

.more-service__item-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.more-service__item-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.9;
}

.more-service__features {
  margin-bottom: 30px;
}

.more-service__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.more-service__features-list li {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.more-service__item-footer {
  text-align: right;
}

.more-service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #1794ac;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.more-service__link:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.more-service__link-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.more-service__link:hover .more-service__link-icon {
  transform: translateX(2px);
}

.more-service__footer {
  text-align: center;
}

.more-service__auto-connect {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
}

.more-service__auto-connect-icon {
  background: rgba(255, 255, 255, 0.9);
  color: #1794ac;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.more-service__auto-connect-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.more-service__auto-connect-text strong {
  font-weight: 700;
  color: #e0f7ff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .more-service {
    padding: 60px 0;
  }
  
  .more-service__inner {
    padding: 0 15px;
  }
  
  .more-service__header {
    margin-bottom: 40px;
  }
  
  .more-service__title-main {
    font-size: 22px;
  }
  
  .more-service__title-highlight {
    font-size: 28px;
  }
  
  .more-service__subtitle {
    font-size: 16px;
  }
  
  .more-service__content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .more-service__item {
    padding: 30px 20px;
  }
  
  .more-service__item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .more-service__logo {
    width: 140px;
  }
  
  .more-service__badge {
    align-self: flex-end;
    margin-left: 0;
  }
  
  .more-service__item-title {
    font-size: 24px;
  }
  
  .more-service__features-list {
    flex-direction: column;
  }
  
  .more-service__auto-connect {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  
  .more-service__auto-connect-text {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .more-service__content {
    grid-template-columns: 1fr;
  }
  
  .more-service__item {
    min-width: auto;
  }
}
