@charset "UTF-8";

/*代表メッセージ項目*/
#greeting + section.contents_box01 .profile-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 10px;
  }

  #greeting + section.contents_box01 .profile-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #dcb962; /* Muted gold divider line */
  }

  #greeting + section.contents_box01 .profile-row:first-child {
    border-top: 1px solid #dcb962;
  }

  #greeting + section.contents_box01 .profile-label {
    width: 25%; /* Replaced 160px with a fluid percentage */
    color: #9e2a2b; /* Deep reddish brown */
    font-weight: bold;
    font-size: 100%; /* Reset to browser default size */
    flex-shrink: 0;
    letter-spacing: 0.05em;
  }

  #greeting + section.contents_box01 .profile-content {
    color: #222222;
    font-size: 100%; /* Reset to browser default size */
    line-height: 1.65;
    flex-grow: 1;
  }

  #greeting + section.contents_box01 .profile-content strong {
    font-weight: 800;
  }

  #greeting + section.contents_box01 .heading.block_header_2 {
    border-bottom: none !important;
  }

  /* Responsive Adjustments for Mobile */
  @media screen and (max-width: 480px) {
    #greeting + section.contents_box01 .profile-row {
      flex-direction: column; /* Stack vertically on very small screens to prevent text wrapping */
      gap: 4px;
    }
    #greeting + section.contents_box01 .profile-label {
      width: 100%; /* Take full width when stacked */
    }
  }

  @media screen and (min-width: 768px) {
    #greeting + section.contents_box01 .inner_item_txt {
      padding-left: 70px !important;
    }
  }

  @media screen and (max-width: 768px) {
    #greeting + section.contents_box01 .inner_item_txt {
      padding-left: 0 !important;
    }
  }

/*あいさつ*/
  .profile-section {
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: transparent;
  }

  /* Body Text Styling (Using percentages for font size) */
  .intro-text p, .outro-text p {
    color: #222222;
    font-size: 100%; /* Replaced 15px with browser default scale */
    line-height: 1.8;
    margin-bottom: 24px;
  }
  
  .outro-text p {
    margin-top: 24px;
    margin-bottom: 0;
  }

  /* Checkmark List Block Container */
  .features-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Space between rows */
  }

  /* Individual List Row */
  .feature-item {
    display: flex;
    align-items: flex-start;
  }

  /* Yellow Checked Circle Icon Wrapper */
  .checkmark-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 4px; /* Slightly adjusted to align with default font size line-height */
    display: inline-block;
  }
  
  .checkmark-icon svg {
    width: 100%;
    height: 100%;
  }

  /* Text Inside the List Item */
  .feature-text {
    margin: 0;
    color: #222222;
    font-size: 106%; /* Replaced 16px with browser scale balance (~17px equivalent dynamically) */
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  /* Emphasized Title Keywords */
  .feature-title {
    font-weight: 800;
    margin-right: 8px;
    color: #9e2a2b; /* Reused the deep reddish brown color from your labels for design consistency */
    display: inline-block;
  }

  /* Mobile Optimization to prevent awkward narrow wrapping */
  @media screen and (max-width: 480px) {
    .feature-title {
      display: block; /* Puts the description on a new line on mobile if the screen is too narrow */
      margin-bottom: 2px;
    }
  }