/* News Detail Wrapper */
.news-detail-wrapper {
  padding-top: 60px;
}

/* News Detail Header */
.news-detail-header {
  margin-bottom: 32px;
}

.news-date {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5em;
  color: #666666;
  margin-bottom: 16px;
}

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

/* News Divider */
.news-divider {
  width: 100%;
  height: 1px;
  background-color: #CACACA;
  margin: 32px 0;
}

/* H1 Section */
.custom_css_editor h1, .cke_editable h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5em;
  color: #000000;
  margin: 0;
  background-color: #E6E6E6;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  margin-top: 40px;
}

/* Paragraph Section */
.custom_css_editor p, .cke_editable p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8em;
  color: #000000;
  margin: 0 0 8px 0;
}

/* List Section */
.custom_css_editor ul, .cke_editable ul {
  margin-top: 40px;
}


.custom_css_editor ul li, .cke_editable ul li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8em;
  color: #000000;
  margin: 0 0 8px 0;

}
.custom_css_editor ul li::marker, .cke_editable ul li::marker {
  color: #00A854;
}
/* H2 Section */
.custom_css_editor h2, .cke_editable h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5em;
  color: #000000;
  margin-bottom: 12px;
  margin-top: 40px;
  position: relative;
  padding-left: 24px;
}
.custom_css_editor h2::before, .cke_editable h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: #00A854;
  border-radius: 4px;
  flex-shrink: 0;
}

/* H3 Section */
.custom_css_editor h3, .cke_editable h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  color: #000000;
  margin: 0;
  background-color: #E6E6E6;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 40px;
  margin-bottom: 12px;
  width: fit-content;
}

/* News Link */
.custom_css_editor a, .cke_editable a {
  color: #EF2864;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8em;
  text-decoration: underline;
}


/* Bold Text */
.custom_css_editor strong, .cke_editable strong,
.custom_css_editor b, .cke_editable b {
  font-weight: 700;
}

/* Bottom Divider */
.news-bottom-divider {
  width: 100%;
  height: 1px;
  background-color: #CACACA;
  margin: 80px 0;
}

/* Back Button Section */
.news-back-button-section {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.news-back-button {
  position: relative;
  width: 400px;
  height: 64px;
  background-color: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-back-button-icon {
  position: absolute;
  left: 32px;
  top: 20px;
  width: 24px;
  height: 24px;
  background-color: #000000;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-back-button-text {
  position: absolute;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5em;
  color: #000000;
}

.news-detail-content-section {
  max-width: 1040px;
  margin: 0 auto;
}

/* responsive */
@media (max-width: 1200px) {
	.news-detail-wrapper {
		padding-top: 28px;
	}
  .news-title {
    font-size: 22px;
  }
  .news-date {
    margin-bottom: 8px;
  }
  .news-divider {
    margin: 20px 0;
  }
  .custom_css_editor h1, .cke_editable h1 {
    margin-top: 32px;
    font-size: 20px;
  }
  .custom_css_editor h2, .cke_editable h2 {
    font-size: 18px;
    margin-top: 32px;
  }

  .custom_css_editor p, .cke_editable p {
    font-size: 14px;
  }
  .custom_css_editor h3, .cke_editable h3  {
    font-size: 16px;
    margin-top: 32px;
  }
  .news-bottom-divider {
    margin: 64px 0;
  }
  .top-header-title-section {
    margin-bottom: 40px;
  }
  .news-detail-header {
    margin-bottom: 0;
  }
}
