@charset "utf-8";

/* パンくずリスト */
.saiki__breadcrumb {
  margin-bottom: 32px;
  font-weight: bolder;
}

.saiki__breadcrumb .breadcrumb-item a {
  color: #b83937;
  text-decoration: none;
}

.saiki__breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.saiki__breadcrumb .breadcrumb-item.active {
  color: #666;
}

/* ページタイトル */
.saiki__page_title {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 96px 0;
  color: #333;
}

.saiki__page_title::before {
  position: absolute;
  content: attr(data-en);
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  color: #b83937;
  opacity: .2;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.saiki__page_title span {
  position: relative;
  z-index: 1;
}

.saiki__page_title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: #b83937;
  margin: 24px auto 0;
  border-radius: 2px;
}

/* イントロセクション */
.saiki__intro {
  margin-bottom: 64px;
}

.saiki__hero {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.saiki__hero_image {
  flex: 1;
  margin-bottom: 32px;
}

.saiki__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.saiki__image_placeholder {
  width: 100%;
  height: 300px;
  background: #f8f8f8;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #666;
  font-size: 16px;
}

.saiki__hero_text {
  flex: 1;
}

.saiki__catchcopy {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #333;
}

.saiki__highlight {
  color: #b83937;
  text-decoration: underline wavy #ffd700;
}

.saiki__description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* 問題提起セクション */
.saiki__problem {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 48px;
  border-radius: 20px;
  margin-bottom: 64px;
  text-align: center;
  position: relative;
}

.saiki__problem::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #b83937, #d63384, #b83937);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.1;
}

.saiki__problem_title h3 {
  font-size: 24px;
  font-weight: bold;
  color: #b83937;
  margin-bottom: 16px;
  line-height: 1.5;
}

.saiki__problem_content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-top: 32px;
}

/* サービスセクション */
.saiki__services_title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
  color: #333;
  position: relative;
}

.saiki__services_title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #b83937;
  margin: 16px auto 0;
  border-radius: 2px;
}

.saiki__service_item {
  margin-bottom: 64px;
  padding: 48px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.saiki__service_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 57, 55, 0.05), transparent);
  transition: left 0.5s ease;
}

.saiki__service_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.saiki__service_item:hover::before {
  left: 100%;
}

.saiki__service_heading {
  font-size: 24px;
  font-weight: bold;
  color: #b83937;
  margin-bottom: 24px;
  line-height: 1.4;
  position: relative;
}

.saiki__service_image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 12px;
}

.saiki__service_image_cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;

}

.saiki__service_image_placeholder {
  width: 100%;
  height: 200px;
  background: #f8f8f8;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #666;
  font-size: 16px;
  margin: 24px 0;
}

.saiki__service_problem {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 16px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.saiki__service_problem::before {
  content: '💭';
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 20px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.saiki__quote {
  font-style: italic;
  color: #856404;
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.saiki__service_description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-top: 24px;
}

/* クロージングセクション */
.saiki__closing {
  background: linear-gradient(135deg, #b83937 0%, #d63384 100%);
  color: white;
  padding: 64px 48px;
  border-radius: 20px;
  text-align: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.saiki__closing::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.saiki__closing_content {
  position: relative;
  z-index: 1;
}

.saiki__closing_message {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.saiki__contact_image_placeholder {
  width: 300px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px dashed rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin: 0 auto 32px;
}

.saiki__contact_button {
  margin-top: 32px;
}

.saiki__btn {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: #b83937;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.saiki__btn:hover {
  background: #f8f9fa;
  color: #b83937;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 991px) {
  .saiki__page_title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .saiki__page_title {
    font-size: 32px;
  }
  
  .saiki__hero {
    flex-direction: column;
    gap: 24px;
  }
  
  .saiki__catchcopy {
    font-size: 24px;
  }
  
  .saiki__problem {
    padding: 32px 24px;
  }
  
  .saiki__problem_title h3 {
    font-size: 20px;
  }
  
  .saiki__service_item {
    padding: 32px 24px;
  }
  
  .saiki__service_heading {
    font-size: 20px;
  }
  
  .saiki__closing {
    padding: 48px 24px;
  }
  
  .saiki__btn {
    padding: 12px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .saiki__page_title {
    font-size: 28px;
  }
  
  .saiki__catchcopy {
    font-size: 20px;
  }
  
  .saiki__problem_title h3 {
    font-size: 18px;
  }
  
  .saiki__service_heading {
    font-size: 18px;
  }
  
  .saiki__contact_image_placeholder {
    width: 250px;
    height: 150px;
  }
}
