
  /* Unique CSS for Online Procedure Page - All classes prefixed with "op-" */
  .op-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
    color: #333333;
    line-height: 1.6;
    font-size: 14px;
  }
  
  .op-container h1, 
  .op-container h2, 
  .op-container h3, 
  .op-container h4, 
  .op-container h5, 
  .op-container h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
  }
  
  .op-container p {
    margin-top: 0;
    font-size: 14px;
  }
  
  .op-container img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
  }
  
  /* Breadcrumb Styles */
  .op-breadcrumb-container {
    margin: 15px 0;
  }
  
  .op-breadcrumb ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
  }
  
  .op-breadcrumb li {
    color: #666666;
  }
  
  .op-breadcrumb a {
    color: #00857e;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .op-breadcrumb a:hover {
    color: #006b65;
    text-decoration: underline;
  }
  
  .op-separator {
    margin: 0 6px;
  }
  
  /* Button Styles */
  .op-primary-button, .op-secondary-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
  }
  
  .op-primary-button {
    background-color: #00857e;
    color: #ffffff;
    border: 1px solid #00857e;
  }
  
  .op-primary-button:hover {
    background-color: #006b65;
    border-color: #006b65;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .op-secondary-button {
    background-color: #ffffff;
    color: #00857e;
    border: 1px solid #00857e;
  }
  
  .op-secondary-button:hover {
    background-color: #e6f3f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  /* PC Mockup Section */
  .op-mockup-section {
    margin: 30px 0 50px;
    text-align: center;
  }
  
  .op-mockup-container {
    margin-top: 30px;
    padding: 0 20px;
  }
  
  .op-mockup-image {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .op-mockup-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
  }
  
  /* Section Styles */
  .op-section-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .op-section-title {
    font-size: 24px;
    color: #00857e;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
  }
  
  .op-section-title:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #00857e;
    border-radius: 2px;
  }
  
  .op-section-description {
    font-size: 14px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Process Section */
  .op-process-section {
    padding: 50px 0;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 50px;
  }
  
  .op-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }
  
  .op-process-step {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .op-process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .op-step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
    background-color: #00857e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 133, 126, 0.3);
  }
  
  .op-step-icon {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .op-step-title {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
  }
  
  .op-step-description {
    font-size: 13px;
    color: #666666;
  }
  
  /* Colorful Icons */
  .op-icon-consultation span,
  .op-icon-viewing span,
  .op-icon-application span,
  .op-icon-contract span,
  .op-icon-key span,
  .op-icon-movein span,
  .op-benefit-icon span,
  .op-check-icon {
    display: inline-block;
    font-size: 36px;
  }
  
  /* Overseas Section */
  .op-overseas-section {
    margin-bottom: 50px;
  }
  
  .op-overseas-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .op-overseas-image {
    flex: 1;
    min-width: 300px;
  }
  
  .op-overseas-text {
    flex: 1;
    min-width: 300px;
  }
  
  .op-overseas-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00857e;
  }
  
  .op-overseas-description {
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .op-overseas-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }
  
  .op-overseas-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 13px;
  }
  
  .op-check-icon {
    margin-right: 8px;
    font-size: 16px;
  }
  
  /* Benefits Section */
  .op-benefits-section {
    padding: 50px 0;
    background-color: #e6f3f2;
    border-radius: 8px;
    margin-bottom: 50px;
  }
  
  .op-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }
  
  .op-benefit-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .op-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .op-benefit-icon {
    margin-bottom: 15px;
  }
  
  .op-benefit-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .op-benefit-description {
    font-size: 13px;
    color: #666666;
  }
  
  /* CTA Section */
  .op-cta-section {
    background: linear-gradient(to right, #00857e, #006b65);
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .op-cta-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .op-cta-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .op-cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .op-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .op-cta-section .op-primary-button {
    background-color: #ffffff;
    color: #00857e;
    border-color: #ffffff;
  }
  
  .op-cta-section .op-primary-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
  }
  
  .op-cta-section .op-secondary-button {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
  }
  
  .op-cta-section .op-secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* FAQ Section */
  .op-faq-section {
    margin-bottom: 60px;
  }
  
  .op-faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .op-faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 12px;
  }
  
  .op-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
  }
  
  .op-faq-question h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
  }
  
  .op-faq-toggle {
    font-size: 20px;
    color: #00857e;
    transition: all 0.3s ease;
  }
  
  .op-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .op-faq-item.active .op-faq-answer {
    max-height: 500px;
    padding-bottom: 12px;
  }
  
  .op-faq-answer p {
    margin: 0;
    color: #666666;
    font-size: 13px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .op-section-title {
      font-size: 20px;
    }
    
    .op-process-steps, .op-benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .op-process-step, .op-benefit-card {
      padding: 20px 15px;
    }
    
    .op-step-icon span, .op-benefit-icon span {
      font-size: 30px;
    }
    
    .op-step-title, .op-benefit-title {
      font-size: 15px;
    }
    
    .op-cta-title {
      font-size: 20px;
    }
    
    .op-cta-description {
      font-size: 14px;
    }
    
    .op-primary-button, .op-secondary-button {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .op-section-title {
      font-size: 18px;
    }
    
    .op-cta-buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .op-faq-question h3 {
      font-size: 14px;
    }
  }