@charset "utf-8";
/* CSS Document */

  * {
    margin: 0; padding: 0; box-sizing: border-box;
  }
  body {
    font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
  }
  header {
    background-color: #004080;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  header img {
    height: 50px;
  }
  nav {
    margin-top: 0.5rem;
  }
  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
  }
  nav a:hover {
    text-decoration: underline;
  }
  .language-switcher {
    margin-left: 1rem;
  }
  .main-visual {
    width: 100%;
    height: 300px;
    background-image: url('https://abpj.kirc.jp/image_abpj/abpj_mainimg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 1rem;
  }
  main {
    max-width: 900px;
    background: #fff;
    margin: 2rem auto;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
  }
  h1, h2 {
    color: #004080;
    margin-bottom: 1rem;
  }
  h2 {
    border-bottom: 2px solid #004080;
    padding-bottom: 0.3rem;
  }
  p {
    margin-bottom: 1rem;
  }
  ul {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
  }
  ul li {
    margin-bottom: 0.5rem;
  }
  footer {
    background-color: #004080;
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    padding: 1rem 0;
    margin-top: 3rem;
  }
section.other_link a {
    display: inline-block;
    padding: 5px 10px;
    margin-top: 20px;
    margin-right: 20px;
    border: solid 1px #ccc;
    text-decoration: none;
    color: #666;
}
section.other_link a:hover {
    background:#ddd;
}
 a.button-link {
    display: inline-block;
    background-color: #004080;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  a.button-link:hover {
    background-color: #002850;
  }

/*-----expartページ-----------*/
 table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }
  th, td {
    border: 1px solid #bbb;
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
  }
  th {
    background-color: #e6f0ff;
    color: #004080;
    font-weight: 700;
  }
  caption {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #004080;
  }
  
/*-----recruitページ-----------*/
.info-box {
    background: #e7f0fc;
    border-left: 5px solid #004080;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 3px;
  }
  address {
    font-style: normal;
    line-height: 1.4;
    color: #555;
  }
  footer {
    background-color: #004080;
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    padding: 1rem 0;
    margin-top: 3rem;
  }
/*--------reportページ------------*/
 .report-list {
    list-style: none;
    padding-left: 0;
  }
  .report-list li {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
  }
  .report-list li:last-child {
    border-bottom: none;
  }
  .report-list a {
    color: #004080;
    font-weight: 600;
    text-decoration: none;
  }
  .report-list a:hover {
    text-decoration: underline;
  }
  .contact-address {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    font-size: 0.95rem;
  }
  .contact-address strong {
    color: #004080;
  }

/*--------supportページ------------*/

 .business-flow {
    text-align: center;
    margin-top: 2rem;
  }
  .business-flow img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
  }
  .contact-address {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #555;
  }





  @media (max-width: 767px) {
    header {
      justify-content: center;
      text-align: center;
      flex-direction: column;
    }
	  header img {
     height: auto; 
    width: 100%;
}
    nav a {
      margin: 0 0.5rem;
      display: inline-block;
      margin-bottom: 0.5rem;
    }
	.main-visual {
    height: 150px;  
	 }
	h1, h2 {
    font-size: 20px;
    line-height: 1.0;
}
  h3 {
    font-size: 18px;
}

/*------------------*/
caption {
    display: block;
    font-size: 16px;
}
table, thead, tbody, th, td, tr {
      display: block;
    }
    thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
    tr {
      margin-bottom: 1rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 0.5rem;
    }
    td {
      border: none;
      position: relative;
      padding-left: 50%;
      text-align: left;
    }
    td::before {
      position: absolute;
      top: 0.75rem;
      left: 1rem;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      font-weight: 600;
      color: #004080;
      content: attr(data-label);
    }






  }
