/* =========================
  会社案内ページ
========================= */
.company-page{
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 72px;
}
.company-section{
  margin-bottom: 32px;
}
.company-card{
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid rgba(107,174,214,.18);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.company-heading{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.company-heading--center{
  justify-content: center;
  text-align: center;
}
.company-heading__icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f5fb 0%, #d8edf7 100%);
  color: #1D3557;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(29,53,87,.08);
  flex-shrink: 0;
}
.company-section h2{
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  font-weight: 900;
  color: #1D3557;
}
.company-section p{
  margin: 0 0 16px;
  color: #556070;
  line-height: 1.95;
  font-size: 15px;
}
.company-section p:last-child{
  margin-bottom: 0;
}
.company-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.company-list li{
  position: relative;
  background: #fff;
  border: 1px solid rgba(107,174,214,.16);
  border-left: 6px solid #6BAED6;
  border-radius: 14px;
  padding: 14px 16px 14px 18px;
  color: #1f2933;
  font-weight: 700;
  line-height: 1.8;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.company-info-wrap{
  overflow-x: auto;
}
.company-info-table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.company-info-table th,
.company-info-table td{
  padding: 15px 16px;
  border-bottom: 1px solid #e8eef3;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.8;
}
.company-info-table th{
  width: 220px;
  background: #f2f8fb;
  color: #1D3557;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}
.company-info-table td{
  background: #fff;
  color: #556070;
}
.company-info-table tr:last-child th,
.company-info-table tr:last-child td{
  border-bottom: none;
}
.company-info-table a{
  color: #1D3557;
  font-weight: 700;
  text-decoration: none;
}
.company-recruit{
  text-align: center;
  background: linear-gradient(135deg, #fef8f8 0%, #fff 45%, #f7fcf8 100%);
  border: 1px solid rgba(200,220,200,.45);
  border-radius: 24px;
  padding: 38px 24px;
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}
.company-recruit p{
  max-width: 760px;
  margin: 0 auto 24px;
}
.company-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 15px;
  transition: all .25s ease;
}
.company-btn--primary{
  background: linear-gradient(135deg, #6BAED6 0%, #1D3557 100%);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(29,53,87,.18);
}
.company-btn--primary:hover{
  transform: translateY(-2px);
  opacity: .96;
}
.company-access-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}
.company-access-box{
  background: #fff;
  border: 1px solid rgba(107,174,214,.16);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.company-access-map{
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* =========================
  会社案内用レスポンシブ
========================= */
@media (max-width: 767px){
  .company-page{
    padding: 18px 14px 56px;
  }
  .company-card,
  .company-recruit{
    padding: 22px 16px;
    border-radius: 18px;
  }
  .company-heading{
    gap: 10px;
    margin-bottom: 16px;
  }
  .company-heading__icon{
    width: 46px;
    height: 46px;
    font-size: 21px;
  }
  .company-section h2{
    font-size: 24px;
  }
  .company-section p,
  .company-info-table th,
  .company-info-table td{
    font-size: 14px;
  }
  .company-info-table th{
    width: 120px;
  }
  .company-access-grid{
    grid-template-columns: 1fr;
  }
  .company-btn{
    width: 100%;
    min-width: auto;
  }
}