* {
  box-sizing: border-box;
}
/* Top Navigation */
.hyperlink-top-nav {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
}

.hyperlink-top-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hyperlink-nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #4d4d4d;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  transition: color 0.3s ease;
}

.hyperlink-nav-link--home {
  color: #fe4ba0;
}

.hyperlink-nav-link--home:hover {
  color: #fa309b;
}

.hyperlink-nav-link--current {
  color: #1c1c1c;
}

.hyperlink-nav-separator {
  font-size: 16px;
  color: #4d4d4d;
  font-family: "Noto Sans JP", sans-serif;
}

/* Main Section */
.hyperlink-main-section {
  width: 100%;
  background: #fafafa;
  padding: 40px 0 60px;
}

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

.hyperlink-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* Main Content Area (Left) */
.hyperlink-main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hyperlink-section-content {
  padding: 40px;
  background: #ffffff;
  border-radius: 32px;
}

.hyperlink-section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.hyperlink-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #fe4ba0;
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}

.hyperlink-section-divider {
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    #c9c9c9 0px,
    #c9c9c9 24px,
    transparent 24px,
    transparent 32px
  );
}

/* Content Blocks */
.hyperlink-content-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hyperlink-content-block {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.hyperlink-block-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.hyperlink-block-description {
  font-size: 16px;
  font-weight: 400;
  color: #4d4d4d;
  line-height: 1.8;
  margin: 0 0 20px 0;
  font-family: "Noto Sans JP", sans-serif;
}

.hyperlink-block-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #fe4ba0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 1px;
  border-radius: 99px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  transition: background-color 0.3s ease;
}

.hyperlink-block-button-text {
  background: #fe4ba0;
  padding: 10px;
  border-radius: 99px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  transition: background-color 0.3s ease;
}

.hyperlink-block-button-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
}

.hyperlink-button-icon {
  flex-shrink: 0;
}

/* Sidebar (Right) */
.hyperlink-sidebar {
  width: 100%;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.hyperlink-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hyperlink-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #1c1c1c;
  font-family: "Noto Sans JP", sans-serif;
}

.hyperlink-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 800;
  color: #1c1c1c;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 100%;
  line-height: 1.5;
}

.hyperlink-sidebar-link:hover {
  color: #fe4ba0;
}

.hyperlink-sidebar-item--active .hyperlink-sidebar-link {
  color: #fe4ba0;
}

.hyperlink-sidebar-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4d4d4d;
  flex-shrink: 0;
}

.hyperlink-sidebar-bullet--pink {
  background: #fe4ba0;
}

.hyperlink-show-group-title {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hyperlink-main-container {
    padding: 0 60px;
  }

  .hyperlink-top-nav-container {
    padding: 0 60px;
  }

  .hyperlink-content-wrapper {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .hyperlink-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hyperlink-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hyperlink-main-section {
    padding: 30px 0 40px;
  }

  .hyperlink-main-container {
    padding: 0 30px;
  }

  .hyperlink-top-nav-container {
    padding: 0 30px;
  }

  .hyperlink-section-title {
    font-size: 32px;
  }

  .hyperlink-content-block {
    padding: 20px;
  }

  .hyperlink-block-title {
    font-size: 18px;
  }

  .hyperlink-block-description {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hyperlink-block-button {
    position: static;
    margin-top: 16px;
    justify-content: center;
  }

  .hyperlink-sidebar {
    padding: 20px 0px;
  }
}

@media (max-width: 480px) {
  .hyperlink-main-container {
    padding: 0 20px;
  }

  .hyperlink-top-nav-container {
    padding: 0 20px;
  }

  .hyperlink-section-title {
    font-size: 28px;
  }

  .hyperlink-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hyperlink-section-divider {
    width: 100%;
  }

  .hyperlink-content-block {
    padding: 16px;
  }

  .hyperlink-block-title {
    font-size: 16px;
  }

  .hyperlink-block-description {
    font-size: 14px;
  }

  .hyperlink-block-button {
    font-size: 14px;
    padding: 2px;
  }

  .hyperlink-content-wrapper{
    display: flex;
    flex-direction: column-reverse;
  }

  .hyperlink-sidebar-list{
    display: flex;
    flex-direction: row;
  }

  .hyperlink-sidebar-bullet{
    width: 8px;
    height: 8px;
  }

  .hyperlink-sidebar-link{
    font-size: 14px;
  }

  .hyperlink-sidebar-item {
    font-size: 14px;
  }
  .hyperlink-section-content{
    padding: 16px;
  }
}
