.flow-section {
    background-color: #000;
    color: #fff;
    margin: 2.5rem 0 5rem;
    text-align: center;
  }
  
  .flow-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  .flow-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .flow-steps a{
    text-decoration: none;
  }
  
  .flow-box {
    background-color: #666666;
    padding: 1rem;
    flex: 1 ;
    display: flex;
    padding: 3vw 1vw;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 2px solid #666666;
  }
  .flow-box.middle{
    background-color: #333;
    border: 2px solid var(--color-gold);
  }
  
  /* 右矢印（三角） */
  .flow-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #666666;
  }
  .flow-box.middle::after {
    border-left: 15px solid #f1c40f;
  }
  
  .flow-box.complete {
    background-color: #666666;
    color: #fff;
  }
  
  .flow-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .flow-box p {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: left;
  }
  
  .flow-box a {
    color: #fff;
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }
  .flow-box a.detail_btn{
    text-decoration: underline;
  }
  
  .flow-box.complete a {
    color: #000;
  }
  
  .notice {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #f1c40f;
    font-weight: bold;
  }
  
  .notice div {
    background-color: #333;
    border: 2px solid var(--color-gold);
    display: inline-block;
    padding: .5rem 1rem;
  }
  

  .procedure-section {
    background: #111;
    color: #fff;
    padding: 2rem;
    border: 1px solid #333;
    margin: 0 auto;
  }
  
  .procedure-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
  }
  
  .step-box {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #555;
  }

  
  .step-box.last{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .step-label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  .step-title {
    background-color: #fff;
    color: #111;
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1;
  }
  
  .step-box h3 {
    font-size: 1.2rem;
    margin-left:1rem;
    line-height: 1;
  }
  
  .step-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .step-box ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0 1rem;
  }
  
  .step-box li {
    list-style: unset;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  
  .step-box strong {
    color: #f1c40f;
  }
  
  .convenience-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .convenience-logos .logo {
    text-align: center;
    flex: 1 1 100px;
    max-width: 100px;
  }
  
  .convenience-logos img {
    width: 100%;
    height: auto;
    margin-bottom: 0.3rem;
  }
  
  .convenience-logos span {
    font-size: 0.85rem;
    display: block;
  }
  .faq-section {
    background-color: #000;
    color: #fff;
    padding: 2rem 1rem;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
  }
  
  .faq-box {
    background-color: #1a1a1a;
    border: 1px solid #444;
  }
  
  .faq-item {
    border-bottom: 1px solid #444;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question,
  .faq-answer {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .faq-question {
    background-color: #333;
  }
  
  .faq-answer {
    background-color: #222;
  }
  
  .faq-question::before {
    content: "Q. ";
    font-weight: bold;
    color: #fff;
  }
  
  .faq-answer::before {
    content: "A. ";
    font-weight: bold;
    color: #fff;
  }
  
  .faq-footer {
    text-align: center;
    margin-top: 2rem;
  }
  
  .faq-footer p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .faq-footer a.button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-gold);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 1.2rem 7rem;
    transition: opacity 0.3s ease;
    opacity: 1;
    position: relative;
  }
  
  .faq-footer a.button:hover {
    background-color: #d4ac0d;
    opacity: 0.9;
  }
  
  .faq-footer a.button::after {
    background-image: url(../images/arrow-icon.png);
    width: .5rem;
    display: inline-block;
    height: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    right: 1rem;
  }
  .flow,.laws{
    padding: 15rem 0 10rem;
  }
  .flow h1,.laws h1{
    color: #fff;
  }
  .laws h1{
    margin-bottom: 5rem;
  }
.three-step_title{
    margin-top: 10rem;
    background-color: var(--color-gold);
    color: #111;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
  }
  .laws .three-step_title{
    margin-top: 2rem;
  }
  .three-step_title span{
    font-size: 2rem;
  }
  
  .dli-chevron-down {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 0.5em;
    height:0.5em;
    border: 0.01em solid currentColor;
    border-left: 0;
    
    margin-left: 11px;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
  }
  .inner.faq{
    padding: 3rem 0;
    color: #fff;
  }
  .inner.faq h3{
    color: #ffff;
  margin-bottom: 1rem;
  }
  .blNone{
    background-color: #666666;
  }
  .laws th{
    background-color: #666;
    /* position: sticky; */
    left: 0;
  }
  .laws td{
    background-color: #333;
  }
  .laws td.orange{
    background-color: var(--color-gold);
    color: #000;
  }
  .laws th.bg-transparent{
    background-color: transparent;
    border: none;
  }
  .wp-block-woocommerce-empty-cart-block{
    color:#fff;
  }
  @media (max-width: 768px) {
    .flow-section h2 {
      font-size: 1.2rem;
    }
  
    .flow-box h3 {
      font-size: 1rem;
    }
  
    .flow-box {
      max-width: 100%;
    }
    .procedure-section h2 {
        font-size: 1.2rem;
        line-height: 1.6;
      }
    
      .step-box h3 {
        font-size: 1rem;
        line-height: 1.6;
      }
    
      .step-box p,
      .step-box li {
        font-size: 0.9rem;
      }
    
      .convenience-logos {
        justify-content: flex-start;
      }
      .faq-section h2 {
        font-size: 1.2rem;
      }
    
      .faq-question,
      .faq-answer {
        font-size: 0.95rem;
        padding: 0.8rem;
      }
      .flow-steps{
        flex-direction: column;
      }
      .flow-box{
        padding: 1.5rem;
      }
      .flow-box:not(:last-child)::after {
        top: unset;
        bottom: -17px;
        right: calc(50% - 8px);
        transform: rotate(90deg) translateY(0) translateX(50%);
      }
      .three-step_title{
        font-size: 1.25rem;
        line-height: 1.6;
      }
      .three-step_title span{
        font-size: 1.75rem;
      }
  }