/* Guide Wrapper */
.guide-wrapper {
  padding-top: 60px;
}

/* Guide Content Section Layout */
.guide-content-section {
  width: 1204px;
  margin: 0 auto;
  display: flex;
  gap: 44px;
}

/* Guide Tabs Container */
.guide-tabs {
  width: 276px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

/* Guide Tab */
.guide-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.guide-tab:hover {
  background-color: #f8f8f8;
}

.guide-tab.active {
  background-color: #FFFFFF;
}

.guide-tab-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5em;
  color: #333333;
}

/* Guide Tab Indicator */
.guide-tab-indicator {
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 28px;
  background-color: #E9E9E9;
  border-radius: 0px 4px 4px 0px;
  transition: background-color 0.3s ease;
}

.guide-tab:hover .guide-tab-indicator,
.guide-tab.active .guide-tab-indicator {
  background-color: #00A854;
}

/* Guide Tab Content Area */
.guide-tabs-wrapper {
}

.guide-tab-content {
  flex: 1;
  position: relative;
  min-height: 400px;
}

/* Guide Tab Panel */
.guide-tab-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
  scroll-margin-top: 20px;
}

/* Guide Section Header */
.guide-section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  background-color: #000000;
  border-radius: 8px;
}

.guide-section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5em;
  color: #ffffff;
  margin: 0;
}

/* Guide Steps (for Charge tab) */
.guide-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.guide-step {
  box-sizing: border-box;
  width: 432px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
}

.guide-step-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-step-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-step-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  background-color: #00A854;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1em;
  color: #FFFFFF;
  width: fit-content;
}

.guide-step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2em;
  color: #000000;
  margin: 0;
}

.guide-step-image {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
}

.guide-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-step-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8em;
  color: #000000;
  margin: 0;
}

/* Guide Info Sections (for other tabs) */
.guide-info-sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guide-info-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #CACACA;
}

.guide-info-icon {
  width: 16px;
  height: 16px;
  background-color: #00A854;
  border-radius: 4px;
  flex-shrink: 0;
}

.guide-info-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 2em;
  color: #000000;
  margin: 0;
}

.guide-info-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8em;
  color: #000000;
  margin: 0;
}

.guide-info-description p {
  margin: 0 0 8px 0;
}

.guide-info-description p:last-child {
  margin-bottom: 0;
}

/* Guide Info List */
.guide-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.guide-info-bullet {
  width: 6px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-info-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #00A854;
  border-radius: 50%;
}

.guide-info-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8em;
  color: #000000;
  margin: 0;
}

@media (max-width: 1200px) {
  .guide-step-badge {
    font-size: 14px;
    font-weight: 400;
  }
  .guide-tabs {
    width: 310px;
  }
	.guide-wrapper {
		padding-top: 28px;
	}
  .guide-content-section {
    flex-direction: column;
    gap: 56px;
    align-items: center;
    width: 100%;
  }
  .guide-tab-content {
    min-height: auto;
    width: 100%;
  }
  .guide-step {
    padding: 12px 20px;
  }
  .guide-steps {
    justify-content: center;
  }
  .guide-step-title {
    font-size: 16px;
  }
  .guide-info-section {
    gap: 8px
  }
  .guide-info-header {
    padding: 8px 0;
  }
  .guide-tab-panel {
    gap: 8px;
    margin-bottom: 56px;
    scroll-margin-top: 60px;
  }
  .guide-tab-text {
    font-size: 14px;
  }
  .guide-section-title {
    font-size: 18px;
  }
}
