/* =======================================================
* company
* ======================================================= */
#company dl {
  max-width: 800px;
  margin: 80px auto 0;
}

#company dt {
  width: 20%;
  padding-left: 20px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-red);
  text-align: center;
}

#company dd {
  width: 80%;
  padding-left: 40px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-gray);
}

#company dd ul {
  padding-left: 20px;
}

#company dd ul li {
  list-style: square;
}

@media screen and (max-width:768px) {
  #company dl {
    margin: 50px auto 0;
  }

  #company dt {
    width: 30%;
    text-align: left;
    padding-left: 5px;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }

  #company dd {
    width: 100%;
    padding-left: 5px;
    margin-bottom: 30px;
  }
}

/* =======================================================
* access
* ======================================================= */
#access iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(100%);
}


/* =======================================================
* group
* ======================================================= */
#group dl {
  max-width: 800px;
  margin: 80px auto 40px;
}

#group dt {
  width: 20%;
  padding-left: 20px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-red);
  text-align: center;
}

#group dd {
  width: 80%;
  padding-left: 40px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-gray);
}

#group dd ul {
  padding-left: 20px;
}

#group dd ul li {
  list-style: square;
}

#group h4 {
  font-size: 1.7rem;
  text-align: center;
}

.group_list {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 60px;
}

.group_list div {
  background: #f0f0f0;
  padding: 20px 20px 10px 20px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 2px 2px 0px var(--color-gray);
  font-size: 1.4rem;
}

.group_list div h5 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.group_list div h5 small {
  font-size: 1.2rem;
}

.group_list div p {
  font-size: 1.2rem;
  font-weight: normal;
}

.group_list.group_list__no2 {
  display: block;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 100px;
}

@media screen and (max-width:768px) {
  #group dl {
    margin: 50px auto 30px;
  }

  #group dt {
    width: 30%;
    text-align: left;
    padding-left: 5px;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }

  #group dd {
    width: 100%;
    padding-left: 5px;
    margin-bottom: 30px;
  }

  .group_list {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .group_list div {
    padding: 10px 15px 5px;
    font-size: 1.1rem;
  }

  .group_list div h5 {
    font-size: 1.2rem;
  }

  .group_list div p,
  .group_list div h5 small {
    font-size: 1rem;
  }
}