/* 追加 */

.page-padding.error404 {
  text-align: center;
  margin: 140px 0;
}

/* ----------------------------------------------------------------------
   Subpage specific styles
---------------------------------------------------------------------- */

/* ----------------------------------------------------------------------
   Divider styles
---------------------------------------------------------------------- */
.divider {
  width: 100%;
  height: 1px;
  background-color: #ebedf0;
}

.subpage-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.subpage-header p {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--secondary);
  text-align: center;
  line-height: 2.15;
}

h1.subpage-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
  line-height: 1.6;
}

/* ----------------------------------------------------------------------
   Doctor section styles
---------------------------------------------------------------------- */
.doctor-section {
  background-color: #fff;
  padding: 24px;
}

.doctor-content {
  max-width: 375px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.doctor-card {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doctor-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.doctor-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.doctor-names {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doctor-name-kana {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.2;
}

.doctor-name {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1.2;
}

.doctor-specialty {
  display: flex;
  flex-direction: column;
}

.doctor-specialty span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.43;
}

.doctor-photo {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.doctor-description {
  margin-top: 8px;
}

.doctor-description p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.doctor-divider {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #8897bb 0px, #8897bb 2px, transparent 2px, transparent 4px);
}

.medical-institution-card {
  background-color: #fff3ed;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.institution-header {
  display: flex;
  flex-direction: column;
}

.institution-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.6;
  margin: 0;
}

.institution-content {
  display: flex;
  flex-direction: column;
}

.institution-name {
  font-size: 1.4rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.4;
  margin: 0;
}

/* ----------------------------------------------------------------------
   Privacy policy section styles
---------------------------------------------------------------------- */
.privacy-section {
  background-color: #fff;
  padding: 24px;
}

.privacy-content {
  max-width: 375px;
  margin: 0 auto;
}

.privacy-text {
  margin-bottom: 28px;
}

.privacy-text h4 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 2;
  margin: 0 0 8px 0;
}

.privacy-text p {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 2;
  margin: 0 0 16px 0;
}

.privacy-text p:last-child {
  margin-bottom: 0;
}

.privacy-text ul,
.privacy-text ol {
  margin: 0 0 16px 2rem;
}

.privacy-text li {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 2;
}

/* ----------------------------------------------------------------------
   FAQ section styles
---------------------------------------------------------------------- */
.faq-section {
  background-color: #f6f6f6;
  padding-top: 24px;
}

.faq-page .faq-content {
  max-width: unset;
}

.faq-page {
  max-width: unset !important;
  padding: 24px;
  margin-bottom: 0 !important;
  padding-bottom: 40px !important;
}

.faq-content {
  max-width: 375px;
  margin: 0 auto;
}

.faq-section .section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary, #333);
  text-align: center;
  margin-bottom: 24px;
}

.faq-category {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-category-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.5;
}

.faq-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.faq-question {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq-question span {
  color: var(--primary, #e86b36);
  margin-right: 4px;
}

.faq-answer {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
}

.faq-page .faq-question {
  margin-bottom: 0;
}

.faq-page .faq-item {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
}

.faq-page .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
  position: relative;
}

.faq-page .faq-question::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #d9d9d9;
  border-bottom: 1.5px solid #d9d9d9;
  transform: rotate(-45deg);
  transition: transform 0.5s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.faq-page .faq-question:hover {
  background-color: #f8f9fa;
}

.faq-page .faq-question span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.71;
  flex: 1;
}

.faq-page .faq-item.active .faq-question::after {
  transform: rotate(45deg);
  border-color: var(--secondary);
}

.faq-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-page .faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-page .faq-answer p {
  padding: 10px 16px 16px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.71;
  margin: 0;
}

/* ----------------------------------------------------------------------
   Column section styles
---------------------------------------------------------------------- */
.column-section {
  background-color: #fff;
  padding: 24px;
}

.column-content,
.subpage-header {
  max-width: 375px;
  margin: 0 auto;
}

.subpage-header {
  text-align: center;
  margin-bottom: 40px;
}

.subpage-header p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary, #e86b36);
  margin-bottom: 8px;
}

.subpage-header .subpage-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary, #333);
  text-align: center;
  margin-bottom: 24px;
}

.c-column-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-column-list .item {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.c-column-list .link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.c-column-list .image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eee;
  overflow: hidden;
}

.c-column-list .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-column-list .category {
  display: flex;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: var(--primary, #e86b36);
  color: #fff;
  margin: 12px 16px 4px;
}

.modified-wrapper {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #888;
  margin: 0 16px 8px;
}

.modified-text {
  margin-right: 4px;
}

.c-column-list .article-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin: 0 16px 16px;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* ← ここで3行に制限 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-section {
  background-color: #fff;
  padding: 24px;
}

.search-section .section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary, #333);
  text-align: center;
  margin-bottom: 16px;
}

.c-search-box {
  max-width: 375px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 9999px;
  padding: 6px 12px;
  box-shadow: inset 0 0 0 1px #ddd;
  transition: box-shadow 0.2s ease;
}

.c-search-box:focus-within {
  box-shadow: inset 0 0 0 1.5px var(--primary, #e86b36);
}

.c-search-box__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  padding: 8px 8px 8px 4px;
  outline: none;
  color: #333;
}

.c-search-box__input::placeholder {
  color: #aaa;
}

.c-search-box__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: var(--primary, #e86b36);
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s ease;
}

.c-search-box__button:hover {
  color: #d4561c;
}

.category-section {
  background-color: #fff;
  padding: 24px;
}

.category-section .subpage-header {
  max-width: 375px;
  margin: 0 auto 32px;
  text-align: center;
}

.category-section .subpage-header p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary, #e86b36);
  margin-bottom: 8px;
}

.category-section .subpage-header .subpage-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.c-category-list {
  max-width: 375px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-category-list .item {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.c-category-list .item:hover {
  background-color: #f1f1f1;
  transform: translateY(-1px);
}

.c-category-list .link {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary, #333);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.c-category-list .link:hover {
  color: var(--primary, #e86b36);
}

.recommend-section {
  background-color: #fff;
  padding: 24px;
}

.recommend-section .subpage-header {
  max-width: 375px;
  margin: 0 auto 32px;
  text-align: center;
}

.recommend-section .subpage-header p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary, #e86b36);
  margin-bottom: 8px;
}

.recommend-section .subpage-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

/* ----------------------------------------------------------------------
   Column detail
---------------------------------------------------------------------- */
.article-detail {
  background-color: #fff;
  padding: 24px;
}

.article-header,
.supervisor,
.article-lead,
.article-body,
.related-articles,
.faq-section,
.category-section,
.external-banner {
  max-width: 375px;
  margin: 0 auto 40px;
}

.article-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 20px;
}

.article-meta .category {
  display: flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: var(--primary, #e86b36);
  color: #fff;
}

.article-meta .modified-wrapper {
  margin: 0;
}

.eyecatch {
  width: 100%;
  margin-bottom: 24px;
}

.eyecatch img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.supervisor-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
}

.supervisor-icon img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.supervisor-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.supervisor-profile {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.7;
}

.article-lead p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
}

.article-toc {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 32px;
}

.article-toc .toc-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.article-toc ol {
  padding-left: 20px;
  font-size: 1.3rem;
  line-height: 1.8;
}

.article-toc a {
  color: var(--primary, #e86b36);
  text-decoration: underline;
}

.article-body h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 40px 0 40px;
  color: #333;
}

.article-body h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 30px 0 20px;
  color: #333;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
}

.article-body h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0 15px;
}

.article-body p,
.article-body li {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
}

.article-body ul {
  padding-left: 20px;
  margin: 12px 0;
}

.article-body a {
  color: var(--primary, #e86b36);
  text-decoration: underline;
  word-wrap: break-word;
}

.article-body .button {
  display: inline-block;
  background-color: var(--primary, #e86b36);
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  margin: 20px 0 20px;
}

.article-body .btn-to-lp {
  position: relative;
  color: #fff;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #02a043;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: var(--line);
  padding: 20px 0 16px;
  margin: 40px 0;
  text-decoration: none;
}
.article-body .btn-to-lp img {
  display: block;
  width: 22px;
  height: 22px;
  padding-left: 4px;
}

.article-body .btn-to-lp .subcopy {
  position: absolute;
  top: -20px;
  background-color: #fff;
  padding: 4px 10px;
  border: 2px var(--line) solid;
  color: var(--line);
  border-radius: 8px;
  font-size: 1.4rem;
}

.article-body .btn-to-lp .large {
  font-size: 1.6rem;
}

.article-body .wp-element-button {
  display: inline-block;
  background-color: var(--primary, #e86b36);
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  margin: 20px 0 20px;
}

.article-body .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
  border: 1px solid #666;
}

.clinic-intro {
  background-color: #f9f9f9;
  border-left: 4px solid var(--primary, #e86b36);
  padding: 16px;
  margin: 32px 0;
}

.clinic-intro h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.related-articles .section-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.external-banner {
  position: sticky;
  bottom: 16px;
  z-index: 9999;
}

.external-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.c-inline-related {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 12px;
  margin: 24px 0;
  text-decoration: none !important;
  color: inherit;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.c-inline-related:hover {
  background-color: #f1f1f1;
  transform: translateY(-1px);
}

.c-inline-related__thumb {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #eee;
}

.c-inline-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-inline-related__content {
  flex: 1;
  min-width: 0;
}

.c-inline-related__category {
  display: flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: var(--primary, #e86b36);
  color: #fff !important;
}

.c-inline-related__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 2行で省略 */
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 8px 0 8px !important;
}

/* ----------------------------------------------------------------------
   Page header styles
---------------------------------------------------------------------- */
.page-header {
  background-color: #fff;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.page-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.4;
}

/* ----------------------------------------------------------------------
   Content area styles
---------------------------------------------------------------------- */
.content-area {
  padding: 24px;
  background-color: #fff;
  min-height: calc(100vh - 200px);
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.content-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
  margin-top: 24px;
}

.content-section p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--secondary);
  margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.content-section li {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--secondary);
  margin-bottom: 8px;
}

/* ----------------------------------------------------------------------
   Card styles
---------------------------------------------------------------------- */
.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.card-content {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--secondary);
}

/* ----------------------------------------------------------------------
   Button styles
---------------------------------------------------------------------- */
.btn-primary {
  background-color: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #e54a3a;
}

/* ----------------------------------------------------------------------
   Form styles
---------------------------------------------------------------------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1.6rem;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ----------------------------------------------------------------------
   Table styles
---------------------------------------------------------------------- */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.table th,
.table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

.table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--secondary);
}

.table td {
  font-size: 1.6rem;
  color: var(--secondary);
}

/* ----------------------------------------------------------------------
   Responsive design
---------------------------------------------------------------------- */
@media (max-width: 375px) {
  .privacy-section {
    padding: 16px;
  }

  .privacy-subtitle {
    font-size: 1.8rem;
  }

  .privacy-text h4 {
    font-size: 1.3rem;
  }

  .privacy-text p {
    font-size: 1.3rem;
  }

  .doctor-section {
    padding: 16px;
  }

  .doctor-content {
    gap: 20px;
  }

  .doctor-subtitle {
    font-size: 1.8rem;
  }

  .doctor-name {
    font-size: 1.6rem;
  }

  .doctor-specialty span {
    font-size: 1.3rem;
  }

  .doctor-description p {
    font-size: 1.1rem;
  }

  .institution-title {
    font-size: 1.4rem;
  }

  .institution-name {
    font-size: 1.3rem;
  }

  .faq-section {
    padding: 16px;
  }

  .faq-content {
    gap: 40px;
  }

  .faq-subtitle {
    font-size: 1.8rem;
  }

  .faq-category-title {
    font-size: 1.4rem;
  }

  .faq-question span {
    font-size: 1.3rem;
  }

  .faq-answer p {
    font-size: 1.3rem;
  }

  .page-header {
    padding: 16px;
  }

  .content-area {
    padding: 16px;
  }

  .page-title {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 1.8rem;
  }

  .card {
    padding: 16px;
  }
}

.c-breadcrumb  {
  padding-top: 24px;
  padding-bottom: 24px;
  white-space: nowrap;
}

.c-breadcrumb .inner {
  display: flex;
  column-gap: 8px;
  padding-right: 24px;
  padding-bottom: 8px;
  margin-left: 24px;
  overflow-x: auto;
}

.c-breadcrumb a {
  color: var(--primary);
}

/* Feature section */
.feature-section {
    padding: 30px 24px;
    margin-top: 32px;
    background-color: #fff3f0;
    border-radius: 10px;
}

.feature-section .section-title {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--secondary, #333);
}

.feature-section h2 span {
    color: var(--primary);
    font-size: 3.2rem;
}

.feature-section .feature-points {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-section .feature-point-card {
    width: 110px;
    height: 103px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 243, 233, 1) 100%);
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 13px;
    text-align: center;
}

.feature-section .feature-point-card p {
    line-height: 1.38;
    color: var(--secondary);
    margin: 0;
    white-space: nowrap;
    font-size: 1.4rem;
}

.feature-section .feature-point-card p span {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-section .feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.feature-section .feature-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 2px 2px 0px 0px rgba(237, 225, 214, 1);
    padding: 0 20px 20px;
    overflow: hidden;
}

.feature-section .feature-card-image {
    position: relative;
    width: calc(100% + 40px);
    margin: 0 -20px;
    height: 152px;
    overflow: hidden;
}

.feature-section .feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.feature-section .feature-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 83px;
}

.feature-section .badge-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 76px !important;
    height: 72px !important;
}

.feature-section .badge-number {
    position: absolute;
    top: 34px;
    left: 24px;
    font-size: 3.2rem;
    line-height: 0.8;
    letter-spacing: 0.05em;
    color: #fff;
}

.feature-section .badge-text {
    position: absolute;
    top: 12px;
    left: 25px;
    font-size: 1rem;
    line-height: 2.56;
    letter-spacing: 0.06em;
    color: #fff;
}

.feature-section .feature-card-content {
    padding: 14px 0 0;
}

.feature-section .feature-card-title {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--secondary);
    margin: 0 0 10px 0;
    padding-left: 0;
    border-left: none;
}

.feature-section .feature-card-title span {
    color: var(--primary);
    font-size: 2rem;
}

.feature-section .feature-card-description span {
    background: linear-gradient(transparent 60%, rgba(253, 96, 81, 0.15) 60%);
    font-weight: 700;
    padding: 2px;
    border-radius: 2px;
}

.feature-section .feature-card-description {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--secondary);
    margin: 0;
    position: relative;
}

.line-area--column .btn-line-normal {
  color: #fff;
  text-decoration: none;
}