body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
}

.slide-container.wrap001 {
  width: 100%;
  min-height: 800px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a4f8a 0%, #2a6f9a 50%, #3aa59c 100%);
  color: white;
}

.slide-container.wrap001 .hero-image {
  position: absolute;
  opacity: 0.15;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.header {
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999999999999;
  background: linear-gradient(135deg, #1a4f8a 0%, #2a6f9a 50%, #3aa59c 100%);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  margin-right: 10px;
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-item {
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.slide-container.wrap001 .main-content {
  display: flex;
  padding: 50px;
  z-index: 10;
  position: relative;
}

.slide-container.wrap001 .content-left {
  flex: 6;
  padding-right: 30px;
}

.slide-container.wrap001 .content-right {
  flex: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-container.wrap001 .title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.slide-container.wrap001 .subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.slide-container.wrap001 .highlight {
  color: #ffeb3b;
  font-weight: 500;
}

.slide-container.wrap001 .buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.slide-container.wrap001 .btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.slide-container.wrap001 .btn-primary {
  background-color: white;
  color: #1a4f8a;
}

.slide-container.wrap001 .btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.slide-container.wrap001 .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slide-container.wrap001 .image-container {
  position: relative;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slide-container.wrap001 .feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-container.wrap001 .crypto-icons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
}

.slide-container.wrap001 .crypto-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slide-container.wrap001 .floating-element {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1a4f8a;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.slide-container.wrap001 .float-1 {
  top: 40px;
  right: -20px;
}

.slide-container.wrap001 .float-2 {
  bottom: -20px;
  right: 50px;
}

.genspark-badge-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 6px;
}

.genspark-modal {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 10000;
  justify-content: end;
}

.genspark-modal-content {
  background-color: white;
  border-radius: 8px;
  max-width: 450px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

@media (max-width: 768px) {
  .genspark-modal-content {
    max-width: 90%;
  }
}

.genspark-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
}

.genspark-title {
  margin-bottom: 8px;
  font-weight: normal;
  display: inline;
  font-size: 14px;
}

.genspark-report {
  color: #909499;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 14px;
  display: inline;
}

.genspark-info {
  margin: 25px 0;
  color: #333;
  font-size: 14px;
}

.genspark-buttons {
  display: flex;
  gap: 10px;
}

.genspark-remove-btn {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  color: #333;
  padding: 4px 14px;
  border-radius: 8px;
  cursor: pointer;
  flex: 1;
  font-size: 14px;
  box-sizing: border-box;
}

.genspark-go-btn {
  background-color: #222;
  border: none;
  color: white;
  padding: 4px 14px;
  border-radius: 8px;
  cursor: pointer;
  flex: 1;
  font-size: 14px;
  box-sizing: border-box;
}