@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700");

/* company-header */
.company-header-title{
  background: no-repeat center 35% url("../images/company/banner-company.png");
  background-size: cover; aspect-ratio: 16 / 3; /* 横縦比で高さを確保 */ 

  text-align: center;
  padding: 80px 80px;
  /*opacity: none;*/
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
    margin: 0;
}
.company-header-title::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.05));
  pointer-events: none;
}
.company-header-title .en,
.company-header-title .ja{
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.company-header-title .en{ display: block; font-size: 40px; color: #fff;}
.company-header-title .ja{ display: block; font-size: 14px; color: #fff;}
.company-lead{ color: #666666; text-align: center; padding: 80px 0 10px; margin-bottom: 20px;}

@media (max-width: 1024px) {
  .company-header-title {
    padding: 40px 40px;
    background-position: center center;
  }
  .company-header-title .en {
    font-size: 32px;
  }
  .company-header-title .ja {
    font-size: 13px;
  }
}

/* 768px以下：スマホ・タブレット用 */
@media (max-width: 768px) {
  .company-header-title {
    aspect-ratio: auto;          /* 高さを固定せず中身優先に */
    padding: 32px 16px;
    background-position: center center;
  }
  .company-header-title .en {
    font-size: 26px;
  }
  .company-header-title .ja {
    font-size: 12px;
  }
  .company-lead{
    text-align: unset;
    padding: 24px 16px 0;
    font-size: 12px;
    line-height: 1.6;
  }
}

/* overview */
.overview{
  margin-bottom: 80px;
}
.overview .overview-list{
  display: flex;
  flex-wrap: wrap;
}
.overview .overview-list a{
  color: #0748b7;
}
.overview .overview-list dt{
  width: 300px;
  border-bottom: solid 1px #1f1f1f;
  font-size: 15px;
  padding: 40px 0;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.overview .overview-list dd{
  width: calc(100% - 300px);
  border-bottom: solid 1px #1f1f1f;
  font-size: 15px;
  padding: 40px 0;
  line-height: 1.8;
}
.company-table-detail li{
  margin-left: 24px;
  list-style: disc;
}

@media screen and (max-width: 767px){
  .overview{
    margin-bottom: 60px;
  }
  .overview .overview-list dt{
    width: 100px;
    padding: 20px 0;
    font-size: 12px;
  }
  .overview .overview-list dd{
    width: calc(100% - 100px);
    padding: 20px 0;
    font-size: 12px;
  }
}